a2755022c634675283ce2f27bf17fa619c644b88
[openocd.git] / src / jtag / jtag.h
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 * This program is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This program is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program; if not, write to the *
20 * Free Software Foundation, Inc., *
21 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
22 ***************************************************************************/
23 #ifndef JTAG_H
24 #define JTAG_H
25
26 #include "binarybuffer.h"
27 #include "log.h"
28
29
30 #ifdef _DEBUG_JTAG_IO_
31 #define DEBUG_JTAG_IO(expr ...) LOG_DEBUG(expr)
32 #else
33 #define DEBUG_JTAG_IO(expr ...)
34 #endif
35
36 #ifndef DEBUG_JTAG_IOZ
37 #define DEBUG_JTAG_IOZ 64
38 #endif
39
40 /*-----<Macros>--------------------------------------------------*/
41
42 /** When given an array, compute its DIMension, i.e. number of elements in the array */
43 #define DIM(x) (sizeof(x)/sizeof((x)[0]))
44
45 /** Calculate the number of bytes required to hold @a n TAP scan bits */
46 #define TAP_SCAN_BYTES(n) CEIL(n, 8)
47
48 /*-----</Macros>-------------------------------------------------*/
49
50
51
52 /*
53 * Tap states from ARM7TDMI-S Technical reference manual.
54 * Also, validated against several other ARM core technical manuals.
55 *
56 * N.B. tap_get_tms_path() was changed to reflect this corrected
57 * numbering and ordering of the TAP states.
58 *
59 * DANGER!!!! some interfaces care about the actual numbers used
60 * as they are handed off directly to hardware implementations.
61 */
62
63 typedef enum tap_state
64 {
65 #if BUILD_ECOSBOARD
66 /* These are the old numbers. Leave as-is for now... */
67 TAP_RESET = 0, TAP_IDLE = 8,
68 TAP_DRSELECT = 1, TAP_DRCAPTURE = 2, TAP_DRSHIFT = 3, TAP_DREXIT1 = 4,
69 TAP_DRPAUSE = 5, TAP_DREXIT2 = 6, TAP_DRUPDATE = 7,
70 TAP_IRSELECT = 9, TAP_IRCAPTURE = 10, TAP_IRSHIFT = 11, TAP_IREXIT1 = 12,
71 TAP_IRPAUSE = 13, TAP_IREXIT2 = 14, TAP_IRUPDATE = 15,
72
73 TAP_NUM_STATES = 16, TAP_INVALID = -1,
74 #else
75 /* Proper ARM recommended numbers */
76 TAP_DREXIT2 = 0x0,
77 TAP_DREXIT1 = 0x1,
78 TAP_DRSHIFT = 0x2,
79 TAP_DRPAUSE = 0x3,
80 TAP_IRSELECT = 0x4,
81 TAP_DRUPDATE = 0x5,
82 TAP_DRCAPTURE = 0x6,
83 TAP_DRSELECT = 0x7,
84 TAP_IREXIT2 = 0x8,
85 TAP_IREXIT1 = 0x9,
86 TAP_IRSHIFT = 0xa,
87 TAP_IRPAUSE = 0xb,
88 TAP_IDLE = 0xc,
89 TAP_IRUPDATE = 0xd,
90 TAP_IRCAPTURE = 0xe,
91 TAP_RESET = 0x0f,
92
93 TAP_NUM_STATES = 0x10,
94
95 TAP_INVALID = -1,
96 #endif
97 } tap_state_t;
98
99 typedef struct tap_transition_s
100 {
101 tap_state_t high;
102 tap_state_t low;
103 } tap_transition_t;
104
105 //extern tap_transition_t tap_transitions[16]; /* describe the TAP state diagram */
106
107
108
109 extern tap_state_t cmd_queue_end_state; /* finish DR scans in dr_end_state */
110 extern tap_state_t cmd_queue_cur_state; /* current TAP state */
111
112 typedef struct scan_field_s
113 {
114 jtag_tap_t* tap; /* tap pointer this instruction refers to */
115 int num_bits; /* number of bits this field specifies (up to 32) */
116 u8* out_value; /* value to be scanned into the device */
117 u8* in_value; /* pointer to a 32-bit memory location to take data scanned out */
118
119 u8* check_value; /* Used together with jtag_add_dr_scan_check() to check data clocked
120 in */
121 u8* check_mask; /* mask to go with check_value */
122
123 /* internal work space */
124 int allocated; /* in_value has been allocated for the queue */
125 int modified; /* did we modify the in_value? */
126 u8 intmp[4]; /* temporary storage for checking synchronously */
127 } scan_field_t;
128
129 #ifdef INCLUDE_JTAG_INTERFACE_H
130
131 enum scan_type {
132 /* IN: from device to host, OUT: from host to device */
133 SCAN_IN = 1, SCAN_OUT = 2, SCAN_IO = 3
134 };
135
136 typedef struct scan_command_s
137 {
138 bool ir_scan; /* instruction/not data scan */
139 int num_fields; /* number of fields in *fields array */
140 scan_field_t* fields; /* pointer to an array of data scan fields */
141 tap_state_t end_state; /* TAP state in which JTAG commands should finish */
142 } scan_command_t;
143
144 typedef struct statemove_command_s
145 {
146 tap_state_t end_state; /* TAP state in which JTAG commands should finish */
147 } statemove_command_t;
148
149 typedef struct pathmove_command_s
150 {
151 int num_states; /* number of states in *path */
152 tap_state_t* path; /* states that have to be passed */
153 } pathmove_command_t;
154
155 typedef struct runtest_command_s
156 {
157 int num_cycles; /* number of cycles that should be spent in Run-Test/Idle */
158 tap_state_t end_state; /* TAP state in which JTAG commands should finish */
159 } runtest_command_t;
160
161
162 typedef struct stableclocks_command_s
163 {
164 int num_cycles; /* number of clock cycles that should be sent */
165 } stableclocks_command_t;
166
167
168 typedef struct reset_command_s
169 {
170 int trst; /* trst/srst 0: deassert, 1: assert, -1: don't change */
171 int srst;
172 } reset_command_t;
173
174 typedef struct end_state_command_s
175 {
176 tap_state_t end_state; /* TAP state in which JTAG commands should finish */
177 } end_state_command_t;
178
179 typedef struct sleep_command_s
180 {
181 u32 us; /* number of microseconds to sleep */
182 } sleep_command_t;
183
184 typedef union jtag_command_container_u
185 {
186 scan_command_t* scan;
187 statemove_command_t* statemove;
188 pathmove_command_t* pathmove;
189 runtest_command_t* runtest;
190 stableclocks_command_t* stableclocks;
191 reset_command_t* reset;
192 end_state_command_t* end_state;
193 sleep_command_t* sleep;
194 } jtag_command_container_t;
195
196 enum jtag_command_type {
197 JTAG_SCAN = 1,
198 JTAG_STATEMOVE = 2,
199 JTAG_RUNTEST = 3,
200 JTAG_RESET = 4,
201 JTAG_PATHMOVE = 6,
202 JTAG_SLEEP = 7,
203 JTAG_STABLECLOCKS = 8
204 };
205
206 typedef struct jtag_command_s
207 {
208 jtag_command_container_t cmd;
209 enum jtag_command_type type;
210 struct jtag_command_s* next;
211 } jtag_command_t;
212
213 extern jtag_command_t* jtag_command_queue;
214
215 extern void* cmd_queue_alloc(size_t size);
216 extern void cmd_queue_free(void);
217
218 extern void jtag_queue_command(jtag_command_t *cmd);
219 extern void jtag_command_queue_reset(void);
220
221 #include "interface.h"
222
223 #endif // INCLUDE_JTAG_INTERFACE_H
224
225 /* forward declaration */
226 typedef struct jtag_tap_event_action_s jtag_tap_event_action_t;
227
228 /* this is really: typedef jtag_tap_t */
229 /* But - the typedef is done in "types.h" */
230 /* due to "forward decloration reasons" */
231 struct jtag_tap_s
232 {
233 const char* chip;
234 const char* tapname;
235 const char* dotted_name;
236 int abs_chain_position;
237 int enabled;
238 int ir_length; /* size of instruction register */
239 u32 ir_capture_value;
240 u8* expected; /* Capture-IR expected value */
241 u32 ir_capture_mask;
242 u8* expected_mask; /* Capture-IR expected mask */
243 u32 idcode; /* device identification code */
244 u32* expected_ids; /* Array of expected identification codes */
245 u8 expected_ids_cnt; /* Number of expected identification codes */
246 u8* cur_instr; /* current instruction */
247 int bypass; /* bypass register selected */
248
249 jtag_tap_event_action_t* event_action;
250
251 jtag_tap_t* next_tap;
252 };
253 extern jtag_tap_t* jtag_AllTaps(void);
254 extern jtag_tap_t* jtag_TapByPosition(int n);
255 extern jtag_tap_t* jtag_TapByString(const char* dotted_name);
256 extern jtag_tap_t* jtag_TapByJimObj(Jim_Interp* interp, Jim_Obj* obj);
257 extern jtag_tap_t* jtag_TapByAbsPosition(int abs_position);
258 extern int jtag_NumEnabledTaps(void);
259 extern int jtag_NumTotalTaps(void);
260
261 static __inline__ jtag_tap_t* jtag_NextEnabledTap(jtag_tap_t* p)
262 {
263 if (p == NULL)
264 {
265 /* start at the head of list */
266 p = jtag_AllTaps();
267 }
268 else
269 {
270 /* start *after* this one */
271 p = p->next_tap;
272 }
273 while (p)
274 {
275 if (p->enabled)
276 {
277 break;
278 }
279 else
280 {
281 p = p->next_tap;
282 }
283 }
284
285 return p;
286 }
287
288
289 enum reset_line_mode {
290 LINE_OPEN_DRAIN = 0x0,
291 LINE_PUSH_PULL = 0x1,
292 };
293
294 enum jtag_event {
295 JTAG_TRST_ASSERTED
296 };
297
298 extern char* jtag_event_strings[];
299
300 enum jtag_tap_event {
301 JTAG_TAP_EVENT_ENABLE,
302 JTAG_TAP_EVENT_DISABLE
303 };
304
305 extern const Jim_Nvp nvp_jtag_tap_event[];
306
307 struct jtag_tap_event_action_s
308 {
309 enum jtag_tap_event event;
310 Jim_Obj* body;
311 jtag_tap_event_action_t* next;
312 };
313
314 extern int jtag_trst;
315 extern int jtag_srst;
316
317 typedef struct jtag_event_callback_s
318 {
319 int (*callback)(enum jtag_event event, void* priv);
320 void* priv;
321 struct jtag_event_callback_s* next;
322 } jtag_event_callback_t;
323
324 extern jtag_event_callback_t* jtag_event_callbacks;
325
326 extern int jtag_speed;
327 extern int jtag_speed_post_reset;
328
329 enum reset_types {
330 RESET_NONE = 0x0,
331 RESET_HAS_TRST = 0x1,
332 RESET_HAS_SRST = 0x2,
333 RESET_TRST_AND_SRST = 0x3,
334 RESET_SRST_PULLS_TRST = 0x4,
335 RESET_TRST_PULLS_SRST = 0x8,
336 RESET_TRST_OPEN_DRAIN = 0x10,
337 RESET_SRST_PUSH_PULL = 0x20,
338 };
339
340 extern enum reset_types jtag_reset_config;
341
342 /* initialize interface upon startup. A successful no-op
343 * upon subsequent invocations
344 */
345 extern int jtag_interface_init(struct command_context_s* cmd_ctx);
346
347 /// Shutdown the JTAG interface upon program exit.
348 extern int jtag_interface_quit(void);
349
350 /* initialize JTAG chain using only a RESET reset. If init fails,
351 * try reset + init.
352 */
353 extern int jtag_init(struct command_context_s* cmd_ctx);
354
355 /* reset, then initialize JTAG chain */
356 extern int jtag_init_reset(struct command_context_s* cmd_ctx);
357 extern int jtag_register_commands(struct command_context_s* cmd_ctx);
358
359 /* JTAG interface, can be implemented with a software or hardware fifo
360 *
361 * TAP_DRSHIFT and TAP_IRSHIFT are illegal end states. TAP_DRSHIFT/IRSHIFT as end states
362 * can be emulated by using a larger scan.
363 *
364 * Code that is relatively insensitive to the path(as long
365 * as it is JTAG compliant) taken through state machine can use
366 * endstate for jtag_add_xxx_scan(). Otherwise the pause state must be
367 * specified as end state and a subsequent jtag_add_pathmove() must
368 * be issued.
369 *
370 */
371 extern void jtag_add_ir_scan(int num_fields, scan_field_t* fields, tap_state_t endstate);
372 /* same as jtag_add_ir_scan except no verify is performed */
373 extern void jtag_add_ir_scan_noverify(int num_fields, const scan_field_t *fields, tap_state_t state);
374 extern void jtag_add_dr_scan(int num_fields, const scan_field_t* fields, tap_state_t endstate);
375
376 /* set in_value to point to 32 bits of memory to scan into. This function
377 * is a way to handle the case of synchronous and asynchronous
378 * JTAG queues.
379 *
380 * In the event of an asynchronous queue execution the queue buffer
381 * allocation method is used, for the synchronous case the temporary 32 bits come
382 * from the input field itself.
383 */
384 extern void jtag_alloc_in_value32(scan_field_t *field);
385
386 /* This version of jtag_add_dr_scan() uses the check_value/mask fields */
387 extern void jtag_add_dr_scan_check(int num_fields, scan_field_t* fields, tap_state_t endstate);
388 extern void jtag_add_plain_ir_scan(int num_fields, const scan_field_t* fields, tap_state_t endstate);
389 extern void jtag_add_plain_dr_scan(int num_fields, const scan_field_t* fields, tap_state_t endstate);
390
391
392 /* Simplest/typical callback - do some conversion on the data clocked in.
393 * This callback is for such conversion that can not fail.
394 * For conversion types or checks that can
395 * fail, use the jtag_callback_t variant */
396 typedef void (*jtag_callback1_t)(u8 *in);
397
398 /* A simpler version of jtag_add_callback4 */
399 extern void jtag_add_callback(jtag_callback1_t, u8 *in);
400
401
402 /* This type can store an integer safely by a normal cast on 64 and
403 * 32 bit systems. */
404 typedef intptr_t jtag_callback_data_t;
405
406 /* The generic callback mechanism.
407 *
408 * The callback is invoked with three arguments. The first argument is
409 * the pointer to the data clocked in.
410 */
411 typedef int (*jtag_callback_t)(u8 *in, jtag_callback_data_t data1, jtag_callback_data_t data2, jtag_callback_data_t data3);
412
413
414 /* This callback can be executed immediately the queue has been flushed. Note that
415 * the JTAG queue can either be executed synchronously or asynchronously. Typically
416 * for USB the queue is executed asynchronously. For low latency interfaces, the
417 * queue may be executed synchronously.
418 *
419 * These callbacks are typically executed *after* the *entire* JTAG queue has been
420 * executed for e.g. USB interfaces.
421 *
422 * The callbacks are guaranteeed to be invoked in the order that they were queued.
423 *
424 * The strange name is due to C's lack of overloading using function arguments
425 *
426 * The callback mechansim is very general and does not really make any assumptions
427 * about what the callback does and what the arguments are.
428 *
429 * in - typically used to point to the data to operate on. More often than not
430 * this will be the data clocked in during a shift operation
431 *
432 * data1 - an integer that is big enough to be used either as an 'int' or
433 * cast to/from a pointer
434 *
435 * data2 - an integer that is big enough to be used either as an 'int' or
436 * cast to/from a pointer
437 *
438 * Why stop at 'data2' for arguments? Somewhat historical reasons. This is
439 * sufficient to implement the jtag_check_value_mask(), besides the
440 * line is best drawn somewhere...
441 *
442 * If the execution of the queue fails before the callbacks, then the
443 * callbacks may or may not be invoked depending on driver implementation.
444 */
445 extern void jtag_add_callback4(jtag_callback_t, u8 *in,
446 jtag_callback_data_t data1, jtag_callback_data_t data2,
447 jtag_callback_data_t data3);
448
449
450 /* run a TAP_RESET reset. End state is TAP_RESET, regardless
451 * of start state.
452 */
453 extern void jtag_add_tlr(void);
454
455 /* Application code *must* assume that interfaces will
456 * implement transitions between states with different
457 * paths and path lengths through the state diagram. The
458 * path will vary across interface and also across versions
459 * of the same interface over time. Even if the OpenOCD code
460 * is unchanged, the actual path taken may vary over time
461 * and versions of interface firmware or PCB revisions.
462 *
463 * Use jtag_add_pathmove() when specific transition sequences
464 * are required.
465 *
466 * Do not use jtag_add_pathmove() unless you need to, but do use it
467 * if you have to.
468 *
469 * DANGER! If the target is dependent upon a particular sequence
470 * of transitions for things to work correctly(e.g. as a workaround
471 * for an errata that contradicts the JTAG standard), then pathmove
472 * must be used, even if some jtag interfaces happen to use the
473 * desired path. Worse, the jtag interface used for testing a
474 * particular implementation, could happen to use the "desired"
475 * path when transitioning to/from end
476 * state.
477 *
478 * A list of unambigious single clock state transitions, not
479 * all drivers can support this, but it is required for e.g.
480 * XScale and Xilinx support
481 *
482 * Note! TAP_RESET must not be used in the path!
483 *
484 * Note that the first on the list must be reachable
485 * via a single transition from the current state.
486 *
487 * All drivers are required to implement jtag_add_pathmove().
488 * However, if the pathmove sequence can not be precisely
489 * executed, an interface_jtag_add_pathmove() or jtag_execute_queue()
490 * must return an error. It is legal, but not recommended, that
491 * a driver returns an error in all cases for a pathmove if it
492 * can only implement a few transitions and therefore
493 * a partial implementation of pathmove would have little practical
494 * application.
495 */
496 extern void jtag_add_pathmove(int num_states, const tap_state_t* path);
497
498 /* go to TAP_IDLE, if we're not already there and cycle
499 * precisely num_cycles in the TAP_IDLE after which move
500 * to the end state, if it is != TAP_IDLE
501 *
502 * nb! num_cycles can be 0, in which case the fn will navigate
503 * to endstate via TAP_IDLE
504 */
505 extern void jtag_add_runtest(int num_cycles, tap_state_t endstate);
506
507 /* A reset of the TAP state machine can be requested.
508 *
509 * Whether tms or trst reset is used depends on the capabilities of
510 * the target and jtag interface(reset_config command configures this).
511 *
512 * srst can driver a reset of the TAP state machine and vice
513 * versa
514 *
515 * Application code may need to examine value of jtag_reset_config
516 * to determine the proper codepath
517 *
518 * DANGER! Even though srst drives trst, trst might not be connected to
519 * the interface, and it might actually be *harmful* to assert trst in this case.
520 *
521 * This is why combinations such as "reset_config srst_only srst_pulls_trst"
522 * are supported.
523 *
524 * only req_tlr_or_trst and srst can have a transition for a
525 * call as the effects of transitioning both at the "same time"
526 * are undefined, but when srst_pulls_trst or vice versa,
527 * then trst & srst *must* be asserted together.
528 */
529 extern void jtag_add_reset(int req_tlr_or_trst, int srst);
530
531 extern void jtag_add_end_state(tap_state_t endstate);
532 extern void jtag_add_sleep(u32 us);
533
534
535 /**
536 * Function jtag_add_stable_clocks
537 * first checks that the state in which the clocks are to be issued is
538 * stable, then queues up clock_count clocks for transmission.
539 */
540 void jtag_add_clocks(int num_cycles);
541
542
543 /*
544 * For software FIFO implementations, the queued commands can be executed
545 * during this call or earlier. A sw queue might decide to push out
546 * some of the jtag_add_xxx() operations once the queue is "big enough".
547 *
548 * This fn will return an error code if any of the prior jtag_add_xxx()
549 * calls caused a failure, e.g. check failure. Note that it does not
550 * matter if the operation was executed *before* jtag_execute_queue(),
551 * jtag_execute_queue() will still return an error code.
552 *
553 * All jtag_add_xxx() calls that have in_handler!=NULL will have been
554 * executed when this fn returns, but if what has been queued only
555 * clocks data out, without reading anything back, then JTAG could
556 * be running *after* jtag_execute_queue() returns. The API does
557 * not define a way to flush a hw FIFO that runs *after*
558 * jtag_execute_queue() returns.
559 *
560 * jtag_add_xxx() commands can either be executed immediately or
561 * at some time between the jtag_add_xxx() fn call and jtag_execute_queue().
562 */
563 extern int jtag_execute_queue(void);
564
565 /* same as jtag_execute_queue() but does not clear the error flag */
566 extern void jtag_execute_queue_noclear(void);
567
568 /* this flag is set when an error occurs while executing the queue. cleared
569 * by jtag_execute_queue()
570 *
571 * this flag can also be set from application code if some error happens
572 * during processing that should be reported during jtag_execute_queue().
573 */
574 extern int jtag_error;
575
576 static __inline__ void jtag_set_error(int error)
577 {
578 if ((error==ERROR_OK)||(jtag_error!=ERROR_OK))
579 {
580 /* keep first error */
581 return;
582 }
583 jtag_error=error;
584 }
585
586
587
588 /* can be implemented by hw+sw */
589 extern int jtag_power_dropout(int* dropout);
590 extern int jtag_srst_asserted(int* srst_asserted);
591
592 /* JTAG support functions */
593
594 /* execute jtag queue and check value and use mask if mask is != NULL. invokes
595 * jtag_set_error() with any error. */
596 extern void jtag_check_value_mask(scan_field_t *field, u8 *value, u8 *mask);
597
598 #ifdef INCLUDE_JTAG_INTERFACE_H
599 extern enum scan_type jtag_scan_type(const scan_command_t* cmd);
600 extern int jtag_scan_size(const scan_command_t* cmd);
601 extern int jtag_read_buffer(u8* buffer, const scan_command_t* cmd);
602 extern int jtag_build_buffer(const scan_command_t* cmd, u8** buffer);
603 #endif // INCLUDE_JTAG_INTERFACE_H
604
605 extern void jtag_sleep(u32 us);
606 extern int jtag_call_event_callbacks(enum jtag_event event);
607 extern int jtag_register_event_callback(int (* callback)(enum jtag_event event, void* priv), void* priv);
608
609 extern int jtag_verify_capture_ir;
610
611 void jtag_tap_handle_event(jtag_tap_t* tap, enum jtag_tap_event e);
612
613 /* error codes
614 * JTAG subsystem uses codes between -100 and -199 */
615
616 #define ERROR_JTAG_INIT_FAILED (-100)
617 #define ERROR_JTAG_INVALID_INTERFACE (-101)
618 #define ERROR_JTAG_NOT_IMPLEMENTED (-102)
619 #define ERROR_JTAG_TRST_ASSERTED (-103)
620 #define ERROR_JTAG_QUEUE_FAILED (-104)
621 #define ERROR_JTAG_NOT_STABLE_STATE (-105)
622 #define ERROR_JTAG_DEVICE_ERROR (-107)
623
624 /* jtag_add_dr_out() is a version of jtag_add_dr_scan() which
625 * only scans data out. It operates on 32 bit integers instead
626 * of 8 bit, which makes it a better impedance match with
627 * the calling code which often operate on 32 bit integers.
628 *
629 * Current or end_state can not be TAP_RESET. end_state can be TAP_INVALID
630 *
631 * num_bits[i] is the number of bits to clock out from value[i] LSB first.
632 *
633 * If the device is in bypass, then that is an error condition in
634 * the caller code that is not detected by this fn, whereas jtag_add_dr_scan()
635 * does detect it. Similarly if the device is not in bypass, data must
636 * be passed to it.
637 *
638 * If anything fails, then jtag_error will be set and jtag_execute() will
639 * return an error. There is no way to determine if there was a failure
640 * during this function call.
641 *
642 * This is an inline fn to speed up embedded hosts. Also note that
643 * interface_jtag_add_dr_out() can be a *small* inline function for
644 * embedded hosts.
645 *
646 * There is no jtag_add_dr_outin() version of this fn that also allows
647 * clocking data back in. Patches gladly accepted!
648 */
649 extern void jtag_add_dr_out(jtag_tap_t* tap,
650 int num_fields, const int* num_bits, const u32* value,
651 tap_state_t end_state);
652
653
654 /**
655 * Function jtag_add_statemove
656 * moves from the current state to the goal \a state. This needs
657 * to be handled according to the xsvf spec, see the XSTATE command
658 * description.
659 */
660 extern int jtag_add_statemove(tap_state_t goal_state);
661
662 #endif /* JTAG_H */

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)