ARM ETM/ETB/trace: help/usage updates
[openocd.git] / src / target / etm.c
blob3126efc2f211f597be37d5bc6b1572005f399238
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
24 #include "arm.h"
25 #include "etm.h"
26 #include "etb.h"
27 #include "image.h"
28 #include "arm_disassembler.h"
29 #include "register.h"
30 #include "etm_dummy.h"
32 #if BUILD_OOCD_TRACE == 1
33 #include "oocd_trace.h"
34 #endif
38 * ARM "Embedded Trace Macrocell" (ETM) support -- direct JTAG access.
40 * ETM modules collect instruction and/or data trace information, compress
41 * it, and transfer it to a debugging host through either a (buffered) trace
42 * port (often a 38-pin Mictor connector) or an Embedded Trace Buffer (ETB).
44 * There are several generations of these modules. Original versions have
45 * JTAG access through a dedicated scan chain. Recent versions have added
46 * access via coprocessor instructions, memory addressing, and the ARM Debug
47 * Interface v5 (ADIv5); and phased out direct JTAG access.
49 * This code supports up to the ETMv1.3 architecture, as seen in ETM9 and
50 * most common ARM9 systems. Note: "CoreSight ETM9" implements ETMv3.2,
51 * implying non-JTAG connectivity options.
53 * Relevant documentation includes:
54 * ARM DDI 0157G ... ETM9 (r2p2) Technical Reference Manual
55 * ARM DDI 0315B ... CoreSight ETM9 (r0p1) Technical Reference Manual
56 * ARM IHI 0014O ... Embedded Trace Macrocell, Architecture Specification
59 enum {
60 RO, /* read/only */
61 WO, /* write/only */
62 RW, /* read/write */
65 struct etm_reg_info {
66 uint8_t addr;
67 uint8_t size; /* low-N of 32 bits */
68 uint8_t mode; /* RO, WO, RW */
69 uint8_t bcd_vers; /* 1.0, 2.0, etc */
70 char *name;
74 * Registers 0..0x7f are JTAG-addressable using scanchain 6.
75 * (Or on some processors, through coprocessor operations.)
76 * Newer versions of ETM make some W/O registers R/W, and
77 * provide definitions for some previously-unused bits.
80 /* core registers used to version/configure the ETM */
81 static const struct etm_reg_info etm_core[] = {
82 /* NOTE: we "know" the order here ... */
83 { ETM_CONFIG, 32, RO, 0x10, "ETM_config", },
84 { ETM_ID, 32, RO, 0x20, "ETM_id", },
87 /* basic registers that are always there given the right ETM version */
88 static const struct etm_reg_info etm_basic[] = {
89 /* ETM Trace Registers */
90 { ETM_CTRL, 32, RW, 0x10, "ETM_ctrl", },
91 { ETM_TRIG_EVENT, 17, WO, 0x10, "ETM_trig_event", },
92 { ETM_ASIC_CTRL, 8, WO, 0x10, "ETM_asic_ctrl", },
93 { ETM_STATUS, 3, RO, 0x11, "ETM_status", },
94 { ETM_SYS_CONFIG, 9, RO, 0x12, "ETM_sys_config", },
96 /* TraceEnable configuration */
97 { ETM_TRACE_RESOURCE_CTRL, 32, WO, 0x12, "ETM_trace_resource_ctrl", },
98 { ETM_TRACE_EN_CTRL2, 16, WO, 0x12, "ETM_trace_en_ctrl2", },
99 { ETM_TRACE_EN_EVENT, 17, WO, 0x10, "ETM_trace_en_event", },
100 { ETM_TRACE_EN_CTRL1, 26, WO, 0x10, "ETM_trace_en_ctrl1", },
102 /* ViewData configuration (data trace) */
103 { ETM_VIEWDATA_EVENT, 17, WO, 0x10, "ETM_viewdata_event", },
104 { ETM_VIEWDATA_CTRL1, 32, WO, 0x10, "ETM_viewdata_ctrl1", },
105 { ETM_VIEWDATA_CTRL2, 32, WO, 0x10, "ETM_viewdata_ctrl2", },
106 { ETM_VIEWDATA_CTRL3, 17, WO, 0x10, "ETM_viewdata_ctrl3", },
108 /* REVISIT exclude VIEWDATA_CTRL2 when it's not there */
110 { 0x78, 12, WO, 0x20, "ETM_sync_freq", },
111 { 0x7a, 22, RO, 0x31, "ETM_config_code_ext", },
112 { 0x7b, 32, WO, 0x31, "ETM_ext_input_select", },
113 { 0x7c, 32, WO, 0x34, "ETM_trace_start_stop", },
114 { 0x7d, 8, WO, 0x34, "ETM_behavior_control", },
117 static const struct etm_reg_info etm_fifofull[] = {
118 /* FIFOFULL configuration */
119 { ETM_FIFOFULL_REGION, 25, WO, 0x10, "ETM_fifofull_region", },
120 { ETM_FIFOFULL_LEVEL, 8, WO, 0x10, "ETM_fifofull_level", },
123 static const struct etm_reg_info etm_addr_comp[] = {
124 /* Address comparator register pairs */
125 #define ADDR_COMPARATOR(i) \
126 { ETM_ADDR_COMPARATOR_VALUE + (i) - 1, 32, WO, 0x10, \
127 "ETM_addr_" #i "_comparator_value", }, \
128 { ETM_ADDR_ACCESS_TYPE + (i) - 1, 7, WO, 0x10, \
129 "ETM_addr_" #i "_access_type", }
130 ADDR_COMPARATOR(1),
131 ADDR_COMPARATOR(2),
132 ADDR_COMPARATOR(3),
133 ADDR_COMPARATOR(4),
134 ADDR_COMPARATOR(5),
135 ADDR_COMPARATOR(6),
136 ADDR_COMPARATOR(7),
137 ADDR_COMPARATOR(8),
139 ADDR_COMPARATOR(9),
140 ADDR_COMPARATOR(10),
141 ADDR_COMPARATOR(11),
142 ADDR_COMPARATOR(12),
143 ADDR_COMPARATOR(13),
144 ADDR_COMPARATOR(14),
145 ADDR_COMPARATOR(15),
146 ADDR_COMPARATOR(16),
147 #undef ADDR_COMPARATOR
150 static const struct etm_reg_info etm_data_comp[] = {
151 /* Data Value Comparators (NOTE: odd addresses are reserved) */
152 #define DATA_COMPARATOR(i) \
153 { ETM_DATA_COMPARATOR_VALUE + 2*(i) - 1, 32, WO, 0x10, \
154 "ETM_data_" #i "_comparator_value", }, \
155 { ETM_DATA_COMPARATOR_MASK + 2*(i) - 1, 32, WO, 0x10, \
156 "ETM_data_" #i "_comparator_mask", }
157 DATA_COMPARATOR(1),
158 DATA_COMPARATOR(2),
159 DATA_COMPARATOR(3),
160 DATA_COMPARATOR(4),
161 DATA_COMPARATOR(5),
162 DATA_COMPARATOR(6),
163 DATA_COMPARATOR(7),
164 DATA_COMPARATOR(8),
165 #undef DATA_COMPARATOR
168 static const struct etm_reg_info etm_counters[] = {
169 #define ETM_COUNTER(i) \
170 { ETM_COUNTER_RELOAD_VALUE + (i) - 1, 16, WO, 0x10, \
171 "ETM_counter_" #i "_reload_value", }, \
172 { ETM_COUNTER_ENABLE + (i) - 1, 18, WO, 0x10, \
173 "ETM_counter_" #i "_enable", }, \
174 { ETM_COUNTER_RELOAD_EVENT + (i) - 1, 17, WO, 0x10, \
175 "ETM_counter_" #i "_reload_event", }, \
176 { ETM_COUNTER_VALUE + (i) - 1, 16, RO, 0x10, \
177 "ETM_counter_" #i "_value", }
178 ETM_COUNTER(1),
179 ETM_COUNTER(2),
180 ETM_COUNTER(3),
181 ETM_COUNTER(4),
182 #undef ETM_COUNTER
185 static const struct etm_reg_info etm_sequencer[] = {
186 #define ETM_SEQ(i) \
187 { ETM_SEQUENCER_EVENT + (i), 17, WO, 0x10, \
188 "ETM_sequencer_event" #i, }
189 ETM_SEQ(0), /* 1->2 */
190 ETM_SEQ(1), /* 2->1 */
191 ETM_SEQ(2), /* 2->3 */
192 ETM_SEQ(3), /* 3->1 */
193 ETM_SEQ(4), /* 3->2 */
194 ETM_SEQ(5), /* 1->3 */
195 #undef ETM_SEQ
196 /* 0x66 reserved */
197 { ETM_SEQUENCER_STATE, 2, RO, 0x10, "ETM_sequencer_state", },
200 static const struct etm_reg_info etm_outputs[] = {
201 #define ETM_OUTPUT(i) \
202 { ETM_EXTERNAL_OUTPUT + (i) - 1, 17, WO, 0x10, \
203 "ETM_external_output" #i, }
205 ETM_OUTPUT(1),
206 ETM_OUTPUT(2),
207 ETM_OUTPUT(3),
208 ETM_OUTPUT(4),
209 #undef ETM_OUTPUT
212 #if 0
213 /* registers from 0x6c..0x7f were added after ETMv1.3 */
215 /* Context ID Comparators */
216 { 0x6c, 32, RO, 0x20, "ETM_contextid_comparator_value1", }
217 { 0x6d, 32, RO, 0x20, "ETM_contextid_comparator_value2", }
218 { 0x6e, 32, RO, 0x20, "ETM_contextid_comparator_value3", }
219 { 0x6f, 32, RO, 0x20, "ETM_contextid_comparator_mask", }
220 #endif
222 static int etm_get_reg(struct reg *reg);
223 static int etm_read_reg_w_check(struct reg *reg,
224 uint8_t* check_value, uint8_t* check_mask);
225 static int etm_register_user_commands(struct command_context *cmd_ctx);
226 static int etm_set_reg_w_exec(struct reg *reg, uint8_t *buf);
227 static int etm_write_reg(struct reg *reg, uint32_t value);
229 static const struct reg_arch_type etm_scan6_type = {
230 .get = etm_get_reg,
231 .set = etm_set_reg_w_exec,
234 /* Look up register by ID ... most ETM instances only
235 * support a subset of the possible registers.
237 static struct reg *etm_reg_lookup(struct etm_context *etm_ctx, unsigned id)
239 struct reg_cache *cache = etm_ctx->reg_cache;
240 unsigned i;
242 for (i = 0; i < cache->num_regs; i++) {
243 struct etm_reg *reg = cache->reg_list[i].arch_info;
245 if (reg->reg_info->addr == id)
246 return &cache->reg_list[i];
249 /* caller asking for nonexistent register is a bug! */
250 /* REVISIT say which of the N targets was involved */
251 LOG_ERROR("ETM: register 0x%02x not available", id);
252 return NULL;
255 static void etm_reg_add(unsigned bcd_vers, struct arm_jtag *jtag_info,
256 struct reg_cache *cache, struct etm_reg *ereg,
257 const struct etm_reg_info *r, unsigned nreg)
259 struct reg *reg = cache->reg_list;
261 reg += cache->num_regs;
262 ereg += cache->num_regs;
264 /* add up to "nreg" registers from "r", if supported by this
265 * version of the ETM, to the specified cache.
267 for (; nreg--; r++) {
269 /* this ETM may be too old to have some registers */
270 if (r->bcd_vers > bcd_vers)
271 continue;
273 reg->name = r->name;
274 reg->size = r->size;
275 reg->value = &ereg->value;
276 reg->arch_info = ereg;
277 reg->type = &etm_scan6_type;
278 reg++;
279 cache->num_regs++;
281 ereg->reg_info = r;
282 ereg->jtag_info = jtag_info;
283 ereg++;
287 struct reg_cache *etm_build_reg_cache(struct target *target,
288 struct arm_jtag *jtag_info, struct etm_context *etm_ctx)
290 struct reg_cache *reg_cache = malloc(sizeof(struct reg_cache));
291 struct reg *reg_list = NULL;
292 struct etm_reg *arch_info = NULL;
293 unsigned bcd_vers, config;
295 /* the actual registers are kept in two arrays */
296 reg_list = calloc(128, sizeof(struct reg));
297 arch_info = calloc(128, sizeof(struct etm_reg));
299 /* fill in values for the reg cache */
300 reg_cache->name = "etm registers";
301 reg_cache->next = NULL;
302 reg_cache->reg_list = reg_list;
303 reg_cache->num_regs = 0;
305 /* add ETM_CONFIG, then parse its values to see
306 * which other registers exist in this ETM
308 etm_reg_add(0x10, jtag_info, reg_cache, arch_info,
309 etm_core, 1);
311 etm_get_reg(reg_list);
312 etm_ctx->config = buf_get_u32((void *)&arch_info->value, 0, 32);
313 config = etm_ctx->config;
315 /* figure ETM version then add base registers */
316 if (config & (1 << 31)) {
317 bcd_vers = 0x20;
318 LOG_WARNING("ETMv2+ support is incomplete");
320 /* REVISIT more registers may exist; they may now be
321 * readable; more register bits have defined meanings;
322 * don't presume trace start/stop support is present;
323 * and include any context ID comparator registers.
325 etm_reg_add(0x20, jtag_info, reg_cache, arch_info,
326 etm_core + 1, 1);
327 etm_get_reg(reg_list + 1);
328 etm_ctx->id = buf_get_u32(
329 (void *)&arch_info[1].value, 0, 32);
330 LOG_DEBUG("ETM ID: %08x", (unsigned) etm_ctx->id);
331 bcd_vers = 0x10 + (((etm_ctx->id) >> 4) & 0xff);
333 } else {
334 switch (config >> 28) {
335 case 7:
336 case 5:
337 case 3:
338 bcd_vers = 0x13;
339 break;
340 case 4:
341 case 2:
342 bcd_vers = 0x12;
343 break;
344 case 1:
345 bcd_vers = 0x11;
346 break;
347 case 0:
348 bcd_vers = 0x10;
349 break;
350 default:
351 LOG_WARNING("Bad ETMv1 protocol %d", config >> 28);
352 goto fail;
355 etm_ctx->bcd_vers = bcd_vers;
356 LOG_INFO("ETM v%d.%d", bcd_vers >> 4, bcd_vers & 0xf);
358 etm_reg_add(bcd_vers, jtag_info, reg_cache, arch_info,
359 etm_basic, ARRAY_SIZE(etm_basic));
361 /* address and data comparators; counters; outputs */
362 etm_reg_add(bcd_vers, jtag_info, reg_cache, arch_info,
363 etm_addr_comp, 4 * (0x0f & (config >> 0)));
364 etm_reg_add(bcd_vers, jtag_info, reg_cache, arch_info,
365 etm_data_comp, 2 * (0x0f & (config >> 4)));
366 etm_reg_add(bcd_vers, jtag_info, reg_cache, arch_info,
367 etm_counters, 4 * (0x07 & (config >> 13)));
368 etm_reg_add(bcd_vers, jtag_info, reg_cache, arch_info,
369 etm_outputs, (0x07 & (config >> 20)));
371 /* FIFOFULL presence is optional
372 * REVISIT for ETMv1.2 and later, don't bother adding this
373 * unless ETM_SYS_CONFIG says it's also *supported* ...
375 if (config & (1 << 23))
376 etm_reg_add(bcd_vers, jtag_info, reg_cache, arch_info,
377 etm_fifofull, ARRAY_SIZE(etm_fifofull));
379 /* sequencer is optional (for state-dependant triggering) */
380 if (config & (1 << 16))
381 etm_reg_add(bcd_vers, jtag_info, reg_cache, arch_info,
382 etm_sequencer, ARRAY_SIZE(etm_sequencer));
384 /* REVISIT could realloc and likely save half the memory
385 * in the two chunks we allocated...
388 /* the ETM might have an ETB connected */
389 if (strcmp(etm_ctx->capture_driver->name, "etb") == 0)
391 struct etb *etb = etm_ctx->capture_driver_priv;
393 if (!etb)
395 LOG_ERROR("etb selected as etm capture driver, but no ETB configured");
396 goto fail;
399 reg_cache->next = etb_build_reg_cache(etb);
401 etb->reg_cache = reg_cache->next;
404 etm_ctx->reg_cache = reg_cache;
405 return reg_cache;
407 fail:
408 free(reg_cache);
409 free(reg_list);
410 free(arch_info);
411 return NULL;
414 static int etm_read_reg(struct reg *reg)
416 return etm_read_reg_w_check(reg, NULL, NULL);
419 static int etm_store_reg(struct reg *reg)
421 return etm_write_reg(reg, buf_get_u32(reg->value, 0, reg->size));
424 int etm_setup(struct target *target)
426 int retval;
427 uint32_t etm_ctrl_value;
428 struct arm *arm = target_to_arm(target);
429 struct etm_context *etm_ctx = arm->etm;
430 struct reg *etm_ctrl_reg;
432 etm_ctrl_reg = etm_reg_lookup(etm_ctx, ETM_CTRL);
433 if (!etm_ctrl_reg)
434 return ERROR_OK;
436 /* initialize some ETM control register settings */
437 etm_get_reg(etm_ctrl_reg);
438 etm_ctrl_value = buf_get_u32(etm_ctrl_reg->value, 0, 32);
440 /* clear the ETM powerdown bit (0) */
441 etm_ctrl_value &= ~ETM_CTRL_POWERDOWN;
443 /* configure port width (21,6:4), mode (13,17:16) and
444 * for older modules clocking (13)
446 etm_ctrl_value = (etm_ctrl_value
447 & ~ETM_PORT_WIDTH_MASK
448 & ~ETM_PORT_MODE_MASK
449 & ~ETM_CTRL_DBGRQ
450 & ~ETM_PORT_CLOCK_MASK)
451 | etm_ctx->control;
453 buf_set_u32(etm_ctrl_reg->value, 0, 32, etm_ctrl_value);
454 etm_store_reg(etm_ctrl_reg);
456 etm_ctx->control = etm_ctrl_value;
458 if ((retval = jtag_execute_queue()) != ERROR_OK)
459 return retval;
461 /* REVISIT for ETMv3.0 and later, read ETM_sys_config to
462 * verify that those width and mode settings are OK ...
465 if ((retval = etm_ctx->capture_driver->init(etm_ctx)) != ERROR_OK)
467 LOG_ERROR("ETM capture driver initialization failed");
468 return retval;
470 return ERROR_OK;
473 static int etm_get_reg(struct reg *reg)
475 int retval;
477 if ((retval = etm_read_reg(reg)) != ERROR_OK)
479 LOG_ERROR("BUG: error scheduling etm register read");
480 return retval;
483 if ((retval = jtag_execute_queue()) != ERROR_OK)
485 LOG_ERROR("register read failed");
486 return retval;
489 return ERROR_OK;
492 static int etm_read_reg_w_check(struct reg *reg,
493 uint8_t* check_value, uint8_t* check_mask)
495 struct etm_reg *etm_reg = reg->arch_info;
496 const struct etm_reg_info *r = etm_reg->reg_info;
497 uint8_t reg_addr = r->addr & 0x7f;
498 struct scan_field fields[3];
500 if (etm_reg->reg_info->mode == WO) {
501 LOG_ERROR("BUG: can't read write-only register %s", r->name);
502 return ERROR_INVALID_ARGUMENTS;
505 LOG_DEBUG("%s (%u)", r->name, reg_addr);
507 jtag_set_end_state(TAP_IDLE);
508 arm_jtag_scann(etm_reg->jtag_info, 0x6);
509 arm_jtag_set_instr(etm_reg->jtag_info, etm_reg->jtag_info->intest_instr, NULL);
511 fields[0].tap = etm_reg->jtag_info->tap;
512 fields[0].num_bits = 32;
513 fields[0].out_value = reg->value;
514 fields[0].in_value = NULL;
515 fields[0].check_value = NULL;
516 fields[0].check_mask = NULL;
518 fields[1].tap = etm_reg->jtag_info->tap;
519 fields[1].num_bits = 7;
520 fields[1].out_value = malloc(1);
521 buf_set_u32(fields[1].out_value, 0, 7, reg_addr);
522 fields[1].in_value = NULL;
523 fields[1].check_value = NULL;
524 fields[1].check_mask = NULL;
526 fields[2].tap = etm_reg->jtag_info->tap;
527 fields[2].num_bits = 1;
528 fields[2].out_value = malloc(1);
529 buf_set_u32(fields[2].out_value, 0, 1, 0);
530 fields[2].in_value = NULL;
531 fields[2].check_value = NULL;
532 fields[2].check_mask = NULL;
534 jtag_add_dr_scan(3, fields, jtag_get_end_state());
536 fields[0].in_value = reg->value;
537 fields[0].check_value = check_value;
538 fields[0].check_mask = check_mask;
540 jtag_add_dr_scan_check(3, fields, jtag_get_end_state());
542 free(fields[1].out_value);
543 free(fields[2].out_value);
545 return ERROR_OK;
548 static int etm_set_reg(struct reg *reg, uint32_t value)
550 int retval;
552 if ((retval = etm_write_reg(reg, value)) != ERROR_OK)
554 LOG_ERROR("BUG: error scheduling etm register write");
555 return retval;
558 buf_set_u32(reg->value, 0, reg->size, value);
559 reg->valid = 1;
560 reg->dirty = 0;
562 return ERROR_OK;
565 static int etm_set_reg_w_exec(struct reg *reg, uint8_t *buf)
567 int retval;
569 etm_set_reg(reg, buf_get_u32(buf, 0, reg->size));
571 if ((retval = jtag_execute_queue()) != ERROR_OK)
573 LOG_ERROR("register write failed");
574 return retval;
576 return ERROR_OK;
579 static int etm_write_reg(struct reg *reg, uint32_t value)
581 struct etm_reg *etm_reg = reg->arch_info;
582 const struct etm_reg_info *r = etm_reg->reg_info;
583 uint8_t reg_addr = r->addr & 0x7f;
584 struct scan_field fields[3];
586 if (etm_reg->reg_info->mode == RO) {
587 LOG_ERROR("BUG: can't write read--only register %s", r->name);
588 return ERROR_INVALID_ARGUMENTS;
591 LOG_DEBUG("%s (%u): 0x%8.8" PRIx32 "", r->name, reg_addr, value);
593 jtag_set_end_state(TAP_IDLE);
594 arm_jtag_scann(etm_reg->jtag_info, 0x6);
595 arm_jtag_set_instr(etm_reg->jtag_info, etm_reg->jtag_info->intest_instr, NULL);
597 fields[0].tap = etm_reg->jtag_info->tap;
598 fields[0].num_bits = 32;
599 uint8_t tmp1[4];
600 fields[0].out_value = tmp1;
601 buf_set_u32(fields[0].out_value, 0, 32, value);
602 fields[0].in_value = NULL;
604 fields[1].tap = etm_reg->jtag_info->tap;
605 fields[1].num_bits = 7;
606 uint8_t tmp2;
607 fields[1].out_value = &tmp2;
608 buf_set_u32(fields[1].out_value, 0, 7, reg_addr);
609 fields[1].in_value = NULL;
611 fields[2].tap = etm_reg->jtag_info->tap;
612 fields[2].num_bits = 1;
613 uint8_t tmp3;
614 fields[2].out_value = &tmp3;
615 buf_set_u32(fields[2].out_value, 0, 1, 1);
616 fields[2].in_value = NULL;
618 jtag_add_dr_scan(3, fields, jtag_get_end_state());
620 return ERROR_OK;
624 /* ETM trace analysis functionality */
626 static struct etm_capture_driver *etm_capture_drivers[] =
628 &etb_capture_driver,
629 &etm_dummy_capture_driver,
630 #if BUILD_OOCD_TRACE == 1
631 &oocd_trace_capture_driver,
632 #endif
633 NULL
636 static int etm_read_instruction(struct etm_context *ctx, struct arm_instruction *instruction)
638 int i;
639 int section = -1;
640 size_t size_read;
641 uint32_t opcode;
642 int retval;
644 if (!ctx->image)
645 return ERROR_TRACE_IMAGE_UNAVAILABLE;
647 /* search for the section the current instruction belongs to */
648 for (i = 0; i < ctx->image->num_sections; i++)
650 if ((ctx->image->sections[i].base_address <= ctx->current_pc) &&
651 (ctx->image->sections[i].base_address + ctx->image->sections[i].size > ctx->current_pc))
653 section = i;
654 break;
658 if (section == -1)
660 /* current instruction couldn't be found in the image */
661 return ERROR_TRACE_INSTRUCTION_UNAVAILABLE;
664 if (ctx->core_state == ARM_STATE_ARM)
666 uint8_t buf[4];
667 if ((retval = image_read_section(ctx->image, section,
668 ctx->current_pc - ctx->image->sections[section].base_address,
669 4, buf, &size_read)) != ERROR_OK)
671 LOG_ERROR("error while reading instruction: %i", retval);
672 return ERROR_TRACE_INSTRUCTION_UNAVAILABLE;
674 opcode = target_buffer_get_u32(ctx->target, buf);
675 arm_evaluate_opcode(opcode, ctx->current_pc, instruction);
677 else if (ctx->core_state == ARM_STATE_THUMB)
679 uint8_t buf[2];
680 if ((retval = image_read_section(ctx->image, section,
681 ctx->current_pc - ctx->image->sections[section].base_address,
682 2, buf, &size_read)) != ERROR_OK)
684 LOG_ERROR("error while reading instruction: %i", retval);
685 return ERROR_TRACE_INSTRUCTION_UNAVAILABLE;
687 opcode = target_buffer_get_u16(ctx->target, buf);
688 thumb_evaluate_opcode(opcode, ctx->current_pc, instruction);
690 else if (ctx->core_state == ARM_STATE_JAZELLE)
692 LOG_ERROR("BUG: tracing of jazelle code not supported");
693 return ERROR_FAIL;
695 else
697 LOG_ERROR("BUG: unknown core state encountered");
698 return ERROR_FAIL;
701 return ERROR_OK;
704 static int etmv1_next_packet(struct etm_context *ctx, uint8_t *packet, int apo)
706 while (ctx->data_index < ctx->trace_depth)
708 /* if the caller specified an address packet offset, skip until the
709 * we reach the n-th cycle marked with tracesync */
710 if (apo > 0)
712 if (ctx->trace_data[ctx->data_index].flags & ETMV1_TRACESYNC_CYCLE)
713 apo--;
715 if (apo > 0)
717 ctx->data_index++;
718 ctx->data_half = 0;
720 continue;
723 /* no tracedata output during a TD cycle
724 * or in a trigger cycle */
725 if ((ctx->trace_data[ctx->data_index].pipestat == STAT_TD)
726 || (ctx->trace_data[ctx->data_index].flags & ETMV1_TRIGGER_CYCLE))
728 ctx->data_index++;
729 ctx->data_half = 0;
730 continue;
733 /* FIXME there are more port widths than these... */
734 if ((ctx->control & ETM_PORT_WIDTH_MASK) == ETM_PORT_16BIT)
736 if (ctx->data_half == 0)
738 *packet = ctx->trace_data[ctx->data_index].packet & 0xff;
739 ctx->data_half = 1;
741 else
743 *packet = (ctx->trace_data[ctx->data_index].packet & 0xff00) >> 8;
744 ctx->data_half = 0;
745 ctx->data_index++;
748 else if ((ctx->control & ETM_PORT_WIDTH_MASK) == ETM_PORT_8BIT)
750 *packet = ctx->trace_data[ctx->data_index].packet & 0xff;
751 ctx->data_index++;
753 else
755 /* on a 4-bit port, a packet will be output during two consecutive cycles */
756 if (ctx->data_index > (ctx->trace_depth - 2))
757 return -1;
759 *packet = ctx->trace_data[ctx->data_index].packet & 0xf;
760 *packet |= (ctx->trace_data[ctx->data_index + 1].packet & 0xf) << 4;
761 ctx->data_index += 2;
764 return 0;
767 return -1;
770 static int etmv1_branch_address(struct etm_context *ctx)
772 int retval;
773 uint8_t packet;
774 int shift = 0;
775 int apo;
776 uint32_t i;
778 /* quit analysis if less than two cycles are left in the trace
779 * because we can't extract the APO */
780 if (ctx->data_index > (ctx->trace_depth - 2))
781 return -1;
783 /* a BE could be output during an APO cycle, skip the current
784 * and continue with the new one */
785 if (ctx->trace_data[ctx->pipe_index + 1].pipestat & 0x4)
786 return 1;
787 if (ctx->trace_data[ctx->pipe_index + 2].pipestat & 0x4)
788 return 2;
790 /* address packet offset encoded in the next two cycles' pipestat bits */
791 apo = ctx->trace_data[ctx->pipe_index + 1].pipestat & 0x3;
792 apo |= (ctx->trace_data[ctx->pipe_index + 2].pipestat & 0x3) << 2;
794 /* count number of tracesync cycles between current pipe_index and data_index
795 * i.e. the number of tracesyncs that data_index already passed by
796 * to subtract them from the APO */
797 for (i = ctx->pipe_index; i < ctx->data_index; i++)
799 if (ctx->trace_data[ctx->pipe_index + 1].pipestat & ETMV1_TRACESYNC_CYCLE)
800 apo--;
803 /* extract up to four 7-bit packets */
804 do {
805 if ((retval = etmv1_next_packet(ctx, &packet, (shift == 0) ? apo + 1 : 0)) != 0)
806 return -1;
807 ctx->last_branch &= ~(0x7f << shift);
808 ctx->last_branch |= (packet & 0x7f) << shift;
809 shift += 7;
810 } while ((packet & 0x80) && (shift < 28));
812 /* one last packet holding 4 bits of the address, plus the branch reason code */
813 if ((shift == 28) && (packet & 0x80))
815 if ((retval = etmv1_next_packet(ctx, &packet, 0)) != 0)
816 return -1;
817 ctx->last_branch &= 0x0fffffff;
818 ctx->last_branch |= (packet & 0x0f) << 28;
819 ctx->last_branch_reason = (packet & 0x70) >> 4;
820 shift += 4;
822 else
824 ctx->last_branch_reason = 0;
827 if (shift == 32)
829 ctx->pc_ok = 1;
832 /* if a full address was output, we might have branched into Jazelle state */
833 if ((shift == 32) && (packet & 0x80))
835 ctx->core_state = ARM_STATE_JAZELLE;
837 else
839 /* if we didn't branch into Jazelle state, the current processor state is
840 * encoded in bit 0 of the branch target address */
841 if (ctx->last_branch & 0x1)
843 ctx->core_state = ARM_STATE_THUMB;
844 ctx->last_branch &= ~0x1;
846 else
848 ctx->core_state = ARM_STATE_ARM;
849 ctx->last_branch &= ~0x3;
853 return 0;
856 static int etmv1_data(struct etm_context *ctx, int size, uint32_t *data)
858 int j;
859 uint8_t buf[4];
860 int retval;
862 for (j = 0; j < size; j++)
864 if ((retval = etmv1_next_packet(ctx, &buf[j], 0)) != 0)
865 return -1;
868 if (size == 8)
870 LOG_ERROR("TODO: add support for 64-bit values");
871 return -1;
873 else if (size == 4)
874 *data = target_buffer_get_u32(ctx->target, buf);
875 else if (size == 2)
876 *data = target_buffer_get_u16(ctx->target, buf);
877 else if (size == 1)
878 *data = buf[0];
879 else
880 return -1;
882 return 0;
885 static int etmv1_analyze_trace(struct etm_context *ctx, struct command_context *cmd_ctx)
887 int retval;
888 struct arm_instruction instruction;
890 /* read the trace data if it wasn't read already */
891 if (ctx->trace_depth == 0)
892 ctx->capture_driver->read_trace(ctx);
894 /* start at the beginning of the captured trace */
895 ctx->pipe_index = 0;
896 ctx->data_index = 0;
897 ctx->data_half = 0;
899 /* neither the PC nor the data pointer are valid */
900 ctx->pc_ok = 0;
901 ctx->ptr_ok = 0;
903 while (ctx->pipe_index < ctx->trace_depth)
905 uint8_t pipestat = ctx->trace_data[ctx->pipe_index].pipestat;
906 uint32_t next_pc = ctx->current_pc;
907 uint32_t old_data_index = ctx->data_index;
908 uint32_t old_data_half = ctx->data_half;
909 uint32_t old_index = ctx->pipe_index;
910 uint32_t last_instruction = ctx->last_instruction;
911 uint32_t cycles = 0;
912 int current_pc_ok = ctx->pc_ok;
914 if (ctx->trace_data[ctx->pipe_index].flags & ETMV1_TRIGGER_CYCLE)
916 command_print(cmd_ctx, "--- trigger ---");
919 /* instructions execute in IE/D or BE/D cycles */
920 if ((pipestat == STAT_IE) || (pipestat == STAT_ID))
921 ctx->last_instruction = ctx->pipe_index;
923 /* if we don't have a valid pc skip until we reach an indirect branch */
924 if ((!ctx->pc_ok) && (pipestat != STAT_BE))
926 ctx->pipe_index++;
927 continue;
930 /* any indirect branch could have interrupted instruction flow
931 * - the branch reason code could indicate a trace discontinuity
932 * - a branch to the exception vectors indicates an exception
934 if ((pipestat == STAT_BE) || (pipestat == STAT_BD))
936 /* backup current data index, to be able to consume the branch address
937 * before examining data address and values
939 old_data_index = ctx->data_index;
940 old_data_half = ctx->data_half;
942 ctx->last_instruction = ctx->pipe_index;
944 if ((retval = etmv1_branch_address(ctx)) != 0)
946 /* negative return value from etmv1_branch_address means we ran out of packets,
947 * quit analysing the trace */
948 if (retval < 0)
949 break;
951 /* a positive return values means the current branch was abandoned,
952 * and a new branch was encountered in cycle ctx->pipe_index + retval;
954 LOG_WARNING("abandoned branch encountered, correctnes of analysis uncertain");
955 ctx->pipe_index += retval;
956 continue;
959 /* skip over APO cycles */
960 ctx->pipe_index += 2;
962 switch (ctx->last_branch_reason)
964 case 0x0: /* normal PC change */
965 next_pc = ctx->last_branch;
966 break;
967 case 0x1: /* tracing enabled */
968 command_print(cmd_ctx, "--- tracing enabled at 0x%8.8" PRIx32 " ---", ctx->last_branch);
969 ctx->current_pc = ctx->last_branch;
970 ctx->pipe_index++;
971 continue;
972 break;
973 case 0x2: /* trace restarted after FIFO overflow */
974 command_print(cmd_ctx, "--- trace restarted after FIFO overflow at 0x%8.8" PRIx32 " ---", ctx->last_branch);
975 ctx->current_pc = ctx->last_branch;
976 ctx->pipe_index++;
977 continue;
978 break;
979 case 0x3: /* exit from debug state */
980 command_print(cmd_ctx, "--- exit from debug state at 0x%8.8" PRIx32 " ---", ctx->last_branch);
981 ctx->current_pc = ctx->last_branch;
982 ctx->pipe_index++;
983 continue;
984 break;
985 case 0x4: /* periodic synchronization point */
986 next_pc = ctx->last_branch;
987 /* if we had no valid PC prior to this synchronization point,
988 * we have to move on with the next trace cycle
990 if (!current_pc_ok)
992 command_print(cmd_ctx, "--- periodic synchronization point at 0x%8.8" PRIx32 " ---", next_pc);
993 ctx->current_pc = next_pc;
994 ctx->pipe_index++;
995 continue;
997 break;
998 default: /* reserved */
999 LOG_ERROR("BUG: branch reason code 0x%" PRIx32 " is reserved", ctx->last_branch_reason);
1000 return ERROR_FAIL;
1003 /* if we got here the branch was a normal PC change
1004 * (or a periodic synchronization point, which means the same for that matter)
1005 * if we didn't accquire a complete PC continue with the next cycle
1007 if (!ctx->pc_ok)
1008 continue;
1010 /* indirect branch to the exception vector means an exception occured */
1011 if ((ctx->last_branch <= 0x20)
1012 || ((ctx->last_branch >= 0xffff0000) && (ctx->last_branch <= 0xffff0020)))
1014 if ((ctx->last_branch & 0xff) == 0x10)
1016 command_print(cmd_ctx, "data abort");
1018 else
1020 command_print(cmd_ctx, "exception vector 0x%2.2" PRIx32 "", ctx->last_branch);
1021 ctx->current_pc = ctx->last_branch;
1022 ctx->pipe_index++;
1023 continue;
1028 /* an instruction was executed (or not, depending on the condition flags)
1029 * retrieve it from the image for displaying */
1030 if (ctx->pc_ok && (pipestat != STAT_WT) && (pipestat != STAT_TD) &&
1031 !(((pipestat == STAT_BE) || (pipestat == STAT_BD)) &&
1032 ((ctx->last_branch_reason != 0x0) && (ctx->last_branch_reason != 0x4))))
1034 if ((retval = etm_read_instruction(ctx, &instruction)) != ERROR_OK)
1036 /* can't continue tracing with no image available */
1037 if (retval == ERROR_TRACE_IMAGE_UNAVAILABLE)
1039 return retval;
1041 else if (retval == ERROR_TRACE_INSTRUCTION_UNAVAILABLE)
1043 /* TODO: handle incomplete images
1044 * for now we just quit the analsysis*/
1045 return retval;
1049 cycles = old_index - last_instruction;
1052 if ((pipestat == STAT_ID) || (pipestat == STAT_BD))
1054 uint32_t new_data_index = ctx->data_index;
1055 uint32_t new_data_half = ctx->data_half;
1057 /* in case of a branch with data, the branch target address was consumed before
1058 * we temporarily go back to the saved data index */
1059 if (pipestat == STAT_BD)
1061 ctx->data_index = old_data_index;
1062 ctx->data_half = old_data_half;
1065 if (ctx->control & ETM_CTRL_TRACE_ADDR)
1067 uint8_t packet;
1068 int shift = 0;
1070 do {
1071 if ((retval = etmv1_next_packet(ctx, &packet, 0)) != 0)
1072 return ERROR_ETM_ANALYSIS_FAILED;
1073 ctx->last_ptr &= ~(0x7f << shift);
1074 ctx->last_ptr |= (packet & 0x7f) << shift;
1075 shift += 7;
1076 } while ((packet & 0x80) && (shift < 32));
1078 if (shift >= 32)
1079 ctx->ptr_ok = 1;
1081 if (ctx->ptr_ok)
1083 command_print(cmd_ctx, "address: 0x%8.8" PRIx32 "", ctx->last_ptr);
1087 if (ctx->control & ETM_CTRL_TRACE_DATA)
1089 if ((instruction.type == ARM_LDM) || (instruction.type == ARM_STM))
1091 int i;
1092 for (i = 0; i < 16; i++)
1094 if (instruction.info.load_store_multiple.register_list & (1 << i))
1096 uint32_t data;
1097 if (etmv1_data(ctx, 4, &data) != 0)
1098 return ERROR_ETM_ANALYSIS_FAILED;
1099 command_print(cmd_ctx, "data: 0x%8.8" PRIx32 "", data);
1103 else if ((instruction.type >= ARM_LDR) && (instruction.type <= ARM_STRH))
1105 uint32_t data;
1106 if (etmv1_data(ctx, arm_access_size(&instruction), &data) != 0)
1107 return ERROR_ETM_ANALYSIS_FAILED;
1108 command_print(cmd_ctx, "data: 0x%8.8" PRIx32 "", data);
1112 /* restore data index after consuming BD address and data */
1113 if (pipestat == STAT_BD)
1115 ctx->data_index = new_data_index;
1116 ctx->data_half = new_data_half;
1120 /* adjust PC */
1121 if ((pipestat == STAT_IE) || (pipestat == STAT_ID))
1123 if (((instruction.type == ARM_B) ||
1124 (instruction.type == ARM_BL) ||
1125 (instruction.type == ARM_BLX)) &&
1126 (instruction.info.b_bl_bx_blx.target_address != 0xffffffff))
1128 next_pc = instruction.info.b_bl_bx_blx.target_address;
1130 else
1132 next_pc += (ctx->core_state == ARM_STATE_ARM) ? 4 : 2;
1135 else if (pipestat == STAT_IN)
1137 next_pc += (ctx->core_state == ARM_STATE_ARM) ? 4 : 2;
1140 if ((pipestat != STAT_TD) && (pipestat != STAT_WT))
1142 char cycles_text[32] = "";
1144 /* if the trace was captured with cycle accurate tracing enabled,
1145 * output the number of cycles since the last executed instruction
1147 if (ctx->control & ETM_CTRL_CYCLE_ACCURATE)
1149 snprintf(cycles_text, 32, " (%i %s)",
1150 (int)cycles,
1151 (cycles == 1) ? "cycle" : "cycles");
1154 command_print(cmd_ctx, "%s%s%s",
1155 instruction.text,
1156 (pipestat == STAT_IN) ? " (not executed)" : "",
1157 cycles_text);
1159 ctx->current_pc = next_pc;
1161 /* packets for an instruction don't start on or before the preceding
1162 * functional pipestat (i.e. other than WT or TD)
1164 if (ctx->data_index <= ctx->pipe_index)
1166 ctx->data_index = ctx->pipe_index + 1;
1167 ctx->data_half = 0;
1171 ctx->pipe_index += 1;
1174 return ERROR_OK;
1177 static COMMAND_HELPER(handle_etm_tracemode_command_update,
1178 uint32_t *mode)
1180 uint32_t tracemode;
1182 /* what parts of data access are traced? */
1183 if (strcmp(CMD_ARGV[0], "none") == 0)
1184 tracemode = 0;
1185 else if (strcmp(CMD_ARGV[0], "data") == 0)
1186 tracemode = ETM_CTRL_TRACE_DATA;
1187 else if (strcmp(CMD_ARGV[0], "address") == 0)
1188 tracemode = ETM_CTRL_TRACE_ADDR;
1189 else if (strcmp(CMD_ARGV[0], "all") == 0)
1190 tracemode = ETM_CTRL_TRACE_DATA | ETM_CTRL_TRACE_ADDR;
1191 else
1193 command_print(CMD_CTX, "invalid option '%s'", CMD_ARGV[0]);
1194 return ERROR_INVALID_ARGUMENTS;
1197 uint8_t context_id;
1198 COMMAND_PARSE_NUMBER(u8, CMD_ARGV[1], context_id);
1199 switch (context_id)
1201 case 0:
1202 tracemode |= ETM_CTRL_CONTEXTID_NONE;
1203 break;
1204 case 8:
1205 tracemode |= ETM_CTRL_CONTEXTID_8;
1206 break;
1207 case 16:
1208 tracemode |= ETM_CTRL_CONTEXTID_16;
1209 break;
1210 case 32:
1211 tracemode |= ETM_CTRL_CONTEXTID_32;
1212 break;
1213 default:
1214 command_print(CMD_CTX, "invalid option '%s'", CMD_ARGV[1]);
1215 return ERROR_INVALID_ARGUMENTS;
1218 bool etmv1_cycle_accurate;
1219 COMMAND_PARSE_ENABLE(CMD_ARGV[2], etmv1_cycle_accurate);
1220 if (etmv1_cycle_accurate)
1221 tracemode |= ETM_CTRL_CYCLE_ACCURATE;
1223 bool etmv1_branch_output;
1224 COMMAND_PARSE_ENABLE(CMD_ARGV[3], etmv1_branch_output);
1225 if (etmv1_branch_output)
1226 tracemode |= ETM_CTRL_BRANCH_OUTPUT;
1228 /* IGNORED:
1229 * - CPRT tracing (coprocessor register transfers)
1230 * - debug request (causes debug entry on trigger)
1231 * - stall on FIFOFULL (preventing tracedata lossage)
1233 *mode = tracemode;
1235 return ERROR_OK;
1238 COMMAND_HANDLER(handle_etm_tracemode_command)
1240 struct target *target = get_current_target(CMD_CTX);
1241 struct arm *arm = target_to_arm(target);
1242 struct etm_context *etm;
1244 if (!is_arm(arm)) {
1245 command_print(CMD_CTX, "ETM: current target isn't an ARM");
1246 return ERROR_FAIL;
1249 etm = arm->etm;
1250 if (!etm) {
1251 command_print(CMD_CTX, "current target doesn't have an ETM configured");
1252 return ERROR_FAIL;
1255 uint32_t tracemode = etm->control;
1257 switch (CMD_ARGC)
1259 case 0:
1260 break;
1261 case 4:
1262 CALL_COMMAND_HANDLER(handle_etm_tracemode_command_update,
1263 &tracemode);
1264 break;
1265 default:
1266 command_print(CMD_CTX, "usage: tracemode "
1267 "('none'|'data'|'address'|'all') "
1268 "context_id_bits "
1269 "('enable'|'disable') "
1270 "('enable'|'disable')"
1272 return ERROR_FAIL;
1276 * todo: fail if parameters were invalid for this hardware,
1277 * or couldn't be written; display actual hardware state...
1280 command_print(CMD_CTX, "current tracemode configuration:");
1282 switch (tracemode & ETM_CTRL_TRACE_MASK)
1284 default:
1285 command_print(CMD_CTX, "data tracing: none");
1286 break;
1287 case ETM_CTRL_TRACE_DATA:
1288 command_print(CMD_CTX, "data tracing: data only");
1289 break;
1290 case ETM_CTRL_TRACE_ADDR:
1291 command_print(CMD_CTX, "data tracing: address only");
1292 break;
1293 case ETM_CTRL_TRACE_DATA | ETM_CTRL_TRACE_ADDR:
1294 command_print(CMD_CTX, "data tracing: address and data");
1295 break;
1298 switch (tracemode & ETM_CTRL_CONTEXTID_MASK)
1300 case ETM_CTRL_CONTEXTID_NONE:
1301 command_print(CMD_CTX, "contextid tracing: none");
1302 break;
1303 case ETM_CTRL_CONTEXTID_8:
1304 command_print(CMD_CTX, "contextid tracing: 8 bit");
1305 break;
1306 case ETM_CTRL_CONTEXTID_16:
1307 command_print(CMD_CTX, "contextid tracing: 16 bit");
1308 break;
1309 case ETM_CTRL_CONTEXTID_32:
1310 command_print(CMD_CTX, "contextid tracing: 32 bit");
1311 break;
1314 if (tracemode & ETM_CTRL_CYCLE_ACCURATE)
1316 command_print(CMD_CTX, "cycle-accurate tracing enabled");
1318 else
1320 command_print(CMD_CTX, "cycle-accurate tracing disabled");
1323 if (tracemode & ETM_CTRL_BRANCH_OUTPUT)
1325 command_print(CMD_CTX, "full branch address output enabled");
1327 else
1329 command_print(CMD_CTX, "full branch address output disabled");
1332 #define TRACEMODE_MASK ( \
1333 ETM_CTRL_CONTEXTID_MASK \
1334 | ETM_CTRL_BRANCH_OUTPUT \
1335 | ETM_CTRL_CYCLE_ACCURATE \
1336 | ETM_CTRL_TRACE_MASK \
1339 /* only update ETM_CTRL register if tracemode changed */
1340 if ((etm->control & TRACEMODE_MASK) != tracemode)
1342 struct reg *etm_ctrl_reg;
1344 etm_ctrl_reg = etm_reg_lookup(etm, ETM_CTRL);
1345 if (!etm_ctrl_reg)
1346 return ERROR_FAIL;
1348 etm->control &= ~TRACEMODE_MASK;
1349 etm->control |= tracemode & TRACEMODE_MASK;
1351 buf_set_u32(etm_ctrl_reg->value, 0, 32, etm->control);
1352 etm_store_reg(etm_ctrl_reg);
1354 /* invalidate old trace data */
1355 etm->capture_status = TRACE_IDLE;
1356 if (etm->trace_depth > 0)
1358 free(etm->trace_data);
1359 etm->trace_data = NULL;
1361 etm->trace_depth = 0;
1364 #undef TRACEMODE_MASK
1366 return ERROR_OK;
1369 COMMAND_HANDLER(handle_etm_config_command)
1371 struct target *target;
1372 struct arm *arm;
1373 uint32_t portmode = 0x0;
1374 struct etm_context *etm_ctx;
1375 int i;
1377 if (CMD_ARGC != 5)
1378 return ERROR_COMMAND_SYNTAX_ERROR;
1380 target = get_target(CMD_ARGV[0]);
1381 if (!target)
1383 LOG_ERROR("target '%s' not defined", CMD_ARGV[0]);
1384 return ERROR_FAIL;
1387 arm = target_to_arm(target);
1388 if (!is_arm(arm)) {
1389 command_print(CMD_CTX, "target '%s' is '%s'; not an ARM",
1390 target_name(target),
1391 target_type_name(target));
1392 return ERROR_FAIL;
1395 /* FIXME for ETMv3.0 and above -- and we don't yet know what ETM
1396 * version we'll be using!! -- so we can't know how to validate
1397 * params yet. "etm config" should likely be *AFTER* hookup...
1399 * - Many more widths might be supported ... and we can easily
1400 * check whether our setting "took".
1402 * - The "clock" and "mode" bits are interpreted differently.
1403 * See ARM IHI 0014O table 2-17 for the old behavior, and
1404 * table 2-18 for the new. With ETB it's best to specify
1405 * "normal full" ...
1407 uint8_t port_width;
1408 COMMAND_PARSE_NUMBER(u8, CMD_ARGV[1], port_width);
1409 switch (port_width)
1411 /* before ETMv3.0 */
1412 case 4:
1413 portmode |= ETM_PORT_4BIT;
1414 break;
1415 case 8:
1416 portmode |= ETM_PORT_8BIT;
1417 break;
1418 case 16:
1419 portmode |= ETM_PORT_16BIT;
1420 break;
1421 /* ETMv3.0 and later*/
1422 case 24:
1423 portmode |= ETM_PORT_24BIT;
1424 break;
1425 case 32:
1426 portmode |= ETM_PORT_32BIT;
1427 break;
1428 case 48:
1429 portmode |= ETM_PORT_48BIT;
1430 break;
1431 case 64:
1432 portmode |= ETM_PORT_64BIT;
1433 break;
1434 case 1:
1435 portmode |= ETM_PORT_1BIT;
1436 break;
1437 case 2:
1438 portmode |= ETM_PORT_2BIT;
1439 break;
1440 default:
1441 command_print(CMD_CTX,
1442 "unsupported ETM port width '%s'", CMD_ARGV[1]);
1443 return ERROR_FAIL;
1446 if (strcmp("normal", CMD_ARGV[2]) == 0)
1448 portmode |= ETM_PORT_NORMAL;
1450 else if (strcmp("multiplexed", CMD_ARGV[2]) == 0)
1452 portmode |= ETM_PORT_MUXED;
1454 else if (strcmp("demultiplexed", CMD_ARGV[2]) == 0)
1456 portmode |= ETM_PORT_DEMUXED;
1458 else
1460 command_print(CMD_CTX, "unsupported ETM port mode '%s', must be 'normal', 'multiplexed' or 'demultiplexed'", CMD_ARGV[2]);
1461 return ERROR_FAIL;
1464 if (strcmp("half", CMD_ARGV[3]) == 0)
1466 portmode |= ETM_PORT_HALF_CLOCK;
1468 else if (strcmp("full", CMD_ARGV[3]) == 0)
1470 portmode |= ETM_PORT_FULL_CLOCK;
1472 else
1474 command_print(CMD_CTX, "unsupported ETM port clocking '%s', must be 'full' or 'half'", CMD_ARGV[3]);
1475 return ERROR_FAIL;
1478 etm_ctx = calloc(1, sizeof(struct etm_context));
1479 if (!etm_ctx) {
1480 LOG_DEBUG("out of memory");
1481 return ERROR_FAIL;
1484 for (i = 0; etm_capture_drivers[i]; i++)
1486 if (strcmp(CMD_ARGV[4], etm_capture_drivers[i]->name) == 0)
1488 int retval = register_commands(CMD_CTX, NULL,
1489 etm_capture_drivers[i]->commands);
1490 if (ERROR_OK != retval)
1492 free(etm_ctx);
1493 return retval;
1496 etm_ctx->capture_driver = etm_capture_drivers[i];
1498 break;
1502 if (!etm_capture_drivers[i])
1504 /* no supported capture driver found, don't register an ETM */
1505 free(etm_ctx);
1506 LOG_ERROR("trace capture driver '%s' not found", CMD_ARGV[4]);
1507 return ERROR_FAIL;
1510 etm_ctx->target = target;
1511 etm_ctx->trace_data = NULL;
1512 etm_ctx->control = portmode;
1513 etm_ctx->core_state = ARM_STATE_ARM;
1515 arm->etm = etm_ctx;
1517 return etm_register_user_commands(CMD_CTX);
1520 COMMAND_HANDLER(handle_etm_info_command)
1522 struct target *target;
1523 struct arm *arm;
1524 struct etm_context *etm;
1525 struct reg *etm_sys_config_reg;
1526 int max_port_size;
1527 uint32_t config;
1529 target = get_current_target(CMD_CTX);
1530 arm = target_to_arm(target);
1531 if (!is_arm(arm))
1533 command_print(CMD_CTX, "ETM: current target isn't an ARM");
1534 return ERROR_FAIL;
1537 etm = arm->etm;
1538 if (!etm)
1540 command_print(CMD_CTX, "current target doesn't have an ETM configured");
1541 return ERROR_FAIL;
1544 command_print(CMD_CTX, "ETM v%d.%d",
1545 etm->bcd_vers >> 4, etm->bcd_vers & 0xf);
1546 command_print(CMD_CTX, "pairs of address comparators: %i",
1547 (int) (etm->config >> 0) & 0x0f);
1548 command_print(CMD_CTX, "data comparators: %i",
1549 (int) (etm->config >> 4) & 0x0f);
1550 command_print(CMD_CTX, "memory map decoders: %i",
1551 (int) (etm->config >> 8) & 0x1f);
1552 command_print(CMD_CTX, "number of counters: %i",
1553 (int) (etm->config >> 13) & 0x07);
1554 command_print(CMD_CTX, "sequencer %spresent",
1555 (int) (etm->config & (1 << 16)) ? "" : "not ");
1556 command_print(CMD_CTX, "number of ext. inputs: %i",
1557 (int) (etm->config >> 17) & 0x07);
1558 command_print(CMD_CTX, "number of ext. outputs: %i",
1559 (int) (etm->config >> 20) & 0x07);
1560 command_print(CMD_CTX, "FIFO full %spresent",
1561 (int) (etm->config & (1 << 23)) ? "" : "not ");
1562 if (etm->bcd_vers < 0x20)
1563 command_print(CMD_CTX, "protocol version: %i",
1564 (int) (etm->config >> 28) & 0x07);
1565 else {
1566 command_print(CMD_CTX,
1567 "coprocessor and memory access %ssupported",
1568 (etm->config & (1 << 26)) ? "" : "not ");
1569 command_print(CMD_CTX, "trace start/stop %spresent",
1570 (etm->config & (1 << 26)) ? "" : "not ");
1571 command_print(CMD_CTX, "number of context comparators: %i",
1572 (int) (etm->config >> 24) & 0x03);
1575 /* SYS_CONFIG isn't present before ETMv1.2 */
1576 etm_sys_config_reg = etm_reg_lookup(etm, ETM_SYS_CONFIG);
1577 if (!etm_sys_config_reg)
1578 return ERROR_OK;
1580 etm_get_reg(etm_sys_config_reg);
1581 config = buf_get_u32(etm_sys_config_reg->value, 0, 32);
1583 LOG_DEBUG("ETM SYS CONFIG %08x", (unsigned) config);
1585 max_port_size = config & 0x7;
1586 if (etm->bcd_vers >= 0x30)
1587 max_port_size |= (config >> 6) & 0x08;
1588 switch (max_port_size)
1590 /* before ETMv3.0 */
1591 case 0:
1592 max_port_size = 4;
1593 break;
1594 case 1:
1595 max_port_size = 8;
1596 break;
1597 case 2:
1598 max_port_size = 16;
1599 break;
1600 /* ETMv3.0 and later*/
1601 case 3:
1602 max_port_size = 24;
1603 break;
1604 case 4:
1605 max_port_size = 32;
1606 break;
1607 case 5:
1608 max_port_size = 48;
1609 break;
1610 case 6:
1611 max_port_size = 64;
1612 break;
1613 case 8:
1614 max_port_size = 1;
1615 break;
1616 case 9:
1617 max_port_size = 2;
1618 break;
1619 default:
1620 LOG_ERROR("Illegal max_port_size");
1621 return ERROR_FAIL;
1623 command_print(CMD_CTX, "max. port size: %i", max_port_size);
1625 if (etm->bcd_vers < 0x30) {
1626 command_print(CMD_CTX, "half-rate clocking %ssupported",
1627 (config & (1 << 3)) ? "" : "not ");
1628 command_print(CMD_CTX, "full-rate clocking %ssupported",
1629 (config & (1 << 4)) ? "" : "not ");
1630 command_print(CMD_CTX, "normal trace format %ssupported",
1631 (config & (1 << 5)) ? "" : "not ");
1632 command_print(CMD_CTX, "multiplex trace format %ssupported",
1633 (config & (1 << 6)) ? "" : "not ");
1634 command_print(CMD_CTX, "demultiplex trace format %ssupported",
1635 (config & (1 << 7)) ? "" : "not ");
1636 } else {
1637 /* REVISIT show which size and format are selected ... */
1638 command_print(CMD_CTX, "current port size %ssupported",
1639 (config & (1 << 10)) ? "" : "not ");
1640 command_print(CMD_CTX, "current trace format %ssupported",
1641 (config & (1 << 11)) ? "" : "not ");
1643 if (etm->bcd_vers >= 0x21)
1644 command_print(CMD_CTX, "fetch comparisons %ssupported",
1645 (config & (1 << 17)) ? "not " : "");
1646 command_print(CMD_CTX, "FIFO full %ssupported",
1647 (config & (1 << 8)) ? "" : "not ");
1649 return ERROR_OK;
1652 COMMAND_HANDLER(handle_etm_status_command)
1654 struct target *target;
1655 struct arm *arm;
1656 struct etm_context *etm;
1657 trace_status_t trace_status;
1659 target = get_current_target(CMD_CTX);
1660 arm = target_to_arm(target);
1661 if (!is_arm(arm))
1663 command_print(CMD_CTX, "ETM: current target isn't an ARM");
1664 return ERROR_FAIL;
1667 etm = arm->etm;
1668 if (!etm)
1670 command_print(CMD_CTX, "current target doesn't have an ETM configured");
1671 return ERROR_FAIL;
1674 /* ETM status */
1675 if (etm->bcd_vers >= 0x11) {
1676 struct reg *reg;
1678 reg = etm_reg_lookup(etm, ETM_STATUS);
1679 if (!reg)
1680 return ERROR_FAIL;
1681 if (etm_get_reg(reg) == ERROR_OK) {
1682 unsigned s = buf_get_u32(reg->value, 0, reg->size);
1684 command_print(CMD_CTX, "etm: %s%s%s%s",
1685 /* bit(1) == progbit */
1686 (etm->bcd_vers >= 0x12)
1687 ? ((s & (1 << 1))
1688 ? "disabled" : "enabled")
1689 : "?",
1690 ((s & (1 << 3)) && etm->bcd_vers >= 0x31)
1691 ? " triggered" : "",
1692 ((s & (1 << 2)) && etm->bcd_vers >= 0x12)
1693 ? " start/stop" : "",
1694 ((s & (1 << 0)) && etm->bcd_vers >= 0x11)
1695 ? " untraced-overflow" : "");
1696 } /* else ignore and try showing trace port status */
1699 /* Trace Port Driver status */
1700 trace_status = etm->capture_driver->status(etm);
1701 if (trace_status == TRACE_IDLE)
1703 command_print(CMD_CTX, "%s: idle", etm->capture_driver->name);
1705 else
1707 static char *completed = " completed";
1708 static char *running = " is running";
1709 static char *overflowed = ", overflowed";
1710 static char *triggered = ", triggered";
1712 command_print(CMD_CTX, "%s: trace collection%s%s%s",
1713 etm->capture_driver->name,
1714 (trace_status & TRACE_RUNNING) ? running : completed,
1715 (trace_status & TRACE_OVERFLOWED) ? overflowed : "",
1716 (trace_status & TRACE_TRIGGERED) ? triggered : "");
1718 if (etm->trace_depth > 0)
1720 command_print(CMD_CTX, "%i frames of trace data read",
1721 (int)(etm->trace_depth));
1725 return ERROR_OK;
1728 COMMAND_HANDLER(handle_etm_image_command)
1730 struct target *target;
1731 struct arm *arm;
1732 struct etm_context *etm_ctx;
1734 if (CMD_ARGC < 1)
1736 command_print(CMD_CTX, "usage: etm image <file> [base address] [type]");
1737 return ERROR_FAIL;
1740 target = get_current_target(CMD_CTX);
1741 arm = target_to_arm(target);
1742 if (!is_arm(arm))
1744 command_print(CMD_CTX, "ETM: current target isn't an ARM");
1745 return ERROR_FAIL;
1748 etm_ctx = arm->etm;
1749 if (!etm_ctx)
1751 command_print(CMD_CTX, "current target doesn't have an ETM configured");
1752 return ERROR_FAIL;
1755 if (etm_ctx->image)
1757 image_close(etm_ctx->image);
1758 free(etm_ctx->image);
1759 command_print(CMD_CTX, "previously loaded image found and closed");
1762 etm_ctx->image = malloc(sizeof(struct image));
1763 etm_ctx->image->base_address_set = 0;
1764 etm_ctx->image->start_address_set = 0;
1766 /* a base address isn't always necessary, default to 0x0 (i.e. don't relocate) */
1767 if (CMD_ARGC >= 2)
1769 etm_ctx->image->base_address_set = 1;
1770 COMMAND_PARSE_NUMBER(int, CMD_ARGV[1], etm_ctx->image->base_address);
1772 else
1774 etm_ctx->image->base_address_set = 0;
1777 if (image_open(etm_ctx->image, CMD_ARGV[0], (CMD_ARGC >= 3) ? CMD_ARGV[2] : NULL) != ERROR_OK)
1779 free(etm_ctx->image);
1780 etm_ctx->image = NULL;
1781 return ERROR_FAIL;
1784 return ERROR_OK;
1787 COMMAND_HANDLER(handle_etm_dump_command)
1789 struct fileio file;
1790 struct target *target;
1791 struct arm *arm;
1792 struct etm_context *etm_ctx;
1793 uint32_t i;
1795 if (CMD_ARGC != 1)
1797 command_print(CMD_CTX, "usage: etm dump <file>");
1798 return ERROR_FAIL;
1801 target = get_current_target(CMD_CTX);
1802 arm = target_to_arm(target);
1803 if (!is_arm(arm))
1805 command_print(CMD_CTX, "ETM: current target isn't an ARM");
1806 return ERROR_FAIL;
1809 etm_ctx = arm->etm;
1810 if (!etm_ctx)
1812 command_print(CMD_CTX, "current target doesn't have an ETM configured");
1813 return ERROR_FAIL;
1816 if (etm_ctx->capture_driver->status == TRACE_IDLE)
1818 command_print(CMD_CTX, "trace capture wasn't enabled, no trace data captured");
1819 return ERROR_OK;
1822 if (etm_ctx->capture_driver->status(etm_ctx) & TRACE_RUNNING)
1824 /* TODO: if on-the-fly capture is to be supported, this needs to be changed */
1825 command_print(CMD_CTX, "trace capture not completed");
1826 return ERROR_FAIL;
1829 /* read the trace data if it wasn't read already */
1830 if (etm_ctx->trace_depth == 0)
1831 etm_ctx->capture_driver->read_trace(etm_ctx);
1833 if (fileio_open(&file, CMD_ARGV[0], FILEIO_WRITE, FILEIO_BINARY) != ERROR_OK)
1835 return ERROR_FAIL;
1838 fileio_write_u32(&file, etm_ctx->capture_status);
1839 fileio_write_u32(&file, etm_ctx->control);
1840 fileio_write_u32(&file, etm_ctx->trace_depth);
1842 for (i = 0; i < etm_ctx->trace_depth; i++)
1844 fileio_write_u32(&file, etm_ctx->trace_data[i].pipestat);
1845 fileio_write_u32(&file, etm_ctx->trace_data[i].packet);
1846 fileio_write_u32(&file, etm_ctx->trace_data[i].flags);
1849 fileio_close(&file);
1851 return ERROR_OK;
1854 COMMAND_HANDLER(handle_etm_load_command)
1856 struct fileio file;
1857 struct target *target;
1858 struct arm *arm;
1859 struct etm_context *etm_ctx;
1860 uint32_t i;
1862 if (CMD_ARGC != 1)
1864 command_print(CMD_CTX, "usage: etm load <file>");
1865 return ERROR_FAIL;
1868 target = get_current_target(CMD_CTX);
1869 arm = target_to_arm(target);
1870 if (!is_arm(arm))
1872 command_print(CMD_CTX, "ETM: current target isn't an ARM");
1873 return ERROR_FAIL;
1876 etm_ctx = arm->etm;
1877 if (!etm_ctx)
1879 command_print(CMD_CTX, "current target doesn't have an ETM configured");
1880 return ERROR_FAIL;
1883 if (etm_ctx->capture_driver->status(etm_ctx) & TRACE_RUNNING)
1885 command_print(CMD_CTX, "trace capture running, stop first");
1886 return ERROR_FAIL;
1889 if (fileio_open(&file, CMD_ARGV[0], FILEIO_READ, FILEIO_BINARY) != ERROR_OK)
1891 return ERROR_FAIL;
1894 if (file.size % 4)
1896 command_print(CMD_CTX, "size isn't a multiple of 4, no valid trace data");
1897 fileio_close(&file);
1898 return ERROR_FAIL;
1901 if (etm_ctx->trace_depth > 0)
1903 free(etm_ctx->trace_data);
1904 etm_ctx->trace_data = NULL;
1908 uint32_t tmp;
1909 fileio_read_u32(&file, &tmp); etm_ctx->capture_status = tmp;
1910 fileio_read_u32(&file, &tmp); etm_ctx->control = tmp;
1911 fileio_read_u32(&file, &etm_ctx->trace_depth);
1913 etm_ctx->trace_data = malloc(sizeof(struct etmv1_trace_data) * etm_ctx->trace_depth);
1914 if (etm_ctx->trace_data == NULL)
1916 command_print(CMD_CTX, "not enough memory to perform operation");
1917 fileio_close(&file);
1918 return ERROR_FAIL;
1921 for (i = 0; i < etm_ctx->trace_depth; i++)
1923 uint32_t pipestat, packet, flags;
1924 fileio_read_u32(&file, &pipestat);
1925 fileio_read_u32(&file, &packet);
1926 fileio_read_u32(&file, &flags);
1927 etm_ctx->trace_data[i].pipestat = pipestat & 0xff;
1928 etm_ctx->trace_data[i].packet = packet & 0xffff;
1929 etm_ctx->trace_data[i].flags = flags;
1932 fileio_close(&file);
1934 return ERROR_OK;
1937 COMMAND_HANDLER(handle_etm_start_command)
1939 struct target *target;
1940 struct arm *arm;
1941 struct etm_context *etm_ctx;
1942 struct reg *etm_ctrl_reg;
1944 target = get_current_target(CMD_CTX);
1945 arm = target_to_arm(target);
1946 if (!is_arm(arm))
1948 command_print(CMD_CTX, "ETM: current target isn't an ARM");
1949 return ERROR_FAIL;
1952 etm_ctx = arm->etm;
1953 if (!etm_ctx)
1955 command_print(CMD_CTX, "current target doesn't have an ETM configured");
1956 return ERROR_FAIL;
1959 /* invalidate old tracing data */
1960 etm_ctx->capture_status = TRACE_IDLE;
1961 if (etm_ctx->trace_depth > 0)
1963 free(etm_ctx->trace_data);
1964 etm_ctx->trace_data = NULL;
1966 etm_ctx->trace_depth = 0;
1968 etm_ctrl_reg = etm_reg_lookup(etm_ctx, ETM_CTRL);
1969 if (!etm_ctrl_reg)
1970 return ERROR_FAIL;
1972 etm_get_reg(etm_ctrl_reg);
1974 /* Clear programming bit (10), set port selection bit (11) */
1975 buf_set_u32(etm_ctrl_reg->value, 10, 2, 0x2);
1977 etm_store_reg(etm_ctrl_reg);
1978 jtag_execute_queue();
1980 etm_ctx->capture_driver->start_capture(etm_ctx);
1982 return ERROR_OK;
1985 COMMAND_HANDLER(handle_etm_stop_command)
1987 struct target *target;
1988 struct arm *arm;
1989 struct etm_context *etm_ctx;
1990 struct reg *etm_ctrl_reg;
1992 target = get_current_target(CMD_CTX);
1993 arm = target_to_arm(target);
1994 if (!is_arm(arm))
1996 command_print(CMD_CTX, "ETM: current target isn't an ARM");
1997 return ERROR_FAIL;
2000 etm_ctx = arm->etm;
2001 if (!etm_ctx)
2003 command_print(CMD_CTX, "current target doesn't have an ETM configured");
2004 return ERROR_FAIL;
2007 etm_ctrl_reg = etm_reg_lookup(etm_ctx, ETM_CTRL);
2008 if (!etm_ctrl_reg)
2009 return ERROR_FAIL;
2011 etm_get_reg(etm_ctrl_reg);
2013 /* Set programming bit (10), clear port selection bit (11) */
2014 buf_set_u32(etm_ctrl_reg->value, 10, 2, 0x1);
2016 etm_store_reg(etm_ctrl_reg);
2017 jtag_execute_queue();
2019 etm_ctx->capture_driver->stop_capture(etm_ctx);
2021 return ERROR_OK;
2024 COMMAND_HANDLER(handle_etm_trigger_debug_command)
2026 struct target *target;
2027 struct arm *arm;
2028 struct etm_context *etm;
2030 target = get_current_target(CMD_CTX);
2031 arm = target_to_arm(target);
2032 if (!is_arm(arm))
2034 command_print(CMD_CTX, "ETM: %s isn't an ARM",
2035 target_name(target));
2036 return ERROR_FAIL;
2039 etm = arm->etm;
2040 if (!etm)
2042 command_print(CMD_CTX, "ETM: no ETM configured for %s",
2043 target_name(target));
2044 return ERROR_FAIL;
2047 if (CMD_ARGC == 1) {
2048 struct reg *etm_ctrl_reg;
2049 bool dbgrq;
2051 etm_ctrl_reg = etm_reg_lookup(etm, ETM_CTRL);
2052 if (!etm_ctrl_reg)
2053 return ERROR_FAIL;
2055 COMMAND_PARSE_ENABLE(CMD_ARGV[0], dbgrq);
2056 if (dbgrq)
2057 etm->control |= ETM_CTRL_DBGRQ;
2058 else
2059 etm->control &= ~ETM_CTRL_DBGRQ;
2061 /* etm->control will be written to hardware
2062 * the next time an "etm start" is issued.
2064 buf_set_u32(etm_ctrl_reg->value, 0, 32, etm->control);
2067 command_print(CMD_CTX, "ETM: %s debug halt",
2068 (etm->control & ETM_CTRL_DBGRQ)
2069 ? "triggers"
2070 : "does not trigger");
2071 return ERROR_OK;
2074 COMMAND_HANDLER(handle_etm_analyze_command)
2076 struct target *target;
2077 struct arm *arm;
2078 struct etm_context *etm_ctx;
2079 int retval;
2081 target = get_current_target(CMD_CTX);
2082 arm = target_to_arm(target);
2083 if (!is_arm(arm))
2085 command_print(CMD_CTX, "ETM: current target isn't an ARM");
2086 return ERROR_FAIL;
2089 etm_ctx = arm->etm;
2090 if (!etm_ctx)
2092 command_print(CMD_CTX, "current target doesn't have an ETM configured");
2093 return ERROR_FAIL;
2096 if ((retval = etmv1_analyze_trace(etm_ctx, CMD_CTX)) != ERROR_OK)
2098 switch (retval)
2100 case ERROR_ETM_ANALYSIS_FAILED:
2101 command_print(CMD_CTX, "further analysis failed (corrupted trace data or just end of data");
2102 break;
2103 case ERROR_TRACE_INSTRUCTION_UNAVAILABLE:
2104 command_print(CMD_CTX, "no instruction for current address available, analysis aborted");
2105 break;
2106 case ERROR_TRACE_IMAGE_UNAVAILABLE:
2107 command_print(CMD_CTX, "no image available for trace analysis");
2108 break;
2109 default:
2110 command_print(CMD_CTX, "unknown error: %i", retval);
2114 return retval;
2117 static const struct command_registration etm_config_command_handlers[] = {
2119 /* NOTE: with ADIv5, ETMs are accessed by DAP operations,
2120 * possibly over SWD, not JTAG scanchain 6 of 'target'.
2122 * Also, these parameters don't match ETM v3+ modules...
2124 .name = "config",
2125 .handler = handle_etm_config_command,
2126 .mode = COMMAND_CONFIG,
2127 .help = "Set up ETM output port.",
2128 .usage = "target port_width port_mode clocking capture_driver",
2130 COMMAND_REGISTRATION_DONE
2132 const struct command_registration etm_command_handlers[] = {
2134 .name = "etm",
2135 .mode = COMMAND_ANY,
2136 .help = "Emebdded Trace Macrocell command group",
2137 .chain = etm_config_command_handlers,
2139 COMMAND_REGISTRATION_DONE
2142 static const struct command_registration etm_exec_command_handlers[] = {
2144 .name = "tracemode",
2145 .handler = handle_etm_tracemode_command,
2146 .mode = COMMAND_EXEC,
2147 .help = "configure/display trace mode",
2148 .usage = "('none'|'data'|'address'|'all') "
2149 "context_id_bits "
2150 "['enable'|'disable'] "
2151 "['enable'|'disable']",
2154 .name = "info",
2155 .handler = handle_etm_info_command,
2156 .mode = COMMAND_EXEC,
2157 .help = "display info about the current target's ETM",
2160 .name = "status",
2161 .handler = handle_etm_status_command,
2162 .mode = COMMAND_EXEC,
2163 .help = "display current target's ETM status",
2166 .name = "start",
2167 .handler = handle_etm_start_command,
2168 .mode = COMMAND_EXEC,
2169 .help = "start ETM trace collection",
2172 .name = "stop",
2173 .handler = handle_etm_stop_command,
2174 .mode = COMMAND_EXEC,
2175 .help = "stop ETM trace collection",
2178 .name = "trigger_debug",
2179 .handler = handle_etm_trigger_debug_command,
2180 .mode = COMMAND_EXEC,
2181 .help = "enable/disable debug entry on trigger",
2182 .usage = "['enable'|'disable']",
2185 .name = "analyze",
2186 .handler = handle_etm_analyze_command,
2187 .mode = COMMAND_EXEC,
2188 .help = "analyze collected ETM trace",
2191 .name = "image",
2192 .handler = handle_etm_image_command,
2193 .mode = COMMAND_EXEC,
2194 .help = "load image from file with optional offset",
2195 .usage = "filename [offset]",
2198 .name = "dump",
2199 .handler = handle_etm_dump_command,
2200 .mode = COMMAND_EXEC,
2201 .help = "dump captured trace data to file",
2202 .usage = "filename",
2205 .name = "load",
2206 .handler = handle_etm_load_command,
2207 .mode = COMMAND_EXEC,
2208 .help = "load trace data for analysis <file>",
2210 COMMAND_REGISTRATION_DONE
2213 static int etm_register_user_commands(struct command_context *cmd_ctx)
2215 struct command *etm_cmd = command_find_in_context(cmd_ctx, "etm");
2216 return register_commands(cmd_ctx, etm_cmd, etm_exec_command_handlers);