ARM: core DPM support for watchpoints
[openocd.git] / src / target / arm11.c
1 /***************************************************************************
2 * Copyright (C) 2008 digenius technology GmbH. *
3 * Michael Bruck *
4 * *
5 * Copyright (C) 2008,2009 Oyvind Harboe oyvind.harboe@zylin.com *
6 * *
7 * Copyright (C) 2008 Georg Acher <acher@in.tum.de> *
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 * This program is distributed in the hope that it will be useful, *
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
17 * GNU General Public License for more details. *
18 * *
19 * You should have received a copy of the GNU General Public License *
20 * along with this program; if not, write to the *
21 * Free Software Foundation, Inc., *
22 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
23 ***************************************************************************/
24
25 #ifdef HAVE_CONFIG_H
26 #include "config.h"
27 #endif
28
29 #include "etm.h"
30 #include "breakpoints.h"
31 #include "arm11_dbgtap.h"
32 #include "arm_simulator.h"
33 #include "time_support.h"
34 #include "target_type.h"
35 #include "algorithm.h"
36 #include "register.h"
37
38
39 #if 0
40 #define _DEBUG_INSTRUCTION_EXECUTION_
41 #endif
42
43 static bool arm11_config_memwrite_burst = true;
44 static bool arm11_config_memwrite_error_fatal = true;
45 static uint32_t arm11_vcr = 0;
46 static bool arm11_config_step_irq_enable = false;
47 static bool arm11_config_hardware_step = false;
48
49 enum arm11_regtype
50 {
51 /* debug regs */
52 ARM11_REGISTER_DSCR,
53 ARM11_REGISTER_WDTR,
54 ARM11_REGISTER_RDTR,
55 };
56
57
58 struct arm11_reg_defs
59 {
60 char * name;
61 uint32_t num;
62 int gdb_num;
63 enum arm11_regtype type;
64 };
65
66 /* update arm11_regcache_ids when changing this */
67 static const struct arm11_reg_defs arm11_reg_defs[] =
68 {
69 /* Debug Registers */
70 {"dscr", 0, -1, ARM11_REGISTER_DSCR},
71 {"wdtr", 0, -1, ARM11_REGISTER_WDTR},
72 {"rdtr", 0, -1, ARM11_REGISTER_RDTR},
73 };
74
75 enum arm11_regcache_ids
76 {
77 ARM11_RC_DSCR,
78 ARM11_RC_WDTR,
79 ARM11_RC_RDTR,
80
81 ARM11_RC_MAX,
82 };
83
84 static int arm11_on_enter_debug_state(struct arm11_common *arm11);
85 static int arm11_step(struct target *target, int current,
86 uint32_t address, int handle_breakpoints);
87 /* helpers */
88 static int arm11_build_reg_cache(struct target *target);
89 static int arm11_set_reg(struct reg *reg, uint8_t *buf);
90 static int arm11_get_reg(struct reg *reg);
91
92
93 /** Check and if necessary take control of the system
94 *
95 * \param arm11 Target state variable.
96 * \param dscr If the current DSCR content is
97 * available a pointer to a word holding the
98 * DSCR can be passed. Otherwise use NULL.
99 */
100 static int arm11_check_init(struct arm11_common *arm11, uint32_t *dscr)
101 {
102 uint32_t dscr_local_tmp_copy;
103
104 if (!dscr)
105 {
106 dscr = &dscr_local_tmp_copy;
107
108 CHECK_RETVAL(arm11_read_DSCR(arm11, dscr));
109 }
110
111 if (!(*dscr & ARM11_DSCR_MODE_SELECT))
112 {
113 LOG_DEBUG("Bringing target into debug mode");
114
115 *dscr |= ARM11_DSCR_MODE_SELECT; /* Halt debug-mode */
116 arm11_write_DSCR(arm11, *dscr);
117
118 /* add further reset initialization here */
119
120 arm11->simulate_reset_on_next_halt = true;
121
122 if (*dscr & ARM11_DSCR_CORE_HALTED)
123 {
124 /** \todo TODO: this needs further scrutiny because
125 * arm11_on_enter_debug_state() never gets properly called.
126 * As a result we don't read the actual register states from
127 * the target.
128 */
129
130 arm11->target->state = TARGET_HALTED;
131 arm11->target->debug_reason = arm11_get_DSCR_debug_reason(*dscr);
132 }
133 else
134 {
135 arm11->target->state = TARGET_RUNNING;
136 arm11->target->debug_reason = DBG_REASON_NOTHALTED;
137 }
138
139 arm11_sc7_clear_vbw(arm11);
140 }
141
142 return ERROR_OK;
143 }
144
145
146
147 #define R(x) \
148 (arm11->reg_values[ARM11_RC_##x])
149
150 /** Save processor state.
151 *
152 * This is called when the HALT instruction has succeeded
153 * or on other occasions that stop the processor.
154 *
155 */
156 static int arm11_on_enter_debug_state(struct arm11_common *arm11)
157 {
158 int retval;
159
160 /* REVISIT entire cache should already be invalid !!! */
161 register_cache_invalidate(arm11->arm.core_cache);
162
163 for (size_t i = 0; i < ARRAY_SIZE(arm11->reg_values); i++)
164 {
165 arm11->reg_list[i].valid = 1;
166 arm11->reg_list[i].dirty = 0;
167 }
168
169 /* See e.g. ARM1136 TRM, "14.8.4 Entering Debug state" */
170
171 /* Save DSCR */
172 CHECK_RETVAL(arm11_read_DSCR(arm11, &R(DSCR)));
173
174 /* Save wDTR */
175
176 if (R(DSCR) & ARM11_DSCR_WDTR_FULL)
177 {
178 arm11_add_debug_SCAN_N(arm11, 0x05, ARM11_TAP_DEFAULT);
179
180 arm11_add_IR(arm11, ARM11_INTEST, ARM11_TAP_DEFAULT);
181
182 struct scan_field chain5_fields[3];
183
184 arm11_setup_field(arm11, 32, NULL, &R(WDTR), chain5_fields + 0);
185 arm11_setup_field(arm11, 1, NULL, NULL, chain5_fields + 1);
186 arm11_setup_field(arm11, 1, NULL, NULL, chain5_fields + 2);
187
188 arm11_add_dr_scan_vc(ARRAY_SIZE(chain5_fields), chain5_fields, TAP_DRPAUSE);
189 }
190 else
191 {
192 arm11->reg_list[ARM11_RC_WDTR].valid = 0;
193 }
194
195
196 /* DSCR: set ARM11_DSCR_EXECUTE_ARM_INSTRUCTION_ENABLE
197 *
198 * ARM1176 spec says this is needed only for wDTR/rDTR's "ITR mode",
199 * but not to issue ITRs. ARM1136 seems to require this to issue
200 * ITR's as well...
201 */
202 uint32_t new_dscr = R(DSCR) | ARM11_DSCR_EXECUTE_ARM_INSTRUCTION_ENABLE;
203
204 /* this executes JTAG queue: */
205
206 arm11_write_DSCR(arm11, new_dscr);
207
208
209 /* From the spec:
210 Before executing any instruction in debug state you have to drain the write buffer.
211 This ensures that no imprecise Data Aborts can return at a later point:*/
212
213 /** \todo TODO: Test drain write buffer. */
214
215 #if 0
216 while (1)
217 {
218 /* MRC p14,0,R0,c5,c10,0 */
219 // arm11_run_instr_no_data1(arm11, /*0xee150e1a*/0xe320f000);
220
221 /* mcr 15, 0, r0, cr7, cr10, {4} */
222 arm11_run_instr_no_data1(arm11, 0xee070f9a);
223
224 uint32_t dscr = arm11_read_DSCR(arm11);
225
226 LOG_DEBUG("DRAIN, DSCR %08x", dscr);
227
228 if (dscr & ARM11_DSCR_STICKY_IMPRECISE_DATA_ABORT)
229 {
230 arm11_run_instr_no_data1(arm11, 0xe320f000);
231
232 dscr = arm11_read_DSCR(arm11);
233
234 LOG_DEBUG("DRAIN, DSCR %08x (DONE)", dscr);
235
236 break;
237 }
238 }
239 #endif
240
241 /* Save registers.
242 *
243 * NOTE: ARM1136 TRM suggests saving just R0 here now, then
244 * CPSR and PC after the rDTR stuff. We do it all at once.
245 */
246 retval = arm_dpm_read_current_registers(&arm11->dpm);
247 if (retval != ERROR_OK)
248 LOG_ERROR("DPM REG READ -- fail %d", retval);
249
250 retval = arm11_run_instr_data_prepare(arm11);
251 if (retval != ERROR_OK)
252 return retval;
253
254 /* maybe save rDTR */
255
256 /* check rDTRfull in DSCR */
257
258 if (R(DSCR) & ARM11_DSCR_RDTR_FULL)
259 {
260 /* MRC p14,0,R0,c0,c5,0 (move rDTR -> r0 (-> wDTR -> local var)) */
261 retval = arm11_run_instr_data_from_core_via_r0(arm11, 0xEE100E15, &R(RDTR));
262 if (retval != ERROR_OK)
263 return retval;
264 }
265 else
266 {
267 arm11->reg_list[ARM11_RC_RDTR].valid = 0;
268 }
269
270 /* REVISIT Now that we've saved core state, there's may also
271 * be MMU and cache state to care about ...
272 */
273
274 if (arm11->simulate_reset_on_next_halt)
275 {
276 arm11->simulate_reset_on_next_halt = false;
277
278 LOG_DEBUG("Reset c1 Control Register");
279
280 /* Write 0 (reset value) to Control register 0 to disable MMU/Cache etc. */
281
282 /* MCR p15,0,R0,c1,c0,0 */
283 retval = arm11_run_instr_data_to_core_via_r0(arm11, 0xee010f10, 0);
284 if (retval != ERROR_OK)
285 return retval;
286
287 }
288
289 retval = arm11_run_instr_data_finish(arm11);
290 if (retval != ERROR_OK)
291 return retval;
292
293 return ERROR_OK;
294 }
295
296 /**
297 * Restore processor state. This is called in preparation for
298 * the RESTART function.
299 */
300 static int arm11_leave_debug_state(struct arm11_common *arm11, bool bpwp)
301 {
302 int retval;
303
304 /* See e.g. ARM1136 TRM, "14.8.5 Leaving Debug state" */
305
306 /* NOTE: the ARM1136 TRM suggests restoring all registers
307 * except R0/PC/CPSR right now. Instead, we do them all
308 * at once, just a bit later on.
309 */
310
311 /* REVISIT once we start caring about MMU and cache state,
312 * address it here ...
313 */
314
315 /* spec says clear wDTR and rDTR; we assume they are clear as
316 otherwise our programming would be sloppy */
317 {
318 uint32_t DSCR;
319
320 CHECK_RETVAL(arm11_read_DSCR(arm11, &DSCR));
321
322 if (DSCR & (ARM11_DSCR_RDTR_FULL | ARM11_DSCR_WDTR_FULL))
323 {
324 /*
325 The wDTR/rDTR two registers that are used to send/receive data to/from
326 the core in tandem with corresponding instruction codes that are
327 written into the core. The RDTR FULL/WDTR FULL flag indicates that the
328 registers hold data that was written by one side (CPU or JTAG) and not
329 read out by the other side.
330 */
331 LOG_ERROR("wDTR/rDTR inconsistent (DSCR %08" PRIx32 ")", DSCR);
332 return ERROR_FAIL;
333 }
334 }
335
336 /* maybe restore original wDTR */
337 if ((R(DSCR) & ARM11_DSCR_WDTR_FULL) || arm11->reg_list[ARM11_RC_WDTR].dirty)
338 {
339 retval = arm11_run_instr_data_prepare(arm11);
340 if (retval != ERROR_OK)
341 return retval;
342
343 /* MCR p14,0,R0,c0,c5,0 */
344 retval = arm11_run_instr_data_to_core_via_r0(arm11, 0xee000e15, R(WDTR));
345 if (retval != ERROR_OK)
346 return retval;
347
348 retval = arm11_run_instr_data_finish(arm11);
349 if (retval != ERROR_OK)
350 return retval;
351 }
352
353 /* restore CPSR, PC, and R0 ... after flushing any modified
354 * registers.
355 */
356 retval = arm_dpm_write_dirty_registers(&arm11->dpm, bpwp);
357
358 register_cache_invalidate(arm11->arm.core_cache);
359
360 /* restore DSCR */
361
362 arm11_write_DSCR(arm11, R(DSCR));
363
364 /* maybe restore rDTR */
365
366 if (R(DSCR) & ARM11_DSCR_RDTR_FULL || arm11->reg_list[ARM11_RC_RDTR].dirty)
367 {
368 arm11_add_debug_SCAN_N(arm11, 0x05, ARM11_TAP_DEFAULT);
369
370 arm11_add_IR(arm11, ARM11_EXTEST, ARM11_TAP_DEFAULT);
371
372 struct scan_field chain5_fields[3];
373
374 uint8_t Ready = 0; /* ignored */
375 uint8_t Valid = 0; /* ignored */
376
377 arm11_setup_field(arm11, 32, &R(RDTR), NULL, chain5_fields + 0);
378 arm11_setup_field(arm11, 1, &Ready, NULL, chain5_fields + 1);
379 arm11_setup_field(arm11, 1, &Valid, NULL, chain5_fields + 2);
380
381 arm11_add_dr_scan_vc(ARRAY_SIZE(chain5_fields), chain5_fields, TAP_DRPAUSE);
382 }
383
384 /* now processor is ready to RESTART */
385
386 return ERROR_OK;
387 }
388
389 /* poll current target status */
390 static int arm11_poll(struct target *target)
391 {
392 int retval;
393 struct arm11_common *arm11 = target_to_arm11(target);
394 uint32_t dscr;
395
396 CHECK_RETVAL(arm11_read_DSCR(arm11, &dscr));
397
398 LOG_DEBUG("DSCR %08" PRIx32 "", dscr);
399
400 CHECK_RETVAL(arm11_check_init(arm11, &dscr));
401
402 if (dscr & ARM11_DSCR_CORE_HALTED)
403 {
404 if (target->state != TARGET_HALTED)
405 {
406 enum target_state old_state = target->state;
407
408 LOG_DEBUG("enter TARGET_HALTED");
409 target->state = TARGET_HALTED;
410 target->debug_reason = arm11_get_DSCR_debug_reason(dscr);
411 retval = arm11_on_enter_debug_state(arm11);
412 if (retval != ERROR_OK)
413 return retval;
414
415 target_call_event_callbacks(target,
416 old_state == TARGET_DEBUG_RUNNING ? TARGET_EVENT_DEBUG_HALTED : TARGET_EVENT_HALTED);
417 }
418 }
419 else
420 {
421 if (target->state != TARGET_RUNNING && target->state != TARGET_DEBUG_RUNNING)
422 {
423 LOG_DEBUG("enter TARGET_RUNNING");
424 target->state = TARGET_RUNNING;
425 target->debug_reason = DBG_REASON_NOTHALTED;
426 }
427 }
428
429 return ERROR_OK;
430 }
431 /* architecture specific status reply */
432 static int arm11_arch_state(struct target *target)
433 {
434 int retval;
435
436 retval = armv4_5_arch_state(target);
437
438 /* REVISIT also display ARM11-specific MMU and cache status ... */
439
440 return retval;
441 }
442
443 /* target request support */
444 static int arm11_target_request_data(struct target *target,
445 uint32_t size, uint8_t *buffer)
446 {
447 LOG_WARNING("Not implemented: %s", __func__);
448
449 return ERROR_FAIL;
450 }
451
452 /* target execution control */
453 static int arm11_halt(struct target *target)
454 {
455 struct arm11_common *arm11 = target_to_arm11(target);
456
457 LOG_DEBUG("target->state: %s",
458 target_state_name(target));
459
460 if (target->state == TARGET_UNKNOWN)
461 {
462 arm11->simulate_reset_on_next_halt = true;
463 }
464
465 if (target->state == TARGET_HALTED)
466 {
467 LOG_DEBUG("target was already halted");
468 return ERROR_OK;
469 }
470
471 arm11_add_IR(arm11, ARM11_HALT, TAP_IDLE);
472
473 CHECK_RETVAL(jtag_execute_queue());
474
475 uint32_t dscr;
476
477 int i = 0;
478 while (1)
479 {
480 CHECK_RETVAL(arm11_read_DSCR(arm11, &dscr));
481
482 if (dscr & ARM11_DSCR_CORE_HALTED)
483 break;
484
485
486 long long then = 0;
487 if (i == 1000)
488 {
489 then = timeval_ms();
490 }
491 if (i >= 1000)
492 {
493 if ((timeval_ms()-then) > 1000)
494 {
495 LOG_WARNING("Timeout (1000ms) waiting for instructions to complete");
496 return ERROR_FAIL;
497 }
498 }
499 i++;
500 }
501
502 arm11_on_enter_debug_state(arm11);
503
504 enum target_state old_state = target->state;
505
506 target->state = TARGET_HALTED;
507 target->debug_reason = arm11_get_DSCR_debug_reason(dscr);
508
509 CHECK_RETVAL(
510 target_call_event_callbacks(target,
511 old_state == TARGET_DEBUG_RUNNING ? TARGET_EVENT_DEBUG_HALTED : TARGET_EVENT_HALTED));
512
513 return ERROR_OK;
514 }
515
516 static uint32_t
517 arm11_nextpc(struct arm11_common *arm11, int current, uint32_t address)
518 {
519 void *value = arm11->arm.core_cache->reg_list[15].value;
520
521 if (!current)
522 buf_set_u32(value, 0, 32, address);
523 else
524 address = buf_get_u32(value, 0, 32);
525
526 return address;
527 }
528
529 static int arm11_resume(struct target *target, int current,
530 uint32_t address, int handle_breakpoints, int debug_execution)
531 {
532 // LOG_DEBUG("current %d address %08x handle_breakpoints %d debug_execution %d",
533 // current, address, handle_breakpoints, debug_execution);
534
535 struct arm11_common *arm11 = target_to_arm11(target);
536
537 LOG_DEBUG("target->state: %s",
538 target_state_name(target));
539
540
541 if (target->state != TARGET_HALTED)
542 {
543 LOG_ERROR("Target not halted");
544 return ERROR_TARGET_NOT_HALTED;
545 }
546
547 address = arm11_nextpc(arm11, current, address);
548
549 LOG_DEBUG("RESUME PC %08" PRIx32 "%s", address, !current ? "!" : "");
550
551 /* clear breakpoints/watchpoints and VCR*/
552 arm11_sc7_clear_vbw(arm11);
553
554 if (!debug_execution)
555 target_free_all_working_areas(target);
556
557 /* Set up breakpoints */
558 if (handle_breakpoints)
559 {
560 /* check if one matches PC and step over it if necessary */
561
562 struct breakpoint * bp;
563
564 for (bp = target->breakpoints; bp; bp = bp->next)
565 {
566 if (bp->address == address)
567 {
568 LOG_DEBUG("must step over %08" PRIx32 "", bp->address);
569 arm11_step(target, 1, 0, 0);
570 break;
571 }
572 }
573
574 /* set all breakpoints */
575
576 unsigned brp_num = 0;
577
578 for (bp = target->breakpoints; bp; bp = bp->next)
579 {
580 struct arm11_sc7_action brp[2];
581
582 brp[0].write = 1;
583 brp[0].address = ARM11_SC7_BVR0 + brp_num;
584 brp[0].value = bp->address;
585 brp[1].write = 1;
586 brp[1].address = ARM11_SC7_BCR0 + brp_num;
587 brp[1].value = 0x1 | (3 << 1) | (0x0F << 5) | (0 << 14) | (0 << 16) | (0 << 20) | (0 << 21);
588
589 arm11_sc7_run(arm11, brp, ARRAY_SIZE(brp));
590
591 LOG_DEBUG("Add BP %d at %08" PRIx32, brp_num,
592 bp->address);
593
594 brp_num++;
595 }
596
597 arm11_sc7_set_vcr(arm11, arm11_vcr);
598 }
599
600 arm11_leave_debug_state(arm11, handle_breakpoints);
601
602 arm11_add_IR(arm11, ARM11_RESTART, TAP_IDLE);
603
604 CHECK_RETVAL(jtag_execute_queue());
605
606 int i = 0;
607 while (1)
608 {
609 uint32_t dscr;
610
611 CHECK_RETVAL(arm11_read_DSCR(arm11, &dscr));
612
613 LOG_DEBUG("DSCR %08" PRIx32 "", dscr);
614
615 if (dscr & ARM11_DSCR_CORE_RESTARTED)
616 break;
617
618
619 long long then = 0;
620 if (i == 1000)
621 {
622 then = timeval_ms();
623 }
624 if (i >= 1000)
625 {
626 if ((timeval_ms()-then) > 1000)
627 {
628 LOG_WARNING("Timeout (1000ms) waiting for instructions to complete");
629 return ERROR_FAIL;
630 }
631 }
632 i++;
633 }
634
635 if (!debug_execution)
636 {
637 target->state = TARGET_RUNNING;
638 target->debug_reason = DBG_REASON_NOTHALTED;
639
640 CHECK_RETVAL(target_call_event_callbacks(target, TARGET_EVENT_RESUMED));
641 }
642 else
643 {
644 target->state = TARGET_DEBUG_RUNNING;
645 target->debug_reason = DBG_REASON_NOTHALTED;
646
647 CHECK_RETVAL(target_call_event_callbacks(target, TARGET_EVENT_RESUMED));
648 }
649
650 return ERROR_OK;
651 }
652
653 static int arm11_step(struct target *target, int current,
654 uint32_t address, int handle_breakpoints)
655 {
656 LOG_DEBUG("target->state: %s",
657 target_state_name(target));
658
659 if (target->state != TARGET_HALTED)
660 {
661 LOG_WARNING("target was not halted");
662 return ERROR_TARGET_NOT_HALTED;
663 }
664
665 struct arm11_common *arm11 = target_to_arm11(target);
666
667 address = arm11_nextpc(arm11, current, address);
668
669 LOG_DEBUG("STEP PC %08" PRIx32 "%s", address, !current ? "!" : "");
670
671
672 /** \todo TODO: Thumb not supported here */
673
674 uint32_t next_instruction;
675
676 CHECK_RETVAL(arm11_read_memory_word(arm11, address, &next_instruction));
677
678 /* skip over BKPT */
679 if ((next_instruction & 0xFFF00070) == 0xe1200070)
680 {
681 address = arm11_nextpc(arm11, 0, address + 4);
682 LOG_DEBUG("Skipping BKPT");
683 }
684 /* skip over Wait for interrupt / Standby */
685 /* mcr 15, 0, r?, cr7, cr0, {4} */
686 else if ((next_instruction & 0xFFFF0FFF) == 0xee070f90)
687 {
688 address = arm11_nextpc(arm11, 0, address + 4);
689 LOG_DEBUG("Skipping WFI");
690 }
691 /* ignore B to self */
692 else if ((next_instruction & 0xFEFFFFFF) == 0xeafffffe)
693 {
694 LOG_DEBUG("Not stepping jump to self");
695 }
696 else
697 {
698 /** \todo TODO: check if break-/watchpoints make any sense at all in combination
699 * with this. */
700
701 /** \todo TODO: check if disabling IRQs might be a good idea here. Alternatively
702 * the VCR might be something worth looking into. */
703
704
705 /* Set up breakpoint for stepping */
706
707 struct arm11_sc7_action brp[2];
708
709 brp[0].write = 1;
710 brp[0].address = ARM11_SC7_BVR0;
711 brp[1].write = 1;
712 brp[1].address = ARM11_SC7_BCR0;
713
714 if (arm11_config_hardware_step)
715 {
716 /* Hardware single stepping ("instruction address
717 * mismatch") is used if enabled. It's not quite
718 * exactly "run one instruction"; "branch to here"
719 * loops won't break, neither will some other cases,
720 * but it's probably the best default.
721 *
722 * Hardware single stepping isn't supported on v6
723 * debug modules. ARM1176 and v7 can support it...
724 *
725 * FIXME Thumb stepping likely needs to use 0x03
726 * or 0xc0 byte masks, not 0x0f.
727 */
728 brp[0].value = address;
729 brp[1].value = 0x1 | (3 << 1) | (0x0F << 5)
730 | (0 << 14) | (0 << 16) | (0 << 20)
731 | (2 << 21);
732 } else
733 {
734 /* Sets a breakpoint on the next PC, as calculated
735 * by instruction set simulation.
736 *
737 * REVISIT stepping Thumb on ARM1156 requires Thumb2
738 * support from the simulator.
739 */
740 uint32_t next_pc;
741 int retval;
742
743 retval = arm_simulate_step(target, &next_pc);
744 if (retval != ERROR_OK)
745 return retval;
746
747 brp[0].value = next_pc;
748 brp[1].value = 0x1 | (3 << 1) | (0x0F << 5)
749 | (0 << 14) | (0 << 16) | (0 << 20)
750 | (0 << 21);
751 }
752
753 CHECK_RETVAL(arm11_sc7_run(arm11, brp, ARRAY_SIZE(brp)));
754
755 /* resume */
756
757
758 if (arm11_config_step_irq_enable)
759 R(DSCR) &= ~ARM11_DSCR_INTERRUPTS_DISABLE; /* should be redundant */
760 else
761 R(DSCR) |= ARM11_DSCR_INTERRUPTS_DISABLE;
762
763
764 CHECK_RETVAL(arm11_leave_debug_state(arm11, handle_breakpoints));
765
766 arm11_add_IR(arm11, ARM11_RESTART, TAP_IDLE);
767
768 CHECK_RETVAL(jtag_execute_queue());
769
770 /* wait for halt */
771 int i = 0;
772 while (1)
773 {
774 uint32_t dscr;
775
776 CHECK_RETVAL(arm11_read_DSCR(arm11, &dscr));
777
778 LOG_DEBUG("DSCR %08" PRIx32 "e", dscr);
779
780 if ((dscr & (ARM11_DSCR_CORE_RESTARTED | ARM11_DSCR_CORE_HALTED)) ==
781 (ARM11_DSCR_CORE_RESTARTED | ARM11_DSCR_CORE_HALTED))
782 break;
783
784 long long then = 0;
785 if (i == 1000)
786 {
787 then = timeval_ms();
788 }
789 if (i >= 1000)
790 {
791 if ((timeval_ms()-then) > 1000)
792 {
793 LOG_WARNING("Timeout (1000ms) waiting for instructions to complete");
794 return ERROR_FAIL;
795 }
796 }
797 i++;
798 }
799
800 /* clear breakpoint */
801 arm11_sc7_clear_vbw(arm11);
802
803 /* save state */
804 CHECK_RETVAL(arm11_on_enter_debug_state(arm11));
805
806 /* restore default state */
807 R(DSCR) &= ~ARM11_DSCR_INTERRUPTS_DISABLE;
808
809 }
810
811 // target->state = TARGET_HALTED;
812 target->debug_reason = DBG_REASON_SINGLESTEP;
813
814 CHECK_RETVAL(target_call_event_callbacks(target, TARGET_EVENT_HALTED));
815
816 return ERROR_OK;
817 }
818
819 static int arm11_assert_reset(struct target *target)
820 {
821 int retval;
822 struct arm11_common *arm11 = target_to_arm11(target);
823
824 retval = arm11_check_init(arm11, NULL);
825 if (retval != ERROR_OK)
826 return retval;
827
828 target->state = TARGET_UNKNOWN;
829
830 /* we would very much like to reset into the halted, state,
831 * but resetting and halting is second best... */
832 if (target->reset_halt)
833 {
834 CHECK_RETVAL(target_halt(target));
835 }
836
837
838 /* srst is funny. We can not do *anything* else while it's asserted
839 * and it has unkonwn side effects. Make sure no other code runs
840 * meanwhile.
841 *
842 * Code below assumes srst:
843 *
844 * - Causes power-on-reset (but of what parts of the system?). Bug
845 * in arm11?
846 *
847 * - Messes us TAP state without asserting trst.
848 *
849 * - There is another bug in the arm11 core. When you generate an access to
850 * external logic (for example ddr controller via AHB bus) and that block
851 * is not configured (perhaps it is still held in reset), that transaction
852 * will never complete. This will hang arm11 core but it will also hang
853 * JTAG controller. Nothing, short of srst assertion will bring it out of
854 * this.
855 *
856 * Mysteries:
857 *
858 * - What should the PC be after an srst reset when starting in the halted
859 * state?
860 */
861
862 jtag_add_reset(0, 1);
863 jtag_add_reset(0, 0);
864
865 /* How long do we have to wait? */
866 jtag_add_sleep(5000);
867
868 /* un-mess up TAP state */
869 jtag_add_tlr();
870
871 retval = jtag_execute_queue();
872 if (retval != ERROR_OK)
873 {
874 return retval;
875 }
876
877 return ERROR_OK;
878 }
879
880 static int arm11_deassert_reset(struct target *target)
881 {
882 return ERROR_OK;
883 }
884
885 static int arm11_soft_reset_halt(struct target *target)
886 {
887 LOG_WARNING("Not implemented: %s", __func__);
888
889 return ERROR_FAIL;
890 }
891
892 /* target memory access
893 * size: 1 = byte (8bit), 2 = half-word (16bit), 4 = word (32bit)
894 * count: number of items of <size>
895 *
896 * arm11_config_memrw_no_increment - in the future we may want to be able
897 * to read/write a range of data to a "port". a "port" is an action on
898 * read memory address for some peripheral.
899 */
900 static int arm11_read_memory_inner(struct target *target,
901 uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer,
902 bool arm11_config_memrw_no_increment)
903 {
904 /** \todo TODO: check if buffer cast to uint32_t* and uint16_t* might cause alignment problems */
905 int retval;
906
907 if (target->state != TARGET_HALTED)
908 {
909 LOG_WARNING("target was not halted");
910 return ERROR_TARGET_NOT_HALTED;
911 }
912
913 LOG_DEBUG("ADDR %08" PRIx32 " SIZE %08" PRIx32 " COUNT %08" PRIx32 "", address, size, count);
914
915 struct arm11_common *arm11 = target_to_arm11(target);
916
917 retval = arm11_run_instr_data_prepare(arm11);
918 if (retval != ERROR_OK)
919 return retval;
920
921 /* MRC p14,0,r0,c0,c5,0 */
922 retval = arm11_run_instr_data_to_core1(arm11, 0xee100e15, address);
923 if (retval != ERROR_OK)
924 return retval;
925
926 switch (size)
927 {
928 case 1:
929 arm11->arm.core_cache->reg_list[1].dirty = true;
930
931 for (size_t i = 0; i < count; i++)
932 {
933 /* ldrb r1, [r0], #1 */
934 /* ldrb r1, [r0] */
935 arm11_run_instr_no_data1(arm11,
936 !arm11_config_memrw_no_increment ? 0xe4d01001 : 0xe5d01000);
937
938 uint32_t res;
939 /* MCR p14,0,R1,c0,c5,0 */
940 arm11_run_instr_data_from_core(arm11, 0xEE001E15, &res, 1);
941
942 *buffer++ = res;
943 }
944
945 break;
946
947 case 2:
948 {
949 arm11->arm.core_cache->reg_list[1].dirty = true;
950
951 for (size_t i = 0; i < count; i++)
952 {
953 /* ldrh r1, [r0], #2 */
954 arm11_run_instr_no_data1(arm11,
955 !arm11_config_memrw_no_increment ? 0xe0d010b2 : 0xe1d010b0);
956
957 uint32_t res;
958
959 /* MCR p14,0,R1,c0,c5,0 */
960 arm11_run_instr_data_from_core(arm11, 0xEE001E15, &res, 1);
961
962 uint16_t svalue = res;
963 memcpy(buffer + i * sizeof(uint16_t), &svalue, sizeof(uint16_t));
964 }
965
966 break;
967 }
968
969 case 4:
970 {
971 uint32_t instr = !arm11_config_memrw_no_increment ? 0xecb05e01 : 0xed905e00;
972 /** \todo TODO: buffer cast to uint32_t* causes alignment warnings */
973 uint32_t *words = (uint32_t *)buffer;
974
975 /* LDC p14,c5,[R0],#4 */
976 /* LDC p14,c5,[R0] */
977 arm11_run_instr_data_from_core(arm11, instr, words, count);
978 break;
979 }
980 }
981
982 return arm11_run_instr_data_finish(arm11);
983 }
984
985 static int arm11_read_memory(struct target *target, uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer)
986 {
987 return arm11_read_memory_inner(target, address, size, count, buffer, false);
988 }
989
990 /*
991 * no_increment - in the future we may want to be able
992 * to read/write a range of data to a "port". a "port" is an action on
993 * read memory address for some peripheral.
994 */
995 static int arm11_write_memory_inner(struct target *target,
996 uint32_t address, uint32_t size,
997 uint32_t count, uint8_t *buffer,
998 bool no_increment)
999 {
1000 int retval;
1001
1002 if (target->state != TARGET_HALTED)
1003 {
1004 LOG_WARNING("target was not halted");
1005 return ERROR_TARGET_NOT_HALTED;
1006 }
1007
1008 LOG_DEBUG("ADDR %08" PRIx32 " SIZE %08" PRIx32 " COUNT %08" PRIx32 "", address, size, count);
1009
1010 struct arm11_common *arm11 = target_to_arm11(target);
1011
1012 retval = arm11_run_instr_data_prepare(arm11);
1013 if (retval != ERROR_OK)
1014 return retval;
1015
1016 /* MRC p14,0,r0,c0,c5,0 */
1017 retval = arm11_run_instr_data_to_core1(arm11, 0xee100e15, address);
1018 if (retval != ERROR_OK)
1019 return retval;
1020
1021 /* burst writes are not used for single words as those may well be
1022 * reset init script writes.
1023 *
1024 * The other advantage is that as burst writes are default, we'll
1025 * now exercise both burst and non-burst code paths with the
1026 * default settings, increasing code coverage.
1027 */
1028 bool burst = arm11_config_memwrite_burst && (count > 1);
1029
1030 switch (size)
1031 {
1032 case 1:
1033 {
1034 arm11->arm.core_cache->reg_list[1].dirty = true;
1035
1036 for (size_t i = 0; i < count; i++)
1037 {
1038 /* MRC p14,0,r1,c0,c5,0 */
1039 retval = arm11_run_instr_data_to_core1(arm11, 0xee101e15, *buffer++);
1040 if (retval != ERROR_OK)
1041 return retval;
1042
1043 /* strb r1, [r0], #1 */
1044 /* strb r1, [r0] */
1045 retval = arm11_run_instr_no_data1(arm11,
1046 !no_increment
1047 ? 0xe4c01001
1048 : 0xe5c01000);
1049 if (retval != ERROR_OK)
1050 return retval;
1051 }
1052
1053 break;
1054 }
1055
1056 case 2:
1057 {
1058 arm11->arm.core_cache->reg_list[1].dirty = true;
1059
1060 for (size_t i = 0; i < count; i++)
1061 {
1062 uint16_t value;
1063 memcpy(&value, buffer + i * sizeof(uint16_t), sizeof(uint16_t));
1064
1065 /* MRC p14,0,r1,c0,c5,0 */
1066 retval = arm11_run_instr_data_to_core1(arm11, 0xee101e15, value);
1067 if (retval != ERROR_OK)
1068 return retval;
1069
1070 /* strh r1, [r0], #2 */
1071 /* strh r1, [r0] */
1072 retval = arm11_run_instr_no_data1(arm11,
1073 !no_increment
1074 ? 0xe0c010b2
1075 : 0xe1c010b0);
1076 if (retval != ERROR_OK)
1077 return retval;
1078 }
1079
1080 break;
1081 }
1082
1083 case 4: {
1084 uint32_t instr = !no_increment ? 0xeca05e01 : 0xed805e00;
1085
1086 /** \todo TODO: buffer cast to uint32_t* causes alignment warnings */
1087 uint32_t *words = (uint32_t*)buffer;
1088
1089 if (!burst)
1090 {
1091 /* STC p14,c5,[R0],#4 */
1092 /* STC p14,c5,[R0]*/
1093 retval = arm11_run_instr_data_to_core(arm11, instr, words, count);
1094 if (retval != ERROR_OK)
1095 return retval;
1096 }
1097 else
1098 {
1099 /* STC p14,c5,[R0],#4 */
1100 /* STC p14,c5,[R0]*/
1101 retval = arm11_run_instr_data_to_core_noack(arm11, instr, words, count);
1102 if (retval != ERROR_OK)
1103 return retval;
1104 }
1105
1106 break;
1107 }
1108 }
1109
1110 /* r0 verification */
1111 if (!no_increment)
1112 {
1113 uint32_t r0;
1114
1115 /* MCR p14,0,R0,c0,c5,0 */
1116 retval = arm11_run_instr_data_from_core(arm11, 0xEE000E15, &r0, 1);
1117 if (retval != ERROR_OK)
1118 return retval;
1119
1120 if (address + size * count != r0)
1121 {
1122 LOG_ERROR("Data transfer failed. Expected end "
1123 "address 0x%08x, got 0x%08x",
1124 (unsigned) (address + size * count),
1125 (unsigned) r0);
1126
1127 if (burst)
1128 LOG_ERROR("use 'arm11 memwrite burst disable' to disable fast burst mode");
1129
1130 if (arm11_config_memwrite_error_fatal)
1131 return ERROR_FAIL;
1132 }
1133 }
1134
1135 return arm11_run_instr_data_finish(arm11);
1136 }
1137
1138 static int arm11_write_memory(struct target *target,
1139 uint32_t address, uint32_t size,
1140 uint32_t count, uint8_t *buffer)
1141 {
1142 /* pointer increment matters only for multi-unit writes ...
1143 * not e.g. to a "reset the chip" controller.
1144 */
1145 return arm11_write_memory_inner(target, address, size,
1146 count, buffer, count == 1);
1147 }
1148
1149 /* write target memory in multiples of 4 byte, optimized for writing large quantities of data */
1150 static int arm11_bulk_write_memory(struct target *target,
1151 uint32_t address, uint32_t count, uint8_t *buffer)
1152 {
1153 if (target->state != TARGET_HALTED)
1154 {
1155 LOG_WARNING("target was not halted");
1156 return ERROR_TARGET_NOT_HALTED;
1157 }
1158
1159 return arm11_write_memory(target, address, 4, count, buffer);
1160 }
1161
1162 /* target break-/watchpoint control
1163 * rw: 0 = write, 1 = read, 2 = access
1164 */
1165 static int arm11_add_breakpoint(struct target *target,
1166 struct breakpoint *breakpoint)
1167 {
1168 struct arm11_common *arm11 = target_to_arm11(target);
1169
1170 #if 0
1171 if (breakpoint->type == BKPT_SOFT)
1172 {
1173 LOG_INFO("sw breakpoint requested, but software breakpoints not enabled");
1174 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1175 }
1176 #endif
1177
1178 if (!arm11->free_brps)
1179 {
1180 LOG_DEBUG("no breakpoint unit available for hardware breakpoint");
1181 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1182 }
1183
1184 if (breakpoint->length != 4)
1185 {
1186 LOG_DEBUG("only breakpoints of four bytes length supported");
1187 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1188 }
1189
1190 arm11->free_brps--;
1191
1192 return ERROR_OK;
1193 }
1194
1195 static int arm11_remove_breakpoint(struct target *target,
1196 struct breakpoint *breakpoint)
1197 {
1198 struct arm11_common *arm11 = target_to_arm11(target);
1199
1200 arm11->free_brps++;
1201
1202 return ERROR_OK;
1203 }
1204
1205 static int arm11_target_create(struct target *target, Jim_Interp *interp)
1206 {
1207 struct arm11_common *arm11;
1208
1209 if (target->tap == NULL)
1210 return ERROR_FAIL;
1211
1212 if (target->tap->ir_length != 5)
1213 {
1214 LOG_ERROR("'target arm11' expects IR LENGTH = 5");
1215 return ERROR_COMMAND_SYNTAX_ERROR;
1216 }
1217
1218 arm11 = calloc(1, sizeof *arm11);
1219 if (!arm11)
1220 return ERROR_FAIL;
1221
1222 armv4_5_init_arch_info(target, &arm11->arm);
1223
1224 arm11->target = target;
1225
1226 arm11->jtag_info.tap = target->tap;
1227 arm11->jtag_info.scann_size = 5;
1228 arm11->jtag_info.scann_instr = ARM11_SCAN_N;
1229 /* cur_scan_chain == 0 */
1230 arm11->jtag_info.intest_instr = ARM11_INTEST;
1231
1232 return ERROR_OK;
1233 }
1234
1235 static int arm11_init_target(struct command_context *cmd_ctx,
1236 struct target *target)
1237 {
1238 /* Initialize anything we can set up without talking to the target */
1239
1240 /* REVISIT do we really want such a debug-registers-only cache?
1241 * If we do, it should probably be handled purely by the DPM code,
1242 * so it works identically on the v7a/v7r cores.
1243 */
1244 return arm11_build_reg_cache(target);
1245 }
1246
1247 /* talk to the target and set things up */
1248 static int arm11_examine(struct target *target)
1249 {
1250 int retval;
1251 char *type;
1252 struct arm11_common *arm11 = target_to_arm11(target);
1253 uint32_t didr, device_id;
1254 uint8_t implementor;
1255
1256 /* FIXME split into do-first-time and do-every-time logic ... */
1257
1258 /* check IDCODE */
1259
1260 arm11_add_IR(arm11, ARM11_IDCODE, ARM11_TAP_DEFAULT);
1261
1262 struct scan_field idcode_field;
1263
1264 arm11_setup_field(arm11, 32, NULL, &device_id, &idcode_field);
1265
1266 arm11_add_dr_scan_vc(1, &idcode_field, TAP_DRPAUSE);
1267
1268 /* check DIDR */
1269
1270 arm11_add_debug_SCAN_N(arm11, 0x00, ARM11_TAP_DEFAULT);
1271
1272 arm11_add_IR(arm11, ARM11_INTEST, ARM11_TAP_DEFAULT);
1273
1274 struct scan_field chain0_fields[2];
1275
1276 arm11_setup_field(arm11, 32, NULL, &didr, chain0_fields + 0);
1277 arm11_setup_field(arm11, 8, NULL, &implementor, chain0_fields + 1);
1278
1279 arm11_add_dr_scan_vc(ARRAY_SIZE(chain0_fields), chain0_fields, TAP_IDLE);
1280
1281 CHECK_RETVAL(jtag_execute_queue());
1282
1283 switch (device_id & 0x0FFFF000)
1284 {
1285 case 0x07B36000:
1286 type = "ARM1136";
1287 break;
1288 case 0x07B56000:
1289 type = "ARM1156";
1290 break;
1291 case 0x07B76000:
1292 arm11->arm.core_type = ARM_MODE_MON;
1293 type = "ARM1176";
1294 break;
1295 default:
1296 LOG_ERROR("'target arm11' expects IDCODE 0x*7B*7****");
1297 return ERROR_FAIL;
1298 }
1299 LOG_INFO("found %s", type);
1300
1301 /* unlikely this could ever fail, but ... */
1302 switch ((didr >> 16) & 0x0F) {
1303 case ARM11_DEBUG_V6:
1304 case ARM11_DEBUG_V61: /* supports security extensions */
1305 break;
1306 default:
1307 LOG_ERROR("Only ARM v6 and v6.1 debug supported.");
1308 return ERROR_FAIL;
1309 }
1310
1311 arm11->brp = ((didr >> 24) & 0x0F) + 1;
1312 arm11->wrp = ((didr >> 28) & 0x0F) + 1;
1313
1314 /** \todo TODO: reserve one brp slot if we allow breakpoints during step */
1315 arm11->free_brps = arm11->brp;
1316 arm11->free_wrps = arm11->wrp;
1317
1318 LOG_DEBUG("IDCODE %08" PRIx32 " IMPLEMENTOR %02x DIDR %08" PRIx32,
1319 device_id, implementor, didr);
1320
1321 /* as a side-effect this reads DSCR and thus
1322 * clears the ARM11_DSCR_STICKY_PRECISE_DATA_ABORT / Sticky Precise Data Abort Flag
1323 * as suggested by the spec.
1324 */
1325
1326 retval = arm11_check_init(arm11, NULL);
1327 if (retval != ERROR_OK)
1328 return retval;
1329
1330 /* Build register cache "late", after target_init(), since we
1331 * want to know if this core supports Secure Monitor mode.
1332 */
1333 if (!target_was_examined(target)) {
1334 arm11_dpm_init(arm11, didr);
1335 retval = arm_dpm_setup(&arm11->dpm);
1336 }
1337
1338 /* ETM on ARM11 still uses original scanchain 6 access mode */
1339 if (arm11->arm.etm && !target_was_examined(target)) {
1340 *register_get_last_cache_p(&target->reg_cache) =
1341 etm_build_reg_cache(target, &arm11->jtag_info,
1342 arm11->arm.etm);
1343 retval = etm_setup(target);
1344 }
1345
1346 target_set_examined(target);
1347
1348 return ERROR_OK;
1349 }
1350
1351
1352 /** Load a register that is marked !valid in the register cache */
1353 static int arm11_get_reg(struct reg *reg)
1354 {
1355 struct target * target = ((struct arm11_reg_state *)reg->arch_info)->target;
1356
1357 if (target->state != TARGET_HALTED)
1358 {
1359 LOG_WARNING("target was not halted");
1360 return ERROR_TARGET_NOT_HALTED;
1361 }
1362
1363 /** \todo TODO: Check this. We assume that all registers are fetched at debug entry. */
1364
1365 #if 0
1366 struct arm11_common *arm11 = target_to_arm11(target);
1367 const struct arm11_reg_defs *arm11_reg_info = arm11_reg_defs + ((struct arm11_reg_state *)reg->arch_info)->def_index;
1368 #endif
1369
1370 return ERROR_OK;
1371 }
1372
1373 /** Change a value in the register cache */
1374 static int arm11_set_reg(struct reg *reg, uint8_t *buf)
1375 {
1376 struct target *target = ((struct arm11_reg_state *)reg->arch_info)->target;
1377 struct arm11_common *arm11 = target_to_arm11(target);
1378 // const struct arm11_reg_defs *arm11_reg_info = arm11_reg_defs + ((struct arm11_reg_state *)reg->arch_info)->def_index;
1379
1380 arm11->reg_values[((struct arm11_reg_state *)reg->arch_info)->def_index] = buf_get_u32(buf, 0, 32);
1381 reg->valid = 1;
1382 reg->dirty = 1;
1383
1384 return ERROR_OK;
1385 }
1386
1387 static const struct reg_arch_type arm11_reg_type = {
1388 .get = arm11_get_reg,
1389 .set = arm11_set_reg,
1390 };
1391
1392 static int arm11_build_reg_cache(struct target *target)
1393 {
1394 struct arm11_common *arm11 = target_to_arm11(target);
1395 struct reg_cache *cache;
1396 struct reg *reg_list;
1397 struct arm11_reg_state *arm11_reg_states;
1398
1399 cache = calloc(1, sizeof *cache);
1400 reg_list = calloc(ARM11_REGCACHE_COUNT, sizeof *reg_list);
1401 arm11_reg_states = calloc(ARM11_REGCACHE_COUNT,
1402 sizeof *arm11_reg_states);
1403 if (!cache || !reg_list || !arm11_reg_states) {
1404 free(cache);
1405 free(reg_list);
1406 free(arm11_reg_states);
1407 return ERROR_FAIL;
1408 }
1409
1410 arm11->reg_list = reg_list;
1411
1412 /* build cache for some of the debug registers */
1413 cache->name = "arm11 debug registers";
1414 cache->reg_list = reg_list;
1415 cache->num_regs = ARM11_REGCACHE_COUNT;
1416
1417 struct reg_cache **cache_p = register_get_last_cache_p(&target->reg_cache);
1418 (*cache_p) = cache;
1419
1420 arm11->core_cache = cache;
1421
1422 size_t i;
1423
1424 /* Not very elegant assertion */
1425 if (ARM11_REGCACHE_COUNT != ARRAY_SIZE(arm11->reg_values) ||
1426 ARM11_REGCACHE_COUNT != ARRAY_SIZE(arm11_reg_defs) ||
1427 ARM11_REGCACHE_COUNT != ARM11_RC_MAX)
1428 {
1429 LOG_ERROR("BUG: arm11->reg_values inconsistent (%d %u %u %d)",
1430 ARM11_REGCACHE_COUNT,
1431 (unsigned) ARRAY_SIZE(arm11->reg_values),
1432 (unsigned) ARRAY_SIZE(arm11_reg_defs),
1433 ARM11_RC_MAX);
1434 /* FIXME minimally, use a build_bug_on(X) mechanism;
1435 * runtime exit() here is bad!
1436 */
1437 exit(-1);
1438 }
1439
1440 for (i = 0; i < ARM11_REGCACHE_COUNT; i++)
1441 {
1442 struct reg * r = reg_list + i;
1443 const struct arm11_reg_defs * rd = arm11_reg_defs + i;
1444 struct arm11_reg_state * rs = arm11_reg_states + i;
1445
1446 r->name = rd->name;
1447 r->size = 32;
1448 r->value = (uint8_t *)(arm11->reg_values + i);
1449 r->dirty = 0;
1450 r->valid = 0;
1451 r->type = &arm11_reg_type;
1452 r->arch_info = rs;
1453
1454 rs->def_index = i;
1455 rs->target = target;
1456 }
1457
1458 return ERROR_OK;
1459 }
1460
1461 /* FIXME all these BOOL_WRAPPER things should be modifying
1462 * per-instance state, not shared state; ditto the vector
1463 * catch register support. Scan chains with multiple cores
1464 * should be able to say "work with this core like this,
1465 * that core like that". Example, ARM11 MPCore ...
1466 */
1467
1468 #define ARM11_BOOL_WRAPPER(name, print_name) \
1469 COMMAND_HANDLER(arm11_handle_bool_##name) \
1470 { \
1471 return CALL_COMMAND_HANDLER(handle_command_parse_bool, \
1472 &arm11_config_##name, print_name); \
1473 }
1474
1475 ARM11_BOOL_WRAPPER(memwrite_burst, "memory write burst mode")
1476 ARM11_BOOL_WRAPPER(memwrite_error_fatal, "fatal error mode for memory writes")
1477 ARM11_BOOL_WRAPPER(step_irq_enable, "IRQs while stepping")
1478 ARM11_BOOL_WRAPPER(hardware_step, "hardware single step")
1479
1480 COMMAND_HANDLER(arm11_handle_vcr)
1481 {
1482 switch (CMD_ARGC) {
1483 case 0:
1484 break;
1485 case 1:
1486 COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], arm11_vcr);
1487 break;
1488 default:
1489 return ERROR_COMMAND_SYNTAX_ERROR;
1490 }
1491
1492 LOG_INFO("VCR 0x%08" PRIx32 "", arm11_vcr);
1493 return ERROR_OK;
1494 }
1495
1496 static const struct command_registration arm11_mw_command_handlers[] = {
1497 {
1498 .name = "burst",
1499 .handler = &arm11_handle_bool_memwrite_burst,
1500 .mode = COMMAND_ANY,
1501 .help = "Enable/Disable non-standard but fast burst mode"
1502 " (default: enabled)",
1503 },
1504 {
1505 .name = "error_fatal",
1506 .handler = &arm11_handle_bool_memwrite_error_fatal,
1507 .mode = COMMAND_ANY,
1508 .help = "Terminate program if transfer error was found"
1509 " (default: enabled)",
1510 },
1511 COMMAND_REGISTRATION_DONE
1512 };
1513 static const struct command_registration arm11_any_command_handlers[] = {
1514 {
1515 /* "hardware_step" is only here to check if the default
1516 * simulate + breakpoint implementation is broken.
1517 * TEMPORARY! NOT DOCUMENTED! */
1518 .name = "hardware_step",
1519 .handler = &arm11_handle_bool_hardware_step,
1520 .mode = COMMAND_ANY,
1521 .help = "DEBUG ONLY - Hardware single stepping"
1522 " (default: disabled)",
1523 .usage = "(enable|disable)",
1524 },
1525 {
1526 .name = "memwrite",
1527 .mode = COMMAND_ANY,
1528 .help = "memwrite command group",
1529 .chain = arm11_mw_command_handlers,
1530 },
1531 {
1532 .name = "step_irq_enable",
1533 .handler = &arm11_handle_bool_step_irq_enable,
1534 .mode = COMMAND_ANY,
1535 .help = "Enable interrupts while stepping"
1536 " (default: disabled)",
1537 },
1538 {
1539 .name = "vcr",
1540 .handler = &arm11_handle_vcr,
1541 .mode = COMMAND_ANY,
1542 .help = "Control (Interrupt) Vector Catch Register",
1543 },
1544 COMMAND_REGISTRATION_DONE
1545 };
1546 static const struct command_registration arm11_command_handlers[] = {
1547 {
1548 .chain = arm_command_handlers,
1549 },
1550 {
1551 .chain = etm_command_handlers,
1552 },
1553 {
1554 .name = "arm11",
1555 .mode = COMMAND_ANY,
1556 .help = "ARM11 command group",
1557 .chain = arm11_any_command_handlers,
1558 },
1559 COMMAND_REGISTRATION_DONE
1560 };
1561
1562 /** Holds methods for ARM11xx targets. */
1563 struct target_type arm11_target = {
1564 .name = "arm11",
1565
1566 .poll = arm11_poll,
1567 .arch_state = arm11_arch_state,
1568
1569 .target_request_data = arm11_target_request_data,
1570
1571 .halt = arm11_halt,
1572 .resume = arm11_resume,
1573 .step = arm11_step,
1574
1575 .assert_reset = arm11_assert_reset,
1576 .deassert_reset = arm11_deassert_reset,
1577 .soft_reset_halt = arm11_soft_reset_halt,
1578
1579 .get_gdb_reg_list = armv4_5_get_gdb_reg_list,
1580
1581 .read_memory = arm11_read_memory,
1582 .write_memory = arm11_write_memory,
1583
1584 .bulk_write_memory = arm11_bulk_write_memory,
1585
1586 .checksum_memory = arm_checksum_memory,
1587 .blank_check_memory = arm_blank_check_memory,
1588
1589 .add_breakpoint = arm11_add_breakpoint,
1590 .remove_breakpoint = arm11_remove_breakpoint,
1591
1592 .run_algorithm = armv4_5_run_algorithm,
1593
1594 .commands = arm11_command_handlers,
1595 .target_create = arm11_target_create,
1596 .init_target = arm11_init_target,
1597 .examine = arm11_examine,
1598 };

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)