1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
5 * Copyright (C) 2007-2009 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
8 * Copyright (C) 2008, Duane Ellis *
9 * openocd@duaneeellis.com *
11 * Copyright (C) 2008 by Spencer Oliver *
12 * spen@spen-soft.co.uk *
14 * Copyright (C) 2008 by Rick Altherr *
15 * kc8apf@kc8apf.net> *
17 * This program is free software; you can redistribute it and/or modify *
18 * it under the terms of the GNU General Public License as published by *
19 * the Free Software Foundation; either version 2 of the License, or *
20 * (at your option) any later version. *
22 * This program is distributed in the hope that it will be useful, *
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
25 * GNU General Public License for more details. *
27 * You should have received a copy of the GNU General Public License *
28 * along with this program; if not, write to the *
29 * Free Software Foundation, Inc., *
30 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
31 ***************************************************************************/
37 #include "target_type.h"
38 #include "target_request.h"
39 #include "breakpoints.h"
40 #include "time_support.h"
47 static int jim_mcrmrc(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
);
49 static int target_array2mem(Jim_Interp
*interp
, struct target
*target
, int argc
, Jim_Obj
*const *argv
);
50 static int target_mem2array(Jim_Interp
*interp
, struct target
*target
, int argc
, Jim_Obj
*const *argv
);
53 extern struct target_type arm7tdmi_target
;
54 extern struct target_type arm720t_target
;
55 extern struct target_type arm9tdmi_target
;
56 extern struct target_type arm920t_target
;
57 extern struct target_type arm966e_target
;
58 extern struct target_type arm926ejs_target
;
59 extern struct target_type fa526_target
;
60 extern struct target_type feroceon_target
;
61 extern struct target_type dragonite_target
;
62 extern struct target_type xscale_target
;
63 extern struct target_type cortexm3_target
;
64 extern struct target_type cortexa8_target
;
65 extern struct target_type arm11_target
;
66 extern struct target_type mips_m4k_target
;
67 extern struct target_type avr_target
;
69 struct target_type
*target_types
[] =
89 struct target
*all_targets
= NULL
;
90 struct target_event_callback
*target_event_callbacks
= NULL
;
91 struct target_timer_callback
*target_timer_callbacks
= NULL
;
93 const Jim_Nvp nvp_assert
[] = {
94 { .name
= "assert", NVP_ASSERT
},
95 { .name
= "deassert", NVP_DEASSERT
},
96 { .name
= "T", NVP_ASSERT
},
97 { .name
= "F", NVP_DEASSERT
},
98 { .name
= "t", NVP_ASSERT
},
99 { .name
= "f", NVP_DEASSERT
},
100 { .name
= NULL
, .value
= -1 }
103 const Jim_Nvp nvp_error_target
[] = {
104 { .value
= ERROR_TARGET_INVALID
, .name
= "err-invalid" },
105 { .value
= ERROR_TARGET_INIT_FAILED
, .name
= "err-init-failed" },
106 { .value
= ERROR_TARGET_TIMEOUT
, .name
= "err-timeout" },
107 { .value
= ERROR_TARGET_NOT_HALTED
, .name
= "err-not-halted" },
108 { .value
= ERROR_TARGET_FAILURE
, .name
= "err-failure" },
109 { .value
= ERROR_TARGET_UNALIGNED_ACCESS
, .name
= "err-unaligned-access" },
110 { .value
= ERROR_TARGET_DATA_ABORT
, .name
= "err-data-abort" },
111 { .value
= ERROR_TARGET_RESOURCE_NOT_AVAILABLE
, .name
= "err-resource-not-available" },
112 { .value
= ERROR_TARGET_TRANSLATION_FAULT
, .name
= "err-translation-fault" },
113 { .value
= ERROR_TARGET_NOT_RUNNING
, .name
= "err-not-running" },
114 { .value
= ERROR_TARGET_NOT_EXAMINED
, .name
= "err-not-examined" },
115 { .value
= -1, .name
= NULL
}
118 const char *target_strerror_safe(int err
)
122 n
= Jim_Nvp_value2name_simple(nvp_error_target
, err
);
123 if (n
->name
== NULL
) {
130 static const Jim_Nvp nvp_target_event
[] = {
131 { .value
= TARGET_EVENT_OLD_gdb_program_config
, .name
= "old-gdb_program_config" },
132 { .value
= TARGET_EVENT_OLD_pre_resume
, .name
= "old-pre_resume" },
134 { .value
= TARGET_EVENT_GDB_HALT
, .name
= "gdb-halt" },
135 { .value
= TARGET_EVENT_HALTED
, .name
= "halted" },
136 { .value
= TARGET_EVENT_RESUMED
, .name
= "resumed" },
137 { .value
= TARGET_EVENT_RESUME_START
, .name
= "resume-start" },
138 { .value
= TARGET_EVENT_RESUME_END
, .name
= "resume-end" },
140 { .name
= "gdb-start", .value
= TARGET_EVENT_GDB_START
},
141 { .name
= "gdb-end", .value
= TARGET_EVENT_GDB_END
},
143 /* historical name */
145 { .value
= TARGET_EVENT_RESET_START
, .name
= "reset-start" },
147 { .value
= TARGET_EVENT_RESET_ASSERT_PRE
, .name
= "reset-assert-pre" },
148 { .value
= TARGET_EVENT_RESET_ASSERT_POST
, .name
= "reset-assert-post" },
149 { .value
= TARGET_EVENT_RESET_DEASSERT_PRE
, .name
= "reset-deassert-pre" },
150 { .value
= TARGET_EVENT_RESET_DEASSERT_POST
, .name
= "reset-deassert-post" },
151 { .value
= TARGET_EVENT_RESET_HALT_PRE
, .name
= "reset-halt-pre" },
152 { .value
= TARGET_EVENT_RESET_HALT_POST
, .name
= "reset-halt-post" },
153 { .value
= TARGET_EVENT_RESET_WAIT_PRE
, .name
= "reset-wait-pre" },
154 { .value
= TARGET_EVENT_RESET_WAIT_POST
, .name
= "reset-wait-post" },
155 { .value
= TARGET_EVENT_RESET_INIT
, .name
= "reset-init" },
156 { .value
= TARGET_EVENT_RESET_END
, .name
= "reset-end" },
158 { .value
= TARGET_EVENT_EXAMINE_START
, .name
= "examine-start" },
159 { .value
= TARGET_EVENT_EXAMINE_END
, .name
= "examine-end" },
161 { .value
= TARGET_EVENT_DEBUG_HALTED
, .name
= "debug-halted" },
162 { .value
= TARGET_EVENT_DEBUG_RESUMED
, .name
= "debug-resumed" },
164 { .value
= TARGET_EVENT_GDB_ATTACH
, .name
= "gdb-attach" },
165 { .value
= TARGET_EVENT_GDB_DETACH
, .name
= "gdb-detach" },
167 { .value
= TARGET_EVENT_GDB_FLASH_WRITE_START
, .name
= "gdb-flash-write-start" },
168 { .value
= TARGET_EVENT_GDB_FLASH_WRITE_END
, .name
= "gdb-flash-write-end" },
170 { .value
= TARGET_EVENT_GDB_FLASH_ERASE_START
, .name
= "gdb-flash-erase-start" },
171 { .value
= TARGET_EVENT_GDB_FLASH_ERASE_END
, .name
= "gdb-flash-erase-end" },
173 { .value
= TARGET_EVENT_RESUME_START
, .name
= "resume-start" },
174 { .value
= TARGET_EVENT_RESUMED
, .name
= "resume-ok" },
175 { .value
= TARGET_EVENT_RESUME_END
, .name
= "resume-end" },
177 { .name
= NULL
, .value
= -1 }
180 const Jim_Nvp nvp_target_state
[] = {
181 { .name
= "unknown", .value
= TARGET_UNKNOWN
},
182 { .name
= "running", .value
= TARGET_RUNNING
},
183 { .name
= "halted", .value
= TARGET_HALTED
},
184 { .name
= "reset", .value
= TARGET_RESET
},
185 { .name
= "debug-running", .value
= TARGET_DEBUG_RUNNING
},
186 { .name
= NULL
, .value
= -1 },
189 const Jim_Nvp nvp_target_debug_reason
[] = {
190 { .name
= "debug-request" , .value
= DBG_REASON_DBGRQ
},
191 { .name
= "breakpoint" , .value
= DBG_REASON_BREAKPOINT
},
192 { .name
= "watchpoint" , .value
= DBG_REASON_WATCHPOINT
},
193 { .name
= "watchpoint-and-breakpoint", .value
= DBG_REASON_WPTANDBKPT
},
194 { .name
= "single-step" , .value
= DBG_REASON_SINGLESTEP
},
195 { .name
= "target-not-halted" , .value
= DBG_REASON_NOTHALTED
},
196 { .name
= "undefined" , .value
= DBG_REASON_UNDEFINED
},
197 { .name
= NULL
, .value
= -1 },
200 const Jim_Nvp nvp_target_endian
[] = {
201 { .name
= "big", .value
= TARGET_BIG_ENDIAN
},
202 { .name
= "little", .value
= TARGET_LITTLE_ENDIAN
},
203 { .name
= "be", .value
= TARGET_BIG_ENDIAN
},
204 { .name
= "le", .value
= TARGET_LITTLE_ENDIAN
},
205 { .name
= NULL
, .value
= -1 },
208 const Jim_Nvp nvp_reset_modes
[] = {
209 { .name
= "unknown", .value
= RESET_UNKNOWN
},
210 { .name
= "run" , .value
= RESET_RUN
},
211 { .name
= "halt" , .value
= RESET_HALT
},
212 { .name
= "init" , .value
= RESET_INIT
},
213 { .name
= NULL
, .value
= -1 },
217 target_state_name( struct target
*t
)
220 cp
= Jim_Nvp_value2name_simple(nvp_target_state
, t
->state
)->name
;
222 LOG_ERROR("Invalid target state: %d", (int)(t
->state
));
223 cp
= "(*BUG*unknown*BUG*)";
228 /* determine the number of the new target */
229 static int new_target_number(void)
234 /* number is 0 based */
238 if (x
< t
->target_number
) {
239 x
= t
->target_number
;
246 /* read a uint32_t from a buffer in target memory endianness */
247 uint32_t target_buffer_get_u32(struct target
*target
, const uint8_t *buffer
)
249 if (target
->endianness
== TARGET_LITTLE_ENDIAN
)
250 return le_to_h_u32(buffer
);
252 return be_to_h_u32(buffer
);
255 /* read a uint16_t from a buffer in target memory endianness */
256 uint16_t target_buffer_get_u16(struct target
*target
, const uint8_t *buffer
)
258 if (target
->endianness
== TARGET_LITTLE_ENDIAN
)
259 return le_to_h_u16(buffer
);
261 return be_to_h_u16(buffer
);
264 /* read a uint8_t from a buffer in target memory endianness */
265 uint8_t target_buffer_get_u8(struct target
*target
, const uint8_t *buffer
)
267 return *buffer
& 0x0ff;
270 /* write a uint32_t to a buffer in target memory endianness */
271 void target_buffer_set_u32(struct target
*target
, uint8_t *buffer
, uint32_t value
)
273 if (target
->endianness
== TARGET_LITTLE_ENDIAN
)
274 h_u32_to_le(buffer
, value
);
276 h_u32_to_be(buffer
, value
);
279 /* write a uint16_t to a buffer in target memory endianness */
280 void target_buffer_set_u16(struct target
*target
, uint8_t *buffer
, uint16_t value
)
282 if (target
->endianness
== TARGET_LITTLE_ENDIAN
)
283 h_u16_to_le(buffer
, value
);
285 h_u16_to_be(buffer
, value
);
288 /* write a uint8_t to a buffer in target memory endianness */
289 void target_buffer_set_u8(struct target
*target
, uint8_t *buffer
, uint8_t value
)
294 /* return a pointer to a configured target; id is name or number */
295 struct target
*get_target(const char *id
)
297 struct target
*target
;
299 /* try as tcltarget name */
300 for (target
= all_targets
; target
; target
= target
->next
) {
301 if (target
->cmd_name
== NULL
)
303 if (strcmp(id
, target
->cmd_name
) == 0)
307 /* It's OK to remove this fallback sometime after August 2010 or so */
309 /* no match, try as number */
311 if (parse_uint(id
, &num
) != ERROR_OK
)
314 for (target
= all_targets
; target
; target
= target
->next
) {
315 if (target
->target_number
== (int)num
) {
316 LOG_WARNING("use '%s' as target identifier, not '%u'",
317 target
->cmd_name
, num
);
325 /* returns a pointer to the n-th configured target */
326 static struct target
*get_target_by_num(int num
)
328 struct target
*target
= all_targets
;
331 if (target
->target_number
== num
) {
334 target
= target
->next
;
340 struct target
* get_current_target(struct command_context
*cmd_ctx
)
342 struct target
*target
= get_target_by_num(cmd_ctx
->current_target
);
346 LOG_ERROR("BUG: current_target out of bounds");
353 int target_poll(struct target
*target
)
357 /* We can't poll until after examine */
358 if (!target_was_examined(target
))
360 /* Fail silently lest we pollute the log */
364 retval
= target
->type
->poll(target
);
365 if (retval
!= ERROR_OK
)
368 if (target
->halt_issued
)
370 if (target
->state
== TARGET_HALTED
)
372 target
->halt_issued
= false;
375 long long t
= timeval_ms() - target
->halt_issued_time
;
378 target
->halt_issued
= false;
379 LOG_INFO("Halt timed out, wake up GDB.");
380 target_call_event_callbacks(target
, TARGET_EVENT_GDB_HALT
);
388 int target_halt(struct target
*target
)
391 /* We can't poll until after examine */
392 if (!target_was_examined(target
))
394 LOG_ERROR("Target not examined yet");
398 retval
= target
->type
->halt(target
);
399 if (retval
!= ERROR_OK
)
402 target
->halt_issued
= true;
403 target
->halt_issued_time
= timeval_ms();
408 int target_resume(struct target
*target
, int current
, uint32_t address
, int handle_breakpoints
, int debug_execution
)
412 /* We can't poll until after examine */
413 if (!target_was_examined(target
))
415 LOG_ERROR("Target not examined yet");
419 /* note that resume *must* be asynchronous. The CPU can halt before we poll. The CPU can
420 * even halt at the current PC as a result of a software breakpoint being inserted by (a bug?)
423 if ((retval
= target
->type
->resume(target
, current
, address
, handle_breakpoints
, debug_execution
)) != ERROR_OK
)
429 int target_process_reset(struct command_context
*cmd_ctx
, enum target_reset_mode reset_mode
)
434 n
= Jim_Nvp_value2name_simple(nvp_reset_modes
, reset_mode
);
435 if (n
->name
== NULL
) {
436 LOG_ERROR("invalid reset mode");
440 /* disable polling during reset to make reset event scripts
441 * more predictable, i.e. dr/irscan & pathmove in events will
442 * not have JTAG operations injected into the middle of a sequence.
444 bool save_poll
= jtag_poll_get_enabled();
446 jtag_poll_set_enabled(false);
448 sprintf(buf
, "ocd_process_reset %s", n
->name
);
449 retval
= Jim_Eval(interp
, buf
);
451 jtag_poll_set_enabled(save_poll
);
453 if (retval
!= JIM_OK
) {
454 Jim_PrintErrorMessage(interp
);
458 /* We want any events to be processed before the prompt */
459 retval
= target_call_timer_callbacks_now();
464 static int identity_virt2phys(struct target
*target
,
465 uint32_t virtual, uint32_t *physical
)
471 static int no_mmu(struct target
*target
, int *enabled
)
477 static int default_examine(struct target
*target
)
479 target_set_examined(target
);
483 int target_examine_one(struct target
*target
)
485 return target
->type
->examine(target
);
488 static int jtag_enable_callback(enum jtag_event event
, void *priv
)
490 struct target
*target
= priv
;
492 if (event
!= JTAG_TAP_EVENT_ENABLE
|| !target
->tap
->enabled
)
495 jtag_unregister_event_callback(jtag_enable_callback
, target
);
496 return target_examine_one(target
);
500 /* Targets that correctly implement init + examine, i.e.
501 * no communication with target during init:
505 int target_examine(void)
507 int retval
= ERROR_OK
;
508 struct target
*target
;
510 for (target
= all_targets
; target
; target
= target
->next
)
512 /* defer examination, but don't skip it */
513 if (!target
->tap
->enabled
) {
514 jtag_register_event_callback(jtag_enable_callback
,
518 if ((retval
= target_examine_one(target
)) != ERROR_OK
)
523 const char *target_get_name(struct target
*target
)
525 return target
->type
->name
;
528 static int target_write_memory_imp(struct target
*target
, uint32_t address
, uint32_t size
, uint32_t count
, uint8_t *buffer
)
530 if (!target_was_examined(target
))
532 LOG_ERROR("Target not examined yet");
535 return target
->type
->write_memory_imp(target
, address
, size
, count
, buffer
);
538 static int target_read_memory_imp(struct target
*target
, uint32_t address
, uint32_t size
, uint32_t count
, uint8_t *buffer
)
540 if (!target_was_examined(target
))
542 LOG_ERROR("Target not examined yet");
545 return target
->type
->read_memory_imp(target
, address
, size
, count
, buffer
);
548 static int target_soft_reset_halt_imp(struct target
*target
)
550 if (!target_was_examined(target
))
552 LOG_ERROR("Target not examined yet");
555 if (!target
->type
->soft_reset_halt_imp
) {
556 LOG_ERROR("Target %s does not support soft_reset_halt",
560 return target
->type
->soft_reset_halt_imp(target
);
563 static int target_run_algorithm_imp(struct target
*target
, int num_mem_params
, struct mem_param
*mem_params
, int num_reg_params
, struct reg_param
*reg_param
, uint32_t entry_point
, uint32_t exit_point
, int timeout_ms
, void *arch_info
)
565 if (!target_was_examined(target
))
567 LOG_ERROR("Target not examined yet");
570 return target
->type
->run_algorithm_imp(target
, num_mem_params
, mem_params
, num_reg_params
, reg_param
, entry_point
, exit_point
, timeout_ms
, arch_info
);
573 int target_read_memory(struct target
*target
,
574 uint32_t address
, uint32_t size
, uint32_t count
, uint8_t *buffer
)
576 return target
->type
->read_memory(target
, address
, size
, count
, buffer
);
579 int target_read_phys_memory(struct target
*target
,
580 uint32_t address
, uint32_t size
, uint32_t count
, uint8_t *buffer
)
582 return target
->type
->read_phys_memory(target
, address
, size
, count
, buffer
);
585 int target_write_memory(struct target
*target
,
586 uint32_t address
, uint32_t size
, uint32_t count
, uint8_t *buffer
)
588 return target
->type
->write_memory(target
, address
, size
, count
, buffer
);
591 int target_write_phys_memory(struct target
*target
,
592 uint32_t address
, uint32_t size
, uint32_t count
, uint8_t *buffer
)
594 return target
->type
->write_phys_memory(target
, address
, size
, count
, buffer
);
597 int target_bulk_write_memory(struct target
*target
,
598 uint32_t address
, uint32_t count
, uint8_t *buffer
)
600 return target
->type
->bulk_write_memory(target
, address
, count
, buffer
);
603 int target_add_breakpoint(struct target
*target
,
604 struct breakpoint
*breakpoint
)
606 return target
->type
->add_breakpoint(target
, breakpoint
);
608 int target_remove_breakpoint(struct target
*target
,
609 struct breakpoint
*breakpoint
)
611 return target
->type
->remove_breakpoint(target
, breakpoint
);
614 int target_add_watchpoint(struct target
*target
,
615 struct watchpoint
*watchpoint
)
617 return target
->type
->add_watchpoint(target
, watchpoint
);
619 int target_remove_watchpoint(struct target
*target
,
620 struct watchpoint
*watchpoint
)
622 return target
->type
->remove_watchpoint(target
, watchpoint
);
625 int target_get_gdb_reg_list(struct target
*target
,
626 struct reg
**reg_list
[], int *reg_list_size
)
628 return target
->type
->get_gdb_reg_list(target
, reg_list
, reg_list_size
);
630 int target_step(struct target
*target
,
631 int current
, uint32_t address
, int handle_breakpoints
)
633 return target
->type
->step(target
, current
, address
, handle_breakpoints
);
637 int target_run_algorithm(struct target
*target
,
638 int num_mem_params
, struct mem_param
*mem_params
,
639 int num_reg_params
, struct reg_param
*reg_param
,
640 uint32_t entry_point
, uint32_t exit_point
,
641 int timeout_ms
, void *arch_info
)
643 return target
->type
->run_algorithm(target
,
644 num_mem_params
, mem_params
, num_reg_params
, reg_param
,
645 entry_point
, exit_point
, timeout_ms
, arch_info
);
649 * Reset the @c examined flag for the given target.
650 * Pure paranoia -- targets are zeroed on allocation.
652 static void target_reset_examined(struct target
*target
)
654 target
->examined
= false;
659 static int default_mrc(struct target
*target
, int cpnum
, uint32_t op1
, uint32_t op2
, uint32_t CRn
, uint32_t CRm
, uint32_t *value
)
661 LOG_ERROR("Not implemented: %s", __func__
);
665 static int default_mcr(struct target
*target
, int cpnum
, uint32_t op1
, uint32_t op2
, uint32_t CRn
, uint32_t CRm
, uint32_t value
)
667 LOG_ERROR("Not implemented: %s", __func__
);
671 static int arm_cp_check(struct target
*target
, int cpnum
, uint32_t op1
, uint32_t op2
, uint32_t CRn
, uint32_t CRm
)
674 if (!target_was_examined(target
))
676 LOG_ERROR("Target not examined yet");
680 if ((cpnum
<0) || (cpnum
> 15))
682 LOG_ERROR("Illegal co-processor %d", cpnum
);
688 LOG_ERROR("Illegal op1");
694 LOG_ERROR("Illegal op2");
700 LOG_ERROR("Illegal CRn");
706 LOG_ERROR("Illegal CRm");
713 int target_mrc(struct target
*target
, int cpnum
, uint32_t op1
, uint32_t op2
, uint32_t CRn
, uint32_t CRm
, uint32_t *value
)
717 retval
= arm_cp_check(target
, cpnum
, op1
, op2
, CRn
, CRm
);
718 if (retval
!= ERROR_OK
)
721 return target
->type
->mrc(target
, cpnum
, op1
, op2
, CRn
, CRm
, value
);
724 int target_mcr(struct target
*target
, int cpnum
, uint32_t op1
, uint32_t op2
, uint32_t CRn
, uint32_t CRm
, uint32_t value
)
728 retval
= arm_cp_check(target
, cpnum
, op1
, op2
, CRn
, CRm
);
729 if (retval
!= ERROR_OK
)
732 return target
->type
->mcr(target
, cpnum
, op1
, op2
, CRn
, CRm
, value
);
736 err_read_phys_memory(struct target
*target
, uint32_t address
,
737 uint32_t size
, uint32_t count
, uint8_t *buffer
)
739 LOG_ERROR("Not implemented: %s", __func__
);
744 err_write_phys_memory(struct target
*target
, uint32_t address
,
745 uint32_t size
, uint32_t count
, uint8_t *buffer
)
747 LOG_ERROR("Not implemented: %s", __func__
);
751 int target_init(struct command_context
*cmd_ctx
)
753 struct target
*target
;
756 for (target
= all_targets
; target
; target
= target
->next
) {
757 struct target_type
*type
= target
->type
;
759 target_reset_examined(target
);
760 if (target
->type
->examine
== NULL
)
762 target
->type
->examine
= default_examine
;
765 if ((retval
= target
->type
->init_target(cmd_ctx
, target
)) != ERROR_OK
)
767 LOG_ERROR("target '%s' init failed", target_get_name(target
));
772 * @todo MCR/MRC are ARM-specific; don't require them in
773 * all targets, or for ARMs without coprocessors.
775 if (target
->type
->mcr
== NULL
)
777 target
->type
->mcr
= default_mcr
;
780 /* FIX! multiple targets will generally register global commands
781 * multiple times. Only register this one if *one* of the
782 * targets need the command. Hmm... make it a command on the
783 * Jim Tcl target object?
785 register_jim(cmd_ctx
, "mcr", jim_mcrmrc
, "write coprocessor <cpnum> <op1> <op2> <CRn> <CRm> <value>");
788 if (target
->type
->mrc
== NULL
)
790 target
->type
->mrc
= default_mrc
;
793 register_jim(cmd_ctx
, "mrc", jim_mcrmrc
, "read coprocessor <cpnum> <op1> <op2> <CRn> <CRm>");
798 * @todo get rid of those *memory_imp() methods, now that all
799 * callers are using target_*_memory() accessors ... and make
800 * sure the "physical" paths handle the same issues.
803 /* a non-invasive way(in terms of patches) to add some code that
804 * runs before the type->write/read_memory implementation
806 target
->type
->write_memory_imp
= target
->type
->write_memory
;
807 target
->type
->write_memory
= target_write_memory_imp
;
808 target
->type
->read_memory_imp
= target
->type
->read_memory
;
809 target
->type
->read_memory
= target_read_memory_imp
;
810 target
->type
->soft_reset_halt_imp
= target
->type
->soft_reset_halt
;
811 target
->type
->soft_reset_halt
= target_soft_reset_halt_imp
;
812 target
->type
->run_algorithm_imp
= target
->type
->run_algorithm
;
813 target
->type
->run_algorithm
= target_run_algorithm_imp
;
815 /* Sanity-check MMU support ... stub in what we must, to help
816 * implement it in stages, but warn if we need to do so.
819 if (type
->write_phys_memory
== NULL
) {
820 LOG_ERROR("type '%s' is missing %s",
822 "write_phys_memory");
823 type
->write_phys_memory
= err_write_phys_memory
;
825 if (type
->read_phys_memory
== NULL
) {
826 LOG_ERROR("type '%s' is missing %s",
829 type
->read_phys_memory
= err_read_phys_memory
;
831 if (type
->virt2phys
== NULL
) {
832 LOG_ERROR("type '%s' is missing %s",
835 type
->virt2phys
= identity_virt2phys
;
838 /* Make sure no-MMU targets all behave the same: make no
839 * distinction between physical and virtual addresses, and
840 * ensure that virt2phys() is always an identity mapping.
843 if (type
->write_phys_memory
844 || type
->read_phys_memory
846 LOG_WARNING("type '%s' has broken MMU hooks",
850 type
->write_phys_memory
= type
->write_memory
;
851 type
->read_phys_memory
= type
->read_memory
;
852 type
->virt2phys
= identity_virt2phys
;
858 if ((retval
= target_register_user_commands(cmd_ctx
)) != ERROR_OK
)
860 if ((retval
= target_register_timer_callback(handle_target
, 100, 1, NULL
)) != ERROR_OK
)
867 int target_register_event_callback(int (*callback
)(struct target
*target
, enum target_event event
, void *priv
), void *priv
)
869 struct target_event_callback
**callbacks_p
= &target_event_callbacks
;
871 if (callback
== NULL
)
873 return ERROR_INVALID_ARGUMENTS
;
878 while ((*callbacks_p
)->next
)
879 callbacks_p
= &((*callbacks_p
)->next
);
880 callbacks_p
= &((*callbacks_p
)->next
);
883 (*callbacks_p
) = malloc(sizeof(struct target_event_callback
));
884 (*callbacks_p
)->callback
= callback
;
885 (*callbacks_p
)->priv
= priv
;
886 (*callbacks_p
)->next
= NULL
;
891 int target_register_timer_callback(int (*callback
)(void *priv
), int time_ms
, int periodic
, void *priv
)
893 struct target_timer_callback
**callbacks_p
= &target_timer_callbacks
;
896 if (callback
== NULL
)
898 return ERROR_INVALID_ARGUMENTS
;
903 while ((*callbacks_p
)->next
)
904 callbacks_p
= &((*callbacks_p
)->next
);
905 callbacks_p
= &((*callbacks_p
)->next
);
908 (*callbacks_p
) = malloc(sizeof(struct target_timer_callback
));
909 (*callbacks_p
)->callback
= callback
;
910 (*callbacks_p
)->periodic
= periodic
;
911 (*callbacks_p
)->time_ms
= time_ms
;
913 gettimeofday(&now
, NULL
);
914 (*callbacks_p
)->when
.tv_usec
= now
.tv_usec
+ (time_ms
% 1000) * 1000;
915 time_ms
-= (time_ms
% 1000);
916 (*callbacks_p
)->when
.tv_sec
= now
.tv_sec
+ (time_ms
/ 1000);
917 if ((*callbacks_p
)->when
.tv_usec
> 1000000)
919 (*callbacks_p
)->when
.tv_usec
= (*callbacks_p
)->when
.tv_usec
- 1000000;
920 (*callbacks_p
)->when
.tv_sec
+= 1;
923 (*callbacks_p
)->priv
= priv
;
924 (*callbacks_p
)->next
= NULL
;
929 int target_unregister_event_callback(int (*callback
)(struct target
*target
, enum target_event event
, void *priv
), void *priv
)
931 struct target_event_callback
**p
= &target_event_callbacks
;
932 struct target_event_callback
*c
= target_event_callbacks
;
934 if (callback
== NULL
)
936 return ERROR_INVALID_ARGUMENTS
;
941 struct target_event_callback
*next
= c
->next
;
942 if ((c
->callback
== callback
) && (c
->priv
== priv
))
956 int target_unregister_timer_callback(int (*callback
)(void *priv
), void *priv
)
958 struct target_timer_callback
**p
= &target_timer_callbacks
;
959 struct target_timer_callback
*c
= target_timer_callbacks
;
961 if (callback
== NULL
)
963 return ERROR_INVALID_ARGUMENTS
;
968 struct target_timer_callback
*next
= c
->next
;
969 if ((c
->callback
== callback
) && (c
->priv
== priv
))
983 int target_call_event_callbacks(struct target
*target
, enum target_event event
)
985 struct target_event_callback
*callback
= target_event_callbacks
;
986 struct target_event_callback
*next_callback
;
988 if (event
== TARGET_EVENT_HALTED
)
990 /* execute early halted first */
991 target_call_event_callbacks(target
, TARGET_EVENT_GDB_HALT
);
994 LOG_DEBUG("target event %i (%s)",
996 Jim_Nvp_value2name_simple(nvp_target_event
, event
)->name
);
998 target_handle_event(target
, event
);
1002 next_callback
= callback
->next
;
1003 callback
->callback(target
, event
, callback
->priv
);
1004 callback
= next_callback
;
1010 static int target_timer_callback_periodic_restart(
1011 struct target_timer_callback
*cb
, struct timeval
*now
)
1013 int time_ms
= cb
->time_ms
;
1014 cb
->when
.tv_usec
= now
->tv_usec
+ (time_ms
% 1000) * 1000;
1015 time_ms
-= (time_ms
% 1000);
1016 cb
->when
.tv_sec
= now
->tv_sec
+ time_ms
/ 1000;
1017 if (cb
->when
.tv_usec
> 1000000)
1019 cb
->when
.tv_usec
= cb
->when
.tv_usec
- 1000000;
1020 cb
->when
.tv_sec
+= 1;
1025 static int target_call_timer_callback(struct target_timer_callback
*cb
,
1026 struct timeval
*now
)
1028 cb
->callback(cb
->priv
);
1031 return target_timer_callback_periodic_restart(cb
, now
);
1033 return target_unregister_timer_callback(cb
->callback
, cb
->priv
);
1036 static int target_call_timer_callbacks_check_time(int checktime
)
1041 gettimeofday(&now
, NULL
);
1043 struct target_timer_callback
*callback
= target_timer_callbacks
;
1046 // cleaning up may unregister and free this callback
1047 struct target_timer_callback
*next_callback
= callback
->next
;
1049 bool call_it
= callback
->callback
&&
1050 ((!checktime
&& callback
->periodic
) ||
1051 now
.tv_sec
> callback
->when
.tv_sec
||
1052 (now
.tv_sec
== callback
->when
.tv_sec
&&
1053 now
.tv_usec
>= callback
->when
.tv_usec
));
1057 int retval
= target_call_timer_callback(callback
, &now
);
1058 if (retval
!= ERROR_OK
)
1062 callback
= next_callback
;
1068 int target_call_timer_callbacks(void)
1070 return target_call_timer_callbacks_check_time(1);
1073 /* invoke periodic callbacks immediately */
1074 int target_call_timer_callbacks_now(void)
1076 return target_call_timer_callbacks_check_time(0);
1079 int target_alloc_working_area(struct target
*target
, uint32_t size
, struct working_area
**area
)
1081 struct working_area
*c
= target
->working_areas
;
1082 struct working_area
*new_wa
= NULL
;
1084 /* Reevaluate working area address based on MMU state*/
1085 if (target
->working_areas
== NULL
)
1090 retval
= target
->type
->mmu(target
, &enabled
);
1091 if (retval
!= ERROR_OK
)
1097 if (target
->working_area_phys_spec
) {
1098 LOG_DEBUG("MMU disabled, using physical "
1099 "address for working memory 0x%08x",
1100 (unsigned)target
->working_area_phys
);
1101 target
->working_area
= target
->working_area_phys
;
1103 LOG_ERROR("No working memory available. "
1104 "Specify -work-area-phys to target.");
1105 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE
;
1108 if (target
->working_area_virt_spec
) {
1109 LOG_DEBUG("MMU enabled, using virtual "
1110 "address for working memory 0x%08x",
1111 (unsigned)target
->working_area_virt
);
1112 target
->working_area
= target
->working_area_virt
;
1114 LOG_ERROR("No working memory available. "
1115 "Specify -work-area-virt to target.");
1116 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE
;
1121 /* only allocate multiples of 4 byte */
1124 LOG_ERROR("BUG: code tried to allocate unaligned number of bytes (0x%08x), padding", ((unsigned)(size
)));
1125 size
= (size
+ 3) & (~3);
1128 /* see if there's already a matching working area */
1131 if ((c
->free
) && (c
->size
== size
))
1139 /* if not, allocate a new one */
1142 struct working_area
**p
= &target
->working_areas
;
1143 uint32_t first_free
= target
->working_area
;
1144 uint32_t free_size
= target
->working_area_size
;
1146 c
= target
->working_areas
;
1149 first_free
+= c
->size
;
1150 free_size
-= c
->size
;
1155 if (free_size
< size
)
1157 LOG_WARNING("not enough working area available(requested %u, free %u)",
1158 (unsigned)(size
), (unsigned)(free_size
));
1159 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE
;
1162 LOG_DEBUG("allocated new working area at address 0x%08x", (unsigned)first_free
);
1164 new_wa
= malloc(sizeof(struct working_area
));
1165 new_wa
->next
= NULL
;
1166 new_wa
->size
= size
;
1167 new_wa
->address
= first_free
;
1169 if (target
->backup_working_area
)
1172 new_wa
->backup
= malloc(new_wa
->size
);
1173 if ((retval
= target_read_memory(target
, new_wa
->address
, 4, new_wa
->size
/ 4, new_wa
->backup
)) != ERROR_OK
)
1175 free(new_wa
->backup
);
1182 new_wa
->backup
= NULL
;
1185 /* put new entry in list */
1189 /* mark as used, and return the new (reused) area */
1194 new_wa
->user
= area
;
1199 int target_free_working_area_restore(struct target
*target
, struct working_area
*area
, int restore
)
1204 if (restore
&& target
->backup_working_area
)
1207 if ((retval
= target_write_memory(target
, area
->address
, 4, area
->size
/ 4, area
->backup
)) != ERROR_OK
)
1213 /* mark user pointer invalid */
1220 int target_free_working_area(struct target
*target
, struct working_area
*area
)
1222 return target_free_working_area_restore(target
, area
, 1);
1225 /* free resources and restore memory, if restoring memory fails,
1226 * free up resources anyway
1228 void target_free_all_working_areas_restore(struct target
*target
, int restore
)
1230 struct working_area
*c
= target
->working_areas
;
1234 struct working_area
*next
= c
->next
;
1235 target_free_working_area_restore(target
, c
, restore
);
1245 target
->working_areas
= NULL
;
1248 void target_free_all_working_areas(struct target
*target
)
1250 target_free_all_working_areas_restore(target
, 1);
1253 int target_arch_state(struct target
*target
)
1258 LOG_USER("No target has been configured");
1262 LOG_USER("target state: %s", target_state_name( target
));
1264 if (target
->state
!= TARGET_HALTED
)
1267 retval
= target
->type
->arch_state(target
);
1271 /* Single aligned words are guaranteed to use 16 or 32 bit access
1272 * mode respectively, otherwise data is handled as quickly as
1275 int target_write_buffer(struct target
*target
, uint32_t address
, uint32_t size
, uint8_t *buffer
)
1278 LOG_DEBUG("writing buffer of %i byte at 0x%8.8x",
1279 (int)size
, (unsigned)address
);
1281 if (!target_was_examined(target
))
1283 LOG_ERROR("Target not examined yet");
1291 if ((address
+ size
- 1) < address
)
1293 /* GDB can request this when e.g. PC is 0xfffffffc*/
1294 LOG_ERROR("address + size wrapped(0x%08x, 0x%08x)",
1300 if (((address
% 2) == 0) && (size
== 2))
1302 return target_write_memory(target
, address
, 2, 1, buffer
);
1305 /* handle unaligned head bytes */
1308 uint32_t unaligned
= 4 - (address
% 4);
1310 if (unaligned
> size
)
1313 if ((retval
= target_write_memory(target
, address
, 1, unaligned
, buffer
)) != ERROR_OK
)
1316 buffer
+= unaligned
;
1317 address
+= unaligned
;
1321 /* handle aligned words */
1324 int aligned
= size
- (size
% 4);
1326 /* use bulk writes above a certain limit. This may have to be changed */
1329 if ((retval
= target
->type
->bulk_write_memory(target
, address
, aligned
/ 4, buffer
)) != ERROR_OK
)
1334 if ((retval
= target_write_memory(target
, address
, 4, aligned
/ 4, buffer
)) != ERROR_OK
)
1343 /* handle tail writes of less than 4 bytes */
1346 if ((retval
= target_write_memory(target
, address
, 1, size
, buffer
)) != ERROR_OK
)
1353 /* Single aligned words are guaranteed to use 16 or 32 bit access
1354 * mode respectively, otherwise data is handled as quickly as
1357 int target_read_buffer(struct target
*target
, uint32_t address
, uint32_t size
, uint8_t *buffer
)
1360 LOG_DEBUG("reading buffer of %i byte at 0x%8.8x",
1361 (int)size
, (unsigned)address
);
1363 if (!target_was_examined(target
))
1365 LOG_ERROR("Target not examined yet");
1373 if ((address
+ size
- 1) < address
)
1375 /* GDB can request this when e.g. PC is 0xfffffffc*/
1376 LOG_ERROR("address + size wrapped(0x%08" PRIx32
", 0x%08" PRIx32
")",
1382 if (((address
% 2) == 0) && (size
== 2))
1384 return target_read_memory(target
, address
, 2, 1, buffer
);
1387 /* handle unaligned head bytes */
1390 uint32_t unaligned
= 4 - (address
% 4);
1392 if (unaligned
> size
)
1395 if ((retval
= target_read_memory(target
, address
, 1, unaligned
, buffer
)) != ERROR_OK
)
1398 buffer
+= unaligned
;
1399 address
+= unaligned
;
1403 /* handle aligned words */
1406 int aligned
= size
- (size
% 4);
1408 if ((retval
= target_read_memory(target
, address
, 4, aligned
/ 4, buffer
)) != ERROR_OK
)
1416 /*prevent byte access when possible (avoid AHB access limitations in some cases)*/
1419 int aligned
= size
- (size
%2);
1420 retval
= target_read_memory(target
, address
, 2, aligned
/ 2, buffer
);
1421 if (retval
!= ERROR_OK
)
1428 /* handle tail writes of less than 4 bytes */
1431 if ((retval
= target_read_memory(target
, address
, 1, size
, buffer
)) != ERROR_OK
)
1438 int target_checksum_memory(struct target
*target
, uint32_t address
, uint32_t size
, uint32_t* crc
)
1443 uint32_t checksum
= 0;
1444 if (!target_was_examined(target
))
1446 LOG_ERROR("Target not examined yet");
1450 if ((retval
= target
->type
->checksum_memory(target
, address
,
1451 size
, &checksum
)) != ERROR_OK
)
1453 buffer
= malloc(size
);
1456 LOG_ERROR("error allocating buffer for section (%d bytes)", (int)size
);
1457 return ERROR_INVALID_ARGUMENTS
;
1459 retval
= target_read_buffer(target
, address
, size
, buffer
);
1460 if (retval
!= ERROR_OK
)
1466 /* convert to target endianess */
1467 for (i
= 0; i
< (size
/sizeof(uint32_t)); i
++)
1469 uint32_t target_data
;
1470 target_data
= target_buffer_get_u32(target
, &buffer
[i
*sizeof(uint32_t)]);
1471 target_buffer_set_u32(target
, &buffer
[i
*sizeof(uint32_t)], target_data
);
1474 retval
= image_calculate_checksum(buffer
, size
, &checksum
);
1483 int target_blank_check_memory(struct target
*target
, uint32_t address
, uint32_t size
, uint32_t* blank
)
1486 if (!target_was_examined(target
))
1488 LOG_ERROR("Target not examined yet");
1492 if (target
->type
->blank_check_memory
== 0)
1493 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE
;
1495 retval
= target
->type
->blank_check_memory(target
, address
, size
, blank
);
1500 int target_read_u32(struct target
*target
, uint32_t address
, uint32_t *value
)
1502 uint8_t value_buf
[4];
1503 if (!target_was_examined(target
))
1505 LOG_ERROR("Target not examined yet");
1509 int retval
= target_read_memory(target
, address
, 4, 1, value_buf
);
1511 if (retval
== ERROR_OK
)
1513 *value
= target_buffer_get_u32(target
, value_buf
);
1514 LOG_DEBUG("address: 0x%8.8" PRIx32
", value: 0x%8.8" PRIx32
"",
1521 LOG_DEBUG("address: 0x%8.8" PRIx32
" failed",
1528 int target_read_u16(struct target
*target
, uint32_t address
, uint16_t *value
)
1530 uint8_t value_buf
[2];
1531 if (!target_was_examined(target
))
1533 LOG_ERROR("Target not examined yet");
1537 int retval
= target_read_memory(target
, address
, 2, 1, value_buf
);
1539 if (retval
== ERROR_OK
)
1541 *value
= target_buffer_get_u16(target
, value_buf
);
1542 LOG_DEBUG("address: 0x%8.8" PRIx32
", value: 0x%4.4x",
1549 LOG_DEBUG("address: 0x%8.8" PRIx32
" failed",
1556 int target_read_u8(struct target
*target
, uint32_t address
, uint8_t *value
)
1558 int retval
= target_read_memory(target
, address
, 1, 1, value
);
1559 if (!target_was_examined(target
))
1561 LOG_ERROR("Target not examined yet");
1565 if (retval
== ERROR_OK
)
1567 LOG_DEBUG("address: 0x%8.8" PRIx32
", value: 0x%2.2x",
1574 LOG_DEBUG("address: 0x%8.8" PRIx32
" failed",
1581 int target_write_u32(struct target
*target
, uint32_t address
, uint32_t value
)
1584 uint8_t value_buf
[4];
1585 if (!target_was_examined(target
))
1587 LOG_ERROR("Target not examined yet");
1591 LOG_DEBUG("address: 0x%8.8" PRIx32
", value: 0x%8.8" PRIx32
"",
1595 target_buffer_set_u32(target
, value_buf
, value
);
1596 if ((retval
= target_write_memory(target
, address
, 4, 1, value_buf
)) != ERROR_OK
)
1598 LOG_DEBUG("failed: %i", retval
);
1604 int target_write_u16(struct target
*target
, uint32_t address
, uint16_t value
)
1607 uint8_t value_buf
[2];
1608 if (!target_was_examined(target
))
1610 LOG_ERROR("Target not examined yet");
1614 LOG_DEBUG("address: 0x%8.8" PRIx32
", value: 0x%8.8x",
1618 target_buffer_set_u16(target
, value_buf
, value
);
1619 if ((retval
= target_write_memory(target
, address
, 2, 1, value_buf
)) != ERROR_OK
)
1621 LOG_DEBUG("failed: %i", retval
);
1627 int target_write_u8(struct target
*target
, uint32_t address
, uint8_t value
)
1630 if (!target_was_examined(target
))
1632 LOG_ERROR("Target not examined yet");
1636 LOG_DEBUG("address: 0x%8.8" PRIx32
", value: 0x%2.2x",
1639 if ((retval
= target_write_memory(target
, address
, 1, 1, &value
)) != ERROR_OK
)
1641 LOG_DEBUG("failed: %i", retval
);
1647 COMMAND_HANDLER(handle_targets_command
)
1649 struct target
*target
= all_targets
;
1653 target
= get_target(CMD_ARGV
[0]);
1654 if (target
== NULL
) {
1655 command_print(CMD_CTX
,"Target: %s is unknown, try one of:\n", CMD_ARGV
[0]);
1658 if (!target
->tap
->enabled
) {
1659 command_print(CMD_CTX
,"Target: TAP %s is disabled, "
1660 "can't be the current target\n",
1661 target
->tap
->dotted_name
);
1665 CMD_CTX
->current_target
= target
->target_number
;
1670 target
= all_targets
;
1671 command_print(CMD_CTX
, " TargetName Type Endian TapName State ");
1672 command_print(CMD_CTX
, "-- ------------------ ---------- ------ ------------------ ------------");
1678 if (target
->tap
->enabled
)
1679 state
= target_state_name( target
);
1681 state
= "tap-disabled";
1683 if (CMD_CTX
->current_target
== target
->target_number
)
1686 /* keep columns lined up to match the headers above */
1687 command_print(CMD_CTX
, "%2d%c %-18s %-10s %-6s %-18s %s",
1688 target
->target_number
,
1691 target_get_name(target
),
1692 Jim_Nvp_value2name_simple(nvp_target_endian
,
1693 target
->endianness
)->name
,
1694 target
->tap
->dotted_name
,
1696 target
= target
->next
;
1702 /* every 300ms we check for reset & powerdropout and issue a "reset halt" if so. */
1704 static int powerDropout
;
1705 static int srstAsserted
;
1707 static int runPowerRestore
;
1708 static int runPowerDropout
;
1709 static int runSrstAsserted
;
1710 static int runSrstDeasserted
;
1712 static int sense_handler(void)
1714 static int prevSrstAsserted
= 0;
1715 static int prevPowerdropout
= 0;
1718 if ((retval
= jtag_power_dropout(&powerDropout
)) != ERROR_OK
)
1722 powerRestored
= prevPowerdropout
&& !powerDropout
;
1725 runPowerRestore
= 1;
1728 long long current
= timeval_ms();
1729 static long long lastPower
= 0;
1730 int waitMore
= lastPower
+ 2000 > current
;
1731 if (powerDropout
&& !waitMore
)
1733 runPowerDropout
= 1;
1734 lastPower
= current
;
1737 if ((retval
= jtag_srst_asserted(&srstAsserted
)) != ERROR_OK
)
1741 srstDeasserted
= prevSrstAsserted
&& !srstAsserted
;
1743 static long long lastSrst
= 0;
1744 waitMore
= lastSrst
+ 2000 > current
;
1745 if (srstDeasserted
&& !waitMore
)
1747 runSrstDeasserted
= 1;
1751 if (!prevSrstAsserted
&& srstAsserted
)
1753 runSrstAsserted
= 1;
1756 prevSrstAsserted
= srstAsserted
;
1757 prevPowerdropout
= powerDropout
;
1759 if (srstDeasserted
|| powerRestored
)
1761 /* Other than logging the event we can't do anything here.
1762 * Issuing a reset is a particularly bad idea as we might
1763 * be inside a reset already.
1770 static void target_call_event_callbacks_all(enum target_event e
) {
1771 struct target
*target
;
1772 target
= all_targets
;
1774 target_call_event_callbacks(target
, e
);
1775 target
= target
->next
;
1779 /* process target state changes */
1780 int handle_target(void *priv
)
1782 int retval
= ERROR_OK
;
1784 /* we do not want to recurse here... */
1785 static int recursive
= 0;
1790 /* danger! running these procedures can trigger srst assertions and power dropouts.
1791 * We need to avoid an infinite loop/recursion here and we do that by
1792 * clearing the flags after running these events.
1794 int did_something
= 0;
1795 if (runSrstAsserted
)
1797 target_call_event_callbacks_all(TARGET_EVENT_GDB_HALT
);
1798 Jim_Eval(interp
, "srst_asserted");
1801 if (runSrstDeasserted
)
1803 Jim_Eval(interp
, "srst_deasserted");
1806 if (runPowerDropout
)
1808 target_call_event_callbacks_all(TARGET_EVENT_GDB_HALT
);
1809 Jim_Eval(interp
, "power_dropout");
1812 if (runPowerRestore
)
1814 Jim_Eval(interp
, "power_restore");
1820 /* clear detect flags */
1824 /* clear action flags */
1826 runSrstAsserted
= 0;
1827 runSrstDeasserted
= 0;
1828 runPowerRestore
= 0;
1829 runPowerDropout
= 0;
1834 /* Poll targets for state changes unless that's globally disabled.
1835 * Skip targets that are currently disabled.
1837 for (struct target
*target
= all_targets
;
1838 is_jtag_poll_safe() && target
;
1839 target
= target
->next
)
1841 if (!target
->tap
->enabled
)
1844 /* only poll target if we've got power and srst isn't asserted */
1845 if (!powerDropout
&& !srstAsserted
)
1847 /* polling may fail silently until the target has been examined */
1848 if ((retval
= target_poll(target
)) != ERROR_OK
)
1850 target_call_event_callbacks(target
, TARGET_EVENT_GDB_HALT
);
1859 COMMAND_HANDLER(handle_reg_command
)
1861 struct target
*target
;
1862 struct reg
*reg
= NULL
;
1868 target
= get_current_target(CMD_CTX
);
1870 /* list all available registers for the current target */
1873 struct reg_cache
*cache
= target
->reg_cache
;
1880 command_print(CMD_CTX
, "===== %s", cache
->name
);
1882 for (i
= 0, reg
= cache
->reg_list
;
1883 i
< cache
->num_regs
;
1884 i
++, reg
++, count
++)
1886 /* only print cached values if they are valid */
1888 value
= buf_to_str(reg
->value
,
1890 command_print(CMD_CTX
,
1891 "(%i) %s (/%" PRIu32
"): 0x%s%s",
1899 command_print(CMD_CTX
, "(%i) %s (/%" PRIu32
")",
1904 cache
= cache
->next
;
1910 /* access a single register by its ordinal number */
1911 if ((CMD_ARGV
[0][0] >= '0') && (CMD_ARGV
[0][0] <= '9'))
1914 COMMAND_PARSE_NUMBER(uint
, CMD_ARGV
[0], num
);
1916 struct reg_cache
*cache
= target
->reg_cache
;
1921 for (i
= 0; i
< cache
->num_regs
; i
++)
1925 reg
= &cache
->reg_list
[i
];
1931 cache
= cache
->next
;
1936 command_print(CMD_CTX
, "%i is out of bounds, the current target has only %i registers (0 - %i)", num
, count
, count
- 1);
1939 } else /* access a single register by its name */
1941 reg
= register_get_by_name(target
->reg_cache
, CMD_ARGV
[0], 1);
1945 command_print(CMD_CTX
, "register %s not found in current target", CMD_ARGV
[0]);
1950 /* display a register */
1951 if ((CMD_ARGC
== 1) || ((CMD_ARGC
== 2) && !((CMD_ARGV
[1][0] >= '0') && (CMD_ARGV
[1][0] <= '9'))))
1953 if ((CMD_ARGC
== 2) && (strcmp(CMD_ARGV
[1], "force") == 0))
1956 if (reg
->valid
== 0)
1958 reg
->type
->get(reg
);
1960 value
= buf_to_str(reg
->value
, reg
->size
, 16);
1961 command_print(CMD_CTX
, "%s (/%i): 0x%s", reg
->name
, (int)(reg
->size
), value
);
1966 /* set register value */
1969 uint8_t *buf
= malloc(DIV_ROUND_UP(reg
->size
, 8));
1970 str_to_buf(CMD_ARGV
[1], strlen(CMD_ARGV
[1]), buf
, reg
->size
, 0);
1972 reg
->type
->set(reg
, buf
);
1974 value
= buf_to_str(reg
->value
, reg
->size
, 16);
1975 command_print(CMD_CTX
, "%s (/%i): 0x%s", reg
->name
, (int)(reg
->size
), value
);
1983 command_print(CMD_CTX
, "usage: reg <#|name> [value]");
1988 COMMAND_HANDLER(handle_poll_command
)
1990 int retval
= ERROR_OK
;
1991 struct target
*target
= get_current_target(CMD_CTX
);
1995 command_print(CMD_CTX
, "background polling: %s",
1996 jtag_poll_get_enabled() ? "on" : "off");
1997 command_print(CMD_CTX
, "TAP: %s (%s)",
1998 target
->tap
->dotted_name
,
1999 target
->tap
->enabled
? "enabled" : "disabled");
2000 if (!target
->tap
->enabled
)
2002 if ((retval
= target_poll(target
)) != ERROR_OK
)
2004 if ((retval
= target_arch_state(target
)) != ERROR_OK
)
2007 else if (CMD_ARGC
== 1)
2010 COMMAND_PARSE_ON_OFF(CMD_ARGV
[0], enable
);
2011 jtag_poll_set_enabled(enable
);
2015 return ERROR_COMMAND_SYNTAX_ERROR
;
2021 COMMAND_HANDLER(handle_wait_halt_command
)
2024 return ERROR_COMMAND_SYNTAX_ERROR
;
2029 int retval
= parse_uint(CMD_ARGV
[0], &ms
);
2030 if (ERROR_OK
!= retval
)
2032 command_print(CMD_CTX
, "usage: %s [seconds]", CMD_NAME
);
2033 return ERROR_COMMAND_SYNTAX_ERROR
;
2035 // convert seconds (given) to milliseconds (needed)
2039 struct target
*target
= get_current_target(CMD_CTX
);
2040 return target_wait_state(target
, TARGET_HALTED
, ms
);
2043 /* wait for target state to change. The trick here is to have a low
2044 * latency for short waits and not to suck up all the CPU time
2047 * After 500ms, keep_alive() is invoked
2049 int target_wait_state(struct target
*target
, enum target_state state
, int ms
)
2052 long long then
= 0, cur
;
2057 if ((retval
= target_poll(target
)) != ERROR_OK
)
2059 if (target
->state
== state
)
2067 then
= timeval_ms();
2068 LOG_DEBUG("waiting for target %s...",
2069 Jim_Nvp_value2name_simple(nvp_target_state
,state
)->name
);
2077 if ((cur
-then
) > ms
)
2079 LOG_ERROR("timed out while waiting for target %s",
2080 Jim_Nvp_value2name_simple(nvp_target_state
,state
)->name
);
2088 COMMAND_HANDLER(handle_halt_command
)
2092 struct target
*target
= get_current_target(CMD_CTX
);
2093 int retval
= target_halt(target
);
2094 if (ERROR_OK
!= retval
)
2100 retval
= parse_uint(CMD_ARGV
[0], &wait
);
2101 if (ERROR_OK
!= retval
)
2102 return ERROR_COMMAND_SYNTAX_ERROR
;
2107 return CALL_COMMAND_HANDLER(handle_wait_halt_command
);
2110 COMMAND_HANDLER(handle_soft_reset_halt_command
)
2112 struct target
*target
= get_current_target(CMD_CTX
);
2114 LOG_USER("requesting target halt and executing a soft reset");
2116 target
->type
->soft_reset_halt(target
);
2121 COMMAND_HANDLER(handle_reset_command
)
2124 return ERROR_COMMAND_SYNTAX_ERROR
;
2126 enum target_reset_mode reset_mode
= RESET_RUN
;
2130 n
= Jim_Nvp_name2value_simple(nvp_reset_modes
, CMD_ARGV
[0]);
2131 if ((n
->name
== NULL
) || (n
->value
== RESET_UNKNOWN
)) {
2132 return ERROR_COMMAND_SYNTAX_ERROR
;
2134 reset_mode
= n
->value
;
2137 /* reset *all* targets */
2138 return target_process_reset(CMD_CTX
, reset_mode
);
2142 COMMAND_HANDLER(handle_resume_command
)
2146 return ERROR_COMMAND_SYNTAX_ERROR
;
2148 struct target
*target
= get_current_target(CMD_CTX
);
2149 target_handle_event(target
, TARGET_EVENT_OLD_pre_resume
);
2151 /* with no CMD_ARGV, resume from current pc, addr = 0,
2152 * with one arguments, addr = CMD_ARGV[0],
2153 * handle breakpoints, not debugging */
2157 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[0], addr
);
2161 return target_resume(target
, current
, addr
, 1, 0);
2164 COMMAND_HANDLER(handle_step_command
)
2167 return ERROR_COMMAND_SYNTAX_ERROR
;
2171 /* with no CMD_ARGV, step from current pc, addr = 0,
2172 * with one argument addr = CMD_ARGV[0],
2173 * handle breakpoints, debugging */
2178 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[0], addr
);
2182 struct target
*target
= get_current_target(CMD_CTX
);
2184 return target
->type
->step(target
, current_pc
, addr
, 1);
2187 static void handle_md_output(struct command_context
*cmd_ctx
,
2188 struct target
*target
, uint32_t address
, unsigned size
,
2189 unsigned count
, const uint8_t *buffer
)
2191 const unsigned line_bytecnt
= 32;
2192 unsigned line_modulo
= line_bytecnt
/ size
;
2194 char output
[line_bytecnt
* 4 + 1];
2195 unsigned output_len
= 0;
2197 const char *value_fmt
;
2199 case 4: value_fmt
= "%8.8x "; break;
2200 case 2: value_fmt
= "%4.2x "; break;
2201 case 1: value_fmt
= "%2.2x "; break;
2203 LOG_ERROR("invalid memory read size: %u", size
);
2207 for (unsigned i
= 0; i
< count
; i
++)
2209 if (i
% line_modulo
== 0)
2211 output_len
+= snprintf(output
+ output_len
,
2212 sizeof(output
) - output_len
,
2214 (unsigned)(address
+ (i
*size
)));
2218 const uint8_t *value_ptr
= buffer
+ i
* size
;
2220 case 4: value
= target_buffer_get_u32(target
, value_ptr
); break;
2221 case 2: value
= target_buffer_get_u16(target
, value_ptr
); break;
2222 case 1: value
= *value_ptr
;
2224 output_len
+= snprintf(output
+ output_len
,
2225 sizeof(output
) - output_len
,
2228 if ((i
% line_modulo
== line_modulo
- 1) || (i
== count
- 1))
2230 command_print(cmd_ctx
, "%s", output
);
2236 COMMAND_HANDLER(handle_md_command
)
2239 return ERROR_COMMAND_SYNTAX_ERROR
;
2242 switch (CMD_NAME
[2]) {
2243 case 'w': size
= 4; break;
2244 case 'h': size
= 2; break;
2245 case 'b': size
= 1; break;
2246 default: return ERROR_COMMAND_SYNTAX_ERROR
;
2249 bool physical
=strcmp(CMD_ARGV
[0], "phys")==0;
2250 int (*fn
)(struct target
*target
,
2251 uint32_t address
, uint32_t size
, uint32_t count
, uint8_t *buffer
);
2256 fn
=target_read_phys_memory
;
2259 fn
=target_read_memory
;
2261 if ((CMD_ARGC
< 1) || (CMD_ARGC
> 2))
2263 return ERROR_COMMAND_SYNTAX_ERROR
;
2267 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[0], address
);
2271 COMMAND_PARSE_NUMBER(uint
, CMD_ARGV
[1], count
);
2273 uint8_t *buffer
= calloc(count
, size
);
2275 struct target
*target
= get_current_target(CMD_CTX
);
2276 int retval
= fn(target
, address
, size
, count
, buffer
);
2277 if (ERROR_OK
== retval
)
2278 handle_md_output(CMD_CTX
, target
, address
, size
, count
, buffer
);
2285 COMMAND_HANDLER(handle_mw_command
)
2289 return ERROR_COMMAND_SYNTAX_ERROR
;
2291 bool physical
=strcmp(CMD_ARGV
[0], "phys")==0;
2292 int (*fn
)(struct target
*target
,
2293 uint32_t address
, uint32_t size
, uint32_t count
, uint8_t *buffer
);
2298 fn
=target_write_phys_memory
;
2301 fn
=target_write_memory
;
2303 if ((CMD_ARGC
< 2) || (CMD_ARGC
> 3))
2304 return ERROR_COMMAND_SYNTAX_ERROR
;
2307 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[0], address
);
2310 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[1], value
);
2314 COMMAND_PARSE_NUMBER(uint
, CMD_ARGV
[2], count
);
2316 struct target
*target
= get_current_target(CMD_CTX
);
2318 uint8_t value_buf
[4];
2319 switch (CMD_NAME
[2])
2323 target_buffer_set_u32(target
, value_buf
, value
);
2327 target_buffer_set_u16(target
, value_buf
, value
);
2331 value_buf
[0] = value
;
2334 return ERROR_COMMAND_SYNTAX_ERROR
;
2336 for (unsigned i
= 0; i
< count
; i
++)
2338 int retval
= fn(target
,
2339 address
+ i
* wordsize
, wordsize
, 1, value_buf
);
2340 if (ERROR_OK
!= retval
)
2349 static COMMAND_HELPER(parse_load_image_command_CMD_ARGV
, struct image
*image
,
2350 uint32_t *min_address
, uint32_t *max_address
)
2352 if (CMD_ARGC
< 1 || CMD_ARGC
> 5)
2353 return ERROR_COMMAND_SYNTAX_ERROR
;
2355 /* a base address isn't always necessary,
2356 * default to 0x0 (i.e. don't relocate) */
2360 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[1], addr
);
2361 image
->base_address
= addr
;
2362 image
->base_address_set
= 1;
2365 image
->base_address_set
= 0;
2367 image
->start_address_set
= 0;
2371 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[3], *min_address
);
2375 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[4], *max_address
);
2376 // use size (given) to find max (required)
2377 *max_address
+= *min_address
;
2380 if (*min_address
> *max_address
)
2381 return ERROR_COMMAND_SYNTAX_ERROR
;
2386 COMMAND_HANDLER(handle_load_image_command
)
2390 uint32_t image_size
;
2391 uint32_t min_address
= 0;
2392 uint32_t max_address
= 0xffffffff;
2396 int retval
= CALL_COMMAND_HANDLER(parse_load_image_command_CMD_ARGV
,
2397 &image
, &min_address
, &max_address
);
2398 if (ERROR_OK
!= retval
)
2401 struct target
*target
= get_current_target(CMD_CTX
);
2403 struct duration bench
;
2404 duration_start(&bench
);
2406 if (image_open(&image
, CMD_ARGV
[0], (CMD_ARGC
>= 3) ? CMD_ARGV
[2] : NULL
) != ERROR_OK
)
2413 for (i
= 0; i
< image
.num_sections
; i
++)
2415 buffer
= malloc(image
.sections
[i
].size
);
2418 command_print(CMD_CTX
,
2419 "error allocating buffer for section (%d bytes)",
2420 (int)(image
.sections
[i
].size
));
2424 if ((retval
= image_read_section(&image
, i
, 0x0, image
.sections
[i
].size
, buffer
, &buf_cnt
)) != ERROR_OK
)
2430 uint32_t offset
= 0;
2431 uint32_t length
= buf_cnt
;
2433 /* DANGER!!! beware of unsigned comparision here!!! */
2435 if ((image
.sections
[i
].base_address
+ buf_cnt
>= min_address
)&&
2436 (image
.sections
[i
].base_address
< max_address
))
2438 if (image
.sections
[i
].base_address
< min_address
)
2440 /* clip addresses below */
2441 offset
+= min_address
-image
.sections
[i
].base_address
;
2445 if (image
.sections
[i
].base_address
+ buf_cnt
> max_address
)
2447 length
-= (image
.sections
[i
].base_address
+ buf_cnt
)-max_address
;
2450 if ((retval
= target_write_buffer(target
, image
.sections
[i
].base_address
+ offset
, length
, buffer
+ offset
)) != ERROR_OK
)
2455 image_size
+= length
;
2456 command_print(CMD_CTX
, "%u bytes written at address 0x%8.8" PRIx32
"",
2457 (unsigned int)length
,
2458 image
.sections
[i
].base_address
+ offset
);
2464 if ((ERROR_OK
== retval
) && (duration_measure(&bench
) == ERROR_OK
))
2466 command_print(CMD_CTX
, "downloaded %" PRIu32
" bytes "
2467 "in %fs (%0.3f kb/s)", image_size
,
2468 duration_elapsed(&bench
), duration_kbps(&bench
, image_size
));
2471 image_close(&image
);
2477 COMMAND_HANDLER(handle_dump_image_command
)
2479 struct fileio fileio
;
2481 uint8_t buffer
[560];
2485 struct target
*target
= get_current_target(CMD_CTX
);
2489 command_print(CMD_CTX
, "usage: dump_image <filename> <address> <size>");
2494 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[1], address
);
2496 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[2], size
);
2498 if (fileio_open(&fileio
, CMD_ARGV
[0], FILEIO_WRITE
, FILEIO_BINARY
) != ERROR_OK
)
2503 struct duration bench
;
2504 duration_start(&bench
);
2506 int retval
= ERROR_OK
;
2509 size_t size_written
;
2510 uint32_t this_run_size
= (size
> 560) ? 560 : size
;
2511 retval
= target_read_buffer(target
, address
, this_run_size
, buffer
);
2512 if (retval
!= ERROR_OK
)
2517 retval
= fileio_write(&fileio
, this_run_size
, buffer
, &size_written
);
2518 if (retval
!= ERROR_OK
)
2523 size
-= this_run_size
;
2524 address
+= this_run_size
;
2527 if ((retvaltemp
= fileio_close(&fileio
)) != ERROR_OK
)
2530 if ((ERROR_OK
== retval
) && (duration_measure(&bench
) == ERROR_OK
))
2532 command_print(CMD_CTX
,
2533 "dumped %zu bytes in %fs (%0.3f kb/s)", fileio
.size
,
2534 duration_elapsed(&bench
), duration_kbps(&bench
, fileio
.size
));
2540 static COMMAND_HELPER(handle_verify_image_command_internal
, int verify
)
2544 uint32_t image_size
;
2547 uint32_t checksum
= 0;
2548 uint32_t mem_checksum
= 0;
2552 struct target
*target
= get_current_target(CMD_CTX
);
2556 return ERROR_COMMAND_SYNTAX_ERROR
;
2561 LOG_ERROR("no target selected");
2565 struct duration bench
;
2566 duration_start(&bench
);
2571 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[1], addr
);
2572 image
.base_address
= addr
;
2573 image
.base_address_set
= 1;
2577 image
.base_address_set
= 0;
2578 image
.base_address
= 0x0;
2581 image
.start_address_set
= 0;
2583 if ((retval
= image_open(&image
, CMD_ARGV
[0], (CMD_ARGC
== 3) ? CMD_ARGV
[2] : NULL
)) != ERROR_OK
)
2590 for (i
= 0; i
< image
.num_sections
; i
++)
2592 buffer
= malloc(image
.sections
[i
].size
);
2595 command_print(CMD_CTX
,
2596 "error allocating buffer for section (%d bytes)",
2597 (int)(image
.sections
[i
].size
));
2600 if ((retval
= image_read_section(&image
, i
, 0x0, image
.sections
[i
].size
, buffer
, &buf_cnt
)) != ERROR_OK
)
2608 /* calculate checksum of image */
2609 image_calculate_checksum(buffer
, buf_cnt
, &checksum
);
2611 retval
= target_checksum_memory(target
, image
.sections
[i
].base_address
, buf_cnt
, &mem_checksum
);
2612 if (retval
!= ERROR_OK
)
2618 if (checksum
!= mem_checksum
)
2620 /* failed crc checksum, fall back to a binary compare */
2623 command_print(CMD_CTX
, "checksum mismatch - attempting binary compare");
2625 data
= (uint8_t*)malloc(buf_cnt
);
2627 /* Can we use 32bit word accesses? */
2629 int count
= buf_cnt
;
2630 if ((count
% 4) == 0)
2635 retval
= target_read_memory(target
, image
.sections
[i
].base_address
, size
, count
, data
);
2636 if (retval
== ERROR_OK
)
2639 for (t
= 0; t
< buf_cnt
; t
++)
2641 if (data
[t
] != buffer
[t
])
2643 command_print(CMD_CTX
,
2644 "Verify operation failed address 0x%08x. Was 0x%02x instead of 0x%02x\n",
2645 (unsigned)(t
+ image
.sections
[i
].base_address
),
2650 retval
= ERROR_FAIL
;
2664 command_print(CMD_CTX
, "address 0x%08" PRIx32
" length 0x%08zx",
2665 image
.sections
[i
].base_address
,
2670 image_size
+= buf_cnt
;
2673 if ((ERROR_OK
== retval
) && (duration_measure(&bench
) == ERROR_OK
))
2675 command_print(CMD_CTX
, "verified %" PRIu32
" bytes "
2676 "in %fs (%0.3f kb/s)", image_size
,
2677 duration_elapsed(&bench
), duration_kbps(&bench
, image_size
));
2680 image_close(&image
);
2685 COMMAND_HANDLER(handle_verify_image_command
)
2687 return CALL_COMMAND_HANDLER(handle_verify_image_command_internal
, 1);
2690 COMMAND_HANDLER(handle_test_image_command
)
2692 return CALL_COMMAND_HANDLER(handle_verify_image_command_internal
, 0);
2695 static int handle_bp_command_list(struct command_context
*cmd_ctx
)
2697 struct target
*target
= get_current_target(cmd_ctx
);
2698 struct breakpoint
*breakpoint
= target
->breakpoints
;
2701 if (breakpoint
->type
== BKPT_SOFT
)
2703 char* buf
= buf_to_str(breakpoint
->orig_instr
,
2704 breakpoint
->length
, 16);
2705 command_print(cmd_ctx
, "0x%8.8" PRIx32
", 0x%x, %i, 0x%s",
2706 breakpoint
->address
,
2708 breakpoint
->set
, buf
);
2713 command_print(cmd_ctx
, "0x%8.8" PRIx32
", 0x%x, %i",
2714 breakpoint
->address
,
2715 breakpoint
->length
, breakpoint
->set
);
2718 breakpoint
= breakpoint
->next
;
2723 static int handle_bp_command_set(struct command_context
*cmd_ctx
,
2724 uint32_t addr
, uint32_t length
, int hw
)
2726 struct target
*target
= get_current_target(cmd_ctx
);
2727 int retval
= breakpoint_add(target
, addr
, length
, hw
);
2728 if (ERROR_OK
== retval
)
2729 command_print(cmd_ctx
, "breakpoint set at 0x%8.8" PRIx32
"", addr
);
2731 LOG_ERROR("Failure setting breakpoint");
2735 COMMAND_HANDLER(handle_bp_command
)
2738 return handle_bp_command_list(CMD_CTX
);
2740 if (CMD_ARGC
< 2 || CMD_ARGC
> 3)
2742 command_print(CMD_CTX
, "usage: bp <address> <length> ['hw']");
2743 return ERROR_COMMAND_SYNTAX_ERROR
;
2747 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[0], addr
);
2749 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[1], length
);
2754 if (strcmp(CMD_ARGV
[2], "hw") == 0)
2757 return ERROR_COMMAND_SYNTAX_ERROR
;
2760 return handle_bp_command_set(CMD_CTX
, addr
, length
, hw
);
2763 COMMAND_HANDLER(handle_rbp_command
)
2766 return ERROR_COMMAND_SYNTAX_ERROR
;
2769 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[0], addr
);
2771 struct target
*target
= get_current_target(CMD_CTX
);
2772 breakpoint_remove(target
, addr
);
2777 COMMAND_HANDLER(handle_wp_command
)
2779 struct target
*target
= get_current_target(CMD_CTX
);
2783 struct watchpoint
*watchpoint
= target
->watchpoints
;
2787 command_print(CMD_CTX
, "address: 0x%8.8" PRIx32
2788 ", len: 0x%8.8" PRIx32
2789 ", r/w/a: %i, value: 0x%8.8" PRIx32
2790 ", mask: 0x%8.8" PRIx32
,
2791 watchpoint
->address
,
2793 (int)watchpoint
->rw
,
2796 watchpoint
= watchpoint
->next
;
2801 enum watchpoint_rw type
= WPT_ACCESS
;
2803 uint32_t length
= 0;
2804 uint32_t data_value
= 0x0;
2805 uint32_t data_mask
= 0xffffffff;
2810 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[4], data_mask
);
2813 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[3], data_value
);
2816 switch (CMD_ARGV
[2][0])
2828 LOG_ERROR("invalid watchpoint mode ('%c')", CMD_ARGV
[2][0]);
2829 return ERROR_COMMAND_SYNTAX_ERROR
;
2833 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[1], length
);
2834 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[0], addr
);
2838 command_print(CMD_CTX
, "usage: wp [address length "
2839 "[(r|w|a) [value [mask]]]]");
2840 return ERROR_COMMAND_SYNTAX_ERROR
;
2843 int retval
= watchpoint_add(target
, addr
, length
, type
,
2844 data_value
, data_mask
);
2845 if (ERROR_OK
!= retval
)
2846 LOG_ERROR("Failure setting watchpoints");
2851 COMMAND_HANDLER(handle_rwp_command
)
2854 return ERROR_COMMAND_SYNTAX_ERROR
;
2857 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[0], addr
);
2859 struct target
*target
= get_current_target(CMD_CTX
);
2860 watchpoint_remove(target
, addr
);
2867 * Translate a virtual address to a physical address.
2869 * The low-level target implementation must have logged a detailed error
2870 * which is forwarded to telnet/GDB session.
2872 COMMAND_HANDLER(handle_virt2phys_command
)
2875 return ERROR_COMMAND_SYNTAX_ERROR
;
2878 COMMAND_PARSE_NUMBER(u32
, CMD_ARGV
[0], va
);
2881 struct target
*target
= get_current_target(CMD_CTX
);
2882 int retval
= target
->type
->virt2phys(target
, va
, &pa
);
2883 if (retval
== ERROR_OK
)
2884 command_print(CMD_CTX
, "Physical address 0x%08" PRIx32
"", pa
);
2889 static void writeData(FILE *f
, const void *data
, size_t len
)
2891 size_t written
= fwrite(data
, 1, len
, f
);
2893 LOG_ERROR("failed to write %zu bytes: %s", len
, strerror(errno
));
2896 static void writeLong(FILE *f
, int l
)
2899 for (i
= 0; i
< 4; i
++)
2901 char c
= (l
>> (i
*8))&0xff;
2902 writeData(f
, &c
, 1);
2907 static void writeString(FILE *f
, char *s
)
2909 writeData(f
, s
, strlen(s
));
2912 /* Dump a gmon.out histogram file. */
2913 static void writeGmon(uint32_t *samples
, uint32_t sampleNum
, const char *filename
)
2916 FILE *f
= fopen(filename
, "w");
2919 writeString(f
, "gmon");
2920 writeLong(f
, 0x00000001); /* Version */
2921 writeLong(f
, 0); /* padding */
2922 writeLong(f
, 0); /* padding */
2923 writeLong(f
, 0); /* padding */
2925 uint8_t zero
= 0; /* GMON_TAG_TIME_HIST */
2926 writeData(f
, &zero
, 1);
2928 /* figure out bucket size */
2929 uint32_t min
= samples
[0];
2930 uint32_t max
= samples
[0];
2931 for (i
= 0; i
< sampleNum
; i
++)
2933 if (min
> samples
[i
])
2937 if (max
< samples
[i
])
2943 int addressSpace
= (max
-min
+ 1);
2945 static const uint32_t maxBuckets
= 256 * 1024; /* maximum buckets. */
2946 uint32_t length
= addressSpace
;
2947 if (length
> maxBuckets
)
2949 length
= maxBuckets
;
2951 int *buckets
= malloc(sizeof(int)*length
);
2952 if (buckets
== NULL
)
2957 memset(buckets
, 0, sizeof(int)*length
);
2958 for (i
= 0; i
< sampleNum
;i
++)
2960 uint32_t address
= samples
[i
];
2961 long long a
= address
-min
;
2962 long long b
= length
-1;
2963 long long c
= addressSpace
-1;
2964 int index
= (a
*b
)/c
; /* danger!!!! int32 overflows */
2968 /* append binary memory gmon.out &profile_hist_hdr ((char*)&profile_hist_hdr + sizeof(struct gmon_hist_hdr)) */
2969 writeLong(f
, min
); /* low_pc */
2970 writeLong(f
, max
); /* high_pc */
2971 writeLong(f
, length
); /* # of samples */
2972 writeLong(f
, 64000000); /* 64MHz */
2973 writeString(f
, "seconds");
2974 for (i
= 0; i
< (15-strlen("seconds")); i
++)
2975 writeData(f
, &zero
, 1);
2976 writeString(f
, "s");
2978 /*append binary memory gmon.out profile_hist_data (profile_hist_data + profile_hist_hdr.hist_size) */
2980 char *data
= malloc(2*length
);
2983 for (i
= 0; i
< length
;i
++)
2992 data
[i
*2 + 1]=(val
>> 8)&0xff;
2995 writeData(f
, data
, length
* 2);
3005 /* profiling samples the CPU PC as quickly as OpenOCD is able, which will be used as a random sampling of PC */
3006 COMMAND_HANDLER(handle_profile_command
)
3008 struct target
*target
= get_current_target(CMD_CTX
);
3009 struct timeval timeout
, now
;
3011 gettimeofday(&timeout
, NULL
);
3014 return ERROR_COMMAND_SYNTAX_ERROR
;
3017 COMMAND_PARSE_NUMBER(uint
, CMD_ARGV
[0], offset
);
3019 timeval_add_time(&timeout
, offset
, 0);
3021 command_print(CMD_CTX
, "Starting profiling. Halting and resuming the target as often as we can...");
3023 static const int maxSample
= 10000;
3024 uint32_t *samples
= malloc(sizeof(uint32_t)*maxSample
);
3025 if (samples
== NULL
)
3029 /* hopefully it is safe to cache! We want to stop/restart as quickly as possible. */
3030 struct reg
*reg
= register_get_by_name(target
->reg_cache
, "pc", 1);
3035 target_poll(target
);
3036 if (target
->state
== TARGET_HALTED
)
3038 uint32_t t
=*((uint32_t *)reg
->value
);
3039 samples
[numSamples
++]=t
;
3040 retval
= target_resume(target
, 1, 0, 0, 0); /* current pc, addr = 0, do not handle breakpoints, not debugging */
3041 target_poll(target
);
3042 alive_sleep(10); /* sleep 10ms, i.e. <100 samples/second. */
3043 } else if (target
->state
== TARGET_RUNNING
)
3045 /* We want to quickly sample the PC. */
3046 if ((retval
= target_halt(target
)) != ERROR_OK
)
3053 command_print(CMD_CTX
, "Target not halted or running");
3057 if (retval
!= ERROR_OK
)
3062 gettimeofday(&now
, NULL
);
3063 if ((numSamples
>= maxSample
) || ((now
.tv_sec
>= timeout
.tv_sec
) && (now
.tv_usec
>= timeout
.tv_usec
)))
3065 command_print(CMD_CTX
, "Profiling completed. %d samples.", numSamples
);
3066 if ((retval
= target_poll(target
)) != ERROR_OK
)
3071 if (target
->state
== TARGET_HALTED
)
3073 target_resume(target
, 1, 0, 0, 0); /* current pc, addr = 0, do not handle breakpoints, not debugging */
3075 if ((retval
= target_poll(target
)) != ERROR_OK
)
3080 writeGmon(samples
, numSamples
, CMD_ARGV
[1]);
3081 command_print(CMD_CTX
, "Wrote %s", CMD_ARGV
[1]);
3090 static int new_int_array_element(Jim_Interp
* interp
, const char *varname
, int idx
, uint32_t val
)
3093 Jim_Obj
*nameObjPtr
, *valObjPtr
;
3096 namebuf
= alloc_printf("%s(%d)", varname
, idx
);
3100 nameObjPtr
= Jim_NewStringObj(interp
, namebuf
, -1);
3101 valObjPtr
= Jim_NewIntObj(interp
, val
);
3102 if (!nameObjPtr
|| !valObjPtr
)
3108 Jim_IncrRefCount(nameObjPtr
);
3109 Jim_IncrRefCount(valObjPtr
);
3110 result
= Jim_SetVariable(interp
, nameObjPtr
, valObjPtr
);
3111 Jim_DecrRefCount(interp
, nameObjPtr
);
3112 Jim_DecrRefCount(interp
, valObjPtr
);
3114 /* printf("%s(%d) <= 0%08x\n", varname, idx, val); */
3118 static int jim_mem2array(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
3120 struct command_context
*context
;
3121 struct target
*target
;
3123 context
= Jim_GetAssocData(interp
, "context");
3124 if (context
== NULL
)
3126 LOG_ERROR("mem2array: no command context");
3129 target
= get_current_target(context
);
3132 LOG_ERROR("mem2array: no current target");
3136 return target_mem2array(interp
, target
, argc
-1, argv
+ 1);
3139 static int target_mem2array(Jim_Interp
*interp
, struct target
*target
, int argc
, Jim_Obj
*const *argv
)
3147 const char *varname
;
3151 /* argv[1] = name of array to receive the data
3152 * argv[2] = desired width
3153 * argv[3] = memory address
3154 * argv[4] = count of times to read
3157 Jim_WrongNumArgs(interp
, 1, argv
, "varname width addr nelems");
3160 varname
= Jim_GetString(argv
[0], &len
);
3161 /* given "foo" get space for worse case "foo(%d)" .. add 20 */
3163 e
= Jim_GetLong(interp
, argv
[1], &l
);
3169 e
= Jim_GetLong(interp
, argv
[2], &l
);
3174 e
= Jim_GetLong(interp
, argv
[3], &l
);
3190 Jim_SetResult(interp
, Jim_NewEmptyStringObj(interp
));
3191 Jim_AppendStrings(interp
, Jim_GetResult(interp
), "Invalid width param, must be 8/16/32", NULL
);
3195 Jim_SetResult(interp
, Jim_NewEmptyStringObj(interp
));
3196 Jim_AppendStrings(interp
, Jim_GetResult(interp
), "mem2array: zero width read?", NULL
);
3199 if ((addr
+ (len
* width
)) < addr
) {
3200 Jim_SetResult(interp
, Jim_NewEmptyStringObj(interp
));
3201 Jim_AppendStrings(interp
, Jim_GetResult(interp
), "mem2array: addr + len - wraps to zero?", NULL
);
3204 /* absurd transfer size? */
3206 Jim_SetResult(interp
, Jim_NewEmptyStringObj(interp
));
3207 Jim_AppendStrings(interp
, Jim_GetResult(interp
), "mem2array: absurd > 64K item request", NULL
);
3212 ((width
== 2) && ((addr
& 1) == 0)) ||
3213 ((width
== 4) && ((addr
& 3) == 0))) {
3217 Jim_SetResult(interp
, Jim_NewEmptyStringObj(interp
));
3218 sprintf(buf
, "mem2array address: 0x%08" PRIx32
" is not aligned for %" PRId32
" byte reads",
3221 Jim_AppendStrings(interp
, Jim_GetResult(interp
), buf
, NULL
);
3230 size_t buffersize
= 4096;
3231 uint8_t *buffer
= malloc(buffersize
);
3238 /* Slurp... in buffer size chunks */
3240 count
= len
; /* in objects.. */
3241 if (count
> (buffersize
/width
)) {
3242 count
= (buffersize
/width
);
3245 retval
= target_read_memory(target
, addr
, width
, count
, buffer
);
3246 if (retval
!= ERROR_OK
) {
3248 LOG_ERROR("mem2array: Read @ 0x%08x, w=%d, cnt=%d, failed",
3252 Jim_SetResult(interp
, Jim_NewEmptyStringObj(interp
));
3253 Jim_AppendStrings(interp
, Jim_GetResult(interp
), "mem2array: cannot read memory", NULL
);
3257 v
= 0; /* shut up gcc */
3258 for (i
= 0 ;i
< count
;i
++, n
++) {
3261 v
= target_buffer_get_u32(target
, &buffer
[i
*width
]);
3264 v
= target_buffer_get_u16(target
, &buffer
[i
*width
]);
3267 v
= buffer
[i
] & 0x0ff;
3270 new_int_array_element(interp
, varname
, n
, v
);
3278 Jim_SetResult(interp
, Jim_NewEmptyStringObj(interp
));
3283 static int get_int_array_element(Jim_Interp
* interp
, const char *varname
, int idx
, uint32_t *val
)
3286 Jim_Obj
*nameObjPtr
, *valObjPtr
;
3290 namebuf
= alloc_printf("%s(%d)", varname
, idx
);
3294 nameObjPtr
= Jim_NewStringObj(interp
, namebuf
, -1);
3301 Jim_IncrRefCount(nameObjPtr
);
3302 valObjPtr
= Jim_GetVariable(interp
, nameObjPtr
, JIM_ERRMSG
);
3303 Jim_DecrRefCount(interp
, nameObjPtr
);
3305 if (valObjPtr
== NULL
)
3308 result
= Jim_GetLong(interp
, valObjPtr
, &l
);
3309 /* printf("%s(%d) => 0%08x\n", varname, idx, val); */
3314 static int jim_array2mem(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
3316 struct command_context
*context
;
3317 struct target
*target
;
3319 context
= Jim_GetAssocData(interp
, "context");
3320 if (context
== NULL
) {
3321 LOG_ERROR("array2mem: no command context");
3324 target
= get_current_target(context
);
3325 if (target
== NULL
) {
3326 LOG_ERROR("array2mem: no current target");
3330 return target_array2mem(interp
,target
, argc
-1, argv
+ 1);
3332 static int target_array2mem(Jim_Interp
*interp
, struct target
*target
, int argc
, Jim_Obj
*const *argv
)
3340 const char *varname
;
3344 /* argv[1] = name of array to get the data
3345 * argv[2] = desired width
3346 * argv[3] = memory address
3347 * argv[4] = count to write
3350 Jim_WrongNumArgs(interp
, 1, argv
, "varname width addr nelems");
3353 varname
= Jim_GetString(argv
[0], &len
);
3354 /* given "foo" get space for worse case "foo(%d)" .. add 20 */
3356 e
= Jim_GetLong(interp
, argv
[1], &l
);
3362 e
= Jim_GetLong(interp
, argv
[2], &l
);
3367 e
= Jim_GetLong(interp
, argv
[3], &l
);
3383 Jim_SetResult(interp
, Jim_NewEmptyStringObj(interp
));
3384 Jim_AppendStrings(interp
, Jim_GetResult(interp
), "Invalid width param, must be 8/16/32", NULL
);
3388 Jim_SetResult(interp
, Jim_NewEmptyStringObj(interp
));
3389 Jim_AppendStrings(interp
, Jim_GetResult(interp
), "array2mem: zero width read?", NULL
);
3392 if ((addr
+ (len
* width
)) < addr
) {
3393 Jim_SetResult(interp
, Jim_NewEmptyStringObj(interp
));
3394 Jim_AppendStrings(interp
, Jim_GetResult(interp
), "array2mem: addr + len - wraps to zero?", NULL
);
3397 /* absurd transfer size? */
3399 Jim_SetResult(interp
, Jim_NewEmptyStringObj(interp
));
3400 Jim_AppendStrings(interp
, Jim_GetResult(interp
), "array2mem: absurd > 64K item request", NULL
);
3405 ((width
== 2) && ((addr
& 1) == 0)) ||
3406 ((width
== 4) && ((addr
& 3) == 0))) {
3410 Jim_SetResult(interp
, Jim_NewEmptyStringObj(interp
));
3411 sprintf(buf
, "array2mem address: 0x%08x is not aligned for %d byte reads",
3414 Jim_AppendStrings(interp
, Jim_GetResult(interp
), buf
, NULL
);
3425 size_t buffersize
= 4096;
3426 uint8_t *buffer
= malloc(buffersize
);
3431 /* Slurp... in buffer size chunks */
3433 count
= len
; /* in objects.. */
3434 if (count
> (buffersize
/width
)) {
3435 count
= (buffersize
/width
);
3438 v
= 0; /* shut up gcc */
3439 for (i
= 0 ;i
< count
;i
++, n
++) {
3440 get_int_array_element(interp
, varname
, n
, &v
);
3443 target_buffer_set_u32(target
, &buffer
[i
*width
], v
);
3446 target_buffer_set_u16(target
, &buffer
[i
*width
], v
);
3449 buffer
[i
] = v
& 0x0ff;
3455 retval
= target_write_memory(target
, addr
, width
, count
, buffer
);
3456 if (retval
!= ERROR_OK
) {
3458 LOG_ERROR("array2mem: Write @ 0x%08x, w=%d, cnt=%d, failed",
3462 Jim_SetResult(interp
, Jim_NewEmptyStringObj(interp
));
3463 Jim_AppendStrings(interp
, Jim_GetResult(interp
), "array2mem: cannot read memory", NULL
);
3471 Jim_SetResult(interp
, Jim_NewEmptyStringObj(interp
));
3476 void target_all_handle_event(enum target_event e
)
3478 struct target
*target
;
3480 LOG_DEBUG("**all*targets: event: %d, %s",
3482 Jim_Nvp_value2name_simple(nvp_target_event
, e
)->name
);
3484 target
= all_targets
;
3486 target_handle_event(target
, e
);
3487 target
= target
->next
;
3492 /* FIX? should we propagate errors here rather than printing them
3495 void target_handle_event(struct target
*target
, enum target_event e
)
3497 struct target_event_action
*teap
;
3499 for (teap
= target
->event_action
; teap
!= NULL
; teap
= teap
->next
) {
3500 if (teap
->event
== e
) {
3501 LOG_DEBUG("target: (%d) %s (%s) event: %d (%s) action: %s",
3502 target
->target_number
,
3504 target_get_name(target
),
3506 Jim_Nvp_value2name_simple(nvp_target_event
, e
)->name
,
3507 Jim_GetString(teap
->body
, NULL
));
3508 if (Jim_EvalObj(interp
, teap
->body
) != JIM_OK
)
3510 Jim_PrintErrorMessage(interp
);
3516 enum target_cfg_param
{
3519 TCFG_WORK_AREA_VIRT
,
3520 TCFG_WORK_AREA_PHYS
,
3521 TCFG_WORK_AREA_SIZE
,
3522 TCFG_WORK_AREA_BACKUP
,
3525 TCFG_CHAIN_POSITION
,
3528 static Jim_Nvp nvp_config_opts
[] = {
3529 { .name
= "-type", .value
= TCFG_TYPE
},
3530 { .name
= "-event", .value
= TCFG_EVENT
},
3531 { .name
= "-work-area-virt", .value
= TCFG_WORK_AREA_VIRT
},
3532 { .name
= "-work-area-phys", .value
= TCFG_WORK_AREA_PHYS
},
3533 { .name
= "-work-area-size", .value
= TCFG_WORK_AREA_SIZE
},
3534 { .name
= "-work-area-backup", .value
= TCFG_WORK_AREA_BACKUP
},
3535 { .name
= "-endian" , .value
= TCFG_ENDIAN
},
3536 { .name
= "-variant", .value
= TCFG_VARIANT
},
3537 { .name
= "-chain-position", .value
= TCFG_CHAIN_POSITION
},
3539 { .name
= NULL
, .value
= -1 }
3542 static int target_configure(Jim_GetOptInfo
*goi
, struct target
*target
)
3550 /* parse config or cget options ... */
3551 while (goi
->argc
> 0) {
3552 Jim_SetEmptyResult(goi
->interp
);
3553 /* Jim_GetOpt_Debug(goi); */
3555 if (target
->type
->target_jim_configure
) {
3556 /* target defines a configure function */
3557 /* target gets first dibs on parameters */
3558 e
= (*(target
->type
->target_jim_configure
))(target
, goi
);
3567 /* otherwise we 'continue' below */
3569 e
= Jim_GetOpt_Nvp(goi
, nvp_config_opts
, &n
);
3571 Jim_GetOpt_NvpUnknown(goi
, nvp_config_opts
, 0);
3577 if (goi
->isconfigure
) {
3578 Jim_SetResult_sprintf(goi
->interp
, "not setable: %s", n
->name
);
3582 if (goi
->argc
!= 0) {
3583 Jim_WrongNumArgs(goi
->interp
, goi
->argc
, goi
->argv
, "NO PARAMS");
3587 Jim_SetResultString(goi
->interp
, target_get_name(target
), -1);
3591 if (goi
->argc
== 0) {
3592 Jim_WrongNumArgs(goi
->interp
, goi
->argc
, goi
->argv
, "-event ?event-name? ...");
3596 e
= Jim_GetOpt_Nvp(goi
, nvp_target_event
, &n
);
3598 Jim_GetOpt_NvpUnknown(goi
, nvp_target_event
, 1);
3602 if (goi
->isconfigure
) {
3603 if (goi
->argc
!= 1) {
3604 Jim_WrongNumArgs(goi
->interp
, goi
->argc
, goi
->argv
, "-event ?event-name? ?EVENT-BODY?");
3608 if (goi
->argc
!= 0) {
3609 Jim_WrongNumArgs(goi
->interp
, goi
->argc
, goi
->argv
, "-event ?event-name?");
3615 struct target_event_action
*teap
;
3617 teap
= target
->event_action
;
3618 /* replace existing? */
3620 if (teap
->event
== (enum target_event
)n
->value
) {
3626 if (goi
->isconfigure
) {
3627 bool replace
= true;
3630 teap
= calloc(1, sizeof(*teap
));
3633 teap
->event
= n
->value
;
3634 Jim_GetOpt_Obj(goi
, &o
);
3636 Jim_DecrRefCount(interp
, teap
->body
);
3638 teap
->body
= Jim_DuplicateObj(goi
->interp
, o
);
3641 * Tcl/TK - "tk events" have a nice feature.
3642 * See the "BIND" command.
3643 * We should support that here.
3644 * You can specify %X and %Y in the event code.
3645 * The idea is: %T - target name.
3646 * The idea is: %N - target number
3647 * The idea is: %E - event name.
3649 Jim_IncrRefCount(teap
->body
);
3653 /* add to head of event list */
3654 teap
->next
= target
->event_action
;
3655 target
->event_action
= teap
;
3657 Jim_SetEmptyResult(goi
->interp
);
3661 Jim_SetEmptyResult(goi
->interp
);
3663 Jim_SetResult(goi
->interp
, Jim_DuplicateObj(goi
->interp
, teap
->body
));
3670 case TCFG_WORK_AREA_VIRT
:
3671 if (goi
->isconfigure
) {
3672 target_free_all_working_areas(target
);
3673 e
= Jim_GetOpt_Wide(goi
, &w
);
3677 target
->working_area_virt
= w
;
3678 target
->working_area_virt_spec
= true;
3680 if (goi
->argc
!= 0) {
3684 Jim_SetResult(interp
, Jim_NewIntObj(goi
->interp
, target
->working_area_virt
));
3688 case TCFG_WORK_AREA_PHYS
:
3689 if (goi
->isconfigure
) {
3690 target_free_all_working_areas(target
);
3691 e
= Jim_GetOpt_Wide(goi
, &w
);
3695 target
->working_area_phys
= w
;
3696 target
->working_area_phys_spec
= true;
3698 if (goi
->argc
!= 0) {
3702 Jim_SetResult(interp
, Jim_NewIntObj(goi
->interp
, target
->working_area_phys
));
3706 case TCFG_WORK_AREA_SIZE
:
3707 if (goi
->isconfigure
) {
3708 target_free_all_working_areas(target
);
3709 e
= Jim_GetOpt_Wide(goi
, &w
);
3713 target
->working_area_size
= w
;
3715 if (goi
->argc
!= 0) {
3719 Jim_SetResult(interp
, Jim_NewIntObj(goi
->interp
, target
->working_area_size
));
3723 case TCFG_WORK_AREA_BACKUP
:
3724 if (goi
->isconfigure
) {
3725 target_free_all_working_areas(target
);
3726 e
= Jim_GetOpt_Wide(goi
, &w
);
3730 /* make this exactly 1 or 0 */
3731 target
->backup_working_area
= (!!w
);
3733 if (goi
->argc
!= 0) {
3737 Jim_SetResult(interp
, Jim_NewIntObj(goi
->interp
, target
->backup_working_area
));
3738 /* loop for more e*/
3742 if (goi
->isconfigure
) {
3743 e
= Jim_GetOpt_Nvp(goi
, nvp_target_endian
, &n
);
3745 Jim_GetOpt_NvpUnknown(goi
, nvp_target_endian
, 1);
3748 target
->endianness
= n
->value
;
3750 if (goi
->argc
!= 0) {
3754 n
= Jim_Nvp_value2name_simple(nvp_target_endian
, target
->endianness
);
3755 if (n
->name
== NULL
) {
3756 target
->endianness
= TARGET_LITTLE_ENDIAN
;
3757 n
= Jim_Nvp_value2name_simple(nvp_target_endian
, target
->endianness
);
3759 Jim_SetResultString(goi
->interp
, n
->name
, -1);
3764 if (goi
->isconfigure
) {
3765 if (goi
->argc
< 1) {
3766 Jim_SetResult_sprintf(goi
->interp
,
3771 if (target
->variant
) {
3772 free((void *)(target
->variant
));
3774 e
= Jim_GetOpt_String(goi
, &cp
, NULL
);
3775 target
->variant
= strdup(cp
);
3777 if (goi
->argc
!= 0) {
3781 Jim_SetResultString(goi
->interp
, target
->variant
,-1);
3784 case TCFG_CHAIN_POSITION
:
3785 if (goi
->isconfigure
) {
3787 struct jtag_tap
*tap
;
3788 target_free_all_working_areas(target
);
3789 e
= Jim_GetOpt_Obj(goi
, &o
);
3793 tap
= jtag_tap_by_jim_obj(goi
->interp
, o
);
3797 /* make this exactly 1 or 0 */
3800 if (goi
->argc
!= 0) {
3804 Jim_SetResultString(interp
, target
->tap
->dotted_name
, -1);
3805 /* loop for more e*/
3808 } /* while (goi->argc) */
3811 /* done - we return */
3815 /** this is the 'tcl' handler for the target specific command */
3816 static int tcl_target_func(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
3821 uint8_t target_buf
[32];
3823 struct target
*target
;
3824 struct command_context
*cmd_ctx
;
3831 TS_CMD_MWW
, TS_CMD_MWH
, TS_CMD_MWB
,
3832 TS_CMD_MDW
, TS_CMD_MDH
, TS_CMD_MDB
,
3833 TS_CMD_MRW
, TS_CMD_MRH
, TS_CMD_MRB
,
3834 TS_CMD_MEM2ARRAY
, TS_CMD_ARRAY2MEM
,
3842 TS_CMD_INVOKE_EVENT
,
3845 static const Jim_Nvp target_options
[] = {
3846 { .name
= "configure", .value
= TS_CMD_CONFIGURE
},
3847 { .name
= "cget", .value
= TS_CMD_CGET
},
3848 { .name
= "mww", .value
= TS_CMD_MWW
},
3849 { .name
= "mwh", .value
= TS_CMD_MWH
},
3850 { .name
= "mwb", .value
= TS_CMD_MWB
},
3851 { .name
= "mdw", .value
= TS_CMD_MDW
},
3852 { .name
= "mdh", .value
= TS_CMD_MDH
},
3853 { .name
= "mdb", .value
= TS_CMD_MDB
},
3854 { .name
= "mem2array", .value
= TS_CMD_MEM2ARRAY
},
3855 { .name
= "array2mem", .value
= TS_CMD_ARRAY2MEM
},
3856 { .name
= "eventlist", .value
= TS_CMD_EVENTLIST
},
3857 { .name
= "curstate", .value
= TS_CMD_CURSTATE
},
3859 { .name
= "arp_examine", .value
= TS_CMD_EXAMINE
},
3860 { .name
= "arp_poll", .value
= TS_CMD_POLL
},
3861 { .name
= "arp_reset", .value
= TS_CMD_RESET
},
3862 { .name
= "arp_halt", .value
= TS_CMD_HALT
},
3863 { .name
= "arp_waitstate", .value
= TS_CMD_WAITSTATE
},
3864 { .name
= "invoke-event", .value
= TS_CMD_INVOKE_EVENT
},
3866 { .name
= NULL
, .value
= -1 },
3869 /* go past the "command" */
3870 Jim_GetOpt_Setup(&goi
, interp
, argc
-1, argv
+ 1);
3872 target
= Jim_CmdPrivData(goi
.interp
);
3873 cmd_ctx
= Jim_GetAssocData(goi
.interp
, "context");
3875 /* commands here are in an NVP table */
3876 e
= Jim_GetOpt_Nvp(&goi
, target_options
, &n
);
3878 Jim_GetOpt_NvpUnknown(&goi
, target_options
, 0);
3881 /* Assume blank result */
3882 Jim_SetEmptyResult(goi
.interp
);
3885 case TS_CMD_CONFIGURE
:
3887 Jim_WrongNumArgs(goi
.interp
, goi
.argc
, goi
.argv
, "missing: -option VALUE ...");
3890 goi
.isconfigure
= 1;
3891 return target_configure(&goi
, target
);
3893 // some things take params
3895 Jim_WrongNumArgs(goi
.interp
, 0, goi
.argv
, "missing: ?-option?");
3898 goi
.isconfigure
= 0;
3899 return target_configure(&goi
, target
);
3907 * argv[3] = optional count.
3910 if ((goi
.argc
== 2) || (goi
.argc
== 3)) {
3914 Jim_SetResult_sprintf(goi
.interp
, "expected: %s ADDR DATA [COUNT]", n
->name
);
3918 e
= Jim_GetOpt_Wide(&goi
, &a
);
3923 e
= Jim_GetOpt_Wide(&goi
, &b
);
3927 if (goi
.argc
== 3) {
3928 e
= Jim_GetOpt_Wide(&goi
, &c
);
3938 target_buffer_set_u32(target
, target_buf
, b
);
3942 target_buffer_set_u16(target
, target_buf
, b
);
3946 target_buffer_set_u8(target
, target_buf
, b
);
3950 for (x
= 0 ; x
< c
; x
++) {
3951 e
= target_write_memory(target
, a
, b
, 1, target_buf
);
3952 if (e
!= ERROR_OK
) {
3953 Jim_SetResult_sprintf(interp
, "Error writing @ 0x%08x: %d\n", (int)(a
), e
);
3966 /* argv[0] = command
3968 * argv[2] = optional count
3970 if ((goi
.argc
== 2) || (goi
.argc
== 3)) {
3971 Jim_SetResult_sprintf(goi
.interp
, "expected: %s ADDR [COUNT]", n
->name
);
3974 e
= Jim_GetOpt_Wide(&goi
, &a
);
3979 e
= Jim_GetOpt_Wide(&goi
, &c
);
3986 b
= 1; /* shut up gcc */
3999 /* convert to "bytes" */
4001 /* count is now in 'BYTES' */
4007 e
= target_read_memory(target
, a
, b
, y
/ b
, target_buf
);
4008 if (e
!= ERROR_OK
) {
4009 Jim_SetResult_sprintf(interp
, "error reading target @ 0x%08lx", (int)(a
));
4013 Jim_fprintf(interp
, interp
->cookie_stdout
, "0x%08x ", (int)(a
));
4016 for (x
= 0 ; (x
< 16) && (x
< y
) ; x
+= 4) {
4017 z
= target_buffer_get_u32(target
, &(target_buf
[ x
* 4 ]));
4018 Jim_fprintf(interp
, interp
->cookie_stdout
, "%08x ", (int)(z
));
4020 for (; (x
< 16) ; x
+= 4) {
4021 Jim_fprintf(interp
, interp
->cookie_stdout
, " ");
4025 for (x
= 0 ; (x
< 16) && (x
< y
) ; x
+= 2) {
4026 z
= target_buffer_get_u16(target
, &(target_buf
[ x
* 2 ]));
4027 Jim_fprintf(interp
, interp
->cookie_stdout
, "%04x ", (int)(z
));
4029 for (; (x
< 16) ; x
+= 2) {
4030 Jim_fprintf(interp
, interp
->cookie_stdout
, " ");
4035 for (x
= 0 ; (x
< 16) && (x
< y
) ; x
+= 1) {
4036 z
= target_buffer_get_u8(target
, &(target_buf
[ x
* 4 ]));
4037 Jim_fprintf(interp
, interp
->cookie_stdout
, "%02x ", (int)(z
));
4039 for (; (x
< 16) ; x
+= 1) {
4040 Jim_fprintf(interp
, interp
->cookie_stdout
, " ");
4044 /* ascii-ify the bytes */
4045 for (x
= 0 ; x
< y
; x
++) {
4046 if ((target_buf
[x
] >= 0x20) &&
4047 (target_buf
[x
] <= 0x7e)) {
4051 target_buf
[x
] = '.';
4056 target_buf
[x
] = ' ';
4061 /* print - with a newline */
4062 Jim_fprintf(interp
, interp
->cookie_stdout
, "%s\n", target_buf
);
4068 case TS_CMD_MEM2ARRAY
:
4069 return target_mem2array(goi
.interp
, target
, goi
.argc
, goi
.argv
);
4071 case TS_CMD_ARRAY2MEM
:
4072 return target_array2mem(goi
.interp
, target
, goi
.argc
, goi
.argv
);
4074 case TS_CMD_EXAMINE
:
4076 Jim_WrongNumArgs(goi
.interp
, 2, argv
, "[no parameters]");
4079 if (!target
->tap
->enabled
)
4080 goto err_tap_disabled
;
4081 e
= target
->type
->examine(target
);
4082 if (e
!= ERROR_OK
) {
4083 Jim_SetResult_sprintf(interp
, "examine-fails: %d", e
);
4089 Jim_WrongNumArgs(goi
.interp
, 2, argv
, "[no parameters]");
4092 if (!target
->tap
->enabled
)
4093 goto err_tap_disabled
;
4094 if (!(target_was_examined(target
))) {
4095 e
= ERROR_TARGET_NOT_EXAMINED
;
4097 e
= target
->type
->poll(target
);
4099 if (e
!= ERROR_OK
) {
4100 Jim_SetResult_sprintf(interp
, "poll-fails: %d", e
);
4107 if (goi
.argc
!= 2) {
4108 Jim_WrongNumArgs(interp
, 2, argv
,
4109 "([tT]|[fF]|assert|deassert) BOOL");
4112 e
= Jim_GetOpt_Nvp(&goi
, nvp_assert
, &n
);
4114 Jim_GetOpt_NvpUnknown(&goi
, nvp_assert
, 1);
4117 /* the halt or not param */
4118 e
= Jim_GetOpt_Wide(&goi
, &a
);
4122 if (!target
->tap
->enabled
)
4123 goto err_tap_disabled
;
4124 if (!target
->type
->assert_reset
4125 || !target
->type
->deassert_reset
) {
4126 Jim_SetResult_sprintf(interp
,
4127 "No target-specific reset for %s",
4131 /* determine if we should halt or not. */
4132 target
->reset_halt
= !!a
;
4133 /* When this happens - all workareas are invalid. */
4134 target_free_all_working_areas_restore(target
, 0);
4137 if (n
->value
== NVP_ASSERT
) {
4138 e
= target
->type
->assert_reset(target
);
4140 e
= target
->type
->deassert_reset(target
);
4142 return (e
== ERROR_OK
) ? JIM_OK
: JIM_ERR
;
4145 Jim_WrongNumArgs(goi
.interp
, 0, argv
, "halt [no parameters]");
4148 if (!target
->tap
->enabled
)
4149 goto err_tap_disabled
;
4150 e
= target
->type
->halt(target
);
4151 return (e
== ERROR_OK
) ? JIM_OK
: JIM_ERR
;
4152 case TS_CMD_WAITSTATE
:
4153 /* params: <name> statename timeoutmsecs */
4154 if (goi
.argc
!= 2) {
4155 Jim_SetResult_sprintf(goi
.interp
, "%s STATENAME TIMEOUTMSECS", n
->name
);
4158 e
= Jim_GetOpt_Nvp(&goi
, nvp_target_state
, &n
);
4160 Jim_GetOpt_NvpUnknown(&goi
, nvp_target_state
,1);
4163 e
= Jim_GetOpt_Wide(&goi
, &a
);
4167 if (!target
->tap
->enabled
)
4168 goto err_tap_disabled
;
4169 e
= target_wait_state(target
, n
->value
, a
);
4170 if (e
!= ERROR_OK
) {
4171 Jim_SetResult_sprintf(goi
.interp
,
4172 "target: %s wait %s fails (%d) %s",
4175 e
, target_strerror_safe(e
));
4180 case TS_CMD_EVENTLIST
:
4181 /* List for human, Events defined for this target.
4182 * scripts/programs should use 'name cget -event NAME'
4185 struct target_event_action
*teap
;
4186 teap
= target
->event_action
;
4187 command_print(cmd_ctx
, "Event actions for target (%d) %s\n",
4188 target
->target_number
,
4190 command_print(cmd_ctx
, "%-25s | Body", "Event");
4191 command_print(cmd_ctx
, "------------------------- | ----------------------------------------");
4193 command_print(cmd_ctx
,
4195 Jim_Nvp_value2name_simple(nvp_target_event
, teap
->event
)->name
,
4196 Jim_GetString(teap
->body
, NULL
));
4199 command_print(cmd_ctx
, "***END***");
4202 case TS_CMD_CURSTATE
:
4203 if (goi
.argc
!= 0) {
4204 Jim_WrongNumArgs(goi
.interp
, 0, argv
, "[no parameters]");
4207 Jim_SetResultString(goi
.interp
,
4208 target_state_name( target
),
4211 case TS_CMD_INVOKE_EVENT
:
4212 if (goi
.argc
!= 1) {
4213 Jim_SetResult_sprintf(goi
.interp
, "%s ?EVENTNAME?",n
->name
);
4216 e
= Jim_GetOpt_Nvp(&goi
, nvp_target_event
, &n
);
4218 Jim_GetOpt_NvpUnknown(&goi
, nvp_target_event
, 1);
4221 target_handle_event(target
, n
->value
);
4227 Jim_SetResult_sprintf(interp
, "[TAP is disabled]");
4231 static int target_create(Jim_GetOptInfo
*goi
)
4239 struct target
*target
;
4240 struct command_context
*cmd_ctx
;
4242 cmd_ctx
= Jim_GetAssocData(goi
->interp
, "context");
4243 if (goi
->argc
< 3) {
4244 Jim_WrongNumArgs(goi
->interp
, 1, goi
->argv
, "?name? ?type? ..options...");
4249 Jim_GetOpt_Obj(goi
, &new_cmd
);
4250 /* does this command exist? */
4251 cmd
= Jim_GetCommand(goi
->interp
, new_cmd
, JIM_ERRMSG
);
4253 cp
= Jim_GetString(new_cmd
, NULL
);
4254 Jim_SetResult_sprintf(goi
->interp
, "Command/target: %s Exists", cp
);
4259 e
= Jim_GetOpt_String(goi
, &cp2
, NULL
);
4261 /* now does target type exist */
4262 for (x
= 0 ; target_types
[x
] ; x
++) {
4263 if (0 == strcmp(cp
, target_types
[x
]->name
)) {
4268 if (target_types
[x
] == NULL
) {
4269 Jim_SetResult_sprintf(goi
->interp
, "Unknown target type %s, try one of ", cp
);
4270 for (x
= 0 ; target_types
[x
] ; x
++) {
4271 if (target_types
[x
+ 1]) {
4272 Jim_AppendStrings(goi
->interp
,
4273 Jim_GetResult(goi
->interp
),
4274 target_types
[x
]->name
,
4277 Jim_AppendStrings(goi
->interp
,
4278 Jim_GetResult(goi
->interp
),
4280 target_types
[x
]->name
,NULL
);
4287 target
= calloc(1,sizeof(struct target
));
4288 /* set target number */
4289 target
->target_number
= new_target_number();
4291 /* allocate memory for each unique target type */
4292 target
->type
= (struct target_type
*)calloc(1,sizeof(struct target_type
));
4294 memcpy(target
->type
, target_types
[x
], sizeof(struct target_type
));
4296 /* will be set by "-endian" */
4297 target
->endianness
= TARGET_ENDIAN_UNKNOWN
;
4299 target
->working_area
= 0x0;
4300 target
->working_area_size
= 0x0;
4301 target
->working_areas
= NULL
;
4302 target
->backup_working_area
= 0;
4304 target
->state
= TARGET_UNKNOWN
;
4305 target
->debug_reason
= DBG_REASON_UNDEFINED
;
4306 target
->reg_cache
= NULL
;
4307 target
->breakpoints
= NULL
;
4308 target
->watchpoints
= NULL
;
4309 target
->next
= NULL
;
4310 target
->arch_info
= NULL
;
4312 target
->display
= 1;
4314 target
->halt_issued
= false;
4316 /* initialize trace information */
4317 target
->trace_info
= malloc(sizeof(struct trace
));
4318 target
->trace_info
->num_trace_points
= 0;
4319 target
->trace_info
->trace_points_size
= 0;
4320 target
->trace_info
->trace_points
= NULL
;
4321 target
->trace_info
->trace_history_size
= 0;
4322 target
->trace_info
->trace_history
= NULL
;
4323 target
->trace_info
->trace_history_pos
= 0;
4324 target
->trace_info
->trace_history_overflowed
= 0;
4326 target
->dbgmsg
= NULL
;
4327 target
->dbg_msg_enabled
= 0;
4329 target
->endianness
= TARGET_ENDIAN_UNKNOWN
;
4331 /* Do the rest as "configure" options */
4332 goi
->isconfigure
= 1;
4333 e
= target_configure(goi
, target
);
4335 if (target
->tap
== NULL
)
4337 Jim_SetResultString(interp
, "-chain-position required when creating target", -1);
4347 if (target
->endianness
== TARGET_ENDIAN_UNKNOWN
) {
4348 /* default endian to little if not specified */
4349 target
->endianness
= TARGET_LITTLE_ENDIAN
;
4352 /* incase variant is not set */
4353 if (!target
->variant
)
4354 target
->variant
= strdup("");
4356 /* create the target specific commands */
4357 if (target
->type
->register_commands
) {
4358 (*(target
->type
->register_commands
))(cmd_ctx
);
4360 if (target
->type
->target_create
) {
4361 (*(target
->type
->target_create
))(target
, goi
->interp
);
4364 /* append to end of list */
4366 struct target
**tpp
;
4367 tpp
= &(all_targets
);
4369 tpp
= &((*tpp
)->next
);
4374 cp
= Jim_GetString(new_cmd
, NULL
);
4375 target
->cmd_name
= strdup(cp
);
4377 /* now - create the new target name command */
4378 e
= Jim_CreateCommand(goi
->interp
,
4381 tcl_target_func
, /* C function */
4382 target
, /* private data */
4383 NULL
); /* no del proc */
4388 static int jim_target(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
4392 struct command_context
*cmd_ctx
;
4393 struct target
*target
;
4396 /* TG = target generic */
4404 const char *target_cmds
[] = {
4405 "create", "types", "names", "current", "number",
4407 NULL
/* terminate */
4410 LOG_DEBUG("Target command params:");
4411 LOG_DEBUG("%s", Jim_Debug_ArgvString(interp
, argc
, argv
));
4413 cmd_ctx
= Jim_GetAssocData(interp
, "context");
4415 Jim_GetOpt_Setup(&goi
, interp
, argc
-1, argv
+ 1);
4417 if (goi
.argc
== 0) {
4418 Jim_WrongNumArgs(interp
, 1, argv
, "missing: command ...");
4422 /* Jim_GetOpt_Debug(&goi); */
4423 r
= Jim_GetOpt_Enum(&goi
, target_cmds
, &x
);
4430 Jim_Panic(goi
.interp
,"Why am I here?");
4432 case TG_CMD_CURRENT
:
4433 if (goi
.argc
!= 0) {
4434 Jim_WrongNumArgs(goi
.interp
, 1, goi
.argv
, "Too many parameters");
4437 Jim_SetResultString(goi
.interp
, get_current_target(cmd_ctx
)->cmd_name
, -1);
4440 if (goi
.argc
!= 0) {
4441 Jim_WrongNumArgs(goi
.interp
, 1, goi
.argv
, "Too many parameters");
4444 Jim_SetResult(goi
.interp
, Jim_NewListObj(goi
.interp
, NULL
, 0));
4445 for (x
= 0 ; target_types
[x
] ; x
++) {
4446 Jim_ListAppendElement(goi
.interp
,
4447 Jim_GetResult(goi
.interp
),
4448 Jim_NewStringObj(goi
.interp
, target_types
[x
]->name
, -1));
4452 if (goi
.argc
!= 0) {
4453 Jim_WrongNumArgs(goi
.interp
, 1, goi
.argv
, "Too many parameters");
4456 Jim_SetResult(goi
.interp
, Jim_NewListObj(goi
.interp
, NULL
, 0));
4457 target
= all_targets
;
4459 Jim_ListAppendElement(goi
.interp
,
4460 Jim_GetResult(goi
.interp
),
4461 Jim_NewStringObj(goi
.interp
, target
->cmd_name
, -1));
4462 target
= target
->next
;
4467 Jim_WrongNumArgs(goi
.interp
, goi
.argc
, goi
.argv
, "?name ... config options ...");
4470 return target_create(&goi
);
4473 /* It's OK to remove this mechanism sometime after August 2010 or so */
4474 LOG_WARNING("don't use numbers as target identifiers; use names");
4475 if (goi
.argc
!= 1) {
4476 Jim_SetResult_sprintf(goi
.interp
, "expected: target number ?NUMBER?");
4479 e
= Jim_GetOpt_Wide(&goi
, &w
);
4483 for (x
= 0, target
= all_targets
; target
; target
= target
->next
, x
++) {
4484 if (target
->target_number
== w
)
4487 if (target
== NULL
) {
4488 Jim_SetResult_sprintf(goi
.interp
,
4489 "Target: number %d does not exist", (int)(w
));
4492 Jim_SetResultString(goi
.interp
, target
->cmd_name
, -1);
4495 if (goi
.argc
!= 0) {
4496 Jim_WrongNumArgs(goi
.interp
, 0, goi
.argv
, "<no parameters>");
4499 for (x
= 0, target
= all_targets
; target
; target
= target
->next
, x
++)
4501 Jim_SetResult(goi
.interp
, Jim_NewIntObj(goi
.interp
, x
));
4517 static int fastload_num
;
4518 static struct FastLoad
*fastload
;
4520 static void free_fastload(void)
4522 if (fastload
!= NULL
)
4525 for (i
= 0; i
< fastload_num
; i
++)
4527 if (fastload
[i
].data
)
4528 free(fastload
[i
].data
);
4538 COMMAND_HANDLER(handle_fast_load_image_command
)
4542 uint32_t image_size
;
4543 uint32_t min_address
= 0;
4544 uint32_t max_address
= 0xffffffff;
4549 int retval
= CALL_COMMAND_HANDLER(parse_load_image_command_CMD_ARGV
,
4550 &image
, &min_address
, &max_address
);
4551 if (ERROR_OK
!= retval
)
4554 struct duration bench
;
4555 duration_start(&bench
);
4557 if (image_open(&image
, CMD_ARGV
[0], (CMD_ARGC
>= 3) ? CMD_ARGV
[2] : NULL
) != ERROR_OK
)
4564 fastload_num
= image
.num_sections
;
4565 fastload
= (struct FastLoad
*)malloc(sizeof(struct FastLoad
)*image
.num_sections
);
4566 if (fastload
== NULL
)
4568 image_close(&image
);
4571 memset(fastload
, 0, sizeof(struct FastLoad
)*image
.num_sections
);
4572 for (i
= 0; i
< image
.num_sections
; i
++)
4574 buffer
= malloc(image
.sections
[i
].size
);
4577 command_print(CMD_CTX
, "error allocating buffer for section (%d bytes)",
4578 (int)(image
.sections
[i
].size
));
4582 if ((retval
= image_read_section(&image
, i
, 0x0, image
.sections
[i
].size
, buffer
, &buf_cnt
)) != ERROR_OK
)
4588 uint32_t offset
= 0;
4589 uint32_t length
= buf_cnt
;
4592 /* DANGER!!! beware of unsigned comparision here!!! */
4594 if ((image
.sections
[i
].base_address
+ buf_cnt
>= min_address
)&&
4595 (image
.sections
[i
].base_address
< max_address
))
4597 if (image
.sections
[i
].base_address
< min_address
)
4599 /* clip addresses below */
4600 offset
+= min_address
-image
.sections
[i
].base_address
;
4604 if (image
.sections
[i
].base_address
+ buf_cnt
> max_address
)
4606 length
-= (image
.sections
[i
].base_address
+ buf_cnt
)-max_address
;
4609 fastload
[i
].address
= image
.sections
[i
].base_address
+ offset
;
4610 fastload
[i
].data
= malloc(length
);
4611 if (fastload
[i
].data
== NULL
)
4616 memcpy(fastload
[i
].data
, buffer
+ offset
, length
);
4617 fastload
[i
].length
= length
;
4619 image_size
+= length
;
4620 command_print(CMD_CTX
, "%u bytes written at address 0x%8.8x",
4621 (unsigned int)length
,
4622 ((unsigned int)(image
.sections
[i
].base_address
+ offset
)));
4628 if ((ERROR_OK
== retval
) && (duration_measure(&bench
) == ERROR_OK
))
4630 command_print(CMD_CTX
, "Loaded %" PRIu32
" bytes "
4631 "in %fs (%0.3f kb/s)", image_size
,
4632 duration_elapsed(&bench
), duration_kbps(&bench
, image_size
));
4634 command_print(CMD_CTX
,
4635 "WARNING: image has not been loaded to target!"
4636 "You can issue a 'fast_load' to finish loading.");
4639 image_close(&image
);
4641 if (retval
!= ERROR_OK
)
4649 COMMAND_HANDLER(handle_fast_load_command
)
4652 return ERROR_COMMAND_SYNTAX_ERROR
;
4653 if (fastload
== NULL
)
4655 LOG_ERROR("No image in memory");
4659 int ms
= timeval_ms();
4661 int retval
= ERROR_OK
;
4662 for (i
= 0; i
< fastload_num
;i
++)
4664 struct target
*target
= get_current_target(CMD_CTX
);
4665 command_print(CMD_CTX
, "Write to 0x%08x, length 0x%08x",
4666 (unsigned int)(fastload
[i
].address
),
4667 (unsigned int)(fastload
[i
].length
));
4668 if (retval
== ERROR_OK
)
4670 retval
= target_write_buffer(target
, fastload
[i
].address
, fastload
[i
].length
, fastload
[i
].data
);
4672 size
+= fastload
[i
].length
;
4674 int after
= timeval_ms();
4675 command_print(CMD_CTX
, "Loaded image %f kBytes/s", (float)(size
/1024.0)/((float)(after
-ms
)/1000.0));
4679 static int jim_mcrmrc(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
4681 struct command_context
*context
;
4682 struct target
*target
;
4685 context
= Jim_GetAssocData(interp
, "context");
4686 if (context
== NULL
) {
4687 LOG_ERROR("array2mem: no command context");
4690 target
= get_current_target(context
);
4691 if (target
== NULL
) {
4692 LOG_ERROR("array2mem: no current target");
4696 if ((argc
< 6) || (argc
> 7))
4710 e
= Jim_GetLong(interp
, argv
[1], &l
);
4716 e
= Jim_GetLong(interp
, argv
[2], &l
);
4722 e
= Jim_GetLong(interp
, argv
[3], &l
);
4728 e
= Jim_GetLong(interp
, argv
[4], &l
);
4734 e
= Jim_GetLong(interp
, argv
[5], &l
);
4744 e
= Jim_GetLong(interp
, argv
[6], &l
);
4750 retval
= target_mcr(target
, cpnum
, op1
, op2
, CRn
, CRm
, value
);
4751 if (retval
!= ERROR_OK
)
4755 retval
= target_mrc(target
, cpnum
, op1
, op2
, CRn
, CRm
, &value
);
4756 if (retval
!= ERROR_OK
)
4759 Jim_SetResult(interp
, Jim_NewIntObj(interp
, value
));
4765 int target_register_commands(struct command_context
*cmd_ctx
)
4768 register_command(cmd_ctx
, NULL
, "targets",
4769 handle_targets_command
, COMMAND_EXEC
,
4770 "change current command line target (one parameter) "
4771 "or list targets (no parameters)");
4773 register_jim(cmd_ctx
, "target", jim_target
, "configure target");
4778 int target_register_user_commands(struct command_context
*cmd_ctx
)
4780 int retval
= ERROR_OK
;
4781 if ((retval
= target_request_register_commands(cmd_ctx
)) != ERROR_OK
)
4784 if ((retval
= trace_register_commands(cmd_ctx
)) != ERROR_OK
)
4787 register_command(cmd_ctx
, NULL
, "profile",
4788 handle_profile_command
, COMMAND_EXEC
,
4789 "profiling samples the CPU PC");
4791 register_jim(cmd_ctx
, "ocd_mem2array", jim_mem2array
,
4792 "read memory and return as a TCL array for script processing "
4793 "<ARRAYNAME> <WIDTH = 32/16/8> <ADDRESS> <COUNT>");
4795 register_jim(cmd_ctx
, "ocd_array2mem", jim_array2mem
,
4796 "convert a TCL array to memory locations and write the values "
4797 "<ARRAYNAME> <WIDTH = 32/16/8> <ADDRESS> <COUNT>");
4799 register_command(cmd_ctx
, NULL
, "fast_load_image",
4800 handle_fast_load_image_command
, COMMAND_ANY
,
4801 "same CMD_ARGV as load_image, image stored in memory "
4802 "- mainly for profiling purposes");
4804 register_command(cmd_ctx
, NULL
, "fast_load",
4805 handle_fast_load_command
, COMMAND_ANY
,
4806 "loads active fast load image to current target "
4807 "- mainly for profiling purposes");
4809 /** @todo don't register virt2phys() unless target supports it */
4810 register_command(cmd_ctx
, NULL
, "virt2phys",
4811 handle_virt2phys_command
, COMMAND_ANY
,
4812 "translate a virtual address into a physical address");
4814 register_command(cmd_ctx
, NULL
, "reg",
4815 handle_reg_command
, COMMAND_EXEC
,
4816 "display or set a register");
4818 register_command(cmd_ctx
, NULL
, "poll",
4819 handle_poll_command
, COMMAND_EXEC
,
4820 "poll target state");
4821 register_command(cmd_ctx
, NULL
, "wait_halt",
4822 handle_wait_halt_command
, COMMAND_EXEC
,
4823 "wait for target halt [time (s)]");
4824 register_command(cmd_ctx
, NULL
, "halt",
4825 handle_halt_command
, COMMAND_EXEC
,
4827 register_command(cmd_ctx
, NULL
, "resume",
4828 handle_resume_command
, COMMAND_EXEC
,
4829 "resume target [addr]");
4830 register_command(cmd_ctx
, NULL
, "reset",
4831 handle_reset_command
, COMMAND_EXEC
,
4832 "reset target [run | halt | init] - default is run");
4833 register_command(cmd_ctx
, NULL
, "soft_reset_halt",
4834 handle_soft_reset_halt_command
, COMMAND_EXEC
,
4835 "halt the target and do a soft reset");
4837 register_command(cmd_ctx
, NULL
, "step",
4838 handle_step_command
, COMMAND_EXEC
,
4839 "step one instruction from current PC or [addr]");
4841 register_command(cmd_ctx
, NULL
, "mdw",
4842 handle_md_command
, COMMAND_EXEC
,
4843 "display memory words [phys] <addr> [count]");
4844 register_command(cmd_ctx
, NULL
, "mdh",
4845 handle_md_command
, COMMAND_EXEC
,
4846 "display memory half-words [phys] <addr> [count]");
4847 register_command(cmd_ctx
, NULL
, "mdb",
4848 handle_md_command
, COMMAND_EXEC
,
4849 "display memory bytes [phys] <addr> [count]");
4851 register_command(cmd_ctx
, NULL
, "mww",
4852 handle_mw_command
, COMMAND_EXEC
,
4853 "write memory word [phys] <addr> <value> [count]");
4854 register_command(cmd_ctx
, NULL
, "mwh",
4855 handle_mw_command
, COMMAND_EXEC
,
4856 "write memory half-word [phys] <addr> <value> [count]");
4857 register_command(cmd_ctx
, NULL
, "mwb",
4858 handle_mw_command
, COMMAND_EXEC
,
4859 "write memory byte [phys] <addr> <value> [count]");
4861 register_command(cmd_ctx
, NULL
, "bp",
4862 handle_bp_command
, COMMAND_EXEC
,
4863 "list or set breakpoint [<address> <length> [hw]]");
4864 register_command(cmd_ctx
, NULL
, "rbp",
4865 handle_rbp_command
, COMMAND_EXEC
,
4866 "remove breakpoint <address>");
4868 register_command(cmd_ctx
, NULL
, "wp",
4869 handle_wp_command
, COMMAND_EXEC
,
4870 "list or set watchpoint "
4871 "[<address> <length> <r/w/a> [value] [mask]]");
4872 register_command(cmd_ctx
, NULL
, "rwp",
4873 handle_rwp_command
, COMMAND_EXEC
,
4874 "remove watchpoint <address>");
4876 register_command(cmd_ctx
, NULL
, "load_image",
4877 handle_load_image_command
, COMMAND_EXEC
,
4878 "load_image <file> <address> "
4879 "['bin'|'ihex'|'elf'|'s19'] [min_address] [max_length]");
4880 register_command(cmd_ctx
, NULL
, "dump_image",
4881 handle_dump_image_command
, COMMAND_EXEC
,
4882 "dump_image <file> <address> <size>");
4883 register_command(cmd_ctx
, NULL
, "verify_image",
4884 handle_verify_image_command
, COMMAND_EXEC
,
4885 "verify_image <file> [offset] [type]");
4886 register_command(cmd_ctx
, NULL
, "test_image",
4887 handle_test_image_command
, COMMAND_EXEC
,
4888 "test_image <file> [offset] [type]");