4d482f063227f82b0a40d7082cbb05ad1333d8aa
[openocd.git] / src / jtag / jtag.h
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 #ifndef JTAG_H
21 #define JTAG_H
22
23 #include "types.h"
24 #include "binarybuffer.h"
25 #include "log.h"
26
27 #include "command.h"
28
29 #if 0
30 #define _DEBUG_JTAG_IO_
31 #endif
32
33 /* Tap States
34 * TLR - Test-Logic-Reset, RTI - Run-Test/Idle,
35 * SDS - Select-DR-Scan, CD - Capture-DR, SD - Shift-DR, E1D - Exit1-DR,
36 * PD - Pause-DR, E2D - Exit2-DR, UD - Update-DR,
37 * SIS - Select-IR-Scan, CI - Capture-IR, SI - Shift-IR, E1I - Exit1-IR,
38 * PI - Pause-IR, E2I - Exit2-IR, UI - Update-IR
39 */
40 enum tap_state
41 {
42 TAP_TLR = 0x0, TAP_RTI = 0x8,
43 TAP_SDS = 0x1, TAP_CD = 0x2, TAP_SD = 0x3, TAP_E1D = 0x4,
44 TAP_PD = 0x5, TAP_E2D = 0x6, TAP_UD = 0x7,
45 TAP_SIS = 0x9, TAP_CI = 0xa, TAP_SI = 0xb, TAP_E1I = 0xc,
46 TAP_PI = 0xd, TAP_E2I = 0xe, TAP_UI = 0xf
47 };
48
49 typedef struct tap_transition_s
50 {
51 enum tap_state high;
52 enum tap_state low;
53 } tap_transition_t;
54
55 extern char* tap_state_strings[16];
56 extern int tap_move_map[16]; /* map 16 TAP states to 6 stable states */
57 extern u8 tap_move[6][6]; /* value scanned to TMS to move from one of six stable states to another */
58 extern tap_transition_t tap_transitions[16]; /* describe the TAP state diagram */
59
60 extern enum tap_state end_state; /* finish DR scans in dr_end_state */
61 extern enum tap_state cur_state; /* current TAP state */
62
63 extern enum tap_state cmd_queue_end_state; /* finish DR scans in dr_end_state */
64 extern enum tap_state cmd_queue_cur_state; /* current TAP state */
65
66 #define TAP_MOVE(from, to) tap_move[tap_move_map[from]][tap_move_map[to]]
67
68 typedef void * error_handler_t; /* Later on we can delete error_handler_t, but keep it for now to make patches more readable */
69
70 struct scan_field_s;
71 typedef int (*in_handler_t)(u8 *in_value, void *priv, struct scan_field_s *field);
72
73 typedef struct scan_field_s
74 {
75 int device; /* ordinal device number this instruction refers to */
76 int num_bits; /* number of bits this field specifies (up to 32) */
77 u8 *out_value; /* value to be scanned into the device */
78 u8 *out_mask; /* only masked bits care */
79 u8 *in_value; /* pointer to a 32-bit memory location to take data scanned out */
80 /* in_check_value/mask, in_handler_error_handler, in_handler_priv can be used by the in handler, otherwise they contain garbage */
81 u8 *in_check_value; /* used to validate scan results */
82 u8 *in_check_mask; /* check specified bits against check_value */
83 in_handler_t in_handler; /* process received buffer using this handler */
84 void *in_handler_priv; /* additional information for the in_handler */
85 } scan_field_t;
86
87
88 enum scan_type
89 {
90 /* IN: from device to host, OUT: from host to device */
91 SCAN_IN = 1, SCAN_OUT = 2, SCAN_IO = 3
92 };
93
94 typedef struct scan_command_s
95 {
96 int ir_scan; /* instruction/not data scan */
97 int num_fields; /* number of fields in *fields array */
98 scan_field_t *fields; /* pointer to an array of data scan fields */
99 enum tap_state end_state; /* TAP state in which JTAG commands should finish */
100 } scan_command_t;
101
102 typedef struct statemove_command_s
103 {
104 enum tap_state end_state; /* TAP state in which JTAG commands should finish */
105 } statemove_command_t;
106
107 typedef struct pathmove_command_s
108 {
109 int num_states; /* number of states in *path */
110 enum tap_state *path; /* states that have to be passed */
111 } pathmove_command_t;
112
113 typedef struct runtest_command_s
114 {
115 int num_cycles; /* number of cycles that should be spent in Run-Test/Idle */
116 enum tap_state end_state; /* TAP state in which JTAG commands should finish */
117 } runtest_command_t;
118
119 typedef struct reset_command_s
120 {
121 int trst; /* trst/srst 0: deassert, 1: assert, -1: don't change */
122 int srst;
123 } reset_command_t;
124
125 typedef struct end_state_command_s
126 {
127 enum tap_state end_state; /* TAP state in which JTAG commands should finish */
128 } end_state_command_t;
129
130 typedef struct sleep_command_s
131 {
132 u32 us; /* number of microseconds to sleep */
133 } sleep_command_t;
134
135 typedef union jtag_command_container_u
136 {
137 scan_command_t *scan;
138 statemove_command_t *statemove;
139 pathmove_command_t *pathmove;
140 runtest_command_t *runtest;
141 reset_command_t *reset;
142 end_state_command_t *end_state;
143 sleep_command_t *sleep;
144 } jtag_command_container_t;
145
146 enum jtag_command_type
147 {
148 JTAG_SCAN = 1,
149 JTAG_STATEMOVE = 2, JTAG_RUNTEST = 3,
150 JTAG_RESET = 4, JTAG_END_STATE = 5,
151 JTAG_PATHMOVE = 6, JTAG_SLEEP = 7
152 };
153
154 typedef struct jtag_command_s
155 {
156 jtag_command_container_t cmd;
157 enum jtag_command_type type;
158 struct jtag_command_s *next;
159 } jtag_command_t;
160
161 extern jtag_command_t *jtag_command_queue;
162
163 typedef struct jtag_device_s
164 {
165 int ir_length; /* size of instruction register */
166 u8 *expected; /* Capture-IR expected value */
167 u8 *expected_mask; /* Capture-IR expected mask */
168 u32 idcode; /* device identification code */
169 u8 *cur_instr; /* current instruction */
170 int bypass; /* bypass register selected */
171 struct jtag_device_s *next;
172 } jtag_device_t;
173
174 extern jtag_device_t *jtag_devices;
175 extern int jtag_num_devices;
176 extern int jtag_ir_scan_size;
177
178 enum reset_line_mode
179 {
180 LINE_OPEN_DRAIN = 0x0,
181 LINE_PUSH_PULL = 0x1,
182 };
183
184 typedef struct jtag_interface_s
185 {
186 char* name;
187
188 /* queued command execution
189 */
190 int (*execute_queue)(void);
191
192 /* interface initalization
193 */
194 int (*speed)(int speed);
195 int (*register_commands)(struct command_context_s *cmd_ctx);
196 int (*init)(void);
197 int (*quit)(void);
198 /* returns JTAG maxium speed for KHz. 0=RTCK. The function returns
199 a failure if it can't support the KHz/RTCK. */
200 int (*khz)(int khz, int *jtag_speed);
201
202 } jtag_interface_t;
203
204 enum jtag_event
205 {
206 JTAG_TRST_ASSERTED
207 };
208
209 extern char* jtag_event_strings[];
210
211 extern int jtag_trst;
212 extern int jtag_srst;
213
214 typedef struct jtag_event_callback_s
215 {
216 int (*callback)(enum jtag_event event, void *priv);
217 void *priv;
218 struct jtag_event_callback_s *next;
219 } jtag_event_callback_t;
220
221 extern jtag_event_callback_t *jtag_event_callbacks;
222
223 extern jtag_interface_t *jtag; /* global pointer to configured JTAG interface */
224 extern enum tap_state end_state;
225 extern enum tap_state cur_state;
226
227 extern int jtag_speed;
228 extern int jtag_speed_post_reset;
229
230 enum reset_types
231 {
232 RESET_NONE = 0x0,
233 RESET_HAS_TRST = 0x1,
234 RESET_HAS_SRST = 0x2,
235 RESET_TRST_AND_SRST = 0x3,
236 RESET_SRST_PULLS_TRST = 0x4,
237 RESET_TRST_PULLS_SRST = 0x8,
238 RESET_TRST_OPEN_DRAIN = 0x10,
239 RESET_SRST_PUSH_PULL = 0x20,
240 };
241
242 extern enum reset_types jtag_reset_config;
243
244 /* JTAG subsystem */
245 extern int jtag_init(struct command_context_s *cmd_ctx);
246 extern int jtag_register_commands(struct command_context_s *cmd_ctx);
247
248 /* JTAG interface, can be implemented with a software or hardware fifo
249 *
250 * TAP_SD and TAP_SI are illegal end states. TAP_SD/SI as end states
251 * can be emulated by using a larger scan.
252 */
253 extern void jtag_add_ir_scan(int num_fields, scan_field_t *fields, enum tap_state endstate);
254 extern int interface_jtag_add_ir_scan(int num_fields, scan_field_t *fields, enum tap_state endstate);
255 extern void jtag_add_dr_scan(int num_fields, scan_field_t *fields, enum tap_state endstate);
256 extern int interface_jtag_add_dr_scan(int num_fields, scan_field_t *fields, enum tap_state endstate);
257 extern void jtag_add_plain_ir_scan(int num_fields, scan_field_t *fields, enum tap_state endstate);
258 extern int interface_jtag_add_plain_ir_scan(int num_fields, scan_field_t *fields, enum tap_state endstate);
259 extern void jtag_add_plain_dr_scan(int num_fields, scan_field_t *fields, enum tap_state endstate);
260 extern int interface_jtag_add_plain_dr_scan(int num_fields, scan_field_t *fields, enum tap_state endstate);
261 /* execute a state transition within the JTAG standard, but the exact path
262 * path that is taken is undefined. Many implementations use precisely
263 * 7 clocks to perform a transition, but it could be more or less
264 * than that.
265 *
266 * The following assertions are made about certain common state moves:
267 *
268 * - A state move from Pause-[ID]R to Pause-[ID]R should always go through
269 * Update-[ID]R and Capture-[ID]R before returning to Pause-[ID]R, otherwise
270 * there's no way force a register update, if you can't go to Run-Test/Idle for
271 * some reason.
272 *
273 * - A state move from Pause-[ID]R to Shift-[ID]R must not go through
274 * Update-[ID]R.
275 *
276 * - Run-Test/Idle must not be entered unless requested, because R-T/I may have
277 * side effects.
278 *
279 * NB! a jtag_add_statemove() to the current state is not
280 * a no-operation.
281 */
282 extern void jtag_add_statemove(enum tap_state endstate);
283 extern int interface_jtag_add_statemove(enum tap_state endstate);
284 /* A list of unambigious single clock state transitions, not
285 * all drivers can support this, but it is required for e.g.
286 * XScale and Xilinx support
287 *
288 * Note! TAP_TLR must not be used in the path!
289 *
290 * Note that the first on the list must be reachable
291 * via a single transition from the current state.
292 */
293 extern void jtag_add_pathmove(int num_states, enum tap_state *path);
294 extern int interface_jtag_add_pathmove(int num_states, enum tap_state *path);
295 /* go to TAP_RTI, if we're not already there and cycle
296 * precisely num_cycles in the TAP_RTI after which move
297 * to the end state, if it is != TAP_RTI
298 */
299 extern void jtag_add_runtest(int num_cycles, enum tap_state endstate);
300 extern int interface_jtag_add_runtest(int num_cycles, enum tap_state endstate);
301 /* Invoking jtag_add_reset() with unsupported combinations is
302 * not allowed and constitutes a bug in the calling code.
303 *
304 * trst & srst must be 0 or 1. There is no way to
305 * read the current reset state.
306 */
307 extern void jtag_add_reset(int trst, int srst);
308 extern int interface_jtag_add_reset(int trst, int srst);
309 extern void jtag_add_end_state(enum tap_state endstate);
310 extern int interface_jtag_add_end_state(enum tap_state endstate);
311 extern void jtag_add_sleep(u32 us);
312 extern int interface_jtag_add_sleep(u32 us);
313
314
315
316 /*
317 * For software FIFO implementations, the queued commands can be executed
318 * during this call or earlier. A sw queue might decide to push out
319 * some of the jtag_add_xxx() operations once the queue is "big enough".
320 *
321 * This fn will return an error code if any of the prior jtag_add_xxx()
322 * calls caused a failure, e.g. check failure. Note that it does not
323 * matter if the operation was executed *before* jtag_execute_queue(),
324 * jtag_execute_queue() will still return an error code.
325 *
326 * All jtag_add_xxx() calls that have in_handler!=NULL will have been
327 * executed when this fn returns, but if what has been queued only
328 * clocks data out, without reading anything back, then JTAG could
329 * be running *after* jtag_execute_queue() returns. The API does
330 * not define a way to flush a hw FIFO that runs *after*
331 * jtag_execute_queue() returns.
332 *
333 * jtag_add_xxx() commands can either be executed immediately or
334 * at some time between the jtag_add_xxx() fn call and jtag_execute_queue().
335 */
336 extern int jtag_execute_queue(void);
337 /* can be implemented by hw+sw */
338 extern int interface_jtag_execute_queue(void);
339
340 /* JTAG support functions */
341 extern void jtag_set_check_value(scan_field_t *field, u8 *value, u8 *mask, error_handler_t *in_error_handler);
342 extern enum scan_type jtag_scan_type(scan_command_t *cmd);
343 extern int jtag_scan_size(scan_command_t *cmd);
344 extern int jtag_read_buffer(u8 *buffer, scan_command_t *cmd);
345 extern int jtag_build_buffer(scan_command_t *cmd, u8 **buffer);
346 extern jtag_device_t* jtag_get_device(int num);
347 extern void jtag_sleep(u32 us);
348 extern int jtag_call_event_callbacks(enum jtag_event event);
349 extern int jtag_register_event_callback(int (*callback)(enum jtag_event event, void *priv), void *priv);
350
351 extern int jtag_verify_capture_ir;
352
353 /* error codes
354 * JTAG subsystem uses codes between -100 and -199 */
355
356 #define ERROR_JTAG_INIT_FAILED (-100)
357 #define ERROR_JTAG_INVALID_INTERFACE (-101)
358 #define ERROR_JTAG_NOT_IMPLEMENTED (-102)
359 #define ERROR_JTAG_TRST_ASSERTED (-103)
360 #define ERROR_JTAG_QUEUE_FAILED (-104)
361 #define ERROR_JTAG_DEVICE_ERROR (-107)
362
363
364
365 /* this allows JTAG devices to implement the entire jtag_xxx() layer in hw/sw */
366 #ifdef HAVE_JTAG_MINIDRIVER_H
367 /* Here a #define MINIDRIVER() and an inline version of hw fifo interface_jtag_add_dr_out can be defined */
368 #include "jtag_minidriver.h"
369 #define MINIDRIVER(a) notused ## a
370 #else
371 #define MINIDRIVER(a) a
372 /* jtag_add_dr_out() is a faster version of jtag_add_dr_scan()
373 *
374 * Current or end_state can not be TAP_TLR. end_state can be -1
375 *
376 * num_bits[i] is the number of bits to clock out from value[i] LSB first.
377 *
378 * If the device is in bypass, then that is an error condition in
379 * the caller code that is not detected by this fn, whereas jtag_add_dr_scan()
380 * does detect it. Similarly if the device is not in bypass, data must
381 * be passed to it.
382 *
383 * If anything fails, then jtag_error will be set and jtag_execute() will
384 * return an error. There is no way to determine if there was a failure
385 * during this function call.
386 *
387 * Note that this jtag_add_dr_out can be defined as an inline function.
388 */
389 extern void interface_jtag_add_dr_out(int device,
390 int num_fields,
391 int *num_bits,
392 u32 *value,
393 enum tap_state end_state);
394 #endif
395
396
397
398
399 static __inline__ void jtag_add_dr_out(int device,
400 int num_fields,
401 int *num_bits,
402 u32 *value,
403 enum tap_state end_state)
404 {
405 if (end_state != -1)
406 cmd_queue_end_state=end_state;
407 cmd_queue_cur_state=cmd_queue_end_state;
408 interface_jtag_add_dr_out(device, num_fields, num_bits, value, cmd_queue_end_state);
409 }
410
411
412 #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)