Diagnostics tweaks for jtag_examine_chain() failure paths.
[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 scan chain interrogation failed: all %s",
889 (zero_check == 0x00) ? "zeroes" : "ones");
890 LOG_ERROR("Check JTAG interface, timings, target power, etc.");
891 return false;
892 }
893 return true;
894 }
895
896 static void jtag_examine_chain_display(enum log_levels level, const char *msg,
897 const char *name, uint32_t idcode)
898 {
899 log_printf_lf(level, __FILE__, __LINE__, __FUNCTION__,
900 "JTAG tap: %s %16.16s: 0x%08x "
901 "(mfg: 0x%3.3x, part: 0x%4.4x, ver: 0x%1.1x)",
902 name, msg,
903 (unsigned int)idcode,
904 (unsigned int)EXTRACT_MFG(idcode),
905 (unsigned int)EXTRACT_PART(idcode),
906 (unsigned int)EXTRACT_VER(idcode));
907 }
908
909 static bool jtag_idcode_is_final(uint32_t idcode)
910 {
911 /*
912 * Some devices, such as AVR8, will output all 1's instead
913 * of TDI input value at end of chain. Allow those values
914 * instead of failing.
915 */
916 return idcode == END_OF_CHAIN_FLAG || idcode == 0xFFFFFFFF;
917 }
918
919 /**
920 * This helper checks that remaining bits in the examined chain data are
921 * all as expected, but a single JTAG device requires only 64 bits to be
922 * read back correctly. This can help identify and diagnose problems
923 * with the JTAG chain earlier, gives more helpful/explicit error messages.
924 * Returns TRUE iff garbage was found.
925 */
926 static bool jtag_examine_chain_end(uint8_t *idcodes, unsigned count, unsigned max)
927 {
928 bool triggered = false;
929 for (; count < max - 31; count += 32)
930 {
931 uint32_t idcode = buf_get_u32(idcodes, count, 32);
932 // do not trigger the warning if the data looks good
933 if (!triggered && jtag_idcode_is_final(idcode))
934 continue;
935 LOG_WARNING("Unexpected idcode after end of chain: %d 0x%08x",
936 count, (unsigned int)idcode);
937 triggered = true;
938 }
939 return triggered;
940 }
941
942 static bool jtag_examine_chain_match_tap(const struct jtag_tap_s *tap)
943 {
944 /* ignore expected BYPASS codes; warn otherwise */
945 if (0 == tap->expected_ids_cnt && !tap->idcode)
946 return true;
947
948 /* Loop over the expected identification codes and test for a match */
949 uint8_t ii;
950 for (ii = 0; ii < tap->expected_ids_cnt; ii++)
951 {
952 if (tap->idcode == tap->expected_ids[ii])
953 return true;
954 }
955
956 /* If none of the expected ids matched, log an error */
957 jtag_examine_chain_display(LOG_LVL_ERROR, "UNEXPECTED",
958 tap->dotted_name, tap->idcode);
959 for (ii = 0; ii < tap->expected_ids_cnt; ii++)
960 {
961 char msg[32];
962 snprintf(msg, sizeof(msg), "expected %hhu of %hhu",
963 ii + 1, tap->expected_ids_cnt);
964 jtag_examine_chain_display(LOG_LVL_ERROR, msg,
965 tap->dotted_name, tap->expected_ids[ii]);
966 }
967 return false;
968 }
969
970 /* Try to examine chain layout according to IEEE 1149.1 §12
971 * This is called a "blind interrogation" of the scan chain.
972 */
973 static int jtag_examine_chain(void)
974 {
975 uint8_t idcode_buffer[JTAG_MAX_CHAIN_SIZE * 4];
976 unsigned bit_count;
977
978 /* DR scan to collect BYPASS or IDCODE register contents.
979 * Then make sure the scan data has both ones and zeroes.
980 */
981 jtag_examine_chain_execute(idcode_buffer, JTAG_MAX_CHAIN_SIZE);
982 if (!jtag_examine_chain_check(idcode_buffer, JTAG_MAX_CHAIN_SIZE))
983 return ERROR_JTAG_INIT_FAILED;
984
985 /* point at the 1st tap */
986 jtag_tap_t *tap = jtag_tap_next_enabled(NULL);
987 if (tap == NULL)
988 {
989 LOG_ERROR("JTAG: No taps enabled?");
990 return ERROR_JTAG_INIT_FAILED;
991 }
992
993 for (bit_count = 0;
994 tap && bit_count < (JTAG_MAX_CHAIN_SIZE * 32) - 31;
995 tap = jtag_tap_next_enabled(tap))
996 {
997 uint32_t idcode = buf_get_u32(idcode_buffer, bit_count, 32);
998
999 if ((idcode & 1) == 0)
1000 {
1001 /* LSB must not be 0, this indicates a device in bypass */
1002 LOG_WARNING("TAP %s does not have IDCODE",
1003 tap->dotted_name);
1004 idcode = 0;
1005 tap->hasidcode = false;
1006
1007 bit_count += 1;
1008 }
1009 else
1010 {
1011 /* Friendly devices support IDCODE */
1012 tap->hasidcode = true;
1013 jtag_examine_chain_display(LOG_LVL_INFO, "tap/device found",
1014 tap->dotted_name, idcode);
1015
1016 bit_count += 32;
1017 }
1018 tap->idcode = idcode;
1019
1020 // ensure the TAP ID does matches what was expected
1021 if (!jtag_examine_chain_match_tap(tap))
1022 return ERROR_JTAG_INIT_FAILED;
1023 }
1024
1025 /* Fail if too many TAPs were enabled for us to verify them all. */
1026 if (tap) {
1027 LOG_ERROR("Too many TAPs enabled; '%s' ignored.",
1028 tap->dotted_name);
1029 return ERROR_JTAG_INIT_FAILED;
1030 }
1031
1032 /* After those IDCODE or BYPASS register values should be
1033 * only the data we fed into the scan chain.
1034 */
1035 if (jtag_examine_chain_end(idcode_buffer, bit_count,
1036 8 * sizeof(idcode_buffer))) {
1037 LOG_ERROR("double-check your JTAG setup (interface, "
1038 "speed, TAPs, ...)");
1039 return ERROR_JTAG_INIT_FAILED;
1040 }
1041
1042 return ERROR_OK;
1043 }
1044
1045 /*
1046 * Validate the date loaded by entry to the Capture-IR state, to help
1047 * find errors related to scan chain configuration (wrong IR lengths)
1048 * or communication.
1049 */
1050 static int jtag_validate_ircapture(void)
1051 {
1052 jtag_tap_t *tap;
1053 int total_ir_length = 0;
1054 uint8_t *ir_test = NULL;
1055 scan_field_t field;
1056 int chain_pos = 0;
1057
1058 tap = NULL;
1059 total_ir_length = 0;
1060 for (;;) {
1061 tap = jtag_tap_next_enabled(tap);
1062 if (tap == NULL) {
1063 break;
1064 }
1065 total_ir_length += tap->ir_length;
1066 }
1067
1068 total_ir_length += 2;
1069
1070 ir_test = malloc(CEIL(total_ir_length, 8));
1071 if (ir_test == NULL)
1072 return ERROR_FAIL;
1073
1074 buf_set_ones(ir_test, total_ir_length);
1075
1076 field.tap = NULL;
1077 field.num_bits = total_ir_length;
1078 field.out_value = ir_test;
1079 field.in_value = ir_test;
1080
1081
1082 jtag_add_plain_ir_scan(1, &field, TAP_IRPAUSE);
1083 jtag_add_tlr();
1084
1085 int retval;
1086 retval = jtag_execute_queue();
1087 if (retval != ERROR_OK)
1088 return retval;
1089
1090 tap = NULL;
1091 chain_pos = 0;
1092 int val;
1093 for (;;) {
1094 tap = jtag_tap_next_enabled(tap);
1095 if (tap == NULL) {
1096 break;
1097 }
1098
1099 /* Validate the two LSBs, which must be 01 per JTAG spec.
1100 * REVISIT we might be able to verify some MSBs too, using
1101 * ircapture/irmask attributes.
1102 */
1103 val = buf_get_u32(ir_test, chain_pos, 2);
1104 if (val != 1) {
1105 char *cbuf = buf_to_str(ir_test, total_ir_length, 16);
1106
1107 LOG_ERROR("%s: IR capture error; saw 0x%s not 0x..1",
1108 jtag_tap_name(tap), cbuf);
1109
1110 /* Fail only if we have IDCODE for this device.
1111 * REVISIT -- why not fail-always?
1112 */
1113 if (tap->hasidcode) {
1114 free(cbuf);
1115 free(ir_test);
1116 return ERROR_JTAG_INIT_FAILED;
1117 }
1118 }
1119 chain_pos += tap->ir_length;
1120 }
1121
1122 /* verify the '11' sentinel we wrote is returned at the end */
1123 val = buf_get_u32(ir_test, chain_pos, 2);
1124 if (val != 0x3)
1125 {
1126 char *cbuf = buf_to_str(ir_test, total_ir_length, 16);
1127
1128 LOG_ERROR("IR capture error at bit %d, saw 0x%s not 0x...3",
1129 chain_pos, cbuf);
1130 free(cbuf);
1131 free(ir_test);
1132 return ERROR_JTAG_INIT_FAILED;
1133 }
1134
1135 free(ir_test);
1136
1137 return ERROR_OK;
1138 }
1139
1140
1141 void jtag_tap_init(jtag_tap_t *tap)
1142 {
1143 assert(0 != tap->ir_length);
1144
1145 /// @todo fix, this allocates one byte per bit for all three fields!
1146 tap->expected = malloc(tap->ir_length);
1147 tap->expected_mask = malloc(tap->ir_length);
1148 tap->cur_instr = malloc(tap->ir_length);
1149
1150 /// @todo cope sanely with ir_length bigger than 32 bits
1151 buf_set_u32(tap->expected, 0, tap->ir_length, tap->ir_capture_value);
1152 buf_set_u32(tap->expected_mask, 0, tap->ir_length, tap->ir_capture_mask);
1153 buf_set_ones(tap->cur_instr, tap->ir_length);
1154
1155 // place TAP in bypass mode
1156 tap->bypass = 1;
1157 // register the reset callback for the TAP
1158 jtag_register_event_callback(&jtag_reset_callback, tap);
1159
1160 LOG_DEBUG("Created Tap: %s @ abs position %d, "
1161 "irlen %d, capture: 0x%x mask: 0x%x", tap->dotted_name,
1162 tap->abs_chain_position, tap->ir_length,
1163 (unsigned) tap->ir_capture_value,
1164 (unsigned) tap->ir_capture_mask);
1165 jtag_tap_add(tap);
1166 }
1167
1168 void jtag_tap_free(jtag_tap_t *tap)
1169 {
1170 jtag_unregister_event_callback(&jtag_reset_callback, tap);
1171
1172 /// @todo is anything missing? no memory leaks please
1173 free((void *)tap->expected);
1174 free((void *)tap->expected_ids);
1175 free((void *)tap->chip);
1176 free((void *)tap->tapname);
1177 free((void *)tap->dotted_name);
1178 free(tap);
1179 }
1180
1181 int jtag_interface_init(struct command_context_s *cmd_ctx)
1182 {
1183 if (jtag)
1184 return ERROR_OK;
1185
1186 if (!jtag_interface)
1187 {
1188 /* nothing was previously specified by "interface" command */
1189 LOG_ERROR("JTAG interface has to be specified, see \"interface\" command");
1190 return ERROR_JTAG_INVALID_INTERFACE;
1191 }
1192
1193 jtag = jtag_interface;
1194 if (jtag_interface->init() != ERROR_OK)
1195 {
1196 jtag = NULL;
1197 return ERROR_JTAG_INIT_FAILED;
1198 }
1199
1200 int requested_khz = jtag_get_speed_khz();
1201 int actual_khz = requested_khz;
1202 int retval = jtag_get_speed_readable(&actual_khz);
1203 if (ERROR_OK != retval)
1204 LOG_INFO("interface specific clock speed value %d", jtag_get_speed());
1205 else if (actual_khz)
1206 {
1207 if ((CLOCK_MODE_RCLK == clock_mode)
1208 || ((CLOCK_MODE_KHZ == clock_mode) && !requested_khz))
1209 {
1210 LOG_INFO("RCLK (adaptive clock speed) not supported - fallback to %d kHz"
1211 , actual_khz);
1212 }
1213 else
1214 LOG_INFO("clock speed %d kHz", actual_khz);
1215 }
1216 else
1217 LOG_INFO("RCLK (adaptive clock speed)");
1218
1219 return ERROR_OK;
1220 }
1221
1222 static int jtag_init_inner(struct command_context_s *cmd_ctx)
1223 {
1224 jtag_tap_t *tap;
1225 int retval;
1226
1227 LOG_DEBUG("Init JTAG chain");
1228
1229 tap = jtag_tap_next_enabled(NULL);
1230 if (tap == NULL) {
1231 LOG_ERROR("There are no enabled taps?");
1232 return ERROR_JTAG_INIT_FAILED;
1233 }
1234
1235 jtag_add_tlr();
1236 if ((retval = jtag_execute_queue()) != ERROR_OK)
1237 return retval;
1238
1239 /* examine chain first, as this could discover the real chain layout */
1240 if (jtag_examine_chain() != ERROR_OK)
1241 {
1242 LOG_ERROR("Trying to use configured scan chain anyway...");
1243 }
1244
1245 if (jtag_validate_ircapture() != ERROR_OK)
1246 {
1247 LOG_WARNING("Errors during IR capture, continuing anyway...");
1248 }
1249
1250 return ERROR_OK;
1251 }
1252
1253 int jtag_interface_quit(void)
1254 {
1255 if (!jtag || !jtag->quit)
1256 return ERROR_OK;
1257
1258 // close the JTAG interface
1259 int result = jtag->quit();
1260 if (ERROR_OK != result)
1261 LOG_ERROR("failed: %d", result);
1262
1263 return ERROR_OK;
1264 }
1265
1266
1267 int jtag_init_reset(struct command_context_s *cmd_ctx)
1268 {
1269 int retval;
1270
1271 if ((retval = jtag_interface_init(cmd_ctx)) != ERROR_OK)
1272 return retval;
1273
1274 LOG_DEBUG("Trying to bring the JTAG controller to life by asserting TRST / TLR");
1275
1276 /* Reset can happen after a power cycle.
1277 *
1278 * Ideally we would only assert TRST or run TLR before the target reset.
1279 *
1280 * However w/srst_pulls_trst, trst is asserted together with the target
1281 * reset whether we want it or not.
1282 *
1283 * NB! Some targets have JTAG circuitry disabled until a
1284 * trst & srst has been asserted.
1285 *
1286 * NB! here we assume nsrst/ntrst delay are sufficient!
1287 *
1288 * NB! order matters!!!! srst *can* disconnect JTAG circuitry
1289 *
1290 */
1291 jtag_add_reset(1, 0); /* TAP_RESET, using TMS+TCK or TRST */
1292 if (jtag_reset_config & RESET_HAS_SRST)
1293 {
1294 jtag_add_reset(1, 1);
1295 if ((jtag_reset_config & RESET_SRST_PULLS_TRST) == 0)
1296 jtag_add_reset(0, 1);
1297 }
1298 jtag_add_reset(0, 0);
1299 if ((retval = jtag_execute_queue()) != ERROR_OK)
1300 return retval;
1301
1302 /* Check that we can communication on the JTAG chain + eventually we want to
1303 * be able to perform enumeration only after OpenOCD has started
1304 * telnet and GDB server
1305 *
1306 * That would allow users to more easily perform any magic they need to before
1307 * reset happens.
1308 */
1309 return jtag_init_inner(cmd_ctx);
1310 }
1311
1312 int jtag_init(struct command_context_s *cmd_ctx)
1313 {
1314 int retval;
1315 if ((retval = jtag_interface_init(cmd_ctx)) != ERROR_OK)
1316 return retval;
1317 if (jtag_init_inner(cmd_ctx) == ERROR_OK)
1318 {
1319 return ERROR_OK;
1320 }
1321 return jtag_init_reset(cmd_ctx);
1322 }
1323
1324 unsigned jtag_get_speed_khz(void)
1325 {
1326 return speed_khz;
1327 }
1328
1329 static int jtag_khz_to_speed(unsigned khz, int* speed)
1330 {
1331 LOG_DEBUG("convert khz to interface specific speed value");
1332 speed_khz = khz;
1333 if (jtag != NULL)
1334 {
1335 LOG_DEBUG("have interface set up");
1336 int speed_div1;
1337 int retval = jtag->khz(jtag_get_speed_khz(), &speed_div1);
1338 if (ERROR_OK != retval)
1339 {
1340 return retval;
1341 }
1342 *speed = speed_div1;
1343 }
1344 return ERROR_OK;
1345 }
1346
1347 static int jtag_rclk_to_speed(unsigned fallback_speed_khz, int* speed)
1348 {
1349 int retval = jtag_khz_to_speed(0, speed);
1350 if ((ERROR_OK != retval) && fallback_speed_khz)
1351 {
1352 LOG_DEBUG("trying fallback speed...");
1353 retval = jtag_khz_to_speed(fallback_speed_khz, speed);
1354 }
1355 return retval;
1356 }
1357
1358 static int jtag_set_speed(int speed)
1359 {
1360 jtag_speed = speed;
1361 /* this command can be called during CONFIG,
1362 * in which case jtag isn't initialized */
1363 return jtag ? jtag->speed(speed) : ERROR_OK;
1364 }
1365
1366 int jtag_config_speed(int speed)
1367 {
1368 LOG_DEBUG("handle jtag speed");
1369 clock_mode = CLOCK_MODE_SPEED;
1370 return jtag_set_speed(speed);
1371 }
1372
1373 int jtag_config_khz(unsigned khz)
1374 {
1375 LOG_DEBUG("handle jtag khz");
1376 clock_mode = CLOCK_MODE_KHZ;
1377 int speed = 0;
1378 int retval = jtag_khz_to_speed(khz, &speed);
1379 return (ERROR_OK != retval) ? retval : jtag_set_speed(speed);
1380 }
1381
1382 int jtag_config_rclk(unsigned fallback_speed_khz)
1383 {
1384 LOG_DEBUG("handle jtag rclk");
1385 clock_mode = CLOCK_MODE_RCLK;
1386 rclk_fallback_speed_khz = fallback_speed_khz;
1387 int speed = 0;
1388 int retval = jtag_rclk_to_speed(fallback_speed_khz, &speed);
1389 return (ERROR_OK != retval) ? retval : jtag_set_speed(speed);
1390 }
1391
1392 int jtag_get_speed(void)
1393 {
1394 int speed;
1395 switch(clock_mode)
1396 {
1397 case CLOCK_MODE_SPEED:
1398 speed = jtag_speed;
1399 break;
1400 case CLOCK_MODE_KHZ:
1401 jtag_khz_to_speed(jtag_get_speed_khz(), &speed);
1402 break;
1403 case CLOCK_MODE_RCLK:
1404 jtag_rclk_to_speed(rclk_fallback_speed_khz, &speed);
1405 break;
1406 default:
1407 LOG_ERROR("BUG: unknown jtag clock mode");
1408 speed = 0;
1409 break;
1410 }
1411 return speed;
1412 }
1413
1414 int jtag_get_speed_readable(int *khz)
1415 {
1416 return jtag ? jtag->speed_div(jtag_get_speed(), khz) : ERROR_OK;
1417 }
1418
1419 void jtag_set_verify(bool enable)
1420 {
1421 jtag_verify = enable;
1422 }
1423
1424 bool jtag_will_verify()
1425 {
1426 return jtag_verify;
1427 }
1428
1429 void jtag_set_verify_capture_ir(bool enable)
1430 {
1431 jtag_verify_capture_ir = enable;
1432 }
1433
1434 bool jtag_will_verify_capture_ir()
1435 {
1436 return jtag_verify_capture_ir;
1437 }
1438
1439 int jtag_power_dropout(int *dropout)
1440 {
1441 return jtag->power_dropout(dropout);
1442 }
1443
1444 int jtag_srst_asserted(int *srst_asserted)
1445 {
1446 return jtag->srst_asserted(srst_asserted);
1447 }
1448
1449 enum reset_types jtag_get_reset_config(void)
1450 {
1451 return jtag_reset_config;
1452 }
1453 void jtag_set_reset_config(enum reset_types type)
1454 {
1455 jtag_reset_config = type;
1456 }
1457
1458 int jtag_get_trst(void)
1459 {
1460 return jtag_trst;
1461 }
1462 int jtag_get_srst(void)
1463 {
1464 return jtag_srst;
1465 }
1466
1467 void jtag_set_nsrst_delay(unsigned delay)
1468 {
1469 jtag_nsrst_delay = delay;
1470 }
1471 unsigned jtag_get_nsrst_delay(void)
1472 {
1473 return jtag_nsrst_delay;
1474 }
1475 void jtag_set_ntrst_delay(unsigned delay)
1476 {
1477 jtag_ntrst_delay = delay;
1478 }
1479 unsigned jtag_get_ntrst_delay(void)
1480 {
1481 return jtag_ntrst_delay;
1482 }

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)