David Brownell <david-b@pacbell.net>:
[openocd.git] / src / jtag / jtag.c
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * Copyright (C) 2007,2008 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
7 * *
8 * Copyright (C) 2009 SoftPLC Corporation *
9 * http://softplc.com *
10 * dick@softplc.com *
11 * *
12 * This program is free software; you can redistribute it and/or modify *
13 * it under the terms of the GNU General Public License as published by *
14 * the Free Software Foundation; either version 2 of the License, or *
15 * (at your option) any later version. *
16 * *
17 * This program is distributed in the hope that it will be useful, *
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
20 * GNU General Public License for more details. *
21 * *
22 * You should have received a copy of the GNU General Public License *
23 * along with this program; if not, write to the *
24 * Free Software Foundation, Inc., *
25 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
26 ***************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include "jtag.h"
32
33 #ifdef HAVE_STRINGS_H
34 #include <strings.h>
35 #endif
36
37
38 int jtag_flush_queue_count; /* count # of flushes for profiling / debugging purposes */
39
40 static void jtag_add_scan_check(void (*jtag_add_scan)(int in_num_fields, const scan_field_t *in_fields, tap_state_t state),
41 int in_num_fields, scan_field_t *in_fields, tap_state_t state);
42
43 /* note that this is not marked as static as it must be available from outside jtag.c for those
44 that implement the jtag_xxx() minidriver layer
45 */
46 int jtag_error=ERROR_OK;
47
48 typedef struct cmd_queue_page_s
49 {
50 void *address;
51 size_t used;
52 struct cmd_queue_page_s *next;
53 } cmd_queue_page_t;
54
55 #define CMD_QUEUE_PAGE_SIZE (1024 * 1024)
56 static cmd_queue_page_t *cmd_queue_pages = NULL;
57
58 char* jtag_event_strings[] =
59 {
60 "JTAG controller reset (RESET or TRST)"
61 };
62
63 const Jim_Nvp nvp_jtag_tap_event[] = {
64 { .value = JTAG_TAP_EVENT_ENABLE, .name = "tap-enable" },
65 { .value = JTAG_TAP_EVENT_DISABLE, .name = "tap-disable" },
66
67 { .name = NULL, .value = -1 }
68 };
69
70 int jtag_trst = 0;
71 int jtag_srst = 0;
72
73 #ifndef HAVE_JTAG_MINIDRIVER_H
74 struct jtag_callback_entry
75 {
76 struct jtag_callback_entry *next;
77
78 jtag_callback_t callback;
79 u8 *in;
80 jtag_callback_data_t data1;
81 jtag_callback_data_t data2;
82 jtag_callback_data_t data3;
83 };
84
85
86 static struct jtag_callback_entry *jtag_callback_queue_head = NULL;
87 static struct jtag_callback_entry *jtag_callback_queue_tail = NULL;
88 #endif
89
90
91 jtag_command_t *jtag_command_queue = NULL;
92 jtag_command_t **last_command_pointer = &jtag_command_queue;
93 static jtag_tap_t *jtag_all_taps = NULL;
94
95 enum reset_types jtag_reset_config = RESET_NONE;
96 tap_state_t cmd_queue_end_state = TAP_RESET;
97 tap_state_t cmd_queue_cur_state = TAP_RESET;
98
99 int jtag_verify_capture_ir = 1;
100 int jtag_verify = 1;
101
102 /* how long the OpenOCD should wait before attempting JTAG communication after reset lines deasserted (in ms) */
103 static int jtag_nsrst_delay = 0; /* default to no nSRST delay */
104 static int jtag_ntrst_delay = 0; /* default to no nTRST delay */
105
106 /* maximum number of JTAG devices expected in the chain
107 */
108 #define JTAG_MAX_CHAIN_SIZE 20
109
110 /* callbacks to inform high-level handlers about JTAG state changes */
111 jtag_event_callback_t *jtag_event_callbacks;
112
113 /* speed in kHz*/
114 static int speed_khz = 0;
115 /* flag if the kHz speed was defined */
116 static int hasKHz = 0;
117
118 /* jtag interfaces (parport, FTDI-USB, TI-USB, ...)
119 */
120
121 #if BUILD_ECOSBOARD == 1
122 extern jtag_interface_t zy1000_interface;
123 #endif
124
125 #if BUILD_PARPORT == 1
126 extern jtag_interface_t parport_interface;
127 #endif
128
129 #if BUILD_DUMMY == 1
130 extern jtag_interface_t dummy_interface;
131 #endif
132
133 #if BUILD_FT2232_FTD2XX == 1
134 extern jtag_interface_t ft2232_interface;
135 #endif
136
137 #if BUILD_FT2232_LIBFTDI == 1
138 extern jtag_interface_t ft2232_interface;
139 #endif
140
141 #if BUILD_AMTJTAGACCEL == 1
142 extern jtag_interface_t amt_jtagaccel_interface;
143 #endif
144
145 #if BUILD_EP93XX == 1
146 extern jtag_interface_t ep93xx_interface;
147 #endif
148
149 #if BUILD_AT91RM9200 == 1
150 extern jtag_interface_t at91rm9200_interface;
151 #endif
152
153 #if BUILD_GW16012 == 1
154 extern jtag_interface_t gw16012_interface;
155 #endif
156
157 #if BUILD_PRESTO_LIBFTDI == 1 || BUILD_PRESTO_FTD2XX == 1
158 extern jtag_interface_t presto_interface;
159 #endif
160
161 #if BUILD_USBPROG == 1
162 extern jtag_interface_t usbprog_interface;
163 #endif
164
165 #if BUILD_JLINK == 1
166 extern jtag_interface_t jlink_interface;
167 #endif
168
169 #if BUILD_VSLLINK == 1
170 extern jtag_interface_t vsllink_interface;
171 #endif
172
173 #if BUILD_RLINK == 1
174 extern jtag_interface_t rlink_interface;
175 #endif
176
177 #if BUILD_ARMJTAGEW == 1
178 extern jtag_interface_t armjtagew_interface;
179 #endif
180
181 jtag_interface_t *jtag_interfaces[] = {
182 #if BUILD_ECOSBOARD == 1
183 &zy1000_interface,
184 #endif
185 #if BUILD_PARPORT == 1
186 &parport_interface,
187 #endif
188 #if BUILD_DUMMY == 1
189 &dummy_interface,
190 #endif
191 #if BUILD_FT2232_FTD2XX == 1
192 &ft2232_interface,
193 #endif
194 #if BUILD_FT2232_LIBFTDI == 1
195 &ft2232_interface,
196 #endif
197 #if BUILD_AMTJTAGACCEL == 1
198 &amt_jtagaccel_interface,
199 #endif
200 #if BUILD_EP93XX == 1
201 &ep93xx_interface,
202 #endif
203 #if BUILD_AT91RM9200 == 1
204 &at91rm9200_interface,
205 #endif
206 #if BUILD_GW16012 == 1
207 &gw16012_interface,
208 #endif
209 #if BUILD_PRESTO_LIBFTDI == 1 || BUILD_PRESTO_FTD2XX == 1
210 &presto_interface,
211 #endif
212 #if BUILD_USBPROG == 1
213 &usbprog_interface,
214 #endif
215 #if BUILD_JLINK == 1
216 &jlink_interface,
217 #endif
218 #if BUILD_VSLLINK == 1
219 &vsllink_interface,
220 #endif
221 #if BUILD_RLINK == 1
222 &rlink_interface,
223 #endif
224 #if BUILD_ARMJTAGEW == 1
225 &armjtagew_interface,
226 #endif
227 NULL,
228 };
229
230 jtag_interface_t *jtag = NULL;
231
232 /* configuration */
233 static jtag_interface_t *jtag_interface = NULL;
234 int jtag_speed = 0;
235
236 /* forward declarations */
237 //void jtag_add_pathmove(int num_states, tap_state_t *path);
238 //void jtag_add_runtest(int num_cycles, tap_state_t endstate);
239 //void jtag_add_end_state(tap_state_t endstate);
240 //void jtag_add_sleep(u32 us);
241 //int jtag_execute_queue(void);
242 static tap_state_t tap_state_by_name(const char *name);
243
244 /* jtag commands */
245 static int handle_interface_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
246 static int handle_jtag_speed_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
247 static int handle_jtag_khz_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
248 static int handle_jtag_device_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
249 static int handle_reset_config_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
250 static int handle_jtag_nsrst_delay_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
251 static int handle_jtag_ntrst_delay_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
252
253 static int handle_scan_chain_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
254
255 static int handle_endstate_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
256 static int handle_jtag_reset_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
257 static int handle_runtest_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
258 static int handle_irscan_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
259 static int Jim_Command_drscan(Jim_Interp *interp, int argc, Jim_Obj *const *argv);
260 static int Jim_Command_flush_count(Jim_Interp *interp, int argc, Jim_Obj *const *args);
261
262 static int handle_verify_ircapture_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
263 static int handle_verify_jtag_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
264 static int handle_tms_sequence_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
265
266 jtag_tap_t *jtag_AllTaps(void)
267 {
268 return jtag_all_taps;
269 };
270
271 int jtag_NumTotalTaps(void)
272 {
273 jtag_tap_t *t;
274 int n;
275
276 n = 0;
277 t = jtag_AllTaps();
278 while(t){
279 n++;
280 t = t->next_tap;
281 }
282 return n;
283 }
284
285 int jtag_NumEnabledTaps(void)
286 {
287 jtag_tap_t *t;
288 int n;
289
290 n = 0;
291 t = jtag_AllTaps();
292 while(t){
293 if( t->enabled ){
294 n++;
295 }
296 t = t->next_tap;
297 }
298 return n;
299 }
300
301 jtag_tap_t *jtag_TapByString( const char *s )
302 {
303 jtag_tap_t *t;
304 char *cp;
305
306 t = jtag_AllTaps();
307 /* try name first */
308 while(t){
309 if( 0 == strcmp( t->dotted_name, s ) ){
310 break;
311 } else {
312 t = t->next_tap;
313 }
314 }
315 /* backup plan is by number */
316 if( t == NULL ){
317 /* ok - is "s" a number? */
318 int n;
319 n = strtol( s, &cp, 0 );
320 if( (s != cp) && (*cp == 0) ){
321 /* Then it is... */
322 t = jtag_TapByAbsPosition(n);
323 }
324 }
325 return t;
326 }
327
328 jtag_tap_t * jtag_TapByJimObj( Jim_Interp *interp, Jim_Obj *o )
329 {
330 jtag_tap_t *t;
331 const char *cp;
332
333 cp = Jim_GetString( o, NULL );
334 if(cp == NULL){
335 cp = "(unknown)";
336 t = NULL;
337 } else {
338 t = jtag_TapByString( cp );
339 }
340 if( t == NULL ){
341 Jim_SetResult_sprintf(interp,"Tap: %s is unknown", cp );
342 }
343 return t;
344 }
345
346 /* returns a pointer to the n-th device in the scan chain */
347 jtag_tap_t * jtag_TapByAbsPosition( int n )
348 {
349 int orig_n;
350 jtag_tap_t *t;
351
352 orig_n = n;
353 t = jtag_AllTaps();
354
355 while( t && (n > 0)) {
356 n--;
357 t = t->next_tap;
358 }
359 return t;
360 }
361
362 int jtag_register_event_callback(int (*callback)(enum jtag_event event, void *priv), void *priv)
363 {
364 jtag_event_callback_t **callbacks_p = &jtag_event_callbacks;
365
366 if (callback == NULL)
367 {
368 return ERROR_INVALID_ARGUMENTS;
369 }
370
371 if (*callbacks_p)
372 {
373 while ((*callbacks_p)->next)
374 callbacks_p = &((*callbacks_p)->next);
375 callbacks_p = &((*callbacks_p)->next);
376 }
377
378 (*callbacks_p) = malloc(sizeof(jtag_event_callback_t));
379 (*callbacks_p)->callback = callback;
380 (*callbacks_p)->priv = priv;
381 (*callbacks_p)->next = NULL;
382
383 return ERROR_OK;
384 }
385
386 int jtag_unregister_event_callback(int (*callback)(enum jtag_event event, void *priv))
387 {
388 jtag_event_callback_t **callbacks_p = &jtag_event_callbacks;
389
390 if (callback == NULL)
391 {
392 return ERROR_INVALID_ARGUMENTS;
393 }
394
395 while (*callbacks_p)
396 {
397 jtag_event_callback_t **next = &((*callbacks_p)->next);
398 if ((*callbacks_p)->callback == callback)
399 {
400 free(*callbacks_p);
401 *callbacks_p = *next;
402 }
403 callbacks_p = next;
404 }
405
406 return ERROR_OK;
407 }
408
409 int jtag_call_event_callbacks(enum jtag_event event)
410 {
411 jtag_event_callback_t *callback = jtag_event_callbacks;
412
413 LOG_DEBUG("jtag event: %s", jtag_event_strings[event]);
414
415 while (callback)
416 {
417 callback->callback(event, callback->priv);
418 callback = callback->next;
419 }
420
421 return ERROR_OK;
422 }
423
424 /* returns a pointer to the pointer of the last command in queue
425 * this may be a pointer to the root pointer (jtag_command_queue)
426 * or to the next member of the last but one command
427 */
428 jtag_command_t** jtag_get_last_command_p(void)
429 {
430 /* jtag_command_t *cmd = jtag_command_queue;
431
432 if (cmd)
433 while (cmd->next)
434 cmd = cmd->next;
435 else
436 return &jtag_command_queue;
437
438 return &cmd->next;*/
439
440 return last_command_pointer;
441 }
442
443
444 void jtag_queue_command(jtag_command_t * cmd)
445 {
446 jtag_command_t **last_cmd;
447
448 last_cmd = jtag_get_last_command_p();
449
450 *last_cmd = cmd;
451
452 (*last_cmd)->next = NULL;
453
454 last_command_pointer = &((*last_cmd)->next);
455 }
456
457
458 void* cmd_queue_alloc(size_t size)
459 {
460 cmd_queue_page_t **p_page = &cmd_queue_pages;
461 int offset;
462 u8 *t;
463
464 /*
465 * WARNING:
466 * We align/round the *SIZE* per below
467 * so that all pointers returned by
468 * this function are reasonably well
469 * aligned.
470 *
471 * If we did not, then an "odd-length" request would cause the
472 * *next* allocation to be at an *odd* address, and because
473 * this function has the same type of api as malloc() - we
474 * must also return pointers that have the same type of
475 * alignment.
476 *
477 * What I do not/have is a reasonable portable means
478 * to align by...
479 *
480 * The solution here, is based on these suggestions.
481 * http://gcc.gnu.org/ml/gcc-help/2008-12/msg00041.html
482 *
483 */
484 union worse_case_align {
485 int i;
486 long l;
487 float f;
488 void *v;
489 };
490 #define ALIGN_SIZE (sizeof(union worse_case_align))
491
492 /* The alignment process. */
493 size = (size + ALIGN_SIZE -1) & (~(ALIGN_SIZE-1));
494 /* Done... */
495
496 if (*p_page)
497 {
498 while ((*p_page)->next)
499 p_page = &((*p_page)->next);
500 if (CMD_QUEUE_PAGE_SIZE - (*p_page)->used < size)
501 p_page = &((*p_page)->next);
502 }
503
504 if (!*p_page)
505 {
506 *p_page = malloc(sizeof(cmd_queue_page_t));
507 (*p_page)->used = 0;
508 (*p_page)->address = malloc(CMD_QUEUE_PAGE_SIZE);
509 (*p_page)->next = NULL;
510 }
511
512 offset = (*p_page)->used;
513 (*p_page)->used += size;
514
515 t=(u8 *)((*p_page)->address);
516 return t + offset;
517 }
518
519 void cmd_queue_free(void)
520 {
521 cmd_queue_page_t *page = cmd_queue_pages;
522
523 while (page)
524 {
525 cmd_queue_page_t *last = page;
526 free(page->address);
527 page = page->next;
528 free(last);
529 }
530
531 cmd_queue_pages = NULL;
532 }
533
534 /**
535 * Copy a scan_field_t for insertion into the queue.
536 *
537 * This allocates a new copy of out_value using cmd_queue_alloc.
538 */
539 static void cmd_queue_scan_field_clone(scan_field_t * dst, const scan_field_t * src)
540 {
541 dst->tap = src->tap;
542 dst->num_bits = src->num_bits;
543 dst->out_value = buf_cpy(src->out_value, cmd_queue_alloc(CEIL(src->num_bits, 8)), src->num_bits);
544 dst->in_value = src->in_value;
545 }
546
547
548 static void jtag_prelude1(void)
549 {
550 if (jtag_trst == 1)
551 {
552 LOG_WARNING("JTAG command queued, while TRST is low (TAP in reset)");
553 jtag_error=ERROR_JTAG_TRST_ASSERTED;
554 return;
555 }
556
557 if (cmd_queue_end_state == TAP_RESET)
558 jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
559 }
560
561 static void jtag_prelude(tap_state_t state)
562 {
563 jtag_prelude1();
564
565 if (state != TAP_INVALID)
566 jtag_add_end_state(state);
567
568 cmd_queue_cur_state = cmd_queue_end_state;
569 }
570
571 void jtag_add_ir_scan_noverify(int in_num_fields, const scan_field_t *in_fields, tap_state_t state)
572 {
573 int retval;
574 jtag_prelude(state);
575
576 retval=interface_jtag_add_ir_scan(in_num_fields, in_fields, cmd_queue_end_state);
577 if (retval!=ERROR_OK)
578 jtag_error=retval;
579
580 }
581
582
583 /**
584 * Generate an IR SCAN with a list of scan fields with one entry for each enabled TAP.
585 *
586 * If the input field list contains an instruction value for a TAP then that is used
587 * otherwise the TAP is set to bypass.
588 *
589 * TAPs for which no fields are passed are marked as bypassed for subsequent DR SCANs.
590 *
591 */
592 void jtag_add_ir_scan(int in_num_fields, scan_field_t *in_fields, tap_state_t state)
593 {
594 if (jtag_verify&&jtag_verify_capture_ir)
595 {
596 /* 8 x 32 bit id's is enough for all invoations */
597
598 for (int j = 0; j < in_num_fields; j++)
599 {
600 in_fields[j].check_value=NULL;
601 in_fields[j].check_mask=NULL;
602 /* if we are to run a verification of the ir scan, we need to get the input back.
603 * We may have to allocate space if the caller didn't ask for the input back.
604 */
605 in_fields[j].check_value=in_fields[j].tap->expected;
606 in_fields[j].check_mask=in_fields[j].tap->expected_mask;
607 }
608 jtag_add_scan_check(jtag_add_ir_scan_noverify, in_num_fields, in_fields, state);
609 } else
610 {
611 jtag_add_ir_scan_noverify(in_num_fields, in_fields, state);
612 }
613 }
614
615 /**
616 * see jtag_add_ir_scan()
617 *
618 */
619 int MINIDRIVER(interface_jtag_add_ir_scan)(int in_num_fields, const scan_field_t *in_fields, tap_state_t state)
620 {
621 size_t num_taps = jtag_NumEnabledTaps();
622
623 jtag_command_t * cmd = cmd_queue_alloc(sizeof(jtag_command_t));
624 scan_command_t * scan = cmd_queue_alloc(sizeof(scan_command_t));
625 scan_field_t * out_fields = cmd_queue_alloc(num_taps * sizeof(scan_field_t));
626
627 jtag_queue_command(cmd);
628
629 cmd->type = JTAG_SCAN;
630 cmd->cmd.scan = scan;
631
632 scan->ir_scan = true;
633 scan->num_fields = num_taps; /* one field per device */
634 scan->fields = out_fields;
635 scan->end_state = state;
636
637
638 scan_field_t * field = out_fields; /* keep track where we insert data */
639
640 /* loop over all enabled TAPs */
641
642 for (jtag_tap_t * tap = jtag_NextEnabledTap(NULL); tap != NULL; tap = jtag_NextEnabledTap(tap))
643 {
644 /* search the input field list for fields for the current TAP */
645
646 bool found = false;
647
648 for (int j = 0; j < in_num_fields; j++)
649 {
650 if (tap != in_fields[j].tap)
651 continue;
652
653 /* if TAP is listed in input fields, copy the value */
654
655 found = true;
656
657 tap->bypass = 0;
658
659 assert(in_fields[j].num_bits == tap->ir_length); /* input fields must have the same length as the TAP's IR */
660
661 cmd_queue_scan_field_clone(field, in_fields + j);
662
663 break;
664 }
665
666 if (!found)
667 {
668 /* if a TAP isn't listed in input fields, set it to BYPASS */
669
670 tap->bypass = 1;
671
672 field->tap = tap;
673 field->num_bits = tap->ir_length;
674 field->out_value = buf_set_ones(cmd_queue_alloc(CEIL(tap->ir_length, 8)), tap->ir_length);
675 field->in_value = NULL; /* do not collect input for tap's in bypass */
676 }
677
678 /* update device information */
679 buf_cpy(field->out_value, tap->cur_instr, tap->ir_length);
680
681 field++;
682 }
683
684 assert(field == out_fields + num_taps); /* paranoia: jtag_NumEnabledTaps() and jtag_NextEnabledTap() not in sync */
685
686 return ERROR_OK;
687 }
688
689 /**
690 * Duplicate the scan fields passed into the function into an IR SCAN command
691 *
692 * This function assumes that the caller handles extra fields for bypassed TAPs
693 *
694 */
695 void jtag_add_plain_ir_scan(int in_num_fields, const scan_field_t *in_fields, tap_state_t state)
696 {
697 int retval;
698
699 jtag_prelude(state);
700
701 retval=interface_jtag_add_plain_ir_scan(in_num_fields, in_fields, cmd_queue_end_state);
702 if (retval!=ERROR_OK)
703 jtag_error=retval;
704 }
705
706
707 /**
708 * see jtag_add_plain_ir_scan()
709 *
710 */
711 int MINIDRIVER(interface_jtag_add_plain_ir_scan)(int in_num_fields, const scan_field_t *in_fields, tap_state_t state)
712 {
713
714 jtag_command_t * cmd = cmd_queue_alloc(sizeof(jtag_command_t));
715 scan_command_t * scan = cmd_queue_alloc(sizeof(scan_command_t));
716 scan_field_t * out_fields = cmd_queue_alloc(in_num_fields * sizeof(scan_field_t));
717
718 jtag_queue_command(cmd);
719
720 cmd->type = JTAG_SCAN;
721 cmd->cmd.scan = scan;
722
723 scan->ir_scan = true;
724 scan->num_fields = in_num_fields;
725 scan->fields = out_fields;
726 scan->end_state = state;
727
728 for (int i = 0; i < in_num_fields; i++)
729 cmd_queue_scan_field_clone(out_fields + i, in_fields + i);
730
731 return ERROR_OK;
732 }
733
734
735
736 int jtag_check_value_inner(u8 *captured, u8 *in_check_value, u8 *in_check_mask, int num_bits);
737
738 static int jtag_check_value_mask_callback(u8 *in, jtag_callback_data_t data1, jtag_callback_data_t data2, jtag_callback_data_t data3)
739 {
740 return jtag_check_value_inner(in, (u8 *)data1, (u8 *)data2, (int)data3);
741 }
742
743 static void jtag_add_scan_check(void (*jtag_add_scan)(int in_num_fields, const scan_field_t *in_fields, tap_state_t state),
744 int in_num_fields, scan_field_t *in_fields, tap_state_t state)
745 {
746 for (int i = 0; i < in_num_fields; i++)
747 {
748 in_fields[i].allocated = 0;
749 in_fields[i].modified = 0;
750 if ((in_fields[i].check_value != NULL) && (in_fields[i].in_value == NULL))
751 {
752 in_fields[i].modified = 1;
753 /* we need storage space... */
754 #ifdef HAVE_JTAG_MINIDRIVER_H
755 if (in_fields[i].num_bits <= 32)
756 {
757 /* This is enough space and we're executing this synchronously */
758 in_fields[i].in_value = in_fields[i].intmp;
759 } else
760 {
761 in_fields[i].in_value = (u8 *)malloc(CEIL(in_fields[i].num_bits, 8));
762 in_fields[i].allocated = 1;
763 }
764 #else
765 in_fields[i].in_value = (u8 *)cmd_queue_alloc(CEIL(in_fields[i].num_bits, 8));
766 #endif
767 }
768 }
769
770 jtag_add_scan(in_num_fields, in_fields, state);
771
772 for (int i = 0; i < in_num_fields; i++)
773 {
774 if ((in_fields[i].check_value != NULL) && (in_fields[i].in_value != NULL))
775 {
776 /* this is synchronous for a minidriver */
777 jtag_add_callback4(jtag_check_value_mask_callback, in_fields[i].in_value,
778 (jtag_callback_data_t)in_fields[i].check_value,
779 (jtag_callback_data_t)in_fields[i].check_mask,
780 (jtag_callback_data_t)in_fields[i].num_bits);
781 }
782 if (in_fields[i].allocated)
783 {
784 free(in_fields[i].in_value);
785 }
786 if (in_fields[i].modified)
787 {
788 in_fields[i].in_value = NULL;
789 }
790 }
791 }
792
793 void jtag_add_dr_scan_check(int in_num_fields, scan_field_t *in_fields, tap_state_t state)
794 {
795 if (jtag_verify)
796 {
797 jtag_add_scan_check(jtag_add_dr_scan, in_num_fields, in_fields, state);
798 } else
799 {
800 jtag_add_dr_scan(in_num_fields, in_fields, state);
801 }
802 }
803
804
805 /**
806 * Generate a DR SCAN using the fields passed to the function
807 *
808 * For not bypassed TAPs the function checks in_fields and uses fields specified there.
809 * For bypassed TAPs the function generates a dummy 1bit field.
810 *
811 * The bypass status of TAPs is set by jtag_add_ir_scan().
812 *
813 */
814 void jtag_add_dr_scan(int in_num_fields, const scan_field_t *in_fields, tap_state_t state)
815 {
816 int retval;
817
818 jtag_prelude(state);
819
820 retval=interface_jtag_add_dr_scan(in_num_fields, in_fields, cmd_queue_end_state);
821 if (retval!=ERROR_OK)
822 jtag_error=retval;
823 }
824
825
826 /**
827 * see jtag_add_dr_scan()
828 *
829 */
830 int MINIDRIVER(interface_jtag_add_dr_scan)(int in_num_fields, const scan_field_t *in_fields, tap_state_t state)
831 {
832 /* count devices in bypass */
833
834 size_t bypass_devices = 0;
835
836 for (jtag_tap_t * tap = jtag_NextEnabledTap(NULL); tap != NULL; tap = jtag_NextEnabledTap(tap))
837 {
838 if (tap->bypass)
839 bypass_devices++;
840 }
841
842 jtag_command_t * cmd = cmd_queue_alloc(sizeof(jtag_command_t));
843 scan_command_t * scan = cmd_queue_alloc(sizeof(scan_command_t));
844 scan_field_t * out_fields = cmd_queue_alloc((in_num_fields + bypass_devices) * sizeof(scan_field_t));
845
846 jtag_queue_command(cmd);
847
848 cmd->type = JTAG_SCAN;
849 cmd->cmd.scan = scan;
850
851 scan->ir_scan = false;
852 scan->num_fields = in_num_fields + bypass_devices;
853 scan->fields = out_fields;
854 scan->end_state = state;
855
856
857 scan_field_t * field = out_fields; /* keep track where we insert data */
858
859 /* loop over all enabled TAPs */
860
861 for (jtag_tap_t * tap = jtag_NextEnabledTap(NULL); tap != NULL; tap = jtag_NextEnabledTap(tap))
862 {
863 /* if TAP is not bypassed insert matching input fields */
864
865 if (!tap->bypass)
866 {
867 scan_field_t * start_field = field; /* keep initial position for assert() */
868
869 for (int j = 0; j < in_num_fields; j++)
870 {
871 if (tap != in_fields[j].tap)
872 continue;
873
874 cmd_queue_scan_field_clone(field, in_fields + j);
875
876 field++;
877 }
878
879 assert(field > start_field); /* must have at least one input field per not bypassed TAP */
880 }
881
882 /* if a TAP is bypassed, generated a dummy bit*/
883 else
884 {
885 field->tap = tap;
886 field->num_bits = 1;
887 field->out_value = NULL;
888 field->in_value = NULL;
889
890 field++;
891 }
892 }
893
894 assert(field == out_fields + scan->num_fields); /* no superfluous input fields permitted */
895
896 return ERROR_OK;
897 }
898
899
900
901 /**
902 * Generate a DR SCAN using the array of output values passed to the function
903 *
904 * This function assumes that the parameter target_tap specifies the one TAP
905 * that is not bypassed. All other TAPs must be bypassed and the function will
906 * generate a dummy 1bit field for them.
907 *
908 * For the target_tap a sequence of output-only fields will be generated where
909 * each field has the size num_bits and the field's values are taken from
910 * the array value.
911 *
912 * The bypass status of TAPs is set by jtag_add_ir_scan().
913 *
914 */
915 void MINIDRIVER(interface_jtag_add_dr_out)(jtag_tap_t *target_tap,
916 int in_num_fields,
917 const int *num_bits,
918 const u32 *value,
919 tap_state_t end_state)
920 {
921 /* count devices in bypass */
922
923 size_t bypass_devices = 0;
924
925 for (jtag_tap_t * tap = jtag_NextEnabledTap(NULL); tap != NULL; tap = jtag_NextEnabledTap(tap))
926 {
927 if (tap->bypass)
928 bypass_devices++;
929 }
930
931
932 jtag_command_t * cmd = cmd_queue_alloc(sizeof(jtag_command_t));
933 scan_command_t * scan = cmd_queue_alloc(sizeof(scan_command_t));
934 scan_field_t * out_fields = cmd_queue_alloc((in_num_fields + bypass_devices) * sizeof(scan_field_t));
935
936 jtag_queue_command(cmd);
937
938 cmd->type = JTAG_SCAN;
939 cmd->cmd.scan = scan;
940
941 scan->ir_scan = false;
942 scan->num_fields = in_num_fields + bypass_devices;
943 scan->fields = out_fields;
944 scan->end_state = end_state;
945
946
947 bool target_tap_match = false;
948
949 scan_field_t * field = out_fields; /* keep track where we insert data */
950
951 /* loop over all enabled TAPs */
952
953 for (jtag_tap_t * tap = jtag_NextEnabledTap(NULL); tap != NULL; tap = jtag_NextEnabledTap(tap))
954 {
955 /* if TAP is not bypassed insert matching input fields */
956
957 if (!tap->bypass)
958 {
959 assert(tap == target_tap); /* target_tap must match the one not bypassed TAP */
960
961 target_tap_match = true;
962
963 for (int j = 0; j < in_num_fields; j++)
964 {
965 u8 out_value[4];
966 size_t scan_size = num_bits[j];
967 buf_set_u32(out_value, 0, scan_size, value[j]);
968
969 field->tap = tap;
970 field->num_bits = scan_size;
971 field->out_value = buf_cpy(out_value, cmd_queue_alloc(CEIL(scan_size, 8)), scan_size);
972 field->in_value = NULL;
973
974 field++;
975 }
976 }
977
978 /* if a TAP is bypassed, generated a dummy bit*/
979 else
980 {
981
982 field->tap = tap;
983 field->num_bits = 1;
984 field->out_value = NULL;
985 field->in_value = NULL;
986
987 field++;
988 }
989 }
990
991 assert(target_tap_match); /* target_tap should be enabled and not bypassed */
992 }
993
994
995 /**
996 * Duplicate the scan fields passed into the function into a DR SCAN command
997 *
998 * This function assumes that the caller handles extra fields for bypassed TAPs
999 *
1000 */
1001 void jtag_add_plain_dr_scan(int in_num_fields, const scan_field_t *in_fields, tap_state_t state)
1002 {
1003 int retval;
1004
1005 jtag_prelude(state);
1006
1007 retval=interface_jtag_add_plain_dr_scan(in_num_fields, in_fields, cmd_queue_end_state);
1008 if (retval!=ERROR_OK)
1009 jtag_error=retval;
1010 }
1011
1012
1013 /**
1014 * see jtag_add_plain_dr_scan()
1015 *
1016 */
1017 int MINIDRIVER(interface_jtag_add_plain_dr_scan)(int in_num_fields, const scan_field_t *in_fields, tap_state_t state)
1018 {
1019 jtag_command_t * cmd = cmd_queue_alloc(sizeof(jtag_command_t));
1020 scan_command_t * scan = cmd_queue_alloc(sizeof(scan_command_t));
1021 scan_field_t * out_fields = cmd_queue_alloc(in_num_fields * sizeof(scan_field_t));
1022
1023 jtag_queue_command(cmd);
1024
1025 cmd->type = JTAG_SCAN;
1026 cmd->cmd.scan = scan;
1027
1028 scan->ir_scan = false;
1029 scan->num_fields = in_num_fields;
1030 scan->fields = out_fields;
1031 scan->end_state = state;
1032
1033 for (int i = 0; i < in_num_fields; i++)
1034 cmd_queue_scan_field_clone(out_fields + i, in_fields + i);
1035
1036 return ERROR_OK;
1037 }
1038
1039
1040 void jtag_add_tlr(void)
1041 {
1042 jtag_prelude(TAP_RESET);
1043
1044 int retval;
1045 retval=interface_jtag_add_tlr();
1046 if (retval!=ERROR_OK)
1047 jtag_error=retval;
1048 }
1049
1050 int MINIDRIVER(interface_jtag_add_tlr)(void)
1051 {
1052 tap_state_t state = TAP_RESET;
1053
1054 /* allocate memory for a new list member */
1055 jtag_command_t * cmd = cmd_queue_alloc(sizeof(jtag_command_t));
1056
1057 jtag_queue_command(cmd);
1058
1059 cmd->type = JTAG_STATEMOVE;
1060
1061 cmd->cmd.statemove = cmd_queue_alloc(sizeof(statemove_command_t));
1062 cmd->cmd.statemove->end_state = state;
1063
1064 return ERROR_OK;
1065 }
1066
1067 void jtag_add_pathmove(int num_states, const tap_state_t *path)
1068 {
1069 tap_state_t cur_state = cmd_queue_cur_state;
1070 int i;
1071 int retval;
1072
1073 /* the last state has to be a stable state */
1074 if (!tap_is_state_stable(path[num_states - 1]))
1075 {
1076 LOG_ERROR("BUG: TAP path doesn't finish in a stable state");
1077 exit(-1);
1078 }
1079
1080 for (i=0; i<num_states; i++)
1081 {
1082 if (path[i] == TAP_RESET)
1083 {
1084 LOG_ERROR("BUG: TAP_RESET is not a valid state for pathmove sequences");
1085 exit(-1);
1086 }
1087
1088 if ( tap_state_transition(cur_state, true) != path[i]
1089 && tap_state_transition(cur_state, false) != path[i])
1090 {
1091 LOG_ERROR("BUG: %s -> %s isn't a valid TAP transition", tap_state_name(cur_state), tap_state_name(path[i]));
1092 exit(-1);
1093 }
1094 cur_state = path[i];
1095 }
1096
1097 jtag_prelude1();
1098
1099 retval = interface_jtag_add_pathmove(num_states, path);
1100 cmd_queue_cur_state = path[num_states - 1];
1101 if (retval!=ERROR_OK)
1102 jtag_error=retval;
1103 }
1104
1105 int MINIDRIVER(interface_jtag_add_pathmove)(int num_states, const tap_state_t *path)
1106 {
1107 /* allocate memory for a new list member */
1108 jtag_command_t * cmd = cmd_queue_alloc(sizeof(jtag_command_t));
1109
1110 jtag_queue_command(cmd);
1111
1112 cmd->type = JTAG_PATHMOVE;
1113
1114 cmd->cmd.pathmove = cmd_queue_alloc(sizeof(pathmove_command_t));
1115 cmd->cmd.pathmove->num_states = num_states;
1116 cmd->cmd.pathmove->path = cmd_queue_alloc(sizeof(tap_state_t) * num_states);
1117
1118 for (int i = 0; i < num_states; i++)
1119 cmd->cmd.pathmove->path[i] = path[i];
1120
1121 return ERROR_OK;
1122 }
1123
1124 int MINIDRIVER(interface_jtag_add_runtest)(int num_cycles, tap_state_t state)
1125 {
1126 /* allocate memory for a new list member */
1127 jtag_command_t * cmd = cmd_queue_alloc(sizeof(jtag_command_t));
1128
1129 jtag_queue_command(cmd);
1130
1131 cmd->type = JTAG_RUNTEST;
1132
1133 cmd->cmd.runtest = cmd_queue_alloc(sizeof(runtest_command_t));
1134 cmd->cmd.runtest->num_cycles = num_cycles;
1135 cmd->cmd.runtest->end_state = state;
1136
1137 return ERROR_OK;
1138 }
1139
1140 void jtag_add_runtest(int num_cycles, tap_state_t state)
1141 {
1142 int retval;
1143
1144 jtag_prelude(state);
1145
1146 /* executed by sw or hw fifo */
1147 retval=interface_jtag_add_runtest(num_cycles, cmd_queue_end_state);
1148 if (retval!=ERROR_OK)
1149 jtag_error=retval;
1150 }
1151
1152
1153 int MINIDRIVER(interface_jtag_add_clocks)( int num_cycles )
1154 {
1155 /* allocate memory for a new list member */
1156 jtag_command_t * cmd = cmd_queue_alloc(sizeof(jtag_command_t));
1157
1158 jtag_queue_command(cmd);
1159
1160 cmd->type = JTAG_STABLECLOCKS;
1161
1162 cmd->cmd.stableclocks = cmd_queue_alloc(sizeof(stableclocks_command_t));
1163 cmd->cmd.stableclocks->num_cycles = num_cycles;
1164
1165 return ERROR_OK;
1166 }
1167
1168 void jtag_add_clocks( int num_cycles )
1169 {
1170 int retval;
1171
1172 if( !tap_is_state_stable(cmd_queue_cur_state) )
1173 {
1174 LOG_ERROR( "jtag_add_clocks() was called with TAP in non-stable state \"%s\"",
1175 tap_state_name(cmd_queue_cur_state) );
1176 jtag_error = ERROR_JTAG_NOT_STABLE_STATE;
1177 return;
1178 }
1179
1180 if( num_cycles > 0 )
1181 {
1182 jtag_prelude1();
1183
1184 retval = interface_jtag_add_clocks(num_cycles);
1185 if (retval != ERROR_OK)
1186 jtag_error=retval;
1187 }
1188 }
1189
1190 void jtag_add_reset(int req_tlr_or_trst, int req_srst)
1191 {
1192 int trst_with_tlr = 0;
1193 int retval;
1194
1195 /* FIX!!! there are *many* different cases here. A better
1196 * approach is needed for legal combinations of transitions...
1197 */
1198 if ((jtag_reset_config & RESET_HAS_SRST)&&
1199 (jtag_reset_config & RESET_HAS_TRST)&&
1200 ((jtag_reset_config & RESET_SRST_PULLS_TRST)==0))
1201 {
1202 if (((req_tlr_or_trst&&!jtag_trst)||
1203 (!req_tlr_or_trst&&jtag_trst))&&
1204 ((req_srst&&!jtag_srst)||
1205 (!req_srst&&jtag_srst)))
1206 {
1207 /* FIX!!! srst_pulls_trst allows 1,1 => 0,0 transition.... */
1208 //LOG_ERROR("BUG: transition of req_tlr_or_trst and req_srst in the same jtag_add_reset() call is undefined");
1209 }
1210 }
1211
1212 /* Make sure that jtag_reset_config allows the requested reset */
1213 /* if SRST pulls TRST, we can't fulfill srst == 1 with trst == 0 */
1214 if (((jtag_reset_config & RESET_SRST_PULLS_TRST) && (req_srst == 1)) && (!req_tlr_or_trst))
1215 {
1216 LOG_ERROR("BUG: requested reset would assert trst");
1217 jtag_error=ERROR_FAIL;
1218 return;
1219 }
1220
1221 /* if TRST pulls SRST, we reset with TAP T-L-R */
1222 if (((jtag_reset_config & RESET_TRST_PULLS_SRST) && (req_tlr_or_trst)) && (req_srst == 0))
1223 {
1224 trst_with_tlr = 1;
1225 }
1226
1227 if (req_srst && !(jtag_reset_config & RESET_HAS_SRST))
1228 {
1229 LOG_ERROR("BUG: requested SRST assertion, but the current configuration doesn't support this");
1230 jtag_error=ERROR_FAIL;
1231 return;
1232 }
1233
1234 if (req_tlr_or_trst)
1235 {
1236 if (!trst_with_tlr && (jtag_reset_config & RESET_HAS_TRST))
1237 {
1238 jtag_trst = 1;
1239 } else
1240 {
1241 trst_with_tlr = 1;
1242 }
1243 } else
1244 {
1245 jtag_trst = 0;
1246 }
1247
1248 jtag_srst = req_srst;
1249
1250 retval = interface_jtag_add_reset(jtag_trst, jtag_srst);
1251 if (retval!=ERROR_OK)
1252 {
1253 jtag_error=retval;
1254 return;
1255 }
1256 jtag_execute_queue();
1257
1258 if (jtag_srst)
1259 {
1260 LOG_DEBUG("SRST line asserted");
1261 }
1262 else
1263 {
1264 LOG_DEBUG("SRST line released");
1265 if (jtag_nsrst_delay)
1266 jtag_add_sleep(jtag_nsrst_delay * 1000);
1267 }
1268
1269 if (trst_with_tlr)
1270 {
1271 LOG_DEBUG("JTAG reset with RESET instead of TRST");
1272 jtag_add_end_state(TAP_RESET);
1273 jtag_add_tlr();
1274 jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
1275 return;
1276 }
1277
1278 if (jtag_trst)
1279 {
1280 /* we just asserted nTRST, so we're now in Test-Logic-Reset,
1281 * and inform possible listeners about this
1282 */
1283 LOG_DEBUG("TRST line asserted");
1284 tap_set_state(TAP_RESET);
1285 jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
1286 }
1287 else
1288 {
1289 if (jtag_ntrst_delay)
1290 jtag_add_sleep(jtag_ntrst_delay * 1000);
1291 }
1292 }
1293
1294 int MINIDRIVER(interface_jtag_add_reset)(int req_trst, int req_srst)
1295 {
1296 /* allocate memory for a new list member */
1297 jtag_command_t * cmd = cmd_queue_alloc(sizeof(jtag_command_t));
1298
1299 jtag_queue_command(cmd);
1300
1301 cmd->type = JTAG_RESET;
1302
1303 cmd->cmd.reset = cmd_queue_alloc(sizeof(reset_command_t));
1304 cmd->cmd.reset->trst = req_trst;
1305 cmd->cmd.reset->srst = req_srst;
1306
1307 return ERROR_OK;
1308 }
1309
1310 void jtag_add_end_state(tap_state_t state)
1311 {
1312 cmd_queue_end_state = state;
1313 if ((cmd_queue_end_state == TAP_DRSHIFT)||(cmd_queue_end_state == TAP_IRSHIFT))
1314 {
1315 LOG_ERROR("BUG: TAP_DRSHIFT/IRSHIFT can't be end state. Calling code should use a larger scan field");
1316 }
1317 }
1318
1319 int MINIDRIVER(interface_jtag_add_sleep)(u32 us)
1320 {
1321 /* allocate memory for a new list member */
1322 jtag_command_t * cmd = cmd_queue_alloc(sizeof(jtag_command_t));
1323
1324 jtag_queue_command(cmd);
1325
1326 cmd->type = JTAG_SLEEP;
1327
1328 cmd->cmd.sleep = cmd_queue_alloc(sizeof(sleep_command_t));
1329 cmd->cmd.sleep->us = us;
1330
1331 return ERROR_OK;
1332 }
1333
1334 void jtag_add_sleep(u32 us)
1335 {
1336 keep_alive(); /* we might be running on a very slow JTAG clk */
1337 int retval=interface_jtag_add_sleep(us);
1338 if (retval!=ERROR_OK)
1339 jtag_error=retval;
1340 return;
1341 }
1342
1343 int jtag_scan_size(const scan_command_t *cmd)
1344 {
1345 int bit_count = 0;
1346 int i;
1347
1348 /* count bits in scan command */
1349 for (i = 0; i < cmd->num_fields; i++)
1350 {
1351 bit_count += cmd->fields[i].num_bits;
1352 }
1353
1354 return bit_count;
1355 }
1356
1357 int jtag_build_buffer(const scan_command_t *cmd, u8 **buffer)
1358 {
1359 int bit_count = 0;
1360 int i;
1361
1362 bit_count = jtag_scan_size(cmd);
1363 *buffer = calloc(1,CEIL(bit_count, 8));
1364
1365 bit_count = 0;
1366
1367 #ifdef _DEBUG_JTAG_IO_
1368 LOG_DEBUG("%s num_fields: %i", cmd->ir_scan ? "IRSCAN" : "DRSCAN", cmd->num_fields);
1369 #endif
1370
1371 for (i = 0; i < cmd->num_fields; i++)
1372 {
1373 if (cmd->fields[i].out_value)
1374 {
1375 #ifdef _DEBUG_JTAG_IO_
1376 char* char_buf = buf_to_str(cmd->fields[i].out_value, (cmd->fields[i].num_bits > DEBUG_JTAG_IOZ) ? DEBUG_JTAG_IOZ : cmd->fields[i].num_bits, 16);
1377 #endif
1378 buf_set_buf(cmd->fields[i].out_value, 0, *buffer, bit_count, cmd->fields[i].num_bits);
1379 #ifdef _DEBUG_JTAG_IO_
1380 LOG_DEBUG("fields[%i].out_value[%i]: 0x%s", i, cmd->fields[i].num_bits, char_buf);
1381 free(char_buf);
1382 #endif
1383 }
1384 else
1385 {
1386 #ifdef _DEBUG_JTAG_IO_
1387 LOG_DEBUG("fields[%i].out_value[%i]: NULL", i, cmd->fields[i].num_bits);
1388 #endif
1389 }
1390
1391 bit_count += cmd->fields[i].num_bits;
1392 }
1393
1394 #ifdef _DEBUG_JTAG_IO_
1395 //LOG_DEBUG("bit_count totalling: %i", bit_count );
1396 #endif
1397
1398 return bit_count;
1399 }
1400
1401 int jtag_read_buffer(u8 *buffer, const scan_command_t *cmd)
1402 {
1403 int i;
1404 int bit_count = 0;
1405 int retval;
1406
1407 /* we return ERROR_OK, unless a check fails, or a handler reports a problem */
1408 retval = ERROR_OK;
1409
1410 for (i = 0; i < cmd->num_fields; i++)
1411 {
1412 /* if neither in_value nor in_handler
1413 * are specified we don't have to examine this field
1414 */
1415 if (cmd->fields[i].in_value)
1416 {
1417 int num_bits = cmd->fields[i].num_bits;
1418 u8 *captured = buf_set_buf(buffer, bit_count, malloc(CEIL(num_bits, 8)), 0, num_bits);
1419
1420 #ifdef _DEBUG_JTAG_IO_
1421 char *char_buf = buf_to_str(captured, (num_bits > DEBUG_JTAG_IOZ) ? DEBUG_JTAG_IOZ : num_bits, 16);
1422 LOG_DEBUG("fields[%i].in_value[%i]: 0x%s", i, num_bits, char_buf);
1423 free(char_buf);
1424 #endif
1425
1426 if (cmd->fields[i].in_value)
1427 {
1428 buf_cpy(captured, cmd->fields[i].in_value, num_bits);
1429 }
1430
1431 free(captured);
1432 }
1433 bit_count += cmd->fields[i].num_bits;
1434 }
1435
1436 return retval;
1437 }
1438
1439 static const char *jtag_tap_name(const jtag_tap_t *tap)
1440 {
1441 return (tap == NULL) ? "(unknown)" : tap->dotted_name;
1442 }
1443
1444 int jtag_check_value_inner(u8 *captured, u8 *in_check_value, u8 *in_check_mask, int num_bits)
1445 {
1446 int retval = ERROR_OK;
1447
1448 int compare_failed = 0;
1449
1450 if (in_check_mask)
1451 compare_failed = buf_cmp_mask(captured, in_check_value, in_check_mask, num_bits);
1452 else
1453 compare_failed = buf_cmp(captured, in_check_value, num_bits);
1454
1455 if (compare_failed){
1456 /* An error handler could have caught the failing check
1457 * only report a problem when there wasn't a handler, or if the handler
1458 * acknowledged the error
1459 */
1460 /*
1461 LOG_WARNING("TAP %s:",
1462 jtag_tap_name(field->tap));
1463 */
1464 if (compare_failed)
1465 {
1466 char *captured_char = buf_to_str(captured, (num_bits > DEBUG_JTAG_IOZ) ? DEBUG_JTAG_IOZ : num_bits, 16);
1467 char *in_check_value_char = buf_to_str(in_check_value, (num_bits > DEBUG_JTAG_IOZ) ? DEBUG_JTAG_IOZ : num_bits, 16);
1468
1469 if (in_check_mask)
1470 {
1471 char *in_check_mask_char;
1472 in_check_mask_char = buf_to_str(in_check_mask, (num_bits > DEBUG_JTAG_IOZ) ? DEBUG_JTAG_IOZ : num_bits, 16);
1473 LOG_WARNING("value captured during scan didn't pass the requested check:");
1474 LOG_WARNING("captured: 0x%s check_value: 0x%s check_mask: 0x%s",
1475 captured_char, in_check_value_char, in_check_mask_char);
1476 free(in_check_mask_char);
1477 }
1478 else
1479 {
1480 LOG_WARNING("value captured during scan didn't pass the requested check: captured: 0x%s check_value: 0x%s", captured_char, in_check_value_char);
1481 }
1482
1483 free(captured_char);
1484 free(in_check_value_char);
1485
1486 retval = ERROR_JTAG_QUEUE_FAILED;
1487 }
1488
1489 }
1490 return retval;
1491 }
1492
1493 void jtag_check_value_mask(scan_field_t *field, u8 *value, u8 *mask)
1494 {
1495 assert(field->in_value != NULL);
1496
1497 if (value==NULL)
1498 {
1499 /* no checking to do */
1500 return;
1501 }
1502
1503 jtag_execute_queue_noclear();
1504
1505 int retval=jtag_check_value_inner(field->in_value, value, mask, field->num_bits);
1506 jtag_set_error(retval);
1507 }
1508
1509
1510
1511 enum scan_type jtag_scan_type(const scan_command_t *cmd)
1512 {
1513 int i;
1514 int type = 0;
1515
1516 for (i = 0; i < cmd->num_fields; i++)
1517 {
1518 if (cmd->fields[i].in_value)
1519 type |= SCAN_IN;
1520 if (cmd->fields[i].out_value)
1521 type |= SCAN_OUT;
1522 }
1523
1524 return type;
1525 }
1526
1527
1528 #ifndef HAVE_JTAG_MINIDRIVER_H
1529 /* add callback to end of queue */
1530 void jtag_add_callback4(jtag_callback_t callback, u8 *in, jtag_callback_data_t data1, jtag_callback_data_t data2, jtag_callback_data_t data3)
1531 {
1532 struct jtag_callback_entry *entry=cmd_queue_alloc(sizeof(struct jtag_callback_entry));
1533
1534 entry->next=NULL;
1535 entry->callback=callback;
1536 entry->in=in;
1537 entry->data1=data1;
1538 entry->data2=data2;
1539 entry->data3=data3;
1540
1541 if (jtag_callback_queue_head==NULL)
1542 {
1543 jtag_callback_queue_head=entry;
1544 jtag_callback_queue_tail=entry;
1545 } else
1546 {
1547 jtag_callback_queue_tail->next=entry;
1548 jtag_callback_queue_tail=entry;
1549 }
1550 }
1551
1552
1553 static int jtag_convert_to_callback4(u8 *in, jtag_callback_data_t data1, jtag_callback_data_t data2, jtag_callback_data_t data3)
1554 {
1555 ((jtag_callback1_t)data1)(in);
1556 return ERROR_OK;
1557 }
1558
1559 void jtag_add_callback(jtag_callback1_t callback, u8 *in)
1560 {
1561 jtag_add_callback4(jtag_convert_to_callback4, in, (jtag_callback_data_t)callback, 0, 0);
1562 }
1563 #endif
1564
1565 #ifndef HAVE_JTAG_MINIDRIVER_H
1566
1567 int interface_jtag_execute_queue(void)
1568 {
1569 int retval;
1570
1571 if (jtag==NULL)
1572 {
1573 LOG_ERROR("No JTAG interface configured yet. Issue 'init' command in startup scripts before communicating with targets.");
1574 return ERROR_FAIL;
1575 }
1576
1577 retval = jtag->execute_queue();
1578
1579 if (retval == ERROR_OK)
1580 {
1581 struct jtag_callback_entry *entry;
1582 for (entry=jtag_callback_queue_head; entry!=NULL; entry=entry->next)
1583 {
1584 retval=entry->callback(entry->in, entry->data1, entry->data2, entry->data3);
1585 if (retval!=ERROR_OK)
1586 break;
1587 }
1588 }
1589
1590 cmd_queue_free();
1591
1592 jtag_callback_queue_head = NULL;
1593 jtag_callback_queue_tail = NULL;
1594
1595 jtag_command_queue = NULL;
1596 last_command_pointer = &jtag_command_queue;
1597
1598 return retval;
1599 }
1600 #endif
1601
1602 void jtag_execute_queue_noclear(void)
1603 {
1604 /* each flush can take as much as 1-2ms on high bandwidth low latency interfaces.
1605 * E.g. a JTAG over TCP/IP or USB....
1606 */
1607 jtag_flush_queue_count++;
1608
1609 int retval=interface_jtag_execute_queue();
1610 /* we keep the first error */
1611 if ((jtag_error==ERROR_OK)&&(retval!=ERROR_OK))
1612 {
1613 jtag_error=retval;
1614 }
1615 }
1616
1617 int jtag_execute_queue(void)
1618 {
1619 int retval;
1620 jtag_execute_queue_noclear();
1621 retval=jtag_error;
1622 jtag_error=ERROR_OK;
1623 return retval;
1624 }
1625
1626 int jtag_reset_callback(enum jtag_event event, void *priv)
1627 {
1628 jtag_tap_t *tap = priv;
1629
1630 LOG_DEBUG("-");
1631
1632 if (event == JTAG_TRST_ASSERTED)
1633 {
1634 buf_set_ones(tap->cur_instr, tap->ir_length);
1635 tap->bypass = 1;
1636 }
1637
1638 return ERROR_OK;
1639 }
1640
1641 void jtag_sleep(u32 us)
1642 {
1643 alive_sleep(us/1000);
1644 }
1645
1646 /* Try to examine chain layout according to IEEE 1149.1 §12
1647 */
1648 int jtag_examine_chain(void)
1649 {
1650 jtag_tap_t *tap;
1651 scan_field_t field;
1652 u8 idcode_buffer[JTAG_MAX_CHAIN_SIZE * 4];
1653 int i;
1654 int bit_count;
1655 int device_count = 0;
1656 u8 zero_check = 0x0;
1657 u8 one_check = 0xff;
1658
1659 field.tap = NULL;
1660 field.num_bits = sizeof(idcode_buffer) * 8;
1661 field.out_value = idcode_buffer;
1662
1663 field.in_value = idcode_buffer;
1664
1665
1666
1667
1668 for (i = 0; i < JTAG_MAX_CHAIN_SIZE; i++)
1669 {
1670 buf_set_u32(idcode_buffer, i * 32, 32, 0x000000FF);
1671 }
1672
1673 jtag_add_plain_dr_scan(1, &field, TAP_RESET);
1674 jtag_execute_queue();
1675
1676 for (i = 0; i < JTAG_MAX_CHAIN_SIZE * 4; i++)
1677 {
1678 zero_check |= idcode_buffer[i];
1679 one_check &= idcode_buffer[i];
1680 }
1681
1682 /* if there wasn't a single non-zero bit or if all bits were one, the scan isn't valid */
1683 if ((zero_check == 0x00) || (one_check == 0xff))
1684 {
1685 LOG_ERROR("JTAG communication failure, check connection, JTAG interface, target power etc.");
1686 return ERROR_JTAG_INIT_FAILED;
1687 }
1688
1689 /* point at the 1st tap */
1690 tap = jtag_NextEnabledTap(NULL);
1691 if( tap == NULL ){
1692 LOG_ERROR("JTAG: No taps enabled?");
1693 return ERROR_JTAG_INIT_FAILED;
1694 }
1695
1696 for (bit_count = 0; bit_count < (JTAG_MAX_CHAIN_SIZE * 32) - 31;)
1697 {
1698 u32 idcode = buf_get_u32(idcode_buffer, bit_count, 32);
1699 if ((idcode & 1) == 0)
1700 {
1701 /* LSB must not be 0, this indicates a device in bypass */
1702 LOG_WARNING("Tap/Device does not have IDCODE");
1703 idcode=0;
1704
1705 bit_count += 1;
1706 }
1707 else
1708 {
1709 u32 manufacturer;
1710 u32 part;
1711 u32 version;
1712
1713 /* some devices, such as AVR will output all 1's instead of TDI
1714 input value at end of chain. */
1715 if ((idcode == 0x000000FF)||(idcode == 0xFFFFFFFF))
1716 {
1717 int unexpected=0;
1718 /* End of chain (invalid manufacturer ID)
1719 *
1720 * The JTAG examine is the very first thing that happens
1721 *
1722 * A single JTAG device requires only 64 bits to be read back correctly.
1723 *
1724 * The code below adds a check that the rest of the data scanned (640 bits)
1725 * are all as expected. This helps diagnose/catch problems with the JTAG chain
1726 *
1727 * earlier and gives more helpful/explicit error messages.
1728 */
1729 for (bit_count += 32; bit_count < (JTAG_MAX_CHAIN_SIZE * 32) - 31;bit_count += 32)
1730 {
1731 idcode = buf_get_u32(idcode_buffer, bit_count, 32);
1732 if (unexpected||((idcode != 0x000000FF)&&(idcode != 0xFFFFFFFF)))
1733 {
1734 LOG_WARNING("Unexpected idcode after end of chain! %d 0x%08x", bit_count, idcode);
1735 unexpected = 1;
1736 }
1737 }
1738
1739 break;
1740 }
1741
1742 #define EXTRACT_MFG(X) (((X) & 0xffe) >> 1)
1743 manufacturer = EXTRACT_MFG(idcode);
1744 #define EXTRACT_PART(X) (((X) & 0xffff000) >> 12)
1745 part = EXTRACT_PART(idcode);
1746 #define EXTRACT_VER(X) (((X) & 0xf0000000) >> 28)
1747 version = EXTRACT_VER(idcode);
1748
1749 LOG_INFO("JTAG tap: %s tap/device found: 0x%8.8x (Manufacturer: 0x%3.3x, Part: 0x%4.4x, Version: 0x%1.1x)",
1750 ((tap != NULL) ? (tap->dotted_name) : "(not-named)"),
1751 idcode, manufacturer, part, version);
1752
1753 bit_count += 32;
1754 }
1755 if (tap)
1756 {
1757 tap->idcode = idcode;
1758
1759 if (tap->expected_ids_cnt > 0) {
1760 /* Loop over the expected identification codes and test for a match */
1761 u8 ii;
1762 for (ii = 0; ii < tap->expected_ids_cnt; ii++) {
1763 if( tap->idcode == tap->expected_ids[ii] ){
1764 break;
1765 }
1766 }
1767
1768 /* If none of the expected ids matched, log an error */
1769 if (ii == tap->expected_ids_cnt) {
1770 LOG_ERROR("JTAG tap: %s got: 0x%08x (mfg: 0x%3.3x, part: 0x%4.4x, ver: 0x%1.1x)",
1771 tap->dotted_name,
1772 idcode,
1773 EXTRACT_MFG( tap->idcode ),
1774 EXTRACT_PART( tap->idcode ),
1775 EXTRACT_VER( tap->idcode ) );
1776 for (ii = 0; ii < tap->expected_ids_cnt; ii++) {
1777 LOG_ERROR("JTAG tap: %s expected %hhu of %hhu: 0x%08x (mfg: 0x%3.3x, part: 0x%4.4x, ver: 0x%1.1x)",
1778 tap->dotted_name,
1779 ii + 1,
1780 tap->expected_ids_cnt,
1781 tap->expected_ids[ii],
1782 EXTRACT_MFG( tap->expected_ids[ii] ),
1783 EXTRACT_PART( tap->expected_ids[ii] ),
1784 EXTRACT_VER( tap->expected_ids[ii] ) );
1785 }
1786
1787 return ERROR_JTAG_INIT_FAILED;
1788 } else {
1789 LOG_INFO("JTAG Tap/device matched");
1790 }
1791 } else {
1792 #if 0
1793 LOG_INFO("JTAG TAP ID: 0x%08x - Unknown - please report (A) chipname and (B) idcode to the openocd project",
1794 tap->idcode);
1795 #endif
1796 }
1797 tap = jtag_NextEnabledTap(tap);
1798 }
1799 device_count++;
1800 }
1801
1802 /* see if number of discovered devices matches configuration */
1803 if (device_count != jtag_NumEnabledTaps())
1804 {
1805 LOG_ERROR("number of discovered devices in JTAG chain (%i) doesn't match (enabled) configuration (%i), total taps: %d",
1806 device_count, jtag_NumEnabledTaps(), jtag_NumTotalTaps());
1807 LOG_ERROR("check the config file and ensure proper JTAG communication (connections, speed, ...)");
1808 return ERROR_JTAG_INIT_FAILED;
1809 }
1810
1811 return ERROR_OK;
1812 }
1813
1814 int jtag_validate_chain(void)
1815 {
1816 jtag_tap_t *tap;
1817 int total_ir_length = 0;
1818 u8 *ir_test = NULL;
1819 scan_field_t field;
1820 int chain_pos = 0;
1821
1822 tap = NULL;
1823 total_ir_length = 0;
1824 for(;;){
1825 tap = jtag_NextEnabledTap(tap);
1826 if( tap == NULL ){
1827 break;
1828 }
1829 total_ir_length += tap->ir_length;
1830 }
1831
1832 total_ir_length += 2;
1833 ir_test = malloc(CEIL(total_ir_length, 8));
1834 buf_set_ones(ir_test, total_ir_length);
1835
1836 field.tap = NULL;
1837 field.num_bits = total_ir_length;
1838 field.out_value = ir_test;
1839 field.in_value = ir_test;
1840
1841
1842 jtag_add_plain_ir_scan(1, &field, TAP_RESET);
1843 jtag_execute_queue();
1844
1845 tap = NULL;
1846 chain_pos = 0;
1847 int val;
1848 for(;;){
1849 tap = jtag_NextEnabledTap(tap);
1850 if( tap == NULL ){
1851 break;
1852 }
1853
1854 val = buf_get_u32(ir_test, chain_pos, 2);
1855 if (val != 0x1)
1856 {
1857 char *cbuf = buf_to_str(ir_test, total_ir_length, 16);
1858 LOG_ERROR("Could not validate JTAG scan chain, IR mismatch, scan returned 0x%s. tap=%s pos=%d expected 0x1 got %0x", cbuf, jtag_tap_name(tap), chain_pos, val);
1859 free(cbuf);
1860 free(ir_test);
1861 return ERROR_JTAG_INIT_FAILED;
1862 }
1863 chain_pos += tap->ir_length;
1864 }
1865
1866 val = buf_get_u32(ir_test, chain_pos, 2);
1867 if (val != 0x3)
1868 {
1869 char *cbuf = buf_to_str(ir_test, total_ir_length, 16);
1870 LOG_ERROR("Could not validate end of JTAG scan chain, IR mismatch, scan returned 0x%s. pos=%d expected 0x3 got %0x", cbuf, chain_pos, val);
1871 free(cbuf);
1872 free(ir_test);
1873 return ERROR_JTAG_INIT_FAILED;
1874 }
1875
1876 free(ir_test);
1877
1878 return ERROR_OK;
1879 }
1880
1881 enum jtag_tap_cfg_param {
1882 JCFG_EVENT
1883 };
1884
1885 static Jim_Nvp nvp_config_opts[] = {
1886 { .name = "-event", .value = JCFG_EVENT },
1887
1888 { .name = NULL, .value = -1 }
1889 };
1890
1891 static int jtag_tap_configure_cmd( Jim_GetOptInfo *goi, jtag_tap_t * tap)
1892 {
1893 Jim_Nvp *n;
1894 Jim_Obj *o;
1895 int e;
1896
1897 /* parse config or cget options */
1898 while (goi->argc > 0) {
1899 Jim_SetEmptyResult (goi->interp);
1900
1901 e = Jim_GetOpt_Nvp(goi, nvp_config_opts, &n);
1902 if (e != JIM_OK) {
1903 Jim_GetOpt_NvpUnknown(goi, nvp_config_opts, 0);
1904 return e;
1905 }
1906
1907 switch (n->value) {
1908 case JCFG_EVENT:
1909 if (goi->argc == 0) {
1910 Jim_WrongNumArgs( goi->interp, goi->argc, goi->argv, "-event ?event-name? ..." );
1911 return JIM_ERR;
1912 }
1913
1914 e = Jim_GetOpt_Nvp( goi, nvp_jtag_tap_event, &n );
1915 if (e != JIM_OK) {
1916 Jim_GetOpt_NvpUnknown(goi, nvp_jtag_tap_event, 1);
1917 return e;
1918 }
1919
1920 if (goi->isconfigure) {
1921 if (goi->argc != 1) {
1922 Jim_WrongNumArgs(goi->interp, goi->argc, goi->argv, "-event ?event-name? ?EVENT-BODY?");
1923 return JIM_ERR;
1924 }
1925 } else {
1926 if (goi->argc != 0) {
1927 Jim_WrongNumArgs(goi->interp, goi->argc, goi->argv, "-event ?event-name?");
1928 return JIM_ERR;
1929 }
1930 }
1931
1932 {
1933 jtag_tap_event_action_t *jteap;
1934
1935 jteap = tap->event_action;
1936 /* replace existing? */
1937 while (jteap) {
1938 if (jteap->event == (enum jtag_tap_event)n->value) {
1939 break;
1940 }
1941 jteap = jteap->next;
1942 }
1943
1944 if (goi->isconfigure) {
1945 if (jteap == NULL) {
1946 /* create new */
1947 jteap = calloc(1, sizeof (*jteap));
1948 }
1949 jteap->event = n->value;
1950 Jim_GetOpt_Obj( goi, &o);
1951 if (jteap->body) {
1952 Jim_DecrRefCount(interp, jteap->body);
1953 }
1954 jteap->body = Jim_DuplicateObj(goi->interp, o);
1955 Jim_IncrRefCount(jteap->body);
1956
1957 /* add to head of event list */
1958 jteap->next = tap->event_action;
1959 tap->event_action = jteap;
1960 Jim_SetEmptyResult(goi->interp);
1961 } else {
1962 /* get */
1963 if (jteap == NULL) {
1964 Jim_SetEmptyResult(goi->interp);
1965 } else {
1966 Jim_SetResult(goi->interp, Jim_DuplicateObj(goi->interp, jteap->body));
1967 }
1968 }
1969 }
1970 /* loop for more */
1971 break;
1972 }
1973 } /* while (goi->argc) */
1974
1975 return JIM_OK;
1976 }
1977
1978 static int jim_newtap_cmd( Jim_GetOptInfo *goi )
1979 {
1980 jtag_tap_t *pTap;
1981 jtag_tap_t **ppTap;
1982 jim_wide w;
1983 int x;
1984 int e;
1985 int reqbits;
1986 Jim_Nvp *n;
1987 char *cp;
1988 const Jim_Nvp opts[] = {
1989 #define NTAP_OPT_IRLEN 0
1990 { .name = "-irlen" , .value = NTAP_OPT_IRLEN },
1991 #define NTAP_OPT_IRMASK 1
1992 { .name = "-irmask" , .value = NTAP_OPT_IRMASK },
1993 #define NTAP_OPT_IRCAPTURE 2
1994 { .name = "-ircapture" , .value = NTAP_OPT_IRCAPTURE },
1995 #define NTAP_OPT_ENABLED 3
1996 { .name = "-enable" , .value = NTAP_OPT_ENABLED },
1997 #define NTAP_OPT_DISABLED 4
1998 { .name = "-disable" , .value = NTAP_OPT_DISABLED },
1999 #define NTAP_OPT_EXPECTED_ID 5
2000 { .name = "-expected-id" , .value = NTAP_OPT_EXPECTED_ID },
2001 { .name = NULL , .value = -1 },
2002 };
2003
2004 pTap = malloc( sizeof(jtag_tap_t) );
2005 memset( pTap, 0, sizeof(*pTap) );
2006 if( !pTap ){
2007 Jim_SetResult_sprintf( goi->interp, "no memory");
2008 return JIM_ERR;
2009 }
2010 /*
2011 * we expect CHIP + TAP + OPTIONS
2012 * */
2013 if( goi->argc < 3 ){
2014 Jim_SetResult_sprintf(goi->interp, "Missing CHIP TAP OPTIONS ....");
2015 return JIM_ERR;
2016 }
2017 Jim_GetOpt_String( goi, &cp, NULL );
2018 pTap->chip = strdup(cp);
2019
2020 Jim_GetOpt_String( goi, &cp, NULL );
2021 pTap->tapname = strdup(cp);
2022
2023 /* name + dot + name + null */
2024 x = strlen(pTap->chip) + 1 + strlen(pTap->tapname) + 1;
2025 cp = malloc( x );
2026 sprintf( cp, "%s.%s", pTap->chip, pTap->tapname );
2027 pTap->dotted_name = cp;
2028
2029 LOG_DEBUG("Creating New Tap, Chip: %s, Tap: %s, Dotted: %s, %d params",
2030 pTap->chip, pTap->tapname, pTap->dotted_name, goi->argc);
2031
2032 /* default is enabled */
2033 pTap->enabled = 1;
2034
2035 /* deal with options */
2036 #define NTREQ_IRLEN 1
2037 #define NTREQ_IRCAPTURE 2
2038 #define NTREQ_IRMASK 4
2039
2040 /* clear them as we find them */
2041 reqbits = (NTREQ_IRLEN | NTREQ_IRCAPTURE | NTREQ_IRMASK);
2042
2043 while( goi->argc ){
2044 e = Jim_GetOpt_Nvp( goi, opts, &n );
2045 if( e != JIM_OK ){
2046 Jim_GetOpt_NvpUnknown( goi, opts, 0 );
2047 return e;
2048 }
2049 LOG_DEBUG("Processing option: %s", n->name );
2050 switch( n->value ){
2051 case NTAP_OPT_ENABLED:
2052 pTap->enabled = 1;
2053 break;
2054 case NTAP_OPT_DISABLED:
2055 pTap->enabled = 0;
2056 break;
2057 case NTAP_OPT_EXPECTED_ID:
2058 {
2059 u32 *new_expected_ids;
2060
2061 e = Jim_GetOpt_Wide( goi, &w );
2062 if( e != JIM_OK) {
2063 Jim_SetResult_sprintf(goi->interp, "option: %s bad parameter", n->name);
2064 return e;
2065 }
2066
2067 new_expected_ids = malloc(sizeof(u32) * (pTap->expected_ids_cnt + 1));
2068 if (new_expected_ids == NULL) {
2069 Jim_SetResult_sprintf( goi->interp, "no memory");
2070 return JIM_ERR;
2071 }
2072
2073 memcpy(new_expected_ids, pTap->expected_ids, sizeof(u32) * pTap->expected_ids_cnt);
2074
2075 new_expected_ids[pTap->expected_ids_cnt] = w;
2076
2077 free(pTap->expected_ids);
2078 pTap->expected_ids = new_expected_ids;
2079 pTap->expected_ids_cnt++;
2080 break;
2081 }
2082 case NTAP_OPT_IRLEN:
2083 case NTAP_OPT_IRMASK:
2084 case NTAP_OPT_IRCAPTURE:
2085 e = Jim_GetOpt_Wide( goi, &w );
2086 if( e != JIM_OK ){
2087 Jim_SetResult_sprintf( goi->interp, "option: %s bad parameter", n->name );
2088 return e;
2089 }
2090 if( (w < 0) || (w > 0xffff) ){
2091 /* wacky value */
2092 Jim_SetResult_sprintf( goi->interp, "option: %s - wacky value: %d (0x%x)",
2093 n->name, (int)(w), (int)(w));
2094 return JIM_ERR;
2095 }
2096 switch(n->value){
2097 case NTAP_OPT_IRLEN:
2098 pTap->ir_length = w;
2099 reqbits &= (~(NTREQ_IRLEN));
2100 break;
2101 case NTAP_OPT_IRMASK:
2102 pTap->ir_capture_mask = w;
2103 reqbits &= (~(NTREQ_IRMASK));
2104 break;
2105 case NTAP_OPT_IRCAPTURE:
2106 pTap->ir_capture_value = w;
2107 reqbits &= (~(NTREQ_IRCAPTURE));
2108 break;
2109 }
2110 } /* switch(n->value) */
2111 } /* while( goi->argc ) */
2112
2113 /* Did we get all the options? */
2114 if( reqbits ){
2115 // no
2116 Jim_SetResult_sprintf( goi->interp,
2117 "newtap: %s missing required parameters",
2118 pTap->dotted_name);
2119 /* TODO: Tell user what is missing :-( */
2120 /* no memory leaks pelase */
2121 free(((void *)(pTap->expected_ids)));
2122 free(((void *)(pTap->chip)));
2123 free(((void *)(pTap->tapname)));
2124 free(((void *)(pTap->dotted_name)));
2125 free(((void *)(pTap)));
2126 return JIM_ERR;
2127 }
2128
2129 pTap->expected = malloc( pTap->ir_length );
2130 pTap->expected_mask = malloc( pTap->ir_length );
2131 pTap->cur_instr = malloc( pTap->ir_length );
2132
2133 buf_set_u32( pTap->expected,
2134 0,
2135 pTap->ir_length,
2136 pTap->ir_capture_value );
2137 buf_set_u32( pTap->expected_mask,
2138 0,
2139 pTap->ir_length,
2140 pTap->ir_capture_mask );
2141 buf_set_ones( pTap->cur_instr,
2142 pTap->ir_length );
2143
2144 pTap->bypass = 1;
2145
2146 jtag_register_event_callback(jtag_reset_callback, pTap );
2147
2148 ppTap = &(jtag_all_taps);
2149 while( (*ppTap) != NULL ){
2150 ppTap = &((*ppTap)->next_tap);
2151 }
2152 *ppTap = pTap;
2153 {
2154 static int n_taps = 0;
2155 pTap->abs_chain_position = n_taps++;
2156 }
2157 LOG_DEBUG( "Created Tap: %s @ abs position %d, irlen %d, capture: 0x%x mask: 0x%x",
2158 (*ppTap)->dotted_name,
2159 (*ppTap)->abs_chain_position,
2160 (*ppTap)->ir_length,
2161 (*ppTap)->ir_capture_value,
2162 (*ppTap)->ir_capture_mask );
2163
2164 return ERROR_OK;
2165 }
2166
2167 static int jim_jtag_command( Jim_Interp *interp, int argc, Jim_Obj *const *argv )
2168 {
2169 Jim_GetOptInfo goi;
2170 int e;
2171 Jim_Nvp *n;
2172 Jim_Obj *o;
2173 struct command_context_s *context;
2174
2175 enum {
2176 JTAG_CMD_INTERFACE,
2177 JTAG_CMD_INIT_RESET,
2178 JTAG_CMD_NEWTAP,
2179 JTAG_CMD_TAPENABLE,
2180 JTAG_CMD_TAPDISABLE,
2181 JTAG_CMD_TAPISENABLED,
2182 JTAG_CMD_CONFIGURE,
2183 JTAG_CMD_CGET
2184 };
2185
2186 const Jim_Nvp jtag_cmds[] = {
2187 { .name = "interface" , .value = JTAG_CMD_INTERFACE },
2188 { .name = "arp_init-reset", .value = JTAG_CMD_INIT_RESET },
2189 { .name = "newtap" , .value = JTAG_CMD_NEWTAP },
2190 { .name = "tapisenabled" , .value = JTAG_CMD_TAPISENABLED },
2191 { .name = "tapenable" , .value = JTAG_CMD_TAPENABLE },
2192 { .name = "tapdisable" , .value = JTAG_CMD_TAPDISABLE },
2193 { .name = "configure" , .value = JTAG_CMD_CONFIGURE },
2194 { .name = "cget" , .value = JTAG_CMD_CGET },
2195
2196 { .name = NULL, .value = -1 },
2197 };
2198
2199 context = Jim_GetAssocData(interp, "context");
2200 /* go past the command */
2201 Jim_GetOpt_Setup( &goi, interp, argc-1, argv+1 );
2202
2203 e = Jim_GetOpt_Nvp( &goi, jtag_cmds, &n );
2204 if( e != JIM_OK ){
2205 Jim_GetOpt_NvpUnknown( &goi, jtag_cmds, 0 );
2206 return e;
2207 }
2208 Jim_SetEmptyResult( goi.interp );
2209 switch( n->value ){
2210 case JTAG_CMD_INTERFACE:
2211 /* return the name of the interface */
2212 /* TCL code might need to know the exact type... */
2213 /* FUTURE: we allow this as a means to "set" the interface. */
2214 if( goi.argc != 0 ){
2215 Jim_WrongNumArgs( goi.interp, 1, goi.argv-1, "(no params)");
2216 return JIM_ERR;
2217 }
2218 Jim_SetResultString( goi.interp, jtag_interface->name, -1 );
2219 return JIM_OK;
2220 case JTAG_CMD_INIT_RESET:
2221 if( goi.argc != 0 ){
2222 Jim_WrongNumArgs( goi.interp, 1, goi.argv-1, "(no params)");
2223 return JIM_ERR;
2224 }
2225 e = jtag_init_reset(context);
2226 if( e != ERROR_OK ){
2227 Jim_SetResult_sprintf( goi.interp, "error: %d", e);
2228 return JIM_ERR;
2229 }
2230 return JIM_OK;
2231 case JTAG_CMD_NEWTAP:
2232 return jim_newtap_cmd( &goi );
2233 break;
2234 case JTAG_CMD_TAPISENABLED:
2235 case JTAG_CMD_TAPENABLE:
2236 case JTAG_CMD_TAPDISABLE:
2237 if( goi.argc != 1 ){
2238 Jim_SetResultString( goi.interp, "Too many parameters",-1 );
2239 return JIM_ERR;
2240 }
2241
2242 {
2243 jtag_tap_t *t;
2244 t = jtag_TapByJimObj( goi.interp, goi.argv[0] );
2245 if( t == NULL ){
2246 return JIM_ERR;
2247 }
2248 switch( n->value ){
2249 case JTAG_CMD_TAPISENABLED:
2250 e = t->enabled;
2251 break;
2252 case JTAG_CMD_TAPENABLE:
2253 jtag_tap_handle_event( t, JTAG_TAP_EVENT_ENABLE);
2254 e = 1;
2255 t->enabled = e;
2256 break;
2257 case JTAG_CMD_TAPDISABLE:
2258 jtag_tap_handle_event( t, JTAG_TAP_EVENT_DISABLE);
2259 e = 0;
2260 t->enabled = e;
2261 break;
2262 }
2263 Jim_SetResult( goi.interp, Jim_NewIntObj( goi.interp, e ) );
2264 return JIM_OK;
2265 }
2266 break;
2267
2268 case JTAG_CMD_CGET:
2269 if( goi.argc < 2 ){
2270 Jim_WrongNumArgs( goi.interp, 0, NULL, "?tap-name? -option ...");
2271 return JIM_ERR;
2272 }
2273
2274 {
2275 jtag_tap_t *t;
2276
2277 Jim_GetOpt_Obj(&goi, &o);
2278 t = jtag_TapByJimObj( goi.interp, o );
2279 if( t == NULL ){
2280 return JIM_ERR;
2281 }
2282
2283 goi.isconfigure = 0;
2284 return jtag_tap_configure_cmd( &goi, t);
2285 }
2286 break;
2287
2288 case JTAG_CMD_CONFIGURE:
2289 if( goi.argc < 3 ){
2290 Jim_WrongNumArgs( goi.interp, 0, NULL, "?tap-name? -option ?VALUE? ...");
2291 return JIM_ERR;
2292 }
2293
2294 {
2295 jtag_tap_t *t;
2296
2297 Jim_GetOpt_Obj(&goi, &o);
2298 t = jtag_TapByJimObj( goi.interp, o );
2299 if( t == NULL ){
2300 return JIM_ERR;
2301 }
2302
2303 goi.isconfigure = 1;
2304 return jtag_tap_configure_cmd( &goi, t);
2305 }
2306 }
2307
2308 return JIM_ERR;
2309 }
2310
2311 int jtag_register_commands(struct command_context_s *cmd_ctx)
2312 {
2313 register_jim( cmd_ctx, "jtag", jim_jtag_command, "perform jtag tap actions");
2314
2315 register_command(cmd_ctx, NULL, "interface", handle_interface_command,
2316 COMMAND_CONFIG, "try to configure interface");
2317 register_command(cmd_ctx, NULL, "jtag_speed", handle_jtag_speed_command,
2318 COMMAND_ANY, "(DEPRECATED) set jtag speed (if supported)");
2319 register_command(cmd_ctx, NULL, "jtag_khz", handle_jtag_khz_command,
2320 COMMAND_ANY, "set maximum jtag speed (if supported); "
2321 "parameter is maximum khz, or 0 for adaptive clocking (RTCK).");
2322 register_command(cmd_ctx, NULL, "jtag_device", handle_jtag_device_command,
2323 COMMAND_CONFIG, "jtag_device <ir_length> <ir_expected> <ir_mask>");
2324 register_command(cmd_ctx, NULL, "reset_config", handle_reset_config_command,
2325 COMMAND_ANY,
2326 "[none/trst_only/srst_only/trst_and_srst] [srst_pulls_trst/trst_pulls_srst] [combined/separate] [trst_push_pull/trst_open_drain] [srst_push_pull/srst_open_drain]");
2327 register_command(cmd_ctx, NULL, "jtag_nsrst_delay", handle_jtag_nsrst_delay_command,
2328 COMMAND_ANY, "jtag_nsrst_delay <ms> - delay after deasserting srst in ms");
2329 register_command(cmd_ctx, NULL, "jtag_ntrst_delay", handle_jtag_ntrst_delay_command,
2330 COMMAND_ANY, "jtag_ntrst_delay <ms> - delay after deasserting trst in ms");
2331
2332 register_command(cmd_ctx, NULL, "scan_chain", handle_scan_chain_command,
2333 COMMAND_EXEC, "print current scan chain configuration");
2334
2335 register_command(cmd_ctx, NULL, "endstate", handle_endstate_command,
2336 COMMAND_EXEC, "finish JTAG operations in <tap_state>");
2337 register_command(cmd_ctx, NULL, "jtag_reset", handle_jtag_reset_command,
2338 COMMAND_EXEC, "toggle reset lines <trst> <srst>");
2339 register_command(cmd_ctx, NULL, "runtest", handle_runtest_command,
2340 COMMAND_EXEC, "move to Run-Test/Idle, and execute <num_cycles>");
2341 register_command(cmd_ctx, NULL, "irscan", handle_irscan_command,
2342 COMMAND_EXEC, "execute IR scan <device> <instr> [dev2] [instr2] ...");
2343 register_jim(cmd_ctx, "drscan", Jim_Command_drscan, "execute DR scan <device> <num_bits> <value> <num_bits1> <value2> ...");
2344 register_jim(cmd_ctx, "flush_count", Jim_Command_flush_count, "returns number of times the JTAG queue has been flushed");
2345
2346 register_command(cmd_ctx, NULL, "verify_ircapture", handle_verify_ircapture_command,
2347 COMMAND_ANY, "verify value captured during Capture-IR <enable|disable>");
2348 register_command(cmd_ctx, NULL, "verify_jtag", handle_verify_jtag_command,
2349 COMMAND_ANY, "verify value capture <enable|disable>");
2350 register_command(cmd_ctx, NULL, "tms_sequence", handle_tms_sequence_command,
2351 COMMAND_ANY, "choose short(default) or long tms_sequence <short|long>");
2352 return ERROR_OK;
2353 }
2354
2355 int jtag_interface_init(struct command_context_s *cmd_ctx)
2356 {
2357 if (jtag)
2358 return ERROR_OK;
2359
2360 if (!jtag_interface)
2361 {
2362 /* nothing was previously specified by "interface" command */
2363 LOG_ERROR("JTAG interface has to be specified, see \"interface\" command");
2364 return ERROR_JTAG_INVALID_INTERFACE;
2365 }
2366 if(hasKHz)
2367 {
2368 jtag_interface->khz(speed_khz, &jtag_speed);
2369 hasKHz = 0;
2370 }
2371
2372 if (jtag_interface->init() != ERROR_OK)
2373 return ERROR_JTAG_INIT_FAILED;
2374
2375 jtag = jtag_interface;
2376 return ERROR_OK;
2377 }
2378
2379 static int jtag_init_inner(struct command_context_s *cmd_ctx)
2380 {
2381 jtag_tap_t *tap;
2382 int retval;
2383
2384 LOG_DEBUG("Init JTAG chain");
2385
2386 tap = jtag_NextEnabledTap(NULL);
2387 if( tap == NULL ){
2388 LOG_ERROR("There are no enabled taps?");
2389 return ERROR_JTAG_INIT_FAILED;
2390 }
2391
2392 jtag_add_tlr();
2393 if ((retval=jtag_execute_queue())!=ERROR_OK)
2394 return retval;
2395
2396 /* examine chain first, as this could discover the real chain layout */
2397 if (jtag_examine_chain() != ERROR_OK)
2398 {
2399 LOG_ERROR("trying to validate configured JTAG chain anyway...");
2400 }
2401
2402 if (jtag_validate_chain() != ERROR_OK)
2403 {
2404 LOG_WARNING("Could not validate JTAG chain, continuing anyway...");
2405 }
2406
2407 return ERROR_OK;
2408 }
2409
2410 int jtag_init_reset(struct command_context_s *cmd_ctx)
2411 {
2412 int retval;
2413
2414 if ((retval=jtag_interface_init(cmd_ctx)) != ERROR_OK)
2415 return retval;
2416
2417 LOG_DEBUG("Trying to bring the JTAG controller to life by asserting TRST / RESET");
2418
2419 /* Reset can happen after a power cycle.
2420 *
2421 * Ideally we would only assert TRST or run RESET before the target reset.
2422 *
2423 * However w/srst_pulls_trst, trst is asserted together with the target
2424 * reset whether we want it or not.
2425 *
2426 * NB! Some targets have JTAG circuitry disabled until a
2427 * trst & srst has been asserted.
2428 *
2429 * NB! here we assume nsrst/ntrst delay are sufficient!
2430 *
2431 * NB! order matters!!!! srst *can* disconnect JTAG circuitry
2432 *
2433 */
2434 jtag_add_reset(1, 0); /* RESET or TRST */
2435 if (jtag_reset_config & RESET_HAS_SRST)
2436 {
2437 jtag_add_reset(1, 1);
2438 if ((jtag_reset_config & RESET_SRST_PULLS_TRST)==0)
2439 jtag_add_reset(0, 1);
2440 }
2441 jtag_add_reset(0, 0);
2442 if ((retval = jtag_execute_queue()) != ERROR_OK)
2443 return retval;
2444
2445 /* Check that we can communication on the JTAG chain + eventually we want to
2446 * be able to perform enumeration only after OpenOCD has started
2447 * telnet and GDB server
2448 *
2449 * That would allow users to more easily perform any magic they need to before
2450 * reset happens.
2451 */
2452 return jtag_init_inner(cmd_ctx);
2453 }
2454
2455 int jtag_init(struct command_context_s *cmd_ctx)
2456 {
2457 int retval;
2458 if ((retval=jtag_interface_init(cmd_ctx)) != ERROR_OK)
2459 return retval;
2460 if (jtag_init_inner(cmd_ctx)==ERROR_OK)
2461 {
2462 return ERROR_OK;
2463 }
2464 return jtag_init_reset(cmd_ctx);
2465 }
2466
2467 static int default_khz(int khz, int *jtag_speed)
2468 {
2469 LOG_ERROR("Translation from khz to jtag_speed not implemented");
2470 return ERROR_FAIL;
2471 }
2472
2473 static int default_speed_div(int speed, int *khz)
2474 {
2475 LOG_ERROR("Translation from jtag_speed to khz not implemented");
2476 return ERROR_FAIL;
2477 }
2478
2479 static int default_power_dropout(int *dropout)
2480 {
2481 *dropout=0; /* by default we can't detect power dropout */
2482 return ERROR_OK;
2483 }
2484
2485 static int default_srst_asserted(int *srst_asserted)
2486 {
2487 *srst_asserted=0; /* by default we can't detect srst asserted */
2488 return ERROR_OK;
2489 }
2490
2491 static int handle_interface_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
2492 {
2493 int i;
2494 int retval;
2495
2496 /* check whether the interface is already configured */
2497 if (jtag_interface)
2498 {
2499 LOG_WARNING("Interface already configured, ignoring");
2500 return ERROR_OK;
2501 }
2502
2503 /* interface name is a mandatory argument */
2504 if (argc < 1 || args[0][0] == '\0')
2505 {
2506 return ERROR_COMMAND_SYNTAX_ERROR;
2507 }
2508
2509 for (i=0; jtag_interfaces[i]; i++)
2510 {
2511 if (strcmp(args[0], jtag_interfaces[i]->name) == 0)
2512 {
2513 if ((retval = jtag_interfaces[i]->register_commands(cmd_ctx)) != ERROR_OK)
2514 {
2515 return retval;
2516 }
2517
2518 jtag_interface = jtag_interfaces[i];
2519
2520 if (jtag_interface->khz == NULL)
2521 {
2522 jtag_interface->khz = default_khz;
2523 }
2524 if (jtag_interface->speed_div == NULL)
2525 {
2526 jtag_interface->speed_div = default_speed_div;
2527 }
2528 if (jtag_interface->power_dropout == NULL)
2529 {
2530 jtag_interface->power_dropout = default_power_dropout;
2531 }
2532 if (jtag_interface->srst_asserted == NULL)
2533 {
2534 jtag_interface->srst_asserted = default_srst_asserted;
2535 }
2536
2537 return ERROR_OK;
2538 }
2539 }
2540
2541 /* no valid interface was found (i.e. the configuration option,
2542 * didn't match one of the compiled-in interfaces
2543 */
2544 LOG_ERROR("No valid jtag interface found (%s)", args[0]);
2545 LOG_ERROR("compiled-in jtag interfaces:");
2546 for (i = 0; jtag_interfaces[i]; i++)
2547 {
2548 LOG_ERROR("%i: %s", i, jtag_interfaces[i]->name);
2549 }
2550
2551 return ERROR_JTAG_INVALID_INTERFACE;
2552 }
2553
2554 static int handle_jtag_device_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
2555 {
2556 int e;
2557 char buf[1024];
2558 Jim_Obj *newargs[ 10 ];
2559 /*
2560 * CONVERT SYNTAX
2561 * argv[-1] = command
2562 * argv[ 0] = ir length
2563 * argv[ 1] = ir capture
2564 * argv[ 2] = ir mask
2565 * argv[ 3] = not actually used by anything but in the docs
2566 */
2567
2568 if( argc < 4 ){
2569 command_print( cmd_ctx, "OLD DEPRECATED SYNTAX: Please use the NEW syntax");
2570 return ERROR_OK;
2571 }
2572 command_print( cmd_ctx, "OLD SYNTAX: DEPRECATED - translating to new syntax");
2573 command_print( cmd_ctx, "jtag newtap CHIP TAP -irlen %s -ircapture %s -irvalue %s",
2574 args[0],
2575 args[1],
2576 args[2] );
2577 command_print( cmd_ctx, "Example: STM32 has 2 taps, the cortexM3(len4) + boundaryscan(len5)");
2578 command_print( cmd_ctx, "jtag newtap stm32 cortexm3 ....., thus creating the tap: \"stm32.cortexm3\"");
2579 command_print( cmd_ctx, "jtag newtap stm32 boundary ....., and the tap: \"stm32.boundary\"");
2580 command_print( cmd_ctx, "And then refer to the taps by the dotted name.");
2581
2582 newargs[0] = Jim_NewStringObj( interp, "jtag", -1 );
2583 newargs[1] = Jim_NewStringObj( interp, "newtap", -1 );
2584 sprintf( buf, "chip%d", jtag_NumTotalTaps() );
2585 newargs[2] = Jim_NewStringObj( interp, buf, -1 );
2586 sprintf( buf, "tap%d", jtag_NumTotalTaps() );
2587 newargs[3] = Jim_NewStringObj( interp, buf, -1 );
2588 newargs[4] = Jim_NewStringObj( interp, "-irlen", -1 );
2589 newargs[5] = Jim_NewStringObj( interp, args[0], -1 );
2590 newargs[6] = Jim_NewStringObj( interp, "-ircapture", -1 );
2591 newargs[7] = Jim_NewStringObj( interp, args[1], -1 );
2592 newargs[8] = Jim_NewStringObj( interp, "-irmask", -1 );
2593 newargs[9] = Jim_NewStringObj( interp, args[2], -1 );
2594
2595 command_print( cmd_ctx, "NEW COMMAND:");
2596 sprintf( buf, "%s %s %s %s %s %s %s %s %s %s",
2597 Jim_GetString( newargs[0], NULL ),
2598 Jim_GetString( newargs[1], NULL ),
2599 Jim_GetString( newargs[2], NULL ),
2600 Jim_GetString( newargs[3], NULL ),
2601 Jim_GetString( newargs[4], NULL ),
2602 Jim_GetString( newargs[5], NULL ),
2603 Jim_GetString( newargs[6], NULL ),
2604 Jim_GetString( newargs[7], NULL ),
2605 Jim_GetString( newargs[8], NULL ),
2606 Jim_GetString( newargs[9], NULL ) );
2607
2608 e = jim_jtag_command( interp, 10, newargs );
2609 if( e != JIM_OK ){
2610 command_print( cmd_ctx, "%s", Jim_GetString( Jim_GetResult(interp), NULL ) );
2611 }
2612 return e;
2613 }
2614
2615 static int handle_scan_chain_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
2616 {
2617 jtag_tap_t *tap;
2618
2619 tap = jtag_all_taps;
2620 command_print(cmd_ctx, " TapName | Enabled | IdCode Expected IrLen IrCap IrMask Instr ");
2621 command_print(cmd_ctx, "---|--------------------|---------|------------|------------|------|------|------|---------");
2622
2623 while( tap ){
2624 u32 expected, expected_mask, cur_instr, ii;
2625 expected = buf_get_u32(tap->expected, 0, tap->ir_length);
2626 expected_mask = buf_get_u32(tap->expected_mask, 0, tap->ir_length);
2627 cur_instr = buf_get_u32(tap->cur_instr, 0, tap->ir_length);
2628
2629 command_print(cmd_ctx,
2630 "%2d | %-18s | %c | 0x%08x | 0x%08x | 0x%02x | 0x%02x | 0x%02x | 0x%02x",
2631 tap->abs_chain_position,
2632 tap->dotted_name,
2633 tap->enabled ? 'Y' : 'n',
2634 tap->idcode,
2635 (tap->expected_ids_cnt > 0 ? tap->expected_ids[0] : 0),
2636 tap->ir_length,
2637 expected,
2638 expected_mask,
2639 cur_instr);
2640
2641 for (ii = 1; ii < tap->expected_ids_cnt; ii++) {
2642 command_print(cmd_ctx, " | | | | 0x%08x | | | | ",
2643 tap->expected_ids[ii]);
2644 }
2645
2646 tap = tap->next_tap;
2647 }
2648
2649 return ERROR_OK;
2650 }
2651
2652 static int handle_reset_config_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
2653 {
2654 int new_cfg = 0;
2655 int mask = 0;
2656
2657 if (argc < 1)
2658 return ERROR_COMMAND_SYNTAX_ERROR;
2659
2660 /* Original versions cared about the order of these tokens:
2661 * reset_config signals [combination [trst_type [srst_type]]]
2662 * They also clobbered the previous configuration even on error.
2663 *
2664 * Here we don't care about the order, and only change values
2665 * which have been explicitly specified.
2666 */
2667 for (; argc; argc--, args++) {
2668 int tmp = 0;
2669 int m;
2670
2671 /* signals */
2672 m = RESET_HAS_TRST | RESET_HAS_SRST;
2673 if (strcmp(*args, "none") == 0)
2674 tmp = RESET_NONE;
2675 else if (strcmp(*args, "trst_only") == 0)
2676 tmp = RESET_HAS_TRST;
2677 else if (strcmp(*args, "srst_only") == 0)
2678 tmp = RESET_HAS_SRST;
2679 else if (strcmp(*args, "trst_and_srst") == 0)
2680 tmp = RESET_HAS_TRST | RESET_HAS_SRST;
2681 else
2682 m = 0;
2683 if (mask & m) {
2684 LOG_ERROR("extra reset_config %s spec (%s)",
2685 "signal", *args);
2686 return ERROR_INVALID_ARGUMENTS;
2687 }
2688 if (m)
2689 goto next;
2690
2691 /* combination (options for broken wiring) */
2692 m = RESET_SRST_PULLS_TRST | RESET_TRST_PULLS_SRST;
2693 if (strcmp(*args, "separate") == 0)
2694 /* separate reset lines - default */;
2695 else if (strcmp(*args, "srst_pulls_trst") == 0)
2696 tmp |= RESET_SRST_PULLS_TRST;
2697 else if (strcmp(*args, "trst_pulls_srst") == 0)
2698 tmp |= RESET_TRST_PULLS_SRST;
2699 else if (strcmp(*args, "combined") == 0)
2700 tmp |= RESET_SRST_PULLS_TRST | RESET_TRST_PULLS_SRST;
2701 else
2702 m = 0;
2703 if (mask & m) {
2704 LOG_ERROR("extra reset_config %s spec (%s)",
2705 "combination", *args);
2706 return ERROR_INVALID_ARGUMENTS;
2707 }
2708 if (m)
2709 goto next;
2710
2711 /* trst_type (NOP without HAS_TRST) */
2712 m = RESET_TRST_OPEN_DRAIN;
2713 if (strcmp(*args, "trst_open_drain") == 0)
2714 tmp |= RESET_TRST_OPEN_DRAIN;
2715 else if (strcmp(*args, "trst_push_pull") == 0)
2716 /* push/pull from adapter - default */;
2717 else
2718 m = 0;
2719 if (mask & m) {
2720 LOG_ERROR("extra reset_config %s spec (%s)",
2721 "trst_type", *args);
2722 return ERROR_INVALID_ARGUMENTS;
2723 }
2724 if (m)
2725 goto next;
2726
2727 /* srst_type (NOP without HAS_SRST) */
2728 m |= RESET_SRST_PUSH_PULL;
2729 if (strcmp(*args, "srst_push_pull") == 0)
2730 tmp |= RESET_SRST_PUSH_PULL;
2731 else if (strcmp(*args, "srst_open_drain") == 0)
2732 /* open drain from adapter - default */;
2733 else
2734 m = 0;
2735 if (mask & m) {
2736 LOG_ERROR("extra reset_config %s spec (%s)",
2737 "srst_type", *args);
2738 return ERROR_INVALID_ARGUMENTS;
2739 }
2740 if (m)
2741 goto next;
2742
2743 /* caller provided nonsense; fail */
2744 LOG_ERROR("unknown reset_config flag (%s)", *args);
2745 return ERROR_INVALID_ARGUMENTS;
2746
2747 next:
2748 /* Remember the bits which were specified (mask)
2749 * and their new values (new_cfg).
2750 */
2751 mask |= m;
2752 new_cfg |= tmp;
2753 }
2754
2755 /* clear previous values of those bits, save new values */
2756 jtag_reset_config &= ~mask;
2757 jtag_reset_config |= new_cfg;
2758
2759 return ERROR_OK;
2760 }
2761
2762 static int handle_jtag_nsrst_delay_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
2763 {
2764 if (argc < 1)
2765 {
2766 LOG_ERROR("jtag_nsrst_delay <ms> command takes one required argument");
2767 exit(-1);
2768 }
2769 else
2770 {
2771 jtag_nsrst_delay = strtoul(args[0], NULL, 0);
2772 }
2773
2774 return ERROR_OK;
2775 }
2776
2777 static int handle_jtag_ntrst_delay_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
2778 {
2779 if (argc < 1)
2780 {
2781 LOG_ERROR("jtag_ntrst_delay <ms> command takes one required argument");
2782 exit(-1);
2783 }
2784 else
2785 {
2786 jtag_ntrst_delay = strtoul(args[0], NULL, 0);
2787 }
2788
2789 return ERROR_OK;
2790 }
2791
2792 static int handle_jtag_speed_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
2793 {
2794 int retval=ERROR_OK;
2795
2796 if (argc == 1)
2797 {
2798 LOG_DEBUG("handle jtag speed");
2799
2800 int cur_speed = 0;
2801 cur_speed = jtag_speed = strtoul(args[0], NULL, 0);
2802
2803 /* this command can be called during CONFIG,
2804 * in which case jtag isn't initialized */
2805 if (jtag)
2806 {
2807 retval=jtag->speed(cur_speed);
2808 }
2809 } else if (argc == 0)
2810 {
2811 } else
2812 {
2813 return ERROR_COMMAND_SYNTAX_ERROR;
2814 }
2815 command_print(cmd_ctx, "jtag_speed: %d", jtag_speed);
2816
2817 return retval;
2818 }
2819
2820 static int handle_jtag_khz_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
2821 {
2822 int retval=ERROR_OK;
2823 LOG_DEBUG("handle jtag khz");
2824
2825 if(argc == 1)
2826 {
2827 speed_khz = strtoul(args[0], NULL, 0);
2828 if (jtag != NULL)
2829 {
2830 int cur_speed = 0;
2831 LOG_DEBUG("have interface set up");
2832 int speed_div1;
2833 if ((retval=jtag->khz(speed_khz, &speed_div1))!=ERROR_OK)
2834 {
2835 speed_khz = 0;
2836 return retval;
2837 }
2838
2839 cur_speed = jtag_speed = speed_div1;
2840
2841 retval=jtag->speed(cur_speed);
2842 } else
2843 {
2844 hasKHz = 1;
2845 }
2846 } else if (argc==0)
2847 {
2848 } else
2849 {
2850 return ERROR_COMMAND_SYNTAX_ERROR;
2851 }
2852
2853 if (jtag!=NULL)
2854 {
2855 if ((retval=jtag->speed_div(jtag_speed, &speed_khz))!=ERROR_OK)
2856 return retval;
2857 }
2858
2859 if (speed_khz==0)
2860 {
2861 command_print(cmd_ctx, "RCLK - adaptive");
2862 } else
2863 {
2864 command_print(cmd_ctx, "%d kHz", speed_khz);
2865 }
2866 return retval;
2867
2868 }
2869
2870 static int handle_endstate_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
2871 {
2872 tap_state_t state;
2873
2874 if (argc < 1)
2875 {
2876 return ERROR_COMMAND_SYNTAX_ERROR;
2877 }
2878 else
2879 {
2880 state = tap_state_by_name( args[0] );
2881 if( state < 0 ){
2882 command_print( cmd_ctx, "Invalid state name: %s\n", args[0] );
2883 return ERROR_COMMAND_SYNTAX_ERROR;
2884 }
2885 jtag_add_end_state(state);
2886 jtag_execute_queue();
2887 }
2888 command_print(cmd_ctx, "current endstate: %s", tap_state_name(cmd_queue_end_state));
2889
2890 return ERROR_OK;
2891 }
2892
2893 static int handle_jtag_reset_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
2894 {
2895 int trst = -1;
2896 int srst = -1;
2897
2898 if (argc < 2)
2899 {
2900 return ERROR_COMMAND_SYNTAX_ERROR;
2901 }
2902
2903 if (args[0][0] == '1')
2904 trst = 1;
2905 else if (args[0][0] == '0')
2906 trst = 0;
2907 else
2908 {
2909 return ERROR_COMMAND_SYNTAX_ERROR;
2910 }
2911
2912 if (args[1][0] == '1')
2913 srst = 1;
2914 else if (args[1][0] == '0')
2915 srst = 0;
2916 else
2917 {
2918 return ERROR_COMMAND_SYNTAX_ERROR;
2919 }
2920
2921 if (jtag_interface_init(cmd_ctx) != ERROR_OK)
2922 return ERROR_JTAG_INIT_FAILED;
2923
2924 jtag_add_reset(trst, srst);
2925 jtag_execute_queue();
2926
2927 return ERROR_OK;
2928 }
2929
2930 static int handle_runtest_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
2931 {
2932 if (argc < 1)
2933 {
2934 return ERROR_COMMAND_SYNTAX_ERROR;
2935 }
2936
2937 jtag_add_runtest(strtol(args[0], NULL, 0), TAP_INVALID);
2938 jtag_execute_queue();
2939
2940 return ERROR_OK;
2941
2942 }
2943
2944 static int handle_irscan_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
2945 {
2946 int i;
2947 scan_field_t *fields;
2948 jtag_tap_t *tap;
2949 tap_state_t endstate;
2950
2951 if ((argc < 2) || (argc % 2))
2952 {
2953 return ERROR_COMMAND_SYNTAX_ERROR;
2954 }
2955
2956 /* optional "-endstate" */
2957 /* "statename" */
2958 /* at the end of the arguments. */
2959 /* assume none. */
2960 endstate = cmd_queue_end_state;
2961 if( argc >= 4 ){
2962 /* have at least one pair of numbers. */
2963 /* is last pair the magic text? */
2964 if( 0 == strcmp( "-endstate", args[ argc - 2 ] ) ){
2965 const char *cpA;
2966 const char *cpS;
2967 cpA = args[ argc-1 ];
2968 for( endstate = 0 ; endstate < TAP_NUM_STATES ; endstate++ ){
2969 cpS = tap_state_name( endstate );
2970 if( 0 == strcmp( cpA, cpS ) ){
2971 break;
2972 }
2973 }
2974 if( endstate >= TAP_NUM_STATES ){
2975 return ERROR_COMMAND_SYNTAX_ERROR;
2976 } else {
2977 /* found - remove the last 2 args */
2978 argc -= 2;
2979 }
2980 }
2981 }
2982
2983 int num_fields = argc / 2;
2984
2985 fields = malloc(sizeof(scan_field_t) * num_fields);
2986
2987 for (i = 0; i < num_fields; i++)
2988 {
2989 tap = jtag_TapByString( args[i*2] );
2990 if (tap==NULL)
2991 {
2992 command_print( cmd_ctx, "Tap: %s unknown", args[i*2] );
2993 return ERROR_FAIL;
2994 }
2995 int field_size = tap->ir_length;
2996 fields[i].tap = tap;
2997 fields[i].num_bits = field_size;
2998 fields[i].out_value = malloc(CEIL(field_size, 8));
2999 buf_set_u32(fields[i].out_value, 0, field_size, strtoul(args[i*2+1], NULL, 0));
3000 fields[i].in_value = NULL;
3001 }
3002
3003 /* did we have an endstate? */
3004 jtag_add_ir_scan(num_fields, fields, endstate);
3005
3006 int retval=jtag_execute_queue();
3007
3008 for (i = 0; i < num_fields; i++)
3009 free(fields[i].out_value);
3010
3011 free (fields);
3012
3013 return retval;
3014 }
3015
3016 static int Jim_Command_drscan(Jim_Interp *interp, int argc, Jim_Obj *const *args)
3017 {
3018 int retval;
3019 scan_field_t *fields;
3020 int num_fields;
3021 int field_count = 0;
3022 int i, e;
3023 jtag_tap_t *tap;
3024 tap_state_t endstate;
3025
3026 /* args[1] = device
3027 * args[2] = num_bits
3028 * args[3] = hex string
3029 * ... repeat num bits and hex string ...
3030 *
3031 * .. optionally:
3032 * args[N-2] = "-endstate"
3033 * args[N-1] = statename
3034 */
3035 if ((argc < 4) || ((argc % 2)!=0))
3036 {
3037 Jim_WrongNumArgs(interp, 1, args, "wrong arguments");
3038 return JIM_ERR;
3039 }
3040
3041 /* assume no endstate */
3042 endstate = cmd_queue_end_state;
3043 /* validate arguments as numbers */
3044 e = JIM_OK;
3045 for (i = 2; i < argc; i+=2)
3046 {
3047 long bits;
3048 const char *cp;
3049
3050 e = Jim_GetLong(interp, args[i], &bits);
3051 /* If valid - try next arg */
3052 if( e == JIM_OK ){
3053 continue;
3054 }
3055
3056 /* Not valid.. are we at the end? */
3057 if ( ((i+2) != argc) ){
3058 /* nope, then error */
3059 return e;
3060 }
3061
3062 /* it could be: "-endstate FOO" */
3063
3064 /* get arg as a string. */
3065 cp = Jim_GetString( args[i], NULL );
3066 /* is it the magic? */
3067 if( 0 == strcmp( "-endstate", cp ) ){
3068 /* is the statename valid? */
3069 cp = Jim_GetString( args[i+1], NULL );
3070
3071 /* see if it is a valid state name */
3072 endstate = tap_state_by_name(cp);
3073 if( endstate < 0 ){
3074 /* update the error message */
3075 Jim_SetResult_sprintf(interp,"endstate: %s invalid", cp );
3076 } else {
3077 /* valid - so clear the error */
3078 e = JIM_OK;
3079 /* and remove the last 2 args */
3080 argc -= 2;
3081 }
3082 }
3083
3084 /* Still an error? */
3085 if( e != JIM_OK ){
3086 return e; /* too bad */
3087 }
3088 } /* validate args */
3089
3090 tap = jtag_TapByJimObj( interp, args[1] );
3091 if( tap == NULL ){
3092 return JIM_ERR;
3093 }
3094
3095 num_fields=(argc-2)/2;
3096 fields = malloc(sizeof(scan_field_t) * num_fields);
3097 for (i = 2; i < argc; i+=2)
3098 {
3099 long bits;
3100 int len;
3101 const char *str;
3102
3103 Jim_GetLong(interp, args[i], &bits);
3104 str = Jim_GetString(args[i+1], &len);
3105
3106 fields[field_count].tap = tap;
3107 fields[field_count].num_bits = bits;
3108 fields[field_count].out_value = malloc(CEIL(bits, 8));
3109 str_to_buf(str, len, fields[field_count].out_value, bits, 0);
3110 fields[field_count].in_value = fields[field_count].out_value;
3111 field_count++;
3112 }
3113
3114 jtag_add_dr_scan(num_fields, fields, endstate);
3115
3116 retval = jtag_execute_queue();
3117 if (retval != ERROR_OK)
3118 {
3119 Jim_SetResultString(interp, "drscan: jtag execute failed",-1);
3120 return JIM_ERR;
3121 }
3122
3123 field_count=0;
3124 Jim_Obj *list = Jim_NewListObj(interp, NULL, 0);
3125 for (i = 2; i < argc; i+=2)
3126 {
3127 long bits;
3128 char *str;
3129
3130 Jim_GetLong(interp, args[i], &bits);
3131 str = buf_to_str(fields[field_count].in_value, bits, 16);
3132 free(fields[field_count].out_value);
3133
3134 Jim_ListAppendElement(interp, list, Jim_NewStringObj(interp, str, strlen(str)));
3135 free(str);
3136 field_count++;
3137 }
3138
3139 Jim_SetResult(interp, list);
3140
3141 free(fields);
3142
3143 return JIM_OK;
3144 }
3145
3146
3147 static int Jim_Command_flush_count(Jim_Interp *interp, int argc, Jim_Obj *const *args)
3148 {
3149 Jim_SetResult(interp, Jim_NewIntObj(interp, jtag_flush_queue_count));
3150
3151 return JIM_OK;
3152 }
3153
3154
3155 static int handle_verify_ircapture_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
3156 {
3157 if (argc == 1)
3158 {
3159 if (strcmp(args[0], "enable") == 0)
3160 {
3161 jtag_verify_capture_ir = 1;
3162 }
3163 else if (strcmp(args[0], "disable") == 0)
3164 {
3165 jtag_verify_capture_ir = 0;
3166 } else
3167 {
3168 return ERROR_COMMAND_SYNTAX_ERROR;
3169 }
3170 } else if (argc != 0)
3171 {
3172 return ERROR_COMMAND_SYNTAX_ERROR;
3173 }
3174
3175 command_print(cmd_ctx, "verify Capture-IR is %s", (jtag_verify_capture_ir) ? "enabled": "disabled");
3176
3177 return ERROR_OK;
3178 }
3179
3180 static int handle_verify_jtag_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
3181 {
3182 if (argc == 1)
3183 {
3184 if (strcmp(args[0], "enable") == 0)
3185 {
3186 jtag_verify = 1;
3187 }
3188 else if (strcmp(args[0], "disable") == 0)
3189 {
3190 jtag_verify = 0;
3191 } else
3192 {
3193 return ERROR_COMMAND_SYNTAX_ERROR;
3194 }
3195 } else if (argc != 0)
3196 {
3197 return ERROR_COMMAND_SYNTAX_ERROR;
3198 }
3199
3200 command_print(cmd_ctx, "verify jtag capture is %s", (jtag_verify) ? "enabled": "disabled");
3201
3202 return ERROR_OK;
3203 }
3204
3205
3206 int jtag_power_dropout(int *dropout)
3207 {
3208 return jtag->power_dropout(dropout);
3209 }
3210
3211 int jtag_srst_asserted(int *srst_asserted)
3212 {
3213 return jtag->srst_asserted(srst_asserted);
3214 }
3215
3216 void jtag_tap_handle_event( jtag_tap_t * tap, enum jtag_tap_event e)
3217 {
3218 jtag_tap_event_action_t * jteap;
3219 int done;
3220
3221 jteap = tap->event_action;
3222
3223 done = 0;
3224 while (jteap) {
3225 if (jteap->event == e) {
3226 done = 1;
3227 LOG_DEBUG( "JTAG tap: %s event: %d (%s) action: %s\n",
3228 tap->dotted_name,
3229 e,
3230 Jim_Nvp_value2name_simple(nvp_jtag_tap_event, e)->name,
3231 Jim_GetString(jteap->body, NULL) );
3232 if (Jim_EvalObj(interp, jteap->body) != JIM_OK) {
3233 Jim_PrintErrorMessage(interp);
3234 }
3235 }
3236
3237 jteap = jteap->next;
3238 }
3239
3240 if (!done) {
3241 LOG_DEBUG( "event %d %s - no action",
3242 e,
3243 Jim_Nvp_value2name_simple( nvp_jtag_tap_event, e)->name);
3244 }
3245 }
3246
3247 /*-----<Cable Helper API>---------------------------------------*/
3248
3249 /* these Cable Helper API functions are all documented in the jtag.h header file,
3250 using a Doxygen format. And since Doxygen's configuration file "Doxyfile",
3251 is setup to prefer its docs in the header file, no documentation is here, for
3252 if it were, it would have to be doubly maintained.
3253 */
3254
3255 /**
3256 * @see tap_set_state() and tap_get_state() accessors.
3257 * Actual name is not important since accessors hide it.
3258 */
3259 static tap_state_t state_follower = TAP_RESET;
3260
3261 void tap_set_state_impl( tap_state_t new_state )
3262 {
3263 /* this is the state we think the TAPs are in now, was cur_state */
3264 state_follower = new_state;
3265 }
3266
3267 tap_state_t tap_get_state()
3268 {
3269 return state_follower;
3270 }
3271
3272 /**
3273 * @see tap_set_end_state() and tap_get_end_state() accessors.
3274 * Actual name is not important because accessors hide it.
3275 */
3276 static tap_state_t end_state_follower = TAP_RESET;
3277
3278 void tap_set_end_state( tap_state_t new_end_state )
3279 {
3280 /* this is the state we think the TAPs will be in at completion of the
3281 current TAP operation, was end_state
3282 */
3283 end_state_follower = new_end_state;
3284 }
3285
3286 tap_state_t tap_get_end_state()
3287 {
3288 return end_state_follower;
3289 }
3290
3291
3292 int tap_move_ndx( tap_state_t astate )
3293 {
3294 /* given a stable state, return the index into the tms_seqs[] array within tap_get_tms_path() */
3295
3296 int ndx;
3297
3298 switch( astate )
3299 {
3300 case TAP_RESET: ndx = 0; break;
3301 case TAP_DRSHIFT: ndx = 2; break;
3302 case TAP_DRPAUSE: ndx = 3; break;
3303 case TAP_IDLE: ndx = 1; break;
3304 case TAP_IRSHIFT: ndx = 4; break;
3305 case TAP_IRPAUSE: ndx = 5; break;
3306 default:
3307 LOG_ERROR( "fatal: unstable state \"%s\" used in tap_move_ndx()", tap_state_name(astate) );
3308 exit(1);
3309 }
3310
3311 return ndx;
3312 }
3313
3314
3315 /* tap_move[i][j]: tap movement command to go from state i to state j
3316 * 0: Test-Logic-Reset
3317 * 1: Run-Test/Idle
3318 * 2: Shift-DR
3319 * 3: Pause-DR
3320 * 4: Shift-IR
3321 * 5: Pause-IR
3322 *
3323 * DRSHIFT->DRSHIFT and IRSHIFT->IRSHIFT have to be caught in interface specific code
3324 */
3325 struct tms_sequences
3326 {
3327 u8 bits;
3328 u8 bit_count;
3329
3330 };
3331
3332 /*
3333 * These macros allow us to specify TMS state transitions by bits rather than hex bytes.
3334 * Read the bits from LSBit first to MSBit last (right-to-left).
3335 */
3336 #define HEX__(n) 0x##n##LU
3337
3338 #define B8__(x) \
3339 (((x) & 0x0000000FLU)?(1<<0):0) \
3340 +(((x) & 0x000000F0LU)?(1<<1):0) \
3341 +(((x) & 0x00000F00LU)?(1<<2):0) \
3342 +(((x) & 0x0000F000LU)?(1<<3):0) \
3343 +(((x) & 0x000F0000LU)?(1<<4):0) \
3344 +(((x) & 0x00F00000LU)?(1<<5):0) \
3345 +(((x) & 0x0F000000LU)?(1<<6):0) \
3346 +(((x) & 0xF0000000LU)?(1<<7):0)
3347
3348 #define B8(bits,count) { ((u8)B8__(HEX__(bits))), (count) }
3349
3350 static const struct tms_sequences old_tms_seqs[6][6] = /* [from_state_ndx][to_state_ndx] */
3351 {
3352 /* value clocked to TMS to move from one of six stable states to another.
3353 * N.B. OOCD clocks TMS from LSB first, so read these right-to-left.
3354 * N.B. These values are tightly bound to the table in tap_get_tms_path_len().
3355 * N.B. Reset only needs to be 0b11111, but in JLink an even byte of 1's is more stable.
3356 * These extra ones cause no TAP state problem, because we go into reset and stay in reset.
3357 */
3358
3359
3360
3361 /* to state: */
3362 /* RESET IDLE DRSHIFT DRPAUSE IRSHIFT IRPAUSE */ /* from state: */
3363 { B8(1111111,7), B8(0000000,7), B8(0010111,7), B8(0001010,7), B8(0011011,7), B8(0010110,7) }, /* RESET */
3364 { B8(1111111,7), B8(0000000,7), B8(0100101,7), B8(0000101,7), B8(0101011,7), B8(0001011,7) }, /* IDLE */
3365 { B8(1111111,7), B8(0110001,7), B8(0000000,7), B8(0000001,7), B8(0001111,7), B8(0101111,7) }, /* DRSHIFT */
3366 { B8(1111111,7), B8(0110000,7), B8(0100000,7), B8(0010111,7), B8(0011110,7), B8(0101111,7) }, /* DRPAUSE */
3367 { B8(1111111,7), B8(0110001,7), B8(0000111,7), B8(0010111,7), B8(0000000,7), B8(0000001,7) }, /* IRSHIFT */
3368 { B8(1111111,7), B8(0110000,7), B8(0011100,7), B8(0010111,7), B8(0011110,7), B8(0101111,7) }, /* IRPAUSE */
3369 };
3370
3371
3372
3373 static const struct tms_sequences short_tms_seqs[6][6] = /* [from_state_ndx][to_state_ndx] */
3374 {
3375 /* this is the table submitted by Jeff Williams on 3/30/2009 with this comment:
3376
3377 OK, I added Peter's version of the state table, and it works OK for
3378 me on MC1322x. I've recreated the jlink portion of patch with this
3379 new state table. His changes to my state table are pretty minor in
3380 terms of total transitions, but Peter feels that his version fixes
3381 some long-standing problems.
3382 Jeff
3383
3384 I added the bit count into the table, reduced RESET column to 7 bits from 8.
3385 Dick
3386
3387 state specific comments:
3388 ------------------------
3389 *->RESET tried the 5 bit reset and it gave me problems, 7 bits seems to
3390 work better on ARM9 with ft2232 driver. (Dick)
3391
3392 RESET->DRSHIFT add 1 extra clock cycles in the RESET state before advancing.
3393 needed on ARM9 with ft2232 driver. (Dick)
3394
3395 RESET->IRSHIFT add 1 extra clock cycles in the RESET state before advancing.
3396 needed on ARM9 with ft2232 driver. (Dick)
3397 */
3398
3399 /* to state: */
3400 /* RESET IDLE DRSHIFT DRPAUSE IRSHIFT IRPAUSE */ /* from state: */
3401 { B8(1111111,7), B8(0000000,7), B8(0010111,7), B8(0001010,7), B8(0011011,7), B8(0010110,7) }, /* RESET */
3402 { B8(1111111,7), B8(0000000,7), B8(001,3), B8(0101,4), B8(0011,4), B8(01011,5) }, /* IDLE */
3403 { B8(1111111,7), B8(011,3), B8(00111,5), B8(01,2), B8(001111,6), B8(0101111,7) }, /* DRSHIFT */
3404 { B8(1111111,7), B8(011,3), B8(01,2), B8(0,1), B8(001111,6), B8(0101111,7) }, /* DRPAUSE */
3405 { B8(1111111,7), B8(011,3), B8(00111,5), B8(010111,6), B8(001111,6), B8(01,2) }, /* IRSHIFT */
3406 { B8(1111111,7), B8(011,3), B8(00111,5), B8(010111,6), B8(01,2), B8(0,1) } /* IRPAUSE */
3407
3408 };
3409
3410 typedef const struct tms_sequences tms_table[6][6];
3411
3412 static tms_table *tms_seqs=&short_tms_seqs;
3413
3414 int tap_get_tms_path( tap_state_t from, tap_state_t to )
3415 {
3416 return (*tms_seqs)[tap_move_ndx(from)][tap_move_ndx(to)].bits;
3417 }
3418
3419
3420 int tap_get_tms_path_len( tap_state_t from, tap_state_t to )
3421 {
3422 return (*tms_seqs)[tap_move_ndx(from)][tap_move_ndx(to)].bit_count;
3423 }
3424
3425
3426 bool tap_is_state_stable(tap_state_t astate)
3427 {
3428 bool is_stable;
3429
3430 /* A switch() is used because it is symbol dependent
3431 (not value dependent like an array), and can also check bounds.
3432 */
3433 switch( astate )
3434 {
3435 case TAP_RESET:
3436 case TAP_IDLE:
3437 case TAP_DRSHIFT:
3438 case TAP_DRPAUSE:
3439 case TAP_IRSHIFT:
3440 case TAP_IRPAUSE:
3441 is_stable = true;
3442 break;
3443 default:
3444 is_stable = false;
3445 }
3446
3447 return is_stable;
3448 }
3449
3450 tap_state_t tap_state_transition(tap_state_t cur_state, bool tms)
3451 {
3452 tap_state_t new_state;
3453
3454 /* A switch is used because it is symbol dependent and not value dependent
3455 like an array. Also it can check for out of range conditions.
3456 */
3457
3458 if (tms)
3459 {
3460 switch (cur_state)
3461 {
3462 case TAP_RESET:
3463 new_state = cur_state;
3464 break;
3465 case TAP_IDLE:
3466 case TAP_DRUPDATE:
3467 case TAP_IRUPDATE:
3468 new_state = TAP_DRSELECT;
3469 break;
3470 case TAP_DRSELECT:
3471 new_state = TAP_IRSELECT;
3472 break;
3473 case TAP_DRCAPTURE:
3474 case TAP_DRSHIFT:
3475 new_state = TAP_DREXIT1;
3476 break;
3477 case TAP_DREXIT1:
3478 case TAP_DREXIT2:
3479 new_state = TAP_DRUPDATE;
3480 break;
3481 case TAP_DRPAUSE:
3482 new_state = TAP_DREXIT2;
3483 break;
3484 case TAP_IRSELECT:
3485 new_state = TAP_RESET;
3486 break;
3487 case TAP_IRCAPTURE:
3488 case TAP_IRSHIFT:
3489 new_state = TAP_IREXIT1;
3490 break;
3491 case TAP_IREXIT1:
3492 case TAP_IREXIT2:
3493 new_state = TAP_IRUPDATE;
3494 break;
3495 case TAP_IRPAUSE:
3496 new_state = TAP_IREXIT2;
3497 break;
3498 default:
3499 LOG_ERROR( "fatal: invalid argument cur_state=%d", cur_state );
3500 exit(1);
3501 break;
3502 }
3503 }
3504 else
3505 {
3506 switch (cur_state)
3507 {
3508 case TAP_RESET:
3509 case TAP_IDLE:
3510 case TAP_DRUPDATE:
3511 case TAP_IRUPDATE:
3512 new_state = TAP_IDLE;
3513 break;
3514 case TAP_DRSELECT:
3515 new_state = TAP_DRCAPTURE;
3516 break;
3517 case TAP_DRCAPTURE:
3518 case TAP_DRSHIFT:
3519 case TAP_DREXIT2:
3520 new_state = TAP_DRSHIFT;
3521 break;
3522 case TAP_DREXIT1:
3523 case TAP_DRPAUSE:
3524 new_state = TAP_DRPAUSE;
3525 break;
3526 case TAP_IRSELECT:
3527 new_state = TAP_IRCAPTURE;
3528 break;
3529 case TAP_IRCAPTURE:
3530 case TAP_IRSHIFT:
3531 case TAP_IREXIT2:
3532 new_state = TAP_IRSHIFT;
3533 break;
3534 case TAP_IREXIT1:
3535 case TAP_IRPAUSE:
3536 new_state = TAP_IRPAUSE;
3537 break;
3538 default:
3539 LOG_ERROR( "fatal: invalid argument cur_state=%d", cur_state );
3540 exit(1);
3541 break;
3542 }
3543 }
3544
3545 return new_state;
3546 }
3547
3548 const char* tap_state_name(tap_state_t state)
3549 {
3550 const char* ret;
3551
3552 switch( state )
3553 {
3554 case TAP_RESET: ret = "RESET"; break;
3555 case TAP_IDLE: ret = "RUN/IDLE"; break;
3556 case TAP_DRSELECT: ret = "DRSELECT"; break;
3557 case TAP_DRCAPTURE: ret = "DRCAPTURE"; break;
3558 case TAP_DRSHIFT: ret = "DRSHIFT"; break;
3559 case TAP_DREXIT1: ret = "DREXIT1"; break;
3560 case TAP_DRPAUSE: ret = "DRPAUSE"; break;
3561 case TAP_DREXIT2: ret = "DREXIT2"; break;
3562 case TAP_DRUPDATE: ret = "DRUPDATE"; break;
3563 case TAP_IRSELECT: ret = "IRSELECT"; break;
3564 case TAP_IRCAPTURE: ret = "IRCAPTURE"; break;
3565 case TAP_IRSHIFT: ret = "IRSHIFT"; break;
3566 case TAP_IREXIT1: ret = "IREXIT1"; break;
3567 case TAP_IRPAUSE: ret = "IRPAUSE"; break;
3568 case TAP_IREXIT2: ret = "IREXIT2"; break;
3569 case TAP_IRUPDATE: ret = "IRUPDATE"; break;
3570 default: ret = "???";
3571 }
3572
3573 return ret;
3574 }
3575
3576 static tap_state_t tap_state_by_name( const char *name )
3577 {
3578 tap_state_t x;
3579
3580 for( x = 0 ; x < TAP_NUM_STATES ; x++ ){
3581 /* be nice to the human */
3582 if( 0 == strcasecmp( name, tap_state_name(x) ) ){
3583 return x;
3584 }
3585 }
3586 /* not found */
3587 return TAP_INVALID;
3588 }
3589
3590 #ifdef _DEBUG_JTAG_IO_
3591
3592 #define JTAG_DEBUG_STATE_APPEND(buf, len, bit) \
3593 do { buf[len] = bit ? '1' : '0'; } while(0)
3594 #define JTAG_DEBUG_STATE_PRINT(a, b, astr, bstr) \
3595 DEBUG_JTAG_IO("TAP/SM: %9s -> %5s\tTMS: %s\tTDI: %s", \
3596 tap_state_name(a), tap_state_name(b), astr, bstr)
3597
3598 tap_state_t jtag_debug_state_machine(const void *tms_buf, const void *tdi_buf,
3599 unsigned tap_bits, tap_state_t next_state)
3600 {
3601 const u8 *tms_buffer;
3602 const u8 *tdi_buffer;
3603 unsigned tap_bytes;
3604 unsigned cur_byte;
3605 unsigned cur_bit;
3606
3607 unsigned tap_out_bits;
3608 char tms_str[33];
3609 char tdi_str[33];
3610
3611 tap_state_t last_state;
3612
3613 // set startstate (and possibly last, if tap_bits == 0)
3614 last_state = next_state;
3615 DEBUG_JTAG_IO("TAP/SM: START state: %s", tap_state_name(next_state));
3616
3617 tms_buffer = (const u8 *)tms_buf;
3618 tdi_buffer = (const u8 *)tdi_buf;
3619
3620 tap_bytes = TAP_SCAN_BYTES(tap_bits);
3621 DEBUG_JTAG_IO("TAP/SM: TMS bits: %u (bytes: %u)", tap_bits, tap_bytes);
3622
3623 tap_out_bits = 0;
3624 for(cur_byte = 0; cur_byte < tap_bytes; cur_byte++)
3625 {
3626 for(cur_bit = 0; cur_bit < 8; cur_bit++)
3627 {
3628 // make sure we do not run off the end of the buffers
3629 unsigned tap_bit = cur_byte * 8 + cur_bit;
3630 if (tap_bit == tap_bits)
3631 break;
3632
3633 // check and save TMS bit
3634 tap_bit = !!(tms_buffer[cur_byte] & (1 << cur_bit));
3635 JTAG_DEBUG_STATE_APPEND(tms_str, tap_out_bits, tap_bit);
3636
3637 // use TMS bit to find the next TAP state
3638 next_state = tap_state_transition(last_state, tap_bit);
3639
3640 // check and store TDI bit
3641 tap_bit = !!(tdi_buffer[cur_byte] & (1 << cur_bit));
3642 JTAG_DEBUG_STATE_APPEND(tdi_str, tap_out_bits, tap_bit);
3643
3644 // increment TAP bits
3645 tap_out_bits++;
3646
3647 // Only show TDO bits on state transitions, or
3648 // after some number of bits in the same state.
3649 if ((next_state == last_state) && (tap_out_bits < 32))
3650 continue;
3651
3652 // terminate strings and display state transition
3653 tms_str[tap_out_bits] = tdi_str[tap_out_bits] = 0;
3654 JTAG_DEBUG_STATE_PRINT(last_state, next_state, tms_str, tdi_str);
3655
3656 // reset state
3657 last_state = next_state;
3658 tap_out_bits = 0;
3659 }
3660 }
3661
3662 if (tap_out_bits)
3663 {
3664 // terminate strings and display state transition
3665 tms_str[tap_out_bits] = tdi_str[tap_out_bits] = 0;
3666 JTAG_DEBUG_STATE_PRINT(last_state, next_state, tms_str, tdi_str);
3667 }
3668
3669 DEBUG_JTAG_IO("TAP/SM: FINAL state: %s", tap_state_name(next_state));
3670
3671 return next_state;
3672 }
3673 #endif // _DEBUG_JTAG_IO_
3674
3675 #ifndef HAVE_JTAG_MINIDRIVER_H
3676 void jtag_alloc_in_value32(scan_field_t *field)
3677 {
3678 field->in_value=(u8 *)cmd_queue_alloc(4);
3679 }
3680 #endif
3681
3682 static int handle_tms_sequence_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
3683 {
3684 if (argc == 1)
3685 {
3686 if (strcmp(args[0], "short") == 0)
3687 {
3688 tms_seqs=&short_tms_seqs;
3689 }
3690 else if (strcmp(args[0], "long") == 0)
3691 {
3692 tms_seqs=&old_tms_seqs;
3693 } else
3694 {
3695 return ERROR_COMMAND_SYNTAX_ERROR;
3696 }
3697 } else if (argc != 0)
3698 {
3699 return ERROR_COMMAND_SYNTAX_ERROR;
3700 }
3701
3702 command_print(cmd_ctx, "tms sequence is %s", (tms_seqs==&short_tms_seqs) ? "short": "long");
3703
3704 return ERROR_OK;
3705 }
3706
3707 /*-----</Cable Helper API>--------------------------------------*/

Linking to existing account procedure

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

SSH host keys fingerprints

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