OpenOCD
arm11.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 
3 /***************************************************************************
4  * Copyright (C) 2008 digenius technology GmbH. *
5  * Michael Bruck *
6  * *
7  * Copyright (C) 2008,2009 Oyvind Harboe oyvind.harboe@zylin.com *
8  * *
9  * Copyright (C) 2008 Georg Acher <acher@in.tum.de> *
10  * *
11  * Copyright (C) 2009 David Brownell *
12  ***************************************************************************/
13 
14 #ifdef HAVE_CONFIG_H
15 #include "config.h"
16 #endif
17 
18 #include "etm.h"
19 #include "breakpoints.h"
20 #include "arm11_dbgtap.h"
21 #include "arm_simulator.h"
22 #include <helper/time_support.h>
23 #include "target_type.h"
24 #include "algorithm.h"
25 #include "register.h"
26 #include "arm_opcodes.h"
27 
28 #if 0
29 #define _DEBUG_INSTRUCTION_EXECUTION_
30 #endif
31 
32 
33 static int arm11_step(struct target *target, int current,
34  target_addr_t address, int handle_breakpoints);
35 
36 
41 static int arm11_check_init(struct arm11_common *arm11)
42 {
44 
45  if (!(arm11->dscr & DSCR_HALT_DBG_MODE)) {
46  LOG_DEBUG("DSCR %08x", (unsigned) arm11->dscr);
47  LOG_DEBUG("Bringing target into debug mode");
48 
49  arm11->dscr |= DSCR_HALT_DBG_MODE;
50  CHECK_RETVAL(arm11_write_dscr(arm11, arm11->dscr));
51 
52  /* add further reset initialization here */
53 
54  arm11->simulate_reset_on_next_halt = true;
55 
56  if (arm11->dscr & DSCR_CORE_HALTED) {
63  arm11->arm.target->state = TARGET_HALTED;
64  arm_dpm_report_dscr(arm11->arm.dpm, arm11->dscr);
65  } else {
66  arm11->arm.target->state = TARGET_RUNNING;
68  }
69 
71  }
72 
73  return ERROR_OK;
74 }
75 
81 static int arm11_debug_entry(struct arm11_common *arm11)
82 {
83  int retval;
84 
85  arm11->arm.target->state = TARGET_HALTED;
86  arm_dpm_report_dscr(arm11->arm.dpm, arm11->dscr);
87 
88  /* REVISIT entire cache should already be invalid !!! */
90 
91  /* See e.g. ARM1136 TRM, "14.8.4 Entering Debug state" */
92 
93  /* maybe save wDTR (pending DCC write to debug SW, e.g. libdcc) */
94  arm11->is_wdtr_saved = !!(arm11->dscr & DSCR_DTR_TX_FULL);
95  if (arm11->is_wdtr_saved) {
97 
99 
100  struct scan_field chain5_fields[3];
101 
102  arm11_setup_field(arm11, 32, NULL,
103  &arm11->saved_wdtr, chain5_fields + 0);
104  arm11_setup_field(arm11, 1, NULL, NULL, chain5_fields + 1);
105  arm11_setup_field(arm11, 1, NULL, NULL, chain5_fields + 2);
106 
108  chain5_fields), chain5_fields, TAP_DRPAUSE);
109 
110  }
111 
112  /* DSCR: set the Execute ARM instruction enable bit.
113  *
114  * ARM1176 spec says this is needed only for wDTR/rDTR's "ITR mode",
115  * but not to issue ITRs(?). The ARMv7 arch spec says it's required
116  * for executing instructions via ITR.
117  */
118  CHECK_RETVAL(arm11_write_dscr(arm11, DSCR_ITR_EN | arm11->dscr));
119 
120 
121  /* From the spec:
122  Before executing any instruction in debug state you have to drain the write buffer.
123  This ensures that no imprecise Data Aborts can return at a later point:*/
124 
127 #if 0
128  while (1) {
129  /* MRC p14,0,R0,c5,c10,0 */
130  /* arm11_run_instr_no_data1(arm11, / *0xee150e1a* /0xe320f000); */
131 
132  /* mcr 15, 0, r0, cr7, cr10, {4} */
133  arm11_run_instr_no_data1(arm11, 0xee070f9a);
134 
135  uint32_t dscr = arm11_read_dscr(arm11);
136 
137  LOG_DEBUG("DRAIN, DSCR %08x", dscr);
138 
139  if (dscr & ARM11_DSCR_STICKY_IMPRECISE_DATA_ABORT) {
140  arm11_run_instr_no_data1(arm11, 0xe320f000);
141 
142  dscr = arm11_read_dscr(arm11);
143 
144  LOG_DEBUG("DRAIN, DSCR %08x (DONE)", dscr);
145 
146  break;
147  }
148  }
149 #endif
150 
151  /* Save registers.
152  *
153  * NOTE: ARM1136 TRM suggests saving just R0 here now, then
154  * CPSR and PC after the rDTR stuff. We do it all at once.
155  */
156  retval = arm_dpm_read_current_registers(&arm11->dpm);
157  if (retval != ERROR_OK)
158  LOG_ERROR("DPM REG READ -- fail");
159 
160  retval = arm11_run_instr_data_prepare(arm11);
161  if (retval != ERROR_OK)
162  return retval;
163 
164  /* maybe save rDTR (pending DCC read from debug SW, e.g. libdcc) */
165  arm11->is_rdtr_saved = !!(arm11->dscr & DSCR_DTR_RX_FULL);
166  if (arm11->is_rdtr_saved) {
167  /* MRC p14,0,R0,c0,c5,0 (move rDTR -> r0 (-> wDTR -> local var)) */
169  0xEE100E15, &arm11->saved_rdtr);
170  if (retval != ERROR_OK)
171  return retval;
172  }
173 
174  /* REVISIT Now that we've saved core state, there's may also
175  * be MMU and cache state to care about ...
176  */
177 
178  if (arm11->simulate_reset_on_next_halt) {
179  arm11->simulate_reset_on_next_halt = false;
180 
181  LOG_DEBUG("Reset c1 Control Register");
182 
183  /* Write 0 (reset value) to Control register 0 to disable MMU/Cache etc. */
184 
185  /* MCR p15,0,R0,c1,c0,0 */
186  retval = arm11_run_instr_data_to_core_via_r0(arm11, 0xee010f10, 0);
187  if (retval != ERROR_OK)
188  return retval;
189 
190  }
191 
192  if (arm11->arm.target->debug_reason == DBG_REASON_WATCHPOINT) {
193  uint32_t wfar;
194 
195  /* MRC p15, 0, <Rd>, c6, c0, 1 ; Read WFAR */
197  ARMV4_5_MRC(15, 0, 0, 6, 0, 1),
198  &wfar);
199  if (retval != ERROR_OK)
200  return retval;
201  arm_dpm_report_wfar(arm11->arm.dpm, wfar);
202  }
203 
204 
205  retval = arm11_run_instr_data_finish(arm11);
206  if (retval != ERROR_OK)
207  return retval;
208 
209  return ERROR_OK;
210 }
211 
216 static int arm11_leave_debug_state(struct arm11_common *arm11, bool bpwp)
217 {
218  int retval;
219 
220  /* See e.g. ARM1136 TRM, "14.8.5 Leaving Debug state" */
221 
222  /* NOTE: the ARM1136 TRM suggests restoring all registers
223  * except R0/PC/CPSR right now. Instead, we do them all
224  * at once, just a bit later on.
225  */
226 
227  /* REVISIT once we start caring about MMU and cache state,
228  * address it here ...
229  */
230 
231  /* spec says clear wDTR and rDTR; we assume they are clear as
232  otherwise our programming would be sloppy */
233  {
235 
236  if (arm11->dscr & (DSCR_DTR_RX_FULL | DSCR_DTR_TX_FULL)) {
237  /*
238  The wDTR/rDTR two registers that are used to send/receive data to/from
239  the core in tandem with corresponding instruction codes that are
240  written into the core. The RDTR FULL/WDTR FULL flag indicates that the
241  registers hold data that was written by one side (CPU or JTAG) and not
242  read out by the other side.
243  */
244  LOG_ERROR("wDTR/rDTR inconsistent (DSCR %08x)",
245  (unsigned) arm11->dscr);
246  return ERROR_FAIL;
247  }
248  }
249 
250  /* maybe restore original wDTR */
251  if (arm11->is_wdtr_saved) {
252  retval = arm11_run_instr_data_prepare(arm11);
253  if (retval != ERROR_OK)
254  return retval;
255 
256  /* MCR p14,0,R0,c0,c5,0 */
258  0xee000e15, arm11->saved_wdtr);
259  if (retval != ERROR_OK)
260  return retval;
261 
262  retval = arm11_run_instr_data_finish(arm11);
263  if (retval != ERROR_OK)
264  return retval;
265  }
266 
267  /* restore CPSR, PC, and R0 ... after flushing any modified
268  * registers.
269  */
271 
273 
275 
276  /* restore DSCR */
277  CHECK_RETVAL(arm11_write_dscr(arm11, arm11->dscr));
278 
279  /* maybe restore rDTR */
280  if (arm11->is_rdtr_saved) {
282 
284 
285  struct scan_field chain5_fields[3];
286 
287  uint8_t ready = 0; /* ignored */
288  uint8_t valid = 0; /* ignored */
289 
290  arm11_setup_field(arm11, 32, &arm11->saved_rdtr,
291  NULL, chain5_fields + 0);
292  arm11_setup_field(arm11, 1, &ready, NULL, chain5_fields + 1);
293  arm11_setup_field(arm11, 1, &valid, NULL, chain5_fields + 2);
294 
296  chain5_fields), chain5_fields, TAP_DRPAUSE);
297  }
298 
299  /* now processor is ready to RESTART */
300 
301  return ERROR_OK;
302 }
303 
304 /* poll current target status */
305 static int arm11_poll(struct target *target)
306 {
307  int retval;
308  struct arm11_common *arm11 = target_to_arm11(target);
309 
311 
312  if (arm11->dscr & DSCR_CORE_HALTED) {
313  if (target->state != TARGET_HALTED) {
314  enum target_state old_state = target->state;
315 
316  LOG_DEBUG("enter TARGET_HALTED");
317  retval = arm11_debug_entry(arm11);
318  if (retval != ERROR_OK)
319  return retval;
320 
322  (old_state == TARGET_DEBUG_RUNNING)
325  }
326  } else {
328  LOG_DEBUG("enter TARGET_RUNNING");
331  }
332  }
333 
334  return ERROR_OK;
335 }
336 /* architecture specific status reply */
337 static int arm11_arch_state(struct target *target)
338 {
339  struct arm11_common *arm11 = target_to_arm11(target);
340  int retval;
341 
342  retval = arm_arch_state(target);
343 
344  /* REVISIT also display ARM11-specific MMU and cache status ... */
345 
347  LOG_USER("Watchpoint triggered at PC " TARGET_ADDR_FMT, arm11->dpm.wp_addr);
348 
349  return retval;
350 }
351 
352 /* target execution control */
353 static int arm11_halt(struct target *target)
354 {
355  struct arm11_common *arm11 = target_to_arm11(target);
356 
357  LOG_DEBUG("target->state: %s",
359 
360  if (target->state == TARGET_UNKNOWN)
361  arm11->simulate_reset_on_next_halt = true;
362 
363  if (target->state == TARGET_HALTED) {
364  LOG_DEBUG("target was already halted");
365  return ERROR_OK;
366  }
367 
369 
371 
372  int i = 0;
373 
374  while (1) {
376 
377  if (arm11->dscr & DSCR_CORE_HALTED)
378  break;
379 
380 
381  int64_t then = 0;
382  if (i == 1000)
383  then = timeval_ms();
384  if (i >= 1000) {
385  if ((timeval_ms()-then) > 1000) {
386  LOG_WARNING("Timeout (1000ms) waiting for instructions to complete");
387  return ERROR_FAIL;
388  }
389  }
390  i++;
391  }
392 
393  enum target_state old_state = target->state;
394 
396 
397  CHECK_RETVAL(
399  old_state ==
401 
402  return ERROR_OK;
403 }
404 
405 static uint32_t arm11_nextpc(struct arm11_common *arm11, int current, uint32_t address)
406 {
407  void *value = arm11->arm.pc->value;
408 
409  /* use the current program counter */
410  if (current)
411  address = buf_get_u32(value, 0, 32);
412 
413  /* Make sure that the gdb thumb fixup does not
414  * kill the return address
415  */
416  switch (arm11->arm.core_state) {
417  case ARM_STATE_ARM:
418  address &= 0xFFFFFFFC;
419  break;
420  case ARM_STATE_THUMB:
421  /* When the return address is loaded into PC
422  * bit 0 must be 1 to stay in Thumb state
423  */
424  address |= 0x1;
425  break;
426 
427  /* catch-all for JAZELLE and THUMB_EE */
428  default:
429  break;
430  }
431 
432  buf_set_u32(value, 0, 32, address);
433  arm11->arm.pc->dirty = true;
434  arm11->arm.pc->valid = true;
435 
436  return address;
437 }
438 
439 static int arm11_resume(struct target *target, int current,
440  target_addr_t address, int handle_breakpoints, int debug_execution)
441 {
442  /* LOG_DEBUG("current %d address %08x handle_breakpoints %d debug_execution %d", */
443  /* current, address, handle_breakpoints, debug_execution); */
444 
445  struct arm11_common *arm11 = target_to_arm11(target);
446 
447  LOG_DEBUG("target->state: %s",
449 
450 
451  if (target->state != TARGET_HALTED) {
452  LOG_TARGET_ERROR(target, "not halted");
454  }
455 
456  address = arm11_nextpc(arm11, current, address);
457 
458  LOG_DEBUG("RESUME PC %08" TARGET_PRIxADDR "%s", address, !current ? "!" : "");
459 
460  /* clear breakpoints/watchpoints and VCR*/
462 
463  if (!debug_execution)
465 
466  /* Should we skip over breakpoints matching the PC? */
467  if (handle_breakpoints) {
468  struct breakpoint *bp;
469 
470  for (bp = target->breakpoints; bp; bp = bp->next) {
471  if (bp->address == address) {
472  LOG_DEBUG("must step over %08" TARGET_PRIxADDR "", bp->address);
473  arm11_step(target, 1, 0, 0);
474  break;
475  }
476  }
477  }
478 
479  /* activate all breakpoints */
480  if (true) {
481  struct breakpoint *bp;
482  unsigned brp_num = 0;
483 
484  for (bp = target->breakpoints; bp; bp = bp->next) {
485  struct arm11_sc7_action brp[2];
486 
487  brp[0].write = 1;
488  brp[0].address = ARM11_SC7_BVR0 + brp_num;
489  brp[0].value = bp->address;
490  brp[1].write = 1;
491  brp[1].address = ARM11_SC7_BCR0 + brp_num;
492  brp[1].value = 0x1 |
493  (3 <<
494  1) | (0x0F << 5) | (0 << 14) | (0 << 16) | (0 << 20) | (0 << 21);
495 
496  CHECK_RETVAL(arm11_sc7_run(arm11, brp, ARRAY_SIZE(brp)));
497 
498  LOG_DEBUG("Add BP %d at %08" TARGET_PRIxADDR, brp_num,
499  bp->address);
500 
501  brp_num++;
502  }
503 
504  if (arm11->vcr)
505  CHECK_RETVAL(arm11_sc7_set_vcr(arm11, arm11->vcr));
506  }
507 
508  /* activate all watchpoints and breakpoints */
510 
512 
514 
515  int i = 0;
516  while (1) {
518 
519  LOG_DEBUG("DSCR %08x", (unsigned) arm11->dscr);
520 
521  if (arm11->dscr & DSCR_CORE_RESTARTED)
522  break;
523 
524 
525  int64_t then = 0;
526  if (i == 1000)
527  then = timeval_ms();
528  if (i >= 1000) {
529  if ((timeval_ms()-then) > 1000) {
530  LOG_WARNING("Timeout (1000ms) waiting for instructions to complete");
531  return ERROR_FAIL;
532  }
533  }
534  i++;
535  }
536 
538  if (!debug_execution)
540  else
543 
544  return ERROR_OK;
545 }
546 
547 static int arm11_step(struct target *target, int current,
548  target_addr_t address, int handle_breakpoints)
549 {
550  LOG_DEBUG("target->state: %s",
552 
553  if (target->state != TARGET_HALTED) {
554  LOG_TARGET_ERROR(target, "not halted");
556  }
557 
558  struct arm11_common *arm11 = target_to_arm11(target);
559 
560  address = arm11_nextpc(arm11, current, address);
561 
562  LOG_DEBUG("STEP PC %08" TARGET_PRIxADDR "%s", address, !current ? "!" : "");
563 
564 
567  uint32_t next_instruction;
568 
569  CHECK_RETVAL(arm11_read_memory_word(arm11, address, &next_instruction));
570 
571  /* skip over BKPT */
572  if ((next_instruction & 0xFFF00070) == 0xe1200070) {
573  address = arm11_nextpc(arm11, 0, address + 4);
574  LOG_DEBUG("Skipping BKPT %08" TARGET_PRIxADDR, address);
575  }
576  /* skip over Wait for interrupt / Standby
577  * mcr 15, 0, r?, cr7, cr0, {4} */
578  else if ((next_instruction & 0xFFFF0FFF) == 0xee070f90) {
579  address = arm11_nextpc(arm11, 0, address + 4);
580  LOG_DEBUG("Skipping WFI %08" TARGET_PRIxADDR, address);
581  }
582  /* ignore B to self */
583  else if ((next_instruction & 0xFEFFFFFF) == 0xeafffffe)
584  LOG_DEBUG("Not stepping jump to self");
585  else {
593  /* Set up breakpoint for stepping */
594 
595  struct arm11_sc7_action brp[2];
596 
597  brp[0].write = 1;
598  brp[0].address = ARM11_SC7_BVR0;
599  brp[1].write = 1;
600  brp[1].address = ARM11_SC7_BCR0;
601 
602  if (arm11->hardware_step) {
603  /* Hardware single stepping ("instruction address
604  * mismatch") is used if enabled. It's not quite
605  * exactly "run one instruction"; "branch to here"
606  * loops won't break, neither will some other cases,
607  * but it's probably the best default.
608  *
609  * Hardware single stepping isn't supported on v6
610  * debug modules. ARM1176 and v7 can support it...
611  *
612  * FIXME Thumb stepping likely needs to use 0x03
613  * or 0xc0 byte masks, not 0x0f.
614  */
615  brp[0].value = address;
616  brp[1].value = 0x1 | (3 << 1) | (0x0F << 5)
617  | (0 << 14) | (0 << 16) | (0 << 20)
618  | (2 << 21);
619  } else {
620  /* Sets a breakpoint on the next PC, as calculated
621  * by instruction set simulation.
622  *
623  * REVISIT stepping Thumb on ARM1156 requires Thumb2
624  * support from the simulator.
625  */
626  uint32_t next_pc;
627  int retval;
628 
629  retval = arm_simulate_step(target, &next_pc);
630  if (retval != ERROR_OK)
631  return retval;
632 
633  brp[0].value = next_pc;
634  brp[1].value = 0x1 | (3 << 1) | (0x0F << 5)
635  | (0 << 14) | (0 << 16) | (0 << 20)
636  | (0 << 21);
637  }
638 
639  CHECK_RETVAL(arm11_sc7_run(arm11, brp, ARRAY_SIZE(brp)));
640 
641  /* resume */
642 
643 
644  if (arm11->step_irq_enable)
645  /* this disable should be redundant ... */
646  arm11->dscr &= ~DSCR_INT_DIS;
647  else
648  arm11->dscr |= DSCR_INT_DIS;
649 
650 
651  CHECK_RETVAL(arm11_leave_debug_state(arm11, handle_breakpoints));
652 
654 
656 
657  /* wait for halt */
658  int i = 0;
659 
660  while (1) {
661  const uint32_t mask = DSCR_CORE_RESTARTED
663 
665  LOG_DEBUG("DSCR %08x e", (unsigned) arm11->dscr);
666 
667  if ((arm11->dscr & mask) == mask)
668  break;
669 
670  long long then = 0;
671  if (i == 1000)
672  then = timeval_ms();
673  if (i >= 1000) {
674  if ((timeval_ms()-then) > 1000) {
675  LOG_WARNING(
676  "Timeout (1000ms) waiting for instructions to complete");
677  return ERROR_FAIL;
678  }
679  }
680  i++;
681  }
682 
683  /* clear breakpoint */
685 
686  /* save state */
688 
689  /* restore default state */
690  arm11->dscr &= ~DSCR_INT_DIS;
691 
692  }
693 
695 
697 
698  return ERROR_OK;
699 }
700 
701 static int arm11_assert_reset(struct target *target)
702 {
703  struct arm11_common *arm11 = target_to_arm11(target);
704 
705  if (!(target_was_examined(target))) {
707  jtag_add_reset(0, 1);
708  else {
709  LOG_WARNING("Reset is not asserted because the target is not examined.");
710  LOG_WARNING("Use a reset button or power cycle the target.");
712  }
713  } else {
714 
715  /* optionally catch reset vector */
716  if (target->reset_halt && !(arm11->vcr & 1))
717  CHECK_RETVAL(arm11_sc7_set_vcr(arm11, arm11->vcr | 1));
718 
719  /* Issue some kind of warm reset. */
722  else if (jtag_get_reset_config() & RESET_HAS_SRST) {
723  /* REVISIT handle "pulls" cases, if there's
724  * hardware that needs them to work.
725  */
726  jtag_add_reset(0, 1);
727  } else {
728  LOG_ERROR("%s: how to reset?", target_name(target));
729  return ERROR_FAIL;
730  }
731  }
732 
733  /* registers are now invalid */
735 
737 
738  return ERROR_OK;
739 }
740 
741 /*
742  * - There is another bug in the arm11 core. (iMX31 specific again?)
743  * When you generate an access to external logic (for example DDR
744  * controller via AHB bus) and that block is not configured (perhaps
745  * it is still held in reset), that transaction will never complete.
746  * This will hang arm11 core but it will also hang JTAG controller.
747  * Nothing short of srst assertion will bring it out of this.
748  */
749 
750 static int arm11_deassert_reset(struct target *target)
751 {
752  struct arm11_common *arm11 = target_to_arm11(target);
753  int retval;
754 
755  /* be certain SRST is off */
756  jtag_add_reset(0, 0);
757 
758  /* WORKAROUND i.MX31 problems: SRST goofs the TAP, and resets
759  * at least DSCR. OMAP24xx doesn't show that problem, though
760  * SRST-only reset seems to be problematic for other reasons.
761  * (Secure boot sequences being one likelihood!)
762  */
763  jtag_add_tlr();
764 
766 
767  if (target->reset_halt) {
768  if (target->state != TARGET_HALTED) {
769  LOG_WARNING("%s: ran after reset and before halt ...",
771  retval = target_halt(target);
772  if (retval != ERROR_OK)
773  return retval;
774  }
775  }
776 
777  /* maybe restore vector catch config */
778  if (target->reset_halt && !(arm11->vcr & 1))
779  CHECK_RETVAL(arm11_sc7_set_vcr(arm11, arm11->vcr));
780 
781  return ERROR_OK;
782 }
783 
784 /* target memory access
785  * size: 1 = byte (8bit), 2 = half-word (16bit), 4 = word (32bit)
786  * count: number of items of <size>
787  *
788  * arm11_config_memrw_no_increment - in the future we may want to be able
789  * to read/write a range of data to a "port". a "port" is an action on
790  * read memory address for some peripheral.
791  */
793  uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer,
794  bool arm11_config_memrw_no_increment)
795 {
798  int retval;
799 
800  if (target->state != TARGET_HALTED) {
801  LOG_TARGET_ERROR(target, "not halted");
803  }
804 
805  LOG_DEBUG("ADDR %08" PRIx32 " SIZE %08" PRIx32 " COUNT %08" PRIx32 "",
806  address,
807  size,
808  count);
809 
810  struct arm11_common *arm11 = target_to_arm11(target);
811 
812  retval = arm11_run_instr_data_prepare(arm11);
813  if (retval != ERROR_OK)
814  return retval;
815 
816  /* MRC p14,0,r0,c0,c5,0 */
817  retval = arm11_run_instr_data_to_core1(arm11, 0xee100e15, address);
818  if (retval != ERROR_OK)
819  return retval;
820 
821  switch (size) {
822  case 1:
823  arm11->arm.core_cache->reg_list[1].dirty = true;
824 
825  for (size_t i = 0; i < count; i++) {
826  /* ldrb r1, [r0], #1 */
827  /* ldrb r1, [r0] */
829  !arm11_config_memrw_no_increment ? 0xe4d01001 : 0xe5d01000));
830 
831  uint32_t res;
832  /* MCR p14,0,R1,c0,c5,0 */
833  CHECK_RETVAL(arm11_run_instr_data_from_core(arm11, 0xEE001E15, &res, 1));
834 
835  *buffer++ = res;
836  }
837 
838  break;
839 
840  case 2:
841  {
842  arm11->arm.core_cache->reg_list[1].dirty = true;
843 
844  for (size_t i = 0; i < count; i++) {
845  /* ldrh r1, [r0], #2 */
847  !arm11_config_memrw_no_increment ? 0xe0d010b2 : 0xe1d010b0));
848 
849  uint32_t res;
850 
851  /* MCR p14,0,R1,c0,c5,0 */
852  CHECK_RETVAL(arm11_run_instr_data_from_core(arm11, 0xEE001E15, &res, 1));
853 
854  uint16_t svalue = res;
855  memcpy(buffer + i * sizeof(uint16_t), &svalue, sizeof(uint16_t));
856  }
857 
858  break;
859  }
860 
861  case 4:
862  {
863  uint32_t instr = !arm11_config_memrw_no_increment ? 0xecb05e01 : 0xed905e00;
865  uint32_t *words = (uint32_t *)(void *)buffer;
866 
867  /* LDC p14,c5,[R0],#4 */
868  /* LDC p14,c5,[R0] */
869  CHECK_RETVAL(arm11_run_instr_data_from_core(arm11, instr, words, count));
870  break;
871  }
872  }
873 
874  return arm11_run_instr_data_finish(arm11);
875 }
876 
877 static int arm11_read_memory(struct target *target,
878  target_addr_t address,
879  uint32_t size,
880  uint32_t count,
881  uint8_t *buffer)
882 {
883  return arm11_read_memory_inner(target, address, size, count, buffer, false);
884 }
885 
886 /*
887 * no_increment - in the future we may want to be able
888 * to read/write a range of data to a "port". a "port" is an action on
889 * read memory address for some peripheral.
890 */
892  uint32_t address, uint32_t size,
893  uint32_t count, const uint8_t *buffer,
894  bool no_increment)
895 {
896  int retval;
897 
898  if (target->state != TARGET_HALTED) {
899  LOG_TARGET_ERROR(target, "not halted");
901  }
902 
903  LOG_DEBUG("ADDR %08" PRIx32 " SIZE %08" PRIx32 " COUNT %08" PRIx32 "",
904  address,
905  size,
906  count);
907 
908  struct arm11_common *arm11 = target_to_arm11(target);
909 
910  retval = arm11_run_instr_data_prepare(arm11);
911  if (retval != ERROR_OK)
912  return retval;
913 
914  /* load r0 with buffer address
915  * MRC p14,0,r0,c0,c5,0 */
916  retval = arm11_run_instr_data_to_core1(arm11, 0xee100e15, address);
917  if (retval != ERROR_OK)
918  return retval;
919 
920  /* burst writes are not used for single words as those may well be
921  * reset init script writes.
922  *
923  * The other advantage is that as burst writes are default, we'll
924  * now exercise both burst and non-burst code paths with the
925  * default settings, increasing code coverage.
926  */
927  bool burst = arm11->memwrite_burst && (count > 1);
928 
929  switch (size) {
930  case 1:
931  {
932  arm11->arm.core_cache->reg_list[1].dirty = true;
933 
934  for (size_t i = 0; i < count; i++) {
935  /* load r1 from DCC with byte data */
936  /* MRC p14,0,r1,c0,c5,0 */
937  retval = arm11_run_instr_data_to_core1(arm11, 0xee101e15, *buffer++);
938  if (retval != ERROR_OK)
939  return retval;
940 
941  /* write r1 to memory */
942  /* strb r1, [r0], #1 */
943  /* strb r1, [r0] */
944  retval = arm11_run_instr_no_data1(arm11,
945  !no_increment ? 0xe4c01001 : 0xe5c01000);
946  if (retval != ERROR_OK)
947  return retval;
948  }
949 
950  break;
951  }
952 
953  case 2:
954  {
955  arm11->arm.core_cache->reg_list[1].dirty = true;
956 
957  for (size_t i = 0; i < count; i++) {
958  uint16_t value;
959  memcpy(&value, buffer + i * sizeof(uint16_t), sizeof(uint16_t));
960 
961  /* load r1 from DCC with halfword data */
962  /* MRC p14,0,r1,c0,c5,0 */
963  retval = arm11_run_instr_data_to_core1(arm11, 0xee101e15, value);
964  if (retval != ERROR_OK)
965  return retval;
966 
967  /* write r1 to memory */
968  /* strh r1, [r0], #2 */
969  /* strh r1, [r0] */
970  retval = arm11_run_instr_no_data1(arm11,
971  !no_increment ? 0xe0c010b2 : 0xe1c010b0);
972  if (retval != ERROR_OK)
973  return retval;
974  }
975 
976  break;
977  }
978 
979  case 4: {
980  /* stream word data through DCC directly to memory */
981  /* increment: STC p14,c5,[R0],#4 */
982  /* no increment: STC p14,c5,[R0]*/
983  uint32_t instr = !no_increment ? 0xeca05e01 : 0xed805e00;
984 
986  uint32_t *words = (uint32_t *)(void *)buffer;
987 
988  /* "burst" here just means trusting each instruction executes
989  * fully before we run the next one: per-word roundtrips, to
990  * check the Ready flag, are not used.
991  */
992  if (!burst)
993  retval = arm11_run_instr_data_to_core(arm11,
994  instr, words, count);
995  else
996  retval = arm11_run_instr_data_to_core_noack(arm11,
997  instr, words, count);
998  if (retval != ERROR_OK)
999  return retval;
1000 
1001  break;
1002  }
1003  }
1004 
1005  /* r0 verification */
1006  if (!no_increment) {
1007  uint32_t r0;
1008 
1009  /* MCR p14,0,R0,c0,c5,0 */
1010  retval = arm11_run_instr_data_from_core(arm11, 0xEE000E15, &r0, 1);
1011  if (retval != ERROR_OK)
1012  return retval;
1013 
1014  if (address + size * count != r0) {
1015  LOG_ERROR("Data transfer failed. Expected end "
1016  "address 0x%08x, got 0x%08x",
1017  (unsigned) (address + size * count),
1018  (unsigned) r0);
1019 
1020  if (burst)
1021  LOG_ERROR(
1022  "use 'arm11 memwrite burst disable' to disable fast burst mode");
1023 
1024 
1025  if (arm11->memwrite_error_fatal)
1026  return ERROR_FAIL;
1027  }
1028  }
1029 
1030  return arm11_run_instr_data_finish(arm11);
1031 }
1032 
1033 static int arm11_write_memory(struct target *target,
1034  target_addr_t address, uint32_t size,
1035  uint32_t count, const uint8_t *buffer)
1036 {
1037  /* pointer increment matters only for multi-unit writes ...
1038  * not e.g. to a "reset the chip" controller.
1039  */
1040  return arm11_write_memory_inner(target, address, size,
1041  count, buffer, count == 1);
1042 }
1043 
1044 /* target break-/watchpoint control
1045 * rw: 0 = write, 1 = read, 2 = access
1046 */
1048  struct breakpoint *breakpoint)
1049 {
1050  struct arm11_common *arm11 = target_to_arm11(target);
1051 
1052 #if 0
1053  if (breakpoint->type == BKPT_SOFT) {
1054  LOG_INFO("sw breakpoint requested, but software breakpoints not enabled");
1056  }
1057 #endif
1058 
1059  if (!arm11->free_brps) {
1060  LOG_DEBUG("no breakpoint unit available for hardware breakpoint");
1062  }
1063 
1064  if (breakpoint->length != 4) {
1065  LOG_DEBUG("only breakpoints of four bytes length supported");
1067  }
1068 
1069  arm11->free_brps--;
1070 
1071  return ERROR_OK;
1072 }
1073 
1075  struct breakpoint *breakpoint)
1076 {
1077  struct arm11_common *arm11 = target_to_arm11(target);
1078 
1079  arm11->free_brps++;
1080 
1081  return ERROR_OK;
1082 }
1083 
1084 static int arm11_target_create(struct target *target, Jim_Interp *interp)
1085 {
1086  struct arm11_common *arm11;
1087 
1088  if (!target->tap)
1089  return ERROR_FAIL;
1090 
1091  if (target->tap->ir_length != 5) {
1092  LOG_ERROR("'target arm11' expects IR LENGTH = 5");
1094  }
1095 
1096  arm11 = calloc(1, sizeof(*arm11));
1097  if (!arm11)
1098  return ERROR_FAIL;
1099 
1100  arm11->arm.core_type = ARM_CORE_TYPE_STD;
1101  arm_init_arch_info(target, &arm11->arm);
1102 
1103  arm11->jtag_info.tap = target->tap;
1104  arm11->jtag_info.scann_size = 5;
1106  arm11->jtag_info.cur_scan_chain = ~0; /* invalid/unknown */
1108 
1109  arm11->memwrite_burst = true;
1110  arm11->memwrite_error_fatal = true;
1111 
1112  return ERROR_OK;
1113 }
1114 
1115 static int arm11_init_target(struct command_context *cmd_ctx,
1116  struct target *target)
1117 {
1118  /* Initialize anything we can set up without talking to the target */
1119  return ERROR_OK;
1120 }
1121 
1122 static void arm11_deinit_target(struct target *target)
1123 {
1124  struct arm11_common *arm11 = target_to_arm11(target);
1125 
1126  arm11_dpm_deinit(arm11);
1127  free(arm11);
1128 }
1129 
1130 /* talk to the target and set things up */
1131 static int arm11_examine(struct target *target)
1132 {
1133  int retval;
1134  char *type;
1135  struct arm11_common *arm11 = target_to_arm11(target);
1136  uint32_t didr, device_id;
1137  uint8_t implementor;
1138 
1139  /* FIXME split into do-first-time and do-every-time logic ... */
1140 
1141  /* check IDCODE */
1142 
1144 
1145  struct scan_field idcode_field;
1146 
1147  arm11_setup_field(arm11, 32, NULL, &device_id, &idcode_field);
1148 
1149  arm11_add_dr_scan_vc(arm11->arm.target->tap, 1, &idcode_field, TAP_DRPAUSE);
1150 
1151  /* check DIDR */
1152 
1154 
1156 
1157  struct scan_field chain0_fields[2];
1158 
1159  arm11_setup_field(arm11, 32, NULL, &didr, chain0_fields + 0);
1160  arm11_setup_field(arm11, 8, NULL, &implementor, chain0_fields + 1);
1161 
1163  chain0_fields), chain0_fields, TAP_IDLE);
1164 
1166 
1167  /* assume the manufacturer id is ok; check the part # */
1168  switch ((device_id >> 12) & 0xFFFF) {
1169  case 0x7B36:
1170  type = "ARM1136";
1171  break;
1172  case 0x7B37:
1173  type = "ARM11 MPCore";
1174  break;
1175  case 0x7B56:
1176  type = "ARM1156";
1177  break;
1178  case 0x7B76:
1180  /* NOTE: could default arm11->hardware_step to true */
1181  type = "ARM1176";
1182  break;
1183  default:
1184  LOG_ERROR("unexpected ARM11 ID code");
1185  return ERROR_FAIL;
1186  }
1187  LOG_INFO("found %s", type);
1188 
1189  /* unlikely this could ever fail, but ... */
1190  switch ((didr >> 16) & 0x0F) {
1191  case ARM11_DEBUG_V6:
1192  case ARM11_DEBUG_V61: /* supports security extensions */
1193  break;
1194  default:
1195  LOG_ERROR("Only ARM v6 and v6.1 debug supported.");
1196  return ERROR_FAIL;
1197  }
1198 
1199  arm11->brp = ((didr >> 24) & 0x0F) + 1;
1200 
1202  arm11->free_brps = arm11->brp;
1203 
1204  LOG_DEBUG("IDCODE %08" PRIx32 " IMPLEMENTOR %02x DIDR %08" PRIx32,
1205  device_id, implementor, didr);
1206 
1207  /* Build register cache "late", after target_init(), since we
1208  * want to know if this core supports Secure Monitor mode.
1209  */
1211  CHECK_RETVAL(arm11_dpm_init(arm11, didr));
1212 
1213  /* as a side-effect this reads DSCR and thus
1214  * clears the ARM11_DSCR_STICKY_PRECISE_DATA_ABORT / Sticky Precise Data Abort Flag
1215  * as suggested by the spec.
1216  */
1217 
1218  retval = arm11_check_init(arm11);
1219  if (retval != ERROR_OK)
1220  return retval;
1221 
1222  /* ETM on ARM11 still uses original scanchain 6 access mode */
1223  if (arm11->arm.etm && !target_was_examined(target)) {
1226  arm11->arm.etm);
1228  }
1229 
1231 
1232  return ERROR_OK;
1233 }
1234 
1235 #define ARM11_BOOL_WRAPPER(name, print_name) \
1236  COMMAND_HANDLER(arm11_handle_bool_ ## name) \
1237  { \
1238  struct target *target = get_current_target(CMD_CTX); \
1239  struct arm11_common *arm11 = target_to_arm11(target); \
1240  \
1241  return CALL_COMMAND_HANDLER(handle_command_parse_bool, \
1242  &arm11->name, print_name); \
1243  }
1244 
1245 ARM11_BOOL_WRAPPER(memwrite_burst, "memory write burst mode")
1246 ARM11_BOOL_WRAPPER(memwrite_error_fatal, "fatal error mode for memory writes")
1247 ARM11_BOOL_WRAPPER(step_irq_enable, "IRQs while stepping")
1248 ARM11_BOOL_WRAPPER(hardware_step, "hardware single step")
1249 
1250 /* REVISIT handle the VCR bits like other ARMs: use symbols for
1251  * input and output values.
1252  */
1253 
1254 COMMAND_HANDLER(arm11_handle_vcr)
1255 {
1257  struct arm11_common *arm11 = target_to_arm11(target);
1258 
1259  switch (CMD_ARGC) {
1260  case 0:
1261  break;
1262  case 1:
1263  COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], arm11->vcr);
1264  break;
1265  default:
1267  }
1268 
1269  LOG_INFO("VCR 0x%08" PRIx32 "", arm11->vcr);
1270  return ERROR_OK;
1271 }
1272 
1273 static const struct command_registration arm11_mw_command_handlers[] = {
1274  {
1275  .name = "burst",
1276  .handler = arm11_handle_bool_memwrite_burst,
1277  .mode = COMMAND_ANY,
1278  .help = "Display or modify flag controlling potentially "
1279  "risky fast burst mode (default: enabled)",
1280  .usage = "['enable'|'disable']",
1281  },
1282  {
1283  .name = "error_fatal",
1284  .handler = arm11_handle_bool_memwrite_error_fatal,
1285  .mode = COMMAND_ANY,
1286  .help = "Display or modify flag controlling transfer "
1287  "termination on transfer errors"
1288  " (default: enabled)",
1289  .usage = "['enable'|'disable']",
1290  },
1292 };
1293 static const struct command_registration arm11_any_command_handlers[] = {
1294  {
1295  /* "hardware_step" is only here to check if the default
1296  * simulate + breakpoint implementation is broken.
1297  * TEMPORARY! NOT DOCUMENTED! */
1298  .name = "hardware_step",
1299  .handler = arm11_handle_bool_hardware_step,
1300  .mode = COMMAND_ANY,
1301  .help = "DEBUG ONLY - Hardware single stepping"
1302  " (default: disabled)",
1303  .usage = "['enable'|'disable']",
1304  },
1305  {
1306  .name = "memwrite",
1307  .mode = COMMAND_ANY,
1308  .help = "memwrite command group",
1309  .usage = "",
1310  .chain = arm11_mw_command_handlers,
1311  },
1312  {
1313  .name = "step_irq_enable",
1314  .handler = arm11_handle_bool_step_irq_enable,
1315  .mode = COMMAND_ANY,
1316  .help = "Display or modify flag controlling interrupt "
1317  "enable while stepping (default: disabled)",
1318  .usage = "['enable'|'disable']",
1319  },
1320  {
1321  .name = "vcr",
1322  .handler = arm11_handle_vcr,
1323  .mode = COMMAND_ANY,
1324  .help = "Display or modify Vector Catch Register",
1325  .usage = "[value]",
1326  },
1328 };
1329 
1330 static const struct command_registration arm11_command_handlers[] = {
1331  {
1333  },
1334  {
1336  },
1337  {
1338  .name = "arm11",
1339  .mode = COMMAND_ANY,
1340  .help = "ARM11 command group",
1341  .usage = "",
1342  .chain = arm11_any_command_handlers,
1343  },
1345 };
1346 
1348 struct target_type arm11_target = {
1349  .name = "arm11",
1350 
1351  .poll = arm11_poll,
1352  .arch_state = arm11_arch_state,
1353 
1354  .halt = arm11_halt,
1355  .resume = arm11_resume,
1356  .step = arm11_step,
1357 
1358  .assert_reset = arm11_assert_reset,
1359  .deassert_reset = arm11_deassert_reset,
1360 
1361  .get_gdb_arch = arm_get_gdb_arch,
1362  .get_gdb_reg_list = arm_get_gdb_reg_list,
1363 
1364  .read_memory = arm11_read_memory,
1365  .write_memory = arm11_write_memory,
1366 
1367  .checksum_memory = arm_checksum_memory,
1368  .blank_check_memory = arm_blank_check_memory,
1369 
1370  .add_breakpoint = arm11_add_breakpoint,
1371  .remove_breakpoint = arm11_remove_breakpoint,
1372 
1373  .run_algorithm = armv4_5_run_algorithm,
1374 
1375  .commands = arm11_command_handlers,
1376  .target_create = arm11_target_create,
1377  .init_target = arm11_init_target,
1378  .deinit_target = arm11_deinit_target,
1379  .examine = arm11_examine,
1380 };
#define CHECK_RETVAL(action)
Definition: arc.h:246
static int arm11_read_memory(struct target *target, target_addr_t address, uint32_t size, uint32_t count, uint8_t *buffer)
Definition: arm11.c:877
static int arm11_step(struct target *target, int current, target_addr_t address, int handle_breakpoints)
Definition: arm11.c:547
static int arm11_examine(struct target *target)
Definition: arm11.c:1131
COMMAND_HANDLER(arm11_handle_vcr)
Definition: arm11.c:1254
static int arm11_poll(struct target *target)
Definition: arm11.c:305
static int arm11_resume(struct target *target, int current, target_addr_t address, int handle_breakpoints, int debug_execution)
Definition: arm11.c:439
static const struct command_registration arm11_mw_command_handlers[]
Definition: arm11.c:1273
static const struct command_registration arm11_command_handlers[]
Definition: arm11.c:1330
static void arm11_deinit_target(struct target *target)
Definition: arm11.c:1122
static int arm11_halt(struct target *target)
Definition: arm11.c:353
static int arm11_write_memory_inner(struct target *target, uint32_t address, uint32_t size, uint32_t count, const uint8_t *buffer, bool no_increment)
Definition: arm11.c:891
static int arm11_leave_debug_state(struct arm11_common *arm11, bool bpwp)
Restore processor state.
Definition: arm11.c:216
static int arm11_assert_reset(struct target *target)
Definition: arm11.c:701
static int arm11_arch_state(struct target *target)
Definition: arm11.c:337
#define ARM11_BOOL_WRAPPER(name, print_name)
Definition: arm11.c:1235
static int arm11_read_memory_inner(struct target *target, uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer, bool arm11_config_memrw_no_increment)
Definition: arm11.c:792
static int arm11_init_target(struct command_context *cmd_ctx, struct target *target)
Definition: arm11.c:1115
static int arm11_deassert_reset(struct target *target)
Definition: arm11.c:750
struct target_type arm11_target
Holds methods for ARM11xx targets.
Definition: arm11.c:1348
static int arm11_add_breakpoint(struct target *target, struct breakpoint *breakpoint)
Definition: arm11.c:1047
static int arm11_debug_entry(struct arm11_common *arm11)
Save processor state.
Definition: arm11.c:81
static uint32_t arm11_nextpc(struct arm11_common *arm11, int current, uint32_t address)
Definition: arm11.c:405
static int arm11_remove_breakpoint(struct target *target, struct breakpoint *breakpoint)
Definition: arm11.c:1074
static const struct command_registration arm11_any_command_handlers[]
Definition: arm11.c:1293
static int arm11_target_create(struct target *target, Jim_Interp *interp)
Definition: arm11.c:1084
static int arm11_write_memory(struct target *target, target_addr_t address, uint32_t size, uint32_t count, const uint8_t *buffer)
Definition: arm11.c:1033
static int arm11_check_init(struct arm11_common *arm11)
Check and if necessary take control of the system.
Definition: arm11.c:41
#define ARM11_TAP_DEFAULT
Definition: arm11.h:16
static struct arm11_common * target_to_arm11(struct target *target)
Definition: arm11.h:72
@ ARM11_DEBUG_V61
Definition: arm11.h:31
@ ARM11_DEBUG_V6
Definition: arm11.h:30
@ ARM11_SC7_BVR0
Definition: arm11.h:97
@ ARM11_SC7_BCR0
Definition: arm11.h:98
@ ARM11_RESTART
Definition: arm11.h:85
@ ARM11_SCAN_N
Definition: arm11.h:84
@ ARM11_INTEST
Definition: arm11.h:87
@ ARM11_IDCODE
Definition: arm11.h:89
@ ARM11_EXTEST
Definition: arm11.h:83
@ ARM11_HALT
Definition: arm11.h:86
int arm11_run_instr_data_to_core1(struct arm11_common *arm11, uint32_t opcode, uint32_t data)
Execute an instruction via ITR while handing data into the core via DTR.
Definition: arm11_dbgtap.c:704
int arm11_run_instr_data_to_core_noack(struct arm11_common *arm11, uint32_t opcode, uint32_t *data, size_t count)
Execute one instruction via ITR repeatedly while passing data to the core via DTR on each execution.
Definition: arm11_dbgtap.c:636
int arm11_run_instr_data_to_core_via_r0(struct arm11_common *arm11, uint32_t opcode, uint32_t data)
Load data into core via DTR then move it to r0 then execute one instruction via ITR.
Definition: arm11_dbgtap.c:820
void arm11_add_dr_scan_vc(struct jtag_tap *tap, int num_fields, struct scan_field *fields, tap_state_t state)
Definition: arm11_dbgtap.c:54
int arm11_bpwp_flush(struct arm11_common *arm11)
Flush any pending breakpoint and watchpoint updates.
int arm11_read_memory_word(struct arm11_common *arm11, uint32_t address, uint32_t *result)
Read word from address.
Definition: arm11_dbgtap.c:980
int arm11_read_dscr(struct arm11_common *arm11)
Read and save the Debug Status and Control Register (DSCR).
Definition: arm11_dbgtap.c:265
int arm11_write_dscr(struct arm11_common *arm11, uint32_t dscr)
Write the Debug Status and Control Register (DSCR)
Definition: arm11_dbgtap.c:303
int arm11_run_instr_data_from_core(struct arm11_common *arm11, uint32_t opcode, uint32_t *data, size_t count)
Execute one instruction via ITR repeatedly while reading data from the core via DTR on each execution...
Definition: arm11_dbgtap.c:727
int arm11_sc7_clear_vbw(struct arm11_common *arm11)
Clear VCR and all breakpoints and watchpoints via scan chain 7.
Definition: arm11_dbgtap.c:933
int arm11_dpm_init(struct arm11_common *arm11, uint32_t didr)
Set up high-level debug module utilities.
void arm11_add_ir(struct arm11_common *arm11, uint8_t instr, tap_state_t state)
Write JTAG instruction register.
Definition: arm11_dbgtap.c:124
void arm11_setup_field(struct arm11_common *arm11, int num_bits, void *out_data, void *in_data, struct scan_field *field)
Code de-clutter: Construct struct scan_field to write out a value.
Definition: arm11_dbgtap.c:75
int arm11_run_instr_data_finish(struct arm11_common *arm11)
Cleanup after ITR/DTR operations from the arm11_run_instr...
Definition: arm11_dbgtap.c:362
int arm11_run_instr_data_prepare(struct arm11_common *arm11)
Prepare the stage for ITR/DTR operations from the arm11_run_instr...
Definition: arm11_dbgtap.c:343
int arm11_run_instr_data_from_core_via_r0(struct arm11_common *arm11, uint32_t opcode, uint32_t *data)
Execute one instruction via ITR then load r0 into DTR and read DTR from core.
Definition: arm11_dbgtap.c:793
int arm11_sc7_set_vcr(struct arm11_common *arm11, uint32_t value)
Write VCR register.
Definition: arm11_dbgtap.c:962
void arm11_dpm_deinit(struct arm11_common *arm11)
int arm11_run_instr_data_to_core(struct arm11_common *arm11, uint32_t opcode, uint32_t *data, size_t count)
Execute one instruction via ITR repeatedly while passing data to the core via DTR on each execution.
Definition: arm11_dbgtap.c:450
int arm11_run_instr_no_data1(struct arm11_common *arm11, uint32_t opcode)
Execute one instruction via ITR.
Definition: arm11_dbgtap.c:427
int arm11_add_debug_scan_n(struct arm11_common *arm11, uint8_t chain, tap_state_t state)
Select and write to Scan Chain Register (SCREG)
Definition: arm11_dbgtap.c:183
int arm11_sc7_run(struct arm11_common *arm11, struct arm11_sc7_action *actions, size_t count)
Apply reads and writes to scan chain 7.
Definition: arm11_dbgtap.c:844
int arm_blank_check_memory(struct target *target, struct target_memory_check_block *blocks, int num_blocks, uint8_t erased_value)
Runs ARM code in the target to check whether a memory block holds all ones.
Definition: armv4_5.c:1673
int arm_arch_state(struct target *target)
Definition: armv4_5.c:782
int arm_checksum_memory(struct target *target, target_addr_t address, uint32_t count, uint32_t *checksum)
Runs ARM code in the target to calculate a CRC32 checksum.
Definition: armv4_5.c:1600
const char * arm_get_gdb_arch(const struct target *target)
Definition: armv4_5.c:1267
int arm_get_gdb_reg_list(struct target *target, struct reg **reg_list[], int *reg_list_size, enum target_register_class reg_class)
Definition: armv4_5.c:1272
@ ARM_STATE_THUMB
Definition: arm.h:151
@ ARM_STATE_ARM
Definition: arm.h:150
const struct command_registration arm_command_handlers[]
Definition: armv4_5.c:1247
int arm_init_arch_info(struct target *target, struct arm *arm)
Definition: armv4_5.c:1799
int armv4_5_run_algorithm(struct target *target, int num_mem_params, struct mem_param *mem_params, int num_reg_params, struct reg_param *reg_params, target_addr_t entry_point, target_addr_t exit_point, unsigned int timeout_ms, void *arch_info)
Definition: armv4_5.c:1574
@ ARM_CORE_TYPE_SEC_EXT
Definition: arm.h:47
@ ARM_CORE_TYPE_STD
Definition: arm.h:46
void arm_dpm_report_dscr(struct arm_dpm *dpm, uint32_t dscr)
Definition: arm_dpm.c:1057
int arm_dpm_read_current_registers(struct arm_dpm *dpm)
Read basic registers of the current context: R0 to R15, and CPSR; sets the core mode (such as USR or ...
Definition: arm_dpm.c:379
int arm_dpm_write_dirty_registers(struct arm_dpm *dpm, bool bpwp)
Writes all modified core registers for all processor modes.
Definition: arm_dpm.c:487
void arm_dpm_report_wfar(struct arm_dpm *dpm, uint32_t addr)
Definition: arm_dpm.c:1033
#define DSCR_INT_DIS
Definition: arm_dpm.h:180
#define DSCR_DTR_TX_FULL
Definition: arm_dpm.h:194
#define DSCR_CORE_HALTED
Definition: arm_dpm.h:172
#define DSCR_ITR_EN
Definition: arm_dpm.h:182
#define DSCR_DTR_RX_FULL
Definition: arm_dpm.h:195
#define DSCR_CORE_RESTARTED
Definition: arm_dpm.h:173
#define DSCR_HALT_DBG_MODE
Definition: arm_dpm.h:183
Macros used to generate various ARM or Thumb opcodes.
#define ARMV4_5_MRC(cp, op1, rd, crn, crm, op2)
Definition: arm_opcodes.h:186
int arm_simulate_step(struct target *target, uint32_t *dry_run_pc)
enum arm_mode mode
Definition: armv4_5.c:277
static uint32_t buf_get_u32(const uint8_t *_buffer, unsigned first, unsigned num)
Retrieves num bits from _buffer, starting at the first bit, returning the bits in a 32-bit word.
Definition: binarybuffer.h:99
static void buf_set_u32(uint8_t *_buffer, unsigned first, unsigned num, uint32_t value)
Sets num bits in _buffer, starting at the first bit, using the bits in value.
Definition: binarybuffer.h:31
@ BKPT_SOFT
Definition: breakpoints.h:19
#define CMD_ARGV
Use this macro to access the arguments for the command being handled, rather than accessing the varia...
Definition: command.h:156
#define ERROR_COMMAND_SYNTAX_ERROR
Definition: command.h:402
#define CMD_ARGC
Use this macro to access the number of arguments for the command being handled, rather than accessing...
Definition: command.h:151
#define COMMAND_PARSE_NUMBER(type, in, out)
parses the string in into out as a type, or prints a command error and passes the error code to the c...
Definition: command.h:442
#define CMD_CTX
Use this macro to access the context of the command being handled, rather than accessing the variable...
Definition: command.h:146
#define COMMAND_REGISTRATION_DONE
Use this as the last entry in an array of command_registration records.
Definition: command.h:253
@ COMMAND_ANY
Definition: command.h:42
int mask
Definition: esirisc.c:1741
uint8_t type
Definition: esp_usb_jtag.c:0
struct reg_cache * etm_build_reg_cache(struct target *target, struct arm_jtag *jtag_info, struct etm_context *etm_ctx)
Definition: etm.c:278
int etm_setup(struct target *target)
Definition: etm.c:417
const struct command_registration etm_command_handlers[]
Definition: etm.c:2008
void jtag_add_reset(int req_tlr_or_trst, int req_srst)
A reset of the TAP state machine can be requested.
Definition: jtag/core.c:758
int jtag_execute_queue(void)
For software FIFO implementations, the queued commands can be executed during this call or earlier.
Definition: jtag/core.c:1037
void jtag_add_tlr(void)
Run a TAP_RESET reset where the end state is TAP_RESET, regardless of the start state.
Definition: jtag/core.c:478
enum reset_types jtag_get_reset_config(void)
Definition: jtag/core.c:1734
@ TAP_DRPAUSE
Definition: jtag.h:44
@ TAP_IDLE
Definition: jtag.h:53
@ RESET_HAS_SRST
Definition: jtag.h:219
#define LOG_USER(expr ...)
Definition: log.h:135
#define LOG_WARNING(expr ...)
Definition: log.h:129
#define ERROR_FAIL
Definition: log.h:170
#define LOG_TARGET_ERROR(target, fmt_str,...)
Definition: log.h:158
#define LOG_ERROR(expr ...)
Definition: log.h:132
#define LOG_INFO(expr ...)
Definition: log.h:126
#define LOG_DEBUG(expr ...)
Definition: log.h:109
#define ERROR_OK
Definition: log.h:164
struct reg_cache ** register_get_last_cache_p(struct reg_cache **first)
Definition: register.c:72
void register_cache_invalidate(struct reg_cache *cache)
Marks the contents of the register cache as invalid (and clean).
Definition: register.c:94
static int step(struct target *target, int current, target_addr_t address, int handle_breakpoints)
Definition: riscv-011.c:1442
size_t size
Size of the control block search area.
Definition: rtt/rtt.c:30
bool memwrite_burst
Definition: arm11.h:61
uint32_t vcr
Configured Vector Catch Register settings.
Definition: arm11.h:67
bool simulate_reset_on_next_halt
Perform cleanups of the ARM state on next halt.
Definition: arm11.h:55
size_t brp
Number of Breakpoint Register Pairs from DIDR
Definition: arm11.h:44
bool is_wdtr_saved
Definition: arm11.h:53
size_t free_brps
Number of breakpoints allocated.
Definition: arm11.h:45
struct arm_dpm dpm
Debug module state.
Definition: arm11.h:40
bool step_irq_enable
Definition: arm11.h:63
struct arm arm
Definition: arm11.h:37
uint32_t dscr
Last retrieved DSCR value.
Definition: arm11.h:47
bool hardware_step
Definition: arm11.h:64
bool memwrite_error_fatal
Definition: arm11.h:62
struct arm_jtag jtag_info
Definition: arm11.h:69
uint32_t saved_wdtr
Definition: arm11.h:50
bool is_rdtr_saved
Definition: arm11.h:52
uint32_t saved_rdtr
Definition: arm11.h:49
Used with arm11_sc7_run to make a list of read/write commands for scan chain 7.
Definition: arm11_dbgtap.h:49
uint8_t address
Register address mode.
Definition: arm11_dbgtap.h:51
uint32_t value
If write then set this to value to be written.
Definition: arm11_dbgtap.h:56
bool write
Access mode: true for write, false for read.
Definition: arm11_dbgtap.h:50
target_addr_t wp_addr
Target dependent watchpoint address.
Definition: arm_dpm.h:147
uint32_t scann_size
Definition: arm_jtag.h:20
uint32_t scann_instr
Definition: arm_jtag.h:21
uint32_t intest_instr
Definition: arm_jtag.h:24
struct jtag_tap * tap
Definition: arm_jtag.h:18
uint32_t cur_scan_chain
Definition: arm_jtag.h:22
struct etm_context * etm
Handle for the Embedded Trace Module, if one is present.
Definition: arm.h:215
enum arm_core_type core_type
Indicates what registers are in the ARM state core register set.
Definition: arm.h:192
struct reg * pc
Handle to the PC; valid in all core modes.
Definition: arm.h:180
struct reg_cache * core_cache
Definition: arm.h:177
struct arm_dpm * dpm
Handle for the debug module, if one is present.
Definition: arm.h:212
struct target * target
Backpointer to the target.
Definition: arm.h:209
enum arm_state core_state
Record the current core state: ARM, Thumb, or otherwise.
Definition: arm.h:198
struct breakpoint * next
Definition: breakpoints.h:34
enum breakpoint_type type
Definition: breakpoints.h:30
target_addr_t address
Definition: breakpoints.h:27
const char * name
Definition: command.h:235
const struct command_registration * chain
If non-NULL, the commands in chain will be registered in the same context and scope of this registrat...
Definition: command.h:249
int ir_length
size of instruction register
Definition: jtag.h:110
struct reg * reg_list
Definition: register.h:147
bool valid
Definition: register.h:126
uint8_t * value
Definition: register.h:122
bool dirty
Definition: register.h:124
This structure defines a single scan field in the scan.
Definition: jtag.h:87
This holds methods shared between all instances of a given target type.
Definition: target_type.h:26
const char * name
Name of this type of target.
Definition: target_type.h:31
Definition: target.h:116
struct jtag_tap * tap
Definition: target.h:119
enum target_debug_reason debug_reason
Definition: target.h:154
enum target_state state
Definition: target.h:157
struct reg_cache * reg_cache
Definition: target.h:158
struct breakpoint * breakpoints
Definition: target.h:159
bool reset_halt
Definition: target.h:144
int target_call_event_callbacks(struct target *target, enum target_event event)
Definition: target.c:1764
void target_free_all_working_areas(struct target *target)
Definition: target.c:2150
int target_halt(struct target *target)
Definition: target.c:507
const char * target_state_name(const struct target *t)
Return the name of this targets current state.
Definition: target.c:260
bool target_has_event_action(const struct target *target, enum target_event event)
Returns true only if the target has a handler for the specified event.
Definition: target.c:4854
struct target * get_current_target(struct command_context *cmd_ctx)
Definition: target.c:458
void target_handle_event(struct target *target, enum target_event e)
Definition: target.c:4660
@ DBG_REASON_NOTHALTED
Definition: target.h:74
@ DBG_REASON_SINGLESTEP
Definition: target.h:73
@ DBG_REASON_WATCHPOINT
Definition: target.h:71
#define ERROR_TARGET_NOT_HALTED
Definition: target.h:790
static bool target_was_examined(const struct target *target)
Definition: target.h:436
@ TARGET_EVENT_HALTED
Definition: target.h:252
@ TARGET_EVENT_RESUMED
Definition: target.h:253
@ TARGET_EVENT_DEBUG_HALTED
Definition: target.h:271
@ TARGET_EVENT_RESET_ASSERT
Definition: target.h:264
static const char * target_name(const struct target *target)
Returns the instance-specific name of the specified target.
Definition: target.h:233
target_state
Definition: target.h:53
@ TARGET_RESET
Definition: target.h:57
@ TARGET_DEBUG_RUNNING
Definition: target.h:58
@ TARGET_UNKNOWN
Definition: target.h:54
@ TARGET_HALTED
Definition: target.h:56
@ TARGET_RUNNING
Definition: target.h:55
#define ERROR_TARGET_NOT_EXAMINED
Definition: target.h:797
#define ERROR_TARGET_RESOURCE_NOT_AVAILABLE
Definition: target.h:794
static void target_set_examined(struct target *target)
Sets the examined flag for the given target.
Definition: target.h:443
int64_t timeval_ms(void)
#define TARGET_ADDR_FMT
Definition: types.h:342
#define ARRAY_SIZE(x)
Compute the number of elements of a variable length array.
Definition: types.h:57
uint64_t target_addr_t
Definition: types.h:335
#define TARGET_PRIxADDR
Definition: types.h:340
#define NULL
Definition: usb.h:16
uint8_t count[4]
Definition: vdebug.c:22