jtag/tcl: fix a double free of jim object
[openocd.git] / src / jtag / tcl.c
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * Copyright (C) 2007-2010 Ø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, see <http://www.gnu.org/licenses/>. *
27 ***************************************************************************/
28
29 #ifdef HAVE_CONFIG_H
30 #include "config.h"
31 #endif
32
33 #include "jtag.h"
34 #include "swd.h"
35 #include "minidriver.h"
36 #include "interface.h"
37 #include "interfaces.h"
38 #include "tcl.h"
39
40 #ifdef HAVE_STRINGS_H
41 #include <strings.h>
42 #endif
43
44 #include <helper/time_support.h>
45 #include "transport/transport.h"
46
47 /**
48 * @file
49 * Holds support for accessing JTAG-specific mechanisms from TCl scripts.
50 */
51
52 static const Jim_Nvp nvp_jtag_tap_event[] = {
53 { .value = JTAG_TRST_ASSERTED, .name = "post-reset" },
54 { .value = JTAG_TAP_EVENT_SETUP, .name = "setup" },
55 { .value = JTAG_TAP_EVENT_ENABLE, .name = "tap-enable" },
56 { .value = JTAG_TAP_EVENT_DISABLE, .name = "tap-disable" },
57
58 { .name = NULL, .value = -1 }
59 };
60
61 struct jtag_tap *jtag_tap_by_jim_obj(Jim_Interp *interp, Jim_Obj *o)
62 {
63 const char *cp = Jim_GetString(o, NULL);
64 struct jtag_tap *t = cp ? jtag_tap_by_string(cp) : NULL;
65 if (NULL == cp)
66 cp = "(unknown)";
67 if (NULL == t)
68 Jim_SetResultFormatted(interp, "Tap '%s' could not be found", cp);
69 return t;
70 }
71
72 static bool scan_is_safe(tap_state_t state)
73 {
74 switch (state) {
75 case TAP_RESET:
76 case TAP_IDLE:
77 case TAP_DRPAUSE:
78 case TAP_IRPAUSE:
79 return true;
80 default:
81 return false;
82 }
83 }
84
85 static int Jim_Command_drscan(Jim_Interp *interp, int argc, Jim_Obj *const *args)
86 {
87 int retval;
88 struct scan_field *fields;
89 int num_fields;
90 int field_count = 0;
91 int i, e;
92 struct jtag_tap *tap;
93 tap_state_t endstate;
94
95 /* args[1] = device
96 * args[2] = num_bits
97 * args[3] = hex string
98 * ... repeat num bits and hex string ...
99 *
100 * .. optionally:
101 * args[N-2] = "-endstate"
102 * args[N-1] = statename
103 */
104 if ((argc < 4) || ((argc % 2) != 0)) {
105 Jim_WrongNumArgs(interp, 1, args, "wrong arguments");
106 return JIM_ERR;
107 }
108
109 endstate = TAP_IDLE;
110
111 script_debug(interp, argc, args);
112
113 /* validate arguments as numbers */
114 e = JIM_OK;
115 for (i = 2; i < argc; i += 2) {
116 long bits;
117 const char *cp;
118
119 e = Jim_GetLong(interp, args[i], &bits);
120 /* If valid - try next arg */
121 if (e == JIM_OK)
122 continue;
123
124 /* Not valid.. are we at the end? */
125 if (((i + 2) != argc)) {
126 /* nope, then error */
127 return e;
128 }
129
130 /* it could be: "-endstate FOO"
131 * e.g. DRPAUSE so we can issue more instructions
132 * before entering RUN/IDLE and executing them.
133 */
134
135 /* get arg as a string. */
136 cp = Jim_GetString(args[i], NULL);
137 /* is it the magic? */
138 if (0 == strcmp("-endstate", cp)) {
139 /* is the statename valid? */
140 cp = Jim_GetString(args[i + 1], NULL);
141
142 /* see if it is a valid state name */
143 endstate = tap_state_by_name(cp);
144 if (endstate < 0) {
145 /* update the error message */
146 Jim_SetResultFormatted(interp, "endstate: %s invalid", cp);
147 } else {
148 if (!scan_is_safe(endstate))
149 LOG_WARNING("drscan with unsafe "
150 "endstate \"%s\"", cp);
151
152 /* valid - so clear the error */
153 e = JIM_OK;
154 /* and remove the last 2 args */
155 argc -= 2;
156 }
157 }
158
159 /* Still an error? */
160 if (e != JIM_OK)
161 return e; /* too bad */
162 } /* validate args */
163
164 assert(e == JIM_OK);
165
166 tap = jtag_tap_by_jim_obj(interp, args[1]);
167 if (tap == NULL)
168 return JIM_ERR;
169
170 num_fields = (argc-2)/2;
171 if (num_fields <= 0) {
172 Jim_SetResultString(interp, "drscan: no scan fields supplied", -1);
173 return JIM_ERR;
174 }
175 fields = malloc(sizeof(struct scan_field) * num_fields);
176 for (i = 2; i < argc; i += 2) {
177 long bits;
178 int len;
179 const char *str;
180
181 Jim_GetLong(interp, args[i], &bits);
182 str = Jim_GetString(args[i + 1], &len);
183
184 fields[field_count].num_bits = bits;
185 void *t = malloc(DIV_ROUND_UP(bits, 8));
186 fields[field_count].out_value = t;
187 str_to_buf(str, len, t, bits, 0);
188 fields[field_count].in_value = t;
189 field_count++;
190 }
191
192 jtag_add_dr_scan(tap, num_fields, fields, endstate);
193
194 retval = jtag_execute_queue();
195 if (retval != ERROR_OK) {
196 Jim_SetResultString(interp, "drscan: jtag execute failed", -1);
197 return JIM_ERR;
198 }
199
200 field_count = 0;
201 Jim_Obj *list = Jim_NewListObj(interp, NULL, 0);
202 for (i = 2; i < argc; i += 2) {
203 long bits;
204 char *str;
205
206 Jim_GetLong(interp, args[i], &bits);
207 str = buf_to_str(fields[field_count].in_value, bits, 16);
208 free(fields[field_count].in_value);
209
210 Jim_ListAppendElement(interp, list, Jim_NewStringObj(interp, str, strlen(str)));
211 free(str);
212 field_count++;
213 }
214
215 Jim_SetResult(interp, list);
216
217 free(fields);
218
219 return JIM_OK;
220 }
221
222
223 static int Jim_Command_pathmove(Jim_Interp *interp, int argc, Jim_Obj *const *args)
224 {
225 tap_state_t states[8];
226
227 if ((argc < 2) || ((size_t)argc > (ARRAY_SIZE(states) + 1))) {
228 Jim_WrongNumArgs(interp, 1, args, "wrong arguments");
229 return JIM_ERR;
230 }
231
232 script_debug(interp, argc, args);
233
234 int i;
235 for (i = 0; i < argc-1; i++) {
236 const char *cp;
237 cp = Jim_GetString(args[i + 1], NULL);
238 states[i] = tap_state_by_name(cp);
239 if (states[i] < 0) {
240 /* update the error message */
241 Jim_SetResultFormatted(interp, "endstate: %s invalid", cp);
242 return JIM_ERR;
243 }
244 }
245
246 if ((jtag_add_statemove(states[0]) != ERROR_OK) || (jtag_execute_queue() != ERROR_OK)) {
247 Jim_SetResultString(interp, "pathmove: jtag execute failed", -1);
248 return JIM_ERR;
249 }
250
251 jtag_add_pathmove(argc - 2, states + 1);
252
253 if (jtag_execute_queue() != ERROR_OK) {
254 Jim_SetResultString(interp, "pathmove: failed", -1);
255 return JIM_ERR;
256 }
257
258 return JIM_OK;
259 }
260
261
262 static int Jim_Command_flush_count(Jim_Interp *interp, int argc, Jim_Obj *const *args)
263 {
264 script_debug(interp, argc, args);
265
266 Jim_SetResult(interp, Jim_NewIntObj(interp, jtag_get_flush_queue_count()));
267
268 return JIM_OK;
269 }
270
271 /* REVISIT Just what about these should "move" ... ?
272 * These registrations, into the main JTAG table?
273 *
274 * There's a minor compatibility issue, these all show up twice;
275 * that's not desirable:
276 * - jtag drscan ... NOT DOCUMENTED!
277 * - drscan ...
278 *
279 * The "irscan" command (for example) doesn't show twice.
280 */
281 static const struct command_registration jtag_command_handlers_to_move[] = {
282 {
283 .name = "drscan",
284 .mode = COMMAND_EXEC,
285 .jim_handler = Jim_Command_drscan,
286 .help = "Execute Data Register (DR) scan for one TAP. "
287 "Other TAPs must be in BYPASS mode.",
288 .usage = "tap_name [num_bits value]* ['-endstate' state_name]",
289 },
290 {
291 .name = "flush_count",
292 .mode = COMMAND_EXEC,
293 .jim_handler = Jim_Command_flush_count,
294 .help = "Returns the number of times the JTAG queue "
295 "has been flushed.",
296 },
297 {
298 .name = "pathmove",
299 .mode = COMMAND_EXEC,
300 .jim_handler = Jim_Command_pathmove,
301 .usage = "start_state state1 [state2 [state3 ...]]",
302 .help = "Move JTAG state machine from current state "
303 "(start_state) to state1, then state2, state3, etc.",
304 },
305 COMMAND_REGISTRATION_DONE
306 };
307
308
309 enum jtag_tap_cfg_param {
310 JCFG_EVENT,
311 JCFG_IDCODE,
312 };
313
314 static Jim_Nvp nvp_config_opts[] = {
315 { .name = "-event", .value = JCFG_EVENT },
316 { .name = "-idcode", .value = JCFG_IDCODE },
317
318 { .name = NULL, .value = -1 }
319 };
320
321 static int jtag_tap_configure_event(Jim_GetOptInfo *goi, struct jtag_tap *tap)
322 {
323 if (goi->argc == 0) {
324 Jim_WrongNumArgs(goi->interp, goi->argc, goi->argv, "-event <event-name> ...");
325 return JIM_ERR;
326 }
327
328 Jim_Nvp *n;
329 int e = Jim_GetOpt_Nvp(goi, nvp_jtag_tap_event, &n);
330 if (e != JIM_OK) {
331 Jim_GetOpt_NvpUnknown(goi, nvp_jtag_tap_event, 1);
332 return e;
333 }
334
335 if (goi->isconfigure) {
336 if (goi->argc != 1) {
337 Jim_WrongNumArgs(goi->interp,
338 goi->argc,
339 goi->argv,
340 "-event <event-name> <event-body>");
341 return JIM_ERR;
342 }
343 } else {
344 if (goi->argc != 0) {
345 Jim_WrongNumArgs(goi->interp, goi->argc, goi->argv, "-event <event-name>");
346 return JIM_ERR;
347 }
348 }
349
350 struct jtag_tap_event_action *jteap = tap->event_action;
351 /* replace existing event body */
352 bool found = false;
353 while (jteap) {
354 if (jteap->event == (enum jtag_event)n->value) {
355 found = true;
356 break;
357 }
358 jteap = jteap->next;
359 }
360
361 Jim_SetEmptyResult(goi->interp);
362
363 if (goi->isconfigure) {
364 if (!found)
365 jteap = calloc(1, sizeof(*jteap));
366 else if (NULL != jteap->body)
367 Jim_DecrRefCount(goi->interp, jteap->body);
368
369 jteap->interp = goi->interp;
370 jteap->event = n->value;
371
372 Jim_Obj *o;
373 Jim_GetOpt_Obj(goi, &o);
374 jteap->body = Jim_DuplicateObj(goi->interp, o);
375 Jim_IncrRefCount(jteap->body);
376
377 if (!found) {
378 /* add to head of event list */
379 jteap->next = tap->event_action;
380 tap->event_action = jteap;
381 }
382 } else if (found) {
383 jteap->interp = goi->interp;
384 Jim_SetResult(goi->interp,
385 Jim_DuplicateObj(goi->interp, jteap->body));
386 }
387 return JIM_OK;
388 }
389
390 static int jtag_tap_configure_cmd(Jim_GetOptInfo *goi, struct jtag_tap *tap)
391 {
392 /* parse config or cget options */
393 while (goi->argc > 0) {
394 Jim_SetEmptyResult(goi->interp);
395
396 Jim_Nvp *n;
397 int e = Jim_GetOpt_Nvp(goi, nvp_config_opts, &n);
398 if (e != JIM_OK) {
399 Jim_GetOpt_NvpUnknown(goi, nvp_config_opts, 0);
400 return e;
401 }
402
403 switch (n->value) {
404 case JCFG_EVENT:
405 e = jtag_tap_configure_event(goi, tap);
406 if (e != JIM_OK)
407 return e;
408 break;
409 case JCFG_IDCODE:
410 if (goi->isconfigure) {
411 Jim_SetResultFormatted(goi->interp,
412 "not settable: %s", n->name);
413 return JIM_ERR;
414 } else {
415 if (goi->argc != 0) {
416 Jim_WrongNumArgs(goi->interp,
417 goi->argc, goi->argv,
418 "NO PARAMS");
419 return JIM_ERR;
420 }
421 }
422 Jim_SetResult(goi->interp, Jim_NewIntObj(goi->interp, tap->idcode));
423 break;
424 default:
425 Jim_SetResultFormatted(goi->interp, "unknown value: %s", n->name);
426 return JIM_ERR;
427 }
428 }
429
430 return JIM_OK;
431 }
432
433 static int is_bad_irval(int ir_length, jim_wide w)
434 {
435 jim_wide v = 1;
436
437 v <<= ir_length;
438 v -= 1;
439 v = ~v;
440 return (w & v) != 0;
441 }
442
443 static int jim_newtap_expected_id(Jim_Nvp *n, Jim_GetOptInfo *goi,
444 struct jtag_tap *pTap)
445 {
446 jim_wide w;
447 int e = Jim_GetOpt_Wide(goi, &w);
448 if (e != JIM_OK) {
449 Jim_SetResultFormatted(goi->interp, "option: %s bad parameter", n->name);
450 return e;
451 }
452
453 uint32_t *p = realloc(pTap->expected_ids,
454 (pTap->expected_ids_cnt + 1) * sizeof(uint32_t));
455 if (!p) {
456 Jim_SetResultFormatted(goi->interp, "no memory");
457 return JIM_ERR;
458 }
459
460 pTap->expected_ids = p;
461 pTap->expected_ids[pTap->expected_ids_cnt++] = w;
462
463 return JIM_OK;
464 }
465
466 #define NTAP_OPT_IRLEN 0
467 #define NTAP_OPT_IRMASK 1
468 #define NTAP_OPT_IRCAPTURE 2
469 #define NTAP_OPT_ENABLED 3
470 #define NTAP_OPT_DISABLED 4
471 #define NTAP_OPT_EXPECTED_ID 5
472 #define NTAP_OPT_VERSION 6
473
474 static int jim_newtap_ir_param(Jim_Nvp *n, Jim_GetOptInfo *goi,
475 struct jtag_tap *pTap)
476 {
477 jim_wide w;
478 int e = Jim_GetOpt_Wide(goi, &w);
479 if (e != JIM_OK) {
480 Jim_SetResultFormatted(goi->interp,
481 "option: %s bad parameter", n->name);
482 return e;
483 }
484 switch (n->value) {
485 case NTAP_OPT_IRLEN:
486 if (w > (jim_wide) (8 * sizeof(pTap->ir_capture_value))) {
487 LOG_WARNING("%s: huge IR length %d",
488 pTap->dotted_name, (int) w);
489 }
490 pTap->ir_length = w;
491 break;
492 case NTAP_OPT_IRMASK:
493 if (is_bad_irval(pTap->ir_length, w)) {
494 LOG_ERROR("%s: IR mask %x too big",
495 pTap->dotted_name,
496 (int) w);
497 return JIM_ERR;
498 }
499 if ((w & 3) != 3)
500 LOG_WARNING("%s: nonstandard IR mask", pTap->dotted_name);
501 pTap->ir_capture_mask = w;
502 break;
503 case NTAP_OPT_IRCAPTURE:
504 if (is_bad_irval(pTap->ir_length, w)) {
505 LOG_ERROR("%s: IR capture %x too big",
506 pTap->dotted_name, (int) w);
507 return JIM_ERR;
508 }
509 if ((w & 3) != 1)
510 LOG_WARNING("%s: nonstandard IR value",
511 pTap->dotted_name);
512 pTap->ir_capture_value = w;
513 break;
514 default:
515 return JIM_ERR;
516 }
517 return JIM_OK;
518 }
519
520 static int jim_newtap_cmd(Jim_GetOptInfo *goi)
521 {
522 struct jtag_tap *pTap;
523 int x;
524 int e;
525 Jim_Nvp *n;
526 char *cp;
527 const Jim_Nvp opts[] = {
528 { .name = "-irlen", .value = NTAP_OPT_IRLEN },
529 { .name = "-irmask", .value = NTAP_OPT_IRMASK },
530 { .name = "-ircapture", .value = NTAP_OPT_IRCAPTURE },
531 { .name = "-enable", .value = NTAP_OPT_ENABLED },
532 { .name = "-disable", .value = NTAP_OPT_DISABLED },
533 { .name = "-expected-id", .value = NTAP_OPT_EXPECTED_ID },
534 { .name = "-ignore-version", .value = NTAP_OPT_VERSION },
535 { .name = NULL, .value = -1 },
536 };
537
538 pTap = calloc(1, sizeof(struct jtag_tap));
539 if (!pTap) {
540 Jim_SetResultFormatted(goi->interp, "no memory");
541 return JIM_ERR;
542 }
543
544 /*
545 * we expect CHIP + TAP + OPTIONS
546 * */
547 if (goi->argc < 3) {
548 Jim_SetResultFormatted(goi->interp, "Missing CHIP TAP OPTIONS ....");
549 free(pTap);
550 return JIM_ERR;
551 }
552
553 const char *tmp;
554 Jim_GetOpt_String(goi, &tmp, NULL);
555 pTap->chip = strdup(tmp);
556
557 Jim_GetOpt_String(goi, &tmp, NULL);
558 pTap->tapname = strdup(tmp);
559
560 /* name + dot + name + null */
561 x = strlen(pTap->chip) + 1 + strlen(pTap->tapname) + 1;
562 cp = malloc(x);
563 sprintf(cp, "%s.%s", pTap->chip, pTap->tapname);
564 pTap->dotted_name = cp;
565
566 LOG_DEBUG("Creating New Tap, Chip: %s, Tap: %s, Dotted: %s, %d params",
567 pTap->chip, pTap->tapname, pTap->dotted_name, goi->argc);
568
569 if (!transport_is_jtag()) {
570 /* SWD doesn't require any JTAG tap parameters */
571 pTap->enabled = true;
572 jtag_tap_init(pTap);
573 return JIM_OK;
574 }
575
576 /* IEEE specifies that the two LSBs of an IR scan are 01, so make
577 * that the default. The "-ircapture" and "-irmask" options are only
578 * needed to cope with nonstandard TAPs, or to specify more bits.
579 */
580 pTap->ir_capture_mask = 0x03;
581 pTap->ir_capture_value = 0x01;
582
583 while (goi->argc) {
584 e = Jim_GetOpt_Nvp(goi, opts, &n);
585 if (e != JIM_OK) {
586 Jim_GetOpt_NvpUnknown(goi, opts, 0);
587 free(cp);
588 free(pTap);
589 return e;
590 }
591 LOG_DEBUG("Processing option: %s", n->name);
592 switch (n->value) {
593 case NTAP_OPT_ENABLED:
594 pTap->disabled_after_reset = false;
595 break;
596 case NTAP_OPT_DISABLED:
597 pTap->disabled_after_reset = true;
598 break;
599 case NTAP_OPT_EXPECTED_ID:
600 e = jim_newtap_expected_id(n, goi, pTap);
601 if (JIM_OK != e) {
602 free(cp);
603 free(pTap);
604 return e;
605 }
606 break;
607 case NTAP_OPT_IRLEN:
608 case NTAP_OPT_IRMASK:
609 case NTAP_OPT_IRCAPTURE:
610 e = jim_newtap_ir_param(n, goi, pTap);
611 if (JIM_OK != e) {
612 free(cp);
613 free(pTap);
614 return e;
615 }
616 break;
617 case NTAP_OPT_VERSION:
618 pTap->ignore_version = true;
619 break;
620 } /* switch (n->value) */
621 } /* while (goi->argc) */
622
623 /* default is enabled-after-reset */
624 pTap->enabled = !pTap->disabled_after_reset;
625
626 /* Did all the required option bits get cleared? */
627 if (pTap->ir_length != 0) {
628 jtag_tap_init(pTap);
629 return JIM_OK;
630 }
631
632 Jim_SetResultFormatted(goi->interp,
633 "newtap: %s missing IR length",
634 pTap->dotted_name);
635 jtag_tap_free(pTap);
636 return JIM_ERR;
637 }
638
639 static void jtag_tap_handle_event(struct jtag_tap *tap, enum jtag_event e)
640 {
641 struct jtag_tap_event_action *jteap;
642 int retval;
643
644 for (jteap = tap->event_action; jteap != NULL; jteap = jteap->next) {
645 if (jteap->event != e)
646 continue;
647
648 Jim_Nvp *nvp = Jim_Nvp_value2name_simple(nvp_jtag_tap_event, e);
649 LOG_DEBUG("JTAG tap: %s event: %d (%s)\n\taction: %s",
650 tap->dotted_name, e, nvp->name,
651 Jim_GetString(jteap->body, NULL));
652
653 retval = Jim_EvalObj(jteap->interp, jteap->body);
654 if (retval == JIM_RETURN)
655 retval = jteap->interp->returnCode;
656
657 if (retval != JIM_OK) {
658 Jim_MakeErrorMessage(jteap->interp);
659 LOG_USER("%s", Jim_GetString(Jim_GetResult(jteap->interp), NULL));
660 continue;
661 }
662
663 switch (e) {
664 case JTAG_TAP_EVENT_ENABLE:
665 case JTAG_TAP_EVENT_DISABLE:
666 /* NOTE: we currently assume the handlers
667 * can't fail. Right here is where we should
668 * really be verifying the scan chains ...
669 */
670 tap->enabled = (e == JTAG_TAP_EVENT_ENABLE);
671 LOG_INFO("JTAG tap: %s %s", tap->dotted_name,
672 tap->enabled ? "enabled" : "disabled");
673 break;
674 default:
675 break;
676 }
677 }
678 }
679
680 static int jim_jtag_arp_init(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
681 {
682 Jim_GetOptInfo goi;
683 Jim_GetOpt_Setup(&goi, interp, argc-1, argv + 1);
684 if (goi.argc != 0) {
685 Jim_WrongNumArgs(goi.interp, 1, goi.argv-1, "(no params)");
686 return JIM_ERR;
687 }
688 struct command_context *context = current_command_context(interp);
689 int e = jtag_init_inner(context);
690 if (e != ERROR_OK) {
691 Jim_Obj *eObj = Jim_NewIntObj(goi.interp, e);
692 Jim_IncrRefCount(eObj);
693 Jim_SetResultFormatted(goi.interp, "error: %#s", eObj);
694 Jim_DecrRefCount(goi.interp, eObj);
695 return JIM_ERR;
696 }
697 return JIM_OK;
698 }
699
700 static int jim_jtag_arp_init_reset(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
701 {
702 int e = ERROR_OK;
703 Jim_GetOptInfo goi;
704 Jim_GetOpt_Setup(&goi, interp, argc-1, argv + 1);
705 if (goi.argc != 0) {
706 Jim_WrongNumArgs(goi.interp, 1, goi.argv-1, "(no params)");
707 return JIM_ERR;
708 }
709 struct command_context *context = current_command_context(interp);
710 if (transport_is_jtag())
711 e = jtag_init_reset(context);
712 else if (transport_is_swd())
713 e = swd_init_reset(context);
714
715 if (e != ERROR_OK) {
716 Jim_Obj *eObj = Jim_NewIntObj(goi.interp, e);
717 Jim_IncrRefCount(eObj);
718 Jim_SetResultFormatted(goi.interp, "error: %#s", eObj);
719 Jim_DecrRefCount(goi.interp, eObj);
720 return JIM_ERR;
721 }
722 return JIM_OK;
723 }
724
725 int jim_jtag_newtap(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
726 {
727 Jim_GetOptInfo goi;
728 Jim_GetOpt_Setup(&goi, interp, argc-1, argv + 1);
729 return jim_newtap_cmd(&goi);
730 }
731
732 static bool jtag_tap_enable(struct jtag_tap *t)
733 {
734 if (t->enabled)
735 return false;
736 jtag_tap_handle_event(t, JTAG_TAP_EVENT_ENABLE);
737 if (!t->enabled)
738 return false;
739
740 /* FIXME add JTAG sanity checks, w/o TLR
741 * - scan chain length grew by one (this)
742 * - IDs and IR lengths are as expected
743 */
744 jtag_call_event_callbacks(JTAG_TAP_EVENT_ENABLE);
745 return true;
746 }
747 static bool jtag_tap_disable(struct jtag_tap *t)
748 {
749 if (!t->enabled)
750 return false;
751 jtag_tap_handle_event(t, JTAG_TAP_EVENT_DISABLE);
752 if (t->enabled)
753 return false;
754
755 /* FIXME add JTAG sanity checks, w/o TLR
756 * - scan chain length shrank by one (this)
757 * - IDs and IR lengths are as expected
758 */
759 jtag_call_event_callbacks(JTAG_TAP_EVENT_DISABLE);
760 return true;
761 }
762
763 int jim_jtag_tap_enabler(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
764 {
765 const char *cmd_name = Jim_GetString(argv[0], NULL);
766 Jim_GetOptInfo goi;
767 Jim_GetOpt_Setup(&goi, interp, argc-1, argv + 1);
768 if (goi.argc != 1) {
769 Jim_SetResultFormatted(goi.interp, "usage: %s <name>", cmd_name);
770 return JIM_ERR;
771 }
772
773 struct jtag_tap *t;
774
775 t = jtag_tap_by_jim_obj(goi.interp, goi.argv[0]);
776 if (t == NULL)
777 return JIM_ERR;
778
779 if (strcasecmp(cmd_name, "tapisenabled") == 0) {
780 /* do nothing, just return the value */
781 } else if (strcasecmp(cmd_name, "tapenable") == 0) {
782 if (!jtag_tap_enable(t)) {
783 LOG_WARNING("failed to enable tap %s", t->dotted_name);
784 return JIM_ERR;
785 }
786 } else if (strcasecmp(cmd_name, "tapdisable") == 0) {
787 if (!jtag_tap_disable(t)) {
788 LOG_WARNING("failed to disable tap %s", t->dotted_name);
789 return JIM_ERR;
790 }
791 } else {
792 LOG_ERROR("command '%s' unknown", cmd_name);
793 return JIM_ERR;
794 }
795 bool e = t->enabled;
796 Jim_SetResult(goi.interp, Jim_NewIntObj(goi.interp, e));
797 return JIM_OK;
798 }
799
800 int jim_jtag_configure(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
801 {
802 const char *cmd_name = Jim_GetString(argv[0], NULL);
803 Jim_GetOptInfo goi;
804 Jim_GetOpt_Setup(&goi, interp, argc-1, argv + 1);
805 goi.isconfigure = !strcmp(cmd_name, "configure");
806 if (goi.argc < 2 + goi.isconfigure) {
807 Jim_WrongNumArgs(goi.interp, 0, NULL,
808 "<tap_name> <attribute> ...");
809 return JIM_ERR;
810 }
811
812 struct jtag_tap *t;
813
814 Jim_Obj *o;
815 Jim_GetOpt_Obj(&goi, &o);
816 t = jtag_tap_by_jim_obj(goi.interp, o);
817 if (t == NULL)
818 return JIM_ERR;
819
820 return jtag_tap_configure_cmd(&goi, t);
821 }
822
823 static int jim_jtag_names(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
824 {
825 Jim_GetOptInfo goi;
826 Jim_GetOpt_Setup(&goi, interp, argc-1, argv + 1);
827 if (goi.argc != 0) {
828 Jim_WrongNumArgs(goi.interp, 1, goi.argv, "Too many parameters");
829 return JIM_ERR;
830 }
831 Jim_SetResult(goi.interp, Jim_NewListObj(goi.interp, NULL, 0));
832 struct jtag_tap *tap;
833
834 for (tap = jtag_all_taps(); tap; tap = tap->next_tap) {
835 Jim_ListAppendElement(goi.interp,
836 Jim_GetResult(goi.interp),
837 Jim_NewStringObj(goi.interp,
838 tap->dotted_name, -1));
839 }
840 return JIM_OK;
841 }
842
843 COMMAND_HANDLER(handle_jtag_init_command)
844 {
845 if (CMD_ARGC != 0)
846 return ERROR_COMMAND_SYNTAX_ERROR;
847
848 static bool jtag_initialized;
849 if (jtag_initialized) {
850 LOG_INFO("'jtag init' has already been called");
851 return ERROR_OK;
852 }
853 jtag_initialized = true;
854
855 LOG_DEBUG("Initializing jtag devices...");
856 return jtag_init(CMD_CTX);
857 }
858
859 static const struct command_registration jtag_subcommand_handlers[] = {
860 {
861 .name = "init",
862 .mode = COMMAND_ANY,
863 .handler = handle_jtag_init_command,
864 .help = "initialize jtag scan chain",
865 .usage = ""
866 },
867 {
868 .name = "arp_init",
869 .mode = COMMAND_ANY,
870 .jim_handler = jim_jtag_arp_init,
871 .help = "Validates JTAG scan chain against the list of "
872 "declared TAPs using just the four standard JTAG "
873 "signals.",
874 },
875 {
876 .name = "arp_init-reset",
877 .mode = COMMAND_ANY,
878 .jim_handler = jim_jtag_arp_init_reset,
879 .help = "Uses TRST and SRST to try resetting everything on "
880 "the JTAG scan chain, then performs 'jtag arp_init'."
881 },
882 {
883 .name = "newtap",
884 .mode = COMMAND_CONFIG,
885 .jim_handler = jim_jtag_newtap,
886 .help = "Create a new TAP instance named basename.tap_type, "
887 "and appends it to the scan chain.",
888 .usage = "basename tap_type '-irlen' count "
889 "['-enable'|'-disable'] "
890 "['-expected_id' number] "
891 "['-ignore-version'] "
892 "['-ircapture' number] "
893 "['-mask' number] ",
894 },
895 {
896 .name = "tapisenabled",
897 .mode = COMMAND_EXEC,
898 .jim_handler = jim_jtag_tap_enabler,
899 .help = "Returns a Tcl boolean (0/1) indicating whether "
900 "the TAP is enabled (1) or not (0).",
901 .usage = "tap_name",
902 },
903 {
904 .name = "tapenable",
905 .mode = COMMAND_EXEC,
906 .jim_handler = jim_jtag_tap_enabler,
907 .help = "Try to enable the specified TAP using the "
908 "'tap-enable' TAP event.",
909 .usage = "tap_name",
910 },
911 {
912 .name = "tapdisable",
913 .mode = COMMAND_EXEC,
914 .jim_handler = jim_jtag_tap_enabler,
915 .help = "Try to disable the specified TAP using the "
916 "'tap-disable' TAP event.",
917 .usage = "tap_name",
918 },
919 {
920 .name = "configure",
921 .mode = COMMAND_ANY,
922 .jim_handler = jim_jtag_configure,
923 .help = "Provide a Tcl handler for the specified "
924 "TAP event.",
925 .usage = "tap_name '-event' event_name handler",
926 },
927 {
928 .name = "cget",
929 .mode = COMMAND_EXEC,
930 .jim_handler = jim_jtag_configure,
931 .help = "Return any Tcl handler for the specified "
932 "TAP event.",
933 .usage = "tap_name '-event' event_name",
934 },
935 {
936 .name = "names",
937 .mode = COMMAND_ANY,
938 .jim_handler = jim_jtag_names,
939 .help = "Returns list of all JTAG tap names.",
940 },
941 {
942 .chain = jtag_command_handlers_to_move,
943 },
944 COMMAND_REGISTRATION_DONE
945 };
946
947 void jtag_notify_event(enum jtag_event event)
948 {
949 struct jtag_tap *tap;
950
951 for (tap = jtag_all_taps(); tap; tap = tap->next_tap)
952 jtag_tap_handle_event(tap, event);
953 }
954
955
956 COMMAND_HANDLER(handle_scan_chain_command)
957 {
958 struct jtag_tap *tap;
959 char expected_id[12];
960
961 tap = jtag_all_taps();
962 command_print(CMD,
963 " TapName Enabled IdCode Expected IrLen IrCap IrMask");
964 command_print(CMD,
965 "-- ------------------- -------- ---------- ---------- ----- ----- ------");
966
967 while (tap) {
968 uint32_t expected, expected_mask, ii;
969
970 snprintf(expected_id, sizeof(expected_id), "0x%08x",
971 (unsigned)((tap->expected_ids_cnt > 0)
972 ? tap->expected_ids[0]
973 : 0));
974 if (tap->ignore_version)
975 expected_id[2] = '*';
976
977 expected = buf_get_u32(tap->expected, 0, tap->ir_length);
978 expected_mask = buf_get_u32(tap->expected_mask, 0, tap->ir_length);
979
980 command_print(CMD,
981 "%2d %-18s %c 0x%08x %s %5d 0x%02x 0x%02x",
982 tap->abs_chain_position,
983 tap->dotted_name,
984 tap->enabled ? 'Y' : 'n',
985 (unsigned int)(tap->idcode),
986 expected_id,
987 (unsigned int)(tap->ir_length),
988 (unsigned int)(expected),
989 (unsigned int)(expected_mask));
990
991 for (ii = 1; ii < tap->expected_ids_cnt; ii++) {
992 snprintf(expected_id, sizeof(expected_id), "0x%08x",
993 (unsigned) tap->expected_ids[ii]);
994 if (tap->ignore_version)
995 expected_id[2] = '*';
996
997 command_print(CMD,
998 " %s",
999 expected_id);
1000 }
1001
1002 tap = tap->next_tap;
1003 }
1004
1005 return ERROR_OK;
1006 }
1007
1008 COMMAND_HANDLER(handle_jtag_ntrst_delay_command)
1009 {
1010 if (CMD_ARGC > 1)
1011 return ERROR_COMMAND_SYNTAX_ERROR;
1012 if (CMD_ARGC == 1) {
1013 unsigned delay;
1014 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[0], delay);
1015
1016 jtag_set_ntrst_delay(delay);
1017 }
1018 command_print(CMD, "jtag_ntrst_delay: %u", jtag_get_ntrst_delay());
1019 return ERROR_OK;
1020 }
1021
1022 COMMAND_HANDLER(handle_jtag_ntrst_assert_width_command)
1023 {
1024 if (CMD_ARGC > 1)
1025 return ERROR_COMMAND_SYNTAX_ERROR;
1026 if (CMD_ARGC == 1) {
1027 unsigned delay;
1028 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[0], delay);
1029
1030 jtag_set_ntrst_assert_width(delay);
1031 }
1032 command_print(CMD, "jtag_ntrst_assert_width: %u", jtag_get_ntrst_assert_width());
1033 return ERROR_OK;
1034 }
1035
1036 COMMAND_HANDLER(handle_jtag_rclk_command)
1037 {
1038 if (CMD_ARGC > 1)
1039 return ERROR_COMMAND_SYNTAX_ERROR;
1040
1041 int retval = ERROR_OK;
1042 if (CMD_ARGC == 1) {
1043 unsigned khz = 0;
1044 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[0], khz);
1045
1046 retval = jtag_config_rclk(khz);
1047 if (ERROR_OK != retval)
1048 return retval;
1049 }
1050
1051 int cur_khz = jtag_get_speed_khz();
1052 retval = jtag_get_speed_readable(&cur_khz);
1053 if (ERROR_OK != retval)
1054 return retval;
1055
1056 if (cur_khz)
1057 command_print(CMD, "RCLK not supported - fallback to %d kHz", cur_khz);
1058 else
1059 command_print(CMD, "RCLK - adaptive");
1060
1061 return retval;
1062 }
1063
1064 COMMAND_HANDLER(handle_runtest_command)
1065 {
1066 if (CMD_ARGC != 1)
1067 return ERROR_COMMAND_SYNTAX_ERROR;
1068
1069 unsigned num_clocks;
1070 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[0], num_clocks);
1071
1072 jtag_add_runtest(num_clocks, TAP_IDLE);
1073 return jtag_execute_queue();
1074 }
1075
1076 /*
1077 * For "irscan" or "drscan" commands, the "end" (really, "next") state
1078 * should be stable ... and *NOT* a shift state, otherwise free-running
1079 * jtag clocks could change the values latched by the update state.
1080 * Not surprisingly, this is the same constraint as SVF; the "irscan"
1081 * and "drscan" commands are a write-only subset of what SVF provides.
1082 */
1083
1084 COMMAND_HANDLER(handle_irscan_command)
1085 {
1086 int i;
1087 struct scan_field *fields;
1088 struct jtag_tap *tap = NULL;
1089 tap_state_t endstate;
1090
1091 if ((CMD_ARGC < 2) || (CMD_ARGC % 2))
1092 return ERROR_COMMAND_SYNTAX_ERROR;
1093
1094 /* optional "-endstate" "statename" at the end of the arguments,
1095 * so that e.g. IRPAUSE can let us load the data register before
1096 * entering RUN/IDLE to execute the instruction we load here.
1097 */
1098 endstate = TAP_IDLE;
1099
1100 if (CMD_ARGC >= 4) {
1101 /* have at least one pair of numbers.
1102 * is last pair the magic text? */
1103 if (strcmp("-endstate", CMD_ARGV[CMD_ARGC - 2]) == 0) {
1104 endstate = tap_state_by_name(CMD_ARGV[CMD_ARGC - 1]);
1105 if (endstate == TAP_INVALID)
1106 return ERROR_COMMAND_SYNTAX_ERROR;
1107 if (!scan_is_safe(endstate))
1108 LOG_WARNING("unstable irscan endstate \"%s\"",
1109 CMD_ARGV[CMD_ARGC - 1]);
1110 CMD_ARGC -= 2;
1111 }
1112 }
1113
1114 int num_fields = CMD_ARGC / 2;
1115 if (num_fields > 1) {
1116 /* we really should be looking at plain_ir_scan if we want
1117 * anything more fancy.
1118 */
1119 LOG_ERROR("Specify a single value for tap");
1120 return ERROR_COMMAND_SYNTAX_ERROR;
1121 }
1122
1123 fields = calloc(num_fields, sizeof(*fields));
1124
1125 int retval;
1126 for (i = 0; i < num_fields; i++) {
1127 tap = jtag_tap_by_string(CMD_ARGV[i*2]);
1128 if (tap == NULL) {
1129 free(fields);
1130 command_print(CMD, "Tap: %s unknown", CMD_ARGV[i*2]);
1131
1132 return ERROR_FAIL;
1133 }
1134 uint64_t value;
1135 retval = parse_u64(CMD_ARGV[i * 2 + 1], &value);
1136 if (ERROR_OK != retval)
1137 goto error_return;
1138
1139 int field_size = tap->ir_length;
1140 fields[i].num_bits = field_size;
1141 uint8_t *v = calloc(1, DIV_ROUND_UP(field_size, 8));
1142 if (!v) {
1143 LOG_ERROR("Out of memory");
1144 goto error_return;
1145 }
1146
1147 buf_set_u64(v, 0, field_size, value);
1148 fields[i].out_value = v;
1149 fields[i].in_value = NULL;
1150 }
1151
1152 /* did we have an endstate? */
1153 jtag_add_ir_scan(tap, fields, endstate);
1154
1155 retval = jtag_execute_queue();
1156
1157 error_return:
1158 for (i = 0; i < num_fields; i++) {
1159 if (NULL != fields[i].out_value)
1160 free((void *)fields[i].out_value);
1161 }
1162
1163 free(fields);
1164
1165 return retval;
1166 }
1167
1168 COMMAND_HANDLER(handle_verify_ircapture_command)
1169 {
1170 if (CMD_ARGC > 1)
1171 return ERROR_COMMAND_SYNTAX_ERROR;
1172
1173 if (CMD_ARGC == 1) {
1174 bool enable;
1175 COMMAND_PARSE_ENABLE(CMD_ARGV[0], enable);
1176 jtag_set_verify_capture_ir(enable);
1177 }
1178
1179 const char *status = jtag_will_verify_capture_ir() ? "enabled" : "disabled";
1180 command_print(CMD, "verify Capture-IR is %s", status);
1181
1182 return ERROR_OK;
1183 }
1184
1185 COMMAND_HANDLER(handle_verify_jtag_command)
1186 {
1187 if (CMD_ARGC > 1)
1188 return ERROR_COMMAND_SYNTAX_ERROR;
1189
1190 if (CMD_ARGC == 1) {
1191 bool enable;
1192 COMMAND_PARSE_ENABLE(CMD_ARGV[0], enable);
1193 jtag_set_verify(enable);
1194 }
1195
1196 const char *status = jtag_will_verify() ? "enabled" : "disabled";
1197 command_print(CMD, "verify jtag capture is %s", status);
1198
1199 return ERROR_OK;
1200 }
1201
1202 COMMAND_HANDLER(handle_tms_sequence_command)
1203 {
1204 if (CMD_ARGC > 1)
1205 return ERROR_COMMAND_SYNTAX_ERROR;
1206
1207 if (CMD_ARGC == 1) {
1208 bool use_new_table;
1209 if (strcmp(CMD_ARGV[0], "short") == 0)
1210 use_new_table = true;
1211 else if (strcmp(CMD_ARGV[0], "long") == 0)
1212 use_new_table = false;
1213 else
1214 return ERROR_COMMAND_SYNTAX_ERROR;
1215
1216 tap_use_new_tms_table(use_new_table);
1217 }
1218
1219 command_print(CMD, "tms sequence is %s",
1220 tap_uses_new_tms_table() ? "short" : "long");
1221
1222 return ERROR_OK;
1223 }
1224
1225 COMMAND_HANDLER(handle_jtag_flush_queue_sleep)
1226 {
1227 if (CMD_ARGC != 1)
1228 return ERROR_COMMAND_SYNTAX_ERROR;
1229
1230 int sleep_ms;
1231 COMMAND_PARSE_NUMBER(int, CMD_ARGV[0], sleep_ms);
1232
1233 jtag_set_flush_queue_sleep(sleep_ms);
1234
1235 return ERROR_OK;
1236 }
1237
1238 COMMAND_HANDLER(handle_wait_srst_deassert)
1239 {
1240 if (CMD_ARGC != 1)
1241 return ERROR_COMMAND_SYNTAX_ERROR;
1242
1243 int timeout_ms;
1244 COMMAND_PARSE_NUMBER(int, CMD_ARGV[0], timeout_ms);
1245 if ((timeout_ms <= 0) || (timeout_ms > 100000)) {
1246 LOG_ERROR("Timeout must be an integer between 0 and 100000");
1247 return ERROR_FAIL;
1248 }
1249
1250 LOG_USER("Waiting for srst assert + deassert for at most %dms", timeout_ms);
1251 int asserted_yet;
1252 int64_t then = timeval_ms();
1253 while (jtag_srst_asserted(&asserted_yet) == ERROR_OK) {
1254 if ((timeval_ms() - then) > timeout_ms) {
1255 LOG_ERROR("Timed out");
1256 return ERROR_FAIL;
1257 }
1258 if (asserted_yet)
1259 break;
1260 }
1261 while (jtag_srst_asserted(&asserted_yet) == ERROR_OK) {
1262 if ((timeval_ms() - then) > timeout_ms) {
1263 LOG_ERROR("Timed out");
1264 return ERROR_FAIL;
1265 }
1266 if (!asserted_yet)
1267 break;
1268 }
1269
1270 return ERROR_OK;
1271 }
1272
1273 static const struct command_registration jtag_command_handlers[] = {
1274
1275 {
1276 .name = "jtag_flush_queue_sleep",
1277 .handler = handle_jtag_flush_queue_sleep,
1278 .mode = COMMAND_ANY,
1279 .help = "For debug purposes(simulate long delays of interface) "
1280 "to test performance or change in behavior. Default 0ms.",
1281 .usage = "[sleep in ms]",
1282 },
1283 {
1284 .name = "jtag_rclk",
1285 .handler = handle_jtag_rclk_command,
1286 .mode = COMMAND_ANY,
1287 .help = "With an argument, change to to use adaptive clocking "
1288 "if possible; else to use the fallback speed. "
1289 "With or without argument, display current setting.",
1290 .usage = "[fallback_speed_khz]",
1291 },
1292 {
1293 .name = "jtag_ntrst_delay",
1294 .handler = handle_jtag_ntrst_delay_command,
1295 .mode = COMMAND_ANY,
1296 .help = "delay after deasserting trst in ms",
1297 .usage = "[milliseconds]",
1298 },
1299 {
1300 .name = "jtag_ntrst_assert_width",
1301 .handler = handle_jtag_ntrst_assert_width_command,
1302 .mode = COMMAND_ANY,
1303 .help = "delay after asserting trst in ms",
1304 .usage = "[milliseconds]",
1305 },
1306 {
1307 .name = "scan_chain",
1308 .handler = handle_scan_chain_command,
1309 .mode = COMMAND_ANY,
1310 .help = "print current scan chain configuration",
1311 .usage = ""
1312 },
1313 {
1314 .name = "runtest",
1315 .handler = handle_runtest_command,
1316 .mode = COMMAND_EXEC,
1317 .help = "Move to Run-Test/Idle, and issue TCK for num_cycles.",
1318 .usage = "num_cycles"
1319 },
1320 {
1321 .name = "irscan",
1322 .handler = handle_irscan_command,
1323 .mode = COMMAND_EXEC,
1324 .help = "Execute Instruction Register (IR) scan. The "
1325 "specified opcodes are put into each TAP's IR, "
1326 "and other TAPs are put in BYPASS.",
1327 .usage = "[tap_name instruction]* ['-endstate' state_name]",
1328 },
1329 {
1330 .name = "verify_ircapture",
1331 .handler = handle_verify_ircapture_command,
1332 .mode = COMMAND_ANY,
1333 .help = "Display or assign flag controlling whether to "
1334 "verify values captured during Capture-IR.",
1335 .usage = "['enable'|'disable']",
1336 },
1337 {
1338 .name = "verify_jtag",
1339 .handler = handle_verify_jtag_command,
1340 .mode = COMMAND_ANY,
1341 .help = "Display or assign flag controlling whether to "
1342 "verify values captured during IR and DR scans.",
1343 .usage = "['enable'|'disable']",
1344 },
1345 {
1346 .name = "tms_sequence",
1347 .handler = handle_tms_sequence_command,
1348 .mode = COMMAND_ANY,
1349 .help = "Display or change what style TMS sequences to use "
1350 "for JTAG state transitions: short (default) or "
1351 "long. Only for working around JTAG bugs.",
1352 /* Specifically for working around DRIVER bugs... */
1353 .usage = "['short'|'long']",
1354 },
1355 {
1356 .name = "wait_srst_deassert",
1357 .handler = handle_wait_srst_deassert,
1358 .mode = COMMAND_ANY,
1359 .help = "Wait for an SRST deassert. "
1360 "Useful for cases where you need something to happen within ms "
1361 "of an srst deassert. Timeout in ms ",
1362 .usage = "ms",
1363 },
1364 {
1365 .name = "jtag",
1366 .mode = COMMAND_ANY,
1367 .help = "perform jtag tap actions",
1368 .usage = "",
1369
1370 .chain = jtag_subcommand_handlers,
1371 },
1372 {
1373 .chain = jtag_command_handlers_to_move,
1374 },
1375 COMMAND_REGISTRATION_DONE
1376 };
1377
1378 int jtag_register_commands(struct command_context *cmd_ctx)
1379 {
1380 return register_commands(cmd_ctx, NULL, jtag_command_handlers);
1381 }

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)