Minor comments/description modification. No functional/code changes.
[openocd/libswd.git] / src / jtag / interface.h
blobfd3cea06cfe2f2fc8022fce7c1467715df32ffc6
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * Copyright (C) 2007,2008 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
7 * *
8 * Copyright (C) 2009 Zachary T Welch *
9 * zw@superlucidity.net *
10 * *
11 * Copyright (C) 2011-2012 Tomasz Boleslaw CEDRO *
12 * cederom@tlen.pl, http://www.tomek.cedro.info *
13 * *
14 * This program is free software; you can redistribute it and/or modify *
15 * it under the terms of the GNU General Public License as published by *
16 * the Free Software Foundation; either version 2 of the License, or *
17 * (at your option) any later version. *
18 * *
19 * This program is distributed in the hope that it will be useful, *
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
22 * GNU General Public License for more details. *
23 * *
24 * You should have received a copy of the GNU General Public License *
25 * along with this program; if not, write to the *
26 * Free Software Foundation, Inc., *
27 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
28 ***************************************************************************/
30 #ifndef OPENOCD_JTAG_INTERFACE_H
31 #define OPENOCD_JTAG_INTERFACE_H
33 #include <jtag/jtag.h>
35 /* @file
36 * The "Cable Helper API" is what the cable drivers can use to help
37 * implement their "Cable API". So a Cable Helper API is a set of
38 * helper functions used by cable drivers, and this is different from a
39 * Cable API. A "Cable API" is what higher level code used to talk to a
40 * cable.
44 /** implementation of wrapper function tap_set_state() */
45 void tap_set_state_impl(tap_state_t new_state);
47 /**
48 * This function sets the state of a "state follower" which tracks the
49 * state of the TAPs connected to the cable. The state follower is
50 * hopefully always in the same state as the actual TAPs in the jtag
51 * chain, and will be so if there are no bugs in the tracking logic
52 * within that cable driver.
54 * All the cable drivers call this function to indicate the state they
55 * think the TAPs attached to their cables are in. Because this
56 * function can also log transitions, it will be helpful to call this
57 * function with every transition that the TAPs being manipulated are
58 * expected to traverse, not just end points of a multi-step state path.
60 * @param new_state The state we think the TAPs are currently in (or
61 * are about to enter).
63 #if defined(_DEBUG_JTAG_IO_)
64 #define tap_set_state(new_state) \
65 do { \
66 LOG_DEBUG("tap_set_state(%s)", tap_state_name(new_state)); \
67 tap_set_state_impl(new_state); \
68 } while (0)
69 #else
70 static inline void tap_set_state(tap_state_t new_state)
72 tap_set_state_impl(new_state);
74 #endif
76 /**
77 * This function gets the state of the "state follower" which tracks the
78 * state of the TAPs connected to the cable. @see tap_set_state @return
79 * tap_state_t The state the TAPs are in now.
81 tap_state_t tap_get_state(void);
83 /**
84 * This function sets the state of an "end state follower" which tracks
85 * the state that any cable driver thinks will be the end (resultant)
86 * state of the current TAP SIR or SDR operation.
88 * At completion of that TAP operation this value is copied into the
89 * state follower via tap_set_state().
91 * @param new_end_state The state the TAPs should enter at completion of
92 * a pending TAP operation.
94 void tap_set_end_state(tap_state_t new_end_state);
96 /**
97 * For more information, @see tap_set_end_state
98 * @return tap_state_t - The state the TAPs should be in at completion of the current TAP operation.
100 tap_state_t tap_get_end_state(void);
103 * This function provides a "bit sequence" indicating what has to be
104 * done with TMS during a sequence of seven TAP clock cycles in order to
105 * get from state \a "from" to state \a "to".
107 * The length of the sequence must be determined with a parallel call to
108 * tap_get_tms_path_len().
110 * @param from The starting state.
111 * @param to The desired final state.
112 * @return int The required TMS bit sequence, with the first bit in the
113 * sequence at bit 0.
115 int tap_get_tms_path(tap_state_t from, tap_state_t to);
118 * Function int tap_get_tms_path_len
119 * returns the total number of bits that represents a TMS path
120 * transition as given by the function tap_get_tms_path().
122 * For at least one interface (JLink) it's not OK to simply "pad" TMS
123 * sequences to fit a whole byte. (I suspect this is a general TAP
124 * problem within OOCD.) Padding TMS causes all manner of instability
125 * that's not easily discovered. Using this routine we can apply
126 * EXACTLY the state transitions required to make something work - no
127 * more - no less.
129 * @param from is the starting state
130 * @param to is the resultant or final state
131 * @return int - the total number of bits in a transition.
133 int tap_get_tms_path_len(tap_state_t from, tap_state_t to);
137 * Function tap_move_ndx
138 * when given a stable state, returns an index from 0-5. The index corresponds to a
139 * sequence of stable states which are given in this order: <p>
140 * { TAP_RESET, TAP_IDLE, TAP_DRSHIFT, TAP_DRPAUSE, TAP_IRSHIFT, TAP_IRPAUSE }
141 * <p>
142 * This sequence corresponds to look up tables which are used in some of the
143 * cable drivers.
144 * @param astate is the stable state to find in the sequence. If a non stable
145 * state is passed, this may cause the program to output an error message
146 * and terminate.
147 * @return int - the array (or sequence) index as described above
149 int tap_move_ndx(tap_state_t astate);
152 * Function tap_is_state_stable
153 * returns true if the \a astate is stable.
155 bool tap_is_state_stable(tap_state_t astate);
158 * Function tap_state_transition
159 * takes a current TAP state and returns the next state according to the tms value.
160 * @param current_state is the state of a TAP currently.
161 * @param tms is either zero or non-zero, just like a real TMS line in a jtag interface.
162 * @return tap_state_t - the next state a TAP would enter.
164 tap_state_t tap_state_transition(tap_state_t current_state, bool tms);
166 /** Allow switching between old and new TMS tables. @see tap_get_tms_path */
167 void tap_use_new_tms_table(bool use_new);
168 /** @returns True if new TMS table is active; false otherwise. */
169 bool tap_uses_new_tms_table(void);
171 #ifdef _DEBUG_JTAG_IO_
173 * @brief Prints verbose TAP state transitions for the given TMS/TDI buffers.
174 * @param tms_buf must points to a buffer containing the TMS bitstream.
175 * @param tdi_buf must points to a buffer containing the TDI bitstream.
176 * @param tap_len must specify the length of the TMS/TDI bitstreams.
177 * @param start_tap_state must specify the current TAP state.
178 * @returns the final TAP state; pass as @a start_tap_state in following call.
180 tap_state_t jtag_debug_state_machine(const void *tms_buf, const void *tdi_buf,
181 unsigned tap_len, tap_state_t start_tap_state);
182 #else
183 static inline tap_state_t jtag_debug_state_machine(const void *tms_buf,
184 const void *tdi_buf, unsigned tap_len, tap_state_t start_tap_state)
186 return start_tap_state;
188 #endif /* _DEBUG_JTAG_IO_ */
191 * Represents a driver for a debugging interface.
193 * @todo Rename; perhaps "debug_driver". This isn't an interface,
194 * it's a driver! Also, not all drivers support JTAG.
196 * @todo We need a per-instance structure too, and changes to pass
197 * that structure to the driver. Instances can for example be in
198 * either SWD or JTAG modes. This will help remove globals, and
199 * eventually to cope with systems which have more than one such
200 * debugging interface.
202 struct jtag_interface {
203 /** The name of the JTAG interface driver. */
204 char *name;
207 * Bit vector listing capabilities exposed by this driver.
209 unsigned supported;
210 #define DEBUG_CAP_TMS_SEQ (1 << 0)
212 /** transports supported in C code (NULL terminated vector) */
213 const char **transports;
215 const struct swd_driver *swd;
218 * Execute queued commands.
219 * @returns ERROR_OK on success, or an error code on failure.
221 int (*execute_queue)(void);
224 * Set the interface speed.
225 * @a speed is usually the internal interface clock source divisor value
226 * that directly impacts transport TCK/CLK frequency. If you want to
227 * specify clock frequency in kHz, you must first calculate it with
228 * @a khz() function. Using speed==-1 enables adaptive clocking based
229 * on RTCK signal (however not all devices support this feature).
231 * @param speed The new interface speed setting.
232 * @returns ERROR_OK on success, or an error code on failure.
234 int (*speed)(int speed);
237 * The interface driver may register additional commands to expose
238 * additional features not covered by the standard command set.
240 const struct command_registration *commands;
243 * Interface driver must initialize any resources and connect to a
244 * JTAG device.
246 * quit() is invoked if and only if init() succeeds. quit() is always
247 * invoked if init() succeeds. Same as malloc() + free(). Always
248 * invoke free() if malloc() succeeds and do not invoke free()
249 * otherwise.
251 * @returns ERROR_OK on success, or an error code on failure.
253 int (*init)(void);
256 * Interface driver must tear down all resources and disconnect from
257 * the JTAG device.
259 * @returns ERROR_OK on success, or an error code on failure.
261 int (*quit)(void);
264 * Returns JTAG maxium speed for KHz. 0 = RTCK. The function returns
265 * a failure if it can't support the KHz/RTCK.
267 * Calculates jtag_speed value for given transport clock frequency
268 * specified in kHz. @a jtag_speed is usually the internal interface clock
269 * source divisor value that directly impacts transport TCK/CLK frequency.
270 * For @a jtag_speed=0 adaptive clocking is used, based on RTCK signal.
271 * Function returns error code if an interface does not support kHz/RTCK.
273 * WARNING!!!! if RTCK is *slow* then think carefully about
274 * whether you actually want to support this in the driver.
275 * Many target scripts are written to handle the absence of RTCK
276 * and use a fallback kHz TCK.
277 * @returns ERROR_OK on success, or an error code on failure.
279 int (*khz)(int khz, int *jtag_speed);
282 * Calculate the clock frequency (in KHz) for the given @a speed.
283 * @param speed The desired interface speed setting.
284 * @param khz On return, contains the speed in KHz (0 for RTCK).
285 * @returns ERROR_OK on success, or an error code if the
286 * interface cannot support the specified speed (KHz or RTCK).
288 int (*speed_div)(int speed, int *khz);
291 * Read and clear the power dropout flag. Note that a power dropout
292 * can be transitionary, easily much less than a ms.
294 * To find out if the power is *currently* on, one must invoke this
295 * method twice. Once to clear the power dropout flag and a second
296 * time to read the current state. The default implementation
297 * never reports power dropouts.
299 * @returns ERROR_OK on success, or an error code on failure.
301 int (*power_dropout)(int *power_dropout);
304 * Read and clear the srst asserted detection flag.
306 * Like power_dropout this does *not* read the current
307 * state. SRST assertion is transitionary and may be much
308 * less than 1ms, so the interface driver must watch for these
309 * events until this routine is called.
311 * @param srst_asserted On return, indicates whether SRST has
312 * been asserted.
313 * @returns ERROR_OK on success, or an error code on failure.
315 int (*srst_asserted)(int *srst_asserted);
318 extern const char *jtag_only[];
320 extern const struct swd_driver *swd;
322 void adapter_assert_reset(void);
323 void adapter_deassert_reset(void);
325 #endif /* OPENOCD_JTAG_INTERFACE_H */