- split fileio handling into fileio part and image handling
[fw/openocd] / src / jtag / jtag.c
1 /***************************************************************************
2  *   Copyright (C) 2005 by Dominic Rath                                    *
3  *   Dominic.Rath@gmx.de                                                   *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23
24 #include "replacements.h"
25
26 #include "jtag.h"
27
28 #include "command.h"
29 #include "log.h"
30 #include "interpreter.h"
31
32 #include "stdlib.h"
33 #include "string.h"
34 #include <unistd.h>
35
36 char* tap_state_strings[16] =
37 {
38         "tlr", 
39         "sds", "cd", "sd", "e1d", "pd", "e2d", "ud",
40         "rti",
41         "sis", "ci", "si", "e1i", "pi", "e2i", "ui"
42 };
43
44 typedef struct cmd_queue_page_s
45 {
46         void *address;
47         size_t used;
48         struct cmd_queue_page_s *next;
49 } cmd_queue_page_t;
50
51 #define CMD_QUEUE_PAGE_SIZE (1024 * 1024)
52 static cmd_queue_page_t *cmd_queue_pages = NULL;
53
54 /* tap_move[i][j]: tap movement command to go from state i to state j
55  * 0: Test-Logic-Reset
56  * 1: Run-Test/Idle
57  * 2: Shift-DR
58  * 3: Pause-DR
59  * 4: Shift-IR
60  * 5: Pause-IR
61  */
62 u8 tap_move[6][6] =
63 {
64 /*        TLR   RTI   SD    PD    SI    PI             */
65         {0x7f, 0x00, 0x17, 0x0a, 0x1b, 0x16},   /* TLR */
66         {0x7f, 0x00, 0x25, 0x05, 0x2b, 0x0b},   /* RTI */
67         {0x7f, 0x31, 0x00, 0x01, 0x0f, 0x2f},   /* SD  */
68         {0x7f, 0x30, 0x20, 0x17, 0x1e, 0x2f},   /* PD  */
69         {0x7f, 0x31, 0x07, 0x17, 0x00, 0x01},   /* SI  */
70         {0x7f, 0x30, 0x1c, 0x17, 0x20, 0x2f}    /* PI  */
71 };
72
73 int tap_move_map[16] = {
74         0, -1, -1,  2, -1,  3, -1, -1,
75         1, -1, -1,  4, -1,  5, -1, -1
76 };
77
78 tap_transition_t tap_transitions[16] =
79 {
80         {TAP_TLR, TAP_RTI},             /* TLR */
81         {TAP_SIS, TAP_CD},              /* SDS */
82         {TAP_E1D, TAP_SD},              /* CD  */
83         {TAP_E1D, TAP_SD},              /* SD  */
84         {TAP_UD,  TAP_PD},              /* E1D */
85         {TAP_E2D, TAP_PD},              /* PD  */
86         {TAP_UD,  TAP_SD},              /* E2D */
87         {TAP_SDS, TAP_RTI},             /* UD  */
88         {TAP_SDS, TAP_RTI},             /* RTI */
89         {TAP_TLR, TAP_CI},              /* SIS */
90         {TAP_E1I, TAP_SI},              /* CI  */
91         {TAP_E1I, TAP_SI},              /* SI  */
92         {TAP_UI,  TAP_PI},              /* E1I */
93         {TAP_E2I, TAP_PI},              /* PI  */
94         {TAP_UI,  TAP_SI},              /* E2I */
95         {TAP_SDS, TAP_RTI}              /* UI  */
96 };
97
98 char* jtag_event_strings[] =
99 {
100         "SRST asserted",
101         "TRST asserted",
102         "SRST released",
103         "TRST released"
104 };
105
106 enum tap_state end_state = TAP_TLR;
107 enum tap_state cur_state = TAP_TLR;
108 int jtag_trst = 0;
109 int jtag_srst = 0;
110
111 jtag_command_t *jtag_command_queue = NULL;
112 jtag_command_t **last_comand_pointer = &jtag_command_queue;
113 jtag_device_t *jtag_devices = NULL;
114 int jtag_num_devices = 0;
115 int jtag_ir_scan_size = 0;
116 enum reset_types jtag_reset_config = RESET_NONE;
117 enum tap_state cmd_queue_end_state = TAP_TLR;
118 enum tap_state cmd_queue_cur_state = TAP_TLR;
119
120 int jtag_verify_capture_ir = 1;
121
122 /* how long the OpenOCD should wait before attempting JTAG communication after reset lines deasserted (in ms) */
123 int jtag_nsrst_delay = 0; /* default to no nSRST delay */
124 int jtag_ntrst_delay = 0; /* default to no nTRST delay */ 
125
126 /* maximum number of JTAG devices expected in the chain
127  */
128 #define JTAG_MAX_CHAIN_SIZE 20 
129
130 /* callbacks to inform high-level handlers about JTAG state changes */
131 jtag_event_callback_t *jtag_event_callbacks;
132
133 /* jtag interfaces (parport, FTDI-USB, TI-USB, ...)
134  */
135 #if BUILD_PARPORT == 1
136         extern jtag_interface_t parport_interface;
137 #endif
138
139 #if BUILD_FT2232_FTD2XX == 1
140         extern jtag_interface_t ft2232_interface;
141 #endif
142
143 #if BUILD_FT2232_LIBFTDI == 1
144         extern jtag_interface_t ft2232_interface;
145 #endif
146
147 #if BUILD_AMTJTAGACCEL == 1
148         extern jtag_interface_t amt_jtagaccel_interface;
149 #endif
150
151 #if BUILD_EP93XX == 1
152         extern jtag_interface_t ep93xx_interface;
153 #endif
154
155 #if BUILD_AT91RM9200 == 1
156         extern jtag_interface_t at91rm9200_interface;
157 #endif
158
159 #if BUILD_GW16012 == 1
160         extern jtag_interface_t gw16012_interface;
161 #endif
162
163 jtag_interface_t *jtag_interfaces[] = {
164 #if BUILD_PARPORT == 1
165         &parport_interface,
166 #endif
167 #if BUILD_FT2232_FTD2XX == 1
168         &ft2232_interface,
169 #endif
170 #if BUILD_FT2232_LIBFTDI == 1
171         &ft2232_interface,
172 #endif
173 #if BUILD_AMTJTAGACCEL == 1
174         &amt_jtagaccel_interface,
175 #endif
176 #if BUILD_EP93XX == 1
177         &ep93xx_interface,
178 #endif
179 #if BUILD_AT91RM9200 == 1
180         &at91rm9200_interface,
181 #endif
182 #if BUILD_GW16012 == 1
183         &gw16012_interface,
184 #endif
185         NULL,
186 };
187
188 jtag_interface_t *jtag = NULL;
189
190 /* configuration */
191 char* jtag_interface = NULL;
192 int jtag_speed = -1;
193
194
195 /* forward declarations */
196 int jtag_add_ir_scan(int num_fields, scan_field_t *fields, enum tap_state endstate, error_handler_t *error_handler);
197 int jtag_add_dr_scan(int num_fields, scan_field_t *fields, enum tap_state endstate, error_handler_t *error_handler);
198 int jtag_add_plain_ir_scan(int num_fields, scan_field_t *fields, enum tap_state endstate, error_handler_t *error_handler);
199 int jtag_add_plain_dr_scan(int num_fields, scan_field_t *fields, enum tap_state endstate, error_handler_t *error_handler);
200 int jtag_add_statemove(enum tap_state endstate);
201 int jtag_add_pathmove(int num_states, enum tap_state *path);
202 int jtag_add_runtest(int num_cycles, enum tap_state endstate);
203 int jtag_add_reset(int trst, int srst);
204 int jtag_add_end_state(enum tap_state endstate);
205 int jtag_add_sleep(u32 us);
206 int jtag_execute_queue(void);
207 int jtag_cancel_queue(void);
208
209 /* jtag commands */
210 int handle_interface_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
211 int handle_jtag_speed_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
212 int handle_jtag_device_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
213 int handle_reset_config_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
214 int handle_jtag_nsrst_delay_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
215 int handle_jtag_ntrst_delay_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
216
217 int handle_scan_chain_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
218
219 int handle_endstate_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
220 int handle_jtag_reset_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
221 int handle_runtest_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
222 int handle_statemove_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
223 int handle_irscan_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
224 int handle_drscan_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
225
226 int handle_verify_ircapture_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
227
228 int jtag_register_event_callback(int (*callback)(enum jtag_event event, void *priv), void *priv)
229 {
230         jtag_event_callback_t **callbacks_p = &jtag_event_callbacks;
231         
232         if (callback == NULL)
233         {
234                 return ERROR_INVALID_ARGUMENTS;
235         }
236         
237         if (*callbacks_p)
238         {
239                 while ((*callbacks_p)->next)
240                         callbacks_p = &((*callbacks_p)->next);
241                 callbacks_p = &((*callbacks_p)->next);
242         }
243         
244         (*callbacks_p) = malloc(sizeof(jtag_event_callback_t));
245         (*callbacks_p)->callback = callback;
246         (*callbacks_p)->priv = priv;
247         (*callbacks_p)->next = NULL;
248         
249         return ERROR_OK;
250 }
251
252 int jtag_unregister_event_callback(int (*callback)(enum jtag_event event, void *priv))
253 {
254         jtag_event_callback_t **callbacks_p = &jtag_event_callbacks;
255         
256         if (callback == NULL)
257         {
258                 return ERROR_INVALID_ARGUMENTS;
259         }
260                 
261         while (*callbacks_p)
262         {
263                 jtag_event_callback_t **next = &((*callbacks_p)->next);
264                 if ((*callbacks_p)->callback == callback)
265                 {
266                         free(*callbacks_p);
267                         *callbacks_p = *next;
268                 }
269                 callbacks_p = next;
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         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 /* returns a pointer to the pointer of the last command in queue
291  * this may be a pointer to the root pointer (jtag_command_queue)
292  * or to the next member of the last but one command
293  */
294 jtag_command_t** jtag_get_last_command_p(void)
295 {
296 /*      jtag_command_t *cmd = jtag_command_queue;
297         
298         if (cmd)
299                 while (cmd->next)
300                         cmd = cmd->next;
301         else
302                 return &jtag_command_queue;
303         
304         return &cmd->next;*/
305         
306         return last_comand_pointer;
307 }
308
309 /* returns a pointer to the n-th device in the scan chain */
310 jtag_device_t* jtag_get_device(int num)
311 {
312         jtag_device_t *device = jtag_devices;
313         int i = 0;
314
315         while (device)
316         {
317                 if (num == i)
318                         return device;
319                 device = device->next;
320                 i++;
321         }
322
323         return NULL;
324 }
325
326 void* cmd_queue_alloc(size_t size)
327 {
328         cmd_queue_page_t **p_page = &cmd_queue_pages;
329         int offset;
330
331         if (*p_page)
332         {
333                 while ((*p_page)->next)
334                         p_page = &((*p_page)->next);
335                 if (CMD_QUEUE_PAGE_SIZE - (*p_page)->used < size)
336                         p_page = &((*p_page)->next);
337         }
338
339         if (!*p_page)
340         {
341                 *p_page = malloc(sizeof(cmd_queue_page_t));
342                 (*p_page)->used = 0;
343                 (*p_page)->address = malloc(CMD_QUEUE_PAGE_SIZE);
344                 (*p_page)->next = NULL;
345         }
346
347         offset = (*p_page)->used;
348         (*p_page)->used += size;
349         
350         return ((*p_page)->address) + offset;
351 }
352
353 void cmd_queue_free()
354 {
355         cmd_queue_page_t *page = cmd_queue_pages;
356
357         while (page)
358         {
359                 cmd_queue_page_t *last = page;
360                 free(page->address);
361                 page = page->next;
362                 free(last);
363         }
364
365         cmd_queue_pages = NULL;
366 }
367
368 int jtag_add_ir_scan(int num_fields, scan_field_t *fields, enum tap_state state, error_handler_t *error_handler)
369 {
370         jtag_command_t **last_cmd;
371         jtag_device_t *device;
372         int i, j;
373         int scan_size = 0;
374
375         if (jtag_trst == 1)
376         {
377                 WARNING("JTAG command queued, while TRST is low (TAP in reset)");
378                 return ERROR_JTAG_TRST_ASSERTED;
379         }
380
381         last_cmd = jtag_get_last_command_p();
382         
383         /* allocate memory for a new list member */
384         *last_cmd = cmd_queue_alloc(sizeof(jtag_command_t));
385         (*last_cmd)->next = NULL;
386         last_comand_pointer = &((*last_cmd)->next);
387         (*last_cmd)->type = JTAG_SCAN;
388
389         /* allocate memory for ir scan command */
390         (*last_cmd)->cmd.scan = cmd_queue_alloc(sizeof(scan_command_t));
391         (*last_cmd)->cmd.scan->ir_scan = 1;
392         (*last_cmd)->cmd.scan->num_fields = jtag_num_devices;   /* one field per device */
393         (*last_cmd)->cmd.scan->fields = cmd_queue_alloc(jtag_num_devices * sizeof(scan_field_t));
394         (*last_cmd)->cmd.scan->end_state = state;
395         if (error_handler)
396         {
397                 (*last_cmd)->cmd.scan->error_handler = cmd_queue_alloc(sizeof(error_handler_t));
398                 *(*last_cmd)->cmd.scan->error_handler = *error_handler;
399         }
400         else
401         {
402                 (*last_cmd)->cmd.scan->error_handler = NULL;
403         }
404                 
405         if (state != -1)
406                 cmd_queue_end_state = state;
407
408         if (cmd_queue_cur_state == TAP_TLR && cmd_queue_end_state != TAP_TLR)
409                 jtag_call_event_callbacks(JTAG_TRST_RELEASED);
410         
411         if (cmd_queue_end_state == TAP_TLR)
412                 jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
413         
414         cmd_queue_cur_state = cmd_queue_end_state;
415                 
416         for (i=0; i < jtag_num_devices; i++)
417         {
418                 int found = 0;
419                 device = jtag_get_device(i);
420                 scan_size = device->ir_length;
421                 (*last_cmd)->cmd.scan->fields[i].device = i;
422                 (*last_cmd)->cmd.scan->fields[i].num_bits = scan_size;
423                 (*last_cmd)->cmd.scan->fields[i].in_value = NULL;
424                 if (jtag_verify_capture_ir)
425                 {
426                         (*last_cmd)->cmd.scan->fields[i].in_check_value = buf_cpy(device->expected, cmd_queue_alloc(CEIL(scan_size, 8)), scan_size);
427                         (*last_cmd)->cmd.scan->fields[i].in_check_mask = buf_cpy(device->expected_mask, cmd_queue_alloc(CEIL(scan_size, 8)), scan_size);
428                 }
429                 else
430                 {
431                         (*last_cmd)->cmd.scan->fields[i].in_check_value = NULL;
432                         (*last_cmd)->cmd.scan->fields[i].in_check_mask = NULL;
433                 }
434                 (*last_cmd)->cmd.scan->fields[i].in_handler = NULL;
435                 (*last_cmd)->cmd.scan->fields[i].in_handler_priv = NULL;
436
437                 /* search the list */
438                 for (j=0; j < num_fields; j++)
439                 {
440                         if (i == fields[j].device)
441                         {
442                                 found = 1;
443                                 (*last_cmd)->cmd.scan->fields[i].out_value = buf_cpy(fields[j].out_value, cmd_queue_alloc(CEIL(scan_size, 8)), scan_size);
444                                 (*last_cmd)->cmd.scan->fields[i].out_mask = buf_cpy(fields[j].out_mask, cmd_queue_alloc(CEIL(scan_size, 8)), scan_size);
445                                 
446                                 device->bypass = 0;
447                                 break;
448                         }
449                 }
450         
451                 if (!found)
452                 {
453                         /* if a device isn't listed, set it to BYPASS */
454                         (*last_cmd)->cmd.scan->fields[i].out_value = buf_set_ones(cmd_queue_alloc(CEIL(scan_size, 8)), scan_size);
455                         (*last_cmd)->cmd.scan->fields[i].out_mask = NULL;
456                         device->bypass = 1;
457                 
458                 }
459                 
460                 /* update device information */
461                 buf_cpy((*last_cmd)->cmd.scan->fields[i].out_value, jtag_get_device(i)->cur_instr, scan_size);
462         }
463         
464         return ERROR_OK;
465 }
466
467 int jtag_add_plain_ir_scan(int num_fields, scan_field_t *fields, enum tap_state state, error_handler_t *error_handler)
468 {
469         jtag_command_t **last_cmd;
470         int i;
471
472         if (jtag_trst == 1)
473         {
474                 WARNING("JTAG command queued, while TRST is low (TAP in reset)");
475                 return ERROR_JTAG_TRST_ASSERTED;
476         }
477
478         last_cmd = jtag_get_last_command_p();
479         
480         /* allocate memory for a new list member */
481         *last_cmd = cmd_queue_alloc(sizeof(jtag_command_t));
482         (*last_cmd)->next = NULL;
483         last_comand_pointer = &((*last_cmd)->next);
484         (*last_cmd)->type = JTAG_SCAN;
485
486         /* allocate memory for ir scan command */
487         (*last_cmd)->cmd.scan = cmd_queue_alloc(sizeof(scan_command_t));
488         (*last_cmd)->cmd.scan->ir_scan = 1;
489         (*last_cmd)->cmd.scan->num_fields = num_fields;
490         (*last_cmd)->cmd.scan->fields = cmd_queue_alloc(num_fields * sizeof(scan_field_t));
491         (*last_cmd)->cmd.scan->end_state = state;
492         if (error_handler)
493         {
494                 (*last_cmd)->cmd.scan->error_handler = cmd_queue_alloc(sizeof(error_handler_t));
495                 *(*last_cmd)->cmd.scan->error_handler = *error_handler;
496         }
497         else
498         {
499                 (*last_cmd)->cmd.scan->error_handler = NULL;
500         }
501
502         if (state != -1)
503                 cmd_queue_end_state = state;
504
505         if (cmd_queue_cur_state == TAP_TLR && cmd_queue_end_state != TAP_TLR)
506                 jtag_call_event_callbacks(JTAG_TRST_RELEASED);
507         
508         if (cmd_queue_end_state == TAP_TLR)
509                 jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
510                 
511         cmd_queue_cur_state = cmd_queue_end_state;
512         
513         for (i = 0; i < num_fields; i++)
514         {
515                 int num_bits = fields[i].num_bits;
516                 int num_bytes = CEIL(fields[i].num_bits, 8);
517                 (*last_cmd)->cmd.scan->fields[i].device = fields[i].device;
518                 (*last_cmd)->cmd.scan->fields[i].num_bits = num_bits;
519                 (*last_cmd)->cmd.scan->fields[i].out_value = buf_cpy(fields[i].out_value, cmd_queue_alloc(num_bytes), num_bits);
520                 (*last_cmd)->cmd.scan->fields[i].out_mask = buf_cpy(fields[i].out_mask, cmd_queue_alloc(num_bytes), num_bits);
521                 (*last_cmd)->cmd.scan->fields[i].in_value = fields[i].in_value;
522                 (*last_cmd)->cmd.scan->fields[i].in_check_value = buf_cpy(fields[i].in_check_value, cmd_queue_alloc(num_bytes), num_bits);
523                 (*last_cmd)->cmd.scan->fields[i].in_check_mask = buf_cpy(fields[i].in_check_mask, cmd_queue_alloc(num_bytes), num_bits);
524                 (*last_cmd)->cmd.scan->fields[i].in_handler = NULL;
525                 (*last_cmd)->cmd.scan->fields[i].in_handler_priv = NULL;
526         }
527         return ERROR_OK;
528 }
529
530 int jtag_add_dr_scan(int num_fields, scan_field_t *fields, enum tap_state state, error_handler_t *error_handler)
531 {
532         int i, j;
533         int bypass_devices = 0;
534         int field_count = 0;
535         jtag_command_t **last_cmd = jtag_get_last_command_p();
536         jtag_device_t *device = jtag_devices;
537         int scan_size;
538
539         if (jtag_trst == 1)
540         {
541                 WARNING("JTAG command queued, while TRST is low (TAP in reset)");
542                 return ERROR_JTAG_TRST_ASSERTED;
543         }
544
545         /* count devices in bypass */
546         while (device)
547         {
548                 if (device->bypass)
549                         bypass_devices++;
550                 device = device->next;
551         }
552         
553         /* allocate memory for a new list member */
554         *last_cmd = cmd_queue_alloc(sizeof(jtag_command_t));
555         last_comand_pointer = &((*last_cmd)->next);
556         (*last_cmd)->next = NULL;
557         (*last_cmd)->type = JTAG_SCAN;
558
559         /* allocate memory for dr scan command */
560         (*last_cmd)->cmd.scan = cmd_queue_alloc(sizeof(scan_command_t));
561         (*last_cmd)->cmd.scan->ir_scan = 0;
562         (*last_cmd)->cmd.scan->num_fields = num_fields + bypass_devices;
563         (*last_cmd)->cmd.scan->fields = cmd_queue_alloc((num_fields + bypass_devices) * sizeof(scan_field_t));
564         (*last_cmd)->cmd.scan->end_state = state;
565         if (error_handler)
566         {
567                 (*last_cmd)->cmd.scan->error_handler = cmd_queue_alloc(sizeof(error_handler_t));
568                 *(*last_cmd)->cmd.scan->error_handler = *error_handler;
569         }
570         else
571         {
572                 (*last_cmd)->cmd.scan->error_handler = NULL;
573         }
574         
575         if (state != -1)
576                 cmd_queue_end_state = state;
577
578         if (cmd_queue_cur_state == TAP_TLR && cmd_queue_end_state != TAP_TLR)
579                 jtag_call_event_callbacks(JTAG_TRST_RELEASED);
580         
581         if (cmd_queue_end_state == TAP_TLR)
582                 jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
583                         
584         cmd_queue_cur_state = cmd_queue_end_state;
585         
586         for (i=0; i < jtag_num_devices; i++)
587         {
588                 int found = 0;
589                 (*last_cmd)->cmd.scan->fields[field_count].device = i;
590         
591                 for (j=0; j < num_fields; j++)
592                 {
593                         if (i == fields[j].device)
594                         {
595                                 found = 1;
596                                 scan_size = fields[j].num_bits;
597                                 (*last_cmd)->cmd.scan->fields[field_count].num_bits = scan_size;
598                                 (*last_cmd)->cmd.scan->fields[field_count].out_value = buf_cpy(fields[j].out_value, cmd_queue_alloc(CEIL(scan_size, 8)), scan_size);
599                                 (*last_cmd)->cmd.scan->fields[field_count].out_mask = buf_cpy(fields[j].out_mask, cmd_queue_alloc(CEIL(scan_size, 8)), scan_size);
600                                 (*last_cmd)->cmd.scan->fields[field_count].in_value = fields[j].in_value;
601                                 (*last_cmd)->cmd.scan->fields[field_count].in_check_value = buf_cpy(fields[j].in_check_value, cmd_queue_alloc(CEIL(scan_size, 8)), scan_size);
602                                 (*last_cmd)->cmd.scan->fields[field_count].in_check_mask = buf_cpy(fields[j].in_check_mask, cmd_queue_alloc(CEIL(scan_size, 8)), scan_size);
603                                 (*last_cmd)->cmd.scan->fields[field_count].in_handler = fields[j].in_handler;
604                                 (*last_cmd)->cmd.scan->fields[field_count++].in_handler_priv = fields[j].in_handler_priv;
605                         }
606                 }
607                 if (!found)
608                 {
609                         /* if a device isn't listed, the BYPASS register should be selected */
610                         if (!jtag_get_device(i)->bypass)
611                         {
612                                 ERROR("BUG: no scan data for a device not in BYPASS");
613                                 exit(-1);
614                         }
615         
616                         /* program the scan field to 1 bit length, and ignore it's value */
617                         (*last_cmd)->cmd.scan->fields[field_count].num_bits = 1;
618                         (*last_cmd)->cmd.scan->fields[field_count].out_value = NULL;
619                         (*last_cmd)->cmd.scan->fields[field_count].out_mask = NULL;
620                         (*last_cmd)->cmd.scan->fields[field_count].in_value = NULL;
621                         (*last_cmd)->cmd.scan->fields[field_count].in_check_value = NULL;
622                         (*last_cmd)->cmd.scan->fields[field_count].in_check_mask = NULL;
623                         (*last_cmd)->cmd.scan->fields[field_count].in_handler = NULL;
624                         (*last_cmd)->cmd.scan->fields[field_count++].in_handler_priv = NULL;
625                 }
626                 else
627                 {
628                         /* if a device is listed, the BYPASS register must not be selected */
629                         if (jtag_get_device(i)->bypass)
630                         {
631                                 WARNING("scan data for a device in BYPASS");
632                         }
633                 }
634         }
635         return ERROR_OK;
636 }
637
638 int jtag_add_plain_dr_scan(int num_fields, scan_field_t *fields, enum tap_state state, error_handler_t *error_handler)
639 {
640         int i;
641         jtag_command_t **last_cmd = jtag_get_last_command_p();
642         
643         if (jtag_trst == 1)
644         {
645                 WARNING("JTAG command queued, while TRST is low (TAP in reset)");
646                 return ERROR_JTAG_TRST_ASSERTED;
647         }
648
649         /* allocate memory for a new list member */
650         *last_cmd = cmd_queue_alloc(sizeof(jtag_command_t));
651         last_comand_pointer = &((*last_cmd)->next);
652         (*last_cmd)->next = NULL;
653         (*last_cmd)->type = JTAG_SCAN;
654
655         /* allocate memory for scan command */
656         (*last_cmd)->cmd.scan = cmd_queue_alloc(sizeof(scan_command_t));
657         (*last_cmd)->cmd.scan->ir_scan = 0;
658         (*last_cmd)->cmd.scan->num_fields = num_fields;
659         (*last_cmd)->cmd.scan->fields = cmd_queue_alloc(num_fields * sizeof(scan_field_t));
660         (*last_cmd)->cmd.scan->end_state = state;
661         if (error_handler)
662         {
663                 (*last_cmd)->cmd.scan->error_handler = cmd_queue_alloc(sizeof(error_handler_t));
664                 *(*last_cmd)->cmd.scan->error_handler = *error_handler;
665         }
666         else
667         {
668                 (*last_cmd)->cmd.scan->error_handler = NULL;
669         }
670                 
671         if (state != -1)
672                 cmd_queue_end_state = state;
673
674         if (cmd_queue_cur_state == TAP_TLR && cmd_queue_end_state != TAP_TLR)
675                 jtag_call_event_callbacks(JTAG_TRST_RELEASED);
676         
677         if (cmd_queue_end_state == TAP_TLR)
678                 jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
679                         
680         cmd_queue_cur_state = cmd_queue_end_state;
681         
682         for (i = 0; i < num_fields; i++)
683         {
684                 int num_bits = fields[i].num_bits;
685                 int num_bytes = CEIL(fields[i].num_bits, 8);
686                 (*last_cmd)->cmd.scan->fields[i].device = fields[i].device;
687                 (*last_cmd)->cmd.scan->fields[i].num_bits = num_bits;
688                 (*last_cmd)->cmd.scan->fields[i].out_value = buf_cpy(fields[i].out_value, cmd_queue_alloc(num_bytes), num_bits);
689                 (*last_cmd)->cmd.scan->fields[i].out_mask = buf_cpy(fields[i].out_mask, cmd_queue_alloc(num_bytes), num_bits);
690                 (*last_cmd)->cmd.scan->fields[i].in_value = fields[i].in_value;
691                 (*last_cmd)->cmd.scan->fields[i].in_check_value = buf_cpy(fields[i].in_check_value, cmd_queue_alloc(num_bytes), num_bits);
692                 (*last_cmd)->cmd.scan->fields[i].in_check_mask = buf_cpy(fields[i].in_check_mask, cmd_queue_alloc(num_bytes), num_bits);
693                 (*last_cmd)->cmd.scan->fields[i].in_handler = fields[i].in_handler;
694                 (*last_cmd)->cmd.scan->fields[i].in_handler_priv = fields[i].in_handler_priv;
695         }
696
697         return ERROR_OK;
698 }
699 int jtag_add_statemove(enum tap_state state)
700 {
701         jtag_command_t **last_cmd = jtag_get_last_command_p();
702         
703         if (jtag_trst == 1)
704         {
705                 WARNING("JTAG command queued, while TRST is low (TAP in reset)");
706                 return ERROR_JTAG_TRST_ASSERTED;
707         }
708
709         /* allocate memory for a new list member */
710         *last_cmd = cmd_queue_alloc(sizeof(jtag_command_t));
711         last_comand_pointer = &((*last_cmd)->next);
712         (*last_cmd)->next = NULL;
713         (*last_cmd)->type = JTAG_STATEMOVE;
714
715         (*last_cmd)->cmd.statemove = cmd_queue_alloc(sizeof(statemove_command_t));
716         (*last_cmd)->cmd.statemove->end_state = state;
717         
718         if (state != -1)
719                 cmd_queue_end_state = state;
720
721         if (cmd_queue_cur_state == TAP_TLR && cmd_queue_end_state != TAP_TLR)
722                 jtag_call_event_callbacks(JTAG_TRST_RELEASED);
723         
724         if (cmd_queue_end_state == TAP_TLR)
725                 jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
726                         
727         cmd_queue_cur_state = cmd_queue_end_state;
728         
729         return ERROR_OK;
730 }
731
732 int jtag_add_pathmove(int num_states, enum tap_state *path)
733 {
734         jtag_command_t **last_cmd = jtag_get_last_command_p();
735         int i;
736         
737         if (jtag_trst == 1)
738         {
739                 WARNING("JTAG command queued, while TRST is low (TAP in reset)");
740                 return ERROR_JTAG_TRST_ASSERTED;
741         }
742         
743         /* the last state has to be a stable state */
744         if (tap_move_map[path[num_states - 1]] == -1)
745         {
746                 ERROR("TAP path doesn't finish in a stable state");
747                 return ERROR_JTAG_NOT_IMPLEMENTED;
748         }
749         
750         if (jtag->support_pathmove)
751         {
752                 /* allocate memory for a new list member */
753                 *last_cmd = cmd_queue_alloc(sizeof(jtag_command_t));
754                 last_comand_pointer = &((*last_cmd)->next);
755                 (*last_cmd)->next = NULL;
756                 (*last_cmd)->type = JTAG_PATHMOVE;
757         
758                 (*last_cmd)->cmd.pathmove = cmd_queue_alloc(sizeof(pathmove_command_t));
759                 (*last_cmd)->cmd.pathmove->num_states = num_states;
760                 (*last_cmd)->cmd.pathmove->path = cmd_queue_alloc(sizeof(enum tap_state) * num_states);
761                 
762                 for (i = 0; i < num_states; i++)
763                         (*last_cmd)->cmd.pathmove->path[i] = path[i];
764         }
765         else
766         {
767                 /* validate the desired path, and see if it fits a default path */
768                 int begin = 0;
769                 int end = 0;
770                 int j;
771                 
772                 for (i = 0; i < num_states; i++)
773                 {
774                         for (j = i; j < num_states; j++)
775                         {
776                                 if (tap_move_map[path[j]] != -1)
777                                 {       
778                                         end = j;
779                                         break;
780                                 }
781                         }
782                         
783                         if (begin - end <= 7)   /* a default path spans no more than 7 states */
784                         {
785                                 jtag_add_statemove(path[end]);
786                         }
787                         else
788                         {
789                                 ERROR("encountered a TAP path that can't be fulfilled by default paths");       
790                                 return ERROR_JTAG_NOT_IMPLEMENTED;
791                         }
792                         
793                         i = end;
794                 }
795         }
796
797         if (cmd_queue_cur_state == TAP_TLR && cmd_queue_end_state != TAP_TLR)
798                 jtag_call_event_callbacks(JTAG_TRST_RELEASED);
799         
800         if (cmd_queue_end_state == TAP_TLR)
801                 jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
802         
803         cmd_queue_cur_state = path[num_states - 1];
804         
805         return ERROR_OK;
806 }
807
808 int jtag_add_runtest(int num_cycles, enum tap_state state)
809 {
810         jtag_command_t **last_cmd = jtag_get_last_command_p();
811         
812         if (jtag_trst == 1)
813         {
814                 WARNING("JTAG command queued, while TRST is low (TAP in reset)");
815                 return ERROR_JTAG_TRST_ASSERTED;
816         }
817
818         /* allocate memory for a new list member */
819         *last_cmd = cmd_queue_alloc(sizeof(jtag_command_t));
820         (*last_cmd)->next = NULL;
821         last_comand_pointer = &((*last_cmd)->next);
822         (*last_cmd)->type = JTAG_RUNTEST;
823
824         (*last_cmd)->cmd.runtest = cmd_queue_alloc(sizeof(runtest_command_t));
825         (*last_cmd)->cmd.runtest->num_cycles = num_cycles;
826         (*last_cmd)->cmd.runtest->end_state = state;
827         
828         if (state != -1)
829                 cmd_queue_end_state = state;
830
831         if (cmd_queue_cur_state == TAP_TLR && cmd_queue_end_state != TAP_TLR)
832                 jtag_call_event_callbacks(JTAG_TRST_RELEASED);
833         
834         if (cmd_queue_end_state == TAP_TLR)
835                 jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
836                         
837         cmd_queue_cur_state = cmd_queue_end_state;
838         
839         return ERROR_OK;
840 }
841
842 int jtag_add_reset(int req_trst, int req_srst)
843 {
844         int trst_with_tms = 0;
845         
846         jtag_command_t **last_cmd = jtag_get_last_command_p();
847         
848         if (req_trst == -1)
849                 req_trst = jtag_trst;
850         
851         if (req_srst == -1)
852                 req_srst = jtag_srst;
853
854         /* Make sure that jtag_reset_config allows the requested reset */
855         /* if SRST pulls TRST, we can't fulfill srst == 1 with trst == 0 */
856         if (((jtag_reset_config & RESET_SRST_PULLS_TRST) && (req_srst == 1)) && (req_trst == 0))
857                 return ERROR_JTAG_RESET_WOULD_ASSERT_TRST;
858                 
859         /* if TRST pulls SRST, we reset with TAP T-L-R */
860         if (((jtag_reset_config & RESET_TRST_PULLS_SRST) && (req_trst == 1)) && (req_srst == 0))
861         {
862                 req_trst = 0;
863                 trst_with_tms = 1;
864         }
865         
866         if (req_srst && !(jtag_reset_config & RESET_HAS_SRST))
867         {
868                 ERROR("requested nSRST assertion, but the current configuration doesn't support this");
869                 return ERROR_JTAG_RESET_CANT_SRST;
870         }
871         
872         if (req_trst && !(jtag_reset_config & RESET_HAS_TRST))
873         {
874                 req_trst = 0;
875                 trst_with_tms = 1;
876         }
877         
878         /* allocate memory for a new list member */
879         *last_cmd = cmd_queue_alloc(sizeof(jtag_command_t));
880         (*last_cmd)->next = NULL;
881         last_comand_pointer = &((*last_cmd)->next);
882         (*last_cmd)->type = JTAG_RESET;
883
884         (*last_cmd)->cmd.reset = cmd_queue_alloc(sizeof(reset_command_t));
885         (*last_cmd)->cmd.reset->trst = req_trst;
886         (*last_cmd)->cmd.reset->srst = req_srst;
887
888         jtag_trst = req_trst;
889         jtag_srst = req_srst;
890
891         if (jtag_srst)
892         {
893                 jtag_call_event_callbacks(JTAG_SRST_ASSERTED);
894         }
895         else
896         {
897                 jtag_call_event_callbacks(JTAG_SRST_RELEASED);
898                 if (jtag_nsrst_delay)
899                         jtag_add_sleep(jtag_nsrst_delay * 1000);
900         }
901         
902         if (trst_with_tms)
903         {
904                 last_cmd = &((*last_cmd)->next);
905                 
906                 /* allocate memory for a new list member */
907                 *last_cmd = cmd_queue_alloc(sizeof(jtag_command_t));
908                 (*last_cmd)->next = NULL;
909                 last_comand_pointer = &((*last_cmd)->next);
910                 (*last_cmd)->type = JTAG_STATEMOVE;
911
912                 (*last_cmd)->cmd.statemove = cmd_queue_alloc(sizeof(statemove_command_t));
913                 (*last_cmd)->cmd.statemove->end_state = TAP_TLR;
914                 
915                 jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
916                 cmd_queue_cur_state = TAP_TLR;
917                 cmd_queue_end_state = TAP_TLR;
918                 
919                 return ERROR_OK;
920         }
921         else
922         {
923                 if (jtag_trst)
924                 {
925                         /* we just asserted nTRST, so we're now in Test-Logic-Reset,
926                          * and inform possible listeners about this
927                          */
928                         cmd_queue_cur_state = TAP_TLR;
929                         jtag_call_event_callbacks(JTAG_TRST_ASSERTED);
930                 }
931                 else
932                 {
933                         /* the nTRST line got deasserted, so we're still in Test-Logic-Reset,
934                          * but we might want to add a delay to give the TAP time to settle
935                          */
936                         if (jtag_ntrst_delay)
937                                 jtag_add_sleep(jtag_ntrst_delay * 1000);
938                 }
939         }
940
941         return ERROR_OK;
942 }
943
944 int jtag_add_end_state(enum tap_state state)
945 {
946         jtag_command_t **last_cmd = jtag_get_last_command_p();
947         
948         /* allocate memory for a new list member */
949         *last_cmd = cmd_queue_alloc(sizeof(jtag_command_t));
950         (*last_cmd)->next = NULL;
951         last_comand_pointer = &((*last_cmd)->next);
952         (*last_cmd)->type = JTAG_END_STATE;
953
954         (*last_cmd)->cmd.end_state = cmd_queue_alloc(sizeof(end_state_command_t));
955         (*last_cmd)->cmd.end_state->end_state = state;
956
957         if (state != -1)
958                 cmd_queue_end_state = state;
959         
960         return ERROR_OK;
961 }
962
963 int jtag_add_sleep(u32 us)
964 {
965         jtag_command_t **last_cmd = jtag_get_last_command_p();
966         
967         /* allocate memory for a new list member */
968         *last_cmd = cmd_queue_alloc(sizeof(jtag_command_t));
969         (*last_cmd)->next = NULL;
970         last_comand_pointer = &((*last_cmd)->next);
971         (*last_cmd)->type = JTAG_SLEEP;
972
973         (*last_cmd)->cmd.sleep = cmd_queue_alloc(sizeof(sleep_command_t));
974         (*last_cmd)->cmd.sleep->us = us;
975         
976         return ERROR_OK;
977 }
978
979 int jtag_scan_size(scan_command_t *cmd)
980 {
981         int bit_count = 0;
982         int i;
983
984         /* count bits in scan command */
985         for (i=0; i<cmd->num_fields; i++)
986         {
987                 bit_count += cmd->fields[i].num_bits;
988         }
989
990         return bit_count;
991 }
992
993 int jtag_build_buffer(scan_command_t *cmd, u8 **buffer)
994 {
995         int bit_count = 0;
996         int i;
997         
998         bit_count = jtag_scan_size(cmd);
999         *buffer = malloc(CEIL(bit_count, 8));
1000         
1001         bit_count = 0;
1002
1003         for (i = 0; i < cmd->num_fields; i++)
1004         {
1005                 if (cmd->fields[i].out_value)
1006                 {
1007 #ifdef _DEBUG_JTAG_IO_
1008                         char* char_buf = buf_to_str(cmd->fields[i].out_value, (cmd->fields[i].num_bits > 64) ? 64 : cmd->fields[i].num_bits, 16);
1009 #endif
1010                         buf_set_buf(cmd->fields[i].out_value, 0, *buffer, bit_count, cmd->fields[i].num_bits);
1011 #ifdef _DEBUG_JTAG_IO_
1012                         DEBUG("fields[%i].out_value: 0x%s", i, char_buf);
1013                         free(char_buf);
1014 #endif
1015                 }
1016                 
1017                 bit_count += cmd->fields[i].num_bits;
1018         }
1019
1020         return bit_count;
1021
1022 }
1023
1024 int jtag_read_buffer(u8 *buffer, scan_command_t *cmd)
1025 {
1026         int i;
1027         int bit_count = 0;
1028         int retval;
1029         
1030         /* we return ERROR_OK, unless a check fails, or a handler reports a problem */
1031         retval = ERROR_OK;
1032         
1033         for (i=0; i < cmd->num_fields; i++)
1034         {
1035                 /* if neither in_value, in_check_value nor in_handler
1036                  * are specified we don't have to examine this field
1037                  */
1038                 if (cmd->fields[i].in_value || cmd->fields[i].in_check_value || cmd->fields[i].in_handler)
1039                 {
1040                         int num_bits = cmd->fields[i].num_bits;
1041                         u8 *captured = buf_set_buf(buffer, bit_count, malloc(CEIL(num_bits, 8)), 0, num_bits);
1042                         
1043                         #ifdef _DEBUG_JTAG_IO_
1044                                 char *char_buf;
1045
1046                                 char_buf = buf_to_str(captured, (num_bits > 64) ? 64 : num_bits, 16);
1047                                 DEBUG("fields[%i].in_value: 0x%s", i, char_buf);
1048                                 free(char_buf);
1049                         #endif
1050                         
1051                         if (cmd->fields[i].in_value)
1052                         {
1053                                 buf_cpy(captured, cmd->fields[i].in_value, num_bits);
1054                                 
1055                                 if (cmd->fields[i].in_handler)
1056                                 {
1057                                         if (cmd->fields[i].in_handler(cmd->fields[i].in_value, cmd->fields[i].in_handler_priv) != ERROR_OK)
1058                                         {
1059                                                 WARNING("in_handler reported a failed check");
1060                                                 retval = ERROR_JTAG_QUEUE_FAILED;
1061                                         }
1062                                 }
1063                         }
1064                         
1065                         /* no in_value specified, but a handler takes care of the scanned data */
1066                         if (cmd->fields[i].in_handler && (!cmd->fields[i].in_value))
1067                         {
1068                                 if (cmd->fields[i].in_handler(captured, cmd->fields[i].in_handler_priv) != ERROR_OK)
1069                                 {
1070                                         /* We're going to call the error:handler later, but if the in_handler
1071                                          * reported an error we report this failure upstream
1072                                          */
1073                                         WARNING("in_handler reported a failed check");
1074                                         retval = ERROR_JTAG_QUEUE_FAILED;
1075                                 }
1076                         }
1077
1078                         if (cmd->fields[i].in_check_value)
1079                         {
1080                                 int compare_failed = 0;
1081                                 
1082                                 if (cmd->fields[i].in_check_mask)
1083                                         compare_failed = buf_cmp_mask(captured, cmd->fields[i].in_check_value, cmd->fields[i].in_check_mask, num_bits);
1084                                 else
1085                                         compare_failed = buf_cmp(captured, cmd->fields[i].in_check_value, num_bits);
1086                                 
1087                                 if (compare_failed)
1088                                 {
1089                                         char *captured_char = buf_to_str(captured, (num_bits > 64) ? 64 : num_bits, 16);
1090                                         char *in_check_value_char = buf_to_str(cmd->fields[i].in_check_value, (num_bits > 64) ? 64 : num_bits, 16);
1091
1092                                         if (cmd->error_handler)
1093                                         {
1094                                                 /* ask the error handler if once has been specified if this is a real problem */ 
1095                                                 if (cmd->error_handler->error_handler(captured, cmd->error_handler->error_handler_priv) != ERROR_OK)
1096                                                         retval = ERROR_JTAG_QUEUE_FAILED;
1097                                                 else
1098                                                         compare_failed = 0;
1099                                         }
1100                                         else
1101                                         {
1102                                                 /* if there wasn't a handler specified, we report a failure */
1103                                                 retval = ERROR_JTAG_QUEUE_FAILED;
1104                                         }
1105                                         
1106                                         /* An error handler could have caught the failing check
1107                                          * only report a problem when there wasn't a handler, or if the handler
1108                                          * acknowledged the error
1109                                          */ 
1110                                         if (compare_failed)
1111                                         {
1112                                                 if (cmd->fields[i].in_check_mask)
1113                                                 {
1114                                                         char *in_check_mask_char;
1115                                                         in_check_mask_char = buf_to_str(cmd->fields[i].in_check_mask, (num_bits > 64) ? 64 : num_bits, 16);
1116                                                         WARNING("value captured during scan didn't pass the requested check: captured: 0x%s check_value: 0x%s check_mask: 0x%s", captured_char, in_check_value_char, in_check_mask_char);
1117                                                         free(in_check_mask_char);
1118                                                 }
1119                                                 else
1120                                                 {
1121                                                         WARNING("value captured during scan didn't pass the requested check: captured: 0x%s check_value: 0x%s", captured_char, in_check_value_char);
1122                                                 }
1123                                         }
1124                                         
1125                                         free(captured_char);
1126                                         free(in_check_value_char);
1127                                 }
1128                         }
1129                         free(captured);
1130                 }
1131                 bit_count += cmd->fields[i].num_bits;
1132         }
1133
1134         return retval;
1135 }
1136
1137 enum scan_type jtag_scan_type(scan_command_t *cmd)
1138 {
1139         int i;
1140         int type = 0;
1141         
1142         for (i=0; i < cmd->num_fields; i++)
1143         {
1144                 if (cmd->fields[i].in_check_value || cmd->fields[i].in_value || cmd->fields[i].in_handler)
1145                         type |= SCAN_IN;
1146                 if (cmd->fields[i].out_value)
1147                         type |= SCAN_OUT;
1148         }
1149
1150         return type;
1151 }
1152
1153 int jtag_execute_queue(void)
1154 {
1155         int retval;
1156
1157         retval = jtag->execute_queue();
1158         
1159         cmd_queue_free();
1160
1161         jtag_command_queue = NULL;
1162         last_comand_pointer = &jtag_command_queue;
1163
1164         return retval;
1165 }
1166
1167 int jtag_cancel_queue(void)
1168 {
1169         cmd_queue_free();
1170         jtag_command_queue = NULL;
1171         last_comand_pointer = &jtag_command_queue;
1172
1173         return ERROR_OK;
1174 }
1175
1176 int jtag_reset_callback(enum jtag_event event, void *priv)
1177 {
1178         jtag_device_t *device = priv;
1179
1180         DEBUG("-");
1181         
1182         if (event == JTAG_TRST_ASSERTED)
1183         {
1184                 buf_set_ones(device->cur_instr, device->ir_length);
1185                 device->bypass = 1;
1186         }
1187         
1188         return ERROR_OK;
1189 }
1190
1191 void jtag_sleep(u32 us)
1192 {
1193         usleep(us);
1194 }
1195
1196 /* Try to examine chain layout according to IEEE 1149.1 Â§12
1197  */
1198 int jtag_examine_chain()
1199 {
1200         jtag_device_t *device = jtag_devices;
1201         scan_field_t field;
1202         u8 idcode_buffer[JTAG_MAX_CHAIN_SIZE * 4];
1203         int i;
1204         int bit_count;
1205         int device_count = 0;
1206         u8 zero_check = 0x0;
1207         u8 one_check = 0xff;
1208         
1209         field.device = 0;
1210         field.num_bits = sizeof(idcode_buffer) * 8;
1211         field.out_value = idcode_buffer;
1212         field.out_mask = NULL;
1213         field.in_value = idcode_buffer;
1214         field.in_check_value = NULL;
1215         field.in_check_mask = NULL;
1216         field.in_handler = NULL;
1217         field.in_handler_priv = NULL;
1218         
1219         for (i = 0; i < JTAG_MAX_CHAIN_SIZE; i++)
1220         {
1221                 buf_set_u32(idcode_buffer, i * 32, 32, 0x000000FF);
1222         }
1223         
1224         jtag_add_plain_dr_scan(1, &field, TAP_TLR, NULL);
1225         jtag_execute_queue();
1226         
1227         for (i = 0; i < JTAG_MAX_CHAIN_SIZE * 4; i++)
1228         {
1229                 zero_check |= idcode_buffer[i];
1230                 one_check &= idcode_buffer[i];
1231         }
1232         
1233         /* if there wasn't a single non-zero bit or if all bits were one, the scan isn't valid */
1234         if ((zero_check == 0x00) || (one_check == 0xff))
1235         {
1236                 ERROR("JTAG communication failure, check connection, JTAG interface, target power etc.");
1237                 exit(-1);
1238         }
1239         
1240         for (bit_count = 0; bit_count < (JTAG_MAX_CHAIN_SIZE * 32) - 31;)
1241         {
1242                 u32 idcode = buf_get_u32(idcode_buffer, bit_count, 32);
1243                 if ((idcode & 1) == 0)
1244                 {
1245                         /* LSB must not be 0, this indicates a device in bypass */
1246                         device_count++;
1247                         
1248                         bit_count += 1;
1249                 }
1250                 else
1251                 {
1252                         u32 manufacturer;
1253                         u32 part;
1254                         u32 version;
1255                         
1256                         if (idcode == 0x000000FF)
1257                         {
1258                                 /* End of chain (invalid manufacturer ID) */
1259                                 break;
1260                         }
1261                         
1262                         if (device)
1263                         {
1264                                 device->idcode = idcode;
1265                                 device = device->next;
1266                         }
1267                         device_count++;
1268                         
1269                         manufacturer = (idcode & 0xffe) >> 1;
1270                         part = (idcode & 0xffff000) >> 12;
1271                         version = (idcode & 0xf0000000) >> 28;
1272
1273                         DEBUG("JTAG device found: 0x%8.8x (Manufacturer: 0x%3.3x, Part: 0x%4.4x, Version: 0x%1.1x", 
1274                                 idcode, manufacturer, part, version);
1275                         
1276                         bit_count += 32;
1277                 }
1278         }
1279         
1280         /* see if number of discovered devices matches configuration */
1281         if (device_count != jtag_num_devices)
1282         {
1283                 ERROR("number of discovered devices in JTAG chain (%i) doesn't match configuration (%i)", 
1284                         device_count, jtag_num_devices);
1285                 ERROR("check the config file and ensure proper JTAG communication (connections, speed, ...)");
1286                 exit(-1);
1287         }
1288         
1289         return ERROR_OK;
1290 }
1291
1292 int jtag_validate_chain()
1293 {
1294         jtag_device_t *device = jtag_devices;
1295         int total_ir_length = 0;
1296         u8 *ir_test = NULL;
1297         scan_field_t field;
1298         int chain_pos = 0;
1299         
1300         while (device)
1301         {
1302                 total_ir_length += device->ir_length;
1303                 device = device->next;
1304         }
1305         
1306         total_ir_length += 2;
1307         ir_test = malloc(CEIL(total_ir_length, 8));
1308         buf_set_ones(ir_test, total_ir_length);
1309         
1310         field.device = 0;
1311         field.num_bits = total_ir_length;
1312         field.out_value = ir_test;
1313         field.out_mask = NULL;
1314         field.in_value = ir_test;
1315         field.in_check_value = NULL;
1316         field.in_check_mask = NULL;
1317         field.in_handler = NULL;
1318         field.in_handler_priv = NULL;
1319         
1320         jtag_add_plain_ir_scan(1, &field, TAP_TLR, NULL);
1321         jtag_execute_queue();
1322         
1323         device = jtag_devices;
1324         while (device)
1325         {
1326                 if (buf_get_u32(ir_test, chain_pos, 2) != 0x1)
1327                 {
1328                         char *cbuf = buf_to_str(ir_test, total_ir_length, 16);
1329                         ERROR("Error validating JTAG scan chain, IR mismatch, scan returned 0x%s", cbuf);
1330                         free(cbuf);
1331                         exit(-1);
1332                 }
1333                 chain_pos += device->ir_length;
1334                 device = device->next;
1335         }
1336         
1337         if (buf_get_u32(ir_test, chain_pos, 2) != 0x3)
1338         {
1339                 char *cbuf = buf_to_str(ir_test, total_ir_length, 16);
1340                 ERROR("Error validating JTAG scan chain, IR mismatch, scan returned 0x%s", cbuf);
1341                 free(cbuf);
1342                 exit(-1);
1343         }
1344         
1345         free(ir_test);
1346         
1347         return ERROR_OK;
1348 }
1349
1350 int jtag_register_commands(struct command_context_s *cmd_ctx)
1351 {
1352         register_command(cmd_ctx, NULL, "interface", handle_interface_command,
1353                 COMMAND_CONFIG, NULL);
1354         register_command(cmd_ctx, NULL, "jtag_speed", handle_jtag_speed_command,
1355                 COMMAND_ANY, "set jtag speed (if supported) <speed>");
1356         register_command(cmd_ctx, NULL, "jtag_device", handle_jtag_device_command,
1357                 COMMAND_CONFIG, NULL);
1358         register_command(cmd_ctx, NULL, "reset_config", handle_reset_config_command,
1359                 COMMAND_CONFIG, NULL);
1360         register_command(cmd_ctx, NULL, "jtag_nsrst_delay", handle_jtag_nsrst_delay_command,
1361                 COMMAND_CONFIG, NULL);
1362         register_command(cmd_ctx, NULL, "jtag_ntrst_delay", handle_jtag_ntrst_delay_command,
1363                 COMMAND_CONFIG, NULL);
1364                 
1365         register_command(cmd_ctx, NULL, "scan_chain", handle_scan_chain_command,
1366                 COMMAND_EXEC, "print current scan chain configuration");
1367
1368         register_command(cmd_ctx, NULL, "endstate", handle_endstate_command,
1369                 COMMAND_EXEC, "finish JTAG operations in <tap_state>");
1370         register_command(cmd_ctx, NULL, "jtag_reset", handle_jtag_reset_command,
1371                 COMMAND_EXEC, "toggle reset lines <trst> <srst>");
1372         register_command(cmd_ctx, NULL, "runtest", handle_runtest_command,
1373                 COMMAND_EXEC, "move to Run-Test/Idle, and execute <num_cycles>");
1374         register_command(cmd_ctx, NULL, "statemove", handle_statemove_command,
1375                 COMMAND_EXEC, "move to current endstate or [tap_state]");
1376         register_command(cmd_ctx, NULL, "irscan", handle_irscan_command,
1377                 COMMAND_EXEC, "execute IR scan <device> <instr> [dev2] [instr2] ...");
1378         register_command(cmd_ctx, NULL, "drscan", handle_drscan_command,
1379                 COMMAND_EXEC, "execute DR scan <device> <var> [dev2] [var2] ...");
1380
1381         register_command(cmd_ctx, NULL, "verify_ircapture", handle_verify_ircapture_command,
1382                 COMMAND_ANY, "verify value captured during Capture-IR <enable|disable>");
1383         return ERROR_OK;
1384 }
1385
1386 int jtag_init(struct command_context_s *cmd_ctx)
1387 {
1388         int i;
1389         
1390         DEBUG("-");
1391
1392         if (jtag_speed == -1)
1393                 jtag_speed = 0;
1394         
1395         if (jtag_interface && (jtag_interface[0] != 0))
1396                 /* configuration var 'jtag_interface' is set, and not empty */
1397                 for (i = 0; jtag_interfaces[i]; i++)
1398                 {
1399                         if (strcmp(jtag_interface, jtag_interfaces[i]->name) == 0)
1400                         {
1401                                 jtag_device_t *device;
1402                                 device = jtag_devices;
1403         
1404                                 if (jtag_interfaces[i]->init() != ERROR_OK)
1405                                         return ERROR_JTAG_INIT_FAILED;
1406                                 jtag = jtag_interfaces[i];
1407
1408                                 jtag_ir_scan_size = 0;
1409                                 jtag_num_devices = 0;
1410                                 while (device != NULL)
1411                                 {
1412                                         jtag_ir_scan_size += device->ir_length;
1413                                         jtag_num_devices++;
1414                                         device = device->next;
1415                                 }
1416                                 
1417                                 jtag_add_statemove(TAP_TLR);
1418                                 jtag_execute_queue();
1419                                 
1420                                 jtag_examine_chain();
1421                                 
1422                                 jtag_validate_chain();
1423                                 
1424                                 return ERROR_OK;
1425                         }
1426                 }
1427         
1428         /* no valid interface was found (i.e. the configuration option,
1429          * didn't match one of the compiled-in interfaces
1430          */
1431         ERROR("No valid jtag interface found (%s)", jtag_interface);
1432         ERROR("compiled-in jtag interfaces:");
1433         for (i = 0; jtag_interfaces[i]; i++)
1434         {
1435                 ERROR("%i: %s", i, jtag_interfaces[i]->name);
1436         }
1437         
1438         jtag = NULL;
1439         return ERROR_JTAG_INVALID_INTERFACE;
1440 }
1441
1442 int handle_interface_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
1443 {
1444         int i;
1445         
1446         /* only if the configuration var isn't overwritten from cmdline */
1447         if (!jtag_interface)
1448         {
1449                 if (args[0] && (args[0][0] != 0))
1450                 {
1451                         for (i=0; jtag_interfaces[i]; i++)
1452                         {
1453                                 if (strcmp(args[0], jtag_interfaces[i]->name) == 0)
1454                                 {
1455                                         if (jtag_interfaces[i]->register_commands(cmd_ctx) != ERROR_OK)
1456                                                 exit(-1);
1457                                 
1458                                         jtag_interface = jtag_interfaces[i]->name;
1459                 
1460                                         return ERROR_OK;
1461                                 }
1462                         }
1463                 }
1464                 
1465                 /* remember the requested interface name, so we can complain about it later */
1466                 jtag_interface = strdup(args[0]);
1467                 DEBUG("'interface' command didn't specify a valid interface");
1468         }
1469         
1470         return ERROR_OK;
1471 }
1472
1473 int handle_jtag_device_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
1474 {
1475         jtag_device_t **last_device_p = &jtag_devices;
1476
1477         if (*last_device_p)
1478         {
1479                 while ((*last_device_p)->next)
1480                         last_device_p = &((*last_device_p)->next);
1481                 last_device_p = &((*last_device_p)->next);
1482         }
1483
1484         if (argc < 3)
1485                 return ERROR_OK;
1486
1487         *last_device_p = malloc(sizeof(jtag_device_t));
1488         (*last_device_p)->ir_length = strtoul(args[0], NULL, 0);
1489
1490         (*last_device_p)->expected = malloc((*last_device_p)->ir_length);
1491         buf_set_u32((*last_device_p)->expected, 0, (*last_device_p)->ir_length, strtoul(args[1], NULL, 0));
1492         (*last_device_p)->expected_mask = malloc((*last_device_p)->ir_length);
1493         buf_set_u32((*last_device_p)->expected_mask, 0, (*last_device_p)->ir_length, strtoul(args[2], NULL, 0));
1494
1495         (*last_device_p)->cur_instr = malloc((*last_device_p)->ir_length);
1496         (*last_device_p)->bypass = 1;
1497         buf_set_ones((*last_device_p)->cur_instr, (*last_device_p)->ir_length);
1498         
1499         (*last_device_p)->next = NULL;
1500         
1501         jtag_register_event_callback(jtag_reset_callback, (*last_device_p));
1502         
1503         jtag_num_devices++;
1504
1505         return ERROR_OK;
1506 }
1507
1508 int handle_scan_chain_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
1509 {
1510         jtag_device_t *device = jtag_devices;
1511         int device_count = 0;
1512         
1513         while (device)
1514         {
1515                 u32 expected, expected_mask, cur_instr;
1516                 expected = buf_get_u32(device->expected, 0, device->ir_length);
1517                 expected_mask = buf_get_u32(device->expected_mask, 0, device->ir_length);
1518                 cur_instr = buf_get_u32(device->cur_instr, 0, device->ir_length);
1519                 command_print(cmd_ctx, "%i: idcode: 0x%8.8x ir length %i, ir capture 0x%x, ir mask 0x%x, current instruction 0x%x", device_count, device->idcode, device->ir_length, expected, expected_mask, cur_instr);
1520                 device = device->next;
1521                 device_count++;
1522         }
1523
1524         return ERROR_OK;
1525 }
1526
1527 int handle_reset_config_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
1528 {
1529         if (argc >= 1)
1530         {
1531                 if (strcmp(args[0], "none") == 0)
1532                         jtag_reset_config = RESET_NONE;
1533                 else if (strcmp(args[0], "trst_only") == 0)
1534                         jtag_reset_config = RESET_HAS_TRST;
1535                 else if (strcmp(args[0], "srst_only") == 0)
1536                         jtag_reset_config = RESET_HAS_SRST;
1537                 else if (strcmp(args[0], "trst_and_srst") == 0)
1538                         jtag_reset_config = RESET_TRST_AND_SRST;
1539                 else
1540                 {
1541                         ERROR("invalid reset_config argument");
1542                         exit(-1);
1543                 }
1544         }
1545         
1546         if (argc >= 2)
1547         {
1548                 if (strcmp(args[1], "srst_pulls_trst") == 0)
1549                         jtag_reset_config |= RESET_SRST_PULLS_TRST;
1550                 else if (strcmp(args[1], "trst_pulls_srst") == 0)
1551                         jtag_reset_config |= RESET_TRST_PULLS_SRST;
1552                 else if (strcmp(args[1], "combined") == 0)
1553                         jtag_reset_config |= RESET_SRST_PULLS_TRST | RESET_TRST_PULLS_SRST;
1554                 else if (strcmp(args[1], "separate") == 0)
1555                         jtag_reset_config &= ~(RESET_SRST_PULLS_TRST | RESET_TRST_PULLS_SRST);
1556                 else
1557                 {
1558                         ERROR("invalid reset_config argument");
1559                         exit(-1);
1560                 }
1561         }
1562         
1563         if (argc >= 3)
1564         {
1565                 if (strcmp(args[2], "trst_open_drain") == 0)
1566                         jtag_reset_config |= RESET_TRST_OPEN_DRAIN;
1567                 else if (strcmp(args[2], "trst_push_pull") == 0)
1568                         jtag_reset_config &= ~RESET_TRST_OPEN_DRAIN;
1569                 else
1570                 {
1571                         ERROR("invalid reset_config argument");
1572                         exit(-1);
1573                 }
1574         }
1575
1576         if (argc >= 4)
1577         {
1578                 if (strcmp(args[3], "srst_push_pull") == 0)
1579                         jtag_reset_config |= RESET_SRST_PUSH_PULL;
1580                 else if (strcmp(args[3], "srst_open_drain") == 0)
1581                         jtag_reset_config &= ~RESET_SRST_PUSH_PULL;
1582                 else
1583                 {
1584                         ERROR("invalid reset_config argument");
1585                         exit(-1);
1586                 }
1587         }
1588         
1589         return ERROR_OK;
1590 }
1591
1592 int handle_jtag_nsrst_delay_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
1593 {
1594         if (argc < 1)
1595         {
1596                 ERROR("jtag_nsrst_delay <ms> command takes one required argument");
1597                 exit(-1);
1598         }
1599         else
1600         {
1601                 jtag_nsrst_delay = strtoul(args[0], NULL, 0);
1602         }
1603         
1604         return ERROR_OK;
1605 }
1606
1607 int handle_jtag_ntrst_delay_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
1608 {
1609         if (argc < 1)
1610         {
1611                 ERROR("jtag_ntrst_delay <ms> command takes one required argument");
1612                 exit(-1);
1613         }
1614         else
1615         {
1616                 jtag_ntrst_delay = strtoul(args[0], NULL, 0);
1617         }
1618         
1619         return ERROR_OK;
1620 }
1621
1622 int handle_jtag_speed_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
1623 {
1624         if (argc == 0)
1625                 command_print(cmd_ctx, "jtag_speed: %i", jtag_speed);
1626
1627         if (argc > 0)
1628         {
1629                 /* this command can be called during CONFIG, 
1630                  * in which case jtag isn't initialized */
1631                 if (jtag)
1632                         jtag->speed(strtoul(args[0], NULL, 0));
1633                 else
1634                         jtag_speed = strtoul(args[0], NULL, 0);
1635         }
1636
1637         return ERROR_OK;
1638 }
1639
1640 int handle_endstate_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
1641 {
1642         enum tap_state state;
1643
1644         if (argc < 1)
1645         {
1646                 command_print(cmd_ctx, "usage: endstate <tap_state>");
1647         }
1648         else
1649         {
1650                 for (state = 0; state < 16; state++)
1651                 {
1652                         if (strcmp(args[0], tap_state_strings[state]) == 0)
1653                         {
1654                                 jtag_add_end_state(state);
1655                                 jtag_execute_queue();
1656                         }
1657                 }
1658         }
1659         command_print(cmd_ctx, "current endstate: %s", tap_state_strings[end_state]);
1660         
1661         return ERROR_OK;
1662 }
1663
1664 int handle_jtag_reset_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
1665 {
1666         int trst = -1;
1667         int srst = -1;
1668         char *usage = "usage: jtag_reset <trst> <srst>";
1669         int retval;
1670         
1671         if (argc < 1)
1672         {
1673                 command_print(cmd_ctx, usage);
1674                 return ERROR_OK;
1675         }
1676
1677         if (args[0][0] == '1')
1678                 trst = 1;
1679         else if (args[0][0] == '0')
1680                 trst = 0;
1681         else
1682         {
1683                 command_print(cmd_ctx, usage);
1684                 return ERROR_OK;
1685         }
1686
1687         if (args[1][0] == '1')
1688                 srst = 1;
1689         else if (args[1][0] == '0')
1690                 srst = 0;
1691         else
1692         {
1693                 command_print(cmd_ctx, usage);
1694                 return ERROR_OK;
1695         }
1696
1697         if ((retval = jtag_add_reset(trst, srst)) != ERROR_OK)
1698         {
1699                 switch (retval)
1700                 {
1701                         case ERROR_JTAG_RESET_WOULD_ASSERT_TRST:
1702                                 command_print(cmd_ctx, "requested reset would assert trst\nif this is acceptable, use jtag_reset 1 %c", args[1][0]);
1703                                 break;
1704                         case ERROR_JTAG_RESET_CANT_SRST:
1705                                 command_print(cmd_ctx, "can't assert srst because the current reset_config doesn't support it");
1706                                 break;
1707                         default:
1708                                 command_print(cmd_ctx, "unknown error");
1709                 }
1710         }
1711         jtag_execute_queue();
1712
1713         return ERROR_OK;
1714 }
1715
1716 int handle_runtest_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
1717 {
1718         if (argc < 1)
1719         {
1720                 command_print(cmd_ctx, "usage: runtest <num_cycles>");
1721                 return ERROR_OK;
1722         }
1723
1724         jtag_add_runtest(strtol(args[0], NULL, 0), -1);
1725         jtag_execute_queue();
1726
1727         return ERROR_OK;
1728
1729 }
1730
1731 int handle_statemove_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
1732 {
1733         enum tap_state state;
1734
1735         state = -1;
1736         if (argc == 1)
1737         {
1738                 for (state = 0; state < 16; state++)
1739                 {
1740                         if (strcmp(args[0], tap_state_strings[state]) == 0)
1741                         {
1742                                 break;
1743                         }
1744                 }
1745         }
1746
1747         jtag_add_statemove(state);
1748         jtag_execute_queue();
1749
1750         return ERROR_OK;
1751
1752 }
1753
1754 int handle_irscan_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
1755 {
1756         int i;
1757         scan_field_t *fields;
1758         
1759         if ((argc < 2) || (argc % 2))
1760         {
1761                 command_print(cmd_ctx, "usage: irscan <device> <instr> [dev2] [instr2] ...");
1762                 return ERROR_OK;
1763         }
1764
1765         fields = malloc(sizeof(scan_field_t) * argc / 2);
1766         
1767         for (i = 0; i < argc / 2; i++)
1768         {
1769                 int device = strtoul(args[i*2], NULL, 0);
1770                 int field_size = jtag_get_device(device)->ir_length;
1771                 fields[i].device = device;
1772                 fields[i].out_value = malloc(CEIL(field_size, 8));
1773                 buf_set_u32(fields[i].out_value, 0, field_size, strtoul(args[i*2+1], NULL, 0));
1774                 fields[i].out_mask = NULL;
1775                 fields[i].in_value = NULL;
1776                 fields[i].in_check_mask = NULL;
1777                 fields[i].in_handler = NULL;
1778                 fields[i].in_handler_priv = NULL;
1779         }
1780
1781         jtag_add_ir_scan(argc / 2, fields, -1, NULL);
1782         jtag_execute_queue();
1783
1784         for (i = 0; i < argc / 2; i++)
1785                 free(fields[i].out_value);
1786
1787         free (fields);
1788
1789         return ERROR_OK;
1790 }
1791
1792 int handle_drscan_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
1793 {
1794         scan_field_t *fields;
1795         int num_fields = 0;
1796         int field_count = 0;
1797         var_t *var;
1798         int i, j;
1799         
1800         if ((argc < 2) || (argc % 2))
1801         {
1802                 command_print(cmd_ctx, "usage: drscan <device> <var> [dev2] [var2]");
1803                 return ERROR_OK;
1804         }
1805
1806         for (i = 0; i < argc; i+=2)
1807         {
1808                 var = get_var_by_namenum(args[i+1]);
1809                 if (var)
1810                 {
1811                         num_fields += var->num_fields;
1812                 }
1813                 else
1814                 {
1815                         command_print(cmd_ctx, "variable %s doesn't exist", args[i+1]);
1816                         return ERROR_OK;
1817                 }
1818         }
1819
1820         fields = malloc(sizeof(scan_field_t) * num_fields);
1821
1822         for (i = 0; i < argc; i+=2)
1823         {
1824                 var = get_var_by_namenum(args[i+1]);
1825         
1826                 for (j = 0; j < var->num_fields; j++)
1827                 {
1828                         fields[field_count].device = strtol(args[i], NULL, 0);
1829                         fields[field_count].num_bits = var->fields[j].num_bits;
1830                         fields[field_count].out_value = malloc(CEIL(var->fields[j].num_bits, 8));
1831                         buf_set_u32(fields[field_count].out_value, 0, var->fields[j].num_bits, var->fields[j].value);
1832                         fields[field_count].out_mask = NULL;
1833                         fields[field_count].in_value = fields[field_count].out_value;
1834                         fields[field_count].in_check_mask = NULL;
1835                         fields[field_count].in_check_value = NULL;
1836                         fields[field_count].in_handler = field_le_to_host;
1837                         fields[field_count++].in_handler_priv = &(var->fields[j]);
1838                 }
1839         }
1840
1841         jtag_add_dr_scan(num_fields, fields, -1, NULL);
1842         jtag_execute_queue();
1843         
1844         for (i = 0; i < argc / 2; i++)
1845                 free(fields[i].out_value);
1846
1847         free(fields);
1848
1849         return ERROR_OK;
1850 }
1851
1852 int handle_verify_ircapture_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
1853 {
1854         if (argc == 0)
1855         {
1856                 command_print(cmd_ctx, "verify Capture-IR is %s", (jtag_verify_capture_ir) ? "enabled": "disabled");
1857                 return ERROR_OK;
1858         }
1859         
1860         if (strcmp(args[0], "enable") == 0)
1861         {
1862                 jtag_verify_capture_ir = 1;
1863         }
1864         else if (strcmp(args[0], "disable") == 0)
1865         {
1866                 jtag_verify_capture_ir = 0;
1867         }
1868         
1869         return ERROR_OK;
1870 }