mips32, add option to avoid check in last instruction
[openocd.git] / src / target / cortex_m.c
blobe80cd2356b023bf730f275ae10b56353edaa9c3f
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * Copyright (C) 2006 by Magnus Lundin *
6 * lundin@mlu.mine.nu *
7 * *
8 * Copyright (C) 2008 by Spencer Oliver *
9 * spen@spen-soft.co.uk *
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 * This program is distributed in the hope that it will be useful, *
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
19 * GNU General Public License for more details. *
20 * *
21 * You should have received a copy of the GNU General Public License *
22 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
23 * *
24 * *
25 * Cortex-M3(tm) TRM, ARM DDI 0337E (r1p1) and 0337G (r2p0) *
26 * *
27 ***************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 #include "config.h"
30 #endif
32 #include "jtag/interface.h"
33 #include "breakpoints.h"
34 #include "cortex_m.h"
35 #include "target_request.h"
36 #include "target_type.h"
37 #include "arm_disassembler.h"
38 #include "register.h"
39 #include "arm_opcodes.h"
40 #include "arm_semihosting.h"
41 #include <helper/time_support.h>
43 /* NOTE: most of this should work fine for the Cortex-M1 and
44 * Cortex-M0 cores too, although they're ARMv6-M not ARMv7-M.
45 * Some differences: M0/M1 doesn't have FBP remapping or the
46 * DWT tracing/profiling support. (So the cycle counter will
47 * not be usable; the other stuff isn't currently used here.)
49 * Although there are some workarounds for errata seen only in r0p0
50 * silicon, such old parts are hard to find and thus not much tested
51 * any longer.
54 /**
55 * Returns the type of a break point required by address location
57 #define BKPT_TYPE_BY_ADDR(addr) ((addr) < 0x20000000 ? BKPT_HARD : BKPT_SOFT)
59 /* forward declarations */
60 static int cortex_m_store_core_reg_u32(struct target *target,
61 uint32_t num, uint32_t value);
62 static void cortex_m_dwt_free(struct target *target);
64 static int cortexm_dap_read_coreregister_u32(struct target *target,
65 uint32_t *value, int regnum)
67 struct armv7m_common *armv7m = target_to_armv7m(target);
68 int retval;
69 uint32_t dcrdr;
71 /* because the DCB_DCRDR is used for the emulated dcc channel
72 * we have to save/restore the DCB_DCRDR when used */
73 if (target->dbg_msg_enabled) {
74 retval = mem_ap_read_u32(armv7m->debug_ap, DCB_DCRDR, &dcrdr);
75 if (retval != ERROR_OK)
76 return retval;
79 retval = mem_ap_write_u32(armv7m->debug_ap, DCB_DCRSR, regnum);
80 if (retval != ERROR_OK)
81 return retval;
83 retval = mem_ap_read_atomic_u32(armv7m->debug_ap, DCB_DCRDR, value);
84 if (retval != ERROR_OK)
85 return retval;
87 if (target->dbg_msg_enabled) {
88 /* restore DCB_DCRDR - this needs to be in a separate
89 * transaction otherwise the emulated DCC channel breaks */
90 if (retval == ERROR_OK)
91 retval = mem_ap_write_atomic_u32(armv7m->debug_ap, DCB_DCRDR, dcrdr);
94 return retval;
97 static int cortexm_dap_write_coreregister_u32(struct target *target,
98 uint32_t value, int regnum)
100 struct armv7m_common *armv7m = target_to_armv7m(target);
101 int retval;
102 uint32_t dcrdr;
104 /* because the DCB_DCRDR is used for the emulated dcc channel
105 * we have to save/restore the DCB_DCRDR when used */
106 if (target->dbg_msg_enabled) {
107 retval = mem_ap_read_u32(armv7m->debug_ap, DCB_DCRDR, &dcrdr);
108 if (retval != ERROR_OK)
109 return retval;
112 retval = mem_ap_write_u32(armv7m->debug_ap, DCB_DCRDR, value);
113 if (retval != ERROR_OK)
114 return retval;
116 retval = mem_ap_write_atomic_u32(armv7m->debug_ap, DCB_DCRSR, regnum | DCRSR_WnR);
117 if (retval != ERROR_OK)
118 return retval;
120 if (target->dbg_msg_enabled) {
121 /* restore DCB_DCRDR - this needs to be in a seperate
122 * transaction otherwise the emulated DCC channel breaks */
123 if (retval == ERROR_OK)
124 retval = mem_ap_write_atomic_u32(armv7m->debug_ap, DCB_DCRDR, dcrdr);
127 return retval;
130 static int cortex_m_write_debug_halt_mask(struct target *target,
131 uint32_t mask_on, uint32_t mask_off)
133 struct cortex_m_common *cortex_m = target_to_cm(target);
134 struct armv7m_common *armv7m = &cortex_m->armv7m;
136 /* mask off status bits */
137 cortex_m->dcb_dhcsr &= ~((0xFFFF << 16) | mask_off);
138 /* create new register mask */
139 cortex_m->dcb_dhcsr |= DBGKEY | C_DEBUGEN | mask_on;
141 return mem_ap_write_atomic_u32(armv7m->debug_ap, DCB_DHCSR, cortex_m->dcb_dhcsr);
144 static int cortex_m_clear_halt(struct target *target)
146 struct cortex_m_common *cortex_m = target_to_cm(target);
147 struct armv7m_common *armv7m = &cortex_m->armv7m;
148 int retval;
150 /* clear step if any */
151 cortex_m_write_debug_halt_mask(target, C_HALT, C_STEP);
153 /* Read Debug Fault Status Register */
154 retval = mem_ap_read_atomic_u32(armv7m->debug_ap, NVIC_DFSR, &cortex_m->nvic_dfsr);
155 if (retval != ERROR_OK)
156 return retval;
158 /* Clear Debug Fault Status */
159 retval = mem_ap_write_atomic_u32(armv7m->debug_ap, NVIC_DFSR, cortex_m->nvic_dfsr);
160 if (retval != ERROR_OK)
161 return retval;
162 LOG_DEBUG(" NVIC_DFSR 0x%" PRIx32 "", cortex_m->nvic_dfsr);
164 return ERROR_OK;
167 static int cortex_m_single_step_core(struct target *target)
169 struct cortex_m_common *cortex_m = target_to_cm(target);
170 struct armv7m_common *armv7m = &cortex_m->armv7m;
171 uint32_t dhcsr_save;
172 int retval;
174 /* backup dhcsr reg */
175 dhcsr_save = cortex_m->dcb_dhcsr;
177 /* Mask interrupts before clearing halt, if done already. This avoids
178 * Erratum 377497 (fixed in r1p0) where setting MASKINTS while clearing
179 * HALT can put the core into an unknown state.
181 if (!(cortex_m->dcb_dhcsr & C_MASKINTS)) {
182 retval = mem_ap_write_atomic_u32(armv7m->debug_ap, DCB_DHCSR,
183 DBGKEY | C_MASKINTS | C_HALT | C_DEBUGEN);
184 if (retval != ERROR_OK)
185 return retval;
187 retval = mem_ap_write_atomic_u32(armv7m->debug_ap, DCB_DHCSR,
188 DBGKEY | C_MASKINTS | C_STEP | C_DEBUGEN);
189 if (retval != ERROR_OK)
190 return retval;
191 LOG_DEBUG(" ");
193 /* restore dhcsr reg */
194 cortex_m->dcb_dhcsr = dhcsr_save;
195 cortex_m_clear_halt(target);
197 return ERROR_OK;
200 static int cortex_m_enable_fpb(struct target *target)
202 int retval = target_write_u32(target, FP_CTRL, 3);
203 if (retval != ERROR_OK)
204 return retval;
206 /* check the fpb is actually enabled */
207 uint32_t fpctrl;
208 retval = target_read_u32(target, FP_CTRL, &fpctrl);
209 if (retval != ERROR_OK)
210 return retval;
212 if (fpctrl & 1)
213 return ERROR_OK;
215 return ERROR_FAIL;
218 static int cortex_m_endreset_event(struct target *target)
220 int i;
221 int retval;
222 uint32_t dcb_demcr;
223 struct cortex_m_common *cortex_m = target_to_cm(target);
224 struct armv7m_common *armv7m = &cortex_m->armv7m;
225 struct adiv5_dap *swjdp = cortex_m->armv7m.arm.dap;
226 struct cortex_m_fp_comparator *fp_list = cortex_m->fp_comparator_list;
227 struct cortex_m_dwt_comparator *dwt_list = cortex_m->dwt_comparator_list;
229 /* REVISIT The four debug monitor bits are currently ignored... */
230 retval = mem_ap_read_atomic_u32(armv7m->debug_ap, DCB_DEMCR, &dcb_demcr);
231 if (retval != ERROR_OK)
232 return retval;
233 LOG_DEBUG("DCB_DEMCR = 0x%8.8" PRIx32 "", dcb_demcr);
235 /* this register is used for emulated dcc channel */
236 retval = mem_ap_write_u32(armv7m->debug_ap, DCB_DCRDR, 0);
237 if (retval != ERROR_OK)
238 return retval;
240 /* Enable debug requests */
241 retval = mem_ap_read_atomic_u32(armv7m->debug_ap, DCB_DHCSR, &cortex_m->dcb_dhcsr);
242 if (retval != ERROR_OK)
243 return retval;
244 if (!(cortex_m->dcb_dhcsr & C_DEBUGEN)) {
245 retval = mem_ap_write_u32(armv7m->debug_ap, DCB_DHCSR, DBGKEY | C_DEBUGEN);
246 if (retval != ERROR_OK)
247 return retval;
250 /* clear any interrupt masking */
251 cortex_m_write_debug_halt_mask(target, 0, C_MASKINTS);
253 /* Enable features controlled by ITM and DWT blocks, and catch only
254 * the vectors we were told to pay attention to.
256 * Target firmware is responsible for all fault handling policy
257 * choices *EXCEPT* explicitly scripted overrides like "vector_catch"
258 * or manual updates to the NVIC SHCSR and CCR registers.
260 retval = mem_ap_write_u32(armv7m->debug_ap, DCB_DEMCR, TRCENA | armv7m->demcr);
261 if (retval != ERROR_OK)
262 return retval;
264 /* Paranoia: evidently some (early?) chips don't preserve all the
265 * debug state (including FBP, DWT, etc) across reset...
268 /* Enable FPB */
269 retval = cortex_m_enable_fpb(target);
270 if (retval != ERROR_OK) {
271 LOG_ERROR("Failed to enable the FPB");
272 return retval;
275 cortex_m->fpb_enabled = 1;
277 /* Restore FPB registers */
278 for (i = 0; i < cortex_m->fp_num_code + cortex_m->fp_num_lit; i++) {
279 retval = target_write_u32(target, fp_list[i].fpcr_address, fp_list[i].fpcr_value);
280 if (retval != ERROR_OK)
281 return retval;
284 /* Restore DWT registers */
285 for (i = 0; i < cortex_m->dwt_num_comp; i++) {
286 retval = target_write_u32(target, dwt_list[i].dwt_comparator_address + 0,
287 dwt_list[i].comp);
288 if (retval != ERROR_OK)
289 return retval;
290 retval = target_write_u32(target, dwt_list[i].dwt_comparator_address + 4,
291 dwt_list[i].mask);
292 if (retval != ERROR_OK)
293 return retval;
294 retval = target_write_u32(target, dwt_list[i].dwt_comparator_address + 8,
295 dwt_list[i].function);
296 if (retval != ERROR_OK)
297 return retval;
299 retval = dap_run(swjdp);
300 if (retval != ERROR_OK)
301 return retval;
303 register_cache_invalidate(armv7m->arm.core_cache);
305 /* make sure we have latest dhcsr flags */
306 retval = mem_ap_read_atomic_u32(armv7m->debug_ap, DCB_DHCSR, &cortex_m->dcb_dhcsr);
308 return retval;
311 static int cortex_m_examine_debug_reason(struct target *target)
313 struct cortex_m_common *cortex_m = target_to_cm(target);
315 /* THIS IS NOT GOOD, TODO - better logic for detection of debug state reason
316 * only check the debug reason if we don't know it already */
318 if ((target->debug_reason != DBG_REASON_DBGRQ)
319 && (target->debug_reason != DBG_REASON_SINGLESTEP)) {
320 if (cortex_m->nvic_dfsr & DFSR_BKPT) {
321 target->debug_reason = DBG_REASON_BREAKPOINT;
322 if (cortex_m->nvic_dfsr & DFSR_DWTTRAP)
323 target->debug_reason = DBG_REASON_WPTANDBKPT;
324 } else if (cortex_m->nvic_dfsr & DFSR_DWTTRAP)
325 target->debug_reason = DBG_REASON_WATCHPOINT;
326 else if (cortex_m->nvic_dfsr & DFSR_VCATCH)
327 target->debug_reason = DBG_REASON_BREAKPOINT;
328 else /* EXTERNAL, HALTED */
329 target->debug_reason = DBG_REASON_UNDEFINED;
332 return ERROR_OK;
335 static int cortex_m_examine_exception_reason(struct target *target)
337 uint32_t shcsr = 0, except_sr = 0, cfsr = -1, except_ar = -1;
338 struct armv7m_common *armv7m = target_to_armv7m(target);
339 struct adiv5_dap *swjdp = armv7m->arm.dap;
340 int retval;
342 retval = mem_ap_read_u32(armv7m->debug_ap, NVIC_SHCSR, &shcsr);
343 if (retval != ERROR_OK)
344 return retval;
345 switch (armv7m->exception_number) {
346 case 2: /* NMI */
347 break;
348 case 3: /* Hard Fault */
349 retval = mem_ap_read_atomic_u32(armv7m->debug_ap, NVIC_HFSR, &except_sr);
350 if (retval != ERROR_OK)
351 return retval;
352 if (except_sr & 0x40000000) {
353 retval = mem_ap_read_u32(armv7m->debug_ap, NVIC_CFSR, &cfsr);
354 if (retval != ERROR_OK)
355 return retval;
357 break;
358 case 4: /* Memory Management */
359 retval = mem_ap_read_u32(armv7m->debug_ap, NVIC_CFSR, &except_sr);
360 if (retval != ERROR_OK)
361 return retval;
362 retval = mem_ap_read_u32(armv7m->debug_ap, NVIC_MMFAR, &except_ar);
363 if (retval != ERROR_OK)
364 return retval;
365 break;
366 case 5: /* Bus Fault */
367 retval = mem_ap_read_u32(armv7m->debug_ap, NVIC_CFSR, &except_sr);
368 if (retval != ERROR_OK)
369 return retval;
370 retval = mem_ap_read_u32(armv7m->debug_ap, NVIC_BFAR, &except_ar);
371 if (retval != ERROR_OK)
372 return retval;
373 break;
374 case 6: /* Usage Fault */
375 retval = mem_ap_read_u32(armv7m->debug_ap, NVIC_CFSR, &except_sr);
376 if (retval != ERROR_OK)
377 return retval;
378 break;
379 case 11: /* SVCall */
380 break;
381 case 12: /* Debug Monitor */
382 retval = mem_ap_read_u32(armv7m->debug_ap, NVIC_DFSR, &except_sr);
383 if (retval != ERROR_OK)
384 return retval;
385 break;
386 case 14: /* PendSV */
387 break;
388 case 15: /* SysTick */
389 break;
390 default:
391 except_sr = 0;
392 break;
394 retval = dap_run(swjdp);
395 if (retval == ERROR_OK)
396 LOG_DEBUG("%s SHCSR 0x%" PRIx32 ", SR 0x%" PRIx32
397 ", CFSR 0x%" PRIx32 ", AR 0x%" PRIx32,
398 armv7m_exception_string(armv7m->exception_number),
399 shcsr, except_sr, cfsr, except_ar);
400 return retval;
403 static int cortex_m_debug_entry(struct target *target)
405 int i;
406 uint32_t xPSR;
407 int retval;
408 struct cortex_m_common *cortex_m = target_to_cm(target);
409 struct armv7m_common *armv7m = &cortex_m->armv7m;
410 struct arm *arm = &armv7m->arm;
411 struct reg *r;
413 LOG_DEBUG(" ");
415 cortex_m_clear_halt(target);
416 retval = mem_ap_read_atomic_u32(armv7m->debug_ap, DCB_DHCSR, &cortex_m->dcb_dhcsr);
417 if (retval != ERROR_OK)
418 return retval;
420 retval = armv7m->examine_debug_reason(target);
421 if (retval != ERROR_OK)
422 return retval;
424 /* Examine target state and mode
425 * First load register accessible through core debug port */
426 int num_regs = arm->core_cache->num_regs;
428 for (i = 0; i < num_regs; i++) {
429 r = &armv7m->arm.core_cache->reg_list[i];
430 if (!r->valid)
431 arm->read_core_reg(target, r, i, ARM_MODE_ANY);
434 r = arm->cpsr;
435 xPSR = buf_get_u32(r->value, 0, 32);
437 /* For IT instructions xPSR must be reloaded on resume and clear on debug exec */
438 if (xPSR & 0xf00) {
439 r->dirty = r->valid;
440 cortex_m_store_core_reg_u32(target, 16, xPSR & ~0xff);
443 /* Are we in an exception handler */
444 if (xPSR & 0x1FF) {
445 armv7m->exception_number = (xPSR & 0x1FF);
447 arm->core_mode = ARM_MODE_HANDLER;
448 arm->map = armv7m_msp_reg_map;
449 } else {
450 unsigned control = buf_get_u32(arm->core_cache
451 ->reg_list[ARMV7M_CONTROL].value, 0, 2);
453 /* is this thread privileged? */
454 arm->core_mode = control & 1
455 ? ARM_MODE_USER_THREAD
456 : ARM_MODE_THREAD;
458 /* which stack is it using? */
459 if (control & 2)
460 arm->map = armv7m_psp_reg_map;
461 else
462 arm->map = armv7m_msp_reg_map;
464 armv7m->exception_number = 0;
467 if (armv7m->exception_number)
468 cortex_m_examine_exception_reason(target);
470 LOG_DEBUG("entered debug state in core mode: %s at PC 0x%" PRIx32 ", target->state: %s",
471 arm_mode_name(arm->core_mode),
472 buf_get_u32(arm->pc->value, 0, 32),
473 target_state_name(target));
475 if (armv7m->post_debug_entry) {
476 retval = armv7m->post_debug_entry(target);
477 if (retval != ERROR_OK)
478 return retval;
481 return ERROR_OK;
484 static int cortex_m_poll(struct target *target)
486 int detected_failure = ERROR_OK;
487 int retval = ERROR_OK;
488 enum target_state prev_target_state = target->state;
489 struct cortex_m_common *cortex_m = target_to_cm(target);
490 struct armv7m_common *armv7m = &cortex_m->armv7m;
492 /* Read from Debug Halting Control and Status Register */
493 retval = mem_ap_read_atomic_u32(armv7m->debug_ap, DCB_DHCSR, &cortex_m->dcb_dhcsr);
494 if (retval != ERROR_OK) {
495 target->state = TARGET_UNKNOWN;
496 return retval;
499 /* Recover from lockup. See ARMv7-M architecture spec,
500 * section B1.5.15 "Unrecoverable exception cases".
502 if (cortex_m->dcb_dhcsr & S_LOCKUP) {
503 LOG_ERROR("%s -- clearing lockup after double fault",
504 target_name(target));
505 cortex_m_write_debug_halt_mask(target, C_HALT, 0);
506 target->debug_reason = DBG_REASON_DBGRQ;
508 /* We have to execute the rest (the "finally" equivalent, but
509 * still throw this exception again).
511 detected_failure = ERROR_FAIL;
513 /* refresh status bits */
514 retval = mem_ap_read_atomic_u32(armv7m->debug_ap, DCB_DHCSR, &cortex_m->dcb_dhcsr);
515 if (retval != ERROR_OK)
516 return retval;
519 if (cortex_m->dcb_dhcsr & S_RESET_ST) {
520 target->state = TARGET_RESET;
521 return ERROR_OK;
524 if (target->state == TARGET_RESET) {
525 /* Cannot switch context while running so endreset is
526 * called with target->state == TARGET_RESET
528 LOG_DEBUG("Exit from reset with dcb_dhcsr 0x%" PRIx32,
529 cortex_m->dcb_dhcsr);
530 retval = cortex_m_endreset_event(target);
531 if (retval != ERROR_OK) {
532 target->state = TARGET_UNKNOWN;
533 return retval;
535 target->state = TARGET_RUNNING;
536 prev_target_state = TARGET_RUNNING;
539 if (cortex_m->dcb_dhcsr & S_HALT) {
540 target->state = TARGET_HALTED;
542 if ((prev_target_state == TARGET_RUNNING) || (prev_target_state == TARGET_RESET)) {
543 retval = cortex_m_debug_entry(target);
544 if (retval != ERROR_OK)
545 return retval;
547 if (arm_semihosting(target, &retval) != 0)
548 return retval;
550 target_call_event_callbacks(target, TARGET_EVENT_HALTED);
552 if (prev_target_state == TARGET_DEBUG_RUNNING) {
553 LOG_DEBUG(" ");
554 retval = cortex_m_debug_entry(target);
555 if (retval != ERROR_OK)
556 return retval;
558 target_call_event_callbacks(target, TARGET_EVENT_DEBUG_HALTED);
562 /* REVISIT when S_SLEEP is set, it's in a Sleep or DeepSleep state.
563 * How best to model low power modes?
566 if (target->state == TARGET_UNKNOWN) {
567 /* check if processor is retiring instructions */
568 if (cortex_m->dcb_dhcsr & S_RETIRE_ST) {
569 target->state = TARGET_RUNNING;
570 retval = ERROR_OK;
574 /* Did we detect a failure condition that we cleared? */
575 if (detected_failure != ERROR_OK)
576 retval = detected_failure;
577 return retval;
580 static int cortex_m_halt(struct target *target)
582 LOG_DEBUG("target->state: %s",
583 target_state_name(target));
585 if (target->state == TARGET_HALTED) {
586 LOG_DEBUG("target was already halted");
587 return ERROR_OK;
590 if (target->state == TARGET_UNKNOWN)
591 LOG_WARNING("target was in unknown state when halt was requested");
593 if (target->state == TARGET_RESET) {
594 if ((jtag_get_reset_config() & RESET_SRST_PULLS_TRST) && jtag_get_srst()) {
595 LOG_ERROR("can't request a halt while in reset if nSRST pulls nTRST");
596 return ERROR_TARGET_FAILURE;
597 } else {
598 /* we came here in a reset_halt or reset_init sequence
599 * debug entry was already prepared in cortex_m3_assert_reset()
601 target->debug_reason = DBG_REASON_DBGRQ;
603 return ERROR_OK;
607 /* Write to Debug Halting Control and Status Register */
608 cortex_m_write_debug_halt_mask(target, C_HALT, 0);
610 target->debug_reason = DBG_REASON_DBGRQ;
612 return ERROR_OK;
615 static int cortex_m_soft_reset_halt(struct target *target)
617 struct cortex_m_common *cortex_m = target_to_cm(target);
618 struct armv7m_common *armv7m = &cortex_m->armv7m;
619 uint32_t dcb_dhcsr = 0;
620 int retval, timeout = 0;
622 /* soft_reset_halt is deprecated on cortex_m as the same functionality
623 * can be obtained by using 'reset halt' and 'cortex_m reset_config vectreset'
624 * As this reset only used VC_CORERESET it would only ever reset the cortex_m
625 * core, not the peripherals */
626 LOG_WARNING("soft_reset_halt is deprecated, please use 'reset halt' instead.");
628 /* Enter debug state on reset; restore DEMCR in endreset_event() */
629 retval = mem_ap_write_u32(armv7m->debug_ap, DCB_DEMCR,
630 TRCENA | VC_HARDERR | VC_BUSERR | VC_CORERESET);
631 if (retval != ERROR_OK)
632 return retval;
634 /* Request a core-only reset */
635 retval = mem_ap_write_atomic_u32(armv7m->debug_ap, NVIC_AIRCR,
636 AIRCR_VECTKEY | AIRCR_VECTRESET);
637 if (retval != ERROR_OK)
638 return retval;
639 target->state = TARGET_RESET;
641 /* registers are now invalid */
642 register_cache_invalidate(cortex_m->armv7m.arm.core_cache);
644 while (timeout < 100) {
645 retval = mem_ap_read_atomic_u32(armv7m->debug_ap, DCB_DHCSR, &dcb_dhcsr);
646 if (retval == ERROR_OK) {
647 retval = mem_ap_read_atomic_u32(armv7m->debug_ap, NVIC_DFSR,
648 &cortex_m->nvic_dfsr);
649 if (retval != ERROR_OK)
650 return retval;
651 if ((dcb_dhcsr & S_HALT)
652 && (cortex_m->nvic_dfsr & DFSR_VCATCH)) {
653 LOG_DEBUG("system reset-halted, DHCSR 0x%08x, "
654 "DFSR 0x%08x",
655 (unsigned) dcb_dhcsr,
656 (unsigned) cortex_m->nvic_dfsr);
657 cortex_m_poll(target);
658 /* FIXME restore user's vector catch config */
659 return ERROR_OK;
660 } else
661 LOG_DEBUG("waiting for system reset-halt, "
662 "DHCSR 0x%08x, %d ms",
663 (unsigned) dcb_dhcsr, timeout);
665 timeout++;
666 alive_sleep(1);
669 return ERROR_OK;
672 void cortex_m_enable_breakpoints(struct target *target)
674 struct breakpoint *breakpoint = target->breakpoints;
676 /* set any pending breakpoints */
677 while (breakpoint) {
678 if (!breakpoint->set)
679 cortex_m_set_breakpoint(target, breakpoint);
680 breakpoint = breakpoint->next;
684 static int cortex_m_resume(struct target *target, int current,
685 target_addr_t address, int handle_breakpoints, int debug_execution)
687 struct armv7m_common *armv7m = target_to_armv7m(target);
688 struct breakpoint *breakpoint = NULL;
689 uint32_t resume_pc;
690 struct reg *r;
692 if (target->state != TARGET_HALTED) {
693 LOG_WARNING("target not halted");
694 return ERROR_TARGET_NOT_HALTED;
697 if (!debug_execution) {
698 target_free_all_working_areas(target);
699 cortex_m_enable_breakpoints(target);
700 cortex_m_enable_watchpoints(target);
703 if (debug_execution) {
704 r = armv7m->arm.core_cache->reg_list + ARMV7M_PRIMASK;
706 /* Disable interrupts */
707 /* We disable interrupts in the PRIMASK register instead of
708 * masking with C_MASKINTS. This is probably the same issue
709 * as Cortex-M3 Erratum 377493 (fixed in r1p0): C_MASKINTS
710 * in parallel with disabled interrupts can cause local faults
711 * to not be taken.
713 * REVISIT this clearly breaks non-debug execution, since the
714 * PRIMASK register state isn't saved/restored... workaround
715 * by never resuming app code after debug execution.
717 buf_set_u32(r->value, 0, 1, 1);
718 r->dirty = true;
719 r->valid = true;
721 /* Make sure we are in Thumb mode */
722 r = armv7m->arm.cpsr;
723 buf_set_u32(r->value, 24, 1, 1);
724 r->dirty = true;
725 r->valid = true;
728 /* current = 1: continue on current pc, otherwise continue at <address> */
729 r = armv7m->arm.pc;
730 if (!current) {
731 buf_set_u32(r->value, 0, 32, address);
732 r->dirty = true;
733 r->valid = true;
736 /* if we halted last time due to a bkpt instruction
737 * then we have to manually step over it, otherwise
738 * the core will break again */
740 if (!breakpoint_find(target, buf_get_u32(r->value, 0, 32))
741 && !debug_execution)
742 armv7m_maybe_skip_bkpt_inst(target, NULL);
744 resume_pc = buf_get_u32(r->value, 0, 32);
746 armv7m_restore_context(target);
748 /* the front-end may request us not to handle breakpoints */
749 if (handle_breakpoints) {
750 /* Single step past breakpoint at current address */
751 breakpoint = breakpoint_find(target, resume_pc);
752 if (breakpoint) {
753 LOG_DEBUG("unset breakpoint at " TARGET_ADDR_FMT " (ID: %" PRIu32 ")",
754 breakpoint->address,
755 breakpoint->unique_id);
756 cortex_m_unset_breakpoint(target, breakpoint);
757 cortex_m_single_step_core(target);
758 cortex_m_set_breakpoint(target, breakpoint);
762 /* Restart core */
763 cortex_m_write_debug_halt_mask(target, 0, C_HALT);
765 target->debug_reason = DBG_REASON_NOTHALTED;
767 /* registers are now invalid */
768 register_cache_invalidate(armv7m->arm.core_cache);
770 if (!debug_execution) {
771 target->state = TARGET_RUNNING;
772 target_call_event_callbacks(target, TARGET_EVENT_RESUMED);
773 LOG_DEBUG("target resumed at 0x%" PRIx32 "", resume_pc);
774 } else {
775 target->state = TARGET_DEBUG_RUNNING;
776 target_call_event_callbacks(target, TARGET_EVENT_DEBUG_RESUMED);
777 LOG_DEBUG("target debug resumed at 0x%" PRIx32 "", resume_pc);
780 return ERROR_OK;
783 /* int irqstepcount = 0; */
784 static int cortex_m_step(struct target *target, int current,
785 target_addr_t address, int handle_breakpoints)
787 struct cortex_m_common *cortex_m = target_to_cm(target);
788 struct armv7m_common *armv7m = &cortex_m->armv7m;
789 struct breakpoint *breakpoint = NULL;
790 struct reg *pc = armv7m->arm.pc;
791 bool bkpt_inst_found = false;
792 int retval;
793 bool isr_timed_out = false;
795 if (target->state != TARGET_HALTED) {
796 LOG_WARNING("target not halted");
797 return ERROR_TARGET_NOT_HALTED;
800 /* current = 1: continue on current pc, otherwise continue at <address> */
801 if (!current)
802 buf_set_u32(pc->value, 0, 32, address);
804 uint32_t pc_value = buf_get_u32(pc->value, 0, 32);
806 /* the front-end may request us not to handle breakpoints */
807 if (handle_breakpoints) {
808 breakpoint = breakpoint_find(target, pc_value);
809 if (breakpoint)
810 cortex_m_unset_breakpoint(target, breakpoint);
813 armv7m_maybe_skip_bkpt_inst(target, &bkpt_inst_found);
815 target->debug_reason = DBG_REASON_SINGLESTEP;
817 armv7m_restore_context(target);
819 target_call_event_callbacks(target, TARGET_EVENT_RESUMED);
821 /* if no bkpt instruction is found at pc then we can perform
822 * a normal step, otherwise we have to manually step over the bkpt
823 * instruction - as such simulate a step */
824 if (bkpt_inst_found == false) {
825 /* Automatic ISR masking mode off: Just step over the next instruction */
826 if ((cortex_m->isrmasking_mode != CORTEX_M_ISRMASK_AUTO))
827 cortex_m_write_debug_halt_mask(target, C_STEP, C_HALT);
828 else {
829 /* Process interrupts during stepping in a way they don't interfere
830 * debugging.
832 * Principle:
834 * Set a temporary break point at the current pc and let the core run
835 * with interrupts enabled. Pending interrupts get served and we run
836 * into the breakpoint again afterwards. Then we step over the next
837 * instruction with interrupts disabled.
839 * If the pending interrupts don't complete within time, we leave the
840 * core running. This may happen if the interrupts trigger faster
841 * than the core can process them or the handler doesn't return.
843 * If no more breakpoints are available we simply do a step with
844 * interrupts enabled.
848 /* 2012-09-29 ph
850 * If a break point is already set on the lower half word then a break point on
851 * the upper half word will not break again when the core is restarted. So we
852 * just step over the instruction with interrupts disabled.
854 * The documentation has no information about this, it was found by observation
855 * on STM32F1 and STM32F2. Proper explanation welcome. STM32F0 dosen't seem to
856 * suffer from this problem.
858 * To add some confusion: pc_value has bit 0 always set, while the breakpoint
859 * address has it always cleared. The former is done to indicate thumb mode
860 * to gdb.
863 if ((pc_value & 0x02) && breakpoint_find(target, pc_value & ~0x03)) {
864 LOG_DEBUG("Stepping over next instruction with interrupts disabled");
865 cortex_m_write_debug_halt_mask(target, C_HALT | C_MASKINTS, 0);
866 cortex_m_write_debug_halt_mask(target, C_STEP, C_HALT);
867 /* Re-enable interrupts */
868 cortex_m_write_debug_halt_mask(target, C_HALT, C_MASKINTS);
870 else {
872 /* Set a temporary break point */
873 if (breakpoint)
874 retval = cortex_m_set_breakpoint(target, breakpoint);
875 else
876 retval = breakpoint_add(target, pc_value, 2, BKPT_TYPE_BY_ADDR(pc_value));
877 bool tmp_bp_set = (retval == ERROR_OK);
879 /* No more breakpoints left, just do a step */
880 if (!tmp_bp_set)
881 cortex_m_write_debug_halt_mask(target, C_STEP, C_HALT);
882 else {
883 /* Start the core */
884 LOG_DEBUG("Starting core to serve pending interrupts");
885 int64_t t_start = timeval_ms();
886 cortex_m_write_debug_halt_mask(target, 0, C_HALT | C_STEP);
888 /* Wait for pending handlers to complete or timeout */
889 do {
890 retval = mem_ap_read_atomic_u32(armv7m->debug_ap,
891 DCB_DHCSR,
892 &cortex_m->dcb_dhcsr);
893 if (retval != ERROR_OK) {
894 target->state = TARGET_UNKNOWN;
895 return retval;
897 isr_timed_out = ((timeval_ms() - t_start) > 500);
898 } while (!((cortex_m->dcb_dhcsr & S_HALT) || isr_timed_out));
900 /* only remove breakpoint if we created it */
901 if (breakpoint)
902 cortex_m_unset_breakpoint(target, breakpoint);
903 else {
904 /* Remove the temporary breakpoint */
905 breakpoint_remove(target, pc_value);
908 if (isr_timed_out) {
909 LOG_DEBUG("Interrupt handlers didn't complete within time, "
910 "leaving target running");
911 } else {
912 /* Step over next instruction with interrupts disabled */
913 cortex_m_write_debug_halt_mask(target,
914 C_HALT | C_MASKINTS,
916 cortex_m_write_debug_halt_mask(target, C_STEP, C_HALT);
917 /* Re-enable interrupts */
918 cortex_m_write_debug_halt_mask(target, C_HALT, C_MASKINTS);
925 retval = mem_ap_read_atomic_u32(armv7m->debug_ap, DCB_DHCSR, &cortex_m->dcb_dhcsr);
926 if (retval != ERROR_OK)
927 return retval;
929 /* registers are now invalid */
930 register_cache_invalidate(armv7m->arm.core_cache);
932 if (breakpoint)
933 cortex_m_set_breakpoint(target, breakpoint);
935 if (isr_timed_out) {
936 /* Leave the core running. The user has to stop execution manually. */
937 target->debug_reason = DBG_REASON_NOTHALTED;
938 target->state = TARGET_RUNNING;
939 return ERROR_OK;
942 LOG_DEBUG("target stepped dcb_dhcsr = 0x%" PRIx32
943 " nvic_icsr = 0x%" PRIx32,
944 cortex_m->dcb_dhcsr, cortex_m->nvic_icsr);
946 retval = cortex_m_debug_entry(target);
947 if (retval != ERROR_OK)
948 return retval;
949 target_call_event_callbacks(target, TARGET_EVENT_HALTED);
951 LOG_DEBUG("target stepped dcb_dhcsr = 0x%" PRIx32
952 " nvic_icsr = 0x%" PRIx32,
953 cortex_m->dcb_dhcsr, cortex_m->nvic_icsr);
955 return ERROR_OK;
958 static int cortex_m_assert_reset(struct target *target)
960 struct cortex_m_common *cortex_m = target_to_cm(target);
961 struct armv7m_common *armv7m = &cortex_m->armv7m;
962 enum cortex_m_soft_reset_config reset_config = cortex_m->soft_reset_config;
964 LOG_DEBUG("target->state: %s",
965 target_state_name(target));
967 enum reset_types jtag_reset_config = jtag_get_reset_config();
969 if (target_has_event_action(target, TARGET_EVENT_RESET_ASSERT)) {
970 /* allow scripts to override the reset event */
972 target_handle_event(target, TARGET_EVENT_RESET_ASSERT);
973 register_cache_invalidate(cortex_m->armv7m.arm.core_cache);
974 target->state = TARGET_RESET;
976 return ERROR_OK;
979 /* some cores support connecting while srst is asserted
980 * use that mode is it has been configured */
982 bool srst_asserted = false;
984 if (!target_was_examined(target)) {
985 if (jtag_reset_config & RESET_HAS_SRST) {
986 adapter_assert_reset();
987 if (target->reset_halt)
988 LOG_ERROR("Target not examined, will not halt after reset!");
989 return ERROR_OK;
990 } else {
991 LOG_ERROR("Target not examined, reset NOT asserted!");
992 return ERROR_FAIL;
996 if ((jtag_reset_config & RESET_HAS_SRST) &&
997 (jtag_reset_config & RESET_SRST_NO_GATING)) {
998 adapter_assert_reset();
999 srst_asserted = true;
1002 /* Enable debug requests */
1003 int retval;
1004 retval = mem_ap_read_atomic_u32(armv7m->debug_ap, DCB_DHCSR, &cortex_m->dcb_dhcsr);
1005 /* Store important errors instead of failing and proceed to reset assert */
1007 if (retval != ERROR_OK || !(cortex_m->dcb_dhcsr & C_DEBUGEN))
1008 retval = mem_ap_write_u32(armv7m->debug_ap, DCB_DHCSR, DBGKEY | C_DEBUGEN);
1010 /* If the processor is sleeping in a WFI or WFE instruction, the
1011 * C_HALT bit must be asserted to regain control */
1012 if (retval == ERROR_OK && (cortex_m->dcb_dhcsr & S_SLEEP))
1013 retval = mem_ap_write_u32(armv7m->debug_ap, DCB_DHCSR, DBGKEY | C_HALT | C_DEBUGEN);
1015 mem_ap_write_u32(armv7m->debug_ap, DCB_DCRDR, 0);
1016 /* Ignore less important errors */
1018 if (!target->reset_halt) {
1019 /* Set/Clear C_MASKINTS in a separate operation */
1020 if (cortex_m->dcb_dhcsr & C_MASKINTS)
1021 mem_ap_write_atomic_u32(armv7m->debug_ap, DCB_DHCSR,
1022 DBGKEY | C_DEBUGEN | C_HALT);
1024 /* clear any debug flags before resuming */
1025 cortex_m_clear_halt(target);
1027 /* clear C_HALT in dhcsr reg */
1028 cortex_m_write_debug_halt_mask(target, 0, C_HALT);
1029 } else {
1030 /* Halt in debug on reset; endreset_event() restores DEMCR.
1032 * REVISIT catching BUSERR presumably helps to defend against
1033 * bad vector table entries. Should this include MMERR or
1034 * other flags too?
1036 int retval2;
1037 retval2 = mem_ap_write_atomic_u32(armv7m->debug_ap, DCB_DEMCR,
1038 TRCENA | VC_HARDERR | VC_BUSERR | VC_CORERESET);
1039 if (retval != ERROR_OK || retval2 != ERROR_OK)
1040 LOG_INFO("AP write error, reset will not halt");
1043 if (jtag_reset_config & RESET_HAS_SRST) {
1044 /* default to asserting srst */
1045 if (!srst_asserted)
1046 adapter_assert_reset();
1048 /* srst is asserted, ignore AP access errors */
1049 retval = ERROR_OK;
1050 } else {
1051 /* Use a standard Cortex-M3 software reset mechanism.
1052 * We default to using VECRESET as it is supported on all current cores.
1053 * This has the disadvantage of not resetting the peripherals, so a
1054 * reset-init event handler is needed to perform any peripheral resets.
1056 LOG_DEBUG("Using Cortex-M %s", (reset_config == CORTEX_M_RESET_SYSRESETREQ)
1057 ? "SYSRESETREQ" : "VECTRESET");
1059 if (reset_config == CORTEX_M_RESET_VECTRESET) {
1060 LOG_WARNING("Only resetting the Cortex-M core, use a reset-init event "
1061 "handler to reset any peripherals or configure hardware srst support.");
1064 int retval3;
1065 retval3 = mem_ap_write_atomic_u32(armv7m->debug_ap, NVIC_AIRCR,
1066 AIRCR_VECTKEY | ((reset_config == CORTEX_M_RESET_SYSRESETREQ)
1067 ? AIRCR_SYSRESETREQ : AIRCR_VECTRESET));
1068 if (retval3 != ERROR_OK)
1069 LOG_DEBUG("Ignoring AP write error right after reset");
1071 retval3 = dap_dp_init(armv7m->debug_ap->dap);
1072 if (retval3 != ERROR_OK)
1073 LOG_ERROR("DP initialisation failed");
1075 else {
1076 /* I do not know why this is necessary, but it
1077 * fixes strange effects (step/resume cause NMI
1078 * after reset) on LM3S6918 -- Michael Schwingen
1080 uint32_t tmp;
1081 mem_ap_read_atomic_u32(armv7m->debug_ap, NVIC_AIRCR, &tmp);
1085 target->state = TARGET_RESET;
1086 jtag_add_sleep(50000);
1088 register_cache_invalidate(cortex_m->armv7m.arm.core_cache);
1090 /* now return stored error code if any */
1091 if (retval != ERROR_OK)
1092 return retval;
1094 if (target->reset_halt) {
1095 retval = target_halt(target);
1096 if (retval != ERROR_OK)
1097 return retval;
1100 return ERROR_OK;
1103 static int cortex_m_deassert_reset(struct target *target)
1105 struct armv7m_common *armv7m = &target_to_cm(target)->armv7m;
1107 LOG_DEBUG("target->state: %s",
1108 target_state_name(target));
1110 /* deassert reset lines */
1111 adapter_deassert_reset();
1113 enum reset_types jtag_reset_config = jtag_get_reset_config();
1115 if ((jtag_reset_config & RESET_HAS_SRST) &&
1116 !(jtag_reset_config & RESET_SRST_NO_GATING) &&
1117 target_was_examined(target)) {
1118 int retval = dap_dp_init(armv7m->debug_ap->dap);
1119 if (retval != ERROR_OK) {
1120 LOG_ERROR("DP initialisation failed");
1121 return retval;
1125 return ERROR_OK;
1128 int cortex_m_set_breakpoint(struct target *target, struct breakpoint *breakpoint)
1130 int retval;
1131 int fp_num = 0;
1132 struct cortex_m_common *cortex_m = target_to_cm(target);
1133 struct cortex_m_fp_comparator *comparator_list = cortex_m->fp_comparator_list;
1135 if (breakpoint->set) {
1136 LOG_WARNING("breakpoint (BPID: %" PRIu32 ") already set", breakpoint->unique_id);
1137 return ERROR_OK;
1140 if (cortex_m->auto_bp_type)
1141 breakpoint->type = BKPT_TYPE_BY_ADDR(breakpoint->address);
1143 if (breakpoint->type == BKPT_HARD) {
1144 uint32_t fpcr_value;
1145 while (comparator_list[fp_num].used && (fp_num < cortex_m->fp_num_code))
1146 fp_num++;
1147 if (fp_num >= cortex_m->fp_num_code) {
1148 LOG_ERROR("Can not find free FPB Comparator!");
1149 return ERROR_FAIL;
1151 breakpoint->set = fp_num + 1;
1152 fpcr_value = breakpoint->address | 1;
1153 if (cortex_m->fp_rev == 0) {
1154 uint32_t hilo;
1155 hilo = (breakpoint->address & 0x2) ? FPCR_REPLACE_BKPT_HIGH : FPCR_REPLACE_BKPT_LOW;
1156 fpcr_value = (fpcr_value & 0x1FFFFFFC) | hilo | 1;
1157 } else if (cortex_m->fp_rev > 1) {
1158 LOG_ERROR("Unhandled Cortex-M Flash Patch Breakpoint architecture revision");
1159 return ERROR_FAIL;
1161 comparator_list[fp_num].used = 1;
1162 comparator_list[fp_num].fpcr_value = fpcr_value;
1163 target_write_u32(target, comparator_list[fp_num].fpcr_address,
1164 comparator_list[fp_num].fpcr_value);
1165 LOG_DEBUG("fpc_num %i fpcr_value 0x%" PRIx32 "",
1166 fp_num,
1167 comparator_list[fp_num].fpcr_value);
1168 if (!cortex_m->fpb_enabled) {
1169 LOG_DEBUG("FPB wasn't enabled, do it now");
1170 retval = cortex_m_enable_fpb(target);
1171 if (retval != ERROR_OK) {
1172 LOG_ERROR("Failed to enable the FPB");
1173 return retval;
1176 cortex_m->fpb_enabled = 1;
1178 } else if (breakpoint->type == BKPT_SOFT) {
1179 uint8_t code[4];
1181 /* NOTE: on ARMv6-M and ARMv7-M, BKPT(0xab) is used for
1182 * semihosting; don't use that. Otherwise the BKPT
1183 * parameter is arbitrary.
1185 buf_set_u32(code, 0, 32, ARMV5_T_BKPT(0x11));
1186 retval = target_read_memory(target,
1187 breakpoint->address & 0xFFFFFFFE,
1188 breakpoint->length, 1,
1189 breakpoint->orig_instr);
1190 if (retval != ERROR_OK)
1191 return retval;
1192 retval = target_write_memory(target,
1193 breakpoint->address & 0xFFFFFFFE,
1194 breakpoint->length, 1,
1195 code);
1196 if (retval != ERROR_OK)
1197 return retval;
1198 breakpoint->set = true;
1201 LOG_DEBUG("BPID: %" PRIu32 ", Type: %d, Address: " TARGET_ADDR_FMT " Length: %d (set=%d)",
1202 breakpoint->unique_id,
1203 (int)(breakpoint->type),
1204 breakpoint->address,
1205 breakpoint->length,
1206 breakpoint->set);
1208 return ERROR_OK;
1211 int cortex_m_unset_breakpoint(struct target *target, struct breakpoint *breakpoint)
1213 int retval;
1214 struct cortex_m_common *cortex_m = target_to_cm(target);
1215 struct cortex_m_fp_comparator *comparator_list = cortex_m->fp_comparator_list;
1217 if (!breakpoint->set) {
1218 LOG_WARNING("breakpoint not set");
1219 return ERROR_OK;
1222 LOG_DEBUG("BPID: %" PRIu32 ", Type: %d, Address: " TARGET_ADDR_FMT " Length: %d (set=%d)",
1223 breakpoint->unique_id,
1224 (int)(breakpoint->type),
1225 breakpoint->address,
1226 breakpoint->length,
1227 breakpoint->set);
1229 if (breakpoint->type == BKPT_HARD) {
1230 int fp_num = breakpoint->set - 1;
1231 if ((fp_num < 0) || (fp_num >= cortex_m->fp_num_code)) {
1232 LOG_DEBUG("Invalid FP Comparator number in breakpoint");
1233 return ERROR_OK;
1235 comparator_list[fp_num].used = 0;
1236 comparator_list[fp_num].fpcr_value = 0;
1237 target_write_u32(target, comparator_list[fp_num].fpcr_address,
1238 comparator_list[fp_num].fpcr_value);
1239 } else {
1240 /* restore original instruction (kept in target endianness) */
1241 if (breakpoint->length == 4) {
1242 retval = target_write_memory(target, breakpoint->address & 0xFFFFFFFE, 4, 1,
1243 breakpoint->orig_instr);
1244 if (retval != ERROR_OK)
1245 return retval;
1246 } else {
1247 retval = target_write_memory(target, breakpoint->address & 0xFFFFFFFE, 2, 1,
1248 breakpoint->orig_instr);
1249 if (retval != ERROR_OK)
1250 return retval;
1253 breakpoint->set = false;
1255 return ERROR_OK;
1258 int cortex_m_add_breakpoint(struct target *target, struct breakpoint *breakpoint)
1260 struct cortex_m_common *cortex_m = target_to_cm(target);
1262 if (cortex_m->auto_bp_type)
1263 breakpoint->type = BKPT_TYPE_BY_ADDR(breakpoint->address);
1265 if (breakpoint->type != BKPT_TYPE_BY_ADDR(breakpoint->address)) {
1266 if (breakpoint->type == BKPT_HARD) {
1267 LOG_INFO("flash patch comparator requested outside code memory region");
1268 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1271 if (breakpoint->type == BKPT_SOFT) {
1272 LOG_INFO("soft breakpoint requested in code (flash) memory region");
1273 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1277 if ((breakpoint->type == BKPT_HARD) && (cortex_m->fp_code_available < 1)) {
1278 LOG_INFO("no flash patch comparator unit available for hardware breakpoint");
1279 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1282 if (breakpoint->length == 3) {
1283 LOG_DEBUG("Using a two byte breakpoint for 32bit Thumb-2 request");
1284 breakpoint->length = 2;
1287 if ((breakpoint->length != 2)) {
1288 LOG_INFO("only breakpoints of two bytes length supported");
1289 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1292 if (breakpoint->type == BKPT_HARD)
1293 cortex_m->fp_code_available--;
1295 return cortex_m_set_breakpoint(target, breakpoint);
1298 int cortex_m_remove_breakpoint(struct target *target, struct breakpoint *breakpoint)
1300 struct cortex_m_common *cortex_m = target_to_cm(target);
1302 /* REVISIT why check? FBP can be updated with core running ... */
1303 if (target->state != TARGET_HALTED) {
1304 LOG_WARNING("target not halted");
1305 return ERROR_TARGET_NOT_HALTED;
1308 if (cortex_m->auto_bp_type)
1309 breakpoint->type = BKPT_TYPE_BY_ADDR(breakpoint->address);
1311 if (breakpoint->set)
1312 cortex_m_unset_breakpoint(target, breakpoint);
1314 if (breakpoint->type == BKPT_HARD)
1315 cortex_m->fp_code_available++;
1317 return ERROR_OK;
1320 int cortex_m_set_watchpoint(struct target *target, struct watchpoint *watchpoint)
1322 int dwt_num = 0;
1323 uint32_t mask, temp;
1324 struct cortex_m_common *cortex_m = target_to_cm(target);
1326 /* watchpoint params were validated earlier */
1327 mask = 0;
1328 temp = watchpoint->length;
1329 while (temp) {
1330 temp >>= 1;
1331 mask++;
1333 mask--;
1335 /* REVISIT Don't fully trust these "not used" records ... users
1336 * may set up breakpoints by hand, e.g. dual-address data value
1337 * watchpoint using comparator #1; comparator #0 matching cycle
1338 * count; send data trace info through ITM and TPIU; etc
1340 struct cortex_m_dwt_comparator *comparator;
1342 for (comparator = cortex_m->dwt_comparator_list;
1343 comparator->used && dwt_num < cortex_m->dwt_num_comp;
1344 comparator++, dwt_num++)
1345 continue;
1346 if (dwt_num >= cortex_m->dwt_num_comp) {
1347 LOG_ERROR("Can not find free DWT Comparator");
1348 return ERROR_FAIL;
1350 comparator->used = 1;
1351 watchpoint->set = dwt_num + 1;
1353 comparator->comp = watchpoint->address;
1354 target_write_u32(target, comparator->dwt_comparator_address + 0,
1355 comparator->comp);
1357 comparator->mask = mask;
1358 target_write_u32(target, comparator->dwt_comparator_address + 4,
1359 comparator->mask);
1361 switch (watchpoint->rw) {
1362 case WPT_READ:
1363 comparator->function = 5;
1364 break;
1365 case WPT_WRITE:
1366 comparator->function = 6;
1367 break;
1368 case WPT_ACCESS:
1369 comparator->function = 7;
1370 break;
1372 target_write_u32(target, comparator->dwt_comparator_address + 8,
1373 comparator->function);
1375 LOG_DEBUG("Watchpoint (ID %d) DWT%d 0x%08x 0x%x 0x%05x",
1376 watchpoint->unique_id, dwt_num,
1377 (unsigned) comparator->comp,
1378 (unsigned) comparator->mask,
1379 (unsigned) comparator->function);
1380 return ERROR_OK;
1383 int cortex_m_unset_watchpoint(struct target *target, struct watchpoint *watchpoint)
1385 struct cortex_m_common *cortex_m = target_to_cm(target);
1386 struct cortex_m_dwt_comparator *comparator;
1387 int dwt_num;
1389 if (!watchpoint->set) {
1390 LOG_WARNING("watchpoint (wpid: %d) not set",
1391 watchpoint->unique_id);
1392 return ERROR_OK;
1395 dwt_num = watchpoint->set - 1;
1397 LOG_DEBUG("Watchpoint (ID %d) DWT%d address: 0x%08x clear",
1398 watchpoint->unique_id, dwt_num,
1399 (unsigned) watchpoint->address);
1401 if ((dwt_num < 0) || (dwt_num >= cortex_m->dwt_num_comp)) {
1402 LOG_DEBUG("Invalid DWT Comparator number in watchpoint");
1403 return ERROR_OK;
1406 comparator = cortex_m->dwt_comparator_list + dwt_num;
1407 comparator->used = 0;
1408 comparator->function = 0;
1409 target_write_u32(target, comparator->dwt_comparator_address + 8,
1410 comparator->function);
1412 watchpoint->set = false;
1414 return ERROR_OK;
1417 int cortex_m_add_watchpoint(struct target *target, struct watchpoint *watchpoint)
1419 struct cortex_m_common *cortex_m = target_to_cm(target);
1421 if (cortex_m->dwt_comp_available < 1) {
1422 LOG_DEBUG("no comparators?");
1423 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1426 /* hardware doesn't support data value masking */
1427 if (watchpoint->mask != ~(uint32_t)0) {
1428 LOG_DEBUG("watchpoint value masks not supported");
1429 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1432 /* hardware allows address masks of up to 32K */
1433 unsigned mask;
1435 for (mask = 0; mask < 16; mask++) {
1436 if ((1u << mask) == watchpoint->length)
1437 break;
1439 if (mask == 16) {
1440 LOG_DEBUG("unsupported watchpoint length");
1441 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1443 if (watchpoint->address & ((1 << mask) - 1)) {
1444 LOG_DEBUG("watchpoint address is unaligned");
1445 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1448 /* Caller doesn't seem to be able to describe watching for data
1449 * values of zero; that flags "no value".
1451 * REVISIT This DWT may well be able to watch for specific data
1452 * values. Requires comparator #1 to set DATAVMATCH and match
1453 * the data, and another comparator (DATAVADDR0) matching addr.
1455 if (watchpoint->value) {
1456 LOG_DEBUG("data value watchpoint not YET supported");
1457 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1460 cortex_m->dwt_comp_available--;
1461 LOG_DEBUG("dwt_comp_available: %d", cortex_m->dwt_comp_available);
1463 return ERROR_OK;
1466 int cortex_m_remove_watchpoint(struct target *target, struct watchpoint *watchpoint)
1468 struct cortex_m_common *cortex_m = target_to_cm(target);
1470 /* REVISIT why check? DWT can be updated with core running ... */
1471 if (target->state != TARGET_HALTED) {
1472 LOG_WARNING("target not halted");
1473 return ERROR_TARGET_NOT_HALTED;
1476 if (watchpoint->set)
1477 cortex_m_unset_watchpoint(target, watchpoint);
1479 cortex_m->dwt_comp_available++;
1480 LOG_DEBUG("dwt_comp_available: %d", cortex_m->dwt_comp_available);
1482 return ERROR_OK;
1485 void cortex_m_enable_watchpoints(struct target *target)
1487 struct watchpoint *watchpoint = target->watchpoints;
1489 /* set any pending watchpoints */
1490 while (watchpoint) {
1491 if (!watchpoint->set)
1492 cortex_m_set_watchpoint(target, watchpoint);
1493 watchpoint = watchpoint->next;
1497 static int cortex_m_load_core_reg_u32(struct target *target,
1498 uint32_t num, uint32_t *value)
1500 int retval;
1502 /* NOTE: we "know" here that the register identifiers used
1503 * in the v7m header match the Cortex-M3 Debug Core Register
1504 * Selector values for R0..R15, xPSR, MSP, and PSP.
1506 switch (num) {
1507 case 0 ... 18:
1508 /* read a normal core register */
1509 retval = cortexm_dap_read_coreregister_u32(target, value, num);
1511 if (retval != ERROR_OK) {
1512 LOG_ERROR("JTAG failure %i", retval);
1513 return ERROR_JTAG_DEVICE_ERROR;
1515 LOG_DEBUG("load from core reg %i value 0x%" PRIx32 "", (int)num, *value);
1516 break;
1518 case ARMV7M_FPSCR:
1519 /* Floating-point Status and Registers */
1520 retval = target_write_u32(target, DCB_DCRSR, 0x21);
1521 if (retval != ERROR_OK)
1522 return retval;
1523 retval = target_read_u32(target, DCB_DCRDR, value);
1524 if (retval != ERROR_OK)
1525 return retval;
1526 LOG_DEBUG("load from FPSCR value 0x%" PRIx32, *value);
1527 break;
1529 case ARMV7M_S0 ... ARMV7M_S31:
1530 /* Floating-point Status and Registers */
1531 retval = target_write_u32(target, DCB_DCRSR, num - ARMV7M_S0 + 0x40);
1532 if (retval != ERROR_OK)
1533 return retval;
1534 retval = target_read_u32(target, DCB_DCRDR, value);
1535 if (retval != ERROR_OK)
1536 return retval;
1537 LOG_DEBUG("load from FPU reg S%d value 0x%" PRIx32,
1538 (int)(num - ARMV7M_S0), *value);
1539 break;
1541 case ARMV7M_PRIMASK:
1542 case ARMV7M_BASEPRI:
1543 case ARMV7M_FAULTMASK:
1544 case ARMV7M_CONTROL:
1545 /* Cortex-M3 packages these four registers as bitfields
1546 * in one Debug Core register. So say r0 and r2 docs;
1547 * it was removed from r1 docs, but still works.
1549 cortexm_dap_read_coreregister_u32(target, value, 20);
1551 switch (num) {
1552 case ARMV7M_PRIMASK:
1553 *value = buf_get_u32((uint8_t *)value, 0, 1);
1554 break;
1556 case ARMV7M_BASEPRI:
1557 *value = buf_get_u32((uint8_t *)value, 8, 8);
1558 break;
1560 case ARMV7M_FAULTMASK:
1561 *value = buf_get_u32((uint8_t *)value, 16, 1);
1562 break;
1564 case ARMV7M_CONTROL:
1565 *value = buf_get_u32((uint8_t *)value, 24, 2);
1566 break;
1569 LOG_DEBUG("load from special reg %i value 0x%" PRIx32 "", (int)num, *value);
1570 break;
1572 default:
1573 return ERROR_COMMAND_SYNTAX_ERROR;
1576 return ERROR_OK;
1579 static int cortex_m_store_core_reg_u32(struct target *target,
1580 uint32_t num, uint32_t value)
1582 int retval;
1583 uint32_t reg;
1584 struct armv7m_common *armv7m = target_to_armv7m(target);
1586 /* NOTE: we "know" here that the register identifiers used
1587 * in the v7m header match the Cortex-M3 Debug Core Register
1588 * Selector values for R0..R15, xPSR, MSP, and PSP.
1590 switch (num) {
1591 case 0 ... 18:
1592 retval = cortexm_dap_write_coreregister_u32(target, value, num);
1593 if (retval != ERROR_OK) {
1594 struct reg *r;
1596 LOG_ERROR("JTAG failure");
1597 r = armv7m->arm.core_cache->reg_list + num;
1598 r->dirty = r->valid;
1599 return ERROR_JTAG_DEVICE_ERROR;
1601 LOG_DEBUG("write core reg %i value 0x%" PRIx32 "", (int)num, value);
1602 break;
1604 case ARMV7M_FPSCR:
1605 /* Floating-point Status and Registers */
1606 retval = target_write_u32(target, DCB_DCRDR, value);
1607 if (retval != ERROR_OK)
1608 return retval;
1609 retval = target_write_u32(target, DCB_DCRSR, 0x21 | (1<<16));
1610 if (retval != ERROR_OK)
1611 return retval;
1612 LOG_DEBUG("write FPSCR value 0x%" PRIx32, value);
1613 break;
1615 case ARMV7M_S0 ... ARMV7M_S31:
1616 /* Floating-point Status and Registers */
1617 retval = target_write_u32(target, DCB_DCRDR, value);
1618 if (retval != ERROR_OK)
1619 return retval;
1620 retval = target_write_u32(target, DCB_DCRSR, (num - ARMV7M_S0 + 0x40) | (1<<16));
1621 if (retval != ERROR_OK)
1622 return retval;
1623 LOG_DEBUG("write FPU reg S%d value 0x%" PRIx32,
1624 (int)(num - ARMV7M_S0), value);
1625 break;
1627 case ARMV7M_PRIMASK:
1628 case ARMV7M_BASEPRI:
1629 case ARMV7M_FAULTMASK:
1630 case ARMV7M_CONTROL:
1631 /* Cortex-M3 packages these four registers as bitfields
1632 * in one Debug Core register. So say r0 and r2 docs;
1633 * it was removed from r1 docs, but still works.
1635 cortexm_dap_read_coreregister_u32(target, &reg, 20);
1637 switch (num) {
1638 case ARMV7M_PRIMASK:
1639 buf_set_u32((uint8_t *)&reg, 0, 1, value);
1640 break;
1642 case ARMV7M_BASEPRI:
1643 buf_set_u32((uint8_t *)&reg, 8, 8, value);
1644 break;
1646 case ARMV7M_FAULTMASK:
1647 buf_set_u32((uint8_t *)&reg, 16, 1, value);
1648 break;
1650 case ARMV7M_CONTROL:
1651 buf_set_u32((uint8_t *)&reg, 24, 2, value);
1652 break;
1655 cortexm_dap_write_coreregister_u32(target, reg, 20);
1657 LOG_DEBUG("write special reg %i value 0x%" PRIx32 " ", (int)num, value);
1658 break;
1660 default:
1661 return ERROR_COMMAND_SYNTAX_ERROR;
1664 return ERROR_OK;
1667 static int cortex_m_read_memory(struct target *target, target_addr_t address,
1668 uint32_t size, uint32_t count, uint8_t *buffer)
1670 struct armv7m_common *armv7m = target_to_armv7m(target);
1672 if (armv7m->arm.is_armv6m) {
1673 /* armv6m does not handle unaligned memory access */
1674 if (((size == 4) && (address & 0x3u)) || ((size == 2) && (address & 0x1u)))
1675 return ERROR_TARGET_UNALIGNED_ACCESS;
1678 return mem_ap_read_buf(armv7m->debug_ap, buffer, size, count, address);
1681 static int cortex_m_write_memory(struct target *target, target_addr_t address,
1682 uint32_t size, uint32_t count, const uint8_t *buffer)
1684 struct armv7m_common *armv7m = target_to_armv7m(target);
1686 if (armv7m->arm.is_armv6m) {
1687 /* armv6m does not handle unaligned memory access */
1688 if (((size == 4) && (address & 0x3u)) || ((size == 2) && (address & 0x1u)))
1689 return ERROR_TARGET_UNALIGNED_ACCESS;
1692 return mem_ap_write_buf(armv7m->debug_ap, buffer, size, count, address);
1695 static int cortex_m_init_target(struct command_context *cmd_ctx,
1696 struct target *target)
1698 armv7m_build_reg_cache(target);
1699 arm_semihosting_init(target);
1700 return ERROR_OK;
1703 void cortex_m_deinit_target(struct target *target)
1705 struct cortex_m_common *cortex_m = target_to_cm(target);
1707 free(cortex_m->fp_comparator_list);
1709 cortex_m_dwt_free(target);
1710 armv7m_free_reg_cache(target);
1712 free(target->private_config);
1713 free(cortex_m);
1716 /* REVISIT cache valid/dirty bits are unmaintained. We could set "valid"
1717 * on r/w if the core is not running, and clear on resume or reset ... or
1718 * at least, in a post_restore_context() method.
1721 struct dwt_reg_state {
1722 struct target *target;
1723 uint32_t addr;
1724 uint8_t value[4]; /* scratch/cache */
1727 static int cortex_m_dwt_get_reg(struct reg *reg)
1729 struct dwt_reg_state *state = reg->arch_info;
1731 uint32_t tmp;
1732 int retval = target_read_u32(state->target, state->addr, &tmp);
1733 if (retval != ERROR_OK)
1734 return retval;
1736 buf_set_u32(state->value, 0, 32, tmp);
1737 return ERROR_OK;
1740 static int cortex_m_dwt_set_reg(struct reg *reg, uint8_t *buf)
1742 struct dwt_reg_state *state = reg->arch_info;
1744 return target_write_u32(state->target, state->addr,
1745 buf_get_u32(buf, 0, reg->size));
1748 struct dwt_reg {
1749 uint32_t addr;
1750 char *name;
1751 unsigned size;
1754 static struct dwt_reg dwt_base_regs[] = {
1755 { DWT_CTRL, "dwt_ctrl", 32, },
1756 /* NOTE that Erratum 532314 (fixed r2p0) affects CYCCNT: it wrongly
1757 * increments while the core is asleep.
1759 { DWT_CYCCNT, "dwt_cyccnt", 32, },
1760 /* plus some 8 bit counters, useful for profiling with TPIU */
1763 static struct dwt_reg dwt_comp[] = {
1764 #define DWT_COMPARATOR(i) \
1765 { DWT_COMP0 + 0x10 * (i), "dwt_" #i "_comp", 32, }, \
1766 { DWT_MASK0 + 0x10 * (i), "dwt_" #i "_mask", 4, }, \
1767 { DWT_FUNCTION0 + 0x10 * (i), "dwt_" #i "_function", 32, }
1768 DWT_COMPARATOR(0),
1769 DWT_COMPARATOR(1),
1770 DWT_COMPARATOR(2),
1771 DWT_COMPARATOR(3),
1772 #undef DWT_COMPARATOR
1775 static const struct reg_arch_type dwt_reg_type = {
1776 .get = cortex_m_dwt_get_reg,
1777 .set = cortex_m_dwt_set_reg,
1780 static void cortex_m_dwt_addreg(struct target *t, struct reg *r, struct dwt_reg *d)
1782 struct dwt_reg_state *state;
1784 state = calloc(1, sizeof *state);
1785 if (!state)
1786 return;
1787 state->addr = d->addr;
1788 state->target = t;
1790 r->name = d->name;
1791 r->size = d->size;
1792 r->value = state->value;
1793 r->arch_info = state;
1794 r->type = &dwt_reg_type;
1797 void cortex_m_dwt_setup(struct cortex_m_common *cm, struct target *target)
1799 uint32_t dwtcr;
1800 struct reg_cache *cache;
1801 struct cortex_m_dwt_comparator *comparator;
1802 int reg, i;
1804 target_read_u32(target, DWT_CTRL, &dwtcr);
1805 if (!dwtcr) {
1806 LOG_DEBUG("no DWT");
1807 return;
1810 cm->dwt_num_comp = (dwtcr >> 28) & 0xF;
1811 cm->dwt_comp_available = cm->dwt_num_comp;
1812 cm->dwt_comparator_list = calloc(cm->dwt_num_comp,
1813 sizeof(struct cortex_m_dwt_comparator));
1814 if (!cm->dwt_comparator_list) {
1815 fail0:
1816 cm->dwt_num_comp = 0;
1817 LOG_ERROR("out of mem");
1818 return;
1821 cache = calloc(1, sizeof *cache);
1822 if (!cache) {
1823 fail1:
1824 free(cm->dwt_comparator_list);
1825 goto fail0;
1827 cache->name = "Cortex-M DWT registers";
1828 cache->num_regs = 2 + cm->dwt_num_comp * 3;
1829 cache->reg_list = calloc(cache->num_regs, sizeof *cache->reg_list);
1830 if (!cache->reg_list) {
1831 free(cache);
1832 goto fail1;
1835 for (reg = 0; reg < 2; reg++)
1836 cortex_m_dwt_addreg(target, cache->reg_list + reg,
1837 dwt_base_regs + reg);
1839 comparator = cm->dwt_comparator_list;
1840 for (i = 0; i < cm->dwt_num_comp; i++, comparator++) {
1841 int j;
1843 comparator->dwt_comparator_address = DWT_COMP0 + 0x10 * i;
1844 for (j = 0; j < 3; j++, reg++)
1845 cortex_m_dwt_addreg(target, cache->reg_list + reg,
1846 dwt_comp + 3 * i + j);
1848 /* make sure we clear any watchpoints enabled on the target */
1849 target_write_u32(target, comparator->dwt_comparator_address + 8, 0);
1852 *register_get_last_cache_p(&target->reg_cache) = cache;
1853 cm->dwt_cache = cache;
1855 LOG_DEBUG("DWT dwtcr 0x%" PRIx32 ", comp %d, watch%s",
1856 dwtcr, cm->dwt_num_comp,
1857 (dwtcr & (0xf << 24)) ? " only" : "/trigger");
1859 /* REVISIT: if num_comp > 1, check whether comparator #1 can
1860 * implement single-address data value watchpoints ... so we
1861 * won't need to check it later, when asked to set one up.
1865 static void cortex_m_dwt_free(struct target *target)
1867 struct cortex_m_common *cm = target_to_cm(target);
1868 struct reg_cache *cache = cm->dwt_cache;
1870 free(cm->dwt_comparator_list);
1871 cm->dwt_comparator_list = NULL;
1872 cm->dwt_num_comp = 0;
1874 if (cache) {
1875 register_unlink_cache(&target->reg_cache, cache);
1877 if (cache->reg_list) {
1878 for (size_t i = 0; i < cache->num_regs; i++)
1879 free(cache->reg_list[i].arch_info);
1880 free(cache->reg_list);
1882 free(cache);
1884 cm->dwt_cache = NULL;
1887 #define MVFR0 0xe000ef40
1888 #define MVFR1 0xe000ef44
1890 #define MVFR0_DEFAULT_M4 0x10110021
1891 #define MVFR1_DEFAULT_M4 0x11000011
1893 #define MVFR0_DEFAULT_M7_SP 0x10110021
1894 #define MVFR0_DEFAULT_M7_DP 0x10110221
1895 #define MVFR1_DEFAULT_M7_SP 0x11000011
1896 #define MVFR1_DEFAULT_M7_DP 0x12000011
1898 int cortex_m_examine(struct target *target)
1900 int retval;
1901 uint32_t cpuid, fpcr, mvfr0, mvfr1;
1902 int i;
1903 struct cortex_m_common *cortex_m = target_to_cm(target);
1904 struct adiv5_dap *swjdp = cortex_m->armv7m.arm.dap;
1905 struct armv7m_common *armv7m = target_to_armv7m(target);
1907 /* stlink shares the examine handler but does not support
1908 * all its calls */
1909 if (!armv7m->stlink) {
1910 retval = dap_dp_init(swjdp);
1911 if (retval != ERROR_OK) {
1912 LOG_ERROR("Could not initialize the debug port");
1913 return retval;
1916 if (cortex_m->apsel < 0) {
1917 /* Search for the MEM-AP */
1918 retval = dap_find_ap(swjdp, AP_TYPE_AHB_AP, &armv7m->debug_ap);
1919 if (retval != ERROR_OK) {
1920 LOG_ERROR("Could not find MEM-AP to control the core");
1921 return retval;
1923 } else {
1924 armv7m->debug_ap = dap_ap(swjdp, cortex_m->apsel);
1927 /* Leave (only) generic DAP stuff for debugport_init(); */
1928 armv7m->debug_ap->memaccess_tck = 8;
1930 retval = mem_ap_init(armv7m->debug_ap);
1931 if (retval != ERROR_OK)
1932 return retval;
1935 if (!target_was_examined(target)) {
1936 target_set_examined(target);
1938 /* Read from Device Identification Registers */
1939 retval = target_read_u32(target, CPUID, &cpuid);
1940 if (retval != ERROR_OK)
1941 return retval;
1943 /* Get CPU Type */
1944 i = (cpuid >> 4) & 0xf;
1946 LOG_DEBUG("Cortex-M%d r%" PRId8 "p%" PRId8 " processor detected",
1947 i, (uint8_t)((cpuid >> 20) & 0xf), (uint8_t)((cpuid >> 0) & 0xf));
1948 if (i == 7) {
1949 uint8_t rev, patch;
1950 rev = (cpuid >> 20) & 0xf;
1951 patch = (cpuid >> 0) & 0xf;
1952 if ((rev == 0) && (patch < 2))
1953 LOG_WARNING("Silicon bug: single stepping will enter pending exception handler!");
1955 LOG_DEBUG("cpuid: 0x%8.8" PRIx32 "", cpuid);
1957 if (i == 4) {
1958 target_read_u32(target, MVFR0, &mvfr0);
1959 target_read_u32(target, MVFR1, &mvfr1);
1961 /* test for floating point feature on Cortex-M4 */
1962 if ((mvfr0 == MVFR0_DEFAULT_M4) && (mvfr1 == MVFR1_DEFAULT_M4)) {
1963 LOG_DEBUG("Cortex-M%d floating point feature FPv4_SP found", i);
1964 armv7m->fp_feature = FPv4_SP;
1966 } else if (i == 7) {
1967 target_read_u32(target, MVFR0, &mvfr0);
1968 target_read_u32(target, MVFR1, &mvfr1);
1970 /* test for floating point features on Cortex-M7 */
1971 if ((mvfr0 == MVFR0_DEFAULT_M7_SP) && (mvfr1 == MVFR1_DEFAULT_M7_SP)) {
1972 LOG_DEBUG("Cortex-M%d floating point feature FPv5_SP found", i);
1973 armv7m->fp_feature = FPv5_SP;
1974 } else if ((mvfr0 == MVFR0_DEFAULT_M7_DP) && (mvfr1 == MVFR1_DEFAULT_M7_DP)) {
1975 LOG_DEBUG("Cortex-M%d floating point feature FPv5_DP found", i);
1976 armv7m->fp_feature = FPv5_DP;
1978 } else if (i == 0) {
1979 /* Cortex-M0 does not support unaligned memory access */
1980 armv7m->arm.is_armv6m = true;
1983 if (armv7m->fp_feature == FP_NONE &&
1984 armv7m->arm.core_cache->num_regs > ARMV7M_NUM_CORE_REGS_NOFP) {
1985 /* free unavailable FPU registers */
1986 size_t idx;
1988 for (idx = ARMV7M_NUM_CORE_REGS_NOFP;
1989 idx < armv7m->arm.core_cache->num_regs;
1990 idx++) {
1991 free(armv7m->arm.core_cache->reg_list[idx].value);
1992 free(armv7m->arm.core_cache->reg_list[idx].feature);
1993 free(armv7m->arm.core_cache->reg_list[idx].reg_data_type);
1995 armv7m->arm.core_cache->num_regs = ARMV7M_NUM_CORE_REGS_NOFP;
1998 if (!armv7m->stlink) {
1999 if (i == 3 || i == 4)
2000 /* Cortex-M3/M4 have 4096 bytes autoincrement range,
2001 * s. ARM IHI 0031C: MEM-AP 7.2.2 */
2002 armv7m->debug_ap->tar_autoincr_block = (1 << 12);
2003 else if (i == 7)
2004 /* Cortex-M7 has only 1024 bytes autoincrement range */
2005 armv7m->debug_ap->tar_autoincr_block = (1 << 10);
2008 /* Configure trace modules */
2009 retval = target_write_u32(target, DCB_DEMCR, TRCENA | armv7m->demcr);
2010 if (retval != ERROR_OK)
2011 return retval;
2013 if (armv7m->trace_config.config_type != DISABLED) {
2014 armv7m_trace_tpiu_config(target);
2015 armv7m_trace_itm_config(target);
2018 /* NOTE: FPB and DWT are both optional. */
2020 /* Setup FPB */
2021 target_read_u32(target, FP_CTRL, &fpcr);
2022 cortex_m->auto_bp_type = 1;
2023 /* bits [14:12] and [7:4] */
2024 cortex_m->fp_num_code = ((fpcr >> 8) & 0x70) | ((fpcr >> 4) & 0xF);
2025 cortex_m->fp_num_lit = (fpcr >> 8) & 0xF;
2026 cortex_m->fp_code_available = cortex_m->fp_num_code;
2027 /* Detect flash patch revision, see RM DDI 0403E.b page C1-817.
2028 Revision is zero base, fp_rev == 1 means Rev.2 ! */
2029 cortex_m->fp_rev = (fpcr >> 28) & 0xf;
2030 free(cortex_m->fp_comparator_list);
2031 cortex_m->fp_comparator_list = calloc(
2032 cortex_m->fp_num_code + cortex_m->fp_num_lit,
2033 sizeof(struct cortex_m_fp_comparator));
2034 cortex_m->fpb_enabled = fpcr & 1;
2035 for (i = 0; i < cortex_m->fp_num_code + cortex_m->fp_num_lit; i++) {
2036 cortex_m->fp_comparator_list[i].type =
2037 (i < cortex_m->fp_num_code) ? FPCR_CODE : FPCR_LITERAL;
2038 cortex_m->fp_comparator_list[i].fpcr_address = FP_COMP0 + 4 * i;
2040 /* make sure we clear any breakpoints enabled on the target */
2041 target_write_u32(target, cortex_m->fp_comparator_list[i].fpcr_address, 0);
2043 LOG_DEBUG("FPB fpcr 0x%" PRIx32 ", numcode %i, numlit %i",
2044 fpcr,
2045 cortex_m->fp_num_code,
2046 cortex_m->fp_num_lit);
2048 /* Setup DWT */
2049 cortex_m_dwt_free(target);
2050 cortex_m_dwt_setup(cortex_m, target);
2052 /* These hardware breakpoints only work for code in flash! */
2053 LOG_INFO("%s: hardware has %d breakpoints, %d watchpoints",
2054 target_name(target),
2055 cortex_m->fp_num_code,
2056 cortex_m->dwt_num_comp);
2059 return ERROR_OK;
2062 static int cortex_m_dcc_read(struct target *target, uint8_t *value, uint8_t *ctrl)
2064 struct armv7m_common *armv7m = target_to_armv7m(target);
2065 uint16_t dcrdr;
2066 uint8_t buf[2];
2067 int retval;
2069 retval = mem_ap_read_buf_noincr(armv7m->debug_ap, buf, 2, 1, DCB_DCRDR);
2070 if (retval != ERROR_OK)
2071 return retval;
2073 dcrdr = target_buffer_get_u16(target, buf);
2074 *ctrl = (uint8_t)dcrdr;
2075 *value = (uint8_t)(dcrdr >> 8);
2077 LOG_DEBUG("data 0x%x ctrl 0x%x", *value, *ctrl);
2079 /* write ack back to software dcc register
2080 * signify we have read data */
2081 if (dcrdr & (1 << 0)) {
2082 target_buffer_set_u16(target, buf, 0);
2083 retval = mem_ap_write_buf_noincr(armv7m->debug_ap, buf, 2, 1, DCB_DCRDR);
2084 if (retval != ERROR_OK)
2085 return retval;
2088 return ERROR_OK;
2091 static int cortex_m_target_request_data(struct target *target,
2092 uint32_t size, uint8_t *buffer)
2094 uint8_t data;
2095 uint8_t ctrl;
2096 uint32_t i;
2098 for (i = 0; i < (size * 4); i++) {
2099 int retval = cortex_m_dcc_read(target, &data, &ctrl);
2100 if (retval != ERROR_OK)
2101 return retval;
2102 buffer[i] = data;
2105 return ERROR_OK;
2108 static int cortex_m_handle_target_request(void *priv)
2110 struct target *target = priv;
2111 if (!target_was_examined(target))
2112 return ERROR_OK;
2114 if (!target->dbg_msg_enabled)
2115 return ERROR_OK;
2117 if (target->state == TARGET_RUNNING) {
2118 uint8_t data;
2119 uint8_t ctrl;
2120 int retval;
2122 retval = cortex_m_dcc_read(target, &data, &ctrl);
2123 if (retval != ERROR_OK)
2124 return retval;
2126 /* check if we have data */
2127 if (ctrl & (1 << 0)) {
2128 uint32_t request;
2130 /* we assume target is quick enough */
2131 request = data;
2132 for (int i = 1; i <= 3; i++) {
2133 retval = cortex_m_dcc_read(target, &data, &ctrl);
2134 if (retval != ERROR_OK)
2135 return retval;
2136 request |= ((uint32_t)data << (i * 8));
2138 target_request(target, request);
2142 return ERROR_OK;
2145 static int cortex_m_init_arch_info(struct target *target,
2146 struct cortex_m_common *cortex_m, struct jtag_tap *tap)
2148 struct armv7m_common *armv7m = &cortex_m->armv7m;
2150 armv7m_init_arch_info(target, armv7m);
2152 /* tap has no dap initialized */
2153 if (!tap->dap) {
2154 tap->dap = dap_init();
2156 /* Leave (only) generic DAP stuff for debugport_init() */
2157 tap->dap->tap = tap;
2160 /* default reset mode is to use srst if fitted
2161 * if not it will use CORTEX_M3_RESET_VECTRESET */
2162 cortex_m->soft_reset_config = CORTEX_M_RESET_VECTRESET;
2164 armv7m->arm.dap = tap->dap;
2166 /* register arch-specific functions */
2167 armv7m->examine_debug_reason = cortex_m_examine_debug_reason;
2169 armv7m->post_debug_entry = NULL;
2171 armv7m->pre_restore_context = NULL;
2173 armv7m->load_core_reg_u32 = cortex_m_load_core_reg_u32;
2174 armv7m->store_core_reg_u32 = cortex_m_store_core_reg_u32;
2176 target_register_timer_callback(cortex_m_handle_target_request, 1, 1, target);
2178 return ERROR_OK;
2181 static int cortex_m_target_create(struct target *target, Jim_Interp *interp)
2183 struct cortex_m_common *cortex_m = calloc(1, sizeof(struct cortex_m_common));
2185 cortex_m->common_magic = CORTEX_M_COMMON_MAGIC;
2186 cortex_m_init_arch_info(target, cortex_m, target->tap);
2188 if (target->private_config != NULL) {
2189 struct adiv5_private_config *pc =
2190 (struct adiv5_private_config *)target->private_config;
2191 cortex_m->apsel = pc->ap_num;
2192 } else
2193 cortex_m->apsel = -1;
2195 return ERROR_OK;
2198 /*--------------------------------------------------------------------------*/
2200 static int cortex_m_verify_pointer(struct command_context *cmd_ctx,
2201 struct cortex_m_common *cm)
2203 if (cm->common_magic != CORTEX_M_COMMON_MAGIC) {
2204 command_print(cmd_ctx, "target is not a Cortex-M");
2205 return ERROR_TARGET_INVALID;
2207 return ERROR_OK;
2211 * Only stuff below this line should need to verify that its target
2212 * is a Cortex-M3. Everything else should have indirected through the
2213 * cortexm3_target structure, which is only used with CM3 targets.
2216 static const struct {
2217 char name[10];
2218 unsigned mask;
2219 } vec_ids[] = {
2220 { "hard_err", VC_HARDERR, },
2221 { "int_err", VC_INTERR, },
2222 { "bus_err", VC_BUSERR, },
2223 { "state_err", VC_STATERR, },
2224 { "chk_err", VC_CHKERR, },
2225 { "nocp_err", VC_NOCPERR, },
2226 { "mm_err", VC_MMERR, },
2227 { "reset", VC_CORERESET, },
2230 COMMAND_HANDLER(handle_cortex_m_vector_catch_command)
2232 struct target *target = get_current_target(CMD_CTX);
2233 struct cortex_m_common *cortex_m = target_to_cm(target);
2234 struct armv7m_common *armv7m = &cortex_m->armv7m;
2235 uint32_t demcr = 0;
2236 int retval;
2238 retval = cortex_m_verify_pointer(CMD_CTX, cortex_m);
2239 if (retval != ERROR_OK)
2240 return retval;
2242 retval = mem_ap_read_atomic_u32(armv7m->debug_ap, DCB_DEMCR, &demcr);
2243 if (retval != ERROR_OK)
2244 return retval;
2246 if (CMD_ARGC > 0) {
2247 unsigned catch = 0;
2249 if (CMD_ARGC == 1) {
2250 if (strcmp(CMD_ARGV[0], "all") == 0) {
2251 catch = VC_HARDERR | VC_INTERR | VC_BUSERR
2252 | VC_STATERR | VC_CHKERR | VC_NOCPERR
2253 | VC_MMERR | VC_CORERESET;
2254 goto write;
2255 } else if (strcmp(CMD_ARGV[0], "none") == 0)
2256 goto write;
2258 while (CMD_ARGC-- > 0) {
2259 unsigned i;
2260 for (i = 0; i < ARRAY_SIZE(vec_ids); i++) {
2261 if (strcmp(CMD_ARGV[CMD_ARGC], vec_ids[i].name) != 0)
2262 continue;
2263 catch |= vec_ids[i].mask;
2264 break;
2266 if (i == ARRAY_SIZE(vec_ids)) {
2267 LOG_ERROR("No CM3 vector '%s'", CMD_ARGV[CMD_ARGC]);
2268 return ERROR_COMMAND_SYNTAX_ERROR;
2271 write:
2272 /* For now, armv7m->demcr only stores vector catch flags. */
2273 armv7m->demcr = catch;
2275 demcr &= ~0xffff;
2276 demcr |= catch;
2278 /* write, but don't assume it stuck (why not??) */
2279 retval = mem_ap_write_u32(armv7m->debug_ap, DCB_DEMCR, demcr);
2280 if (retval != ERROR_OK)
2281 return retval;
2282 retval = mem_ap_read_atomic_u32(armv7m->debug_ap, DCB_DEMCR, &demcr);
2283 if (retval != ERROR_OK)
2284 return retval;
2286 /* FIXME be sure to clear DEMCR on clean server shutdown.
2287 * Otherwise the vector catch hardware could fire when there's
2288 * no debugger hooked up, causing much confusion...
2292 for (unsigned i = 0; i < ARRAY_SIZE(vec_ids); i++) {
2293 command_print(CMD_CTX, "%9s: %s", vec_ids[i].name,
2294 (demcr & vec_ids[i].mask) ? "catch" : "ignore");
2297 return ERROR_OK;
2300 COMMAND_HANDLER(handle_cortex_m_mask_interrupts_command)
2302 struct target *target = get_current_target(CMD_CTX);
2303 struct cortex_m_common *cortex_m = target_to_cm(target);
2304 int retval;
2306 static const Jim_Nvp nvp_maskisr_modes[] = {
2307 { .name = "auto", .value = CORTEX_M_ISRMASK_AUTO },
2308 { .name = "off", .value = CORTEX_M_ISRMASK_OFF },
2309 { .name = "on", .value = CORTEX_M_ISRMASK_ON },
2310 { .name = NULL, .value = -1 },
2312 const Jim_Nvp *n;
2315 retval = cortex_m_verify_pointer(CMD_CTX, cortex_m);
2316 if (retval != ERROR_OK)
2317 return retval;
2319 if (target->state != TARGET_HALTED) {
2320 command_print(CMD_CTX, "target must be stopped for \"%s\" command", CMD_NAME);
2321 return ERROR_OK;
2324 if (CMD_ARGC > 0) {
2325 n = Jim_Nvp_name2value_simple(nvp_maskisr_modes, CMD_ARGV[0]);
2326 if (n->name == NULL)
2327 return ERROR_COMMAND_SYNTAX_ERROR;
2328 cortex_m->isrmasking_mode = n->value;
2331 if (cortex_m->isrmasking_mode == CORTEX_M_ISRMASK_ON)
2332 cortex_m_write_debug_halt_mask(target, C_HALT | C_MASKINTS, 0);
2333 else
2334 cortex_m_write_debug_halt_mask(target, C_HALT, C_MASKINTS);
2337 n = Jim_Nvp_value2name_simple(nvp_maskisr_modes, cortex_m->isrmasking_mode);
2338 command_print(CMD_CTX, "cortex_m interrupt mask %s", n->name);
2340 return ERROR_OK;
2343 COMMAND_HANDLER(handle_cortex_m_reset_config_command)
2345 struct target *target = get_current_target(CMD_CTX);
2346 struct cortex_m_common *cortex_m = target_to_cm(target);
2347 int retval;
2348 char *reset_config;
2350 retval = cortex_m_verify_pointer(CMD_CTX, cortex_m);
2351 if (retval != ERROR_OK)
2352 return retval;
2354 if (CMD_ARGC > 0) {
2355 if (strcmp(*CMD_ARGV, "sysresetreq") == 0)
2356 cortex_m->soft_reset_config = CORTEX_M_RESET_SYSRESETREQ;
2357 else if (strcmp(*CMD_ARGV, "vectreset") == 0)
2358 cortex_m->soft_reset_config = CORTEX_M_RESET_VECTRESET;
2361 switch (cortex_m->soft_reset_config) {
2362 case CORTEX_M_RESET_SYSRESETREQ:
2363 reset_config = "sysresetreq";
2364 break;
2366 case CORTEX_M_RESET_VECTRESET:
2367 reset_config = "vectreset";
2368 break;
2370 default:
2371 reset_config = "unknown";
2372 break;
2375 command_print(CMD_CTX, "cortex_m reset_config %s", reset_config);
2377 return ERROR_OK;
2380 static const struct command_registration cortex_m_exec_command_handlers[] = {
2382 .name = "maskisr",
2383 .handler = handle_cortex_m_mask_interrupts_command,
2384 .mode = COMMAND_EXEC,
2385 .help = "mask cortex_m interrupts",
2386 .usage = "['auto'|'on'|'off']",
2389 .name = "vector_catch",
2390 .handler = handle_cortex_m_vector_catch_command,
2391 .mode = COMMAND_EXEC,
2392 .help = "configure hardware vectors to trigger debug entry",
2393 .usage = "['all'|'none'|('bus_err'|'chk_err'|...)*]",
2396 .name = "reset_config",
2397 .handler = handle_cortex_m_reset_config_command,
2398 .mode = COMMAND_ANY,
2399 .help = "configure software reset handling",
2400 .usage = "['srst'|'sysresetreq'|'vectreset']",
2402 COMMAND_REGISTRATION_DONE
2404 static const struct command_registration cortex_m_command_handlers[] = {
2406 .chain = armv7m_command_handlers,
2409 .chain = armv7m_trace_command_handlers,
2412 .name = "cortex_m",
2413 .mode = COMMAND_EXEC,
2414 .help = "Cortex-M command group",
2415 .usage = "",
2416 .chain = cortex_m_exec_command_handlers,
2418 COMMAND_REGISTRATION_DONE
2421 struct target_type cortexm_target = {
2422 .name = "cortex_m",
2423 .deprecated_name = "cortex_m3",
2425 .poll = cortex_m_poll,
2426 .arch_state = armv7m_arch_state,
2428 .target_request_data = cortex_m_target_request_data,
2430 .halt = cortex_m_halt,
2431 .resume = cortex_m_resume,
2432 .step = cortex_m_step,
2434 .assert_reset = cortex_m_assert_reset,
2435 .deassert_reset = cortex_m_deassert_reset,
2436 .soft_reset_halt = cortex_m_soft_reset_halt,
2438 .get_gdb_reg_list = armv7m_get_gdb_reg_list,
2440 .read_memory = cortex_m_read_memory,
2441 .write_memory = cortex_m_write_memory,
2442 .checksum_memory = armv7m_checksum_memory,
2443 .blank_check_memory = armv7m_blank_check_memory,
2445 .run_algorithm = armv7m_run_algorithm,
2446 .start_algorithm = armv7m_start_algorithm,
2447 .wait_algorithm = armv7m_wait_algorithm,
2449 .add_breakpoint = cortex_m_add_breakpoint,
2450 .remove_breakpoint = cortex_m_remove_breakpoint,
2451 .add_watchpoint = cortex_m_add_watchpoint,
2452 .remove_watchpoint = cortex_m_remove_watchpoint,
2454 .commands = cortex_m_command_handlers,
2455 .target_create = cortex_m_target_create,
2456 .target_jim_configure = adiv5_jim_configure,
2457 .init_target = cortex_m_init_target,
2458 .examine = cortex_m_examine,
2459 .deinit_target = cortex_m_deinit_target,