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