ARM: add arm_mode_name()
[openocd/ztw.git] / src / target / avrt.c
blobcabb2725fa2534b2a575be6c6bd5fbd7c9fcbf42
1 /***************************************************************************
2 * Copyright (C) 2009 by Simon Qian *
3 * SimonQian@SimonQian.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
24 #include "avrt.h"
25 #include "target.h"
26 #include "target_type.h"
29 #define AVR_JTAG_INS_LEN 4
31 /* cli handling */
32 int avr_register_commands(struct command_context *cmd_ctx);
34 /* forward declarations */
35 int avr_target_create(struct target *target, Jim_Interp *interp);
36 int avr_init_target(struct command_context *cmd_ctx, struct target *target);
38 int avr_arch_state(struct target *target);
39 int avr_poll(struct target *target);
40 int avr_halt(struct target *target);
41 int avr_resume(struct target *target, int current, uint32_t address, int handle_breakpoints, int debug_execution);
42 int avr_step(struct target *target, int current, uint32_t address, int handle_breakpoints);
44 int avr_assert_reset(struct target *target);
45 int avr_deassert_reset(struct target *target);
46 int avr_soft_reset_halt(struct target *target);
48 /* IR and DR functions */
49 int avr_jtag_sendinstr(struct jtag_tap *tap, uint8_t *ir_in, uint8_t ir_out);
50 int avr_jtag_senddat(struct jtag_tap *tap, uint32_t *dr_in, uint32_t dr_out, int len);
52 int mcu_write_ir(struct jtag_tap *tap, uint8_t *ir_in, uint8_t *ir_out, int ir_len, int rti);
53 int mcu_write_dr(struct jtag_tap *tap, uint8_t *dr_in, uint8_t *dr_out, int dr_len, int rti);
54 int mcu_write_ir_u8(struct jtag_tap *tap, uint8_t *ir_in, uint8_t ir_out, int ir_len, int rti);
55 int mcu_write_dr_u8(struct jtag_tap *tap, uint8_t *ir_in, uint8_t ir_out, int dr_len, int rti);
56 int mcu_write_ir_u16(struct jtag_tap *tap, uint16_t *ir_in, uint16_t ir_out, int ir_len, int rti);
57 int mcu_write_dr_u16(struct jtag_tap *tap, uint16_t *ir_in, uint16_t ir_out, int dr_len, int rti);
58 int mcu_write_ir_u32(struct jtag_tap *tap, uint32_t *ir_in, uint32_t ir_out, int ir_len, int rti);
59 int mcu_write_dr_u32(struct jtag_tap *tap, uint32_t *ir_in, uint32_t ir_out, int dr_len, int rti);
60 int mcu_execute_queue(void);
62 struct target_type avr_target =
64 .name = "avr",
66 .poll = avr_poll,
67 .arch_state = avr_arch_state,
69 .target_request_data = NULL,
71 .halt = avr_halt,
72 .resume = avr_resume,
73 .step = avr_step,
75 .assert_reset = avr_assert_reset,
76 .deassert_reset = avr_deassert_reset,
77 .soft_reset_halt = avr_soft_reset_halt,
79 .get_gdb_reg_list = avr_get_gdb_reg_list,
81 .read_memory = avr_read_memory,
82 .write_memory = avr_write_memory,
83 .bulk_write_memory = avr_bulk_write_memory,
84 .checksum_memory = avr_checksum_memory,
85 .blank_check_memory = avr_blank_check_memory,
87 .run_algorithm = avr_run_algorithm,
89 .add_breakpoint = avr_add_breakpoint,
90 .remove_breakpoint = avr_remove_breakpoint,
91 .add_watchpoint = avr_add_watchpoint,
92 .remove_watchpoint = avr_remove_watchpoint,
94 .register_commands = avr_register_commands,
95 .target_create = avr_target_create,
96 .init_target = avr_init_target,
99 int avr_register_commands(struct command_context *cmd_ctx)
101 LOG_DEBUG("%s", __FUNCTION__);
102 return ERROR_OK;
105 int avr_target_create(struct target *target, Jim_Interp *interp)
107 struct avr_common *avr = calloc(1, sizeof(struct avr_common));
109 avr->jtag_info.tap = target->tap;
110 target->arch_info = avr;
112 return ERROR_OK;
115 int avr_init_target(struct command_context *cmd_ctx, struct target *target)
117 LOG_DEBUG("%s", __FUNCTION__);
118 return ERROR_OK;
121 int avr_arch_state(struct target *target)
123 LOG_DEBUG("%s", __FUNCTION__);
124 return ERROR_OK;
127 int avr_poll(struct target *target)
129 if ((target->state == TARGET_RUNNING) || (target->state == TARGET_DEBUG_RUNNING))
131 target->state = TARGET_HALTED;
134 LOG_DEBUG("%s", __FUNCTION__);
135 return ERROR_OK;
138 int avr_halt(struct target *target)
140 LOG_DEBUG("%s", __FUNCTION__);
141 return ERROR_OK;
144 int avr_resume(struct target *target, int current, uint32_t address, int handle_breakpoints, int debug_execution)
146 LOG_DEBUG("%s", __FUNCTION__);
147 return ERROR_OK;
150 int avr_step(struct target *target, int current, uint32_t address, int handle_breakpoints)
152 LOG_DEBUG("%s", __FUNCTION__);
153 return ERROR_OK;
156 int avr_assert_reset(struct target *target)
158 target->state = TARGET_RESET;
160 LOG_DEBUG("%s", __FUNCTION__);
161 return ERROR_OK;
164 int avr_deassert_reset(struct target *target)
166 target->state = TARGET_RUNNING;
168 LOG_DEBUG("%s", __FUNCTION__);
169 return ERROR_OK;
172 int avr_soft_reset_halt(struct target *target)
174 LOG_DEBUG("%s", __FUNCTION__);
175 return ERROR_OK;
178 int avr_jtag_senddat(struct jtag_tap *tap, uint32_t* dr_in, uint32_t dr_out, int len)
180 return mcu_write_dr_u32(tap, dr_in, dr_out, len, 1);
183 int avr_jtag_sendinstr(struct jtag_tap *tap, uint8_t *ir_in, uint8_t ir_out)
185 return mcu_write_ir_u8(tap, ir_in, ir_out, AVR_JTAG_INS_LEN, 1);
188 /* IR and DR functions */
189 int mcu_write_ir(struct jtag_tap *tap, uint8_t *ir_in, uint8_t *ir_out, int ir_len, int rti)
191 if (NULL == tap)
193 LOG_ERROR("invalid tap");
194 return ERROR_FAIL;
196 if (ir_len != tap->ir_length)
198 LOG_ERROR("invalid ir_len");
199 return ERROR_FAIL;
203 struct scan_field field[1];
205 field[0].tap = tap;
206 field[0].num_bits = tap->ir_length;
207 field[0].out_value = ir_out;
208 field[0].in_value = ir_in;
209 jtag_add_plain_ir_scan(sizeof(field) / sizeof(field[0]), field, jtag_set_end_state(TAP_IDLE));
212 return ERROR_OK;
215 int mcu_write_dr(struct jtag_tap *tap, uint8_t *dr_in, uint8_t *dr_out, int dr_len, int rti)
217 if (NULL == tap)
219 LOG_ERROR("invalid tap");
220 return ERROR_FAIL;
224 struct scan_field field[1];
226 field[0].tap = tap;
227 field[0].num_bits = dr_len;
228 field[0].out_value = dr_out;
229 field[0].in_value = dr_in;
230 jtag_add_plain_dr_scan(sizeof(field) / sizeof(field[0]), field, jtag_set_end_state(TAP_IDLE));
233 return ERROR_OK;
236 int mcu_write_ir_u8(struct jtag_tap *tap, uint8_t *ir_in, uint8_t ir_out, int ir_len, int rti)
238 if (ir_len > 8)
240 LOG_ERROR("ir_len overflow, maxium is 8");
241 return ERROR_FAIL;
244 mcu_write_ir(tap, ir_in, &ir_out, ir_len, rti);
246 return ERROR_OK;
249 int mcu_write_dr_u8(struct jtag_tap *tap, uint8_t *dr_in, uint8_t dr_out, int dr_len, int rti)
251 if (dr_len > 8)
253 LOG_ERROR("dr_len overflow, maxium is 8");
254 return ERROR_FAIL;
257 mcu_write_dr(tap, dr_in, &dr_out, dr_len, rti);
259 return ERROR_OK;
262 int mcu_write_ir_u16(struct jtag_tap *tap, uint16_t *ir_in, uint16_t ir_out, int ir_len, int rti)
264 if (ir_len > 16)
266 LOG_ERROR("ir_len overflow, maxium is 16");
267 return ERROR_FAIL;
270 mcu_write_ir(tap, (uint8_t*)ir_in, (uint8_t*)&ir_out, ir_len, rti);
272 return ERROR_OK;
275 int mcu_write_dr_u16(struct jtag_tap *tap, uint16_t *dr_in, uint16_t dr_out, int dr_len, int rti)
277 if (dr_len > 16)
279 LOG_ERROR("dr_len overflow, maxium is 16");
280 return ERROR_FAIL;
283 mcu_write_dr(tap, (uint8_t*)dr_in, (uint8_t*)&dr_out, dr_len, rti);
285 return ERROR_OK;
288 int mcu_write_ir_u32(struct jtag_tap *tap, uint32_t *ir_in, uint32_t ir_out, int ir_len, int rti)
290 if (ir_len > 32)
292 LOG_ERROR("ir_len overflow, maxium is 32");
293 return ERROR_FAIL;
296 mcu_write_ir(tap, (uint8_t*)ir_in, (uint8_t*)&ir_out, ir_len, rti);
298 return ERROR_OK;
301 int mcu_write_dr_u32(struct jtag_tap *tap, uint32_t *dr_in, uint32_t dr_out, int dr_len, int rti)
303 if (dr_len > 32)
305 LOG_ERROR("dr_len overflow, maxium is 32");
306 return ERROR_FAIL;
309 mcu_write_dr(tap, (uint8_t*)dr_in, (uint8_t*)&dr_out, dr_len, rti);
311 return ERROR_OK;
314 int mcu_execute_queue(void)
316 return jtag_execute_queue();