jtag: Rewrite TAP verification/auto-probe logic
[openocd.git] / src / jtag / core.c
blob8f3aa4d94142bd7454ab466328da6a1e4578ad70
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 ***************************************************************************/
31 #ifdef HAVE_CONFIG_H
32 #include "config.h"
33 #endif
35 #include "jtag.h"
36 #include "swd.h"
37 #include "interface.h"
38 #include <transport/transport.h>
40 #ifdef HAVE_STRINGS_H
41 #include <strings.h>
42 #endif
44 /* SVF and XSVF are higher level JTAG command sets (for boundary scan) */
45 #include "svf/svf.h"
46 #include "xsvf/xsvf.h"
48 /** The number of JTAG queue flushes (for profiling and debugging purposes). */
49 static int jtag_flush_queue_count;
51 /* Sleep this # of ms after flushing the queue */
52 static int jtag_flush_queue_sleep;
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);
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().
67 * The value is set and cleared, but never read by normal application code.
69 * This value is returned (and cleared) by jtag_execute_queue().
71 static int jtag_error = ERROR_OK;
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",
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.
86 static int jtag_trst = -1;
87 static int jtag_srst = -1;
89 /**
90 * List all TAPs that have been created.
92 static struct jtag_tap *__jtag_all_taps;
94 static enum reset_types jtag_reset_config = RESET_NONE;
95 tap_state_t cmd_queue_cur_state = TAP_RESET;
97 static bool jtag_verify_capture_ir = true;
98 static int jtag_verify = 1;
100 /* how long the OpenOCD should wait before attempting JTAG communication after reset lines
101 *deasserted (in ms) */
102 static int adapter_nsrst_delay; /* default to no nSRST delay */
103 static int jtag_ntrst_delay;/* default to no nTRST delay */
104 static int adapter_nsrst_assert_width; /* width of assertion */
105 static int jtag_ntrst_assert_width; /* width of assertion */
108 * Contains a single callback along with a pointer that will be passed
109 * when an event occurs.
111 struct jtag_event_callback {
112 /** a event callback */
113 jtag_event_handler_t callback;
114 /** the private data to pass to the callback */
115 void *priv;
116 /** the next callback */
117 struct jtag_event_callback *next;
120 /* callbacks to inform high-level handlers about JTAG state changes */
121 static struct jtag_event_callback *jtag_event_callbacks;
123 /* speed in kHz*/
124 static int speed_khz;
125 /* speed to fallback to when RCLK is requested but not supported */
126 static int rclk_fallback_speed_khz;
127 static enum {CLOCK_MODE_UNSELECTED, CLOCK_MODE_KHZ, CLOCK_MODE_RCLK} clock_mode;
128 static int jtag_speed;
130 static struct jtag_interface *jtag;
132 /* configuration */
133 struct jtag_interface *jtag_interface;
135 void jtag_set_flush_queue_sleep(int ms)
137 jtag_flush_queue_sleep = ms;
140 void jtag_set_error(int error)
142 if ((error == ERROR_OK) || (jtag_error != ERROR_OK))
143 return;
144 jtag_error = error;
147 int jtag_error_clear(void)
149 int temp = jtag_error;
150 jtag_error = ERROR_OK;
151 return temp;
154 /************/
156 static bool jtag_poll = 1;
158 bool is_jtag_poll_safe(void)
160 /* Polling can be disabled explicitly with set_enabled(false).
161 * It is also implicitly disabled while TRST is active and
162 * while SRST is gating the JTAG clock.
164 if (!transport_is_jtag())
165 return jtag_poll;
167 if (!jtag_poll || jtag_trst != 0)
168 return false;
169 return jtag_srst == 0 || (jtag_reset_config & RESET_SRST_NO_GATING);
172 bool jtag_poll_get_enabled(void)
174 return jtag_poll;
177 void jtag_poll_set_enabled(bool value)
179 jtag_poll = value;
182 /************/
184 struct jtag_tap *jtag_all_taps(void)
186 return __jtag_all_taps;
189 unsigned jtag_tap_count(void)
191 struct jtag_tap *t = jtag_all_taps();
192 unsigned n = 0;
193 while (t) {
194 n++;
195 t = t->next_tap;
197 return n;
200 unsigned jtag_tap_count_enabled(void)
202 struct jtag_tap *t = jtag_all_taps();
203 unsigned n = 0;
204 while (t) {
205 if (t->enabled)
206 n++;
207 t = t->next_tap;
209 return n;
212 /** Append a new TAP to the chain of all taps. */
213 void jtag_tap_add(struct jtag_tap *t)
215 unsigned jtag_num_taps = 0;
217 struct jtag_tap **tap = &__jtag_all_taps;
218 while (*tap != NULL) {
219 jtag_num_taps++;
220 tap = &(*tap)->next_tap;
222 *tap = t;
223 t->abs_chain_position = jtag_num_taps;
226 /* returns a pointer to the n-th device in the scan chain */
227 struct jtag_tap *jtag_tap_by_position(unsigned n)
229 struct jtag_tap *t = jtag_all_taps();
231 while (t && n-- > 0)
232 t = t->next_tap;
234 return t;
237 struct jtag_tap *jtag_tap_by_string(const char *s)
239 /* try by name first */
240 struct jtag_tap *t = jtag_all_taps();
242 while (t) {
243 if (0 == strcmp(t->dotted_name, s))
244 return t;
245 t = t->next_tap;
248 /* no tap found by name, so try to parse the name as a number */
249 unsigned n;
250 if (parse_uint(s, &n) != ERROR_OK)
251 return NULL;
253 /* FIXME remove this numeric fallback code late June 2010, along
254 * with all info in the User's Guide that TAPs have numeric IDs.
255 * Also update "scan_chain" output to not display the numbers.
257 t = jtag_tap_by_position(n);
258 if (t)
259 LOG_WARNING("Specify TAP '%s' by name, not number %u",
260 t->dotted_name, n);
262 return t;
265 struct jtag_tap *jtag_tap_next_enabled(struct jtag_tap *p)
267 p = p ? p->next_tap : jtag_all_taps();
268 while (p) {
269 if (p->enabled)
270 return p;
271 p = p->next_tap;
273 return NULL;
276 const char *jtag_tap_name(const struct jtag_tap *tap)
278 return (tap == NULL) ? "(unknown)" : tap->dotted_name;
282 int jtag_register_event_callback(jtag_event_handler_t callback, void *priv)
284 struct jtag_event_callback **callbacks_p = &jtag_event_callbacks;
286 if (callback == NULL)
287 return ERROR_COMMAND_SYNTAX_ERROR;
289 if (*callbacks_p) {
290 while ((*callbacks_p)->next)
291 callbacks_p = &((*callbacks_p)->next);
292 callbacks_p = &((*callbacks_p)->next);
295 (*callbacks_p) = malloc(sizeof(struct jtag_event_callback));
296 (*callbacks_p)->callback = callback;
297 (*callbacks_p)->priv = priv;
298 (*callbacks_p)->next = NULL;
300 return ERROR_OK;
303 int jtag_unregister_event_callback(jtag_event_handler_t callback, void *priv)
305 struct jtag_event_callback **p = &jtag_event_callbacks, *temp;
307 if (callback == NULL)
308 return ERROR_COMMAND_SYNTAX_ERROR;
310 while (*p) {
311 if (((*p)->priv != priv) || ((*p)->callback != callback)) {
312 p = &(*p)->next;
313 continue;
316 temp = *p;
317 *p = (*p)->next;
318 free(temp);
321 return ERROR_OK;
324 int jtag_call_event_callbacks(enum jtag_event event)
326 struct jtag_event_callback *callback = jtag_event_callbacks;
328 LOG_DEBUG("jtag event: %s", jtag_event_strings[event]);
330 while (callback) {
331 struct jtag_event_callback *next;
333 /* callback may remove itself */
334 next = callback->next;
335 callback->callback(event, callback->priv);
336 callback = next;
339 return ERROR_OK;
342 static void jtag_checks(void)
344 assert(jtag_trst == 0);
347 static void jtag_prelude(tap_state_t state)
349 jtag_checks();
351 assert(state != TAP_INVALID);
353 cmd_queue_cur_state = state;
356 void jtag_add_ir_scan_noverify(struct jtag_tap *active, const struct scan_field *in_fields,
357 tap_state_t state)
359 jtag_prelude(state);
361 int retval = interface_jtag_add_ir_scan(active, in_fields, state);
362 jtag_set_error(retval);
365 static void jtag_add_ir_scan_noverify_callback(struct jtag_tap *active,
366 int dummy,
367 const struct scan_field *in_fields,
368 tap_state_t state)
370 jtag_add_ir_scan_noverify(active, in_fields, state);
373 /* If fields->in_value is filled out, then the captured IR value will be checked */
374 void jtag_add_ir_scan(struct jtag_tap *active, struct scan_field *in_fields, tap_state_t state)
376 assert(state != TAP_RESET);
378 if (jtag_verify && jtag_verify_capture_ir) {
379 /* 8 x 32 bit id's is enough for all invocations */
381 /* if we are to run a verification of the ir scan, we need to get the input back.
382 * We may have to allocate space if the caller didn't ask for the input back.
384 in_fields->check_value = active->expected;
385 in_fields->check_mask = active->expected_mask;
386 jtag_add_scan_check(active, jtag_add_ir_scan_noverify_callback, 1, in_fields,
387 state);
388 } else
389 jtag_add_ir_scan_noverify(active, in_fields, state);
392 void jtag_add_plain_ir_scan(int num_bits, const uint8_t *out_bits, uint8_t *in_bits,
393 tap_state_t state)
395 assert(out_bits != NULL);
396 assert(state != TAP_RESET);
398 jtag_prelude(state);
400 int retval = interface_jtag_add_plain_ir_scan(
401 num_bits, out_bits, in_bits, state);
402 jtag_set_error(retval);
405 static int jtag_check_value_inner(uint8_t *captured, uint8_t *in_check_value,
406 uint8_t *in_check_mask, int num_bits);
408 static int jtag_check_value_mask_callback(jtag_callback_data_t data0,
409 jtag_callback_data_t data1,
410 jtag_callback_data_t data2,
411 jtag_callback_data_t data3)
413 return jtag_check_value_inner((uint8_t *)data0,
414 (uint8_t *)data1,
415 (uint8_t *)data2,
416 (int)data3);
419 static void jtag_add_scan_check(struct jtag_tap *active, void (*jtag_add_scan)(
420 struct jtag_tap *active,
421 int in_num_fields,
422 const struct scan_field *in_fields,
423 tap_state_t state),
424 int in_num_fields, struct scan_field *in_fields, tap_state_t state)
426 jtag_add_scan(active, in_num_fields, in_fields, state);
428 for (int i = 0; i < in_num_fields; i++) {
429 if ((in_fields[i].check_value != NULL) && (in_fields[i].in_value != NULL)) {
430 /* this is synchronous for a minidriver */
431 jtag_add_callback4(jtag_check_value_mask_callback,
432 (jtag_callback_data_t)in_fields[i].in_value,
433 (jtag_callback_data_t)in_fields[i].check_value,
434 (jtag_callback_data_t)in_fields[i].check_mask,
435 (jtag_callback_data_t)in_fields[i].num_bits);
440 void jtag_add_dr_scan_check(struct jtag_tap *active,
441 int in_num_fields,
442 struct scan_field *in_fields,
443 tap_state_t state)
445 if (jtag_verify)
446 jtag_add_scan_check(active, jtag_add_dr_scan, in_num_fields, in_fields, state);
447 else
448 jtag_add_dr_scan(active, in_num_fields, in_fields, state);
452 void jtag_add_dr_scan(struct jtag_tap *active,
453 int in_num_fields,
454 const struct scan_field *in_fields,
455 tap_state_t state)
457 assert(state != TAP_RESET);
459 jtag_prelude(state);
461 int retval;
462 retval = interface_jtag_add_dr_scan(active, in_num_fields, in_fields, state);
463 jtag_set_error(retval);
466 void jtag_add_plain_dr_scan(int num_bits, const uint8_t *out_bits, uint8_t *in_bits,
467 tap_state_t state)
469 assert(out_bits != NULL);
470 assert(state != TAP_RESET);
472 jtag_prelude(state);
474 int retval;
475 retval = interface_jtag_add_plain_dr_scan(num_bits, out_bits, in_bits, state);
476 jtag_set_error(retval);
479 void jtag_add_tlr(void)
481 jtag_prelude(TAP_RESET);
482 jtag_set_error(interface_jtag_add_tlr());
484 /* NOTE: order here matches TRST path in jtag_add_reset() */
485 jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
486 jtag_notify_event(JTAG_TRST_ASSERTED);
490 * If supported by the underlying adapter, this clocks a raw bit sequence
491 * onto TMS for switching betwen JTAG and SWD modes.
493 * DO NOT use this to bypass the integrity checks and logging provided
494 * by the jtag_add_pathmove() and jtag_add_statemove() calls.
496 * @param nbits How many bits to clock out.
497 * @param seq The bit sequence. The LSB is bit 0 of seq[0].
498 * @param state The JTAG tap state to record on completion. Use
499 * TAP_INVALID to represent being in in SWD mode.
501 * @todo Update naming conventions to stop assuming everything is JTAG.
503 int jtag_add_tms_seq(unsigned nbits, const uint8_t *seq, enum tap_state state)
505 int retval;
507 if (!(jtag->supported & DEBUG_CAP_TMS_SEQ))
508 return ERROR_JTAG_NOT_IMPLEMENTED;
510 jtag_checks();
511 cmd_queue_cur_state = state;
513 retval = interface_add_tms_seq(nbits, seq, state);
514 jtag_set_error(retval);
515 return retval;
518 void jtag_add_pathmove(int num_states, const tap_state_t *path)
520 tap_state_t cur_state = cmd_queue_cur_state;
522 /* the last state has to be a stable state */
523 if (!tap_is_state_stable(path[num_states - 1])) {
524 LOG_ERROR("BUG: TAP path doesn't finish in a stable state");
525 jtag_set_error(ERROR_JTAG_NOT_STABLE_STATE);
526 return;
529 for (int i = 0; i < num_states; i++) {
530 if (path[i] == TAP_RESET) {
531 LOG_ERROR("BUG: TAP_RESET is not a valid state for pathmove sequences");
532 jtag_set_error(ERROR_JTAG_STATE_INVALID);
533 return;
536 if (tap_state_transition(cur_state, true) != path[i] &&
537 tap_state_transition(cur_state, false) != path[i]) {
538 LOG_ERROR("BUG: %s -> %s isn't a valid TAP transition",
539 tap_state_name(cur_state), tap_state_name(path[i]));
540 jtag_set_error(ERROR_JTAG_TRANSITION_INVALID);
541 return;
543 cur_state = path[i];
546 jtag_checks();
548 jtag_set_error(interface_jtag_add_pathmove(num_states, path));
549 cmd_queue_cur_state = path[num_states - 1];
552 int jtag_add_statemove(tap_state_t goal_state)
554 tap_state_t cur_state = cmd_queue_cur_state;
556 if (goal_state != cur_state) {
557 LOG_DEBUG("cur_state=%s goal_state=%s",
558 tap_state_name(cur_state),
559 tap_state_name(goal_state));
562 /* If goal is RESET, be paranoid and force that that transition
563 * (e.g. five TCK cycles, TMS high). Else trust "cur_state".
565 if (goal_state == TAP_RESET)
566 jtag_add_tlr();
567 else if (goal_state == cur_state)
568 /* nothing to do */;
570 else if (tap_is_state_stable(cur_state) && tap_is_state_stable(goal_state)) {
571 unsigned tms_bits = tap_get_tms_path(cur_state, goal_state);
572 unsigned tms_count = tap_get_tms_path_len(cur_state, goal_state);
573 tap_state_t moves[8];
574 assert(tms_count < ARRAY_SIZE(moves));
576 for (unsigned i = 0; i < tms_count; i++, tms_bits >>= 1) {
577 bool bit = tms_bits & 1;
579 cur_state = tap_state_transition(cur_state, bit);
580 moves[i] = cur_state;
583 jtag_add_pathmove(tms_count, moves);
584 } else if (tap_state_transition(cur_state, true) == goal_state
585 || tap_state_transition(cur_state, false) == goal_state)
586 jtag_add_pathmove(1, &goal_state);
587 else
588 return ERROR_FAIL;
590 return ERROR_OK;
593 void jtag_add_runtest(int num_cycles, tap_state_t state)
595 jtag_prelude(state);
596 jtag_set_error(interface_jtag_add_runtest(num_cycles, state));
600 void jtag_add_clocks(int num_cycles)
602 if (!tap_is_state_stable(cmd_queue_cur_state)) {
603 LOG_ERROR("jtag_add_clocks() called with TAP in unstable state \"%s\"",
604 tap_state_name(cmd_queue_cur_state));
605 jtag_set_error(ERROR_JTAG_NOT_STABLE_STATE);
606 return;
609 if (num_cycles > 0) {
610 jtag_checks();
611 jtag_set_error(interface_jtag_add_clocks(num_cycles));
615 void swd_add_reset(int req_srst)
617 if (req_srst) {
618 if (!(jtag_reset_config & RESET_HAS_SRST)) {
619 LOG_ERROR("BUG: can't assert SRST");
620 jtag_set_error(ERROR_FAIL);
621 return;
623 req_srst = 1;
626 /* Maybe change SRST signal state */
627 if (jtag_srst != req_srst) {
628 int retval;
630 retval = interface_jtag_add_reset(0, req_srst);
631 if (retval != ERROR_OK)
632 jtag_set_error(retval);
633 else
634 retval = jtag_execute_queue();
636 if (retval != ERROR_OK) {
637 LOG_ERROR("TRST/SRST error");
638 return;
641 /* SRST resets everything hooked up to that signal */
642 jtag_srst = req_srst;
643 if (jtag_srst) {
644 LOG_DEBUG("SRST line asserted");
645 if (adapter_nsrst_assert_width)
646 jtag_add_sleep(adapter_nsrst_assert_width * 1000);
647 } else {
648 LOG_DEBUG("SRST line released");
649 if (adapter_nsrst_delay)
650 jtag_add_sleep(adapter_nsrst_delay * 1000);
655 void jtag_add_reset(int req_tlr_or_trst, int req_srst)
657 int trst_with_tlr = 0;
658 int new_srst = 0;
659 int new_trst = 0;
661 /* Without SRST, we must use target-specific JTAG operations
662 * on each target; callers should not be requesting SRST when
663 * that signal doesn't exist.
665 * RESET_SRST_PULLS_TRST is a board or chip level quirk, which
666 * can kick in even if the JTAG adapter can't drive TRST.
668 if (req_srst) {
669 if (!(jtag_reset_config & RESET_HAS_SRST)) {
670 LOG_ERROR("BUG: can't assert SRST");
671 jtag_set_error(ERROR_FAIL);
672 return;
674 if ((jtag_reset_config & RESET_SRST_PULLS_TRST) != 0
675 && !req_tlr_or_trst) {
676 LOG_ERROR("BUG: can't assert only SRST");
677 jtag_set_error(ERROR_FAIL);
678 return;
680 new_srst = 1;
683 /* JTAG reset (entry to TAP_RESET state) can always be achieved
684 * using TCK and TMS; that may go through a TAP_{IR,DR}UPDATE
685 * state first. TRST accelerates it, and bypasses those states.
687 * RESET_TRST_PULLS_SRST is a board or chip level quirk, which
688 * can kick in even if the JTAG adapter can't drive SRST.
690 if (req_tlr_or_trst) {
691 if (!(jtag_reset_config & RESET_HAS_TRST))
692 trst_with_tlr = 1;
693 else if ((jtag_reset_config & RESET_TRST_PULLS_SRST) != 0
694 && !req_srst)
695 trst_with_tlr = 1;
696 else
697 new_trst = 1;
700 /* Maybe change TRST and/or SRST signal state */
701 if (jtag_srst != new_srst || jtag_trst != new_trst) {
702 int retval;
704 retval = interface_jtag_add_reset(new_trst, new_srst);
705 if (retval != ERROR_OK)
706 jtag_set_error(retval);
707 else
708 retval = jtag_execute_queue();
710 if (retval != ERROR_OK) {
711 LOG_ERROR("TRST/SRST error");
712 return;
716 /* SRST resets everything hooked up to that signal */
717 if (jtag_srst != new_srst) {
718 jtag_srst = new_srst;
719 if (jtag_srst) {
720 LOG_DEBUG("SRST line asserted");
721 if (adapter_nsrst_assert_width)
722 jtag_add_sleep(adapter_nsrst_assert_width * 1000);
723 } else {
724 LOG_DEBUG("SRST line released");
725 if (adapter_nsrst_delay)
726 jtag_add_sleep(adapter_nsrst_delay * 1000);
730 /* Maybe enter the JTAG TAP_RESET state ...
731 * - using only TMS, TCK, and the JTAG state machine
732 * - or else more directly, using TRST
734 * TAP_RESET should be invisible to non-debug parts of the system.
736 if (trst_with_tlr) {
737 LOG_DEBUG("JTAG reset with TLR instead of TRST");
738 jtag_add_tlr();
740 } else if (jtag_trst != new_trst) {
741 jtag_trst = new_trst;
742 if (jtag_trst) {
743 LOG_DEBUG("TRST line asserted");
744 tap_set_state(TAP_RESET);
745 if (jtag_ntrst_assert_width)
746 jtag_add_sleep(jtag_ntrst_assert_width * 1000);
747 } else {
748 LOG_DEBUG("TRST line released");
749 if (jtag_ntrst_delay)
750 jtag_add_sleep(jtag_ntrst_delay * 1000);
752 /* We just asserted nTRST, so we're now in TAP_RESET.
753 * Inform possible listeners about this, now that
754 * JTAG instructions and data can be shifted. This
755 * sequence must match jtag_add_tlr().
757 jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
758 jtag_notify_event(JTAG_TRST_ASSERTED);
763 void jtag_add_sleep(uint32_t us)
765 /** @todo Here, keep_alive() appears to be a layering violation!!! */
766 keep_alive();
767 jtag_set_error(interface_jtag_add_sleep(us));
770 static int jtag_check_value_inner(uint8_t *captured, uint8_t *in_check_value,
771 uint8_t *in_check_mask, int num_bits)
773 int retval = ERROR_OK;
774 int compare_failed;
776 if (in_check_mask)
777 compare_failed = buf_cmp_mask(captured, in_check_value, in_check_mask, num_bits);
778 else
779 compare_failed = buf_cmp(captured, in_check_value, num_bits);
781 if (compare_failed) {
782 char *captured_str, *in_check_value_str;
783 int bits = (num_bits > DEBUG_JTAG_IOZ) ? DEBUG_JTAG_IOZ : num_bits;
785 /* NOTE: we've lost diagnostic context here -- 'which tap' */
787 captured_str = buf_to_str(captured, bits, 16);
788 in_check_value_str = buf_to_str(in_check_value, bits, 16);
790 LOG_WARNING("Bad value '%s' captured during DR or IR scan:",
791 captured_str);
792 LOG_WARNING(" check_value: 0x%s", in_check_value_str);
794 free(captured_str);
795 free(in_check_value_str);
797 if (in_check_mask) {
798 char *in_check_mask_str;
800 in_check_mask_str = buf_to_str(in_check_mask, bits, 16);
801 LOG_WARNING(" check_mask: 0x%s", in_check_mask_str);
802 free(in_check_mask_str);
805 retval = ERROR_JTAG_QUEUE_FAILED;
807 return retval;
810 void jtag_check_value_mask(struct scan_field *field, uint8_t *value, uint8_t *mask)
812 assert(field->in_value != NULL);
814 if (value == NULL) {
815 /* no checking to do */
816 return;
819 jtag_execute_queue_noclear();
821 int retval = jtag_check_value_inner(field->in_value, value, mask, field->num_bits);
822 jtag_set_error(retval);
825 int default_interface_jtag_execute_queue(void)
827 if (NULL == jtag) {
828 LOG_ERROR("No JTAG interface configured yet. "
829 "Issue 'init' command in startup scripts "
830 "before communicating with targets.");
831 return ERROR_FAIL;
834 return jtag->execute_queue();
837 void jtag_execute_queue_noclear(void)
839 jtag_flush_queue_count++;
840 jtag_set_error(interface_jtag_execute_queue());
842 if (jtag_flush_queue_sleep > 0) {
843 /* For debug purposes it can be useful to test performance
844 * or behavior when delaying after flushing the queue,
845 * e.g. to simulate long roundtrip times.
847 usleep(jtag_flush_queue_sleep * 1000);
851 int jtag_get_flush_queue_count(void)
853 return jtag_flush_queue_count;
856 int jtag_execute_queue(void)
858 jtag_execute_queue_noclear();
859 return jtag_error_clear();
862 static int jtag_reset_callback(enum jtag_event event, void *priv)
864 struct jtag_tap *tap = priv;
866 if (event == JTAG_TRST_ASSERTED) {
867 tap->enabled = !tap->disabled_after_reset;
869 /* current instruction is either BYPASS or IDCODE */
870 buf_set_ones(tap->cur_instr, tap->ir_length);
871 tap->bypass = 1;
874 return ERROR_OK;
877 /* sleep at least us microseconds. When we sleep more than 1000ms we
878 * do an alive sleep, i.e. keep GDB alive. Note that we could starve
879 * GDB if we slept for <1000ms many times.
881 void jtag_sleep(uint32_t us)
883 if (us < 1000)
884 usleep(us);
885 else
886 alive_sleep((us+999)/1000);
889 #define JTAG_MAX_AUTO_TAPS 20
891 #define EXTRACT_MFG(X) (((X) & 0xffe) >> 1)
892 #define EXTRACT_PART(X) (((X) & 0xffff000) >> 12)
893 #define EXTRACT_VER(X) (((X) & 0xf0000000) >> 28)
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.
898 #define END_OF_CHAIN_FLAG 0xffffffff
900 /* a larger IR length than we ever expect to autoprobe */
901 #define JTAG_IRLEN_MAX 60
903 static int jtag_examine_chain_execute(uint8_t *idcode_buffer, unsigned num_idcode)
905 struct scan_field field = {
906 .num_bits = num_idcode * 32,
907 .out_value = idcode_buffer,
908 .in_value = idcode_buffer,
911 /* initialize to the end of chain ID value */
912 for (unsigned i = 0; i < num_idcode; i++)
913 buf_set_u32(idcode_buffer, i * 32, 32, END_OF_CHAIN_FLAG);
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();
920 static bool jtag_examine_chain_check(uint8_t *idcodes, unsigned count)
922 uint8_t zero_check = 0x0;
923 uint8_t one_check = 0xff;
925 for (unsigned i = 0; i < count * 4; i++) {
926 zero_check |= idcodes[i];
927 one_check &= idcodes[i];
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
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
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;
946 return true;
949 static void jtag_examine_chain_display(enum log_levels level, const char *msg,
950 const char *name, uint32_t idcode)
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));
962 static bool jtag_idcode_is_final(uint32_t idcode)
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.
969 return idcode == END_OF_CHAIN_FLAG;
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.
979 static bool jtag_examine_chain_end(uint8_t *idcodes, unsigned count, unsigned max)
981 bool triggered = false;
982 for (; count < max - 31; count += 32) {
983 uint32_t idcode = buf_get_u32(idcodes, count, 32);
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;
992 return triggered;
995 static bool jtag_examine_chain_match_tap(const struct jtag_tap *tap)
998 if (tap->expected_ids_cnt == 0 || !tap->hasidcode)
999 return true;
1001 /* optionally ignore the JTAG version field - bits 28-31 of IDCODE */
1002 uint32_t mask = tap->ignore_version ? ~(0xf << 28) : ~0;
1003 uint32_t idcode = tap->idcode & mask;
1005 /* Loop over the expected identification codes and test for a match */
1006 for (unsigned ii = 0; ii < tap->expected_ids_cnt; ii++) {
1007 uint32_t expected = tap->expected_ids[ii] & mask;
1009 if (idcode == expected)
1010 return true;
1012 /* treat "-expected-id 0" as a "don't-warn" wildcard */
1013 if (0 == tap->expected_ids[ii])
1014 return true;
1017 /* If none of the expected ids matched, warn */
1018 jtag_examine_chain_display(LOG_LVL_WARNING, "UNEXPECTED",
1019 tap->dotted_name, tap->idcode);
1020 for (unsigned ii = 0; ii < tap->expected_ids_cnt; ii++) {
1021 char msg[32];
1023 snprintf(msg, sizeof(msg), "expected %u of %u", ii + 1, tap->expected_ids_cnt);
1024 jtag_examine_chain_display(LOG_LVL_ERROR, msg,
1025 tap->dotted_name, tap->expected_ids[ii]);
1027 return false;
1030 /* Try to examine chain layout according to IEEE 1149.1 §12
1031 * This is called a "blind interrogation" of the scan chain.
1033 static int jtag_examine_chain(void)
1035 int retval;
1036 unsigned max_taps = jtag_tap_count();
1038 /* Autoprobe up to this many. */
1039 if (max_taps < JTAG_MAX_AUTO_TAPS)
1040 max_taps = JTAG_MAX_AUTO_TAPS;
1042 /* Add room for end-of-chain marker. */
1043 max_taps++;
1045 uint8_t *idcode_buffer = malloc(max_taps * 4);
1046 if (idcode_buffer == NULL)
1047 return ERROR_JTAG_INIT_FAILED;
1049 /* DR scan to collect BYPASS or IDCODE register contents.
1050 * Then make sure the scan data has both ones and zeroes.
1052 LOG_DEBUG("DR scan interrogation for IDCODE/BYPASS");
1053 retval = jtag_examine_chain_execute(idcode_buffer, max_taps);
1054 if (retval != ERROR_OK)
1055 goto out;
1056 if (!jtag_examine_chain_check(idcode_buffer, max_taps)) {
1057 retval = ERROR_JTAG_INIT_FAILED;
1058 goto out;
1061 /* Point at the 1st predefined tap, if any */
1062 struct jtag_tap *tap = jtag_tap_next_enabled(NULL);
1064 unsigned bit_count = 0;
1065 unsigned autocount = 0;
1066 for (unsigned i = 0; i < max_taps; i++) {
1067 assert(bit_count < max_taps * 32);
1068 uint32_t idcode = buf_get_u32(idcode_buffer, bit_count, 32);
1070 /* No predefined TAP? Auto-probe. */
1071 if (tap == NULL) {
1072 /* Is there another TAP? */
1073 if (jtag_idcode_is_final(idcode))
1074 break;
1076 /* Default everything in this TAP except IR length.
1078 * REVISIT create a jtag_alloc(chip, tap) routine, and
1079 * share it with jim_newtap_cmd().
1081 tap = calloc(1, sizeof *tap);
1082 if (!tap) {
1083 retval = ERROR_FAIL;
1084 goto out;
1087 tap->chip = alloc_printf("auto%u", autocount++);
1088 tap->tapname = strdup("tap");
1089 tap->dotted_name = alloc_printf("%s.%s", tap->chip, tap->tapname);
1091 tap->ir_length = 0; /* ... signifying irlen autoprobe */
1092 tap->ir_capture_mask = 0x03;
1093 tap->ir_capture_value = 0x01;
1095 tap->enabled = true;
1097 jtag_tap_init(tap);
1100 if ((idcode & 1) == 0) {
1101 /* Zero for LSB indicates a device in bypass */
1102 LOG_INFO("TAP %s does not have IDCODE", tap->dotted_name);
1103 tap->hasidcode = false;
1104 tap->idcode = 0;
1106 bit_count += 1;
1107 } else {
1108 /* Friendly devices support IDCODE */
1109 tap->hasidcode = true;
1110 tap->idcode = idcode;
1111 jtag_examine_chain_display(LOG_LVL_INFO, "tap/device found", tap->dotted_name, idcode);
1113 bit_count += 32;
1116 /* ensure the TAP ID matches what was expected */
1117 if (!jtag_examine_chain_match_tap(tap))
1118 retval = ERROR_JTAG_INIT_SOFT_FAIL;
1120 tap = jtag_tap_next_enabled(tap);
1123 /* After those IDCODE or BYPASS register values should be
1124 * only the data we fed into the scan chain.
1126 if (jtag_examine_chain_end(idcode_buffer, bit_count, max_taps * 32)) {
1127 LOG_ERROR("double-check your JTAG setup (interface, speed, ...)");
1128 retval = ERROR_JTAG_INIT_FAILED;
1129 goto out;
1132 /* Return success or, for backwards compatibility if only
1133 * some IDCODE values mismatched, a soft/continuable fault.
1135 out:
1136 free(idcode_buffer);
1137 return retval;
1141 * Validate the date loaded by entry to the Capture-IR state, to help
1142 * find errors related to scan chain configuration (wrong IR lengths)
1143 * or communication.
1145 * Entry state can be anything. On non-error exit, all TAPs are in
1146 * bypass mode. On error exits, the scan chain is reset.
1148 static int jtag_validate_ircapture(void)
1150 struct jtag_tap *tap;
1151 int total_ir_length = 0;
1152 uint8_t *ir_test = NULL;
1153 struct scan_field field;
1154 uint64_t val;
1155 int chain_pos = 0;
1156 int retval;
1158 /* when autoprobing, accomodate huge IR lengths */
1159 for (tap = NULL, total_ir_length = 0;
1160 (tap = jtag_tap_next_enabled(tap)) != NULL;
1161 total_ir_length += tap->ir_length) {
1162 if (tap->ir_length == 0)
1163 total_ir_length += JTAG_IRLEN_MAX;
1166 /* increase length to add 2 bit sentinel after scan */
1167 total_ir_length += 2;
1169 ir_test = malloc(DIV_ROUND_UP(total_ir_length, 8));
1170 if (ir_test == NULL)
1171 return ERROR_FAIL;
1173 /* after this scan, all TAPs will capture BYPASS instructions */
1174 buf_set_ones(ir_test, total_ir_length);
1176 field.num_bits = total_ir_length;
1177 field.out_value = ir_test;
1178 field.in_value = ir_test;
1180 jtag_add_plain_ir_scan(field.num_bits, field.out_value, field.in_value, TAP_IDLE);
1182 LOG_DEBUG("IR capture validation scan");
1183 retval = jtag_execute_queue();
1184 if (retval != ERROR_OK)
1185 goto done;
1187 tap = NULL;
1188 chain_pos = 0;
1190 for (;; ) {
1191 tap = jtag_tap_next_enabled(tap);
1192 if (tap == NULL)
1193 break;
1195 /* If we're autoprobing, guess IR lengths. They must be at
1196 * least two bits. Guessing will fail if (a) any TAP does
1197 * not conform to the JTAG spec; or (b) when the upper bits
1198 * captured from some conforming TAP are nonzero. Or if
1199 * (c) an IR length is longer than JTAG_IRLEN_MAX bits,
1200 * an implementation limit, which could someday be raised.
1202 * REVISIT optimization: if there's a *single* TAP we can
1203 * lift restrictions (a) and (b) by scanning a recognizable
1204 * pattern before the all-ones BYPASS. Check for where the
1205 * pattern starts in the result, instead of an 0...01 value.
1207 * REVISIT alternative approach: escape to some tcl code
1208 * which could provide more knowledge, based on IDCODE; and
1209 * only guess when that has no success.
1211 if (tap->ir_length == 0) {
1212 tap->ir_length = 2;
1213 while ((val = buf_get_u64(ir_test, chain_pos, tap->ir_length + 1)) == 1
1214 && tap->ir_length < JTAG_IRLEN_MAX) {
1215 tap->ir_length++;
1217 LOG_WARNING("AUTO %s - use \"jtag newtap " "%s %s -irlen %d "
1218 "-expected-id 0x%08" PRIx32 "\"",
1219 tap->dotted_name, tap->chip, tap->tapname, tap->ir_length, tap->idcode);
1222 /* Validate the two LSBs, which must be 01 per JTAG spec.
1224 * Or ... more bits could be provided by TAP declaration.
1225 * Plus, some taps (notably in i.MX series chips) violate
1226 * this part of the JTAG spec, so their capture mask/value
1227 * attributes might disable this test.
1229 val = buf_get_u64(ir_test, chain_pos, tap->ir_length);
1230 if ((val & tap->ir_capture_mask) != tap->ir_capture_value) {
1231 LOG_ERROR("%s: IR capture error; saw 0x%0*" PRIx64 " not 0x%0*" PRIx32,
1232 jtag_tap_name(tap),
1233 (tap->ir_length + 7) / tap->ir_length, val,
1234 (tap->ir_length + 7) / tap->ir_length, tap->ir_capture_value);
1236 retval = ERROR_JTAG_INIT_FAILED;
1237 goto done;
1239 LOG_DEBUG("%s: IR capture 0x%0*" PRIx64, jtag_tap_name(tap),
1240 (tap->ir_length + 7) / tap->ir_length, val);
1241 chain_pos += tap->ir_length;
1244 /* verify the '11' sentinel we wrote is returned at the end */
1245 val = buf_get_u64(ir_test, chain_pos, 2);
1246 if (val != 0x3) {
1247 char *cbuf = buf_to_str(ir_test, total_ir_length, 16);
1249 LOG_ERROR("IR capture error at bit %d, saw 0x%s not 0x...3",
1250 chain_pos, cbuf);
1251 free(cbuf);
1252 retval = ERROR_JTAG_INIT_FAILED;
1255 done:
1256 free(ir_test);
1257 if (retval != ERROR_OK) {
1258 jtag_add_tlr();
1259 jtag_execute_queue();
1261 return retval;
1264 void jtag_tap_init(struct jtag_tap *tap)
1266 unsigned ir_len_bits;
1267 unsigned ir_len_bytes;
1269 /* if we're autoprobing, cope with potentially huge ir_length */
1270 ir_len_bits = tap->ir_length ? : JTAG_IRLEN_MAX;
1271 ir_len_bytes = DIV_ROUND_UP(ir_len_bits, 8);
1273 tap->expected = calloc(1, ir_len_bytes);
1274 tap->expected_mask = calloc(1, ir_len_bytes);
1275 tap->cur_instr = malloc(ir_len_bytes);
1277 /** @todo cope better with ir_length bigger than 32 bits */
1278 if (ir_len_bits > 32)
1279 ir_len_bits = 32;
1281 buf_set_u32(tap->expected, 0, ir_len_bits, tap->ir_capture_value);
1282 buf_set_u32(tap->expected_mask, 0, ir_len_bits, tap->ir_capture_mask);
1284 /* TAP will be in bypass mode after jtag_validate_ircapture() */
1285 tap->bypass = 1;
1286 buf_set_ones(tap->cur_instr, tap->ir_length);
1288 /* register the reset callback for the TAP */
1289 jtag_register_event_callback(&jtag_reset_callback, tap);
1290 jtag_tap_add(tap);
1292 LOG_DEBUG("Created Tap: %s @ abs position %d, "
1293 "irlen %d, capture: 0x%x mask: 0x%x", tap->dotted_name,
1294 tap->abs_chain_position, tap->ir_length,
1295 (unsigned) tap->ir_capture_value,
1296 (unsigned) tap->ir_capture_mask);
1299 void jtag_tap_free(struct jtag_tap *tap)
1301 jtag_unregister_event_callback(&jtag_reset_callback, tap);
1303 free(tap->expected);
1304 free(tap->expected_mask);
1305 free(tap->expected_ids);
1306 free(tap->cur_instr);
1307 free(tap->chip);
1308 free(tap->tapname);
1309 free(tap->dotted_name);
1310 free(tap);
1314 * Do low-level setup like initializing registers, output signals,
1315 * and clocking.
1317 int adapter_init(struct command_context *cmd_ctx)
1319 if (jtag)
1320 return ERROR_OK;
1322 if (!jtag_interface) {
1323 /* nothing was previously specified by "interface" command */
1324 LOG_ERROR("Debug Adapter has to be specified, "
1325 "see \"interface\" command");
1326 return ERROR_JTAG_INVALID_INTERFACE;
1329 int retval;
1330 retval = jtag_interface->init();
1331 if (retval != ERROR_OK)
1332 return retval;
1333 jtag = jtag_interface;
1335 /* LEGACY SUPPORT ... adapter drivers must declare what
1336 * transports they allow. Until they all do so, assume
1337 * the legacy drivers are JTAG-only
1339 if (!transports_are_declared()) {
1340 LOG_ERROR("Adapter driver '%s' did not declare "
1341 "which transports it allows; assuming "
1342 "JTAG-only", jtag->name);
1343 retval = allow_transports(cmd_ctx, jtag_only);
1344 if (retval != ERROR_OK)
1345 return retval;
1348 if (jtag->speed == NULL) {
1349 LOG_INFO("This adapter doesn't support configurable speed");
1350 return ERROR_OK;
1353 if (CLOCK_MODE_UNSELECTED == clock_mode) {
1354 LOG_ERROR("An adapter speed is not selected in the init script."
1355 " Insert a call to adapter_khz or jtag_rclk to proceed.");
1356 return ERROR_JTAG_INIT_FAILED;
1359 int requested_khz = jtag_get_speed_khz();
1360 int actual_khz = requested_khz;
1361 int jtag_speed_var = 0;
1362 retval = jtag_get_speed(&jtag_speed_var);
1363 if (retval != ERROR_OK)
1364 return retval;
1365 retval = jtag->speed(jtag_speed_var);
1366 if (retval != ERROR_OK)
1367 return retval;
1368 retval = jtag_get_speed_readable(&actual_khz);
1369 if (ERROR_OK != retval)
1370 LOG_INFO("adapter-specific clock speed value %d", jtag_speed_var);
1371 else if (actual_khz) {
1372 /* Adaptive clocking -- JTAG-specific */
1373 if ((CLOCK_MODE_RCLK == clock_mode)
1374 || ((CLOCK_MODE_KHZ == clock_mode) && !requested_khz)) {
1375 LOG_INFO("RCLK (adaptive clock speed) not supported - fallback to %d kHz"
1376 , actual_khz);
1377 } else
1378 LOG_INFO("clock speed %d kHz", actual_khz);
1379 } else
1380 LOG_INFO("RCLK (adaptive clock speed)");
1382 return ERROR_OK;
1385 int jtag_init_inner(struct command_context *cmd_ctx)
1387 struct jtag_tap *tap;
1388 int retval;
1389 bool issue_setup = true;
1391 LOG_DEBUG("Init JTAG chain");
1393 tap = jtag_tap_next_enabled(NULL);
1394 if (tap == NULL) {
1395 /* Once JTAG itself is properly set up, and the scan chain
1396 * isn't absurdly large, IDCODE autoprobe should work fine.
1398 * But ... IRLEN autoprobe can fail even on systems which
1399 * are fully conformant to JTAG. Also, JTAG setup can be
1400 * quite finicky on some systems.
1402 * REVISIT: if TAP autoprobe works OK, then in many cases
1403 * we could escape to tcl code and set up targets based on
1404 * the TAP's IDCODE values.
1406 LOG_WARNING("There are no enabled taps. "
1407 "AUTO PROBING MIGHT NOT WORK!!");
1409 /* REVISIT default clock will often be too fast ... */
1412 jtag_add_tlr();
1413 retval = jtag_execute_queue();
1414 if (retval != ERROR_OK)
1415 return retval;
1417 /* Examine DR values first. This discovers problems which will
1418 * prevent communication ... hardware issues like TDO stuck, or
1419 * configuring the wrong number of (enabled) TAPs.
1421 retval = jtag_examine_chain();
1422 switch (retval) {
1423 case ERROR_OK:
1424 /* complete success */
1425 break;
1426 default:
1427 /* For backward compatibility reasons, try coping with
1428 * configuration errors involving only ID mismatches.
1429 * We might be able to talk to the devices.
1431 * Also the device might be powered down during startup.
1433 * After OpenOCD starts, we can try to power on the device
1434 * and run a reset.
1436 LOG_ERROR("Trying to use configured scan chain anyway...");
1437 issue_setup = false;
1438 break;
1441 /* Now look at IR values. Problems here will prevent real
1442 * communication. They mostly mean that the IR length is
1443 * wrong ... or that the IR capture value is wrong. (The
1444 * latter is uncommon, but easily worked around: provide
1445 * ircapture/irmask values during TAP setup.)
1447 retval = jtag_validate_ircapture();
1448 if (retval != ERROR_OK) {
1449 /* The target might be powered down. The user
1450 * can power it up and reset it after firing
1451 * up OpenOCD.
1453 issue_setup = false;
1456 if (issue_setup)
1457 jtag_notify_event(JTAG_TAP_EVENT_SETUP);
1458 else
1459 LOG_WARNING("Bypassing JTAG setup events due to errors");
1462 return ERROR_OK;
1465 int adapter_quit(void)
1467 if (!jtag || !jtag->quit)
1468 return ERROR_OK;
1470 /* close the JTAG interface */
1471 int result = jtag->quit();
1472 if (ERROR_OK != result)
1473 LOG_ERROR("failed: %d", result);
1475 return ERROR_OK;
1478 int swd_init_reset(struct command_context *cmd_ctx)
1480 int retval = adapter_init(cmd_ctx);
1481 if (retval != ERROR_OK)
1482 return retval;
1484 LOG_DEBUG("Initializing with hard SRST reset");
1486 if (jtag_reset_config & RESET_HAS_SRST)
1487 swd_add_reset(1);
1488 swd_add_reset(0);
1489 retval = jtag_execute_queue();
1490 return retval;
1493 int jtag_init_reset(struct command_context *cmd_ctx)
1495 int retval = adapter_init(cmd_ctx);
1496 if (retval != ERROR_OK)
1497 return retval;
1499 LOG_DEBUG("Initializing with hard TRST+SRST reset");
1502 * This procedure is used by default when OpenOCD triggers a reset.
1503 * It's now done through an overridable Tcl "init_reset" wrapper.
1505 * This started out as a more powerful "get JTAG working" reset than
1506 * jtag_init_inner(), applying TRST because some chips won't activate
1507 * JTAG without a TRST cycle (presumed to be async, though some of
1508 * those chips synchronize JTAG activation using TCK).
1510 * But some chips only activate JTAG as part of an SRST cycle; SRST
1511 * got mixed in. So it became a hard reset routine, which got used
1512 * in more places, and which coped with JTAG reset being forced as
1513 * part of SRST (srst_pulls_trst).
1515 * And even more corner cases started to surface: TRST and/or SRST
1516 * assertion timings matter; some chips need other JTAG operations;
1517 * TRST/SRST sequences can need to be different from these, etc.
1519 * Systems should override that wrapper to support system-specific
1520 * requirements that this not-fully-generic code doesn't handle.
1522 * REVISIT once Tcl code can read the reset_config modes, this won't
1523 * need to be a C routine at all...
1525 if (jtag_reset_config & RESET_HAS_SRST) {
1526 jtag_add_reset(1, 1);
1527 if ((jtag_reset_config & RESET_SRST_PULLS_TRST) == 0)
1528 jtag_add_reset(0, 1);
1529 } else {
1530 jtag_add_reset(1, 0); /* TAP_RESET, using TMS+TCK or TRST */
1533 /* some targets enable us to connect with srst asserted */
1534 if (jtag_reset_config & RESET_CNCT_UNDER_SRST) {
1535 if (jtag_reset_config & RESET_SRST_NO_GATING)
1536 jtag_add_reset(0, 1);
1537 else {
1538 LOG_WARNING("\'srst_nogate\' reset_config option is required");
1539 jtag_add_reset(0, 0);
1541 } else
1542 jtag_add_reset(0, 0);
1543 retval = jtag_execute_queue();
1544 if (retval != ERROR_OK)
1545 return retval;
1547 /* Check that we can communication on the JTAG chain + eventually we want to
1548 * be able to perform enumeration only after OpenOCD has started
1549 * telnet and GDB server
1551 * That would allow users to more easily perform any magic they need to before
1552 * reset happens.
1554 return jtag_init_inner(cmd_ctx);
1557 int jtag_init(struct command_context *cmd_ctx)
1559 int retval = adapter_init(cmd_ctx);
1560 if (retval != ERROR_OK)
1561 return retval;
1563 /* guard against oddball hardware: force resets to be inactive */
1564 jtag_add_reset(0, 0);
1566 /* some targets enable us to connect with srst asserted */
1567 if (jtag_reset_config & RESET_CNCT_UNDER_SRST) {
1568 if (jtag_reset_config & RESET_SRST_NO_GATING)
1569 jtag_add_reset(0, 1);
1570 else
1571 LOG_WARNING("\'srst_nogate\' reset_config option is required");
1573 retval = jtag_execute_queue();
1574 if (retval != ERROR_OK)
1575 return retval;
1577 if (Jim_Eval_Named(cmd_ctx->interp, "jtag_init", __FILE__, __LINE__) != JIM_OK)
1578 return ERROR_FAIL;
1580 return ERROR_OK;
1583 unsigned jtag_get_speed_khz(void)
1585 return speed_khz;
1588 static int adapter_khz_to_speed(unsigned khz, int *speed)
1590 LOG_DEBUG("convert khz to interface specific speed value");
1591 speed_khz = khz;
1592 if (jtag != NULL) {
1593 LOG_DEBUG("have interface set up");
1594 int speed_div1;
1595 int retval = jtag->khz(jtag_get_speed_khz(), &speed_div1);
1596 if (ERROR_OK != retval)
1597 return retval;
1598 *speed = speed_div1;
1600 return ERROR_OK;
1603 static int jtag_rclk_to_speed(unsigned fallback_speed_khz, int *speed)
1605 int retval = adapter_khz_to_speed(0, speed);
1606 if ((ERROR_OK != retval) && fallback_speed_khz) {
1607 LOG_DEBUG("trying fallback speed...");
1608 retval = adapter_khz_to_speed(fallback_speed_khz, speed);
1610 return retval;
1613 static int jtag_set_speed(int speed)
1615 jtag_speed = speed;
1616 /* this command can be called during CONFIG,
1617 * in which case jtag isn't initialized */
1618 return jtag ? jtag->speed(speed) : ERROR_OK;
1621 int jtag_config_khz(unsigned khz)
1623 LOG_DEBUG("handle jtag khz");
1624 clock_mode = CLOCK_MODE_KHZ;
1625 int speed = 0;
1626 int retval = adapter_khz_to_speed(khz, &speed);
1627 return (ERROR_OK != retval) ? retval : jtag_set_speed(speed);
1630 int jtag_config_rclk(unsigned fallback_speed_khz)
1632 LOG_DEBUG("handle jtag rclk");
1633 clock_mode = CLOCK_MODE_RCLK;
1634 rclk_fallback_speed_khz = fallback_speed_khz;
1635 int speed = 0;
1636 int retval = jtag_rclk_to_speed(fallback_speed_khz, &speed);
1637 return (ERROR_OK != retval) ? retval : jtag_set_speed(speed);
1640 int jtag_get_speed(int *speed)
1642 switch (clock_mode) {
1643 case CLOCK_MODE_KHZ:
1644 adapter_khz_to_speed(jtag_get_speed_khz(), speed);
1645 break;
1646 case CLOCK_MODE_RCLK:
1647 jtag_rclk_to_speed(rclk_fallback_speed_khz, speed);
1648 break;
1649 default:
1650 LOG_ERROR("BUG: unknown jtag clock mode");
1651 return ERROR_FAIL;
1653 return ERROR_OK;
1656 int jtag_get_speed_readable(int *khz)
1658 int jtag_speed_var = 0;
1659 int retval = jtag_get_speed(&jtag_speed_var);
1660 if (retval != ERROR_OK)
1661 return retval;
1662 return jtag ? jtag->speed_div(jtag_speed_var, khz) : ERROR_OK;
1665 void jtag_set_verify(bool enable)
1667 jtag_verify = enable;
1670 bool jtag_will_verify()
1672 return jtag_verify;
1675 void jtag_set_verify_capture_ir(bool enable)
1677 jtag_verify_capture_ir = enable;
1680 bool jtag_will_verify_capture_ir()
1682 return jtag_verify_capture_ir;
1685 int jtag_power_dropout(int *dropout)
1687 if (jtag == NULL) {
1688 /* TODO: as the jtag interface is not valid all
1689 * we can do at the moment is exit OpenOCD */
1690 LOG_ERROR("No Valid JTAG Interface Configured.");
1691 exit(-1);
1693 return jtag->power_dropout(dropout);
1696 int jtag_srst_asserted(int *srst_asserted)
1698 return jtag->srst_asserted(srst_asserted);
1701 enum reset_types jtag_get_reset_config(void)
1703 return jtag_reset_config;
1705 void jtag_set_reset_config(enum reset_types type)
1707 jtag_reset_config = type;
1710 int jtag_get_trst(void)
1712 return jtag_trst;
1714 int jtag_get_srst(void)
1716 return jtag_srst;
1719 void jtag_set_nsrst_delay(unsigned delay)
1721 adapter_nsrst_delay = delay;
1723 unsigned jtag_get_nsrst_delay(void)
1725 return adapter_nsrst_delay;
1727 void jtag_set_ntrst_delay(unsigned delay)
1729 jtag_ntrst_delay = delay;
1731 unsigned jtag_get_ntrst_delay(void)
1733 return jtag_ntrst_delay;
1737 void jtag_set_nsrst_assert_width(unsigned delay)
1739 adapter_nsrst_assert_width = delay;
1741 unsigned jtag_get_nsrst_assert_width(void)
1743 return adapter_nsrst_assert_width;
1745 void jtag_set_ntrst_assert_width(unsigned delay)
1747 jtag_ntrst_assert_width = delay;
1749 unsigned jtag_get_ntrst_assert_width(void)
1751 return jtag_ntrst_assert_width;
1754 static int jtag_select(struct command_context *ctx)
1756 int retval;
1758 /* NOTE: interface init must already have been done.
1759 * That works with only C code ... no Tcl glue required.
1762 retval = jtag_register_commands(ctx);
1764 if (retval != ERROR_OK)
1765 return retval;
1767 retval = svf_register_commands(ctx);
1769 if (retval != ERROR_OK)
1770 return retval;
1772 return xsvf_register_commands(ctx);
1775 static struct transport jtag_transport = {
1776 .name = "jtag",
1777 .select = jtag_select,
1778 .init = jtag_init,
1781 static void jtag_constructor(void) __attribute__((constructor));
1782 static void jtag_constructor(void)
1784 transport_register(&jtag_transport);
1787 /** Returns true if the current debug session
1788 * is using JTAG as its transport.
1790 bool transport_is_jtag(void)
1792 return get_current_transport() == &jtag_transport;
1795 void adapter_assert_reset(void)
1797 if (transport_is_jtag()) {
1798 if (jtag_reset_config & RESET_SRST_PULLS_TRST)
1799 jtag_add_reset(1, 1);
1800 else
1801 jtag_add_reset(0, 1);
1802 } else if (transport_is_swd())
1803 swd_add_reset(1);
1804 else if (transport_is_cmsis_dap())
1805 swd_add_reset(1); /* FIXME */
1806 else if (get_current_transport() != NULL)
1807 LOG_ERROR("reset is not supported on %s",
1808 get_current_transport()->name);
1809 else
1810 LOG_ERROR("transport is not selected");
1813 void adapter_deassert_reset(void)
1815 if (transport_is_jtag())
1816 jtag_add_reset(0, 0);
1817 else if (transport_is_swd())
1818 swd_add_reset(0);
1819 else if (transport_is_cmsis_dap())
1820 swd_add_reset(0); /* FIXME */
1821 else if (get_current_transport() != NULL)
1822 LOG_ERROR("reset is not supported on %s",
1823 get_current_transport()->name);
1824 else
1825 LOG_ERROR("transport is not selected");