Minor ETB and ETM bugfixes and doc updates
[fw/openocd] / src / target / etb.c
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
23
24 #include "arm7_9_common.h"
25 #include "etb.h"
26
27
28 static char* etb_reg_list[] =
29 {
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",
39 };
40
41 static int etb_reg_arch_type = -1;
42
43 static int etb_get_reg(reg_t *reg);
44
45 static int handle_etb_config_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
46
47 static int etb_set_instr(etb_t *etb, uint32_t new_instr)
48 {
49         jtag_tap_t *tap;
50
51         tap = etb->tap;
52         if (tap == NULL)
53                 return ERROR_FAIL;
54
55         if (buf_get_u32(tap->cur_instr, 0, tap->ir_length) != new_instr)
56         {
57                 scan_field_t field;
58
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);
63
64                 field.in_value = NULL;
65
66                 jtag_add_ir_scan(1, &field, jtag_get_end_state());
67
68                 free(field.out_value);
69         }
70
71         return ERROR_OK;
72 }
73
74 static int etb_scann(etb_t *etb, uint32_t new_scan_chain)
75 {
76         if (etb->cur_scan_chain != new_scan_chain)
77         {
78                 scan_field_t field;
79
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);
84
85                 field.in_value = NULL;
86
87                 /* select INTEST instruction */
88                 etb_set_instr(etb, 0x2);
89                 jtag_add_dr_scan(1, &field, jtag_get_end_state());
90
91                 etb->cur_scan_chain = new_scan_chain;
92
93                 free(field.out_value);
94         }
95
96         return ERROR_OK;
97 }
98
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 *);
101
102 static int etb_read_reg(reg_t *reg)
103 {
104         return etb_read_reg_w_check(reg, NULL, NULL);
105 }
106
107 static int etb_get_reg(reg_t *reg)
108 {
109         int retval;
110
111         if ((retval = etb_read_reg(reg)) != ERROR_OK)
112         {
113                 LOG_ERROR("BUG: error scheduling ETB register read");
114                 return retval;
115         }
116
117         if ((retval = jtag_execute_queue()) != ERROR_OK)
118         {
119                 LOG_ERROR("ETB register read failed");
120                 return retval;
121         }
122
123         return ERROR_OK;
124 }
125
126 reg_cache_t* etb_build_reg_cache(etb_t *etb)
127 {
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;
133
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);
137
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));
141
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;
147
148         /* set up registers */
149         for (i = 0; i < num_regs; i++)
150         {
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;
163         }
164
165         return reg_cache;
166 }
167
168 static void etb_getbuf(jtag_callback_data_t arg)
169 {
170         uint8_t *in = (uint8_t *)arg;
171
172         *((uint32_t *)in) = buf_get_u32(in, 0, 32);
173 }
174
175
176 static int etb_read_ram(etb_t *etb, uint32_t *data, int num_frames)
177 {
178         scan_field_t fields[3];
179         int i;
180
181         jtag_set_end_state(TAP_IDLE);
182         etb_scann(etb, 0x0);
183         etb_set_instr(etb, 0xc);
184
185         fields[0].tap = etb->tap;
186         fields[0].num_bits = 32;
187         fields[0].out_value = NULL;
188         fields[0].in_value = NULL;
189
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;
195
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;
201
202         jtag_add_dr_scan(3, fields, jtag_get_end_state());
203
204         for (i = 0; i < num_frames; i++)
205         {
206                 /* ensure nR/W reamins set to read */
207                 buf_set_u32(fields[2].out_value, 0, 1, 0);
208
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);
214
215                 fields[0].in_value = (uint8_t *)(data + i);
216                 jtag_add_dr_scan(3, fields, jtag_get_end_state());
217
218                 jtag_add_callback(etb_getbuf, (jtag_callback_data_t)(data + i));
219         }
220
221         jtag_execute_queue();
222
223         free(fields[1].out_value);
224         free(fields[2].out_value);
225
226         return ERROR_OK;
227 }
228
229 static int etb_read_reg_w_check(reg_t *reg,
230                 uint8_t* check_value, uint8_t* check_mask)
231 {
232         etb_reg_t *etb_reg = reg->arch_info;
233         uint8_t reg_addr = etb_reg->addr & 0x7f;
234         scan_field_t fields[3];
235
236         LOG_DEBUG("%i", (int)(etb_reg->addr));
237
238         jtag_set_end_state(TAP_IDLE);
239         etb_scann(etb_reg->etb, 0x0);
240         etb_set_instr(etb_reg->etb, 0xc);
241
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;
248
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;
256
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;
264
265         jtag_add_dr_scan(3, fields, jtag_get_end_state());
266
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
269          */
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;
274
275         jtag_add_dr_scan_check(3, fields, jtag_get_end_state());
276
277         free(fields[1].out_value);
278         free(fields[2].out_value);
279
280         return ERROR_OK;
281 }
282
283 static int etb_write_reg(reg_t *, uint32_t);
284
285 static int etb_set_reg(reg_t *reg, uint32_t value)
286 {
287         int retval;
288
289         if ((retval = etb_write_reg(reg, value)) != ERROR_OK)
290         {
291                 LOG_ERROR("BUG: error scheduling ETB register write");
292                 return retval;
293         }
294
295         buf_set_u32(reg->value, 0, reg->size, value);
296         reg->valid = 1;
297         reg->dirty = 0;
298
299         return ERROR_OK;
300 }
301
302 static int etb_set_reg_w_exec(reg_t *reg, uint8_t *buf)
303 {
304         int retval;
305
306         etb_set_reg(reg, buf_get_u32(buf, 0, reg->size));
307
308         if ((retval = jtag_execute_queue()) != ERROR_OK)
309         {
310                 LOG_ERROR("ETB: register write failed");
311                 return retval;
312         }
313         return ERROR_OK;
314 }
315
316 static int etb_write_reg(reg_t *reg, uint32_t value)
317 {
318         etb_reg_t *etb_reg = reg->arch_info;
319         uint8_t reg_addr = etb_reg->addr & 0x7f;
320         scan_field_t fields[3];
321
322         LOG_DEBUG("%i: 0x%8.8" PRIx32 "", (int)(etb_reg->addr), value);
323
324         jtag_set_end_state(TAP_IDLE);
325         etb_scann(etb_reg->etb, 0x0);
326         etb_set_instr(etb_reg->etb, 0xc);
327
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;
333
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;
339
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);
344
345         fields[2].in_value = NULL;
346
347         free(fields[0].out_value);
348         free(fields[1].out_value);
349         free(fields[2].out_value);
350
351         return ERROR_OK;
352 }
353
354 static int etb_register_commands(struct command_context_s *cmd_ctx)
355 {
356         command_t *etb_cmd;
357
358         etb_cmd = register_command(cmd_ctx, NULL, "etb", NULL, COMMAND_ANY, "Embedded Trace Buffer");
359
360         register_command(cmd_ctx, etb_cmd, "config", handle_etb_config_command, COMMAND_CONFIG, NULL);
361
362         return ERROR_OK;
363 }
364
365 static int handle_etb_config_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
366 {
367         target_t *target;
368         jtag_tap_t *tap;
369         armv4_5_common_t *armv4_5;
370         arm7_9_common_t *arm7_9;
371
372         if (argc != 2)
373         {
374                 return ERROR_COMMAND_SYNTAX_ERROR;
375         }
376
377         target = get_target(args[0]);
378
379         if (!target)
380         {
381                 LOG_ERROR("ETB: target '%s' not defined", args[0]);
382                 return ERROR_FAIL;
383         }
384
385         if (arm7_9_get_arch_pointers(target, &armv4_5, &arm7_9) != ERROR_OK)
386         {
387                 command_print(cmd_ctx, "ETB: current target isn't an ARM7/ARM9 target");
388                 return ERROR_FAIL;
389         }
390
391         tap = jtag_tap_by_string(args[1]);
392         if (tap == NULL)
393         {
394                 command_print(cmd_ctx, "ETB: TAP %s does not exist", args[1]);
395                 return ERROR_FAIL;
396         }
397
398         if (arm7_9->etm_ctx)
399         {
400                 etb_t *etb = malloc(sizeof(etb_t));
401
402                 arm7_9->etm_ctx->capture_driver_priv = etb;
403
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;
409         }
410         else
411         {
412                 LOG_ERROR("ETM: target has no ETM defined, ETB left unconfigured");
413                 return ERROR_FAIL;
414         }
415
416         return ERROR_OK;
417 }
418
419 static int etb_init(etm_context_t *etm_ctx)
420 {
421         etb_t *etb = etm_ctx->capture_driver_priv;
422
423         etb->etm_ctx = etm_ctx;
424
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();
429
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);
432
433         return ERROR_OK;
434 }
435
436 static trace_status_t etb_status(etm_context_t *etm_ctx)
437 {
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;
443
444         etb->etm_ctx = etm_ctx;
445
446         /* read control and status registers */
447         etb_read_reg(control);
448         etb_read_reg(status);
449         jtag_execute_queue();
450
451         /* See if it's (still) active */
452         retval = buf_get_u32(control->value, 0, 1) ? TRACE_RUNNING : TRACE_IDLE;
453
454         /* check Full bit to identify wraparound/overflow */
455         if (buf_get_u32(status->value, 0, 1) == 1)
456                 retval |= TRACE_OVERFLOWED;
457
458         /* check Triggered bit to identify trigger condition */
459         if (buf_get_u32(status->value, 1, 1) == 1)
460                 retval |= TRACE_TRIGGERED;
461
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);
467
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));
471
472                 if (!(etm_ctx->capture_status & TRACE_TRIGGERED))
473                         LOG_WARNING("ETB: trace complete without triggering?");
474
475                 retval |= TRACE_COMPLETED;
476         }
477
478         /* NOTE: using a trigger is optional; and at least ETB11 has a mode
479          * where it can ignore the trigger counter.
480          */
481
482         /* update recorded state */
483         etm_ctx->capture_status = retval;
484
485         return retval;
486 }
487
488 static int etb_read_trace(etm_context_t *etm_ctx)
489 {
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;
495
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();
499
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
503          */
504         if (buf_get_u32(etb->reg_cache->reg_list[ETB_STATUS].value, 0, 1))
505         {
506                 first_frame = buf_get_u32(etb->reg_cache->reg_list[ETB_RAM_WRITE_POINTER].value, 0, 32);
507         }
508         else
509         {
510                 num_frames = buf_get_u32(etb->reg_cache->reg_list[ETB_RAM_WRITE_POINTER].value, 0, 32);
511         }
512
513         etb_write_reg(&etb->reg_cache->reg_list[ETB_RAM_READ_POINTER], first_frame);
514
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);
518
519         if (etm_ctx->trace_depth > 0)
520         {
521                 free(etm_ctx->trace_data);
522         }
523
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;
530
531         etm_ctx->trace_data = malloc(sizeof(etmv1_trace_data_t) * etm_ctx->trace_depth);
532
533         for (i = 0, j = 0; i < num_frames; i++)
534         {
535                 if ((etm_ctx->portmode & ETM_PORT_WIDTH_MASK) == ETM_PORT_4BIT)
536                 {
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)
542                         {
543                                 etm_ctx->trace_data[j].flags |= ETMV1_TRACESYNC_CYCLE;
544                         }
545                         if (etm_ctx->trace_data[j].pipestat == STAT_TR)
546                         {
547                                 etm_ctx->trace_data[j].pipestat = etm_ctx->trace_data[j].packet & 0x7;
548                                 etm_ctx->trace_data[j].flags |= ETMV1_TRIGGER_CYCLE;
549                         }
550
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)
556                         {
557                                 etm_ctx->trace_data[j + 1].flags |= ETMV1_TRACESYNC_CYCLE;
558                         }
559                         if (etm_ctx->trace_data[j + 1].pipestat == STAT_TR)
560                         {
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;
563                         }
564
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)
570                         {
571                                 etm_ctx->trace_data[j + 2].flags |= ETMV1_TRACESYNC_CYCLE;
572                         }
573                         if (etm_ctx->trace_data[j + 2].pipestat == STAT_TR)
574                         {
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;
577                         }
578
579                         j += 3;
580                 }
581                 else if ((etm_ctx->portmode & ETM_PORT_WIDTH_MASK) == ETM_PORT_8BIT)
582                 {
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)
588                         {
589                                 etm_ctx->trace_data[j].flags |= ETMV1_TRACESYNC_CYCLE;
590                         }
591                         if (etm_ctx->trace_data[j].pipestat == STAT_TR)
592                         {
593                                 etm_ctx->trace_data[j].pipestat = etm_ctx->trace_data[j].packet & 0x7;
594                                 etm_ctx->trace_data[j].flags |= ETMV1_TRIGGER_CYCLE;
595                         }
596
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)
602                         {
603                                 etm_ctx->trace_data[j + 1].flags |= ETMV1_TRACESYNC_CYCLE;
604                         }
605                         if (etm_ctx->trace_data[j + 1].pipestat == STAT_TR)
606                         {
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;
609                         }
610
611                         j += 2;
612                 }
613                 else
614                 {
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)
620                         {
621                                 etm_ctx->trace_data[j].flags |= ETMV1_TRACESYNC_CYCLE;
622                         }
623                         if (etm_ctx->trace_data[j].pipestat == STAT_TR)
624                         {
625                                 etm_ctx->trace_data[j].pipestat = etm_ctx->trace_data[j].packet & 0x7;
626                                 etm_ctx->trace_data[j].flags |= ETMV1_TRIGGER_CYCLE;
627                         }
628
629                         j += 1;
630                 }
631         }
632
633         free(trace_data);
634
635         return ERROR_OK;
636 }
637
638 static int etb_start_capture(etm_context_t *etm_ctx)
639 {
640         etb_t *etb = etm_ctx->capture_driver_priv;
641         uint32_t etb_ctrl_value = 0x1;
642         uint32_t trigger_count;
643
644         if ((etm_ctx->portmode & ETM_PORT_MODE_MASK) == ETM_PORT_DEMUXED)
645         {
646                 if ((etm_ctx->portmode & ETM_PORT_WIDTH_MASK) != ETM_PORT_8BIT)
647                 {
648                         LOG_ERROR("ETB can't run in demultiplexed mode with a 4 or 16 bit port");
649                         return ERROR_ETM_PORTMODE_NOT_SUPPORTED;
650                 }
651                 etb_ctrl_value |= 0x2;
652         }
653
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;
657         }
658
659         trigger_count = (etb->ram_depth * etm_ctx->trigger_percent) / 100;
660
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();
665
666         /* we're starting a new trace, initialize capture status */
667         etm_ctx->capture_status = TRACE_RUNNING;
668
669         return ERROR_OK;
670 }
671
672 static int etb_stop_capture(etm_context_t *etm_ctx)
673 {
674         etb_t *etb = etm_ctx->capture_driver_priv;
675         reg_t *etb_ctrl_reg = &etb->reg_cache->reg_list[ETB_CTRL];
676
677         etb_write_reg(etb_ctrl_reg, 0x0);
678         jtag_execute_queue();
679
680         /* trace stopped, just clear running flag, but preserve others */
681         etm_ctx->capture_status &= ~TRACE_RUNNING;
682
683         return ERROR_OK;
684 }
685
686 etm_capture_driver_t etb_capture_driver =
687 {
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,
695 };