Relax polling check if not in JTAG mode
[openocd.git] / src / jtag / core.c
1 /***************************************************************************
2 * Copyright (C) 2009 Zachary T Welch *
3 * zw@superlucidity.net *
4 * *
5 * Copyright (C) 2007,2008,2009 Ø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) 2005 by Dominic Rath *
13 * Dominic.Rath@gmx.de *
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 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
29 ***************************************************************************/
30
31 #ifdef HAVE_CONFIG_H
32 #include "config.h"
33 #endif
34
35 #include "jtag.h"
36 #include "swd.h"
37 #include "interface.h"
38 #include <transport/transport.h>
39
40 #ifdef HAVE_STRINGS_H
41 #include <strings.h>
42 #endif
43
44 /* SVF and XSVF are higher level JTAG command sets (for boundary scan) */
45 #include "svf/svf.h"
46 #include "xsvf/xsvf.h"
47
48 /** The number of JTAG queue flushes (for profiling and debugging purposes). */
49 static int jtag_flush_queue_count;
50
51 /* Sleep this # of ms after flushing the queue */
52 static int jtag_flush_queue_sleep;
53
54 static void jtag_add_scan_check(struct jtag_tap *active,
55 void (*jtag_add_scan)(struct jtag_tap *active,
56 int in_num_fields,
57 const struct scan_field *in_fields,
58 tap_state_t state),
59 int in_num_fields, struct scan_field *in_fields, tap_state_t state);
60
61 /**
62 * The jtag_error variable is set when an error occurs while executing
63 * the queue. Application code may set this using jtag_set_error(),
64 * when an error occurs during processing that should be reported during
65 * jtag_execute_queue().
66 *
67 * The value is set and cleared, but never read by normal application code.
68 *
69 * This value is returned (and cleared) by jtag_execute_queue().
70 */
71 static int jtag_error = ERROR_OK;
72
73 static const char *jtag_event_strings[] = {
74 [JTAG_TRST_ASSERTED] = "TAP reset",
75 [JTAG_TAP_EVENT_SETUP] = "TAP setup",
76 [JTAG_TAP_EVENT_ENABLE] = "TAP enabled",
77 [JTAG_TAP_EVENT_DISABLE] = "TAP disabled",
78 };
79
80 /*
81 * JTAG adapters must initialize with TRST and SRST de-asserted
82 * (they're negative logic, so that means *high*). But some
83 * hardware doesn't necessarily work that way ... so set things
84 * up so that jtag_init() always forces that state.
85 */
86 static int jtag_trst = -1;
87 static int jtag_srst = -1;
88
89 /**
90 * List all TAPs that have been created.
91 */
92 static struct jtag_tap *__jtag_all_taps;
93 /**
94 * The number of TAPs in the __jtag_all_taps list, used to track the
95 * assigned chain position to new TAPs
96 */
97 static unsigned jtag_num_taps;
98
99 static enum reset_types jtag_reset_config = RESET_NONE;
100 tap_state_t cmd_queue_cur_state = TAP_RESET;
101
102 static bool jtag_verify_capture_ir = true;
103 static int jtag_verify = 1;
104
105 /* how long the OpenOCD should wait before attempting JTAG communication after reset lines
106 *deasserted (in ms) */
107 static int adapter_nsrst_delay; /* default to no nSRST delay */
108 static int jtag_ntrst_delay;/* default to no nTRST delay */
109 static int adapter_nsrst_assert_width; /* width of assertion */
110 static int jtag_ntrst_assert_width; /* width of assertion */
111
112 /**
113 * Contains a single callback along with a pointer that will be passed
114 * when an event occurs.
115 */
116 struct jtag_event_callback {
117 /** a event callback */
118 jtag_event_handler_t callback;
119 /** the private data to pass to the callback */
120 void *priv;
121 /** the next callback */
122 struct jtag_event_callback *next;
123 };
124
125 /* callbacks to inform high-level handlers about JTAG state changes */
126 static struct jtag_event_callback *jtag_event_callbacks;
127
128 /* speed in kHz*/
129 static int speed_khz;
130 /* speed to fallback to when RCLK is requested but not supported */
131 static int rclk_fallback_speed_khz;
132 static enum {CLOCK_MODE_UNSELECTED, CLOCK_MODE_KHZ, CLOCK_MODE_RCLK} clock_mode;
133 static int jtag_speed;
134
135 static struct jtag_interface *jtag;
136
137 /* configuration */
138 struct jtag_interface *jtag_interface;
139
140 void jtag_set_flush_queue_sleep(int ms)
141 {
142 jtag_flush_queue_sleep = ms;
143 }
144
145 void jtag_set_error(int error)
146 {
147 if ((error == ERROR_OK) || (jtag_error != ERROR_OK))
148 return;
149 jtag_error = error;
150 }
151
152 int jtag_error_clear(void)
153 {
154 int temp = jtag_error;
155 jtag_error = ERROR_OK;
156 return temp;
157 }
158
159 /************/
160
161 static bool jtag_poll = 1;
162
163 bool is_jtag_poll_safe(void)
164 {
165 /* Polling can be disabled explicitly with set_enabled(false).
166 * It is also implicitly disabled while TRST is active and
167 * while SRST is gating the JTAG clock.
168 */
169 if (!transport_is_jtag())
170 return jtag_poll;
171
172 if (!jtag_poll || jtag_trst != 0)
173 return false;
174 return jtag_srst == 0 || (jtag_reset_config & RESET_SRST_NO_GATING);
175 }
176
177 bool jtag_poll_get_enabled(void)
178 {
179 return jtag_poll;
180 }
181
182 void jtag_poll_set_enabled(bool value)
183 {
184 jtag_poll = value;
185 }
186
187 /************/
188
189 struct jtag_tap *jtag_all_taps(void)
190 {
191 return __jtag_all_taps;
192 };
193
194 unsigned jtag_tap_count(void)
195 {
196 return jtag_num_taps;
197 }
198
199 unsigned jtag_tap_count_enabled(void)
200 {
201 struct jtag_tap *t = jtag_all_taps();
202 unsigned n = 0;
203 while (t) {
204 if (t->enabled)
205 n++;
206 t = t->next_tap;
207 }
208 return n;
209 }
210
211 /** Append a new TAP to the chain of all taps. */
212 void jtag_tap_add(struct jtag_tap *t)
213 {
214 t->abs_chain_position = jtag_num_taps++;
215
216 struct jtag_tap **tap = &__jtag_all_taps;
217 while (*tap != NULL)
218 tap = &(*tap)->next_tap;
219 *tap = t;
220 }
221
222 /* returns a pointer to the n-th device in the scan chain */
223 struct jtag_tap *jtag_tap_by_position(unsigned n)
224 {
225 struct jtag_tap *t = jtag_all_taps();
226
227 while (t && n-- > 0)
228 t = t->next_tap;
229
230 return t;
231 }
232
233 struct jtag_tap *jtag_tap_by_string(const char *s)
234 {
235 /* try by name first */
236 struct jtag_tap *t = jtag_all_taps();
237
238 while (t) {
239 if (0 == strcmp(t->dotted_name, s))
240 return t;
241 t = t->next_tap;
242 }
243
244 /* no tap found by name, so try to parse the name as a number */
245 unsigned n;
246 if (parse_uint(s, &n) != ERROR_OK)
247 return NULL;
248
249 /* FIXME remove this numeric fallback code late June 2010, along
250 * with all info in the User's Guide that TAPs have numeric IDs.
251 * Also update "scan_chain" output to not display the numbers.
252 */
253 t = jtag_tap_by_position(n);
254 if (t)
255 LOG_WARNING("Specify TAP '%s' by name, not number %u",
256 t->dotted_name, n);
257
258 return t;
259 }
260
261 struct jtag_tap *jtag_tap_next_enabled(struct jtag_tap *p)
262 {
263 p = p ? p->next_tap : jtag_all_taps();
264 while (p) {
265 if (p->enabled)
266 return p;
267 p = p->next_tap;
268 }
269 return NULL;
270 }
271
272 const char *jtag_tap_name(const struct jtag_tap *tap)
273 {
274 return (tap == NULL) ? "(unknown)" : tap->dotted_name;
275 }
276
277
278 int jtag_register_event_callback(jtag_event_handler_t callback, void *priv)
279 {
280 struct jtag_event_callback **callbacks_p = &jtag_event_callbacks;
281
282 if (callback == NULL)
283 return ERROR_COMMAND_SYNTAX_ERROR;
284
285 if (*callbacks_p) {
286 while ((*callbacks_p)->next)
287 callbacks_p = &((*callbacks_p)->next);
288 callbacks_p = &((*callbacks_p)->next);
289 }
290
291 (*callbacks_p) = malloc(sizeof(struct jtag_event_callback));
292 (*callbacks_p)->callback = callback;
293 (*callbacks_p)->priv = priv;
294 (*callbacks_p)->next = NULL;
295
296 return ERROR_OK;
297 }
298
299 int jtag_unregister_event_callback(jtag_event_handler_t callback, void *priv)
300 {
301 struct jtag_event_callback **p = &jtag_event_callbacks, *temp;
302
303 if (callback == NULL)
304 return ERROR_COMMAND_SYNTAX_ERROR;
305
306 while (*p) {
307 if (((*p)->priv != priv) || ((*p)->callback != callback)) {
308 p = &(*p)->next;
309 continue;
310 }
311
312 temp = *p;
313 *p = (*p)->next;
314 free(temp);
315 }
316
317 return ERROR_OK;
318 }
319
320 int jtag_call_event_callbacks(enum jtag_event event)
321 {
322 struct jtag_event_callback *callback = jtag_event_callbacks;
323
324 LOG_DEBUG("jtag event: %s", jtag_event_strings[event]);
325
326 while (callback) {
327 struct jtag_event_callback *next;
328
329 /* callback may remove itself */
330 next = callback->next;
331 callback->callback(event, callback->priv);
332 callback = next;
333 }
334
335 return ERROR_OK;
336 }
337
338 static void jtag_checks(void)
339 {
340 assert(jtag_trst == 0);
341 }
342
343 static void jtag_prelude(tap_state_t state)
344 {
345 jtag_checks();
346
347 assert(state != TAP_INVALID);
348
349 cmd_queue_cur_state = state;
350 }
351
352 void jtag_add_ir_scan_noverify(struct jtag_tap *active, const struct scan_field *in_fields,
353 tap_state_t state)
354 {
355 jtag_prelude(state);
356
357 int retval = interface_jtag_add_ir_scan(active, in_fields, state);
358 jtag_set_error(retval);
359 }
360
361 static void jtag_add_ir_scan_noverify_callback(struct jtag_tap *active,
362 int dummy,
363 const struct scan_field *in_fields,
364 tap_state_t state)
365 {
366 jtag_add_ir_scan_noverify(active, in_fields, state);
367 }
368
369 /* If fields->in_value is filled out, then the captured IR value will be checked */
370 void jtag_add_ir_scan(struct jtag_tap *active, struct scan_field *in_fields, tap_state_t state)
371 {
372 assert(state != TAP_RESET);
373
374 if (jtag_verify && jtag_verify_capture_ir) {
375 /* 8 x 32 bit id's is enough for all invocations */
376
377 /* if we are to run a verification of the ir scan, we need to get the input back.
378 * We may have to allocate space if the caller didn't ask for the input back.
379 */
380 in_fields->check_value = active->expected;
381 in_fields->check_mask = active->expected_mask;
382 jtag_add_scan_check(active, jtag_add_ir_scan_noverify_callback, 1, in_fields,
383 state);
384 } else
385 jtag_add_ir_scan_noverify(active, in_fields, state);
386 }
387
388 void jtag_add_plain_ir_scan(int num_bits, const uint8_t *out_bits, uint8_t *in_bits,
389 tap_state_t state)
390 {
391 assert(out_bits != NULL);
392 assert(state != TAP_RESET);
393
394 jtag_prelude(state);
395
396 int retval = interface_jtag_add_plain_ir_scan(
397 num_bits, out_bits, in_bits, state);
398 jtag_set_error(retval);
399 }
400
401 static int jtag_check_value_inner(uint8_t *captured, uint8_t *in_check_value,
402 uint8_t *in_check_mask, int num_bits);
403
404 static int jtag_check_value_mask_callback(jtag_callback_data_t data0,
405 jtag_callback_data_t data1,
406 jtag_callback_data_t data2,
407 jtag_callback_data_t data3)
408 {
409 return jtag_check_value_inner((uint8_t *)data0,
410 (uint8_t *)data1,
411 (uint8_t *)data2,
412 (int)data3);
413 }
414
415 static void jtag_add_scan_check(struct jtag_tap *active, void (*jtag_add_scan)(
416 struct jtag_tap *active,
417 int in_num_fields,
418 const struct scan_field *in_fields,
419 tap_state_t state),
420 int in_num_fields, struct scan_field *in_fields, tap_state_t state)
421 {
422 jtag_add_scan(active, in_num_fields, in_fields, state);
423
424 for (int i = 0; i < in_num_fields; i++) {
425 if ((in_fields[i].check_value != NULL) && (in_fields[i].in_value != NULL)) {
426 /* this is synchronous for a minidriver */
427 jtag_add_callback4(jtag_check_value_mask_callback,
428 (jtag_callback_data_t)in_fields[i].in_value,
429 (jtag_callback_data_t)in_fields[i].check_value,
430 (jtag_callback_data_t)in_fields[i].check_mask,
431 (jtag_callback_data_t)in_fields[i].num_bits);
432 }
433 }
434 }
435
436 void jtag_add_dr_scan_check(struct jtag_tap *active,
437 int in_num_fields,
438 struct scan_field *in_fields,
439 tap_state_t state)
440 {
441 if (jtag_verify)
442 jtag_add_scan_check(active, jtag_add_dr_scan, in_num_fields, in_fields, state);
443 else
444 jtag_add_dr_scan(active, in_num_fields, in_fields, state);
445 }
446
447
448 void jtag_add_dr_scan(struct jtag_tap *active,
449 int in_num_fields,
450 const struct scan_field *in_fields,
451 tap_state_t state)
452 {
453 assert(state != TAP_RESET);
454
455 jtag_prelude(state);
456
457 int retval;
458 retval = interface_jtag_add_dr_scan(active, in_num_fields, in_fields, state);
459 jtag_set_error(retval);
460 }
461
462 void jtag_add_plain_dr_scan(int num_bits, const uint8_t *out_bits, uint8_t *in_bits,
463 tap_state_t state)
464 {
465 assert(out_bits != NULL);
466 assert(state != TAP_RESET);
467
468 jtag_prelude(state);
469
470 int retval;
471 retval = interface_jtag_add_plain_dr_scan(num_bits, out_bits, in_bits, state);
472 jtag_set_error(retval);
473 }
474
475 void jtag_add_tlr(void)
476 {
477 jtag_prelude(TAP_RESET);
478 jtag_set_error(interface_jtag_add_tlr());
479
480 /* NOTE: order here matches TRST path in jtag_add_reset() */
481 jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
482 jtag_notify_event(JTAG_TRST_ASSERTED);
483 }
484
485 /**
486 * If supported by the underlying adapter, this clocks a raw bit sequence
487 * onto TMS for switching betwen JTAG and SWD modes.
488 *
489 * DO NOT use this to bypass the integrity checks and logging provided
490 * by the jtag_add_pathmove() and jtag_add_statemove() calls.
491 *
492 * @param nbits How many bits to clock out.
493 * @param seq The bit sequence. The LSB is bit 0 of seq[0].
494 * @param state The JTAG tap state to record on completion. Use
495 * TAP_INVALID to represent being in in SWD mode.
496 *
497 * @todo Update naming conventions to stop assuming everything is JTAG.
498 */
499 int jtag_add_tms_seq(unsigned nbits, const uint8_t *seq, enum tap_state state)
500 {
501 int retval;
502
503 if (!(jtag->supported & DEBUG_CAP_TMS_SEQ))
504 return ERROR_JTAG_NOT_IMPLEMENTED;
505
506 jtag_checks();
507 cmd_queue_cur_state = state;
508
509 retval = interface_add_tms_seq(nbits, seq, state);
510 jtag_set_error(retval);
511 return retval;
512 }
513
514 void jtag_add_pathmove(int num_states, const tap_state_t *path)
515 {
516 tap_state_t cur_state = cmd_queue_cur_state;
517
518 /* the last state has to be a stable state */
519 if (!tap_is_state_stable(path[num_states - 1])) {
520 LOG_ERROR("BUG: TAP path doesn't finish in a stable state");
521 jtag_set_error(ERROR_JTAG_NOT_STABLE_STATE);
522 return;
523 }
524
525 for (int i = 0; i < num_states; i++) {
526 if (path[i] == TAP_RESET) {
527 LOG_ERROR("BUG: TAP_RESET is not a valid state for pathmove sequences");
528 jtag_set_error(ERROR_JTAG_STATE_INVALID);
529 return;
530 }
531
532 if (tap_state_transition(cur_state, true) != path[i] &&
533 tap_state_transition(cur_state, false) != path[i]) {
534 LOG_ERROR("BUG: %s -> %s isn't a valid TAP transition",
535 tap_state_name(cur_state), tap_state_name(path[i]));
536 jtag_set_error(ERROR_JTAG_TRANSITION_INVALID);
537 return;
538 }
539 cur_state = path[i];
540 }
541
542 jtag_checks();
543
544 jtag_set_error(interface_jtag_add_pathmove(num_states, path));
545 cmd_queue_cur_state = path[num_states - 1];
546 }
547
548 int jtag_add_statemove(tap_state_t goal_state)
549 {
550 tap_state_t cur_state = cmd_queue_cur_state;
551
552 if (goal_state != cur_state) {
553 LOG_DEBUG("cur_state=%s goal_state=%s",
554 tap_state_name(cur_state),
555 tap_state_name(goal_state));
556 }
557
558 /* If goal is RESET, be paranoid and force that that transition
559 * (e.g. five TCK cycles, TMS high). Else trust "cur_state".
560 */
561 if (goal_state == TAP_RESET)
562 jtag_add_tlr();
563 else if (goal_state == cur_state)
564 /* nothing to do */;
565
566 else if (tap_is_state_stable(cur_state) && tap_is_state_stable(goal_state)) {
567 unsigned tms_bits = tap_get_tms_path(cur_state, goal_state);
568 unsigned tms_count = tap_get_tms_path_len(cur_state, goal_state);
569 tap_state_t moves[8];
570 assert(tms_count < ARRAY_SIZE(moves));
571
572 for (unsigned i = 0; i < tms_count; i++, tms_bits >>= 1) {
573 bool bit = tms_bits & 1;
574
575 cur_state = tap_state_transition(cur_state, bit);
576 moves[i] = cur_state;
577 }
578
579 jtag_add_pathmove(tms_count, moves);
580 } else if (tap_state_transition(cur_state, true) == goal_state
581 || tap_state_transition(cur_state, false) == goal_state)
582 jtag_add_pathmove(1, &goal_state);
583 else
584 return ERROR_FAIL;
585
586 return ERROR_OK;
587 }
588
589 void jtag_add_runtest(int num_cycles, tap_state_t state)
590 {
591 jtag_prelude(state);
592 jtag_set_error(interface_jtag_add_runtest(num_cycles, state));
593 }
594
595
596 void jtag_add_clocks(int num_cycles)
597 {
598 if (!tap_is_state_stable(cmd_queue_cur_state)) {
599 LOG_ERROR("jtag_add_clocks() called with TAP in unstable state \"%s\"",
600 tap_state_name(cmd_queue_cur_state));
601 jtag_set_error(ERROR_JTAG_NOT_STABLE_STATE);
602 return;
603 }
604
605 if (num_cycles > 0) {
606 jtag_checks();
607 jtag_set_error(interface_jtag_add_clocks(num_cycles));
608 }
609 }
610
611 void swd_add_reset(int req_srst)
612 {
613 if (req_srst) {
614 if (!(jtag_reset_config & RESET_HAS_SRST)) {
615 LOG_ERROR("BUG: can't assert SRST");
616 jtag_set_error(ERROR_FAIL);
617 return;
618 }
619 req_srst = 1;
620 }
621
622 /* Maybe change SRST signal state */
623 if (jtag_srst != req_srst) {
624 int retval;
625
626 retval = interface_jtag_add_reset(0, req_srst);
627 if (retval != ERROR_OK)
628 jtag_set_error(retval);
629 else
630 retval = jtag_execute_queue();
631
632 if (retval != ERROR_OK) {
633 LOG_ERROR("TRST/SRST error");
634 return;
635 }
636
637 /* SRST resets everything hooked up to that signal */
638 jtag_srst = req_srst;
639 if (jtag_srst) {
640 LOG_DEBUG("SRST line asserted");
641 if (adapter_nsrst_assert_width)
642 jtag_add_sleep(adapter_nsrst_assert_width * 1000);
643 } else {
644 LOG_DEBUG("SRST line released");
645 if (adapter_nsrst_delay)
646 jtag_add_sleep(adapter_nsrst_delay * 1000);
647 }
648 }
649 }
650
651 void jtag_add_reset(int req_tlr_or_trst, int req_srst)
652 {
653 int trst_with_tlr = 0;
654 int new_srst = 0;
655 int new_trst = 0;
656
657 /* Without SRST, we must use target-specific JTAG operations
658 * on each target; callers should not be requesting SRST when
659 * that signal doesn't exist.
660 *
661 * RESET_SRST_PULLS_TRST is a board or chip level quirk, which
662 * can kick in even if the JTAG adapter can't drive TRST.
663 */
664 if (req_srst) {
665 if (!(jtag_reset_config & RESET_HAS_SRST)) {
666 LOG_ERROR("BUG: can't assert SRST");
667 jtag_set_error(ERROR_FAIL);
668 return;
669 }
670 if ((jtag_reset_config & RESET_SRST_PULLS_TRST) != 0
671 && !req_tlr_or_trst) {
672 LOG_ERROR("BUG: can't assert only SRST");
673 jtag_set_error(ERROR_FAIL);
674 return;
675 }
676 new_srst = 1;
677 }
678
679 /* JTAG reset (entry to TAP_RESET state) can always be achieved
680 * using TCK and TMS; that may go through a TAP_{IR,DR}UPDATE
681 * state first. TRST accelerates it, and bypasses those states.
682 *
683 * RESET_TRST_PULLS_SRST is a board or chip level quirk, which
684 * can kick in even if the JTAG adapter can't drive SRST.
685 */
686 if (req_tlr_or_trst) {
687 if (!(jtag_reset_config & RESET_HAS_TRST))
688 trst_with_tlr = 1;
689 else if ((jtag_reset_config & RESET_TRST_PULLS_SRST) != 0
690 && !req_srst)
691 trst_with_tlr = 1;
692 else
693 new_trst = 1;
694 }
695
696 /* Maybe change TRST and/or SRST signal state */
697 if (jtag_srst != new_srst || jtag_trst != new_trst) {
698 int retval;
699
700 retval = interface_jtag_add_reset(new_trst, new_srst);
701 if (retval != ERROR_OK)
702 jtag_set_error(retval);
703 else
704 retval = jtag_execute_queue();
705
706 if (retval != ERROR_OK) {
707 LOG_ERROR("TRST/SRST error");
708 return;
709 }
710 }
711
712 /* SRST resets everything hooked up to that signal */
713 if (jtag_srst != new_srst) {
714 jtag_srst = new_srst;
715 if (jtag_srst) {
716 LOG_DEBUG("SRST line asserted");
717 if (adapter_nsrst_assert_width)
718 jtag_add_sleep(adapter_nsrst_assert_width * 1000);
719 } else {
720 LOG_DEBUG("SRST line released");
721 if (adapter_nsrst_delay)
722 jtag_add_sleep(adapter_nsrst_delay * 1000);
723 }
724 }
725
726 /* Maybe enter the JTAG TAP_RESET state ...
727 * - using only TMS, TCK, and the JTAG state machine
728 * - or else more directly, using TRST
729 *
730 * TAP_RESET should be invisible to non-debug parts of the system.
731 */
732 if (trst_with_tlr) {
733 LOG_DEBUG("JTAG reset with TLR instead of TRST");
734 jtag_add_tlr();
735
736 } else if (jtag_trst != new_trst) {
737 jtag_trst = new_trst;
738 if (jtag_trst) {
739 LOG_DEBUG("TRST line asserted");
740 tap_set_state(TAP_RESET);
741 if (jtag_ntrst_assert_width)
742 jtag_add_sleep(jtag_ntrst_assert_width * 1000);
743 } else {
744 LOG_DEBUG("TRST line released");
745 if (jtag_ntrst_delay)
746 jtag_add_sleep(jtag_ntrst_delay * 1000);
747
748 /* We just asserted nTRST, so we're now in TAP_RESET.
749 * Inform possible listeners about this, now that
750 * JTAG instructions and data can be shifted. This
751 * sequence must match jtag_add_tlr().
752 */
753 jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
754 jtag_notify_event(JTAG_TRST_ASSERTED);
755 }
756 }
757 }
758
759 void jtag_add_sleep(uint32_t us)
760 {
761 /** @todo Here, keep_alive() appears to be a layering violation!!! */
762 keep_alive();
763 jtag_set_error(interface_jtag_add_sleep(us));
764 }
765
766 static int jtag_check_value_inner(uint8_t *captured, uint8_t *in_check_value,
767 uint8_t *in_check_mask, int num_bits)
768 {
769 int retval = ERROR_OK;
770 int compare_failed;
771
772 if (in_check_mask)
773 compare_failed = buf_cmp_mask(captured, in_check_value, in_check_mask, num_bits);
774 else
775 compare_failed = buf_cmp(captured, in_check_value, num_bits);
776
777 if (compare_failed) {
778 char *captured_str, *in_check_value_str;
779 int bits = (num_bits > DEBUG_JTAG_IOZ) ? DEBUG_JTAG_IOZ : num_bits;
780
781 /* NOTE: we've lost diagnostic context here -- 'which tap' */
782
783 captured_str = buf_to_str(captured, bits, 16);
784 in_check_value_str = buf_to_str(in_check_value, bits, 16);
785
786 LOG_WARNING("Bad value '%s' captured during DR or IR scan:",
787 captured_str);
788 LOG_WARNING(" check_value: 0x%s", in_check_value_str);
789
790 free(captured_str);
791 free(in_check_value_str);
792
793 if (in_check_mask) {
794 char *in_check_mask_str;
795
796 in_check_mask_str = buf_to_str(in_check_mask, bits, 16);
797 LOG_WARNING(" check_mask: 0x%s", in_check_mask_str);
798 free(in_check_mask_str);
799 }
800
801 retval = ERROR_JTAG_QUEUE_FAILED;
802 }
803 return retval;
804 }
805
806 void jtag_check_value_mask(struct scan_field *field, uint8_t *value, uint8_t *mask)
807 {
808 assert(field->in_value != NULL);
809
810 if (value == NULL) {
811 /* no checking to do */
812 return;
813 }
814
815 jtag_execute_queue_noclear();
816
817 int retval = jtag_check_value_inner(field->in_value, value, mask, field->num_bits);
818 jtag_set_error(retval);
819 }
820
821 int default_interface_jtag_execute_queue(void)
822 {
823 if (NULL == jtag) {
824 LOG_ERROR("No JTAG interface configured yet. "
825 "Issue 'init' command in startup scripts "
826 "before communicating with targets.");
827 return ERROR_FAIL;
828 }
829
830 return jtag->execute_queue();
831 }
832
833 void jtag_execute_queue_noclear(void)
834 {
835 jtag_flush_queue_count++;
836 jtag_set_error(interface_jtag_execute_queue());
837
838 if (jtag_flush_queue_sleep > 0) {
839 /* For debug purposes it can be useful to test performance
840 * or behavior when delaying after flushing the queue,
841 * e.g. to simulate long roundtrip times.
842 */
843 usleep(jtag_flush_queue_sleep * 1000);
844 }
845 }
846
847 int jtag_get_flush_queue_count(void)
848 {
849 return jtag_flush_queue_count;
850 }
851
852 int jtag_execute_queue(void)
853 {
854 jtag_execute_queue_noclear();
855 return jtag_error_clear();
856 }
857
858 static int jtag_reset_callback(enum jtag_event event, void *priv)
859 {
860 struct jtag_tap *tap = priv;
861
862 if (event == JTAG_TRST_ASSERTED) {
863 tap->enabled = !tap->disabled_after_reset;
864
865 /* current instruction is either BYPASS or IDCODE */
866 buf_set_ones(tap->cur_instr, tap->ir_length);
867 tap->bypass = 1;
868 }
869
870 return ERROR_OK;
871 }
872
873 /* sleep at least us microseconds. When we sleep more than 1000ms we
874 * do an alive sleep, i.e. keep GDB alive. Note that we could starve
875 * GDB if we slept for <1000ms many times.
876 */
877 void jtag_sleep(uint32_t us)
878 {
879 if (us < 1000)
880 usleep(us);
881 else
882 alive_sleep((us+999)/1000);
883 }
884
885 /* Maximum number of enabled JTAG devices we expect in the scan chain,
886 * plus one (to detect garbage at the end). Devices that don't support
887 * IDCODE take up fewer bits, possibly allowing a few more devices.
888 */
889 #define JTAG_MAX_CHAIN_SIZE 20
890
891 #define EXTRACT_MFG(X) (((X) & 0xffe) >> 1)
892 #define EXTRACT_PART(X) (((X) & 0xffff000) >> 12)
893 #define EXTRACT_VER(X) (((X) & 0xf0000000) >> 28)
894
895 /* A reserved manufacturer ID is used in END_OF_CHAIN_FLAG, so we
896 * know that no valid TAP will have it as an IDCODE value.
897 */
898 #define END_OF_CHAIN_FLAG 0xffffffff
899
900 /* a larger IR length than we ever expect to autoprobe */
901 #define JTAG_IRLEN_MAX 60
902
903 static int jtag_examine_chain_execute(uint8_t *idcode_buffer, unsigned num_idcode)
904 {
905 struct scan_field field = {
906 .num_bits = num_idcode * 32,
907 .out_value = idcode_buffer,
908 .in_value = idcode_buffer,
909 };
910
911 /* initialize to the end of chain ID value */
912 for (unsigned i = 0; i < JTAG_MAX_CHAIN_SIZE; i++)
913 buf_set_u32(idcode_buffer, i * 32, 32, END_OF_CHAIN_FLAG);
914
915 jtag_add_plain_dr_scan(field.num_bits, field.out_value, field.in_value, TAP_DRPAUSE);
916 jtag_add_tlr();
917 return jtag_execute_queue();
918 }
919
920 static bool jtag_examine_chain_check(uint8_t *idcodes, unsigned count)
921 {
922 uint8_t zero_check = 0x0;
923 uint8_t one_check = 0xff;
924
925 for (unsigned i = 0; i < count * 4; i++) {
926 zero_check |= idcodes[i];
927 one_check &= idcodes[i];
928 }
929
930 /* if there wasn't a single non-zero bit or if all bits were one,
931 * the scan is not valid. We wrote a mix of both values; either
932 *
933 * - There's a hardware issue (almost certainly):
934 * + all-zeroes can mean a target stuck in JTAG reset
935 * + all-ones tends to mean no target
936 * - The scan chain is WAY longer than we can handle, *AND* either
937 * + there are several hundreds of TAPs in bypass, or
938 * + at least a few dozen TAPs all have an all-ones IDCODE
939 */
940 if (zero_check == 0x00 || one_check == 0xff) {
941 LOG_ERROR("JTAG scan chain interrogation failed: all %s",
942 (zero_check == 0x00) ? "zeroes" : "ones");
943 LOG_ERROR("Check JTAG interface, timings, target power, etc.");
944 return false;
945 }
946 return true;
947 }
948
949 static void jtag_examine_chain_display(enum log_levels level, const char *msg,
950 const char *name, uint32_t idcode)
951 {
952 log_printf_lf(level, __FILE__, __LINE__, __func__,
953 "JTAG tap: %s %16.16s: 0x%08x "
954 "(mfg: 0x%3.3x, part: 0x%4.4x, ver: 0x%1.1x)",
955 name, msg,
956 (unsigned int)idcode,
957 (unsigned int)EXTRACT_MFG(idcode),
958 (unsigned int)EXTRACT_PART(idcode),
959 (unsigned int)EXTRACT_VER(idcode));
960 }
961
962 static bool jtag_idcode_is_final(uint32_t idcode)
963 {
964 /*
965 * Some devices, such as AVR8, will output all 1's instead
966 * of TDI input value at end of chain. Allow those values
967 * instead of failing.
968 */
969 return idcode == END_OF_CHAIN_FLAG;
970 }
971
972 /**
973 * This helper checks that remaining bits in the examined chain data are
974 * all as expected, but a single JTAG device requires only 64 bits to be
975 * read back correctly. This can help identify and diagnose problems
976 * with the JTAG chain earlier, gives more helpful/explicit error messages.
977 * Returns TRUE iff garbage was found.
978 */
979 static bool jtag_examine_chain_end(uint8_t *idcodes, unsigned count, unsigned max)
980 {
981 bool triggered = false;
982 for (; count < max - 31; count += 32) {
983 uint32_t idcode = buf_get_u32(idcodes, count, 32);
984
985 /* do not trigger the warning if the data looks good */
986 if (jtag_idcode_is_final(idcode))
987 continue;
988 LOG_WARNING("Unexpected idcode after end of chain: %d 0x%08x",
989 count, (unsigned int)idcode);
990 triggered = true;
991 }
992 return triggered;
993 }
994
995 static bool jtag_examine_chain_match_tap(const struct jtag_tap *tap)
996 {
997 uint32_t idcode = tap->idcode;
998
999 /* ignore expected BYPASS codes; warn otherwise */
1000 if (0 == tap->expected_ids_cnt && !idcode)
1001 return true;
1002
1003 /* optionally ignore the JTAG version field - bits 28-31 of IDCODE */
1004 uint32_t mask = tap->ignore_version ? ~(0xf << 28) : ~0;
1005
1006 idcode &= mask;
1007
1008 /* Loop over the expected identification codes and test for a match */
1009 unsigned ii, limit = tap->expected_ids_cnt;
1010
1011 for (ii = 0; ii < limit; ii++) {
1012 uint32_t expected = tap->expected_ids[ii] & mask;
1013
1014 if (idcode == expected)
1015 return true;
1016
1017 /* treat "-expected-id 0" as a "don't-warn" wildcard */
1018 if (0 == tap->expected_ids[ii])
1019 return true;
1020 }
1021
1022 /* If none of the expected ids matched, warn */
1023 jtag_examine_chain_display(LOG_LVL_WARNING, "UNEXPECTED",
1024 tap->dotted_name, tap->idcode);
1025 for (ii = 0; ii < limit; ii++) {
1026 char msg[32];
1027
1028 snprintf(msg, sizeof(msg), "expected %u of %u", ii + 1, limit);
1029 jtag_examine_chain_display(LOG_LVL_ERROR, msg,
1030 tap->dotted_name, tap->expected_ids[ii]);
1031 }
1032 return false;
1033 }
1034
1035 /* Try to examine chain layout according to IEEE 1149.1 §12
1036 * This is called a "blind interrogation" of the scan chain.
1037 */
1038 static int jtag_examine_chain(void)
1039 {
1040 uint8_t idcode_buffer[JTAG_MAX_CHAIN_SIZE * 4];
1041 unsigned bit_count;
1042 int retval;
1043 int tapcount = 0;
1044 bool autoprobe = false;
1045
1046 /* DR scan to collect BYPASS or IDCODE register contents.
1047 * Then make sure the scan data has both ones and zeroes.
1048 */
1049 LOG_DEBUG("DR scan interrogation for IDCODE/BYPASS");
1050 retval = jtag_examine_chain_execute(idcode_buffer, JTAG_MAX_CHAIN_SIZE);
1051 if (retval != ERROR_OK)
1052 return retval;
1053 if (!jtag_examine_chain_check(idcode_buffer, JTAG_MAX_CHAIN_SIZE))
1054 return ERROR_JTAG_INIT_FAILED;
1055
1056 /* point at the 1st tap */
1057 struct jtag_tap *tap = jtag_tap_next_enabled(NULL);
1058
1059 if (!tap)
1060 autoprobe = true;
1061
1062 for (bit_count = 0;
1063 tap && bit_count < (JTAG_MAX_CHAIN_SIZE * 32) - 31;
1064 tap = jtag_tap_next_enabled(tap)) {
1065 uint32_t idcode = buf_get_u32(idcode_buffer, bit_count, 32);
1066
1067 if ((idcode & 1) == 0) {
1068 /* Zero for LSB indicates a device in bypass */
1069 LOG_INFO("TAP %s does not have IDCODE",
1070 tap->dotted_name);
1071 idcode = 0;
1072 tap->hasidcode = false;
1073
1074 bit_count += 1;
1075 } else {
1076 /* Friendly devices support IDCODE */
1077 tap->hasidcode = true;
1078 jtag_examine_chain_display(LOG_LVL_INFO,
1079 "tap/device found",
1080 tap->dotted_name, idcode);
1081
1082 bit_count += 32;
1083 }
1084 tap->idcode = idcode;
1085
1086 /* ensure the TAP ID matches what was expected */
1087 if (!jtag_examine_chain_match_tap(tap))
1088 retval = ERROR_JTAG_INIT_SOFT_FAIL;
1089 }
1090
1091 /* Fail if too many TAPs were enabled for us to verify them all. */
1092 if (tap) {
1093 LOG_ERROR("Too many TAPs enabled; '%s' ignored.",
1094 tap->dotted_name);
1095 return ERROR_JTAG_INIT_FAILED;
1096 }
1097
1098 /* if autoprobing, the tap list is still empty ... populate it! */
1099 while (autoprobe && bit_count < (JTAG_MAX_CHAIN_SIZE * 32) - 31) {
1100 uint32_t idcode;
1101 char buf[12];
1102
1103 /* Is there another TAP? */
1104 idcode = buf_get_u32(idcode_buffer, bit_count, 32);
1105 if (jtag_idcode_is_final(idcode))
1106 break;
1107
1108 /* Default everything in this TAP except IR length.
1109 *
1110 * REVISIT create a jtag_alloc(chip, tap) routine, and
1111 * share it with jim_newtap_cmd().
1112 */
1113 tap = calloc(1, sizeof *tap);
1114 if (!tap)
1115 return ERROR_FAIL;
1116
1117 sprintf(buf, "auto%d", tapcount++);
1118 tap->chip = strdup(buf);
1119 tap->tapname = strdup("tap");
1120
1121 sprintf(buf, "%s.%s", tap->chip, tap->tapname);
1122 tap->dotted_name = strdup(buf);
1123
1124 /* tap->ir_length == 0 ... signifying irlen autoprobe */
1125 tap->ir_capture_mask = 0x03;
1126 tap->ir_capture_value = 0x01;
1127
1128 tap->enabled = true;
1129
1130 if ((idcode & 1) == 0) {
1131 bit_count += 1;
1132 tap->hasidcode = false;
1133 } else {
1134 bit_count += 32;
1135 tap->hasidcode = true;
1136 tap->idcode = idcode;
1137
1138 tap->expected_ids_cnt = 1;
1139 tap->expected_ids = malloc(sizeof(uint32_t));
1140 tap->expected_ids[0] = idcode;
1141 }
1142
1143 LOG_WARNING("AUTO %s - use \"jtag newtap "
1144 "%s %s -expected-id 0x%8.8" PRIx32 " ...\"",
1145 tap->dotted_name, tap->chip, tap->tapname,
1146 tap->idcode);
1147
1148 jtag_tap_init(tap);
1149 }
1150
1151 /* After those IDCODE or BYPASS register values should be
1152 * only the data we fed into the scan chain.
1153 */
1154 if (jtag_examine_chain_end(idcode_buffer, bit_count,
1155 8 * sizeof(idcode_buffer))) {
1156 LOG_ERROR("double-check your JTAG setup (interface, "
1157 "speed, missing TAPs, ...)");
1158 return ERROR_JTAG_INIT_FAILED;
1159 }
1160
1161 /* Return success or, for backwards compatibility if only
1162 * some IDCODE values mismatched, a soft/continuable fault.
1163 */
1164 return retval;
1165 }
1166
1167 /*
1168 * Validate the date loaded by entry to the Capture-IR state, to help
1169 * find errors related to scan chain configuration (wrong IR lengths)
1170 * or communication.
1171 *
1172 * Entry state can be anything. On non-error exit, all TAPs are in
1173 * bypass mode. On error exits, the scan chain is reset.
1174 */
1175 static int jtag_validate_ircapture(void)
1176 {
1177 struct jtag_tap *tap;
1178 int total_ir_length = 0;
1179 uint8_t *ir_test = NULL;
1180 struct scan_field field;
1181 uint64_t val;
1182 int chain_pos = 0;
1183 int retval;
1184
1185 /* when autoprobing, accomodate huge IR lengths */
1186 for (tap = NULL, total_ir_length = 0;
1187 (tap = jtag_tap_next_enabled(tap)) != NULL;
1188 total_ir_length += tap->ir_length) {
1189 if (tap->ir_length == 0)
1190 total_ir_length += JTAG_IRLEN_MAX;
1191 }
1192
1193 /* increase length to add 2 bit sentinel after scan */
1194 total_ir_length += 2;
1195
1196 ir_test = malloc(DIV_ROUND_UP(total_ir_length, 8));
1197 if (ir_test == NULL)
1198 return ERROR_FAIL;
1199
1200 /* after this scan, all TAPs will capture BYPASS instructions */
1201 buf_set_ones(ir_test, total_ir_length);
1202
1203 field.num_bits = total_ir_length;
1204 field.out_value = ir_test;
1205 field.in_value = ir_test;
1206
1207 jtag_add_plain_ir_scan(field.num_bits, field.out_value, field.in_value, TAP_IDLE);
1208
1209 LOG_DEBUG("IR capture validation scan");
1210 retval = jtag_execute_queue();
1211 if (retval != ERROR_OK)
1212 goto done;
1213
1214 tap = NULL;
1215 chain_pos = 0;
1216
1217 for (;; ) {
1218 tap = jtag_tap_next_enabled(tap);
1219 if (tap == NULL)
1220 break;
1221
1222 /* If we're autoprobing, guess IR lengths. They must be at
1223 * least two bits. Guessing will fail if (a) any TAP does
1224 * not conform to the JTAG spec; or (b) when the upper bits
1225 * captured from some conforming TAP are nonzero. Or if
1226 * (c) an IR length is longer than 32 bits -- which is only
1227 * an implementation limit, which could someday be raised.
1228 *
1229 * REVISIT optimization: if there's a *single* TAP we can
1230 * lift restrictions (a) and (b) by scanning a recognizable
1231 * pattern before the all-ones BYPASS. Check for where the
1232 * pattern starts in the result, instead of an 0...01 value.
1233 *
1234 * REVISIT alternative approach: escape to some tcl code
1235 * which could provide more knowledge, based on IDCODE; and
1236 * only guess when that has no success.
1237 */
1238 if (tap->ir_length == 0) {
1239 tap->ir_length = 2;
1240 while ((val = buf_get_u64(ir_test, chain_pos, tap->ir_length + 1)) == 1
1241 && tap->ir_length <= 64) {
1242 tap->ir_length++;
1243 }
1244 LOG_WARNING("AUTO %s - use \"... -irlen %d\"",
1245 jtag_tap_name(tap), tap->ir_length);
1246 }
1247
1248 /* Validate the two LSBs, which must be 01 per JTAG spec.
1249 *
1250 * Or ... more bits could be provided by TAP declaration.
1251 * Plus, some taps (notably in i.MX series chips) violate
1252 * this part of the JTAG spec, so their capture mask/value
1253 * attributes might disable this test.
1254 */
1255 val = buf_get_u64(ir_test, chain_pos, tap->ir_length);
1256 if ((val & tap->ir_capture_mask) != tap->ir_capture_value) {
1257 LOG_ERROR("%s: IR capture error; saw 0x%0*" PRIx64 " not 0x%0*" PRIx32,
1258 jtag_tap_name(tap),
1259 (tap->ir_length + 7) / tap->ir_length, val,
1260 (tap->ir_length + 7) / tap->ir_length, tap->ir_capture_value);
1261
1262 retval = ERROR_JTAG_INIT_FAILED;
1263 goto done;
1264 }
1265 LOG_DEBUG("%s: IR capture 0x%0*" PRIx64, jtag_tap_name(tap),
1266 (tap->ir_length + 7) / tap->ir_length, val);
1267 chain_pos += tap->ir_length;
1268 }
1269
1270 /* verify the '11' sentinel we wrote is returned at the end */
1271 val = buf_get_u64(ir_test, chain_pos, 2);
1272 if (val != 0x3) {
1273 char *cbuf = buf_to_str(ir_test, total_ir_length, 16);
1274
1275 LOG_ERROR("IR capture error at bit %d, saw 0x%s not 0x...3",
1276 chain_pos, cbuf);
1277 free(cbuf);
1278 retval = ERROR_JTAG_INIT_FAILED;
1279 }
1280
1281 done:
1282 free(ir_test);
1283 if (retval != ERROR_OK) {
1284 jtag_add_tlr();
1285 jtag_execute_queue();
1286 }
1287 return retval;
1288 }
1289
1290 void jtag_tap_init(struct jtag_tap *tap)
1291 {
1292 unsigned ir_len_bits;
1293 unsigned ir_len_bytes;
1294
1295 /* if we're autoprobing, cope with potentially huge ir_length */
1296 ir_len_bits = tap->ir_length ? : JTAG_IRLEN_MAX;
1297 ir_len_bytes = DIV_ROUND_UP(ir_len_bits, 8);
1298
1299 tap->expected = calloc(1, ir_len_bytes);
1300 tap->expected_mask = calloc(1, ir_len_bytes);
1301 tap->cur_instr = malloc(ir_len_bytes);
1302
1303 /** @todo cope better with ir_length bigger than 32 bits */
1304 if (ir_len_bits > 32)
1305 ir_len_bits = 32;
1306
1307 buf_set_u32(tap->expected, 0, ir_len_bits, tap->ir_capture_value);
1308 buf_set_u32(tap->expected_mask, 0, ir_len_bits, tap->ir_capture_mask);
1309
1310 /* TAP will be in bypass mode after jtag_validate_ircapture() */
1311 tap->bypass = 1;
1312 buf_set_ones(tap->cur_instr, tap->ir_length);
1313
1314 /* register the reset callback for the TAP */
1315 jtag_register_event_callback(&jtag_reset_callback, tap);
1316 jtag_tap_add(tap);
1317
1318 LOG_DEBUG("Created Tap: %s @ abs position %d, "
1319 "irlen %d, capture: 0x%x mask: 0x%x", tap->dotted_name,
1320 tap->abs_chain_position, tap->ir_length,
1321 (unsigned) tap->ir_capture_value,
1322 (unsigned) tap->ir_capture_mask);
1323 }
1324
1325 void jtag_tap_free(struct jtag_tap *tap)
1326 {
1327 jtag_unregister_event_callback(&jtag_reset_callback, tap);
1328
1329 /** @todo is anything missing? no memory leaks please */
1330 free(tap->expected);
1331 free(tap->expected_ids);
1332 free(tap->chip);
1333 free(tap->tapname);
1334 free(tap->dotted_name);
1335 free(tap);
1336 }
1337
1338 /**
1339 * Do low-level setup like initializing registers, output signals,
1340 * and clocking.
1341 */
1342 int adapter_init(struct command_context *cmd_ctx)
1343 {
1344 if (jtag)
1345 return ERROR_OK;
1346
1347 if (!jtag_interface) {
1348 /* nothing was previously specified by "interface" command */
1349 LOG_ERROR("Debug Adapter has to be specified, "
1350 "see \"interface\" command");
1351 return ERROR_JTAG_INVALID_INTERFACE;
1352 }
1353
1354 int retval;
1355 retval = jtag_interface->init();
1356 if (retval != ERROR_OK)
1357 return retval;
1358 jtag = jtag_interface;
1359
1360 /* LEGACY SUPPORT ... adapter drivers must declare what
1361 * transports they allow. Until they all do so, assume
1362 * the legacy drivers are JTAG-only
1363 */
1364 if (!transports_are_declared()) {
1365 LOG_ERROR("Adapter driver '%s' did not declare "
1366 "which transports it allows; assuming "
1367 "JTAG-only", jtag->name);
1368 retval = allow_transports(cmd_ctx, jtag_only);
1369 if (retval != ERROR_OK)
1370 return retval;
1371 }
1372
1373 if (jtag->speed == NULL) {
1374 LOG_INFO("This adapter doesn't support configurable speed");
1375 return ERROR_OK;
1376 }
1377
1378 if (CLOCK_MODE_UNSELECTED == clock_mode) {
1379 LOG_ERROR("An adapter speed is not selected in the init script."
1380 " Insert a call to adapter_khz or jtag_rclk to proceed.");
1381 return ERROR_JTAG_INIT_FAILED;
1382 }
1383
1384 int requested_khz = jtag_get_speed_khz();
1385 int actual_khz = requested_khz;
1386 int jtag_speed_var = 0;
1387 retval = jtag_get_speed(&jtag_speed_var);
1388 if (retval != ERROR_OK)
1389 return retval;
1390 retval = jtag->speed(jtag_speed_var);
1391 if (retval != ERROR_OK)
1392 return retval;
1393 retval = jtag_get_speed_readable(&actual_khz);
1394 if (ERROR_OK != retval)
1395 LOG_INFO("adapter-specific clock speed value %d", jtag_speed_var);
1396 else if (actual_khz) {
1397 /* Adaptive clocking -- JTAG-specific */
1398 if ((CLOCK_MODE_RCLK == clock_mode)
1399 || ((CLOCK_MODE_KHZ == clock_mode) && !requested_khz)) {
1400 LOG_INFO("RCLK (adaptive clock speed) not supported - fallback to %d kHz"
1401 , actual_khz);
1402 } else
1403 LOG_INFO("clock speed %d kHz", actual_khz);
1404 } else
1405 LOG_INFO("RCLK (adaptive clock speed)");
1406
1407 return ERROR_OK;
1408 }
1409
1410 int jtag_init_inner(struct command_context *cmd_ctx)
1411 {
1412 struct jtag_tap *tap;
1413 int retval;
1414 bool issue_setup = true;
1415
1416 LOG_DEBUG("Init JTAG chain");
1417
1418 tap = jtag_tap_next_enabled(NULL);
1419 if (tap == NULL) {
1420 /* Once JTAG itself is properly set up, and the scan chain
1421 * isn't absurdly large, IDCODE autoprobe should work fine.
1422 *
1423 * But ... IRLEN autoprobe can fail even on systems which
1424 * are fully conformant to JTAG. Also, JTAG setup can be
1425 * quite finicky on some systems.
1426 *
1427 * REVISIT: if TAP autoprobe works OK, then in many cases
1428 * we could escape to tcl code and set up targets based on
1429 * the TAP's IDCODE values.
1430 */
1431 LOG_WARNING("There are no enabled taps. "
1432 "AUTO PROBING MIGHT NOT WORK!!");
1433
1434 /* REVISIT default clock will often be too fast ... */
1435 }
1436
1437 jtag_add_tlr();
1438 retval = jtag_execute_queue();
1439 if (retval != ERROR_OK)
1440 return retval;
1441
1442 /* Examine DR values first. This discovers problems which will
1443 * prevent communication ... hardware issues like TDO stuck, or
1444 * configuring the wrong number of (enabled) TAPs.
1445 */
1446 retval = jtag_examine_chain();
1447 switch (retval) {
1448 case ERROR_OK:
1449 /* complete success */
1450 break;
1451 default:
1452 /* For backward compatibility reasons, try coping with
1453 * configuration errors involving only ID mismatches.
1454 * We might be able to talk to the devices.
1455 *
1456 * Also the device might be powered down during startup.
1457 *
1458 * After OpenOCD starts, we can try to power on the device
1459 * and run a reset.
1460 */
1461 LOG_ERROR("Trying to use configured scan chain anyway...");
1462 issue_setup = false;
1463 break;
1464 }
1465
1466 /* Now look at IR values. Problems here will prevent real
1467 * communication. They mostly mean that the IR length is
1468 * wrong ... or that the IR capture value is wrong. (The
1469 * latter is uncommon, but easily worked around: provide
1470 * ircapture/irmask values during TAP setup.)
1471 */
1472 retval = jtag_validate_ircapture();
1473 if (retval != ERROR_OK) {
1474 /* The target might be powered down. The user
1475 * can power it up and reset it after firing
1476 * up OpenOCD.
1477 */
1478 issue_setup = false;
1479 }
1480
1481 if (issue_setup)
1482 jtag_notify_event(JTAG_TAP_EVENT_SETUP);
1483 else
1484 LOG_WARNING("Bypassing JTAG setup events due to errors");
1485
1486
1487 return ERROR_OK;
1488 }
1489
1490 int adapter_quit(void)
1491 {
1492 if (!jtag || !jtag->quit)
1493 return ERROR_OK;
1494
1495 /* close the JTAG interface */
1496 int result = jtag->quit();
1497 if (ERROR_OK != result)
1498 LOG_ERROR("failed: %d", result);
1499
1500 return ERROR_OK;
1501 }
1502
1503 int swd_init_reset(struct command_context *cmd_ctx)
1504 {
1505 int retval = adapter_init(cmd_ctx);
1506 if (retval != ERROR_OK)
1507 return retval;
1508
1509 LOG_DEBUG("Initializing with hard SRST reset");
1510
1511 if (jtag_reset_config & RESET_HAS_SRST)
1512 swd_add_reset(1);
1513 swd_add_reset(0);
1514 retval = jtag_execute_queue();
1515 return retval;
1516 }
1517
1518 int jtag_init_reset(struct command_context *cmd_ctx)
1519 {
1520 int retval = adapter_init(cmd_ctx);
1521 if (retval != ERROR_OK)
1522 return retval;
1523
1524 LOG_DEBUG("Initializing with hard TRST+SRST reset");
1525
1526 /*
1527 * This procedure is used by default when OpenOCD triggers a reset.
1528 * It's now done through an overridable Tcl "init_reset" wrapper.
1529 *
1530 * This started out as a more powerful "get JTAG working" reset than
1531 * jtag_init_inner(), applying TRST because some chips won't activate
1532 * JTAG without a TRST cycle (presumed to be async, though some of
1533 * those chips synchronize JTAG activation using TCK).
1534 *
1535 * But some chips only activate JTAG as part of an SRST cycle; SRST
1536 * got mixed in. So it became a hard reset routine, which got used
1537 * in more places, and which coped with JTAG reset being forced as
1538 * part of SRST (srst_pulls_trst).
1539 *
1540 * And even more corner cases started to surface: TRST and/or SRST
1541 * assertion timings matter; some chips need other JTAG operations;
1542 * TRST/SRST sequences can need to be different from these, etc.
1543 *
1544 * Systems should override that wrapper to support system-specific
1545 * requirements that this not-fully-generic code doesn't handle.
1546 *
1547 * REVISIT once Tcl code can read the reset_config modes, this won't
1548 * need to be a C routine at all...
1549 */
1550 jtag_add_reset(1, 0); /* TAP_RESET, using TMS+TCK or TRST */
1551 if (jtag_reset_config & RESET_HAS_SRST) {
1552 jtag_add_reset(1, 1);
1553 if ((jtag_reset_config & RESET_SRST_PULLS_TRST) == 0)
1554 jtag_add_reset(0, 1);
1555 }
1556
1557 /* some targets enable us to connect with srst asserted */
1558 if (jtag_reset_config & RESET_CNCT_UNDER_SRST) {
1559 if (jtag_reset_config & RESET_SRST_NO_GATING)
1560 jtag_add_reset(0, 1);
1561 else {
1562 LOG_WARNING("\'srst_nogate\' reset_config option is required");
1563 jtag_add_reset(0, 0);
1564 }
1565 } else
1566 jtag_add_reset(0, 0);
1567 retval = jtag_execute_queue();
1568 if (retval != ERROR_OK)
1569 return retval;
1570
1571 /* Check that we can communication on the JTAG chain + eventually we want to
1572 * be able to perform enumeration only after OpenOCD has started
1573 * telnet and GDB server
1574 *
1575 * That would allow users to more easily perform any magic they need to before
1576 * reset happens.
1577 */
1578 return jtag_init_inner(cmd_ctx);
1579 }
1580
1581 int jtag_init(struct command_context *cmd_ctx)
1582 {
1583 int retval = adapter_init(cmd_ctx);
1584 if (retval != ERROR_OK)
1585 return retval;
1586
1587 /* guard against oddball hardware: force resets to be inactive */
1588 jtag_add_reset(0, 0);
1589
1590 /* some targets enable us to connect with srst asserted */
1591 if (jtag_reset_config & RESET_CNCT_UNDER_SRST) {
1592 if (jtag_reset_config & RESET_SRST_NO_GATING)
1593 jtag_add_reset(0, 1);
1594 else
1595 LOG_WARNING("\'srst_nogate\' reset_config option is required");
1596 }
1597 retval = jtag_execute_queue();
1598 if (retval != ERROR_OK)
1599 return retval;
1600
1601 if (Jim_Eval_Named(cmd_ctx->interp, "jtag_init", __FILE__, __LINE__) != JIM_OK)
1602 return ERROR_FAIL;
1603
1604 return ERROR_OK;
1605 }
1606
1607 unsigned jtag_get_speed_khz(void)
1608 {
1609 return speed_khz;
1610 }
1611
1612 static int adapter_khz_to_speed(unsigned khz, int *speed)
1613 {
1614 LOG_DEBUG("convert khz to interface specific speed value");
1615 speed_khz = khz;
1616 if (jtag != NULL) {
1617 LOG_DEBUG("have interface set up");
1618 int speed_div1;
1619 int retval = jtag->khz(jtag_get_speed_khz(), &speed_div1);
1620 if (ERROR_OK != retval)
1621 return retval;
1622 *speed = speed_div1;
1623 }
1624 return ERROR_OK;
1625 }
1626
1627 static int jtag_rclk_to_speed(unsigned fallback_speed_khz, int *speed)
1628 {
1629 int retval = adapter_khz_to_speed(0, speed);
1630 if ((ERROR_OK != retval) && fallback_speed_khz) {
1631 LOG_DEBUG("trying fallback speed...");
1632 retval = adapter_khz_to_speed(fallback_speed_khz, speed);
1633 }
1634 return retval;
1635 }
1636
1637 static int jtag_set_speed(int speed)
1638 {
1639 jtag_speed = speed;
1640 /* this command can be called during CONFIG,
1641 * in which case jtag isn't initialized */
1642 return jtag ? jtag->speed(speed) : ERROR_OK;
1643 }
1644
1645 int jtag_config_khz(unsigned khz)
1646 {
1647 LOG_DEBUG("handle jtag khz");
1648 clock_mode = CLOCK_MODE_KHZ;
1649 int speed = 0;
1650 int retval = adapter_khz_to_speed(khz, &speed);
1651 return (ERROR_OK != retval) ? retval : jtag_set_speed(speed);
1652 }
1653
1654 int jtag_config_rclk(unsigned fallback_speed_khz)
1655 {
1656 LOG_DEBUG("handle jtag rclk");
1657 clock_mode = CLOCK_MODE_RCLK;
1658 rclk_fallback_speed_khz = fallback_speed_khz;
1659 int speed = 0;
1660 int retval = jtag_rclk_to_speed(fallback_speed_khz, &speed);
1661 return (ERROR_OK != retval) ? retval : jtag_set_speed(speed);
1662 }
1663
1664 int jtag_get_speed(int *speed)
1665 {
1666 switch (clock_mode) {
1667 case CLOCK_MODE_KHZ:
1668 adapter_khz_to_speed(jtag_get_speed_khz(), speed);
1669 break;
1670 case CLOCK_MODE_RCLK:
1671 jtag_rclk_to_speed(rclk_fallback_speed_khz, speed);
1672 break;
1673 default:
1674 LOG_ERROR("BUG: unknown jtag clock mode");
1675 return ERROR_FAIL;
1676 }
1677 return ERROR_OK;
1678 }
1679
1680 int jtag_get_speed_readable(int *khz)
1681 {
1682 int jtag_speed_var = 0;
1683 int retval = jtag_get_speed(&jtag_speed_var);
1684 if (retval != ERROR_OK)
1685 return retval;
1686 return jtag ? jtag->speed_div(jtag_speed_var, khz) : ERROR_OK;
1687 }
1688
1689 void jtag_set_verify(bool enable)
1690 {
1691 jtag_verify = enable;
1692 }
1693
1694 bool jtag_will_verify()
1695 {
1696 return jtag_verify;
1697 }
1698
1699 void jtag_set_verify_capture_ir(bool enable)
1700 {
1701 jtag_verify_capture_ir = enable;
1702 }
1703
1704 bool jtag_will_verify_capture_ir()
1705 {
1706 return jtag_verify_capture_ir;
1707 }
1708
1709 int jtag_power_dropout(int *dropout)
1710 {
1711 if (jtag == NULL) {
1712 /* TODO: as the jtag interface is not valid all
1713 * we can do at the moment is exit OpenOCD */
1714 LOG_ERROR("No Valid JTAG Interface Configured.");
1715 exit(-1);
1716 }
1717 return jtag->power_dropout(dropout);
1718 }
1719
1720 int jtag_srst_asserted(int *srst_asserted)
1721 {
1722 return jtag->srst_asserted(srst_asserted);
1723 }
1724
1725 enum reset_types jtag_get_reset_config(void)
1726 {
1727 return jtag_reset_config;
1728 }
1729 void jtag_set_reset_config(enum reset_types type)
1730 {
1731 jtag_reset_config = type;
1732 }
1733
1734 int jtag_get_trst(void)
1735 {
1736 return jtag_trst;
1737 }
1738 int jtag_get_srst(void)
1739 {
1740 return jtag_srst;
1741 }
1742
1743 void jtag_set_nsrst_delay(unsigned delay)
1744 {
1745 adapter_nsrst_delay = delay;
1746 }
1747 unsigned jtag_get_nsrst_delay(void)
1748 {
1749 return adapter_nsrst_delay;
1750 }
1751 void jtag_set_ntrst_delay(unsigned delay)
1752 {
1753 jtag_ntrst_delay = delay;
1754 }
1755 unsigned jtag_get_ntrst_delay(void)
1756 {
1757 return jtag_ntrst_delay;
1758 }
1759
1760
1761 void jtag_set_nsrst_assert_width(unsigned delay)
1762 {
1763 adapter_nsrst_assert_width = delay;
1764 }
1765 unsigned jtag_get_nsrst_assert_width(void)
1766 {
1767 return adapter_nsrst_assert_width;
1768 }
1769 void jtag_set_ntrst_assert_width(unsigned delay)
1770 {
1771 jtag_ntrst_assert_width = delay;
1772 }
1773 unsigned jtag_get_ntrst_assert_width(void)
1774 {
1775 return jtag_ntrst_assert_width;
1776 }
1777
1778 static int jtag_select(struct command_context *ctx)
1779 {
1780 int retval;
1781
1782 /* NOTE: interface init must already have been done.
1783 * That works with only C code ... no Tcl glue required.
1784 */
1785
1786 retval = jtag_register_commands(ctx);
1787
1788 if (retval != ERROR_OK)
1789 return retval;
1790
1791 retval = svf_register_commands(ctx);
1792
1793 if (retval != ERROR_OK)
1794 return retval;
1795
1796 return xsvf_register_commands(ctx);
1797 }
1798
1799 static struct transport jtag_transport = {
1800 .name = "jtag",
1801 .select = jtag_select,
1802 .init = jtag_init,
1803 };
1804
1805 static void jtag_constructor(void) __attribute__((constructor));
1806 static void jtag_constructor(void)
1807 {
1808 transport_register(&jtag_transport);
1809 }
1810
1811 /** Returns true if the current debug session
1812 * is using JTAG as its transport.
1813 */
1814 bool transport_is_jtag(void)
1815 {
1816 return get_current_transport() == &jtag_transport;
1817 }
1818
1819 void adapter_assert_reset(void)
1820 {
1821 if (transport_is_jtag()) {
1822 if (jtag_reset_config & RESET_SRST_PULLS_TRST)
1823 jtag_add_reset(1, 1);
1824 else
1825 jtag_add_reset(0, 1);
1826 } else if (transport_is_swd())
1827 swd_add_reset(1);
1828 else if (transport_is_cmsis_dap())
1829 swd_add_reset(1); /* FIXME */
1830 else if (get_current_transport() != NULL)
1831 LOG_ERROR("reset is not supported on %s",
1832 get_current_transport()->name);
1833 else
1834 LOG_ERROR("transport is not selected");
1835 }
1836
1837 void adapter_deassert_reset(void)
1838 {
1839 if (transport_is_jtag())
1840 jtag_add_reset(0, 0);
1841 else if (transport_is_swd())
1842 swd_add_reset(0);
1843 else if (transport_is_cmsis_dap())
1844 swd_add_reset(0); /* FIXME */
1845 else if (get_current_transport() != NULL)
1846 LOG_ERROR("reset is not supported on %s",
1847 get_current_transport()->name);
1848 else
1849 LOG_ERROR("transport is not selected");
1850 }

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)