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

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)