You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

287 lines
9.4 KiB

  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. #include "types.h"
  23. #include "binarybuffer.h"
  24. #include "command.h"
  25. #if 1
  26. #define _DEBUG_JTAG_IO_
  27. #endif
  28. /* Tap States
  29. * TLR - Test-Logic-Reset, RTI - Run-Test/Idle,
  30. * SDS - Select-DR-Scan, CD - Capture-DR, SD - Shift-DR, E1D - Exit1-DR,
  31. * PD - Pause-DR, E2D - Exit2-DR, UD - Update-DR,
  32. * SIS - Select-IR-Scan, CI - Capture-IR, SI - Shift-IR, E1I - Exit1-IR,
  33. * PI - Pause-IR, E2I - Exit2-IR, UI - Update-IR
  34. */
  35. enum tap_state
  36. {
  37. TAP_TLR = 0x0, TAP_RTI = 0x8,
  38. TAP_SDS = 0x1, TAP_CD = 0x2, TAP_SD = 0x3, TAP_E1D = 0x4,
  39. TAP_PD = 0x5, TAP_E2D = 0x6, TAP_UD = 0x7,
  40. TAP_SIS = 0x9, TAP_CI = 0xa, TAP_SI = 0xb, TAP_E1I = 0xc,
  41. TAP_PI = 0xd, TAP_E2I = 0xe, TAP_UI = 0xf
  42. };
  43. typedef struct tap_transition_s
  44. {
  45. enum tap_state high;
  46. enum tap_state low;
  47. } tap_transition_t;
  48. extern char* tap_state_strings[16];
  49. extern int tap_move_map[16]; /* map 16 TAP states to 6 stable states */
  50. extern u8 tap_move[6][6]; /* value scanned to TMS to move from one of six stable states to another */
  51. extern tap_transition_t tap_transitions[16]; /* describe the TAP state diagram */
  52. extern enum tap_state end_state; /* finish DR scans in dr_end_state */
  53. extern enum tap_state cur_state; /* current TAP state */
  54. extern enum tap_state cmd_queue_end_state; /* finish DR scans in dr_end_state */
  55. extern enum tap_state cmd_queue_cur_state; /* current TAP state */
  56. #define TAP_MOVE(from, to) tap_move[tap_move_map[from]][tap_move_map[to]]
  57. typedef struct error_handler_s
  58. {
  59. int (*error_handler)(u8 *in_value, void *priv); /* handle failed checks */
  60. void *error_handler_priv; /* additional information for the check_handler */
  61. } error_handler_t;
  62. typedef struct scan_field_s
  63. {
  64. int device; /* ordinal device number this instruction refers to */
  65. int num_bits; /* number of bits this field specifies (up to 32) */
  66. u8 *out_value; /* value to be scanned into the device */
  67. u8 *out_mask; /* only masked bits care */
  68. u8 *in_value; /* pointer to a 32-bit memory location to take data scanned out */
  69. u8 *in_check_value; /* used to validate scan results */
  70. u8 *in_check_mask; /* check specified bits against check_value */
  71. int (*in_handler)(u8 *in_value, void *priv); /* process received buffer using this handler */
  72. void *in_handler_priv; /* additional information for the in_handler */
  73. } scan_field_t;
  74. enum scan_type
  75. {
  76. /* IN: from device to host, OUT: from host to device */
  77. SCAN_IN = 1, SCAN_OUT = 2, SCAN_IO = 3
  78. };
  79. typedef struct scan_command_s
  80. {
  81. int ir_scan; /* instruction/not data scan */
  82. int num_fields; /* number of fields in *fields array */
  83. scan_field_t *fields; /* pointer to an array of data scan fields */
  84. enum tap_state end_state; /* TAP state in which JTAG commands should finish */
  85. error_handler_t *error_handler;
  86. } scan_command_t;
  87. typedef struct statemove_command_s
  88. {
  89. enum tap_state end_state; /* TAP state in which JTAG commands should finish */
  90. } statemove_command_t;
  91. typedef struct pathmove_command_s
  92. {
  93. int num_states; /* number of states in *path */
  94. enum tap_state *path; /* states that have to be passed */
  95. } pathmove_command_t;
  96. typedef struct runtest_command_s
  97. {
  98. int num_cycles; /* number of cycles that should be spent in Run-Test/Idle */
  99. enum tap_state end_state; /* TAP state in which JTAG commands should finish */
  100. } runtest_command_t;
  101. typedef struct reset_command_s
  102. {
  103. int trst; /* trst/srst 0: deassert, 1: assert, -1: don't change */
  104. int srst;
  105. } reset_command_t;
  106. typedef struct end_state_command_s
  107. {
  108. enum tap_state end_state; /* TAP state in which JTAG commands should finish */
  109. } end_state_command_t;
  110. typedef struct sleep_command_s
  111. {
  112. u32 us; /* number of microseconds to sleep */
  113. } sleep_command_t;
  114. typedef union jtag_command_container_u
  115. {
  116. scan_command_t *scan;
  117. statemove_command_t *statemove;
  118. pathmove_command_t *pathmove;
  119. runtest_command_t *runtest;
  120. reset_command_t *reset;
  121. end_state_command_t *end_state;
  122. sleep_command_t *sleep;
  123. } jtag_command_container_t;
  124. enum jtag_command_type
  125. {
  126. JTAG_SCAN = 1,
  127. JTAG_STATEMOVE = 2, JTAG_RUNTEST = 3,
  128. JTAG_RESET = 4, JTAG_END_STATE = 5,
  129. JTAG_PATHMOVE = 6, JTAG_SLEEP = 7
  130. };
  131. typedef struct jtag_command_s
  132. {
  133. jtag_command_container_t cmd;
  134. enum jtag_command_type type;
  135. struct jtag_command_s *next;
  136. } jtag_command_t;
  137. extern jtag_command_t *jtag_command_queue;
  138. typedef struct jtag_device_s
  139. {
  140. int ir_length; /* size of instruction register */
  141. u8 *expected; /* Capture-IR expected value */
  142. u8 *expected_mask; /* Capture-IR expected mask */
  143. u32 idcode; /* device identification code */
  144. u8 *cur_instr; /* current instruction */
  145. int bypass; /* bypass register selected */
  146. struct jtag_device_s *next;
  147. } jtag_device_t;
  148. extern jtag_device_t *jtag_devices;
  149. extern int jtag_num_devices;
  150. extern int jtag_ir_scan_size;
  151. enum reset_line_mode
  152. {
  153. LINE_OPEN_DRAIN = 0x0,
  154. LINE_PUSH_PULL = 0x1,
  155. };
  156. typedef struct jtag_interface_s
  157. {
  158. char* name;
  159. /* queued command execution
  160. */
  161. int (*execute_queue)(void);
  162. /* optional command support
  163. */
  164. int support_pathmove;
  165. /* interface initalization
  166. */
  167. int (*speed)(int speed);
  168. int (*register_commands)(struct command_context_s *cmd_ctx);
  169. int (*init)(void);
  170. int (*quit)(void);
  171. } jtag_interface_t;
  172. enum jtag_event
  173. {
  174. JTAG_SRST_ASSERTED,
  175. JTAG_TRST_ASSERTED,
  176. JTAG_SRST_RELEASED,
  177. JTAG_TRST_RELEASED,
  178. };
  179. extern char* jtag_event_strings[];
  180. extern int jtag_trst;
  181. extern int jtag_srst;
  182. typedef struct jtag_event_callback_s
  183. {
  184. int (*callback)(enum jtag_event event, void *priv);
  185. void *priv;
  186. struct jtag_event_callback_s *next;
  187. } jtag_event_callback_t;
  188. extern jtag_event_callback_t *jtag_event_callbacks;
  189. extern jtag_interface_t *jtag; /* global pointer to configured JTAG interface */
  190. extern enum tap_state end_state;
  191. extern enum tap_state cur_state;
  192. extern char* jtag_interface;
  193. extern int jtag_speed;
  194. enum reset_types
  195. {
  196. RESET_NONE = 0x0,
  197. RESET_HAS_TRST = 0x1,
  198. RESET_HAS_SRST = 0x2,
  199. RESET_TRST_AND_SRST = 0x3,
  200. RESET_SRST_PULLS_TRST = 0x4,
  201. RESET_TRST_PULLS_SRST = 0x8,
  202. RESET_TRST_OPEN_DRAIN = 0x10,
  203. RESET_SRST_PUSH_PULL = 0x20,
  204. };
  205. extern enum reset_types jtag_reset_config;
  206. /* JTAG subsystem */
  207. extern int jtag_init(struct command_context_s *cmd_ctx);
  208. extern int jtag_register_commands(struct command_context_s *cmd_ctx);
  209. /* JTAG interface */
  210. extern int jtag_add_ir_scan(int num_fields, scan_field_t *fields, enum tap_state endstate, error_handler_t *error_handler);
  211. extern int jtag_add_dr_scan(int num_fields, scan_field_t *fields, enum tap_state endstate, error_handler_t *error_handler);
  212. extern int jtag_add_plain_ir_scan(int num_fields, scan_field_t *fields, enum tap_state endstate, error_handler_t *error_handler);
  213. extern int jtag_add_plain_dr_scan(int num_fields, scan_field_t *fields, enum tap_state endstate, error_handler_t *error_handler);
  214. extern int jtag_add_statemove(enum tap_state endstate);
  215. extern int jtag_add_pathmove(int num_states, enum tap_state *path);
  216. extern int jtag_add_runtest(int num_cycles, enum tap_state endstate);
  217. extern int jtag_add_reset(int trst, int srst);
  218. extern int jtag_add_end_state(enum tap_state endstate);
  219. extern int jtag_add_sleep(u32 us);
  220. extern int jtag_execute_queue(void);
  221. extern int jtag_cancel_queue(void);
  222. /* JTAG support functions */
  223. extern enum scan_type jtag_scan_type(scan_command_t *cmd);
  224. extern int jtag_scan_size(scan_command_t *cmd);
  225. extern int jtag_read_buffer(u8 *buffer, scan_command_t *cmd);
  226. extern int jtag_build_buffer(scan_command_t *cmd, u8 **buffer);
  227. extern jtag_device_t* jtag_get_device(int num);
  228. extern void jtag_sleep(u32 us);
  229. extern int jtag_call_event_callbacks(enum jtag_event event);
  230. extern int jtag_register_event_callback(int (*callback)(enum jtag_event event, void *priv), void *priv);
  231. /* error codes
  232. * JTAG subsystem uses codes between -100 and -199 */
  233. #define ERROR_JTAG_INIT_FAILED (-100)
  234. #define ERROR_JTAG_INVALID_INTERFACE (-101)
  235. #define ERROR_JTAG_NOT_IMPLEMENTED (-102)
  236. #define ERROR_JTAG_TRST_ASSERTED (-103)
  237. #define ERROR_JTAG_QUEUE_FAILED (-104)
  238. #define ERROR_JTAG_RESET_WOULD_ASSERT_TRST (-105)
  239. #define ERROR_JTAG_RESET_CANT_SRST (-106)
  240. #define ERROR_JTAG_DEVICE_ERROR (-107)
  241. #endif /* JTAG_H */