Updates to the initial scanchain validation code:
[openocd.git] / src / jtag / core.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 * Copyright (C) 2009 Zachary T Welch *
13 * zw@superlucidity.net *
14 * *
15 * This program is free software; you can redistribute it and/or modify *
16 * it under the terms of the GNU General Public License as published by *
17 * the Free Software Foundation; either version 2 of the License, or *
18 * (at your option) any later version. *
19 * *
20 * This program is distributed in the hope that it will be useful, *
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
23 * GNU General Public License for more details. *
24 * *
25 * You should have received a copy of the GNU General Public License *
26 * along with this program; if not, write to the *
27 * Free Software Foundation, Inc., *
28 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
29 ***************************************************************************/
30 #ifdef HAVE_CONFIG_H
31 #include "config.h"
32 #endif
33
34 #include "jtag.h"
35 #include "minidriver.h"
36 #include "interface.h"
37
38 #ifdef HAVE_STRINGS_H
39 #include <strings.h>
40 #endif
41
42
43 /// The number of JTAG queue flushes (for profiling and debugging purposes).
44 static int jtag_flush_queue_count;
45
46 static void jtag_add_scan_check(void (*jtag_add_scan)(int in_num_fields, const scan_field_t *in_fields, tap_state_t state),
47 int in_num_fields, scan_field_t *in_fields, tap_state_t state);
48
49 /**
50 * The jtag_error variable is set when an error occurs while executing
51 * the queue. Application code may set this using jtag_set_error(),
52 * when an error occurs during processing that should be reported during
53 * jtag_execute_queue().
54 *
55 * Tts value may be checked with jtag_get_error() and cleared with
56 * jtag_error_clear(). This value is returned (and cleared) by
57 * jtag_execute_queue().
58 */
59 static int jtag_error = ERROR_OK;
60
61 static const char *jtag_event_strings[] =
62 {
63 [JTAG_TRST_ASSERTED] = "TAP reset",
64 [JTAG_TAP_EVENT_ENABLE] = "TAP enabled",
65 [JTAG_TAP_EVENT_POST_RESET] = "TAP post reset",
66 [JTAG_TAP_EVENT_DISABLE] = "TAP disabled",
67 };
68
69 /*
70 * JTAG adapters must initialize with TRST and SRST de-asserted
71 * (they're negative logic, so that means *high*)
72 */
73 static int jtag_trst = 0;
74 static int jtag_srst = 0;
75
76 /**
77 * List all TAPs that have been created.
78 */
79 static jtag_tap_t *__jtag_all_taps = NULL;
80 /**
81 * The number of TAPs in the __jtag_all_taps list, used to track the
82 * assigned chain position to new TAPs
83 */
84 static unsigned jtag_num_taps = 0;
85
86 static enum reset_types jtag_reset_config = RESET_NONE;
87 static tap_state_t cmd_queue_end_state = TAP_RESET;
88 tap_state_t cmd_queue_cur_state = TAP_RESET;
89
90 static bool jtag_verify_capture_ir = true;
91 static int jtag_verify = 1;
92
93 /* how long the OpenOCD should wait before attempting JTAG communication after reset lines deasserted (in ms) */
94 static int jtag_nsrst_delay = 0; /* default to no nSRST delay */
95 static int jtag_ntrst_delay = 0; /* default to no nTRST delay */
96
97 typedef struct jtag_event_callback_s
98 {
99 jtag_event_handler_t callback;
100 void* priv;
101 struct jtag_event_callback_s* next;
102 } jtag_event_callback_t;
103
104 /* callbacks to inform high-level handlers about JTAG state changes */
105 static jtag_event_callback_t *jtag_event_callbacks;
106
107 /* speed in kHz*/
108 static int speed_khz = 0;
109 /* speed to fallback to when RCLK is requested but not supported */
110 static int rclk_fallback_speed_khz = 0;
111 static enum {CLOCK_MODE_SPEED, CLOCK_MODE_KHZ, CLOCK_MODE_RCLK} clock_mode;
112 static int jtag_speed = 0;
113
114 static struct jtag_interface_s *jtag = NULL;
115
116 /* configuration */
117 jtag_interface_t *jtag_interface = NULL;
118
119 void jtag_set_error(int error)
120 {
121 if ((error == ERROR_OK) || (jtag_error != ERROR_OK))
122 return;
123 jtag_error = error;
124 }
125 int jtag_get_error(void)
126 {
127 return jtag_error;
128 }
129 int jtag_error_clear(void)
130 {
131 int temp = jtag_error;
132 jtag_error = ERROR_OK;
133 return temp;
134 }
135
136
137 jtag_tap_t *jtag_all_taps(void)
138 {
139 return __jtag_all_taps;
140 };
141
142 unsigned jtag_tap_count(void)
143 {
144 return jtag_num_taps;
145 }
146
147 unsigned jtag_tap_count_enabled(void)
148 {
149 jtag_tap_t *t = jtag_all_taps();
150 unsigned n = 0;
151 while (t)
152 {
153 if (t->enabled)
154 n++;
155 t = t->next_tap;
156 }
157 return n;
158 }
159
160 /// Append a new TAP to the chain of all taps.
161 void jtag_tap_add(struct jtag_tap_s *t)
162 {
163 t->abs_chain_position = jtag_num_taps++;
164
165 jtag_tap_t **tap = &__jtag_all_taps;
166 while (*tap != NULL)
167 tap = &(*tap)->next_tap;
168 *tap = t;
169 }
170
171 /* returns a pointer to the n-th device in the scan chain */
172 static inline jtag_tap_t *jtag_tap_by_position(unsigned n)
173 {
174 jtag_tap_t *t = jtag_all_taps();
175
176 while (t && n-- > 0)
177 t = t->next_tap;
178
179 return t;
180 }
181
182 jtag_tap_t *jtag_tap_by_string(const char *s)
183 {
184 /* try by name first */
185 jtag_tap_t *t = jtag_all_taps();
186
187 while (t)
188 {
189 if (0 == strcmp(t->dotted_name, s))
190 return t;
191 t = t->next_tap;
192 }
193
194 /* no tap found by name, so try to parse the name as a number */
195 unsigned n;
196 if (parse_uint(s, &n) != ERROR_OK)
197 return NULL;
198
199 /* FIXME remove this numeric fallback code late June 2010, along
200 * with all info in the User's Guide that TAPs have numeric IDs.
201 * Also update "scan_chain" output to not display the numbers.
202 */
203 t = jtag_tap_by_position(n);
204 if (t)
205 LOG_WARNING("Specify TAP '%s' by name, not number %u",
206 t->dotted_name, n);
207
208 return t;
209 }
210
211 jtag_tap_t *jtag_tap_by_jim_obj(Jim_Interp *interp, Jim_Obj *o)
212 {
213 const char *cp = Jim_GetString(o, NULL);
214 jtag_tap_t *t = cp ? jtag_tap_by_string(cp) : NULL;
215 if (NULL == cp)
216 cp = "(unknown)";
217 if (NULL == t)
218 Jim_SetResult_sprintf(interp, "Tap '%s' could not be found", cp);
219 return t;
220 }
221
222 jtag_tap_t* jtag_tap_next_enabled(jtag_tap_t* p)
223 {
224 p = p ? p->next_tap : jtag_all_taps();
225 while (p)
226 {
227 if (p->enabled)
228 return p;
229 p = p->next_tap;
230 }
231 return NULL;
232 }
233
234 const char *jtag_tap_name(const jtag_tap_t *tap)
235 {
236 return (tap == NULL) ? "(unknown)" : tap->dotted_name;
237 }
238
239
240 int jtag_register_event_callback(jtag_event_handler_t callback, void *priv)
241 {
242 jtag_event_callback_t **callbacks_p = &jtag_event_callbacks;
243
244 if (callback == NULL)
245 {
246 return ERROR_INVALID_ARGUMENTS;
247 }
248
249 if (*callbacks_p)
250 {
251 while ((*callbacks_p)->next)
252 callbacks_p = &((*callbacks_p)->next);
253 callbacks_p = &((*callbacks_p)->next);
254 }
255
256 (*callbacks_p) = malloc(sizeof(jtag_event_callback_t));
257 (*callbacks_p)->callback = callback;
258 (*callbacks_p)->priv = priv;
259 (*callbacks_p)->next = NULL;
260
261 return ERROR_OK;
262 }
263
264 int jtag_unregister_event_callback(jtag_event_handler_t callback, void *priv)
265 {
266 jtag_event_callback_t **callbacks_p;
267 jtag_event_callback_t **next;
268
269 if (callback == NULL)
270 {
271 return ERROR_INVALID_ARGUMENTS;
272 }
273
274 for (callbacks_p = &jtag_event_callbacks;
275 *callbacks_p != NULL;
276 callbacks_p = next)
277 {
278 next = &((*callbacks_p)->next);
279
280 if ((*callbacks_p)->priv != priv)
281 continue;
282
283 if ((*callbacks_p)->callback == callback)
284 {
285 free(*callbacks_p);
286 *callbacks_p = *next;
287 }
288 }
289
290 return ERROR_OK;
291 }
292
293 int jtag_call_event_callbacks(enum jtag_event event)
294 {
295 jtag_event_callback_t *callback = jtag_event_callbacks;
296
297 LOG_DEBUG("jtag event: %s", jtag_event_strings[event]);
298
299 while (callback)
300 {
301 jtag_event_callback_t *next;
302
303 /* callback may remove itself */
304 next = callback->next;
305 callback->callback(event, callback->priv);
306 callback = next;
307 }
308
309 return ERROR_OK;
310 }
311
312 static void jtag_checks(void)
313 {
314 assert(jtag_trst == 0);
315 }
316
317 static void jtag_prelude(tap_state_t state)
318 {
319 jtag_checks();
320
321 assert(state != TAP_INVALID);
322
323 cmd_queue_cur_state = state;
324 }
325
326 void jtag_alloc_in_value32(scan_field_t *field)
327 {
328 interface_jtag_alloc_in_value32(field);
329 }
330
331 void jtag_add_ir_scan_noverify(int in_count, const scan_field_t *in_fields,
332 tap_state_t state)
333 {
334 jtag_prelude(state);
335
336 int retval = interface_jtag_add_ir_scan(in_count, in_fields, state);
337 jtag_set_error(retval);
338 }
339
340
341 void jtag_add_ir_scan(int in_num_fields, scan_field_t *in_fields, tap_state_t state)
342 {
343 assert(state != TAP_RESET);
344
345 if (jtag_verify && jtag_verify_capture_ir)
346 {
347 /* 8 x 32 bit id's is enough for all invocations */
348
349 for (int j = 0; j < in_num_fields; j++)
350 {
351 /* if we are to run a verification of the ir scan, we need to get the input back.
352 * We may have to allocate space if the caller didn't ask for the input back.
353 */
354 in_fields[j].check_value = in_fields[j].tap->expected;
355 in_fields[j].check_mask = in_fields[j].tap->expected_mask;
356 }
357 jtag_add_scan_check(jtag_add_ir_scan_noverify, in_num_fields, in_fields, state);
358 } else
359 {
360 jtag_add_ir_scan_noverify(in_num_fields, in_fields, state);
361 }
362 }
363
364 void jtag_add_plain_ir_scan(int in_num_fields, const scan_field_t *in_fields,
365 tap_state_t state)
366 {
367 assert(state != TAP_RESET);
368
369 jtag_prelude(state);
370
371 int retval = interface_jtag_add_plain_ir_scan(
372 in_num_fields, in_fields, state);
373 jtag_set_error(retval);
374 }
375
376 void jtag_add_callback(jtag_callback1_t f, jtag_callback_data_t data0)
377 {
378 interface_jtag_add_callback(f, data0);
379 }
380
381 void jtag_add_callback4(jtag_callback_t f, jtag_callback_data_t data0,
382 jtag_callback_data_t data1, jtag_callback_data_t data2,
383 jtag_callback_data_t data3)
384 {
385 interface_jtag_add_callback4(f, data0, data1, data2, data3);
386 }
387
388 static int jtag_check_value_inner(uint8_t *captured, uint8_t *in_check_value,
389 uint8_t *in_check_mask, int num_bits);
390
391 static int jtag_check_value_mask_callback(jtag_callback_data_t data0, jtag_callback_data_t data1, jtag_callback_data_t data2, jtag_callback_data_t data3)
392 {
393 return jtag_check_value_inner((uint8_t *)data0, (uint8_t *)data1, (uint8_t *)data2, (int)data3);
394 }
395
396 static void jtag_add_scan_check(void (*jtag_add_scan)(int in_num_fields, const scan_field_t *in_fields, tap_state_t state),
397 int in_num_fields, scan_field_t *in_fields, tap_state_t state)
398 {
399 for (int i = 0; i < in_num_fields; i++)
400 {
401 struct scan_field_s *field = &in_fields[i];
402 field->allocated = 0;
403 field->modified = 0;
404 if (field->check_value || field->in_value)
405 continue;
406 interface_jtag_add_scan_check_alloc(field);
407 field->modified = 1;
408 }
409
410 jtag_add_scan(in_num_fields, in_fields, state);
411
412 for (int i = 0; i < in_num_fields; i++)
413 {
414 if ((in_fields[i].check_value != NULL) && (in_fields[i].in_value != NULL))
415 {
416 /* this is synchronous for a minidriver */
417 jtag_add_callback4(jtag_check_value_mask_callback, (jtag_callback_data_t)in_fields[i].in_value,
418 (jtag_callback_data_t)in_fields[i].check_value,
419 (jtag_callback_data_t)in_fields[i].check_mask,
420 (jtag_callback_data_t)in_fields[i].num_bits);
421 }
422 if (in_fields[i].allocated)
423 {
424 free(in_fields[i].in_value);
425 }
426 if (in_fields[i].modified)
427 {
428 in_fields[i].in_value = NULL;
429 }
430 }
431 }
432
433 void jtag_add_dr_scan_check(int in_num_fields, scan_field_t *in_fields, tap_state_t state)
434 {
435 if (jtag_verify)
436 {
437 jtag_add_scan_check(jtag_add_dr_scan, in_num_fields, in_fields, state);
438 } else
439 {
440 jtag_add_dr_scan(in_num_fields, in_fields, state);
441 }
442 }
443
444
445 void jtag_add_dr_scan(int in_num_fields, const scan_field_t *in_fields,
446 tap_state_t state)
447 {
448 assert(state != TAP_RESET);
449
450 jtag_prelude(state);
451
452 int retval;
453 retval = interface_jtag_add_dr_scan(in_num_fields, in_fields, state);
454 jtag_set_error(retval);
455 }
456
457 void jtag_add_plain_dr_scan(int in_num_fields, const scan_field_t *in_fields,
458 tap_state_t state)
459 {
460 assert(state != TAP_RESET);
461
462 jtag_prelude(state);
463
464 int retval;
465 retval = interface_jtag_add_plain_dr_scan(in_num_fields, in_fields, state);
466 jtag_set_error(retval);
467 }
468
469 void jtag_add_dr_out(jtag_tap_t* tap,
470 int num_fields, const int* num_bits, const uint32_t* value,
471 tap_state_t end_state)
472 {
473 assert(end_state != TAP_RESET);
474 assert(end_state != TAP_INVALID);
475
476 cmd_queue_cur_state = end_state;
477
478 interface_jtag_add_dr_out(tap,
479 num_fields, num_bits, value,
480 end_state);
481 }
482
483 void jtag_add_tlr(void)
484 {
485 jtag_prelude(TAP_RESET);
486 jtag_set_error(interface_jtag_add_tlr());
487
488 /* NOTE: order here matches TRST path in jtag_add_reset() */
489 jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
490 jtag_notify_reset();
491 }
492
493 void jtag_add_pathmove(int num_states, const tap_state_t *path)
494 {
495 tap_state_t cur_state = cmd_queue_cur_state;
496
497 /* the last state has to be a stable state */
498 if (!tap_is_state_stable(path[num_states - 1]))
499 {
500 LOG_ERROR("BUG: TAP path doesn't finish in a stable state");
501 jtag_set_error(ERROR_JTAG_NOT_STABLE_STATE);
502 return;
503 }
504
505 for (int i = 0; i < num_states; i++)
506 {
507 if (path[i] == TAP_RESET)
508 {
509 LOG_ERROR("BUG: TAP_RESET is not a valid state for pathmove sequences");
510 jtag_set_error(ERROR_JTAG_STATE_INVALID);
511 return;
512 }
513
514 if (tap_state_transition(cur_state, true) != path[i]
515 && tap_state_transition(cur_state, false) != path[i])
516 {
517 LOG_ERROR("BUG: %s -> %s isn't a valid TAP transition",
518 tap_state_name(cur_state), tap_state_name(path[i]));
519 jtag_set_error(ERROR_JTAG_TRANSITION_INVALID);
520 return;
521 }
522 cur_state = path[i];
523 }
524
525 jtag_checks();
526
527 jtag_set_error(interface_jtag_add_pathmove(num_states, path));
528 cmd_queue_cur_state = path[num_states - 1];
529 }
530
531 int jtag_add_statemove(tap_state_t goal_state)
532 {
533 tap_state_t cur_state = cmd_queue_cur_state;
534
535 LOG_DEBUG("cur_state=%s goal_state=%s",
536 tap_state_name(cur_state),
537 tap_state_name(goal_state));
538
539
540 if (goal_state == cur_state)
541 ; /* nothing to do */
542 else if (goal_state == TAP_RESET)
543 {
544 jtag_add_tlr();
545 }
546 else if (tap_is_state_stable(cur_state) && tap_is_state_stable(goal_state))
547 {
548 unsigned tms_bits = tap_get_tms_path(cur_state, goal_state);
549 unsigned tms_count = tap_get_tms_path_len(cur_state, goal_state);
550 tap_state_t moves[8];
551 assert(tms_count < DIM(moves));
552
553 for (unsigned i = 0; i < tms_count; i++, tms_bits >>= 1)
554 {
555 bool bit = tms_bits & 1;
556
557 cur_state = tap_state_transition(cur_state, bit);
558 moves[i] = cur_state;
559 }
560
561 jtag_add_pathmove(tms_count, moves);
562 }
563 else if (tap_state_transition(cur_state, true) == goal_state
564 || tap_state_transition(cur_state, false) == goal_state)
565 {
566 jtag_add_pathmove(1, &goal_state);
567 }
568
569 else
570 return ERROR_FAIL;
571
572 return ERROR_OK;
573 }
574
575 void jtag_add_runtest(int num_cycles, tap_state_t state)
576 {
577 jtag_prelude(state);
578 jtag_set_error(interface_jtag_add_runtest(num_cycles, state));
579 }
580
581
582 void jtag_add_clocks(int num_cycles)
583 {
584 if (!tap_is_state_stable(cmd_queue_cur_state))
585 {
586 LOG_ERROR("jtag_add_clocks() called with TAP in unstable state \"%s\"",
587 tap_state_name(cmd_queue_cur_state));
588 jtag_set_error(ERROR_JTAG_NOT_STABLE_STATE);
589 return;
590 }
591
592 if (num_cycles > 0)
593 {
594 jtag_checks();
595 jtag_set_error(interface_jtag_add_clocks(num_cycles));
596 }
597 }
598
599 void jtag_add_reset(int req_tlr_or_trst, int req_srst)
600 {
601 int trst_with_tlr = 0;
602 int new_srst = 0;
603 int new_trst = 0;
604
605 /* Without SRST, we must use target-specific JTAG operations
606 * on each target; callers should not be requesting SRST when
607 * that signal doesn't exist.
608 *
609 * RESET_SRST_PULLS_TRST is a board or chip level quirk, which
610 * can kick in even if the JTAG adapter can't drive TRST.
611 */
612 if (req_srst) {
613 if (!(jtag_reset_config & RESET_HAS_SRST)) {
614 LOG_ERROR("BUG: can't assert SRST");
615 jtag_set_error(ERROR_FAIL);
616 return;
617 }
618 if ((jtag_reset_config & RESET_SRST_PULLS_TRST) != 0
619 && !req_tlr_or_trst) {
620 LOG_ERROR("BUG: can't assert only SRST");
621 jtag_set_error(ERROR_FAIL);
622 return;
623 }
624 new_srst = 1;
625 }
626
627 /* JTAG reset (entry to TAP_RESET state) can always be achieved
628 * using TCK and TMS; that may go through a TAP_{IR,DR}UPDATE
629 * state first. TRST accelerates it, and bypasses those states.
630 *
631 * RESET_TRST_PULLS_SRST is a board or chip level quirk, which
632 * can kick in even if the JTAG adapter can't drive SRST.
633 */
634 if (req_tlr_or_trst) {
635 if (!(jtag_reset_config & RESET_HAS_TRST))
636 trst_with_tlr = 1;
637 else if ((jtag_reset_config & RESET_TRST_PULLS_SRST) != 0
638 && !req_srst)
639 trst_with_tlr = 1;
640 else
641 new_trst = 1;
642 }
643
644 /* Maybe change TRST and/or SRST signal state */
645 if (jtag_srst != new_srst || jtag_trst != new_trst) {
646 int retval;
647
648 retval = interface_jtag_add_reset(new_trst, new_srst);
649 if (retval != ERROR_OK)
650 jtag_set_error(retval);
651 else
652 retval = jtag_execute_queue();
653
654 if (retval != ERROR_OK) {
655 LOG_ERROR("TRST/SRST error %d", retval);
656 return;
657 }
658 }
659
660 /* SRST resets everything hooked up to that signal */
661 if (jtag_srst != new_srst) {
662 jtag_srst = new_srst;
663 if (jtag_srst)
664 LOG_DEBUG("SRST line asserted");
665 else {
666 LOG_DEBUG("SRST line released");
667 if (jtag_nsrst_delay)
668 jtag_add_sleep(jtag_nsrst_delay * 1000);
669 }
670 }
671
672 /* Maybe enter the JTAG TAP_RESET state ...
673 * - using only TMS, TCK, and the JTAG state machine
674 * - or else more directly, using TRST
675 *
676 * TAP_RESET should be invisible to non-debug parts of the system.
677 */
678 if (trst_with_tlr) {
679 LOG_DEBUG("JTAG reset with TLR instead of TRST");
680 jtag_set_end_state(TAP_RESET);
681 jtag_add_tlr();
682
683 } else if (jtag_trst != new_trst) {
684 jtag_trst = new_trst;
685 if (jtag_trst) {
686 LOG_DEBUG("TRST line asserted");
687 tap_set_state(TAP_RESET);
688 } else {
689 LOG_DEBUG("TRST line released");
690 if (jtag_ntrst_delay)
691 jtag_add_sleep(jtag_ntrst_delay * 1000);
692
693 /* We just asserted nTRST, so we're now in TAP_RESET.
694 * Inform possible listeners about this, now that
695 * JTAG instructions and data can be shifted. This
696 * sequence must match jtag_add_tlr().
697 */
698 jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
699 jtag_notify_reset();
700 }
701 }
702 }
703
704 tap_state_t jtag_set_end_state(tap_state_t state)
705 {
706 if ((state == TAP_DRSHIFT)||(state == TAP_IRSHIFT))
707 {
708 LOG_ERROR("BUG: TAP_DRSHIFT/IRSHIFT can't be end state. Calling code should use a larger scan field");
709 }
710
711 if (state != TAP_INVALID)
712 cmd_queue_end_state = state;
713 return cmd_queue_end_state;
714 }
715
716 tap_state_t jtag_get_end_state(void)
717 {
718 return cmd_queue_end_state;
719 }
720
721 void jtag_add_sleep(uint32_t us)
722 {
723 /// @todo Here, keep_alive() appears to be a layering violation!!!
724 keep_alive();
725 jtag_set_error(interface_jtag_add_sleep(us));
726 }
727
728 static int jtag_check_value_inner(uint8_t *captured, uint8_t *in_check_value,
729 uint8_t *in_check_mask, int num_bits)
730 {
731 int retval = ERROR_OK;
732
733 int compare_failed = 0;
734
735 if (in_check_mask)
736 compare_failed = buf_cmp_mask(captured, in_check_value, in_check_mask, num_bits);
737 else
738 compare_failed = buf_cmp(captured, in_check_value, num_bits);
739
740 if (compare_failed) {
741 char *captured_str, *in_check_value_str;
742 int bits = (num_bits > DEBUG_JTAG_IOZ)
743 ? DEBUG_JTAG_IOZ
744 : num_bits;
745
746 /* NOTE: we've lost diagnostic context here -- 'which tap' */
747
748 captured_str = buf_to_str(captured, bits, 16);
749 in_check_value_str = buf_to_str(in_check_value, bits, 16);
750
751 LOG_WARNING("Bad value '%s' captured during DR or IR scan:",
752 captured_str);
753 LOG_WARNING(" check_value: 0x%s", in_check_value_str);
754
755 free(captured_str);
756 free(in_check_value_str);
757
758 if (in_check_mask) {
759 char *in_check_mask_str;
760
761 in_check_mask_str = buf_to_str(in_check_mask, bits, 16);
762 LOG_WARNING(" check_mask: 0x%s", in_check_mask_str);
763 free(in_check_mask_str);
764 }
765
766 retval = ERROR_JTAG_QUEUE_FAILED;
767 }
768 return retval;
769 }
770
771 void jtag_check_value_mask(scan_field_t *field, uint8_t *value, uint8_t *mask)
772 {
773 assert(field->in_value != NULL);
774
775 if (value == NULL)
776 {
777 /* no checking to do */
778 return;
779 }
780
781 jtag_execute_queue_noclear();
782
783 int retval = jtag_check_value_inner(field->in_value, value, mask, field->num_bits);
784 jtag_set_error(retval);
785 }
786
787
788
789 int default_interface_jtag_execute_queue(void)
790 {
791 if (NULL == jtag)
792 {
793 LOG_ERROR("No JTAG interface configured yet. "
794 "Issue 'init' command in startup scripts "
795 "before communicating with targets.");
796 return ERROR_FAIL;
797 }
798
799 return jtag->execute_queue();
800 }
801
802 void jtag_execute_queue_noclear(void)
803 {
804 jtag_flush_queue_count++;
805 jtag_set_error(interface_jtag_execute_queue());
806 }
807
808 int jtag_get_flush_queue_count(void)
809 {
810 return jtag_flush_queue_count;
811 }
812
813 int jtag_execute_queue(void)
814 {
815 jtag_execute_queue_noclear();
816 return jtag_error_clear();
817 }
818
819 static int jtag_reset_callback(enum jtag_event event, void *priv)
820 {
821 jtag_tap_t *tap = priv;
822
823 if (event == JTAG_TRST_ASSERTED)
824 {
825 tap->enabled = !tap->disabled_after_reset;
826
827 /* current instruction is either BYPASS or IDCODE */
828 buf_set_ones(tap->cur_instr, tap->ir_length);
829 tap->bypass = 1;
830 }
831
832 return ERROR_OK;
833 }
834
835 void jtag_sleep(uint32_t us)
836 {
837 alive_sleep(us/1000);
838 }
839
840 /* Maximum number of enabled JTAG devices we expect in the scan chain,
841 * plus one (to detect garbage at the end). Devices that don't support
842 * IDCODE take up fewer bits, possibly allowing a few more devices.
843 */
844 #define JTAG_MAX_CHAIN_SIZE 20
845
846 #define EXTRACT_MFG(X) (((X) & 0xffe) >> 1)
847 #define EXTRACT_PART(X) (((X) & 0xffff000) >> 12)
848 #define EXTRACT_VER(X) (((X) & 0xf0000000) >> 28)
849
850 /* A reserved manufacturer ID is used in END_OF_CHAIN_FLAG, so we
851 * know that no valid TAP will have it as an IDCODE value.
852 */
853 #define END_OF_CHAIN_FLAG 0x000000ff
854
855 static int jtag_examine_chain_execute(uint8_t *idcode_buffer, unsigned num_idcode)
856 {
857 scan_field_t field = {
858 .tap = NULL,
859 .num_bits = num_idcode * 32,
860 .out_value = idcode_buffer,
861 .in_value = idcode_buffer,
862 };
863
864 // initialize to the end of chain ID value
865 for (unsigned i = 0; i < JTAG_MAX_CHAIN_SIZE; i++)
866 buf_set_u32(idcode_buffer, i * 32, 32, END_OF_CHAIN_FLAG);
867
868 jtag_add_plain_dr_scan(1, &field, TAP_DRPAUSE);
869 jtag_add_tlr();
870 return jtag_execute_queue();
871 }
872
873 static bool jtag_examine_chain_check(uint8_t *idcodes, unsigned count)
874 {
875 uint8_t zero_check = 0x0;
876 uint8_t one_check = 0xff;
877
878 for (unsigned i = 0; i < count * 4; i++)
879 {
880 zero_check |= idcodes[i];
881 one_check &= idcodes[i];
882 }
883
884 /* if there wasn't a single non-zero bit or if all bits were one,
885 * the scan is not valid */
886 if (zero_check == 0x00 || one_check == 0xff)
887 {
888 LOG_ERROR("JTAG communication failure: check connection, "
889 "JTAG interface, target power etc.");
890 return false;
891 }
892 return true;
893 }
894
895 static void jtag_examine_chain_display(enum log_levels level, const char *msg,
896 const char *name, uint32_t idcode)
897 {
898 log_printf_lf(level, __FILE__, __LINE__, __FUNCTION__,
899 "JTAG tap: %s %16.16s: 0x%08x "
900 "(mfg: 0x%3.3x, part: 0x%4.4x, ver: 0x%1.1x)",
901 name, msg,
902 (unsigned int)idcode,
903 (unsigned int)EXTRACT_MFG(idcode),
904 (unsigned int)EXTRACT_PART(idcode),
905 (unsigned int)EXTRACT_VER(idcode));
906 }
907
908 static bool jtag_idcode_is_final(uint32_t idcode)
909 {
910 /*
911 * Some devices, such as AVR8, will output all 1's instead
912 * of TDI input value at end of chain. Allow those values
913 * instead of failing.
914 */
915 return idcode == END_OF_CHAIN_FLAG || idcode == 0xFFFFFFFF;
916 }
917
918 /**
919 * This helper checks that remaining bits in the examined chain data are
920 * all as expected, but a single JTAG device requires only 64 bits to be
921 * read back correctly. This can help identify and diagnose problems
922 * with the JTAG chain earlier, gives more helpful/explicit error messages.
923 * Returns TRUE iff garbage was found.
924 */
925 static bool jtag_examine_chain_end(uint8_t *idcodes, unsigned count, unsigned max)
926 {
927 bool triggered = false;
928 for (; count < max - 31; count += 32)
929 {
930 uint32_t idcode = buf_get_u32(idcodes, count, 32);
931 // do not trigger the warning if the data looks good
932 if (!triggered && jtag_idcode_is_final(idcode))
933 continue;
934 LOG_WARNING("Unexpected idcode after end of chain: %d 0x%08x",
935 count, (unsigned int)idcode);
936 triggered = true;
937 }
938 return triggered;
939 }
940
941 static bool jtag_examine_chain_match_tap(const struct jtag_tap_s *tap)
942 {
943 /* ignore expected BYPASS codes; warn otherwise */
944 if (0 == tap->expected_ids_cnt && !tap->idcode)
945 return true;
946
947 /* Loop over the expected identification codes and test for a match */
948 uint8_t ii;
949 for (ii = 0; ii < tap->expected_ids_cnt; ii++)
950 {
951 if (tap->idcode == tap->expected_ids[ii])
952 return true;
953 }
954
955 /* If none of the expected ids matched, log an error */
956 jtag_examine_chain_display(LOG_LVL_ERROR, "UNEXPECTED",
957 tap->dotted_name, tap->idcode);
958 for (ii = 0; ii < tap->expected_ids_cnt; ii++)
959 {
960 char msg[32];
961 snprintf(msg, sizeof(msg), "expected %hhu of %hhu",
962 ii + 1, tap->expected_ids_cnt);
963 jtag_examine_chain_display(LOG_LVL_ERROR, msg,
964 tap->dotted_name, tap->expected_ids[ii]);
965 }
966 return false;
967 }
968
969 /* Try to examine chain layout according to IEEE 1149.1 §12
970 * This is called a "blind interrogation" of the scan chain.
971 */
972 static int jtag_examine_chain(void)
973 {
974 uint8_t idcode_buffer[JTAG_MAX_CHAIN_SIZE * 4];
975 unsigned bit_count;
976
977 /* DR scan to collect BYPASS or IDCODE register contents.
978 * Then make sure the scan data has both ones and zeroes.
979 */
980 jtag_examine_chain_execute(idcode_buffer, JTAG_MAX_CHAIN_SIZE);
981 if (!jtag_examine_chain_check(idcode_buffer, JTAG_MAX_CHAIN_SIZE))
982 return ERROR_JTAG_INIT_FAILED;
983
984 /* point at the 1st tap */
985 jtag_tap_t *tap = jtag_tap_next_enabled(NULL);
986 if (tap == NULL)
987 {
988 LOG_ERROR("JTAG: No taps enabled?");
989 return ERROR_JTAG_INIT_FAILED;
990 }
991
992 for (bit_count = 0;
993 tap && bit_count < (JTAG_MAX_CHAIN_SIZE * 32) - 31;
994 tap = jtag_tap_next_enabled(tap))
995 {
996 uint32_t idcode = buf_get_u32(idcode_buffer, bit_count, 32);
997
998 if ((idcode & 1) == 0)
999 {
1000 /* LSB must not be 0, this indicates a device in bypass */
1001 LOG_WARNING("TAP %s does not have IDCODE",
1002 tap->dotted_name);
1003 idcode = 0;
1004 tap->hasidcode = false;
1005
1006 bit_count += 1;
1007 }
1008 else
1009 {
1010 /* Friendly devices support IDCODE */
1011 tap->hasidcode = true;
1012 jtag_examine_chain_display(LOG_LVL_INFO, "tap/device found",
1013 tap->dotted_name, idcode);
1014
1015 bit_count += 32;
1016 }
1017 tap->idcode = idcode;
1018
1019 // ensure the TAP ID does matches what was expected
1020 if (!jtag_examine_chain_match_tap(tap))
1021 return ERROR_JTAG_INIT_FAILED;
1022 }
1023
1024 /* Fail if too many TAPs were enabled for us to verify them all. */
1025 if (tap) {
1026 LOG_ERROR("Too many TAPs enabled; '%s' ignored.",
1027 tap->dotted_name);
1028 return ERROR_JTAG_INIT_FAILED;
1029 }
1030
1031 /* After those IDCODE or BYPASS register values should be
1032 * only the data we fed into the scan chain.
1033 */
1034 if (jtag_examine_chain_end(idcode_buffer, bit_count,
1035 8 * sizeof(idcode_buffer))) {
1036 LOG_ERROR("double-check your JTAG setup (interface, "
1037 "speed, TAPs, ...)");
1038 return ERROR_JTAG_INIT_FAILED;
1039 }
1040
1041 return ERROR_OK;
1042 }
1043
1044 /*
1045 * Validate the date loaded by entry to the Capture-IR state, to help
1046 * find errors related to scan chain configuration (wrong IR lengths)
1047 * or communication.
1048 */
1049 static int jtag_validate_ircapture(void)
1050 {
1051 jtag_tap_t *tap;
1052 int total_ir_length = 0;
1053 uint8_t *ir_test = NULL;
1054 scan_field_t field;
1055 int chain_pos = 0;
1056
1057 tap = NULL;
1058 total_ir_length = 0;
1059 for (;;) {
1060 tap = jtag_tap_next_enabled(tap);
1061 if (tap == NULL) {
1062 break;
1063 }
1064 total_ir_length += tap->ir_length;
1065 }
1066
1067 total_ir_length += 2;
1068
1069 ir_test = malloc(CEIL(total_ir_length, 8));
1070 if (ir_test == NULL)
1071 return ERROR_FAIL;
1072
1073 buf_set_ones(ir_test, total_ir_length);
1074
1075 field.tap = NULL;
1076 field.num_bits = total_ir_length;
1077 field.out_value = ir_test;
1078 field.in_value = ir_test;
1079
1080
1081 jtag_add_plain_ir_scan(1, &field, TAP_IRPAUSE);
1082 jtag_add_tlr();
1083
1084 int retval;
1085 retval = jtag_execute_queue();
1086 if (retval != ERROR_OK)
1087 return retval;
1088
1089 tap = NULL;
1090 chain_pos = 0;
1091 int val;
1092 for (;;) {
1093 tap = jtag_tap_next_enabled(tap);
1094 if (tap == NULL) {
1095 break;
1096 }
1097
1098 /* Validate the two LSBs, which must be 01 per JTAG spec.
1099 * REVISIT we might be able to verify some MSBs too, using
1100 * ircapture/irmask attributes.
1101 */
1102 val = buf_get_u32(ir_test, chain_pos, 2);
1103 if (val != 1) {
1104 char *cbuf = buf_to_str(ir_test, total_ir_length, 16);
1105
1106 LOG_ERROR("%s: IR capture error; saw 0x%s not 0x..1",
1107 jtag_tap_name(tap), cbuf);
1108
1109 /* Fail only if we have IDCODE for this device.
1110 * REVISIT -- why not fail-always?
1111 */
1112 if (tap->hasidcode) {
1113 free(cbuf);
1114 free(ir_test);
1115 return ERROR_JTAG_INIT_FAILED;
1116 }
1117 }
1118 chain_pos += tap->ir_length;
1119 }
1120
1121 /* verify the '11' sentinel we wrote is returned at the end */
1122 val = buf_get_u32(ir_test, chain_pos, 2);
1123 if (val != 0x3)
1124 {
1125 char *cbuf = buf_to_str(ir_test, total_ir_length, 16);
1126
1127 LOG_ERROR("IR capture error at bit %d, saw 0x%s not 0x...3",
1128 chain_pos, cbuf);
1129 free(cbuf);
1130 free(ir_test);
1131 return ERROR_JTAG_INIT_FAILED;
1132 }
1133
1134 free(ir_test);
1135
1136 return ERROR_OK;
1137 }
1138
1139
1140 void jtag_tap_init(jtag_tap_t *tap)
1141 {
1142 assert(0 != tap->ir_length);
1143
1144 /// @todo fix, this allocates one byte per bit for all three fields!
1145 tap->expected = malloc(tap->ir_length);
1146 tap->expected_mask = malloc(tap->ir_length);
1147 tap->cur_instr = malloc(tap->ir_length);
1148
1149 /// @todo cope sanely with ir_length bigger than 32 bits
1150 buf_set_u32(tap->expected, 0, tap->ir_length, tap->ir_capture_value);
1151 buf_set_u32(tap->expected_mask, 0, tap->ir_length, tap->ir_capture_mask);
1152 buf_set_ones(tap->cur_instr, tap->ir_length);
1153
1154 // place TAP in bypass mode
1155 tap->bypass = 1;
1156 // register the reset callback for the TAP
1157 jtag_register_event_callback(&jtag_reset_callback, tap);
1158
1159 LOG_DEBUG("Created Tap: %s @ abs position %d, "
1160 "irlen %d, capture: 0x%x mask: 0x%x", tap->dotted_name,
1161 tap->abs_chain_position, tap->ir_length,
1162 (unsigned) tap->ir_capture_value,
1163 (unsigned) tap->ir_capture_mask);
1164 jtag_tap_add(tap);
1165 }
1166
1167 void jtag_tap_free(jtag_tap_t *tap)
1168 {
1169 jtag_unregister_event_callback(&jtag_reset_callback, tap);
1170
1171 /// @todo is anything missing? no memory leaks please
1172 free((void *)tap->expected);
1173 free((void *)tap->expected_ids);
1174 free((void *)tap->chip);
1175 free((void *)tap->tapname);
1176 free((void *)tap->dotted_name);
1177 free(tap);
1178 }
1179
1180 int jtag_interface_init(struct command_context_s *cmd_ctx)
1181 {
1182 if (jtag)
1183 return ERROR_OK;
1184
1185 if (!jtag_interface)
1186 {
1187 /* nothing was previously specified by "interface" command */
1188 LOG_ERROR("JTAG interface has to be specified, see \"interface\" command");
1189 return ERROR_JTAG_INVALID_INTERFACE;
1190 }
1191
1192 jtag = jtag_interface;
1193 if (jtag_interface->init() != ERROR_OK)
1194 {
1195 jtag = NULL;
1196 return ERROR_JTAG_INIT_FAILED;
1197 }
1198
1199 int requested_khz = jtag_get_speed_khz();
1200 int actual_khz = requested_khz;
1201 int retval = jtag_get_speed_readable(&actual_khz);
1202 if (ERROR_OK != retval)
1203 LOG_INFO("interface specific clock speed value %d", jtag_get_speed());
1204 else if (actual_khz)
1205 {
1206 if ((CLOCK_MODE_RCLK == clock_mode)
1207 || ((CLOCK_MODE_KHZ == clock_mode) && !requested_khz))
1208 {
1209 LOG_INFO("RCLK (adaptive clock speed) not supported - fallback to %d kHz"
1210 , actual_khz);
1211 }
1212 else
1213 LOG_INFO("clock speed %d kHz", actual_khz);
1214 }
1215 else
1216 LOG_INFO("RCLK (adaptive clock speed)");
1217
1218 return ERROR_OK;
1219 }
1220
1221 static int jtag_init_inner(struct command_context_s *cmd_ctx)
1222 {
1223 jtag_tap_t *tap;
1224 int retval;
1225
1226 LOG_DEBUG("Init JTAG chain");
1227
1228 tap = jtag_tap_next_enabled(NULL);
1229 if (tap == NULL) {
1230 LOG_ERROR("There are no enabled taps?");
1231 return ERROR_JTAG_INIT_FAILED;
1232 }
1233
1234 jtag_add_tlr();
1235 if ((retval = jtag_execute_queue()) != ERROR_OK)
1236 return retval;
1237
1238 /* examine chain first, as this could discover the real chain layout */
1239 if (jtag_examine_chain() != ERROR_OK)
1240 {
1241 LOG_ERROR("trying to validate configured JTAG chain anyway...");
1242 }
1243
1244 if (jtag_validate_ircapture() != ERROR_OK)
1245 {
1246 LOG_WARNING("Errors during IR capture, continuing anyway...");
1247 }
1248
1249 return ERROR_OK;
1250 }
1251
1252 int jtag_interface_quit(void)
1253 {
1254 if (!jtag || !jtag->quit)
1255 return ERROR_OK;
1256
1257 // close the JTAG interface
1258 int result = jtag->quit();
1259 if (ERROR_OK != result)
1260 LOG_ERROR("failed: %d", result);
1261
1262 return ERROR_OK;
1263 }
1264
1265
1266 int jtag_init_reset(struct command_context_s *cmd_ctx)
1267 {
1268 int retval;
1269
1270 if ((retval = jtag_interface_init(cmd_ctx)) != ERROR_OK)
1271 return retval;
1272
1273 LOG_DEBUG("Trying to bring the JTAG controller to life by asserting TRST / TLR");
1274
1275 /* Reset can happen after a power cycle.
1276 *
1277 * Ideally we would only assert TRST or run TLR before the target reset.
1278 *
1279 * However w/srst_pulls_trst, trst is asserted together with the target
1280 * reset whether we want it or not.
1281 *
1282 * NB! Some targets have JTAG circuitry disabled until a
1283 * trst & srst has been asserted.
1284 *
1285 * NB! here we assume nsrst/ntrst delay are sufficient!
1286 *
1287 * NB! order matters!!!! srst *can* disconnect JTAG circuitry
1288 *
1289 */
1290 jtag_add_reset(1, 0); /* TAP_RESET, using TMS+TCK or TRST */
1291 if (jtag_reset_config & RESET_HAS_SRST)
1292 {
1293 jtag_add_reset(1, 1);
1294 if ((jtag_reset_config & RESET_SRST_PULLS_TRST) == 0)
1295 jtag_add_reset(0, 1);
1296 }
1297 jtag_add_reset(0, 0);
1298 if ((retval = jtag_execute_queue()) != ERROR_OK)
1299 return retval;
1300
1301 /* Check that we can communication on the JTAG chain + eventually we want to
1302 * be able to perform enumeration only after OpenOCD has started
1303 * telnet and GDB server
1304 *
1305 * That would allow users to more easily perform any magic they need to before
1306 * reset happens.
1307 */
1308 return jtag_init_inner(cmd_ctx);
1309 }
1310
1311 int jtag_init(struct command_context_s *cmd_ctx)
1312 {
1313 int retval;
1314 if ((retval = jtag_interface_init(cmd_ctx)) != ERROR_OK)
1315 return retval;
1316 if (jtag_init_inner(cmd_ctx) == ERROR_OK)
1317 {
1318 return ERROR_OK;
1319 }
1320 return jtag_init_reset(cmd_ctx);
1321 }
1322
1323 unsigned jtag_get_speed_khz(void)
1324 {
1325 return speed_khz;
1326 }
1327
1328 static int jtag_khz_to_speed(unsigned khz, int* speed)
1329 {
1330 LOG_DEBUG("convert khz to interface specific speed value");
1331 speed_khz = khz;
1332 if (jtag != NULL)
1333 {
1334 LOG_DEBUG("have interface set up");
1335 int speed_div1;
1336 int retval = jtag->khz(jtag_get_speed_khz(), &speed_div1);
1337 if (ERROR_OK != retval)
1338 {
1339 return retval;
1340 }
1341 *speed = speed_div1;
1342 }
1343 return ERROR_OK;
1344 }
1345
1346 static int jtag_rclk_to_speed(unsigned fallback_speed_khz, int* speed)
1347 {
1348 int retval = jtag_khz_to_speed(0, speed);
1349 if ((ERROR_OK != retval) && fallback_speed_khz)
1350 {
1351 LOG_DEBUG("trying fallback speed...");
1352 retval = jtag_khz_to_speed(fallback_speed_khz, speed);
1353 }
1354 return retval;
1355 }
1356
1357 static int jtag_set_speed(int speed)
1358 {
1359 jtag_speed = speed;
1360 /* this command can be called during CONFIG,
1361 * in which case jtag isn't initialized */
1362 return jtag ? jtag->speed(speed) : ERROR_OK;
1363 }
1364
1365 int jtag_config_speed(int speed)
1366 {
1367 LOG_DEBUG("handle jtag speed");
1368 clock_mode = CLOCK_MODE_SPEED;
1369 return jtag_set_speed(speed);
1370 }
1371
1372 int jtag_config_khz(unsigned khz)
1373 {
1374 LOG_DEBUG("handle jtag khz");
1375 clock_mode = CLOCK_MODE_KHZ;
1376 int speed = 0;
1377 int retval = jtag_khz_to_speed(khz, &speed);
1378 return (ERROR_OK != retval) ? retval : jtag_set_speed(speed);
1379 }
1380
1381 int jtag_config_rclk(unsigned fallback_speed_khz)
1382 {
1383 LOG_DEBUG("handle jtag rclk");
1384 clock_mode = CLOCK_MODE_RCLK;
1385 rclk_fallback_speed_khz = fallback_speed_khz;
1386 int speed = 0;
1387 int retval = jtag_rclk_to_speed(fallback_speed_khz, &speed);
1388 return (ERROR_OK != retval) ? retval : jtag_set_speed(speed);
1389 }
1390
1391 int jtag_get_speed(void)
1392 {
1393 int speed;
1394 switch(clock_mode)
1395 {
1396 case CLOCK_MODE_SPEED:
1397 speed = jtag_speed;
1398 break;
1399 case CLOCK_MODE_KHZ:
1400 jtag_khz_to_speed(jtag_get_speed_khz(), &speed);
1401 break;
1402 case CLOCK_MODE_RCLK:
1403 jtag_rclk_to_speed(rclk_fallback_speed_khz, &speed);
1404 break;
1405 default:
1406 LOG_ERROR("BUG: unknown jtag clock mode");
1407 speed = 0;
1408 break;
1409 }
1410 return speed;
1411 }
1412
1413 int jtag_get_speed_readable(int *khz)
1414 {
1415 return jtag ? jtag->speed_div(jtag_get_speed(), khz) : ERROR_OK;
1416 }
1417
1418 void jtag_set_verify(bool enable)
1419 {
1420 jtag_verify = enable;
1421 }
1422
1423 bool jtag_will_verify()
1424 {
1425 return jtag_verify;
1426 }
1427
1428 void jtag_set_verify_capture_ir(bool enable)
1429 {
1430 jtag_verify_capture_ir = enable;
1431 }
1432
1433 bool jtag_will_verify_capture_ir()
1434 {
1435 return jtag_verify_capture_ir;
1436 }
1437
1438 int jtag_power_dropout(int *dropout)
1439 {
1440 return jtag->power_dropout(dropout);
1441 }
1442
1443 int jtag_srst_asserted(int *srst_asserted)
1444 {
1445 return jtag->srst_asserted(srst_asserted);
1446 }
1447
1448 enum reset_types jtag_get_reset_config(void)
1449 {
1450 return jtag_reset_config;
1451 }
1452 void jtag_set_reset_config(enum reset_types type)
1453 {
1454 jtag_reset_config = type;
1455 }
1456
1457 int jtag_get_trst(void)
1458 {
1459 return jtag_trst;
1460 }
1461 int jtag_get_srst(void)
1462 {
1463 return jtag_srst;
1464 }
1465
1466 void jtag_set_nsrst_delay(unsigned delay)
1467 {
1468 jtag_nsrst_delay = delay;
1469 }
1470 unsigned jtag_get_nsrst_delay(void)
1471 {
1472 return jtag_nsrst_delay;
1473 }
1474 void jtag_set_ntrst_delay(unsigned delay)
1475 {
1476 jtag_ntrst_delay = delay;
1477 }
1478 unsigned jtag_get_ntrst_delay(void)
1479 {
1480 return jtag_ntrst_delay;
1481 }

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)