xscale: better fix for debug_handler.bin
[openocd.git] / src / target / etb.c
blob5b81895dfe8c920c0f4bf1e69cd00d11e8f5ea82
1 /***************************************************************************
2 * Copyright (C) 2007 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 "arm7_9_common.h"
25 #include "etb.h"
28 static char* etb_reg_list[] =
30 "ETB_identification",
31 "ETB_ram_depth",
32 "ETB_ram_width",
33 "ETB_status",
34 "ETB_ram_data",
35 "ETB_ram_read_pointer",
36 "ETB_ram_write_pointer",
37 "ETB_trigger_counter",
38 "ETB_control",
41 static int etb_reg_arch_type = -1;
43 static int etb_get_reg(reg_t *reg);
45 static int handle_etb_config_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
47 static int etb_set_instr(etb_t *etb, uint32_t new_instr)
49 jtag_tap_t *tap;
51 tap = etb->tap;
52 if (tap == NULL)
53 return ERROR_FAIL;
55 if (buf_get_u32(tap->cur_instr, 0, tap->ir_length) != new_instr)
57 scan_field_t field;
59 field.tap = tap;
60 field.num_bits = tap->ir_length;
61 field.out_value = calloc(CEIL(field.num_bits, 8), 1);
62 buf_set_u32(field.out_value, 0, field.num_bits, new_instr);
64 field.in_value = NULL;
66 jtag_add_ir_scan(1, &field, jtag_get_end_state());
68 free(field.out_value);
71 return ERROR_OK;
74 static int etb_scann(etb_t *etb, uint32_t new_scan_chain)
76 if (etb->cur_scan_chain != new_scan_chain)
78 scan_field_t field;
80 field.tap = etb->tap;
81 field.num_bits = 5;
82 field.out_value = calloc(CEIL(field.num_bits, 8), 1);
83 buf_set_u32(field.out_value, 0, field.num_bits, new_scan_chain);
85 field.in_value = NULL;
87 /* select INTEST instruction */
88 etb_set_instr(etb, 0x2);
89 jtag_add_dr_scan(1, &field, jtag_get_end_state());
91 etb->cur_scan_chain = new_scan_chain;
93 free(field.out_value);
96 return ERROR_OK;
99 static int etb_read_reg_w_check(reg_t *, uint8_t *, uint8_t *);
100 static int etb_set_reg_w_exec(reg_t *, uint8_t *);
102 static int etb_read_reg(reg_t *reg)
104 return etb_read_reg_w_check(reg, NULL, NULL);
107 static int etb_get_reg(reg_t *reg)
109 int retval;
111 if ((retval = etb_read_reg(reg)) != ERROR_OK)
113 LOG_ERROR("BUG: error scheduling ETB register read");
114 return retval;
117 if ((retval = jtag_execute_queue()) != ERROR_OK)
119 LOG_ERROR("ETB register read failed");
120 return retval;
123 return ERROR_OK;
126 reg_cache_t* etb_build_reg_cache(etb_t *etb)
128 reg_cache_t *reg_cache = malloc(sizeof(reg_cache_t));
129 reg_t *reg_list = NULL;
130 etb_reg_t *arch_info = NULL;
131 int num_regs = 9;
132 int i;
134 /* register a register arch-type for etm registers only once */
135 if (etb_reg_arch_type == -1)
136 etb_reg_arch_type = register_reg_arch_type(etb_get_reg, etb_set_reg_w_exec);
138 /* the actual registers are kept in two arrays */
139 reg_list = calloc(num_regs, sizeof(reg_t));
140 arch_info = calloc(num_regs, sizeof(etb_reg_t));
142 /* fill in values for the reg cache */
143 reg_cache->name = "etb registers";
144 reg_cache->next = NULL;
145 reg_cache->reg_list = reg_list;
146 reg_cache->num_regs = num_regs;
148 /* set up registers */
149 for (i = 0; i < num_regs; i++)
151 reg_list[i].name = etb_reg_list[i];
152 reg_list[i].size = 32;
153 reg_list[i].dirty = 0;
154 reg_list[i].valid = 0;
155 reg_list[i].bitfield_desc = NULL;
156 reg_list[i].num_bitfields = 0;
157 reg_list[i].value = calloc(1, 4);
158 reg_list[i].arch_info = &arch_info[i];
159 reg_list[i].arch_type = etb_reg_arch_type;
160 reg_list[i].size = 32;
161 arch_info[i].addr = i;
162 arch_info[i].etb = etb;
165 return reg_cache;
168 static void etb_getbuf(jtag_callback_data_t arg)
170 uint8_t *in = (uint8_t *)arg;
172 *((uint32_t *)in) = buf_get_u32(in, 0, 32);
176 static int etb_read_ram(etb_t *etb, uint32_t *data, int num_frames)
178 scan_field_t fields[3];
179 int i;
181 jtag_set_end_state(TAP_IDLE);
182 etb_scann(etb, 0x0);
183 etb_set_instr(etb, 0xc);
185 fields[0].tap = etb->tap;
186 fields[0].num_bits = 32;
187 fields[0].out_value = NULL;
188 fields[0].in_value = NULL;
190 fields[1].tap = etb->tap;
191 fields[1].num_bits = 7;
192 fields[1].out_value = malloc(1);
193 buf_set_u32(fields[1].out_value, 0, 7, 4);
194 fields[1].in_value = NULL;
196 fields[2].tap = etb->tap;
197 fields[2].num_bits = 1;
198 fields[2].out_value = malloc(1);
199 buf_set_u32(fields[2].out_value, 0, 1, 0);
200 fields[2].in_value = NULL;
202 jtag_add_dr_scan(3, fields, jtag_get_end_state());
204 for (i = 0; i < num_frames; i++)
206 /* ensure nR/W reamins set to read */
207 buf_set_u32(fields[2].out_value, 0, 1, 0);
209 /* address remains set to 0x4 (RAM data) until we read the last frame */
210 if (i < num_frames - 1)
211 buf_set_u32(fields[1].out_value, 0, 7, 4);
212 else
213 buf_set_u32(fields[1].out_value, 0, 7, 0);
215 fields[0].in_value = (uint8_t *)(data + i);
216 jtag_add_dr_scan(3, fields, jtag_get_end_state());
218 jtag_add_callback(etb_getbuf, (jtag_callback_data_t)(data + i));
221 jtag_execute_queue();
223 free(fields[1].out_value);
224 free(fields[2].out_value);
226 return ERROR_OK;
229 static int etb_read_reg_w_check(reg_t *reg,
230 uint8_t* check_value, uint8_t* check_mask)
232 etb_reg_t *etb_reg = reg->arch_info;
233 uint8_t reg_addr = etb_reg->addr & 0x7f;
234 scan_field_t fields[3];
236 LOG_DEBUG("%i", (int)(etb_reg->addr));
238 jtag_set_end_state(TAP_IDLE);
239 etb_scann(etb_reg->etb, 0x0);
240 etb_set_instr(etb_reg->etb, 0xc);
242 fields[0].tap = etb_reg->etb->tap;
243 fields[0].num_bits = 32;
244 fields[0].out_value = reg->value;
245 fields[0].in_value = NULL;
246 fields[0].check_value = NULL;
247 fields[0].check_mask = NULL;
249 fields[1].tap = etb_reg->etb->tap;
250 fields[1].num_bits = 7;
251 fields[1].out_value = malloc(1);
252 buf_set_u32(fields[1].out_value, 0, 7, reg_addr);
253 fields[1].in_value = NULL;
254 fields[1].check_value = NULL;
255 fields[1].check_mask = NULL;
257 fields[2].tap = etb_reg->etb->tap;
258 fields[2].num_bits = 1;
259 fields[2].out_value = malloc(1);
260 buf_set_u32(fields[2].out_value, 0, 1, 0);
261 fields[2].in_value = NULL;
262 fields[2].check_value = NULL;
263 fields[2].check_mask = NULL;
265 jtag_add_dr_scan(3, fields, jtag_get_end_state());
267 /* read the identification register in the second run, to make sure we
268 * don't read the ETB data register twice, skipping every second entry
270 buf_set_u32(fields[1].out_value, 0, 7, 0x0);
271 fields[0].in_value = reg->value;
272 fields[0].check_value = check_value;
273 fields[0].check_mask = check_mask;
275 jtag_add_dr_scan_check(3, fields, jtag_get_end_state());
277 free(fields[1].out_value);
278 free(fields[2].out_value);
280 return ERROR_OK;
283 static int etb_write_reg(reg_t *, uint32_t);
285 static int etb_set_reg(reg_t *reg, uint32_t value)
287 int retval;
289 if ((retval = etb_write_reg(reg, value)) != ERROR_OK)
291 LOG_ERROR("BUG: error scheduling ETB register write");
292 return retval;
295 buf_set_u32(reg->value, 0, reg->size, value);
296 reg->valid = 1;
297 reg->dirty = 0;
299 return ERROR_OK;
302 static int etb_set_reg_w_exec(reg_t *reg, uint8_t *buf)
304 int retval;
306 etb_set_reg(reg, buf_get_u32(buf, 0, reg->size));
308 if ((retval = jtag_execute_queue()) != ERROR_OK)
310 LOG_ERROR("ETB: register write failed");
311 return retval;
313 return ERROR_OK;
316 static int etb_write_reg(reg_t *reg, uint32_t value)
318 etb_reg_t *etb_reg = reg->arch_info;
319 uint8_t reg_addr = etb_reg->addr & 0x7f;
320 scan_field_t fields[3];
322 LOG_DEBUG("%i: 0x%8.8" PRIx32 "", (int)(etb_reg->addr), value);
324 jtag_set_end_state(TAP_IDLE);
325 etb_scann(etb_reg->etb, 0x0);
326 etb_set_instr(etb_reg->etb, 0xc);
328 fields[0].tap = etb_reg->etb->tap;
329 fields[0].num_bits = 32;
330 fields[0].out_value = malloc(4);
331 buf_set_u32(fields[0].out_value, 0, 32, value);
332 fields[0].in_value = NULL;
334 fields[1].tap = etb_reg->etb->tap;
335 fields[1].num_bits = 7;
336 fields[1].out_value = malloc(1);
337 buf_set_u32(fields[1].out_value, 0, 7, reg_addr);
338 fields[1].in_value = NULL;
340 fields[2].tap = etb_reg->etb->tap;
341 fields[2].num_bits = 1;
342 fields[2].out_value = malloc(1);
343 buf_set_u32(fields[2].out_value, 0, 1, 1);
345 fields[2].in_value = NULL;
347 free(fields[0].out_value);
348 free(fields[1].out_value);
349 free(fields[2].out_value);
351 return ERROR_OK;
354 static int etb_register_commands(struct command_context_s *cmd_ctx)
356 command_t *etb_cmd;
358 etb_cmd = register_command(cmd_ctx, NULL, "etb", NULL, COMMAND_ANY, "Embedded Trace Buffer");
360 register_command(cmd_ctx, etb_cmd, "config", handle_etb_config_command, COMMAND_CONFIG, NULL);
362 return ERROR_OK;
365 static int handle_etb_config_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
367 target_t *target;
368 jtag_tap_t *tap;
369 armv4_5_common_t *armv4_5;
370 arm7_9_common_t *arm7_9;
372 if (argc != 2)
374 return ERROR_COMMAND_SYNTAX_ERROR;
377 target = get_target(args[0]);
379 if (!target)
381 LOG_ERROR("ETB: target '%s' not defined", args[0]);
382 return ERROR_FAIL;
385 if (arm7_9_get_arch_pointers(target, &armv4_5, &arm7_9) != ERROR_OK)
387 command_print(cmd_ctx, "ETB: current target isn't an ARM7/ARM9 target");
388 return ERROR_FAIL;
391 tap = jtag_tap_by_string(args[1]);
392 if (tap == NULL)
394 command_print(cmd_ctx, "ETB: TAP %s does not exist", args[1]);
395 return ERROR_FAIL;
398 if (arm7_9->etm_ctx)
400 etb_t *etb = malloc(sizeof(etb_t));
402 arm7_9->etm_ctx->capture_driver_priv = etb;
404 etb->tap = tap;
405 etb->cur_scan_chain = 0xffffffff;
406 etb->reg_cache = NULL;
407 etb->ram_width = 0;
408 etb->ram_depth = 0;
410 else
412 LOG_ERROR("ETM: target has no ETM defined, ETB left unconfigured");
413 return ERROR_FAIL;
416 return ERROR_OK;
419 static int etb_init(etm_context_t *etm_ctx)
421 etb_t *etb = etm_ctx->capture_driver_priv;
423 etb->etm_ctx = etm_ctx;
425 /* identify ETB RAM depth and width */
426 etb_read_reg(&etb->reg_cache->reg_list[ETB_RAM_DEPTH]);
427 etb_read_reg(&etb->reg_cache->reg_list[ETB_RAM_WIDTH]);
428 jtag_execute_queue();
430 etb->ram_depth = buf_get_u32(etb->reg_cache->reg_list[ETB_RAM_DEPTH].value, 0, 32);
431 etb->ram_width = buf_get_u32(etb->reg_cache->reg_list[ETB_RAM_WIDTH].value, 0, 32);
433 return ERROR_OK;
436 static trace_status_t etb_status(etm_context_t *etm_ctx)
438 etb_t *etb = etm_ctx->capture_driver_priv;
439 reg_t *control = &etb->reg_cache->reg_list[ETB_CTRL];
440 reg_t *status = &etb->reg_cache->reg_list[ETB_STATUS];
441 trace_status_t retval = 0;
442 int etb_timeout = 100;
444 etb->etm_ctx = etm_ctx;
446 /* read control and status registers */
447 etb_read_reg(control);
448 etb_read_reg(status);
449 jtag_execute_queue();
451 /* See if it's (still) active */
452 retval = buf_get_u32(control->value, 0, 1) ? TRACE_RUNNING : TRACE_IDLE;
454 /* check Full bit to identify wraparound/overflow */
455 if (buf_get_u32(status->value, 0, 1) == 1)
456 retval |= TRACE_OVERFLOWED;
458 /* check Triggered bit to identify trigger condition */
459 if (buf_get_u32(status->value, 1, 1) == 1)
460 retval |= TRACE_TRIGGERED;
462 /* check AcqComp to see if trigger counter dropped to zero */
463 if (buf_get_u32(status->value, 2, 1) == 1) {
464 /* wait for DFEmpty */
465 while (etb_timeout-- && buf_get_u32(status->value, 3, 1) == 0)
466 etb_get_reg(status);
468 if (etb_timeout == 0)
469 LOG_ERROR("ETB: DFEmpty won't go high, status 0x%02x",
470 (unsigned) buf_get_u32(status->value, 0, 4));
472 if (!(etm_ctx->capture_status & TRACE_TRIGGERED))
473 LOG_WARNING("ETB: trace complete without triggering?");
475 retval |= TRACE_COMPLETED;
478 /* NOTE: using a trigger is optional; and at least ETB11 has a mode
479 * where it can ignore the trigger counter.
482 /* update recorded state */
483 etm_ctx->capture_status = retval;
485 return retval;
488 static int etb_read_trace(etm_context_t *etm_ctx)
490 etb_t *etb = etm_ctx->capture_driver_priv;
491 int first_frame = 0;
492 int num_frames = etb->ram_depth;
493 uint32_t *trace_data = NULL;
494 int i, j;
496 etb_read_reg(&etb->reg_cache->reg_list[ETB_STATUS]);
497 etb_read_reg(&etb->reg_cache->reg_list[ETB_RAM_WRITE_POINTER]);
498 jtag_execute_queue();
500 /* check if we overflowed, and adjust first frame of the trace accordingly
501 * if we didn't overflow, read only up to the frame that would be written next,
502 * i.e. don't read invalid entries
504 if (buf_get_u32(etb->reg_cache->reg_list[ETB_STATUS].value, 0, 1))
506 first_frame = buf_get_u32(etb->reg_cache->reg_list[ETB_RAM_WRITE_POINTER].value, 0, 32);
508 else
510 num_frames = buf_get_u32(etb->reg_cache->reg_list[ETB_RAM_WRITE_POINTER].value, 0, 32);
513 etb_write_reg(&etb->reg_cache->reg_list[ETB_RAM_READ_POINTER], first_frame);
515 /* read data into temporary array for unpacking */
516 trace_data = malloc(sizeof(uint32_t) * num_frames);
517 etb_read_ram(etb, trace_data, num_frames);
519 if (etm_ctx->trace_depth > 0)
521 free(etm_ctx->trace_data);
524 if ((etm_ctx->portmode & ETM_PORT_WIDTH_MASK) == ETM_PORT_4BIT)
525 etm_ctx->trace_depth = num_frames * 3;
526 else if ((etm_ctx->portmode & ETM_PORT_WIDTH_MASK) == ETM_PORT_8BIT)
527 etm_ctx->trace_depth = num_frames * 2;
528 else
529 etm_ctx->trace_depth = num_frames;
531 etm_ctx->trace_data = malloc(sizeof(etmv1_trace_data_t) * etm_ctx->trace_depth);
533 for (i = 0, j = 0; i < num_frames; i++)
535 if ((etm_ctx->portmode & ETM_PORT_WIDTH_MASK) == ETM_PORT_4BIT)
537 /* trace word j */
538 etm_ctx->trace_data[j].pipestat = trace_data[i] & 0x7;
539 etm_ctx->trace_data[j].packet = (trace_data[i] & 0x78) >> 3;
540 etm_ctx->trace_data[j].flags = 0;
541 if ((trace_data[i] & 0x80) >> 7)
543 etm_ctx->trace_data[j].flags |= ETMV1_TRACESYNC_CYCLE;
545 if (etm_ctx->trace_data[j].pipestat == STAT_TR)
547 etm_ctx->trace_data[j].pipestat = etm_ctx->trace_data[j].packet & 0x7;
548 etm_ctx->trace_data[j].flags |= ETMV1_TRIGGER_CYCLE;
551 /* trace word j + 1 */
552 etm_ctx->trace_data[j + 1].pipestat = (trace_data[i] & 0x100) >> 8;
553 etm_ctx->trace_data[j + 1].packet = (trace_data[i] & 0x7800) >> 11;
554 etm_ctx->trace_data[j + 1].flags = 0;
555 if ((trace_data[i] & 0x8000) >> 15)
557 etm_ctx->trace_data[j + 1].flags |= ETMV1_TRACESYNC_CYCLE;
559 if (etm_ctx->trace_data[j + 1].pipestat == STAT_TR)
561 etm_ctx->trace_data[j + 1].pipestat = etm_ctx->trace_data[j + 1].packet & 0x7;
562 etm_ctx->trace_data[j + 1].flags |= ETMV1_TRIGGER_CYCLE;
565 /* trace word j + 2 */
566 etm_ctx->trace_data[j + 2].pipestat = (trace_data[i] & 0x10000) >> 16;
567 etm_ctx->trace_data[j + 2].packet = (trace_data[i] & 0x780000) >> 19;
568 etm_ctx->trace_data[j + 2].flags = 0;
569 if ((trace_data[i] & 0x800000) >> 23)
571 etm_ctx->trace_data[j + 2].flags |= ETMV1_TRACESYNC_CYCLE;
573 if (etm_ctx->trace_data[j + 2].pipestat == STAT_TR)
575 etm_ctx->trace_data[j + 2].pipestat = etm_ctx->trace_data[j + 2].packet & 0x7;
576 etm_ctx->trace_data[j + 2].flags |= ETMV1_TRIGGER_CYCLE;
579 j += 3;
581 else if ((etm_ctx->portmode & ETM_PORT_WIDTH_MASK) == ETM_PORT_8BIT)
583 /* trace word j */
584 etm_ctx->trace_data[j].pipestat = trace_data[i] & 0x7;
585 etm_ctx->trace_data[j].packet = (trace_data[i] & 0x7f8) >> 3;
586 etm_ctx->trace_data[j].flags = 0;
587 if ((trace_data[i] & 0x800) >> 11)
589 etm_ctx->trace_data[j].flags |= ETMV1_TRACESYNC_CYCLE;
591 if (etm_ctx->trace_data[j].pipestat == STAT_TR)
593 etm_ctx->trace_data[j].pipestat = etm_ctx->trace_data[j].packet & 0x7;
594 etm_ctx->trace_data[j].flags |= ETMV1_TRIGGER_CYCLE;
597 /* trace word j + 1 */
598 etm_ctx->trace_data[j + 1].pipestat = (trace_data[i] & 0x7000) >> 12;
599 etm_ctx->trace_data[j + 1].packet = (trace_data[i] & 0x7f8000) >> 15;
600 etm_ctx->trace_data[j + 1].flags = 0;
601 if ((trace_data[i] & 0x800000) >> 23)
603 etm_ctx->trace_data[j + 1].flags |= ETMV1_TRACESYNC_CYCLE;
605 if (etm_ctx->trace_data[j + 1].pipestat == STAT_TR)
607 etm_ctx->trace_data[j + 1].pipestat = etm_ctx->trace_data[j + 1].packet & 0x7;
608 etm_ctx->trace_data[j + 1].flags |= ETMV1_TRIGGER_CYCLE;
611 j += 2;
613 else
615 /* trace word j */
616 etm_ctx->trace_data[j].pipestat = trace_data[i] & 0x7;
617 etm_ctx->trace_data[j].packet = (trace_data[i] & 0x7fff8) >> 3;
618 etm_ctx->trace_data[j].flags = 0;
619 if ((trace_data[i] & 0x80000) >> 19)
621 etm_ctx->trace_data[j].flags |= ETMV1_TRACESYNC_CYCLE;
623 if (etm_ctx->trace_data[j].pipestat == STAT_TR)
625 etm_ctx->trace_data[j].pipestat = etm_ctx->trace_data[j].packet & 0x7;
626 etm_ctx->trace_data[j].flags |= ETMV1_TRIGGER_CYCLE;
629 j += 1;
633 free(trace_data);
635 return ERROR_OK;
638 static int etb_start_capture(etm_context_t *etm_ctx)
640 etb_t *etb = etm_ctx->capture_driver_priv;
641 uint32_t etb_ctrl_value = 0x1;
642 uint32_t trigger_count;
644 if ((etm_ctx->portmode & ETM_PORT_MODE_MASK) == ETM_PORT_DEMUXED)
646 if ((etm_ctx->portmode & ETM_PORT_WIDTH_MASK) != ETM_PORT_8BIT)
648 LOG_ERROR("ETB can't run in demultiplexed mode with a 4 or 16 bit port");
649 return ERROR_ETM_PORTMODE_NOT_SUPPORTED;
651 etb_ctrl_value |= 0x2;
654 if ((etm_ctx->portmode & ETM_PORT_MODE_MASK) == ETM_PORT_MUXED) {
655 LOG_ERROR("ETB: can't run in multiplexed mode");
656 return ERROR_ETM_PORTMODE_NOT_SUPPORTED;
659 trigger_count = (etb->ram_depth * etm_ctx->trigger_percent) / 100;
661 etb_write_reg(&etb->reg_cache->reg_list[ETB_TRIGGER_COUNTER], trigger_count);
662 etb_write_reg(&etb->reg_cache->reg_list[ETB_RAM_WRITE_POINTER], 0x0);
663 etb_write_reg(&etb->reg_cache->reg_list[ETB_CTRL], etb_ctrl_value);
664 jtag_execute_queue();
666 /* we're starting a new trace, initialize capture status */
667 etm_ctx->capture_status = TRACE_RUNNING;
669 return ERROR_OK;
672 static int etb_stop_capture(etm_context_t *etm_ctx)
674 etb_t *etb = etm_ctx->capture_driver_priv;
675 reg_t *etb_ctrl_reg = &etb->reg_cache->reg_list[ETB_CTRL];
677 etb_write_reg(etb_ctrl_reg, 0x0);
678 jtag_execute_queue();
680 /* trace stopped, just clear running flag, but preserve others */
681 etm_ctx->capture_status &= ~TRACE_RUNNING;
683 return ERROR_OK;
686 etm_capture_driver_t etb_capture_driver =
688 .name = "etb",
689 .register_commands = etb_register_commands,
690 .init = etb_init,
691 .status = etb_status,
692 .start_capture = etb_start_capture,
693 .stop_capture = etb_stop_capture,
694 .read_trace = etb_read_trace,