fix software breakpoints on xscale
[openocd/genbsdl.git] / src / target / xscale.c
blobe578a778215d9db2d4181d1021a2fd011b62423b
1 /***************************************************************************
2 * Copyright (C) 2006, 2007 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * Copyright (C) 2007,2008 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
7 * *
8 * Copyright (C) 2009 Michael Schwingen *
9 * michael@schwingen.org *
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 * This program is distributed in the hope that it will be useful, *
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
19 * GNU General Public License for more details. *
20 * *
21 * You should have received a copy of the GNU General Public License *
22 * along with this program; if not, write to the *
23 * Free Software Foundation, Inc., *
24 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
25 ***************************************************************************/
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
30 #include "breakpoints.h"
31 #include "xscale.h"
32 #include "target_type.h"
33 #include "arm_jtag.h"
34 #include "arm_simulator.h"
35 #include "arm_disassembler.h"
36 #include <helper/time_support.h>
37 #include "register.h"
38 #include "image.h"
39 #include "arm_opcodes.h"
40 #include "armv4_5.h"
44 * Important XScale documents available as of October 2009 include:
46 * Intel XScale® Core Developer’s Manual, January 2004
47 * Order Number: 273473-002
48 * This has a chapter detailing debug facilities, and punts some
49 * details to chip-specific microarchitecture documents.
51 * Hot-Debug for Intel XScale® Core Debug White Paper, May 2005
52 * Document Number: 273539-005
53 * Less detailed than the developer's manual, but summarizes those
54 * missing details (for most XScales) and gives LOTS of notes about
55 * debugger/handler interaction issues. Presents a simpler reset
56 * and load-handler sequence than the arch doc. (Note, OpenOCD
57 * doesn't currently support "Hot-Debug" as defined there.)
59 * Chip-specific microarchitecture documents may also be useful.
63 /* forward declarations */
64 static int xscale_resume(struct target *, int current,
65 uint32_t address, int handle_breakpoints, int debug_execution);
66 static int xscale_debug_entry(struct target *);
67 static int xscale_restore_banked(struct target *);
68 static int xscale_get_reg(struct reg *reg);
69 static int xscale_set_reg(struct reg *reg, uint8_t *buf);
70 static int xscale_set_breakpoint(struct target *, struct breakpoint *);
71 static int xscale_set_watchpoint(struct target *, struct watchpoint *);
72 static int xscale_unset_breakpoint(struct target *, struct breakpoint *);
73 static int xscale_read_trace(struct target *);
76 /* This XScale "debug handler" is loaded into the processor's
77 * mini-ICache, which is 2K of code writable only via JTAG.
79 * FIXME the OpenOCD "bin2char" utility currently doesn't handle
80 * binary files cleanly. It's string oriented, and terminates them
81 * with a NUL character. Better would be to generate the constants
82 * and let other code decide names, scoping, and other housekeeping.
84 static /* unsigned const char xscale_debug_handler[] = ... */
85 #include "xscale_debug.h"
87 static char *const xscale_reg_list[] =
89 "XSCALE_MAINID", /* 0 */
90 "XSCALE_CACHETYPE",
91 "XSCALE_CTRL",
92 "XSCALE_AUXCTRL",
93 "XSCALE_TTB",
94 "XSCALE_DAC",
95 "XSCALE_FSR",
96 "XSCALE_FAR",
97 "XSCALE_PID",
98 "XSCALE_CPACCESS",
99 "XSCALE_IBCR0", /* 10 */
100 "XSCALE_IBCR1",
101 "XSCALE_DBR0",
102 "XSCALE_DBR1",
103 "XSCALE_DBCON",
104 "XSCALE_TBREG",
105 "XSCALE_CHKPT0",
106 "XSCALE_CHKPT1",
107 "XSCALE_DCSR",
108 "XSCALE_TX",
109 "XSCALE_RX", /* 20 */
110 "XSCALE_TXRXCTRL",
113 static const struct xscale_reg xscale_reg_arch_info[] =
115 {XSCALE_MAINID, NULL},
116 {XSCALE_CACHETYPE, NULL},
117 {XSCALE_CTRL, NULL},
118 {XSCALE_AUXCTRL, NULL},
119 {XSCALE_TTB, NULL},
120 {XSCALE_DAC, NULL},
121 {XSCALE_FSR, NULL},
122 {XSCALE_FAR, NULL},
123 {XSCALE_PID, NULL},
124 {XSCALE_CPACCESS, NULL},
125 {XSCALE_IBCR0, NULL},
126 {XSCALE_IBCR1, NULL},
127 {XSCALE_DBR0, NULL},
128 {XSCALE_DBR1, NULL},
129 {XSCALE_DBCON, NULL},
130 {XSCALE_TBREG, NULL},
131 {XSCALE_CHKPT0, NULL},
132 {XSCALE_CHKPT1, NULL},
133 {XSCALE_DCSR, NULL}, /* DCSR accessed via JTAG or SW */
134 {-1, NULL}, /* TX accessed via JTAG */
135 {-1, NULL}, /* RX accessed via JTAG */
136 {-1, NULL}, /* TXRXCTRL implicit access via JTAG */
139 /* convenience wrapper to access XScale specific registers */
140 static int xscale_set_reg_u32(struct reg *reg, uint32_t value)
142 uint8_t buf[4];
144 buf_set_u32(buf, 0, 32, value);
146 return xscale_set_reg(reg, buf);
149 static const char xscale_not[] = "target is not an XScale";
151 static int xscale_verify_pointer(struct command_context *cmd_ctx,
152 struct xscale_common *xscale)
154 if (xscale->common_magic != XSCALE_COMMON_MAGIC) {
155 command_print(cmd_ctx, xscale_not);
156 return ERROR_TARGET_INVALID;
158 return ERROR_OK;
161 static int xscale_jtag_set_instr(struct jtag_tap *tap, uint32_t new_instr, tap_state_t end_state)
163 if (tap == NULL)
164 return ERROR_FAIL;
166 if (buf_get_u32(tap->cur_instr, 0, tap->ir_length) != new_instr)
168 struct scan_field field;
169 uint8_t scratch[4];
171 memset(&field, 0, sizeof field);
172 field.num_bits = tap->ir_length;
173 field.out_value = scratch;
174 buf_set_u32(scratch, 0, field.num_bits, new_instr);
176 jtag_add_ir_scan(tap, &field, end_state);
179 return ERROR_OK;
182 static int xscale_read_dcsr(struct target *target)
184 struct xscale_common *xscale = target_to_xscale(target);
185 int retval;
186 struct scan_field fields[3];
187 uint8_t field0 = 0x0;
188 uint8_t field0_check_value = 0x2;
189 uint8_t field0_check_mask = 0x7;
190 uint8_t field2 = 0x0;
191 uint8_t field2_check_value = 0x0;
192 uint8_t field2_check_mask = 0x1;
194 xscale_jtag_set_instr(target->tap,
195 XSCALE_SELDCSR << xscale->xscale_variant,
196 TAP_DRPAUSE);
198 buf_set_u32(&field0, 1, 1, xscale->hold_rst);
199 buf_set_u32(&field0, 2, 1, xscale->external_debug_break);
201 memset(&fields, 0, sizeof fields);
203 fields[0].num_bits = 3;
204 fields[0].out_value = &field0;
205 uint8_t tmp;
206 fields[0].in_value = &tmp;
208 fields[1].num_bits = 32;
209 fields[1].in_value = xscale->reg_cache->reg_list[XSCALE_DCSR].value;
211 fields[2].num_bits = 1;
212 fields[2].out_value = &field2;
213 uint8_t tmp2;
214 fields[2].in_value = &tmp2;
216 jtag_add_dr_scan(target->tap, 3, fields, TAP_DRPAUSE);
218 jtag_check_value_mask(fields + 0, &field0_check_value, &field0_check_mask);
219 jtag_check_value_mask(fields + 2, &field2_check_value, &field2_check_mask);
221 if ((retval = jtag_execute_queue()) != ERROR_OK)
223 LOG_ERROR("JTAG error while reading DCSR");
224 return retval;
227 xscale->reg_cache->reg_list[XSCALE_DCSR].dirty = 0;
228 xscale->reg_cache->reg_list[XSCALE_DCSR].valid = 1;
230 /* write the register with the value we just read
231 * on this second pass, only the first bit of field0 is guaranteed to be 0)
233 field0_check_mask = 0x1;
234 fields[1].out_value = xscale->reg_cache->reg_list[XSCALE_DCSR].value;
235 fields[1].in_value = NULL;
237 jtag_add_dr_scan(target->tap, 3, fields, TAP_DRPAUSE);
239 /* DANGER!!! this must be here. It will make sure that the arguments
240 * to jtag_set_check_value() does not go out of scope! */
241 return jtag_execute_queue();
245 static void xscale_getbuf(jtag_callback_data_t arg)
247 uint8_t *in = (uint8_t *)arg;
248 *((uint32_t *)in) = buf_get_u32(in, 0, 32);
251 static int xscale_receive(struct target *target, uint32_t *buffer, int num_words)
253 if (num_words == 0)
254 return ERROR_INVALID_ARGUMENTS;
256 struct xscale_common *xscale = target_to_xscale(target);
257 int retval = ERROR_OK;
258 tap_state_t path[3];
259 struct scan_field fields[3];
260 uint8_t *field0 = malloc(num_words * 1);
261 uint8_t field0_check_value = 0x2;
262 uint8_t field0_check_mask = 0x6;
263 uint32_t *field1 = malloc(num_words * 4);
264 uint8_t field2_check_value = 0x0;
265 uint8_t field2_check_mask = 0x1;
266 int words_done = 0;
267 int words_scheduled = 0;
268 int i;
270 path[0] = TAP_DRSELECT;
271 path[1] = TAP_DRCAPTURE;
272 path[2] = TAP_DRSHIFT;
274 memset(&fields, 0, sizeof fields);
276 fields[0].num_bits = 3;
277 fields[0].check_value = &field0_check_value;
278 fields[0].check_mask = &field0_check_mask;
280 fields[1].num_bits = 32;
282 fields[2].num_bits = 1;
283 fields[2].check_value = &field2_check_value;
284 fields[2].check_mask = &field2_check_mask;
286 xscale_jtag_set_instr(target->tap,
287 XSCALE_DBGTX << xscale->xscale_variant,
288 TAP_IDLE);
289 jtag_add_runtest(1, TAP_IDLE); /* ensures that we're in the TAP_IDLE state as the above could be a no-op */
291 /* repeat until all words have been collected */
292 int attempts = 0;
293 while (words_done < num_words)
295 /* schedule reads */
296 words_scheduled = 0;
297 for (i = words_done; i < num_words; i++)
299 fields[0].in_value = &field0[i];
301 jtag_add_pathmove(3, path);
303 fields[1].in_value = (uint8_t *)(field1 + i);
305 jtag_add_dr_scan_check(target->tap, 3, fields, TAP_IDLE);
307 jtag_add_callback(xscale_getbuf, (jtag_callback_data_t)(field1 + i));
309 words_scheduled++;
312 if ((retval = jtag_execute_queue()) != ERROR_OK)
314 LOG_ERROR("JTAG error while receiving data from debug handler");
315 break;
318 /* examine results */
319 for (i = words_done; i < num_words; i++)
321 if (!(field0[0] & 1))
323 /* move backwards if necessary */
324 int j;
325 for (j = i; j < num_words - 1; j++)
327 field0[j] = field0[j + 1];
328 field1[j] = field1[j + 1];
330 words_scheduled--;
333 if (words_scheduled == 0)
335 if (attempts++==1000)
337 LOG_ERROR("Failed to receiving data from debug handler after 1000 attempts");
338 retval = ERROR_TARGET_TIMEOUT;
339 break;
343 words_done += words_scheduled;
346 for (i = 0; i < num_words; i++)
347 *(buffer++) = buf_get_u32((uint8_t*)&field1[i], 0, 32);
349 free(field1);
351 return retval;
354 static int xscale_read_tx(struct target *target, int consume)
356 struct xscale_common *xscale = target_to_xscale(target);
357 tap_state_t path[3];
358 tap_state_t noconsume_path[6];
359 int retval;
360 struct timeval timeout, now;
361 struct scan_field fields[3];
362 uint8_t field0_in = 0x0;
363 uint8_t field0_check_value = 0x2;
364 uint8_t field0_check_mask = 0x6;
365 uint8_t field2_check_value = 0x0;
366 uint8_t field2_check_mask = 0x1;
368 xscale_jtag_set_instr(target->tap,
369 XSCALE_DBGTX << xscale->xscale_variant,
370 TAP_IDLE);
372 path[0] = TAP_DRSELECT;
373 path[1] = TAP_DRCAPTURE;
374 path[2] = TAP_DRSHIFT;
376 noconsume_path[0] = TAP_DRSELECT;
377 noconsume_path[1] = TAP_DRCAPTURE;
378 noconsume_path[2] = TAP_DREXIT1;
379 noconsume_path[3] = TAP_DRPAUSE;
380 noconsume_path[4] = TAP_DREXIT2;
381 noconsume_path[5] = TAP_DRSHIFT;
383 memset(&fields, 0, sizeof fields);
385 fields[0].num_bits = 3;
386 fields[0].in_value = &field0_in;
388 fields[1].num_bits = 32;
389 fields[1].in_value = xscale->reg_cache->reg_list[XSCALE_TX].value;
391 fields[2].num_bits = 1;
392 uint8_t tmp;
393 fields[2].in_value = &tmp;
395 gettimeofday(&timeout, NULL);
396 timeval_add_time(&timeout, 1, 0);
398 for (;;)
400 /* if we want to consume the register content (i.e. clear TX_READY),
401 * we have to go straight from Capture-DR to Shift-DR
402 * otherwise, we go from Capture-DR to Exit1-DR to Pause-DR
404 if (consume)
405 jtag_add_pathmove(3, path);
406 else
408 jtag_add_pathmove(ARRAY_SIZE(noconsume_path), noconsume_path);
411 jtag_add_dr_scan(target->tap, 3, fields, TAP_IDLE);
413 jtag_check_value_mask(fields + 0, &field0_check_value, &field0_check_mask);
414 jtag_check_value_mask(fields + 2, &field2_check_value, &field2_check_mask);
416 if ((retval = jtag_execute_queue()) != ERROR_OK)
418 LOG_ERROR("JTAG error while reading TX");
419 return ERROR_TARGET_TIMEOUT;
422 gettimeofday(&now, NULL);
423 if ((now.tv_sec > timeout.tv_sec) || ((now.tv_sec == timeout.tv_sec)&& (now.tv_usec > timeout.tv_usec)))
425 LOG_ERROR("time out reading TX register");
426 return ERROR_TARGET_TIMEOUT;
428 if (!((!(field0_in & 1)) && consume))
430 goto done;
432 if (debug_level >= 3)
434 LOG_DEBUG("waiting 100ms");
435 alive_sleep(100); /* avoid flooding the logs */
436 } else
438 keep_alive();
441 done:
443 if (!(field0_in & 1))
444 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
446 return ERROR_OK;
449 static int xscale_write_rx(struct target *target)
451 struct xscale_common *xscale = target_to_xscale(target);
452 int retval;
453 struct timeval timeout, now;
454 struct scan_field fields[3];
455 uint8_t field0_out = 0x0;
456 uint8_t field0_in = 0x0;
457 uint8_t field0_check_value = 0x2;
458 uint8_t field0_check_mask = 0x6;
459 uint8_t field2 = 0x0;
460 uint8_t field2_check_value = 0x0;
461 uint8_t field2_check_mask = 0x1;
463 xscale_jtag_set_instr(target->tap,
464 XSCALE_DBGRX << xscale->xscale_variant,
465 TAP_IDLE);
467 memset(&fields, 0, sizeof fields);
469 fields[0].num_bits = 3;
470 fields[0].out_value = &field0_out;
471 fields[0].in_value = &field0_in;
473 fields[1].num_bits = 32;
474 fields[1].out_value = xscale->reg_cache->reg_list[XSCALE_RX].value;
476 fields[2].num_bits = 1;
477 fields[2].out_value = &field2;
478 uint8_t tmp;
479 fields[2].in_value = &tmp;
481 gettimeofday(&timeout, NULL);
482 timeval_add_time(&timeout, 1, 0);
484 /* poll until rx_read is low */
485 LOG_DEBUG("polling RX");
486 for (;;)
488 jtag_add_dr_scan(target->tap, 3, fields, TAP_IDLE);
490 jtag_check_value_mask(fields + 0, &field0_check_value, &field0_check_mask);
491 jtag_check_value_mask(fields + 2, &field2_check_value, &field2_check_mask);
493 if ((retval = jtag_execute_queue()) != ERROR_OK)
495 LOG_ERROR("JTAG error while writing RX");
496 return retval;
499 gettimeofday(&now, NULL);
500 if ((now.tv_sec > timeout.tv_sec) || ((now.tv_sec == timeout.tv_sec)&& (now.tv_usec > timeout.tv_usec)))
502 LOG_ERROR("time out writing RX register");
503 return ERROR_TARGET_TIMEOUT;
505 if (!(field0_in & 1))
506 goto done;
507 if (debug_level >= 3)
509 LOG_DEBUG("waiting 100ms");
510 alive_sleep(100); /* avoid flooding the logs */
511 } else
513 keep_alive();
516 done:
518 /* set rx_valid */
519 field2 = 0x1;
520 jtag_add_dr_scan(target->tap, 3, fields, TAP_IDLE);
522 if ((retval = jtag_execute_queue()) != ERROR_OK)
524 LOG_ERROR("JTAG error while writing RX");
525 return retval;
528 return ERROR_OK;
531 /* send count elements of size byte to the debug handler */
532 static int xscale_send(struct target *target, uint8_t *buffer, int count, int size)
534 struct xscale_common *xscale = target_to_xscale(target);
535 uint32_t t[3];
536 int bits[3];
537 int retval;
538 int done_count = 0;
540 xscale_jtag_set_instr(target->tap,
541 XSCALE_DBGRX << xscale->xscale_variant,
542 TAP_IDLE);
544 bits[0]=3;
545 t[0]=0;
546 bits[1]=32;
547 t[2]=1;
548 bits[2]=1;
549 int endianness = target->endianness;
550 while (done_count++ < count)
552 switch (size)
554 case 4:
555 if (endianness == TARGET_LITTLE_ENDIAN)
557 t[1]=le_to_h_u32(buffer);
558 } else
560 t[1]=be_to_h_u32(buffer);
562 break;
563 case 2:
564 if (endianness == TARGET_LITTLE_ENDIAN)
566 t[1]=le_to_h_u16(buffer);
567 } else
569 t[1]=be_to_h_u16(buffer);
571 break;
572 case 1:
573 t[1]=buffer[0];
574 break;
575 default:
576 LOG_ERROR("BUG: size neither 4, 2 nor 1");
577 return ERROR_INVALID_ARGUMENTS;
579 jtag_add_dr_out(target->tap,
581 bits,
583 TAP_IDLE);
584 buffer += size;
587 if ((retval = jtag_execute_queue()) != ERROR_OK)
589 LOG_ERROR("JTAG error while sending data to debug handler");
590 return retval;
593 return ERROR_OK;
596 static int xscale_send_u32(struct target *target, uint32_t value)
598 struct xscale_common *xscale = target_to_xscale(target);
600 buf_set_u32(xscale->reg_cache->reg_list[XSCALE_RX].value, 0, 32, value);
601 return xscale_write_rx(target);
604 static int xscale_write_dcsr(struct target *target, int hold_rst, int ext_dbg_brk)
606 struct xscale_common *xscale = target_to_xscale(target);
607 int retval;
608 struct scan_field fields[3];
609 uint8_t field0 = 0x0;
610 uint8_t field0_check_value = 0x2;
611 uint8_t field0_check_mask = 0x7;
612 uint8_t field2 = 0x0;
613 uint8_t field2_check_value = 0x0;
614 uint8_t field2_check_mask = 0x1;
616 if (hold_rst != -1)
617 xscale->hold_rst = hold_rst;
619 if (ext_dbg_brk != -1)
620 xscale->external_debug_break = ext_dbg_brk;
622 xscale_jtag_set_instr(target->tap,
623 XSCALE_SELDCSR << xscale->xscale_variant,
624 TAP_IDLE);
626 buf_set_u32(&field0, 1, 1, xscale->hold_rst);
627 buf_set_u32(&field0, 2, 1, xscale->external_debug_break);
629 memset(&fields, 0, sizeof fields);
631 fields[0].num_bits = 3;
632 fields[0].out_value = &field0;
633 uint8_t tmp;
634 fields[0].in_value = &tmp;
636 fields[1].num_bits = 32;
637 fields[1].out_value = xscale->reg_cache->reg_list[XSCALE_DCSR].value;
639 fields[2].num_bits = 1;
640 fields[2].out_value = &field2;
641 uint8_t tmp2;
642 fields[2].in_value = &tmp2;
644 jtag_add_dr_scan(target->tap, 3, fields, TAP_IDLE);
646 jtag_check_value_mask(fields + 0, &field0_check_value, &field0_check_mask);
647 jtag_check_value_mask(fields + 2, &field2_check_value, &field2_check_mask);
649 if ((retval = jtag_execute_queue()) != ERROR_OK)
651 LOG_ERROR("JTAG error while writing DCSR");
652 return retval;
655 xscale->reg_cache->reg_list[XSCALE_DCSR].dirty = 0;
656 xscale->reg_cache->reg_list[XSCALE_DCSR].valid = 1;
658 return ERROR_OK;
661 /* parity of the number of bits 0 if even; 1 if odd. for 32 bit words */
662 static unsigned int parity (unsigned int v)
664 // unsigned int ov = v;
665 v ^= v >> 16;
666 v ^= v >> 8;
667 v ^= v >> 4;
668 v &= 0xf;
669 // LOG_DEBUG("parity of 0x%x is %i", ov, (0x6996 >> v) & 1);
670 return (0x6996 >> v) & 1;
673 static int xscale_load_ic(struct target *target, uint32_t va, uint32_t buffer[8])
675 struct xscale_common *xscale = target_to_xscale(target);
676 uint8_t packet[4];
677 uint8_t cmd;
678 int word;
679 struct scan_field fields[2];
681 LOG_DEBUG("loading miniIC at 0x%8.8" PRIx32 "", va);
683 /* LDIC into IR */
684 xscale_jtag_set_instr(target->tap,
685 XSCALE_LDIC << xscale->xscale_variant,
686 TAP_IDLE);
688 /* CMD is b011 to load a cacheline into the Mini ICache.
689 * Loading into the main ICache is deprecated, and unused.
690 * It's followed by three zero bits, and 27 address bits.
692 buf_set_u32(&cmd, 0, 6, 0x3);
694 /* virtual address of desired cache line */
695 buf_set_u32(packet, 0, 27, va >> 5);
697 memset(&fields, 0, sizeof fields);
699 fields[0].num_bits = 6;
700 fields[0].out_value = &cmd;
702 fields[1].num_bits = 27;
703 fields[1].out_value = packet;
705 jtag_add_dr_scan(target->tap, 2, fields, TAP_IDLE);
707 /* rest of packet is a cacheline: 8 instructions, with parity */
708 fields[0].num_bits = 32;
709 fields[0].out_value = packet;
711 fields[1].num_bits = 1;
712 fields[1].out_value = &cmd;
714 for (word = 0; word < 8; word++)
716 buf_set_u32(packet, 0, 32, buffer[word]);
718 uint32_t value;
719 memcpy(&value, packet, sizeof(uint32_t));
720 cmd = parity(value);
722 jtag_add_dr_scan(target->tap, 2, fields, TAP_IDLE);
725 return jtag_execute_queue();
728 static int xscale_invalidate_ic_line(struct target *target, uint32_t va)
730 struct xscale_common *xscale = target_to_xscale(target);
731 uint8_t packet[4];
732 uint8_t cmd;
733 struct scan_field fields[2];
735 xscale_jtag_set_instr(target->tap,
736 XSCALE_LDIC << xscale->xscale_variant,
737 TAP_IDLE);
739 /* CMD for invalidate IC line b000, bits [6:4] b000 */
740 buf_set_u32(&cmd, 0, 6, 0x0);
742 /* virtual address of desired cache line */
743 buf_set_u32(packet, 0, 27, va >> 5);
745 memset(&fields, 0, sizeof fields);
747 fields[0].num_bits = 6;
748 fields[0].out_value = &cmd;
750 fields[1].num_bits = 27;
751 fields[1].out_value = packet;
753 jtag_add_dr_scan(target->tap, 2, fields, TAP_IDLE);
755 return ERROR_OK;
758 static int xscale_update_vectors(struct target *target)
760 struct xscale_common *xscale = target_to_xscale(target);
761 int i;
762 int retval;
764 uint32_t low_reset_branch, high_reset_branch;
766 for (i = 1; i < 8; i++)
768 /* if there's a static vector specified for this exception, override */
769 if (xscale->static_high_vectors_set & (1 << i))
771 xscale->high_vectors[i] = xscale->static_high_vectors[i];
773 else
775 retval = target_read_u32(target, 0xffff0000 + 4*i, &xscale->high_vectors[i]);
776 if (retval == ERROR_TARGET_TIMEOUT)
777 return retval;
778 if (retval != ERROR_OK)
780 /* Some of these reads will fail as part of normal execution */
781 xscale->high_vectors[i] = ARMV4_5_B(0xfffffe, 0);
786 for (i = 1; i < 8; i++)
788 if (xscale->static_low_vectors_set & (1 << i))
790 xscale->low_vectors[i] = xscale->static_low_vectors[i];
792 else
794 retval = target_read_u32(target, 0x0 + 4*i, &xscale->low_vectors[i]);
795 if (retval == ERROR_TARGET_TIMEOUT)
796 return retval;
797 if (retval != ERROR_OK)
799 /* Some of these reads will fail as part of normal execution */
800 xscale->low_vectors[i] = ARMV4_5_B(0xfffffe, 0);
805 /* calculate branches to debug handler */
806 low_reset_branch = (xscale->handler_address + 0x20 - 0x0 - 0x8) >> 2;
807 high_reset_branch = (xscale->handler_address + 0x20 - 0xffff0000 - 0x8) >> 2;
809 xscale->low_vectors[0] = ARMV4_5_B((low_reset_branch & 0xffffff), 0);
810 xscale->high_vectors[0] = ARMV4_5_B((high_reset_branch & 0xffffff), 0);
812 /* invalidate and load exception vectors in mini i-cache */
813 xscale_invalidate_ic_line(target, 0x0);
814 xscale_invalidate_ic_line(target, 0xffff0000);
816 xscale_load_ic(target, 0x0, xscale->low_vectors);
817 xscale_load_ic(target, 0xffff0000, xscale->high_vectors);
819 return ERROR_OK;
822 static int xscale_arch_state(struct target *target)
824 struct xscale_common *xscale = target_to_xscale(target);
825 struct arm *armv4_5 = &xscale->armv4_5_common;
827 static const char *state[] =
829 "disabled", "enabled"
832 static const char *arch_dbg_reason[] =
834 "", "\n(processor reset)", "\n(trace buffer full)"
837 if (armv4_5->common_magic != ARM_COMMON_MAGIC)
839 LOG_ERROR("BUG: called for a non-ARMv4/5 target");
840 return ERROR_INVALID_ARGUMENTS;
843 arm_arch_state(target);
844 LOG_USER("MMU: %s, D-Cache: %s, I-Cache: %s%s",
845 state[xscale->armv4_5_mmu.mmu_enabled],
846 state[xscale->armv4_5_mmu.armv4_5_cache.d_u_cache_enabled],
847 state[xscale->armv4_5_mmu.armv4_5_cache.i_cache_enabled],
848 arch_dbg_reason[xscale->arch_debug_reason]);
850 return ERROR_OK;
853 static int xscale_poll(struct target *target)
855 int retval = ERROR_OK;
857 if ((target->state == TARGET_RUNNING) || (target->state == TARGET_DEBUG_RUNNING))
859 enum target_state previous_state = target->state;
860 if ((retval = xscale_read_tx(target, 0)) == ERROR_OK)
863 /* there's data to read from the tx register, we entered debug state */
864 target->state = TARGET_HALTED;
866 /* process debug entry, fetching current mode regs */
867 retval = xscale_debug_entry(target);
869 else if (retval != ERROR_TARGET_RESOURCE_NOT_AVAILABLE)
871 LOG_USER("error while polling TX register, reset CPU");
872 /* here we "lie" so GDB won't get stuck and a reset can be perfomed */
873 target->state = TARGET_HALTED;
876 /* debug_entry could have overwritten target state (i.e. immediate resume)
877 * don't signal event handlers in that case
879 if (target->state != TARGET_HALTED)
880 return ERROR_OK;
882 /* if target was running, signal that we halted
883 * otherwise we reentered from debug execution */
884 if (previous_state == TARGET_RUNNING)
885 target_call_event_callbacks(target, TARGET_EVENT_HALTED);
886 else
887 target_call_event_callbacks(target, TARGET_EVENT_DEBUG_HALTED);
890 return retval;
893 static int xscale_debug_entry(struct target *target)
895 struct xscale_common *xscale = target_to_xscale(target);
896 struct arm *armv4_5 = &xscale->armv4_5_common;
897 uint32_t pc;
898 uint32_t buffer[10];
899 int i;
900 int retval;
901 uint32_t moe;
903 /* clear external dbg break (will be written on next DCSR read) */
904 xscale->external_debug_break = 0;
905 if ((retval = xscale_read_dcsr(target)) != ERROR_OK)
906 return retval;
908 /* get r0, pc, r1 to r7 and cpsr */
909 if ((retval = xscale_receive(target, buffer, 10)) != ERROR_OK)
910 return retval;
912 /* move r0 from buffer to register cache */
913 buf_set_u32(armv4_5->core_cache->reg_list[0].value, 0, 32, buffer[0]);
914 armv4_5->core_cache->reg_list[0].dirty = 1;
915 armv4_5->core_cache->reg_list[0].valid = 1;
916 LOG_DEBUG("r0: 0x%8.8" PRIx32 "", buffer[0]);
918 /* move pc from buffer to register cache */
919 buf_set_u32(armv4_5->pc->value, 0, 32, buffer[1]);
920 armv4_5->pc->dirty = 1;
921 armv4_5->pc->valid = 1;
922 LOG_DEBUG("pc: 0x%8.8" PRIx32 "", buffer[1]);
924 /* move data from buffer to register cache */
925 for (i = 1; i <= 7; i++)
927 buf_set_u32(armv4_5->core_cache->reg_list[i].value, 0, 32, buffer[1 + i]);
928 armv4_5->core_cache->reg_list[i].dirty = 1;
929 armv4_5->core_cache->reg_list[i].valid = 1;
930 LOG_DEBUG("r%i: 0x%8.8" PRIx32 "", i, buffer[i + 1]);
933 arm_set_cpsr(armv4_5, buffer[9]);
934 LOG_DEBUG("cpsr: 0x%8.8" PRIx32 "", buffer[9]);
936 if (!is_arm_mode(armv4_5->core_mode))
938 target->state = TARGET_UNKNOWN;
939 LOG_ERROR("cpsr contains invalid mode value - communication failure");
940 return ERROR_TARGET_FAILURE;
942 LOG_DEBUG("target entered debug state in %s mode",
943 arm_mode_name(armv4_5->core_mode));
945 /* get banked registers, r8 to r14, and spsr if not in USR/SYS mode */
946 if (armv4_5->spsr) {
947 xscale_receive(target, buffer, 8);
948 buf_set_u32(armv4_5->spsr->value, 0, 32, buffer[7]);
949 armv4_5->spsr->dirty = false;
950 armv4_5->spsr->valid = true;
952 else
954 /* r8 to r14, but no spsr */
955 xscale_receive(target, buffer, 7);
958 /* move data from buffer to right banked register in cache */
959 for (i = 8; i <= 14; i++)
961 struct reg *r = arm_reg_current(armv4_5, i);
963 buf_set_u32(r->value, 0, 32, buffer[i - 8]);
964 r->dirty = false;
965 r->valid = true;
968 /* examine debug reason */
969 xscale_read_dcsr(target);
970 moe = buf_get_u32(xscale->reg_cache->reg_list[XSCALE_DCSR].value, 2, 3);
972 /* stored PC (for calculating fixup) */
973 pc = buf_get_u32(armv4_5->pc->value, 0, 32);
975 switch (moe)
977 case 0x0: /* Processor reset */
978 target->debug_reason = DBG_REASON_DBGRQ;
979 xscale->arch_debug_reason = XSCALE_DBG_REASON_RESET;
980 pc -= 4;
981 break;
982 case 0x1: /* Instruction breakpoint hit */
983 target->debug_reason = DBG_REASON_BREAKPOINT;
984 xscale->arch_debug_reason = XSCALE_DBG_REASON_GENERIC;
985 pc -= 4;
986 break;
987 case 0x2: /* Data breakpoint hit */
988 target->debug_reason = DBG_REASON_WATCHPOINT;
989 xscale->arch_debug_reason = XSCALE_DBG_REASON_GENERIC;
990 pc -= 4;
991 break;
992 case 0x3: /* BKPT instruction executed */
993 target->debug_reason = DBG_REASON_BREAKPOINT;
994 xscale->arch_debug_reason = XSCALE_DBG_REASON_GENERIC;
995 pc -= 4;
996 break;
997 case 0x4: /* Ext. debug event */
998 target->debug_reason = DBG_REASON_DBGRQ;
999 xscale->arch_debug_reason = XSCALE_DBG_REASON_GENERIC;
1000 pc -= 4;
1001 break;
1002 case 0x5: /* Vector trap occured */
1003 target->debug_reason = DBG_REASON_BREAKPOINT;
1004 xscale->arch_debug_reason = XSCALE_DBG_REASON_GENERIC;
1005 pc -= 4;
1006 break;
1007 case 0x6: /* Trace buffer full break */
1008 target->debug_reason = DBG_REASON_DBGRQ;
1009 xscale->arch_debug_reason = XSCALE_DBG_REASON_TB_FULL;
1010 pc -= 4;
1011 break;
1012 case 0x7: /* Reserved (may flag Hot-Debug support) */
1013 default:
1014 LOG_ERROR("Method of Entry is 'Reserved'");
1015 exit(-1);
1016 break;
1019 /* apply PC fixup */
1020 buf_set_u32(armv4_5->pc->value, 0, 32, pc);
1022 /* on the first debug entry, identify cache type */
1023 if (xscale->armv4_5_mmu.armv4_5_cache.ctype == -1)
1025 uint32_t cache_type_reg;
1027 /* read cp15 cache type register */
1028 xscale_get_reg(&xscale->reg_cache->reg_list[XSCALE_CACHETYPE]);
1029 cache_type_reg = buf_get_u32(xscale->reg_cache->reg_list[XSCALE_CACHETYPE].value, 0, 32);
1031 armv4_5_identify_cache(cache_type_reg, &xscale->armv4_5_mmu.armv4_5_cache);
1034 /* examine MMU and Cache settings */
1035 /* read cp15 control register */
1036 xscale_get_reg(&xscale->reg_cache->reg_list[XSCALE_CTRL]);
1037 xscale->cp15_control_reg = buf_get_u32(xscale->reg_cache->reg_list[XSCALE_CTRL].value, 0, 32);
1038 xscale->armv4_5_mmu.mmu_enabled = (xscale->cp15_control_reg & 0x1U) ? 1 : 0;
1039 xscale->armv4_5_mmu.armv4_5_cache.d_u_cache_enabled = (xscale->cp15_control_reg & 0x4U) ? 1 : 0;
1040 xscale->armv4_5_mmu.armv4_5_cache.i_cache_enabled = (xscale->cp15_control_reg & 0x1000U) ? 1 : 0;
1042 /* tracing enabled, read collected trace data */
1043 if (xscale->trace.buffer_enabled)
1045 xscale_read_trace(target);
1046 xscale->trace.buffer_fill--;
1048 /* resume if we're still collecting trace data */
1049 if ((xscale->arch_debug_reason == XSCALE_DBG_REASON_TB_FULL)
1050 && (xscale->trace.buffer_fill > 0))
1052 xscale_resume(target, 1, 0x0, 1, 0);
1054 else
1056 xscale->trace.buffer_enabled = 0;
1060 return ERROR_OK;
1063 static int xscale_halt(struct target *target)
1065 struct xscale_common *xscale = target_to_xscale(target);
1067 LOG_DEBUG("target->state: %s",
1068 target_state_name(target));
1070 if (target->state == TARGET_HALTED)
1072 LOG_DEBUG("target was already halted");
1073 return ERROR_OK;
1075 else if (target->state == TARGET_UNKNOWN)
1077 /* this must not happen for a xscale target */
1078 LOG_ERROR("target was in unknown state when halt was requested");
1079 return ERROR_TARGET_INVALID;
1081 else if (target->state == TARGET_RESET)
1083 LOG_DEBUG("target->state == TARGET_RESET");
1085 else
1087 /* assert external dbg break */
1088 xscale->external_debug_break = 1;
1089 xscale_read_dcsr(target);
1091 target->debug_reason = DBG_REASON_DBGRQ;
1094 return ERROR_OK;
1097 static int xscale_enable_single_step(struct target *target, uint32_t next_pc)
1099 struct xscale_common *xscale = target_to_xscale(target);
1100 struct reg *ibcr0 = &xscale->reg_cache->reg_list[XSCALE_IBCR0];
1101 int retval;
1103 if (xscale->ibcr0_used)
1105 struct breakpoint *ibcr0_bp = breakpoint_find(target, buf_get_u32(ibcr0->value, 0, 32) & 0xfffffffe);
1107 if (ibcr0_bp)
1109 xscale_unset_breakpoint(target, ibcr0_bp);
1111 else
1113 LOG_ERROR("BUG: xscale->ibcr0_used is set, but no breakpoint with that address found");
1114 exit(-1);
1118 if ((retval = xscale_set_reg_u32(ibcr0, next_pc | 0x1)) != ERROR_OK)
1119 return retval;
1121 return ERROR_OK;
1124 static int xscale_disable_single_step(struct target *target)
1126 struct xscale_common *xscale = target_to_xscale(target);
1127 struct reg *ibcr0 = &xscale->reg_cache->reg_list[XSCALE_IBCR0];
1128 int retval;
1130 if ((retval = xscale_set_reg_u32(ibcr0, 0x0)) != ERROR_OK)
1131 return retval;
1133 return ERROR_OK;
1136 static void xscale_enable_watchpoints(struct target *target)
1138 struct watchpoint *watchpoint = target->watchpoints;
1140 while (watchpoint)
1142 if (watchpoint->set == 0)
1143 xscale_set_watchpoint(target, watchpoint);
1144 watchpoint = watchpoint->next;
1148 static void xscale_enable_breakpoints(struct target *target)
1150 struct breakpoint *breakpoint = target->breakpoints;
1152 /* set any pending breakpoints */
1153 while (breakpoint)
1155 if (breakpoint->set == 0)
1156 xscale_set_breakpoint(target, breakpoint);
1157 breakpoint = breakpoint->next;
1161 static int xscale_resume(struct target *target, int current,
1162 uint32_t address, int handle_breakpoints, int debug_execution)
1164 struct xscale_common *xscale = target_to_xscale(target);
1165 struct arm *armv4_5 = &xscale->armv4_5_common;
1166 struct breakpoint *breakpoint = target->breakpoints;
1167 uint32_t current_pc;
1168 int retval;
1169 int i;
1171 LOG_DEBUG("-");
1173 if (target->state != TARGET_HALTED)
1175 LOG_WARNING("target not halted");
1176 return ERROR_TARGET_NOT_HALTED;
1179 if (!debug_execution)
1181 target_free_all_working_areas(target);
1184 /* update vector tables */
1185 if ((retval = xscale_update_vectors(target)) != ERROR_OK)
1186 return retval;
1188 /* current = 1: continue on current pc, otherwise continue at <address> */
1189 if (!current)
1190 buf_set_u32(armv4_5->pc->value, 0, 32, address);
1192 current_pc = buf_get_u32(armv4_5->pc->value, 0, 32);
1194 /* if we're at the reset vector, we have to simulate the branch */
1195 if (current_pc == 0x0)
1197 arm_simulate_step(target, NULL);
1198 current_pc = buf_get_u32(armv4_5->pc->value, 0, 32);
1201 /* the front-end may request us not to handle breakpoints */
1202 if (handle_breakpoints)
1204 breakpoint = breakpoint_find(target,
1205 buf_get_u32(armv4_5->pc->value, 0, 32));
1206 if (breakpoint != NULL)
1208 uint32_t next_pc;
1210 /* there's a breakpoint at the current PC, we have to step over it */
1211 LOG_DEBUG("unset breakpoint at 0x%8.8" PRIx32 "", breakpoint->address);
1212 xscale_unset_breakpoint(target, breakpoint);
1214 /* calculate PC of next instruction */
1215 if ((retval = arm_simulate_step(target, &next_pc)) != ERROR_OK)
1217 uint32_t current_opcode;
1218 target_read_u32(target, current_pc, &current_opcode);
1219 LOG_ERROR("BUG: couldn't calculate PC of next instruction, current opcode was 0x%8.8" PRIx32 "", current_opcode);
1222 LOG_DEBUG("enable single-step");
1223 xscale_enable_single_step(target, next_pc);
1225 /* restore banked registers */
1226 retval = xscale_restore_banked(target);
1228 /* send resume request (command 0x30 or 0x31)
1229 * clean the trace buffer if it is to be enabled (0x62) */
1230 if (xscale->trace.buffer_enabled)
1232 xscale_send_u32(target, 0x62);
1233 xscale_send_u32(target, 0x31);
1235 else
1236 xscale_send_u32(target, 0x30);
1238 /* send CPSR */
1239 xscale_send_u32(target,
1240 buf_get_u32(armv4_5->cpsr->value, 0, 32));
1241 LOG_DEBUG("writing cpsr with value 0x%8.8" PRIx32,
1242 buf_get_u32(armv4_5->cpsr->value, 0, 32));
1244 for (i = 7; i >= 0; i--)
1246 /* send register */
1247 xscale_send_u32(target, buf_get_u32(armv4_5->core_cache->reg_list[i].value, 0, 32));
1248 LOG_DEBUG("writing r%i with value 0x%8.8" PRIx32 "", i, buf_get_u32(armv4_5->core_cache->reg_list[i].value, 0, 32));
1251 /* send PC */
1252 xscale_send_u32(target,
1253 buf_get_u32(armv4_5->pc->value, 0, 32));
1254 LOG_DEBUG("writing PC with value 0x%8.8" PRIx32,
1255 buf_get_u32(armv4_5->pc->value, 0, 32));
1257 /* wait for and process debug entry */
1258 xscale_debug_entry(target);
1260 LOG_DEBUG("disable single-step");
1261 xscale_disable_single_step(target);
1263 LOG_DEBUG("set breakpoint at 0x%8.8" PRIx32 "", breakpoint->address);
1264 xscale_set_breakpoint(target, breakpoint);
1268 /* enable any pending breakpoints and watchpoints */
1269 xscale_enable_breakpoints(target);
1270 xscale_enable_watchpoints(target);
1272 /* restore banked registers */
1273 retval = xscale_restore_banked(target);
1275 /* send resume request (command 0x30 or 0x31)
1276 * clean the trace buffer if it is to be enabled (0x62) */
1277 if (xscale->trace.buffer_enabled)
1279 xscale_send_u32(target, 0x62);
1280 xscale_send_u32(target, 0x31);
1282 else
1283 xscale_send_u32(target, 0x30);
1285 /* send CPSR */
1286 xscale_send_u32(target, buf_get_u32(armv4_5->cpsr->value, 0, 32));
1287 LOG_DEBUG("writing cpsr with value 0x%8.8" PRIx32,
1288 buf_get_u32(armv4_5->cpsr->value, 0, 32));
1290 for (i = 7; i >= 0; i--)
1292 /* send register */
1293 xscale_send_u32(target, buf_get_u32(armv4_5->core_cache->reg_list[i].value, 0, 32));
1294 LOG_DEBUG("writing r%i with value 0x%8.8" PRIx32 "", i, buf_get_u32(armv4_5->core_cache->reg_list[i].value, 0, 32));
1297 /* send PC */
1298 xscale_send_u32(target, buf_get_u32(armv4_5->pc->value, 0, 32));
1299 LOG_DEBUG("wrote PC with value 0x%8.8" PRIx32,
1300 buf_get_u32(armv4_5->pc->value, 0, 32));
1302 target->debug_reason = DBG_REASON_NOTHALTED;
1304 if (!debug_execution)
1306 /* registers are now invalid */
1307 register_cache_invalidate(armv4_5->core_cache);
1308 target->state = TARGET_RUNNING;
1309 target_call_event_callbacks(target, TARGET_EVENT_RESUMED);
1311 else
1313 target->state = TARGET_DEBUG_RUNNING;
1314 target_call_event_callbacks(target, TARGET_EVENT_DEBUG_RESUMED);
1317 LOG_DEBUG("target resumed");
1319 return ERROR_OK;
1322 static int xscale_step_inner(struct target *target, int current,
1323 uint32_t address, int handle_breakpoints)
1325 struct xscale_common *xscale = target_to_xscale(target);
1326 struct arm *armv4_5 = &xscale->armv4_5_common;
1327 uint32_t next_pc;
1328 int retval;
1329 int i;
1331 target->debug_reason = DBG_REASON_SINGLESTEP;
1333 /* calculate PC of next instruction */
1334 if ((retval = arm_simulate_step(target, &next_pc)) != ERROR_OK)
1336 uint32_t current_opcode, current_pc;
1337 current_pc = buf_get_u32(armv4_5->pc->value, 0, 32);
1339 target_read_u32(target, current_pc, &current_opcode);
1340 LOG_ERROR("BUG: couldn't calculate PC of next instruction, current opcode was 0x%8.8" PRIx32 "", current_opcode);
1341 return retval;
1344 LOG_DEBUG("enable single-step");
1345 if ((retval = xscale_enable_single_step(target, next_pc)) != ERROR_OK)
1346 return retval;
1348 /* restore banked registers */
1349 if ((retval = xscale_restore_banked(target)) != ERROR_OK)
1350 return retval;
1352 /* send resume request (command 0x30 or 0x31)
1353 * clean the trace buffer if it is to be enabled (0x62) */
1354 if (xscale->trace.buffer_enabled)
1356 if ((retval = xscale_send_u32(target, 0x62)) != ERROR_OK)
1357 return retval;
1358 if ((retval = xscale_send_u32(target, 0x31)) != ERROR_OK)
1359 return retval;
1361 else
1362 if ((retval = xscale_send_u32(target, 0x30)) != ERROR_OK)
1363 return retval;
1365 /* send CPSR */
1366 retval = xscale_send_u32(target,
1367 buf_get_u32(armv4_5->cpsr->value, 0, 32));
1368 if (retval != ERROR_OK)
1369 return retval;
1370 LOG_DEBUG("writing cpsr with value 0x%8.8" PRIx32,
1371 buf_get_u32(armv4_5->cpsr->value, 0, 32));
1373 for (i = 7; i >= 0; i--)
1375 /* send register */
1376 if ((retval = xscale_send_u32(target, buf_get_u32(armv4_5->core_cache->reg_list[i].value, 0, 32))) != ERROR_OK)
1377 return retval;
1378 LOG_DEBUG("writing r%i with value 0x%8.8" PRIx32 "", i, buf_get_u32(armv4_5->core_cache->reg_list[i].value, 0, 32));
1381 /* send PC */
1382 retval = xscale_send_u32(target,
1383 buf_get_u32(armv4_5->pc->value, 0, 32));
1384 if (retval != ERROR_OK)
1385 return retval;
1386 LOG_DEBUG("wrote PC with value 0x%8.8" PRIx32,
1387 buf_get_u32(armv4_5->pc->value, 0, 32));
1389 target_call_event_callbacks(target, TARGET_EVENT_RESUMED);
1391 /* registers are now invalid */
1392 register_cache_invalidate(armv4_5->core_cache);
1394 /* wait for and process debug entry */
1395 if ((retval = xscale_debug_entry(target)) != ERROR_OK)
1396 return retval;
1398 LOG_DEBUG("disable single-step");
1399 if ((retval = xscale_disable_single_step(target)) != ERROR_OK)
1400 return retval;
1402 target_call_event_callbacks(target, TARGET_EVENT_HALTED);
1404 return ERROR_OK;
1407 static int xscale_step(struct target *target, int current,
1408 uint32_t address, int handle_breakpoints)
1410 struct arm *armv4_5 = target_to_arm(target);
1411 struct breakpoint *breakpoint = NULL;
1413 uint32_t current_pc;
1414 int retval;
1416 if (target->state != TARGET_HALTED)
1418 LOG_WARNING("target not halted");
1419 return ERROR_TARGET_NOT_HALTED;
1422 /* current = 1: continue on current pc, otherwise continue at <address> */
1423 if (!current)
1424 buf_set_u32(armv4_5->pc->value, 0, 32, address);
1426 current_pc = buf_get_u32(armv4_5->pc->value, 0, 32);
1428 /* if we're at the reset vector, we have to simulate the step */
1429 if (current_pc == 0x0)
1431 if ((retval = arm_simulate_step(target, NULL)) != ERROR_OK)
1432 return retval;
1433 current_pc = buf_get_u32(armv4_5->pc->value, 0, 32);
1435 target->debug_reason = DBG_REASON_SINGLESTEP;
1436 target_call_event_callbacks(target, TARGET_EVENT_HALTED);
1438 return ERROR_OK;
1441 /* the front-end may request us not to handle breakpoints */
1442 if (handle_breakpoints)
1443 breakpoint = breakpoint_find(target,
1444 buf_get_u32(armv4_5->pc->value, 0, 32));
1445 if (breakpoint != NULL) {
1446 retval = xscale_unset_breakpoint(target, breakpoint);
1447 if (retval != ERROR_OK)
1448 return retval;
1451 retval = xscale_step_inner(target, current, address, handle_breakpoints);
1453 if (breakpoint)
1455 xscale_set_breakpoint(target, breakpoint);
1458 LOG_DEBUG("target stepped");
1460 return ERROR_OK;
1464 static int xscale_assert_reset(struct target *target)
1466 struct xscale_common *xscale = target_to_xscale(target);
1468 LOG_DEBUG("target->state: %s",
1469 target_state_name(target));
1471 /* select DCSR instruction (set endstate to R-T-I to ensure we don't
1472 * end up in T-L-R, which would reset JTAG
1474 xscale_jtag_set_instr(target->tap,
1475 XSCALE_SELDCSR << xscale->xscale_variant,
1476 TAP_IDLE);
1478 /* set Hold reset, Halt mode and Trap Reset */
1479 buf_set_u32(xscale->reg_cache->reg_list[XSCALE_DCSR].value, 30, 1, 0x1);
1480 buf_set_u32(xscale->reg_cache->reg_list[XSCALE_DCSR].value, 16, 1, 0x1);
1481 xscale_write_dcsr(target, 1, 0);
1483 /* select BYPASS, because having DCSR selected caused problems on the PXA27x */
1484 xscale_jtag_set_instr(target->tap, ~0, TAP_IDLE);
1485 jtag_execute_queue();
1487 /* assert reset */
1488 jtag_add_reset(0, 1);
1490 /* sleep 1ms, to be sure we fulfill any requirements */
1491 jtag_add_sleep(1000);
1492 jtag_execute_queue();
1494 target->state = TARGET_RESET;
1496 if (target->reset_halt)
1498 int retval;
1499 if ((retval = target_halt(target)) != ERROR_OK)
1500 return retval;
1503 return ERROR_OK;
1506 static int xscale_deassert_reset(struct target *target)
1508 struct xscale_common *xscale = target_to_xscale(target);
1509 struct breakpoint *breakpoint = target->breakpoints;
1511 LOG_DEBUG("-");
1513 xscale->ibcr_available = 2;
1514 xscale->ibcr0_used = 0;
1515 xscale->ibcr1_used = 0;
1517 xscale->dbr_available = 2;
1518 xscale->dbr0_used = 0;
1519 xscale->dbr1_used = 0;
1521 /* mark all hardware breakpoints as unset */
1522 while (breakpoint)
1524 if (breakpoint->type == BKPT_HARD)
1526 breakpoint->set = 0;
1528 breakpoint = breakpoint->next;
1531 register_cache_invalidate(xscale->armv4_5_common.core_cache);
1533 /* FIXME mark hardware watchpoints got unset too. Also,
1534 * at least some of the XScale registers are invalid...
1538 * REVISIT: *assumes* we had a SRST+TRST reset so the mini-icache
1539 * contents got invalidated. Safer to force that, so writing new
1540 * contents can't ever fail..
1543 uint32_t address;
1544 unsigned buf_cnt;
1545 const uint8_t *buffer = xscale_debug_handler;
1546 int retval;
1548 /* release SRST */
1549 jtag_add_reset(0, 0);
1551 /* wait 300ms; 150 and 100ms were not enough */
1552 jtag_add_sleep(300*1000);
1554 jtag_add_runtest(2030, TAP_IDLE);
1555 jtag_execute_queue();
1557 /* set Hold reset, Halt mode and Trap Reset */
1558 buf_set_u32(xscale->reg_cache->reg_list[XSCALE_DCSR].value, 30, 1, 0x1);
1559 buf_set_u32(xscale->reg_cache->reg_list[XSCALE_DCSR].value, 16, 1, 0x1);
1560 xscale_write_dcsr(target, 1, 0);
1562 /* Load the debug handler into the mini-icache. Since
1563 * it's using halt mode (not monitor mode), it runs in
1564 * "Special Debug State" for access to registers, memory,
1565 * coprocessors, trace data, etc.
1567 address = xscale->handler_address;
1568 for (unsigned binary_size = sizeof xscale_debug_handler - 1;
1569 binary_size > 0;
1570 binary_size -= buf_cnt, buffer += buf_cnt)
1572 uint32_t cache_line[8];
1573 unsigned i;
1575 buf_cnt = binary_size;
1576 if (buf_cnt > 32)
1577 buf_cnt = 32;
1579 for (i = 0; i < buf_cnt; i += 4)
1581 /* convert LE buffer to host-endian uint32_t */
1582 cache_line[i / 4] = le_to_h_u32(&buffer[i]);
1585 for (; i < 32; i += 4)
1587 cache_line[i / 4] = 0xe1a08008;
1590 /* only load addresses other than the reset vectors */
1591 if ((address % 0x400) != 0x0)
1593 retval = xscale_load_ic(target, address,
1594 cache_line);
1595 if (retval != ERROR_OK)
1596 return retval;
1599 address += buf_cnt;
1602 retval = xscale_load_ic(target, 0x0,
1603 xscale->low_vectors);
1604 if (retval != ERROR_OK)
1605 return retval;
1606 retval = xscale_load_ic(target, 0xffff0000,
1607 xscale->high_vectors);
1608 if (retval != ERROR_OK)
1609 return retval;
1611 jtag_add_runtest(30, TAP_IDLE);
1613 jtag_add_sleep(100000);
1615 /* set Hold reset, Halt mode and Trap Reset */
1616 buf_set_u32(xscale->reg_cache->reg_list[XSCALE_DCSR].value, 30, 1, 0x1);
1617 buf_set_u32(xscale->reg_cache->reg_list[XSCALE_DCSR].value, 16, 1, 0x1);
1618 xscale_write_dcsr(target, 1, 0);
1620 /* clear Hold reset to let the target run (should enter debug handler) */
1621 xscale_write_dcsr(target, 0, 1);
1622 target->state = TARGET_RUNNING;
1624 if (!target->reset_halt)
1626 jtag_add_sleep(10000);
1628 /* we should have entered debug now */
1629 xscale_debug_entry(target);
1630 target->state = TARGET_HALTED;
1632 /* resume the target */
1633 xscale_resume(target, 1, 0x0, 1, 0);
1637 return ERROR_OK;
1640 static int xscale_read_core_reg(struct target *target, struct reg *r,
1641 int num, enum arm_mode mode)
1643 /** \todo add debug handler support for core register reads */
1644 LOG_ERROR("not implemented");
1645 return ERROR_OK;
1648 static int xscale_write_core_reg(struct target *target, struct reg *r,
1649 int num, enum arm_mode mode, uint32_t value)
1651 /** \todo add debug handler support for core register writes */
1652 LOG_ERROR("not implemented");
1653 return ERROR_OK;
1656 static int xscale_full_context(struct target *target)
1658 struct arm *armv4_5 = target_to_arm(target);
1660 uint32_t *buffer;
1662 int i, j;
1664 LOG_DEBUG("-");
1666 if (target->state != TARGET_HALTED)
1668 LOG_WARNING("target not halted");
1669 return ERROR_TARGET_NOT_HALTED;
1672 buffer = malloc(4 * 8);
1674 /* iterate through processor modes (FIQ, IRQ, SVC, ABT, UND and SYS)
1675 * we can't enter User mode on an XScale (unpredictable),
1676 * but User shares registers with SYS
1678 for (i = 1; i < 7; i++)
1680 enum arm_mode mode = armv4_5_number_to_mode(i);
1681 bool valid = true;
1682 struct reg *r;
1684 if (mode == ARM_MODE_USR)
1685 continue;
1687 /* check if there are invalid registers in the current mode
1689 for (j = 0; valid && j <= 16; j++)
1691 if (!ARMV4_5_CORE_REG_MODE(armv4_5->core_cache,
1692 mode, j).valid)
1693 valid = false;
1695 if (valid)
1696 continue;
1698 /* request banked registers */
1699 xscale_send_u32(target, 0x0);
1701 /* send CPSR for desired bank mode */
1702 xscale_send_u32(target, mode | 0xc0 /* I/F bits */);
1704 /* get banked registers: r8 to r14; and SPSR
1705 * except in USR/SYS mode
1707 if (mode != ARM_MODE_SYS) {
1708 /* SPSR */
1709 r = &ARMV4_5_CORE_REG_MODE(armv4_5->core_cache,
1710 mode, 16);
1712 xscale_receive(target, buffer, 8);
1714 buf_set_u32(r->value, 0, 32, buffer[7]);
1715 r->dirty = false;
1716 r->valid = true;
1717 } else {
1718 xscale_receive(target, buffer, 7);
1721 /* move data from buffer to register cache */
1722 for (j = 8; j <= 14; j++)
1724 r = &ARMV4_5_CORE_REG_MODE(armv4_5->core_cache,
1725 mode, j);
1727 buf_set_u32(r->value, 0, 32, buffer[j - 8]);
1728 r->dirty = false;
1729 r->valid = true;
1733 free(buffer);
1735 return ERROR_OK;
1738 static int xscale_restore_banked(struct target *target)
1740 struct arm *armv4_5 = target_to_arm(target);
1742 int i, j;
1744 if (target->state != TARGET_HALTED)
1746 LOG_WARNING("target not halted");
1747 return ERROR_TARGET_NOT_HALTED;
1750 /* iterate through processor modes (FIQ, IRQ, SVC, ABT, UND and SYS)
1751 * and check if any banked registers need to be written. Ignore
1752 * USR mode (number 0) in favor of SYS; we can't enter User mode on
1753 * an XScale (unpredictable), but they share all registers.
1755 for (i = 1; i < 7; i++)
1757 enum arm_mode mode = armv4_5_number_to_mode(i);
1758 struct reg *r;
1760 if (mode == ARM_MODE_USR)
1761 continue;
1763 /* check if there are dirty registers in this mode */
1764 for (j = 8; j <= 14; j++)
1766 if (ARMV4_5_CORE_REG_MODE(armv4_5->core_cache,
1767 mode, j).dirty)
1768 goto dirty;
1771 /* if not USR/SYS, check if the SPSR needs to be written */
1772 if (mode != ARM_MODE_SYS)
1774 if (ARMV4_5_CORE_REG_MODE(armv4_5->core_cache,
1775 mode, 16).dirty)
1776 goto dirty;
1779 /* there's nothing to flush for this mode */
1780 continue;
1782 dirty:
1783 /* command 0x1: "send banked registers" */
1784 xscale_send_u32(target, 0x1);
1786 /* send CPSR for desired mode */
1787 xscale_send_u32(target, mode | 0xc0 /* I/F bits */);
1789 /* send r8 to r14/lr ... only FIQ needs more than r13..r14,
1790 * but this protocol doesn't understand that nuance.
1792 for (j = 8; j <= 14; j++) {
1793 r = &ARMV4_5_CORE_REG_MODE(armv4_5->core_cache,
1794 mode, j);
1795 xscale_send_u32(target, buf_get_u32(r->value, 0, 32));
1796 r->dirty = false;
1799 /* send spsr if not in USR/SYS mode */
1800 if (mode != ARM_MODE_SYS) {
1801 r = &ARMV4_5_CORE_REG_MODE(armv4_5->core_cache,
1802 mode, 16);
1803 xscale_send_u32(target, buf_get_u32(r->value, 0, 32));
1804 r->dirty = false;
1808 return ERROR_OK;
1811 static int xscale_read_memory(struct target *target, uint32_t address,
1812 uint32_t size, uint32_t count, uint8_t *buffer)
1814 struct xscale_common *xscale = target_to_xscale(target);
1815 uint32_t *buf32;
1816 uint32_t i;
1817 int retval;
1819 LOG_DEBUG("address: 0x%8.8" PRIx32 ", size: 0x%8.8" PRIx32 ", count: 0x%8.8" PRIx32, address, size, count);
1821 if (target->state != TARGET_HALTED)
1823 LOG_WARNING("target not halted");
1824 return ERROR_TARGET_NOT_HALTED;
1827 /* sanitize arguments */
1828 if (((size != 4) && (size != 2) && (size != 1)) || (count == 0) || !(buffer))
1829 return ERROR_INVALID_ARGUMENTS;
1831 if (((size == 4) && (address & 0x3u)) || ((size == 2) && (address & 0x1u)))
1832 return ERROR_TARGET_UNALIGNED_ACCESS;
1834 /* send memory read request (command 0x1n, n: access size) */
1835 if ((retval = xscale_send_u32(target, 0x10 | size)) != ERROR_OK)
1836 return retval;
1838 /* send base address for read request */
1839 if ((retval = xscale_send_u32(target, address)) != ERROR_OK)
1840 return retval;
1842 /* send number of requested data words */
1843 if ((retval = xscale_send_u32(target, count)) != ERROR_OK)
1844 return retval;
1846 /* receive data from target (count times 32-bit words in host endianness) */
1847 buf32 = malloc(4 * count);
1848 if ((retval = xscale_receive(target, buf32, count)) != ERROR_OK)
1849 return retval;
1851 /* extract data from host-endian buffer into byte stream */
1852 for (i = 0; i < count; i++)
1854 switch (size)
1856 case 4:
1857 target_buffer_set_u32(target, buffer, buf32[i]);
1858 buffer += 4;
1859 break;
1860 case 2:
1861 target_buffer_set_u16(target, buffer, buf32[i] & 0xffff);
1862 buffer += 2;
1863 break;
1864 case 1:
1865 *buffer++ = buf32[i] & 0xff;
1866 break;
1867 default:
1868 LOG_ERROR("invalid read size");
1869 return ERROR_INVALID_ARGUMENTS;
1873 free(buf32);
1875 /* examine DCSR, to see if Sticky Abort (SA) got set */
1876 if ((retval = xscale_read_dcsr(target)) != ERROR_OK)
1877 return retval;
1878 if (buf_get_u32(xscale->reg_cache->reg_list[XSCALE_DCSR].value, 5, 1) == 1)
1880 /* clear SA bit */
1881 if ((retval = xscale_send_u32(target, 0x60)) != ERROR_OK)
1882 return retval;
1884 return ERROR_TARGET_DATA_ABORT;
1887 return ERROR_OK;
1890 static int xscale_read_phys_memory(struct target *target, uint32_t address,
1891 uint32_t size, uint32_t count, uint8_t *buffer)
1893 struct xscale_common *xscale = target_to_xscale(target);
1895 /* with MMU inactive, there are only physical addresses */
1896 if (!xscale->armv4_5_mmu.mmu_enabled)
1897 return xscale_read_memory(target, address, size, count, buffer);
1899 /** \todo: provide a non-stub implementation of this routine. */
1900 LOG_ERROR("%s: %s is not implemented. Disable MMU?",
1901 target_name(target), __func__);
1902 return ERROR_FAIL;
1905 static int xscale_write_memory(struct target *target, uint32_t address,
1906 uint32_t size, uint32_t count, uint8_t *buffer)
1908 struct xscale_common *xscale = target_to_xscale(target);
1909 int retval;
1911 LOG_DEBUG("address: 0x%8.8" PRIx32 ", size: 0x%8.8" PRIx32 ", count: 0x%8.8" PRIx32, address, size, count);
1913 if (target->state != TARGET_HALTED)
1915 LOG_WARNING("target not halted");
1916 return ERROR_TARGET_NOT_HALTED;
1919 /* sanitize arguments */
1920 if (((size != 4) && (size != 2) && (size != 1)) || (count == 0) || !(buffer))
1921 return ERROR_INVALID_ARGUMENTS;
1923 if (((size == 4) && (address & 0x3u)) || ((size == 2) && (address & 0x1u)))
1924 return ERROR_TARGET_UNALIGNED_ACCESS;
1926 /* send memory write request (command 0x2n, n: access size) */
1927 if ((retval = xscale_send_u32(target, 0x20 | size)) != ERROR_OK)
1928 return retval;
1930 /* send base address for read request */
1931 if ((retval = xscale_send_u32(target, address)) != ERROR_OK)
1932 return retval;
1934 /* send number of requested data words to be written*/
1935 if ((retval = xscale_send_u32(target, count)) != ERROR_OK)
1936 return retval;
1938 /* extract data from host-endian buffer into byte stream */
1939 #if 0
1940 for (i = 0; i < count; i++)
1942 switch (size)
1944 case 4:
1945 value = target_buffer_get_u32(target, buffer);
1946 xscale_send_u32(target, value);
1947 buffer += 4;
1948 break;
1949 case 2:
1950 value = target_buffer_get_u16(target, buffer);
1951 xscale_send_u32(target, value);
1952 buffer += 2;
1953 break;
1954 case 1:
1955 value = *buffer;
1956 xscale_send_u32(target, value);
1957 buffer += 1;
1958 break;
1959 default:
1960 LOG_ERROR("should never get here");
1961 exit(-1);
1964 #endif
1965 if ((retval = xscale_send(target, buffer, count, size)) != ERROR_OK)
1966 return retval;
1968 /* examine DCSR, to see if Sticky Abort (SA) got set */
1969 if ((retval = xscale_read_dcsr(target)) != ERROR_OK)
1970 return retval;
1971 if (buf_get_u32(xscale->reg_cache->reg_list[XSCALE_DCSR].value, 5, 1) == 1)
1973 /* clear SA bit */
1974 if ((retval = xscale_send_u32(target, 0x60)) != ERROR_OK)
1975 return retval;
1977 return ERROR_TARGET_DATA_ABORT;
1980 return ERROR_OK;
1983 static int xscale_write_phys_memory(struct target *target, uint32_t address,
1984 uint32_t size, uint32_t count, uint8_t *buffer)
1986 struct xscale_common *xscale = target_to_xscale(target);
1988 /* with MMU inactive, there are only physical addresses */
1989 if (!xscale->armv4_5_mmu.mmu_enabled)
1990 return xscale_read_memory(target, address, size, count, buffer);
1992 /** \todo: provide a non-stub implementation of this routine. */
1993 LOG_ERROR("%s: %s is not implemented. Disable MMU?",
1994 target_name(target), __func__);
1995 return ERROR_FAIL;
1998 static int xscale_bulk_write_memory(struct target *target, uint32_t address,
1999 uint32_t count, uint8_t *buffer)
2001 return xscale_write_memory(target, address, 4, count, buffer);
2004 static uint32_t xscale_get_ttb(struct target *target)
2006 struct xscale_common *xscale = target_to_xscale(target);
2007 uint32_t ttb;
2009 xscale_get_reg(&xscale->reg_cache->reg_list[XSCALE_TTB]);
2010 ttb = buf_get_u32(xscale->reg_cache->reg_list[XSCALE_TTB].value, 0, 32);
2012 return ttb;
2015 static void xscale_disable_mmu_caches(struct target *target, int mmu,
2016 int d_u_cache, int i_cache)
2018 struct xscale_common *xscale = target_to_xscale(target);
2019 uint32_t cp15_control;
2021 /* read cp15 control register */
2022 xscale_get_reg(&xscale->reg_cache->reg_list[XSCALE_CTRL]);
2023 cp15_control = buf_get_u32(xscale->reg_cache->reg_list[XSCALE_CTRL].value, 0, 32);
2025 if (mmu)
2026 cp15_control &= ~0x1U;
2028 if (d_u_cache)
2030 /* clean DCache */
2031 xscale_send_u32(target, 0x50);
2032 xscale_send_u32(target, xscale->cache_clean_address);
2034 /* invalidate DCache */
2035 xscale_send_u32(target, 0x51);
2037 cp15_control &= ~0x4U;
2040 if (i_cache)
2042 /* invalidate ICache */
2043 xscale_send_u32(target, 0x52);
2044 cp15_control &= ~0x1000U;
2047 /* write new cp15 control register */
2048 xscale_set_reg_u32(&xscale->reg_cache->reg_list[XSCALE_CTRL], cp15_control);
2050 /* execute cpwait to ensure outstanding operations complete */
2051 xscale_send_u32(target, 0x53);
2054 static void xscale_enable_mmu_caches(struct target *target, int mmu,
2055 int d_u_cache, int i_cache)
2057 struct xscale_common *xscale = target_to_xscale(target);
2058 uint32_t cp15_control;
2060 /* read cp15 control register */
2061 xscale_get_reg(&xscale->reg_cache->reg_list[XSCALE_CTRL]);
2062 cp15_control = buf_get_u32(xscale->reg_cache->reg_list[XSCALE_CTRL].value, 0, 32);
2064 if (mmu)
2065 cp15_control |= 0x1U;
2067 if (d_u_cache)
2068 cp15_control |= 0x4U;
2070 if (i_cache)
2071 cp15_control |= 0x1000U;
2073 /* write new cp15 control register */
2074 xscale_set_reg_u32(&xscale->reg_cache->reg_list[XSCALE_CTRL], cp15_control);
2076 /* execute cpwait to ensure outstanding operations complete */
2077 xscale_send_u32(target, 0x53);
2080 static int xscale_set_breakpoint(struct target *target,
2081 struct breakpoint *breakpoint)
2083 int retval;
2084 struct xscale_common *xscale = target_to_xscale(target);
2086 if (target->state != TARGET_HALTED)
2088 LOG_WARNING("target not halted");
2089 return ERROR_TARGET_NOT_HALTED;
2092 if (breakpoint->set)
2094 LOG_WARNING("breakpoint already set");
2095 return ERROR_OK;
2098 if (breakpoint->type == BKPT_HARD)
2100 uint32_t value = breakpoint->address | 1;
2101 if (!xscale->ibcr0_used)
2103 xscale_set_reg_u32(&xscale->reg_cache->reg_list[XSCALE_IBCR0], value);
2104 xscale->ibcr0_used = 1;
2105 breakpoint->set = 1; /* breakpoint set on first breakpoint register */
2107 else if (!xscale->ibcr1_used)
2109 xscale_set_reg_u32(&xscale->reg_cache->reg_list[XSCALE_IBCR1], value);
2110 xscale->ibcr1_used = 1;
2111 breakpoint->set = 2; /* breakpoint set on second breakpoint register */
2113 else
2115 LOG_ERROR("BUG: no hardware comparator available");
2116 return ERROR_OK;
2119 else if (breakpoint->type == BKPT_SOFT)
2121 if (breakpoint->length == 4)
2123 /* keep the original instruction in target endianness */
2124 if ((retval = target_read_memory(target, breakpoint->address, 4, 1, breakpoint->orig_instr)) != ERROR_OK)
2126 return retval;
2128 /* write the bkpt instruction in target endianness (arm7_9->arm_bkpt is host endian) */
2129 if ((retval = target_write_u32(target, breakpoint->address, xscale->arm_bkpt)) != ERROR_OK)
2131 return retval;
2134 else
2136 /* keep the original instruction in target endianness */
2137 if ((retval = target_read_memory(target, breakpoint->address, 2, 1, breakpoint->orig_instr)) != ERROR_OK)
2139 return retval;
2141 /* write the bkpt instruction in target endianness (arm7_9->arm_bkpt is host endian) */
2142 if ((retval = target_write_u32(target, breakpoint->address, xscale->thumb_bkpt)) != ERROR_OK)
2144 return retval;
2147 breakpoint->set = 1;
2149 xscale_send_u32(target, 0x50); /* clean dcache */
2150 xscale_send_u32(target, xscale->cache_clean_address);
2151 xscale_send_u32(target, 0x51); /* invalidate dcache */
2152 xscale_send_u32(target, 0x52); /* invalidate icache and flush fetch buffers */
2155 return ERROR_OK;
2158 static int xscale_add_breakpoint(struct target *target,
2159 struct breakpoint *breakpoint)
2161 struct xscale_common *xscale = target_to_xscale(target);
2163 if ((breakpoint->type == BKPT_HARD) && (xscale->ibcr_available < 1))
2165 LOG_INFO("no breakpoint unit available for hardware breakpoint");
2166 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
2169 if ((breakpoint->length != 2) && (breakpoint->length != 4))
2171 LOG_INFO("only breakpoints of two (Thumb) or four (ARM) bytes length supported");
2172 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
2175 if (breakpoint->type == BKPT_HARD)
2177 xscale->ibcr_available--;
2180 return ERROR_OK;
2183 static int xscale_unset_breakpoint(struct target *target,
2184 struct breakpoint *breakpoint)
2186 int retval;
2187 struct xscale_common *xscale = target_to_xscale(target);
2189 if (target->state != TARGET_HALTED)
2191 LOG_WARNING("target not halted");
2192 return ERROR_TARGET_NOT_HALTED;
2195 if (!breakpoint->set)
2197 LOG_WARNING("breakpoint not set");
2198 return ERROR_OK;
2201 if (breakpoint->type == BKPT_HARD)
2203 if (breakpoint->set == 1)
2205 xscale_set_reg_u32(&xscale->reg_cache->reg_list[XSCALE_IBCR0], 0x0);
2206 xscale->ibcr0_used = 0;
2208 else if (breakpoint->set == 2)
2210 xscale_set_reg_u32(&xscale->reg_cache->reg_list[XSCALE_IBCR1], 0x0);
2211 xscale->ibcr1_used = 0;
2213 breakpoint->set = 0;
2215 else
2217 /* restore original instruction (kept in target endianness) */
2218 if (breakpoint->length == 4)
2220 if ((retval = target_write_memory(target, breakpoint->address, 4, 1, breakpoint->orig_instr)) != ERROR_OK)
2222 return retval;
2225 else
2227 if ((retval = target_write_memory(target, breakpoint->address, 2, 1, breakpoint->orig_instr)) != ERROR_OK)
2229 return retval;
2232 breakpoint->set = 0;
2234 xscale_send_u32(target, 0x50); /* clean dcache */
2235 xscale_send_u32(target, xscale->cache_clean_address);
2236 xscale_send_u32(target, 0x51); /* invalidate dcache */
2237 xscale_send_u32(target, 0x52); /* invalidate icache and flush fetch buffers */
2240 return ERROR_OK;
2243 static int xscale_remove_breakpoint(struct target *target, struct breakpoint *breakpoint)
2245 struct xscale_common *xscale = target_to_xscale(target);
2247 if (target->state != TARGET_HALTED)
2249 LOG_WARNING("target not halted");
2250 return ERROR_TARGET_NOT_HALTED;
2253 if (breakpoint->set)
2255 xscale_unset_breakpoint(target, breakpoint);
2258 if (breakpoint->type == BKPT_HARD)
2259 xscale->ibcr_available++;
2261 return ERROR_OK;
2264 static int xscale_set_watchpoint(struct target *target,
2265 struct watchpoint *watchpoint)
2267 struct xscale_common *xscale = target_to_xscale(target);
2268 uint8_t enable = 0;
2269 struct reg *dbcon = &xscale->reg_cache->reg_list[XSCALE_DBCON];
2270 uint32_t dbcon_value = buf_get_u32(dbcon->value, 0, 32);
2272 if (target->state != TARGET_HALTED)
2274 LOG_WARNING("target not halted");
2275 return ERROR_TARGET_NOT_HALTED;
2278 xscale_get_reg(dbcon);
2280 switch (watchpoint->rw)
2282 case WPT_READ:
2283 enable = 0x3;
2284 break;
2285 case WPT_ACCESS:
2286 enable = 0x2;
2287 break;
2288 case WPT_WRITE:
2289 enable = 0x1;
2290 break;
2291 default:
2292 LOG_ERROR("BUG: watchpoint->rw neither read, write nor access");
2295 if (!xscale->dbr0_used)
2297 xscale_set_reg_u32(&xscale->reg_cache->reg_list[XSCALE_DBR0], watchpoint->address);
2298 dbcon_value |= enable;
2299 xscale_set_reg_u32(dbcon, dbcon_value);
2300 watchpoint->set = 1;
2301 xscale->dbr0_used = 1;
2303 else if (!xscale->dbr1_used)
2305 xscale_set_reg_u32(&xscale->reg_cache->reg_list[XSCALE_DBR1], watchpoint->address);
2306 dbcon_value |= enable << 2;
2307 xscale_set_reg_u32(dbcon, dbcon_value);
2308 watchpoint->set = 2;
2309 xscale->dbr1_used = 1;
2311 else
2313 LOG_ERROR("BUG: no hardware comparator available");
2314 return ERROR_OK;
2317 return ERROR_OK;
2320 static int xscale_add_watchpoint(struct target *target,
2321 struct watchpoint *watchpoint)
2323 struct xscale_common *xscale = target_to_xscale(target);
2325 if (xscale->dbr_available < 1)
2327 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
2330 if ((watchpoint->length != 1) && (watchpoint->length != 2) && (watchpoint->length != 4))
2332 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
2335 xscale->dbr_available--;
2337 return ERROR_OK;
2340 static int xscale_unset_watchpoint(struct target *target,
2341 struct watchpoint *watchpoint)
2343 struct xscale_common *xscale = target_to_xscale(target);
2344 struct reg *dbcon = &xscale->reg_cache->reg_list[XSCALE_DBCON];
2345 uint32_t dbcon_value = buf_get_u32(dbcon->value, 0, 32);
2347 if (target->state != TARGET_HALTED)
2349 LOG_WARNING("target not halted");
2350 return ERROR_TARGET_NOT_HALTED;
2353 if (!watchpoint->set)
2355 LOG_WARNING("breakpoint not set");
2356 return ERROR_OK;
2359 if (watchpoint->set == 1)
2361 dbcon_value &= ~0x3;
2362 xscale_set_reg_u32(dbcon, dbcon_value);
2363 xscale->dbr0_used = 0;
2365 else if (watchpoint->set == 2)
2367 dbcon_value &= ~0xc;
2368 xscale_set_reg_u32(dbcon, dbcon_value);
2369 xscale->dbr1_used = 0;
2371 watchpoint->set = 0;
2373 return ERROR_OK;
2376 static int xscale_remove_watchpoint(struct target *target, struct watchpoint *watchpoint)
2378 struct xscale_common *xscale = target_to_xscale(target);
2380 if (target->state != TARGET_HALTED)
2382 LOG_WARNING("target not halted");
2383 return ERROR_TARGET_NOT_HALTED;
2386 if (watchpoint->set)
2388 xscale_unset_watchpoint(target, watchpoint);
2391 xscale->dbr_available++;
2393 return ERROR_OK;
2396 static int xscale_get_reg(struct reg *reg)
2398 struct xscale_reg *arch_info = reg->arch_info;
2399 struct target *target = arch_info->target;
2400 struct xscale_common *xscale = target_to_xscale(target);
2402 /* DCSR, TX and RX are accessible via JTAG */
2403 if (strcmp(reg->name, "XSCALE_DCSR") == 0)
2405 return xscale_read_dcsr(arch_info->target);
2407 else if (strcmp(reg->name, "XSCALE_TX") == 0)
2409 /* 1 = consume register content */
2410 return xscale_read_tx(arch_info->target, 1);
2412 else if (strcmp(reg->name, "XSCALE_RX") == 0)
2414 /* can't read from RX register (host -> debug handler) */
2415 return ERROR_OK;
2417 else if (strcmp(reg->name, "XSCALE_TXRXCTRL") == 0)
2419 /* can't (explicitly) read from TXRXCTRL register */
2420 return ERROR_OK;
2422 else /* Other DBG registers have to be transfered by the debug handler */
2424 /* send CP read request (command 0x40) */
2425 xscale_send_u32(target, 0x40);
2427 /* send CP register number */
2428 xscale_send_u32(target, arch_info->dbg_handler_number);
2430 /* read register value */
2431 xscale_read_tx(target, 1);
2432 buf_cpy(xscale->reg_cache->reg_list[XSCALE_TX].value, reg->value, 32);
2434 reg->dirty = 0;
2435 reg->valid = 1;
2438 return ERROR_OK;
2441 static int xscale_set_reg(struct reg *reg, uint8_t* buf)
2443 struct xscale_reg *arch_info = reg->arch_info;
2444 struct target *target = arch_info->target;
2445 struct xscale_common *xscale = target_to_xscale(target);
2446 uint32_t value = buf_get_u32(buf, 0, 32);
2448 /* DCSR, TX and RX are accessible via JTAG */
2449 if (strcmp(reg->name, "XSCALE_DCSR") == 0)
2451 buf_set_u32(xscale->reg_cache->reg_list[XSCALE_DCSR].value, 0, 32, value);
2452 return xscale_write_dcsr(arch_info->target, -1, -1);
2454 else if (strcmp(reg->name, "XSCALE_RX") == 0)
2456 buf_set_u32(xscale->reg_cache->reg_list[XSCALE_RX].value, 0, 32, value);
2457 return xscale_write_rx(arch_info->target);
2459 else if (strcmp(reg->name, "XSCALE_TX") == 0)
2461 /* can't write to TX register (debug-handler -> host) */
2462 return ERROR_OK;
2464 else if (strcmp(reg->name, "XSCALE_TXRXCTRL") == 0)
2466 /* can't (explicitly) write to TXRXCTRL register */
2467 return ERROR_OK;
2469 else /* Other DBG registers have to be transfered by the debug handler */
2471 /* send CP write request (command 0x41) */
2472 xscale_send_u32(target, 0x41);
2474 /* send CP register number */
2475 xscale_send_u32(target, arch_info->dbg_handler_number);
2477 /* send CP register value */
2478 xscale_send_u32(target, value);
2479 buf_set_u32(reg->value, 0, 32, value);
2482 return ERROR_OK;
2485 static int xscale_write_dcsr_sw(struct target *target, uint32_t value)
2487 struct xscale_common *xscale = target_to_xscale(target);
2488 struct reg *dcsr = &xscale->reg_cache->reg_list[XSCALE_DCSR];
2489 struct xscale_reg *dcsr_arch_info = dcsr->arch_info;
2491 /* send CP write request (command 0x41) */
2492 xscale_send_u32(target, 0x41);
2494 /* send CP register number */
2495 xscale_send_u32(target, dcsr_arch_info->dbg_handler_number);
2497 /* send CP register value */
2498 xscale_send_u32(target, value);
2499 buf_set_u32(dcsr->value, 0, 32, value);
2501 return ERROR_OK;
2504 static int xscale_read_trace(struct target *target)
2506 struct xscale_common *xscale = target_to_xscale(target);
2507 struct arm *armv4_5 = &xscale->armv4_5_common;
2508 struct xscale_trace_data **trace_data_p;
2510 /* 258 words from debug handler
2511 * 256 trace buffer entries
2512 * 2 checkpoint addresses
2514 uint32_t trace_buffer[258];
2515 int is_address[256];
2516 int i, j;
2518 if (target->state != TARGET_HALTED)
2520 LOG_WARNING("target must be stopped to read trace data");
2521 return ERROR_TARGET_NOT_HALTED;
2524 /* send read trace buffer command (command 0x61) */
2525 xscale_send_u32(target, 0x61);
2527 /* receive trace buffer content */
2528 xscale_receive(target, trace_buffer, 258);
2530 /* parse buffer backwards to identify address entries */
2531 for (i = 255; i >= 0; i--)
2533 is_address[i] = 0;
2534 if (((trace_buffer[i] & 0xf0) == 0x90) ||
2535 ((trace_buffer[i] & 0xf0) == 0xd0))
2537 if (i >= 3)
2538 is_address[--i] = 1;
2539 if (i >= 2)
2540 is_address[--i] = 1;
2541 if (i >= 1)
2542 is_address[--i] = 1;
2543 if (i >= 0)
2544 is_address[--i] = 1;
2549 /* search first non-zero entry */
2550 for (j = 0; (j < 256) && (trace_buffer[j] == 0) && (!is_address[j]); j++)
2553 if (j == 256)
2555 LOG_DEBUG("no trace data collected");
2556 return ERROR_XSCALE_NO_TRACE_DATA;
2559 for (trace_data_p = &xscale->trace.data; *trace_data_p; trace_data_p = &(*trace_data_p)->next)
2562 *trace_data_p = malloc(sizeof(struct xscale_trace_data));
2563 (*trace_data_p)->next = NULL;
2564 (*trace_data_p)->chkpt0 = trace_buffer[256];
2565 (*trace_data_p)->chkpt1 = trace_buffer[257];
2566 (*trace_data_p)->last_instruction =
2567 buf_get_u32(armv4_5->pc->value, 0, 32);
2568 (*trace_data_p)->entries = malloc(sizeof(struct xscale_trace_entry) * (256 - j));
2569 (*trace_data_p)->depth = 256 - j;
2571 for (i = j; i < 256; i++)
2573 (*trace_data_p)->entries[i - j].data = trace_buffer[i];
2574 if (is_address[i])
2575 (*trace_data_p)->entries[i - j].type = XSCALE_TRACE_ADDRESS;
2576 else
2577 (*trace_data_p)->entries[i - j].type = XSCALE_TRACE_MESSAGE;
2580 return ERROR_OK;
2583 static int xscale_read_instruction(struct target *target,
2584 struct arm_instruction *instruction)
2586 struct xscale_common *xscale = target_to_xscale(target);
2587 int i;
2588 int section = -1;
2589 size_t size_read;
2590 uint32_t opcode;
2591 int retval;
2593 if (!xscale->trace.image)
2594 return ERROR_TRACE_IMAGE_UNAVAILABLE;
2596 /* search for the section the current instruction belongs to */
2597 for (i = 0; i < xscale->trace.image->num_sections; i++)
2599 if ((xscale->trace.image->sections[i].base_address <= xscale->trace.current_pc) &&
2600 (xscale->trace.image->sections[i].base_address + xscale->trace.image->sections[i].size > xscale->trace.current_pc))
2602 section = i;
2603 break;
2607 if (section == -1)
2609 /* current instruction couldn't be found in the image */
2610 return ERROR_TRACE_INSTRUCTION_UNAVAILABLE;
2613 if (xscale->trace.core_state == ARM_STATE_ARM)
2615 uint8_t buf[4];
2616 if ((retval = image_read_section(xscale->trace.image, section,
2617 xscale->trace.current_pc - xscale->trace.image->sections[section].base_address,
2618 4, buf, &size_read)) != ERROR_OK)
2620 LOG_ERROR("error while reading instruction: %i", retval);
2621 return ERROR_TRACE_INSTRUCTION_UNAVAILABLE;
2623 opcode = target_buffer_get_u32(target, buf);
2624 arm_evaluate_opcode(opcode, xscale->trace.current_pc, instruction);
2626 else if (xscale->trace.core_state == ARM_STATE_THUMB)
2628 uint8_t buf[2];
2629 if ((retval = image_read_section(xscale->trace.image, section,
2630 xscale->trace.current_pc - xscale->trace.image->sections[section].base_address,
2631 2, buf, &size_read)) != ERROR_OK)
2633 LOG_ERROR("error while reading instruction: %i", retval);
2634 return ERROR_TRACE_INSTRUCTION_UNAVAILABLE;
2636 opcode = target_buffer_get_u16(target, buf);
2637 thumb_evaluate_opcode(opcode, xscale->trace.current_pc, instruction);
2639 else
2641 LOG_ERROR("BUG: unknown core state encountered");
2642 exit(-1);
2645 return ERROR_OK;
2648 static int xscale_branch_address(struct xscale_trace_data *trace_data,
2649 int i, uint32_t *target)
2651 /* if there are less than four entries prior to the indirect branch message
2652 * we can't extract the address */
2653 if (i < 4)
2655 return -1;
2658 *target = (trace_data->entries[i-1].data) | (trace_data->entries[i-2].data << 8) |
2659 (trace_data->entries[i-3].data << 16) | (trace_data->entries[i-4].data << 24);
2661 return 0;
2664 static int xscale_analyze_trace(struct target *target, struct command_context *cmd_ctx)
2666 struct xscale_common *xscale = target_to_xscale(target);
2667 int next_pc_ok = 0;
2668 uint32_t next_pc = 0x0;
2669 struct xscale_trace_data *trace_data = xscale->trace.data;
2670 int retval;
2672 while (trace_data)
2674 int i, chkpt;
2675 int rollover;
2676 int branch;
2677 int exception;
2678 xscale->trace.core_state = ARM_STATE_ARM;
2680 chkpt = 0;
2681 rollover = 0;
2683 for (i = 0; i < trace_data->depth; i++)
2685 next_pc_ok = 0;
2686 branch = 0;
2687 exception = 0;
2689 if (trace_data->entries[i].type == XSCALE_TRACE_ADDRESS)
2690 continue;
2692 switch ((trace_data->entries[i].data & 0xf0) >> 4)
2694 case 0: /* Exceptions */
2695 case 1:
2696 case 2:
2697 case 3:
2698 case 4:
2699 case 5:
2700 case 6:
2701 case 7:
2702 exception = (trace_data->entries[i].data & 0x70) >> 4;
2703 next_pc_ok = 1;
2704 next_pc = (trace_data->entries[i].data & 0xf0) >> 2;
2705 command_print(cmd_ctx, "--- exception %i ---", (trace_data->entries[i].data & 0xf0) >> 4);
2706 break;
2707 case 8: /* Direct Branch */
2708 branch = 1;
2709 break;
2710 case 9: /* Indirect Branch */
2711 branch = 1;
2712 if (xscale_branch_address(trace_data, i, &next_pc) == 0)
2714 next_pc_ok = 1;
2716 break;
2717 case 13: /* Checkpointed Indirect Branch */
2718 if (xscale_branch_address(trace_data, i, &next_pc) == 0)
2720 next_pc_ok = 1;
2721 if (((chkpt == 0) && (next_pc != trace_data->chkpt0))
2722 || ((chkpt == 1) && (next_pc != trace_data->chkpt1)))
2723 LOG_WARNING("checkpointed indirect branch target address doesn't match checkpoint");
2725 /* explicit fall-through */
2726 case 12: /* Checkpointed Direct Branch */
2727 branch = 1;
2728 if (chkpt == 0)
2730 next_pc_ok = 1;
2731 next_pc = trace_data->chkpt0;
2732 chkpt++;
2734 else if (chkpt == 1)
2736 next_pc_ok = 1;
2737 next_pc = trace_data->chkpt0;
2738 chkpt++;
2740 else
2742 LOG_WARNING("more than two checkpointed branches encountered");
2744 break;
2745 case 15: /* Roll-over */
2746 rollover++;
2747 continue;
2748 default: /* Reserved */
2749 command_print(cmd_ctx, "--- reserved trace message ---");
2750 LOG_ERROR("BUG: trace message %i is reserved", (trace_data->entries[i].data & 0xf0) >> 4);
2751 return ERROR_OK;
2754 if (xscale->trace.pc_ok)
2756 int executed = (trace_data->entries[i].data & 0xf) + rollover * 16;
2757 struct arm_instruction instruction;
2759 if ((exception == 6) || (exception == 7))
2761 /* IRQ or FIQ exception, no instruction executed */
2762 executed -= 1;
2765 while (executed-- >= 0)
2767 if ((retval = xscale_read_instruction(target, &instruction)) != ERROR_OK)
2769 /* can't continue tracing with no image available */
2770 if (retval == ERROR_TRACE_IMAGE_UNAVAILABLE)
2772 return retval;
2774 else if (retval == ERROR_TRACE_INSTRUCTION_UNAVAILABLE)
2776 /* TODO: handle incomplete images */
2780 /* a precise abort on a load to the PC is included in the incremental
2781 * word count, other instructions causing data aborts are not included
2783 if ((executed == 0) && (exception == 4)
2784 && ((instruction.type >= ARM_LDR) && (instruction.type <= ARM_LDM)))
2786 if ((instruction.type == ARM_LDM)
2787 && ((instruction.info.load_store_multiple.register_list & 0x8000) == 0))
2789 executed--;
2791 else if (((instruction.type >= ARM_LDR) && (instruction.type <= ARM_LDRSH))
2792 && (instruction.info.load_store.Rd != 15))
2794 executed--;
2798 /* only the last instruction executed
2799 * (the one that caused the control flow change)
2800 * could be a taken branch
2802 if (((executed == -1) && (branch == 1)) &&
2803 (((instruction.type == ARM_B) ||
2804 (instruction.type == ARM_BL) ||
2805 (instruction.type == ARM_BLX)) &&
2806 (instruction.info.b_bl_bx_blx.target_address != 0xffffffff)))
2808 xscale->trace.current_pc = instruction.info.b_bl_bx_blx.target_address;
2810 else
2812 xscale->trace.current_pc += (xscale->trace.core_state == ARM_STATE_ARM) ? 4 : 2;
2814 command_print(cmd_ctx, "%s", instruction.text);
2817 rollover = 0;
2820 if (next_pc_ok)
2822 xscale->trace.current_pc = next_pc;
2823 xscale->trace.pc_ok = 1;
2827 for (; xscale->trace.current_pc < trace_data->last_instruction; xscale->trace.current_pc += (xscale->trace.core_state == ARM_STATE_ARM) ? 4 : 2)
2829 struct arm_instruction instruction;
2830 if ((retval = xscale_read_instruction(target, &instruction)) != ERROR_OK)
2832 /* can't continue tracing with no image available */
2833 if (retval == ERROR_TRACE_IMAGE_UNAVAILABLE)
2835 return retval;
2837 else if (retval == ERROR_TRACE_INSTRUCTION_UNAVAILABLE)
2839 /* TODO: handle incomplete images */
2842 command_print(cmd_ctx, "%s", instruction.text);
2845 trace_data = trace_data->next;
2848 return ERROR_OK;
2851 static const struct reg_arch_type xscale_reg_type = {
2852 .get = xscale_get_reg,
2853 .set = xscale_set_reg,
2856 static void xscale_build_reg_cache(struct target *target)
2858 struct xscale_common *xscale = target_to_xscale(target);
2859 struct arm *armv4_5 = &xscale->armv4_5_common;
2860 struct reg_cache **cache_p = register_get_last_cache_p(&target->reg_cache);
2861 struct xscale_reg *arch_info = malloc(sizeof(xscale_reg_arch_info));
2862 int i;
2863 int num_regs = ARRAY_SIZE(xscale_reg_arch_info);
2865 (*cache_p) = arm_build_reg_cache(target, armv4_5);
2867 (*cache_p)->next = malloc(sizeof(struct reg_cache));
2868 cache_p = &(*cache_p)->next;
2870 /* fill in values for the xscale reg cache */
2871 (*cache_p)->name = "XScale registers";
2872 (*cache_p)->next = NULL;
2873 (*cache_p)->reg_list = malloc(num_regs * sizeof(struct reg));
2874 (*cache_p)->num_regs = num_regs;
2876 for (i = 0; i < num_regs; i++)
2878 (*cache_p)->reg_list[i].name = xscale_reg_list[i];
2879 (*cache_p)->reg_list[i].value = calloc(4, 1);
2880 (*cache_p)->reg_list[i].dirty = 0;
2881 (*cache_p)->reg_list[i].valid = 0;
2882 (*cache_p)->reg_list[i].size = 32;
2883 (*cache_p)->reg_list[i].arch_info = &arch_info[i];
2884 (*cache_p)->reg_list[i].type = &xscale_reg_type;
2885 arch_info[i] = xscale_reg_arch_info[i];
2886 arch_info[i].target = target;
2889 xscale->reg_cache = (*cache_p);
2892 static int xscale_init_target(struct command_context *cmd_ctx,
2893 struct target *target)
2895 xscale_build_reg_cache(target);
2896 return ERROR_OK;
2899 static int xscale_init_arch_info(struct target *target,
2900 struct xscale_common *xscale, struct jtag_tap *tap, const char *variant)
2902 struct arm *armv4_5;
2903 uint32_t high_reset_branch, low_reset_branch;
2904 int i;
2906 armv4_5 = &xscale->armv4_5_common;
2908 /* store architecture specfic data */
2909 xscale->common_magic = XSCALE_COMMON_MAGIC;
2911 /* we don't really *need* a variant param ... */
2912 if (variant) {
2913 int ir_length = 0;
2915 if (strcmp(variant, "pxa250") == 0
2916 || strcmp(variant, "pxa255") == 0
2917 || strcmp(variant, "pxa26x") == 0)
2918 ir_length = 5;
2919 else if (strcmp(variant, "pxa27x") == 0
2920 || strcmp(variant, "ixp42x") == 0
2921 || strcmp(variant, "ixp45x") == 0
2922 || strcmp(variant, "ixp46x") == 0)
2923 ir_length = 7;
2924 else if (strcmp(variant, "pxa3xx") == 0)
2925 ir_length = 11;
2926 else
2927 LOG_WARNING("%s: unrecognized variant %s",
2928 tap->dotted_name, variant);
2930 if (ir_length && ir_length != tap->ir_length) {
2931 LOG_WARNING("%s: IR length for %s is %d; fixing",
2932 tap->dotted_name, variant, ir_length);
2933 tap->ir_length = ir_length;
2937 /* PXA3xx shifts the JTAG instructions */
2938 if (tap->ir_length == 11)
2939 xscale->xscale_variant = XSCALE_PXA3XX;
2940 else
2941 xscale->xscale_variant = XSCALE_IXP4XX_PXA2XX;
2943 /* the debug handler isn't installed (and thus not running) at this time */
2944 xscale->handler_address = 0xfe000800;
2946 /* clear the vectors we keep locally for reference */
2947 memset(xscale->low_vectors, 0, sizeof(xscale->low_vectors));
2948 memset(xscale->high_vectors, 0, sizeof(xscale->high_vectors));
2950 /* no user-specified vectors have been configured yet */
2951 xscale->static_low_vectors_set = 0x0;
2952 xscale->static_high_vectors_set = 0x0;
2954 /* calculate branches to debug handler */
2955 low_reset_branch = (xscale->handler_address + 0x20 - 0x0 - 0x8) >> 2;
2956 high_reset_branch = (xscale->handler_address + 0x20 - 0xffff0000 - 0x8) >> 2;
2958 xscale->low_vectors[0] = ARMV4_5_B((low_reset_branch & 0xffffff), 0);
2959 xscale->high_vectors[0] = ARMV4_5_B((high_reset_branch & 0xffffff), 0);
2961 for (i = 1; i <= 7; i++)
2963 xscale->low_vectors[i] = ARMV4_5_B(0xfffffe, 0);
2964 xscale->high_vectors[i] = ARMV4_5_B(0xfffffe, 0);
2967 /* 64kB aligned region used for DCache cleaning */
2968 xscale->cache_clean_address = 0xfffe0000;
2970 xscale->hold_rst = 0;
2971 xscale->external_debug_break = 0;
2973 xscale->ibcr_available = 2;
2974 xscale->ibcr0_used = 0;
2975 xscale->ibcr1_used = 0;
2977 xscale->dbr_available = 2;
2978 xscale->dbr0_used = 0;
2979 xscale->dbr1_used = 0;
2981 LOG_INFO("%s: hardware has 2 breakpoints and 2 watchpoints",
2982 target_name(target));
2984 xscale->arm_bkpt = ARMV5_BKPT(0x0);
2985 xscale->thumb_bkpt = ARMV5_T_BKPT(0x0) & 0xffff;
2987 xscale->vector_catch = 0x1;
2989 xscale->trace.capture_status = TRACE_IDLE;
2990 xscale->trace.data = NULL;
2991 xscale->trace.image = NULL;
2992 xscale->trace.buffer_enabled = 0;
2993 xscale->trace.buffer_fill = 0;
2995 /* prepare ARMv4/5 specific information */
2996 armv4_5->arch_info = xscale;
2997 armv4_5->read_core_reg = xscale_read_core_reg;
2998 armv4_5->write_core_reg = xscale_write_core_reg;
2999 armv4_5->full_context = xscale_full_context;
3001 arm_init_arch_info(target, armv4_5);
3003 xscale->armv4_5_mmu.armv4_5_cache.ctype = -1;
3004 xscale->armv4_5_mmu.get_ttb = xscale_get_ttb;
3005 xscale->armv4_5_mmu.read_memory = xscale_read_memory;
3006 xscale->armv4_5_mmu.write_memory = xscale_write_memory;
3007 xscale->armv4_5_mmu.disable_mmu_caches = xscale_disable_mmu_caches;
3008 xscale->armv4_5_mmu.enable_mmu_caches = xscale_enable_mmu_caches;
3009 xscale->armv4_5_mmu.has_tiny_pages = 1;
3010 xscale->armv4_5_mmu.mmu_enabled = 0;
3012 return ERROR_OK;
3015 static int xscale_target_create(struct target *target, Jim_Interp *interp)
3017 struct xscale_common *xscale;
3019 if (sizeof xscale_debug_handler - 1 > 0x800) {
3020 LOG_ERROR("debug_handler.bin: larger than 2kb");
3021 return ERROR_FAIL;
3024 xscale = calloc(1, sizeof(*xscale));
3025 if (!xscale)
3026 return ERROR_FAIL;
3028 return xscale_init_arch_info(target, xscale, target->tap,
3029 target->variant);
3032 COMMAND_HANDLER(xscale_handle_debug_handler_command)
3034 struct target *target = NULL;
3035 struct xscale_common *xscale;
3036 int retval;
3037 uint32_t handler_address;
3039 if (CMD_ARGC < 2)
3041 LOG_ERROR("'xscale debug_handler <target#> <address>' command takes two required operands");
3042 return ERROR_OK;
3045 if ((target = get_target(CMD_ARGV[0])) == NULL)
3047 LOG_ERROR("target '%s' not defined", CMD_ARGV[0]);
3048 return ERROR_FAIL;
3051 xscale = target_to_xscale(target);
3052 retval = xscale_verify_pointer(CMD_CTX, xscale);
3053 if (retval != ERROR_OK)
3054 return retval;
3056 COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], handler_address);
3058 if (((handler_address >= 0x800) && (handler_address <= 0x1fef800)) ||
3059 ((handler_address >= 0xfe000800) && (handler_address <= 0xfffff800)))
3061 xscale->handler_address = handler_address;
3063 else
3065 LOG_ERROR("xscale debug_handler <address> must be between 0x800 and 0x1fef800 or between 0xfe000800 and 0xfffff800");
3066 return ERROR_FAIL;
3069 return ERROR_OK;
3072 COMMAND_HANDLER(xscale_handle_cache_clean_address_command)
3074 struct target *target = NULL;
3075 struct xscale_common *xscale;
3076 int retval;
3077 uint32_t cache_clean_address;
3079 if (CMD_ARGC < 2)
3081 return ERROR_COMMAND_SYNTAX_ERROR;
3084 target = get_target(CMD_ARGV[0]);
3085 if (target == NULL)
3087 LOG_ERROR("target '%s' not defined", CMD_ARGV[0]);
3088 return ERROR_FAIL;
3090 xscale = target_to_xscale(target);
3091 retval = xscale_verify_pointer(CMD_CTX, xscale);
3092 if (retval != ERROR_OK)
3093 return retval;
3095 COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], cache_clean_address);
3097 if (cache_clean_address & 0xffff)
3099 LOG_ERROR("xscale cache_clean_address <address> must be 64kb aligned");
3101 else
3103 xscale->cache_clean_address = cache_clean_address;
3106 return ERROR_OK;
3109 COMMAND_HANDLER(xscale_handle_cache_info_command)
3111 struct target *target = get_current_target(CMD_CTX);
3112 struct xscale_common *xscale = target_to_xscale(target);
3113 int retval;
3115 retval = xscale_verify_pointer(CMD_CTX, xscale);
3116 if (retval != ERROR_OK)
3117 return retval;
3119 return armv4_5_handle_cache_info_command(CMD_CTX, &xscale->armv4_5_mmu.armv4_5_cache);
3122 static int xscale_virt2phys(struct target *target,
3123 uint32_t virtual, uint32_t *physical)
3125 struct xscale_common *xscale = target_to_xscale(target);
3126 int type;
3127 uint32_t cb;
3128 int domain;
3129 uint32_t ap;
3131 if (xscale->common_magic != XSCALE_COMMON_MAGIC) {
3132 LOG_ERROR(xscale_not);
3133 return ERROR_TARGET_INVALID;
3136 uint32_t ret = armv4_5_mmu_translate_va(target, &xscale->armv4_5_mmu, virtual, &type, &cb, &domain, &ap);
3137 if (type == -1)
3139 return ret;
3141 *physical = ret;
3142 return ERROR_OK;
3145 static int xscale_mmu(struct target *target, int *enabled)
3147 struct xscale_common *xscale = target_to_xscale(target);
3149 if (target->state != TARGET_HALTED)
3151 LOG_ERROR("Target not halted");
3152 return ERROR_TARGET_INVALID;
3154 *enabled = xscale->armv4_5_mmu.mmu_enabled;
3155 return ERROR_OK;
3158 COMMAND_HANDLER(xscale_handle_mmu_command)
3160 struct target *target = get_current_target(CMD_CTX);
3161 struct xscale_common *xscale = target_to_xscale(target);
3162 int retval;
3164 retval = xscale_verify_pointer(CMD_CTX, xscale);
3165 if (retval != ERROR_OK)
3166 return retval;
3168 if (target->state != TARGET_HALTED)
3170 command_print(CMD_CTX, "target must be stopped for \"%s\" command", CMD_NAME);
3171 return ERROR_OK;
3174 if (CMD_ARGC >= 1)
3176 bool enable;
3177 COMMAND_PARSE_ENABLE(CMD_ARGV[0], enable);
3178 if (enable)
3179 xscale_enable_mmu_caches(target, 1, 0, 0);
3180 else
3181 xscale_disable_mmu_caches(target, 1, 0, 0);
3182 xscale->armv4_5_mmu.mmu_enabled = enable;
3185 command_print(CMD_CTX, "mmu %s", (xscale->armv4_5_mmu.mmu_enabled) ? "enabled" : "disabled");
3187 return ERROR_OK;
3190 COMMAND_HANDLER(xscale_handle_idcache_command)
3192 struct target *target = get_current_target(CMD_CTX);
3193 struct xscale_common *xscale = target_to_xscale(target);
3195 int retval = xscale_verify_pointer(CMD_CTX, xscale);
3196 if (retval != ERROR_OK)
3197 return retval;
3199 if (target->state != TARGET_HALTED)
3201 command_print(CMD_CTX, "target must be stopped for \"%s\" command", CMD_NAME);
3202 return ERROR_OK;
3205 bool icache = false;
3206 if (strcmp(CMD_NAME, "icache") == 0)
3207 icache = true;
3208 if (CMD_ARGC >= 1)
3210 bool enable;
3211 COMMAND_PARSE_ENABLE(CMD_ARGV[0], enable);
3212 if (icache) {
3213 xscale->armv4_5_mmu.armv4_5_cache.i_cache_enabled = enable;
3214 if (enable)
3215 xscale_enable_mmu_caches(target, 0, 0, 1);
3216 else
3217 xscale_disable_mmu_caches(target, 0, 0, 1);
3218 } else {
3219 xscale->armv4_5_mmu.armv4_5_cache.d_u_cache_enabled = enable;
3220 if (enable)
3221 xscale_enable_mmu_caches(target, 0, 1, 0);
3222 else
3223 xscale_disable_mmu_caches(target, 0, 1, 0);
3227 bool enabled = icache ?
3228 xscale->armv4_5_mmu.armv4_5_cache.i_cache_enabled :
3229 xscale->armv4_5_mmu.armv4_5_cache.d_u_cache_enabled;
3230 const char *msg = enabled ? "enabled" : "disabled";
3231 command_print(CMD_CTX, "%s %s", CMD_NAME, msg);
3233 return ERROR_OK;
3236 COMMAND_HANDLER(xscale_handle_vector_catch_command)
3238 struct target *target = get_current_target(CMD_CTX);
3239 struct xscale_common *xscale = target_to_xscale(target);
3240 int retval;
3242 retval = xscale_verify_pointer(CMD_CTX, xscale);
3243 if (retval != ERROR_OK)
3244 return retval;
3246 if (CMD_ARGC < 1)
3248 command_print(CMD_CTX, "usage: xscale vector_catch [mask]");
3250 else
3252 COMMAND_PARSE_NUMBER(u8, CMD_ARGV[0], xscale->vector_catch);
3253 buf_set_u32(xscale->reg_cache->reg_list[XSCALE_DCSR].value, 16, 8, xscale->vector_catch);
3254 xscale_write_dcsr(target, -1, -1);
3257 command_print(CMD_CTX, "vector catch mask: 0x%2.2x", xscale->vector_catch);
3259 return ERROR_OK;
3263 COMMAND_HANDLER(xscale_handle_vector_table_command)
3265 struct target *target = get_current_target(CMD_CTX);
3266 struct xscale_common *xscale = target_to_xscale(target);
3267 int err = 0;
3268 int retval;
3270 retval = xscale_verify_pointer(CMD_CTX, xscale);
3271 if (retval != ERROR_OK)
3272 return retval;
3274 if (CMD_ARGC == 0) /* print current settings */
3276 int idx;
3278 command_print(CMD_CTX, "active user-set static vectors:");
3279 for (idx = 1; idx < 8; idx++)
3280 if (xscale->static_low_vectors_set & (1 << idx))
3281 command_print(CMD_CTX, "low %d: 0x%" PRIx32, idx, xscale->static_low_vectors[idx]);
3282 for (idx = 1; idx < 8; idx++)
3283 if (xscale->static_high_vectors_set & (1 << idx))
3284 command_print(CMD_CTX, "high %d: 0x%" PRIx32, idx, xscale->static_high_vectors[idx]);
3285 return ERROR_OK;
3288 if (CMD_ARGC != 3)
3289 err = 1;
3290 else
3292 int idx;
3293 COMMAND_PARSE_NUMBER(int, CMD_ARGV[1], idx);
3294 uint32_t vec;
3295 COMMAND_PARSE_NUMBER(u32, CMD_ARGV[2], vec);
3297 if (idx < 1 || idx >= 8)
3298 err = 1;
3300 if (!err && strcmp(CMD_ARGV[0], "low") == 0)
3302 xscale->static_low_vectors_set |= (1<<idx);
3303 xscale->static_low_vectors[idx] = vec;
3305 else if (!err && (strcmp(CMD_ARGV[0], "high") == 0))
3307 xscale->static_high_vectors_set |= (1<<idx);
3308 xscale->static_high_vectors[idx] = vec;
3310 else
3311 err = 1;
3314 if (err)
3315 command_print(CMD_CTX, "usage: xscale vector_table <high|low> <index> <code>");
3317 return ERROR_OK;
3321 COMMAND_HANDLER(xscale_handle_trace_buffer_command)
3323 struct target *target = get_current_target(CMD_CTX);
3324 struct xscale_common *xscale = target_to_xscale(target);
3325 struct arm *armv4_5 = &xscale->armv4_5_common;
3326 uint32_t dcsr_value;
3327 int retval;
3329 retval = xscale_verify_pointer(CMD_CTX, xscale);
3330 if (retval != ERROR_OK)
3331 return retval;
3333 if (target->state != TARGET_HALTED)
3335 command_print(CMD_CTX, "target must be stopped for \"%s\" command", CMD_NAME);
3336 return ERROR_OK;
3339 if ((CMD_ARGC >= 1) && (strcmp("enable", CMD_ARGV[0]) == 0))
3341 struct xscale_trace_data *td, *next_td;
3342 xscale->trace.buffer_enabled = 1;
3344 /* free old trace data */
3345 td = xscale->trace.data;
3346 while (td)
3348 next_td = td->next;
3350 if (td->entries)
3351 free(td->entries);
3352 free(td);
3353 td = next_td;
3355 xscale->trace.data = NULL;
3357 else if ((CMD_ARGC >= 1) && (strcmp("disable", CMD_ARGV[0]) == 0))
3359 xscale->trace.buffer_enabled = 0;
3362 if ((CMD_ARGC >= 2) && (strcmp("fill", CMD_ARGV[1]) == 0))
3364 uint32_t fill = 1;
3365 if (CMD_ARGC >= 3)
3366 COMMAND_PARSE_NUMBER(u32, CMD_ARGV[2], fill);
3367 xscale->trace.buffer_fill = fill;
3369 else if ((CMD_ARGC >= 2) && (strcmp("wrap", CMD_ARGV[1]) == 0))
3371 xscale->trace.buffer_fill = -1;
3374 if (xscale->trace.buffer_enabled)
3376 /* if we enable the trace buffer in fill-once
3377 * mode we know the address of the first instruction */
3378 xscale->trace.pc_ok = 1;
3379 xscale->trace.current_pc =
3380 buf_get_u32(armv4_5->pc->value, 0, 32);
3382 else
3384 /* otherwise the address is unknown, and we have no known good PC */
3385 xscale->trace.pc_ok = 0;
3388 command_print(CMD_CTX, "trace buffer %s (%s)",
3389 (xscale->trace.buffer_enabled) ? "enabled" : "disabled",
3390 (xscale->trace.buffer_fill > 0) ? "fill" : "wrap");
3392 dcsr_value = buf_get_u32(xscale->reg_cache->reg_list[XSCALE_DCSR].value, 0, 32);
3393 if (xscale->trace.buffer_fill >= 0)
3394 xscale_write_dcsr_sw(target, (dcsr_value & 0xfffffffc) | 2);
3395 else
3396 xscale_write_dcsr_sw(target, dcsr_value & 0xfffffffc);
3398 return ERROR_OK;
3401 COMMAND_HANDLER(xscale_handle_trace_image_command)
3403 struct target *target = get_current_target(CMD_CTX);
3404 struct xscale_common *xscale = target_to_xscale(target);
3405 int retval;
3407 if (CMD_ARGC < 1)
3409 command_print(CMD_CTX, "usage: xscale trace_image <file> [base address] [type]");
3410 return ERROR_OK;
3413 retval = xscale_verify_pointer(CMD_CTX, xscale);
3414 if (retval != ERROR_OK)
3415 return retval;
3417 if (xscale->trace.image)
3419 image_close(xscale->trace.image);
3420 free(xscale->trace.image);
3421 command_print(CMD_CTX, "previously loaded image found and closed");
3424 xscale->trace.image = malloc(sizeof(struct image));
3425 xscale->trace.image->base_address_set = 0;
3426 xscale->trace.image->start_address_set = 0;
3428 /* a base address isn't always necessary, default to 0x0 (i.e. don't relocate) */
3429 if (CMD_ARGC >= 2)
3431 xscale->trace.image->base_address_set = 1;
3432 COMMAND_PARSE_NUMBER(llong, CMD_ARGV[1], xscale->trace.image->base_address);
3434 else
3436 xscale->trace.image->base_address_set = 0;
3439 if (image_open(xscale->trace.image, CMD_ARGV[0], (CMD_ARGC >= 3) ? CMD_ARGV[2] : NULL) != ERROR_OK)
3441 free(xscale->trace.image);
3442 xscale->trace.image = NULL;
3443 return ERROR_OK;
3446 return ERROR_OK;
3449 COMMAND_HANDLER(xscale_handle_dump_trace_command)
3451 struct target *target = get_current_target(CMD_CTX);
3452 struct xscale_common *xscale = target_to_xscale(target);
3453 struct xscale_trace_data *trace_data;
3454 struct fileio file;
3455 int retval;
3457 retval = xscale_verify_pointer(CMD_CTX, xscale);
3458 if (retval != ERROR_OK)
3459 return retval;
3461 if (target->state != TARGET_HALTED)
3463 command_print(CMD_CTX, "target must be stopped for \"%s\" command", CMD_NAME);
3464 return ERROR_OK;
3467 if (CMD_ARGC < 1)
3469 command_print(CMD_CTX, "usage: xscale dump_trace <file>");
3470 return ERROR_OK;
3473 trace_data = xscale->trace.data;
3475 if (!trace_data)
3477 command_print(CMD_CTX, "no trace data collected");
3478 return ERROR_OK;
3481 if (fileio_open(&file, CMD_ARGV[0], FILEIO_WRITE, FILEIO_BINARY) != ERROR_OK)
3483 return ERROR_OK;
3486 while (trace_data)
3488 int i;
3490 fileio_write_u32(&file, trace_data->chkpt0);
3491 fileio_write_u32(&file, trace_data->chkpt1);
3492 fileio_write_u32(&file, trace_data->last_instruction);
3493 fileio_write_u32(&file, trace_data->depth);
3495 for (i = 0; i < trace_data->depth; i++)
3496 fileio_write_u32(&file, trace_data->entries[i].data | ((trace_data->entries[i].type & 0xffff) << 16));
3498 trace_data = trace_data->next;
3501 fileio_close(&file);
3503 return ERROR_OK;
3506 COMMAND_HANDLER(xscale_handle_analyze_trace_buffer_command)
3508 struct target *target = get_current_target(CMD_CTX);
3509 struct xscale_common *xscale = target_to_xscale(target);
3510 int retval;
3512 retval = xscale_verify_pointer(CMD_CTX, xscale);
3513 if (retval != ERROR_OK)
3514 return retval;
3516 xscale_analyze_trace(target, CMD_CTX);
3518 return ERROR_OK;
3521 COMMAND_HANDLER(xscale_handle_cp15)
3523 struct target *target = get_current_target(CMD_CTX);
3524 struct xscale_common *xscale = target_to_xscale(target);
3525 int retval;
3527 retval = xscale_verify_pointer(CMD_CTX, xscale);
3528 if (retval != ERROR_OK)
3529 return retval;
3531 if (target->state != TARGET_HALTED)
3533 command_print(CMD_CTX, "target must be stopped for \"%s\" command", CMD_NAME);
3534 return ERROR_OK;
3536 uint32_t reg_no = 0;
3537 struct reg *reg = NULL;
3538 if (CMD_ARGC > 0)
3540 COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], reg_no);
3541 /*translate from xscale cp15 register no to openocd register*/
3542 switch (reg_no)
3544 case 0:
3545 reg_no = XSCALE_MAINID;
3546 break;
3547 case 1:
3548 reg_no = XSCALE_CTRL;
3549 break;
3550 case 2:
3551 reg_no = XSCALE_TTB;
3552 break;
3553 case 3:
3554 reg_no = XSCALE_DAC;
3555 break;
3556 case 5:
3557 reg_no = XSCALE_FSR;
3558 break;
3559 case 6:
3560 reg_no = XSCALE_FAR;
3561 break;
3562 case 13:
3563 reg_no = XSCALE_PID;
3564 break;
3565 case 15:
3566 reg_no = XSCALE_CPACCESS;
3567 break;
3568 default:
3569 command_print(CMD_CTX, "invalid register number");
3570 return ERROR_INVALID_ARGUMENTS;
3572 reg = &xscale->reg_cache->reg_list[reg_no];
3575 if (CMD_ARGC == 1)
3577 uint32_t value;
3579 /* read cp15 control register */
3580 xscale_get_reg(reg);
3581 value = buf_get_u32(reg->value, 0, 32);
3582 command_print(CMD_CTX, "%s (/%i): 0x%" PRIx32 "", reg->name, (int)(reg->size), value);
3584 else if (CMD_ARGC == 2)
3586 uint32_t value;
3587 COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], value);
3589 /* send CP write request (command 0x41) */
3590 xscale_send_u32(target, 0x41);
3592 /* send CP register number */
3593 xscale_send_u32(target, reg_no);
3595 /* send CP register value */
3596 xscale_send_u32(target, value);
3598 /* execute cpwait to ensure outstanding operations complete */
3599 xscale_send_u32(target, 0x53);
3601 else
3603 command_print(CMD_CTX, "usage: cp15 [register]<, [value]>");
3606 return ERROR_OK;
3609 static const struct command_registration xscale_exec_command_handlers[] = {
3611 .name = "cache_info",
3612 .handler = xscale_handle_cache_info_command,
3613 .mode = COMMAND_EXEC,
3614 .help = "display information about CPU caches",
3617 .name = "mmu",
3618 .handler = xscale_handle_mmu_command,
3619 .mode = COMMAND_EXEC,
3620 .help = "enable or disable the MMU",
3621 .usage = "['enable'|'disable']",
3624 .name = "icache",
3625 .handler = xscale_handle_idcache_command,
3626 .mode = COMMAND_EXEC,
3627 .help = "display ICache state, optionally enabling or "
3628 "disabling it",
3629 .usage = "['enable'|'disable']",
3632 .name = "dcache",
3633 .handler = xscale_handle_idcache_command,
3634 .mode = COMMAND_EXEC,
3635 .help = "display DCache state, optionally enabling or "
3636 "disabling it",
3637 .usage = "['enable'|'disable']",
3640 .name = "vector_catch",
3641 .handler = xscale_handle_vector_catch_command,
3642 .mode = COMMAND_EXEC,
3643 .help = "set or display 8-bit mask of vectors "
3644 "that should trigger debug entry",
3645 .usage = "[mask]",
3648 .name = "vector_table",
3649 .handler = xscale_handle_vector_table_command,
3650 .mode = COMMAND_EXEC,
3651 .help = "set vector table entry in mini-ICache, "
3652 "or display current tables",
3653 .usage = "[('high'|'low') index code]",
3656 .name = "trace_buffer",
3657 .handler = xscale_handle_trace_buffer_command,
3658 .mode = COMMAND_EXEC,
3659 .help = "display trace buffer status, enable or disable "
3660 "tracing, and optionally reconfigure trace mode",
3661 .usage = "['enable'|'disable' ['fill' number|'wrap']]",
3664 .name = "dump_trace",
3665 .handler = xscale_handle_dump_trace_command,
3666 .mode = COMMAND_EXEC,
3667 .help = "dump content of trace buffer to file",
3668 .usage = "filename",
3671 .name = "analyze_trace",
3672 .handler = xscale_handle_analyze_trace_buffer_command,
3673 .mode = COMMAND_EXEC,
3674 .help = "analyze content of trace buffer",
3675 .usage = "",
3678 .name = "trace_image",
3679 .handler = xscale_handle_trace_image_command,
3680 .mode = COMMAND_EXEC,
3681 .help = "load image from file to address (default 0)",
3682 .usage = "filename [offset [filetype]]",
3685 .name = "cp15",
3686 .handler = xscale_handle_cp15,
3687 .mode = COMMAND_EXEC,
3688 .help = "Read or write coprocessor 15 register.",
3689 .usage = "register [value]",
3691 COMMAND_REGISTRATION_DONE
3693 static const struct command_registration xscale_any_command_handlers[] = {
3695 .name = "debug_handler",
3696 .handler = xscale_handle_debug_handler_command,
3697 .mode = COMMAND_ANY,
3698 .help = "Change address used for debug handler.",
3699 .usage = "target address",
3702 .name = "cache_clean_address",
3703 .handler = xscale_handle_cache_clean_address_command,
3704 .mode = COMMAND_ANY,
3705 .help = "Change address used for cleaning data cache.",
3706 .usage = "address",
3709 .chain = xscale_exec_command_handlers,
3711 COMMAND_REGISTRATION_DONE
3713 static const struct command_registration xscale_command_handlers[] = {
3715 .chain = arm_command_handlers,
3718 .name = "xscale",
3719 .mode = COMMAND_ANY,
3720 .help = "xscale command group",
3721 .chain = xscale_any_command_handlers,
3723 COMMAND_REGISTRATION_DONE
3726 struct target_type xscale_target =
3728 .name = "xscale",
3730 .poll = xscale_poll,
3731 .arch_state = xscale_arch_state,
3733 .target_request_data = NULL,
3735 .halt = xscale_halt,
3736 .resume = xscale_resume,
3737 .step = xscale_step,
3739 .assert_reset = xscale_assert_reset,
3740 .deassert_reset = xscale_deassert_reset,
3741 .soft_reset_halt = NULL,
3743 /* REVISIT on some cores, allow exporting iwmmxt registers ... */
3744 .get_gdb_reg_list = arm_get_gdb_reg_list,
3746 .read_memory = xscale_read_memory,
3747 .read_phys_memory = xscale_read_phys_memory,
3748 .write_memory = xscale_write_memory,
3749 .write_phys_memory = xscale_write_phys_memory,
3750 .bulk_write_memory = xscale_bulk_write_memory,
3752 .checksum_memory = arm_checksum_memory,
3753 .blank_check_memory = arm_blank_check_memory,
3755 .run_algorithm = armv4_5_run_algorithm,
3757 .add_breakpoint = xscale_add_breakpoint,
3758 .remove_breakpoint = xscale_remove_breakpoint,
3759 .add_watchpoint = xscale_add_watchpoint,
3760 .remove_watchpoint = xscale_remove_watchpoint,
3762 .commands = xscale_command_handlers,
3763 .target_create = xscale_target_create,
3764 .init_target = xscale_init_target,
3766 .virt2phys = xscale_virt2phys,
3767 .mmu = xscale_mmu