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.
 
 
 
 
 
 

275 lines
8.8 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 0
  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. #define TAP_MOVE(from, to) tap_move[tap_move_map[from]][tap_move_map[to]]
  55. typedef struct scan_field_s
  56. {
  57. int device; /* ordinal device number this instruction refers to */
  58. int num_bits; /* number of bits this field specifies (up to 32) */
  59. u8 *out_value; /* value to be scanned into the device */
  60. u8 *out_mask; /* only masked bits care */
  61. u8 *in_value; /* pointer to a 32-bit memory location to take data scanned out */
  62. u8 *in_check_value; /* used to validate scan results */
  63. u8 *in_check_mask; /* check specified bits against check_value */
  64. int (*in_handler)(u8 *in_value, void *priv); /* process received buffer using this handler */
  65. void *in_handler_priv; /* additional information for the in_handler */
  66. } scan_field_t;
  67. enum scan_type
  68. {
  69. /* IN: from device to host, OUT: from host to device */
  70. SCAN_IN = 1, SCAN_OUT = 2, SCAN_IO = 3
  71. };
  72. typedef struct scan_command_s
  73. {
  74. int ir_scan; /* instruction/not data scan */
  75. int num_fields; /* number of fields in *fields array */
  76. scan_field_t *fields; /* pointer to an array of data scan fields */
  77. enum tap_state end_state; /* TAP state in which JTAG commands should finish */
  78. } scan_command_t;
  79. typedef struct statemove_command_s
  80. {
  81. enum tap_state end_state; /* TAP state in which JTAG commands should finish */
  82. } statemove_command_t;
  83. typedef struct pathmove_command_s
  84. {
  85. int num_states; /* number of states in *path */
  86. enum tap_state *path; /* states that have to be passed */
  87. } pathmove_command_t;
  88. typedef struct runtest_command_s
  89. {
  90. int num_cycles; /* number of cycles that should be spent in Run-Test/Idle */
  91. enum tap_state end_state; /* TAP state in which JTAG commands should finish */
  92. } runtest_command_t;
  93. typedef struct reset_command_s
  94. {
  95. int trst; /* trst/srst 0: deassert, 1: assert, -1: don't change */
  96. int srst;
  97. } reset_command_t;
  98. typedef struct end_state_command_s
  99. {
  100. enum tap_state end_state; /* TAP state in which JTAG commands should finish */
  101. } end_state_command_t;
  102. typedef struct sleep_command_s
  103. {
  104. u32 us; /* number of microseconds to sleep */
  105. } sleep_command_t;
  106. typedef union jtag_command_container_u
  107. {
  108. scan_command_t *scan;
  109. statemove_command_t *statemove;
  110. pathmove_command_t *pathmove;
  111. runtest_command_t *runtest;
  112. reset_command_t *reset;
  113. end_state_command_t *end_state;
  114. sleep_command_t *sleep;
  115. } jtag_command_container_t;
  116. enum jtag_command_type
  117. {
  118. JTAG_SCAN = 1,
  119. JTAG_STATEMOVE = 2, JTAG_RUNTEST = 3,
  120. JTAG_RESET = 4, JTAG_END_STATE = 5,
  121. JTAG_PATHMOVE = 6, JTAG_SLEEP = 7
  122. };
  123. typedef struct jtag_command_s
  124. {
  125. jtag_command_container_t cmd;
  126. enum jtag_command_type type;
  127. struct jtag_command_s *next;
  128. } jtag_command_t;
  129. extern jtag_command_t *jtag_command_queue;
  130. typedef struct jtag_device_s
  131. {
  132. int ir_length; /* size of instruction register */
  133. u8 *expected; /* Capture-IR expected value */
  134. u8 *expected_mask; /* Capture-IR expected mask */
  135. u32 idcode; /* device identification code */
  136. u8 *cur_instr; /* current instruction */
  137. int bypass; /* bypass register selected */
  138. struct jtag_device_s *next;
  139. } jtag_device_t;
  140. extern jtag_device_t *jtag_devices;
  141. extern int jtag_num_devices;
  142. extern int jtag_ir_scan_size;
  143. enum reset_line_mode
  144. {
  145. LINE_OPEN_DRAIN = 0x0,
  146. LINE_PUSH_PULL = 0x1,
  147. };
  148. typedef struct jtag_interface_s
  149. {
  150. char* name;
  151. /* queued command execution
  152. */
  153. int (*execute_queue)(void);
  154. /* optional command support
  155. */
  156. int support_statemove;
  157. /* interface initalization
  158. */
  159. int (*speed)(int speed);
  160. int (*register_commands)(struct command_context_s *cmd_ctx);
  161. int (*init)(void);
  162. int (*quit)(void);
  163. } jtag_interface_t;
  164. enum jtag_event
  165. {
  166. JTAG_SRST_ASSERTED,
  167. JTAG_TRST_ASSERTED,
  168. JTAG_SRST_RELEASED,
  169. JTAG_TRST_RELEASED,
  170. };
  171. extern int jtag_trst;
  172. extern int jtag_srst;
  173. typedef struct jtag_event_callback_s
  174. {
  175. int (*callback)(enum jtag_event event, void *priv);
  176. void *priv;
  177. struct jtag_event_callback_s *next;
  178. } jtag_event_callback_t;
  179. extern jtag_event_callback_t *jtag_event_callbacks;
  180. extern jtag_interface_t *jtag; /* global pointer to configured JTAG interface */
  181. extern enum tap_state end_state;
  182. extern enum tap_state cur_state;
  183. extern char* jtag_interface;
  184. extern int jtag_speed;
  185. enum reset_types
  186. {
  187. RESET_NONE = 0x0,
  188. RESET_HAS_TRST = 0x1,
  189. RESET_HAS_SRST = 0x2,
  190. RESET_TRST_AND_SRST = 0x3,
  191. RESET_SRST_PULLS_TRST = 0x4,
  192. RESET_TRST_PULLS_SRST = 0x8,
  193. RESET_TRST_OPEN_DRAIN = 0x10,
  194. RESET_SRST_PUSH_PULL = 0x20,
  195. };
  196. extern enum reset_types jtag_reset_config;
  197. /* JTAG subsystem */
  198. extern int jtag_init(struct command_context_s *cmd_ctx);
  199. extern int jtag_register_commands(struct command_context_s *cmd_ctx);
  200. /* JTAG interface */
  201. extern int jtag_add_ir_scan(int num_fields, scan_field_t *fields, enum tap_state endstate);
  202. extern int jtag_add_dr_scan(int num_fields, scan_field_t *fields, enum tap_state endstate);
  203. extern int jtag_add_plain_ir_scan(int num_fields, scan_field_t *fields, enum tap_state endstate);
  204. extern int jtag_add_plain_dr_scan(int num_fields, scan_field_t *fields, enum tap_state endstate);
  205. extern int jtag_add_statemove(enum tap_state endstate);
  206. extern int jtag_add_pathmove(int num_states, enum tap_state *path);
  207. extern int jtag_add_runtest(int num_cycles, enum tap_state endstate);
  208. extern int jtag_add_reset(int trst, int srst);
  209. extern int jtag_add_end_state(enum tap_state endstate);
  210. extern int jtag_add_sleep(u32 us);
  211. extern int jtag_execute_queue(void);
  212. extern int jtag_cancel_queue(void);
  213. /* JTAG support functions */
  214. extern enum scan_type jtag_scan_type(scan_command_t *cmd);
  215. extern int jtag_scan_size(scan_command_t *cmd);
  216. extern int jtag_read_buffer(u8 *buffer, scan_command_t *cmd);
  217. extern int jtag_build_buffer(scan_command_t *cmd, u8 **buffer);
  218. extern jtag_device_t* jtag_get_device(int num);
  219. extern void jtag_sleep(u32 us);
  220. extern int jtag_call_event_callbacks(enum jtag_event event);
  221. extern int jtag_register_event_callback(int (*callback)(enum jtag_event event, void *priv), void *priv);
  222. /* error codes
  223. * JTAG subsystem uses codes between -100 and -199 */
  224. #define ERROR_JTAG_INIT_FAILED (-100)
  225. #define ERROR_JTAG_INVALID_INTERFACE (-101)
  226. #define ERROR_JTAG_NOT_IMPLEMENTED (-102)
  227. #define ERROR_JTAG_TRST_ASSERTED (-103)
  228. #define ERROR_JTAG_QUEUE_FAILED (-104)
  229. #define ERROR_JTAG_RESET_WOULD_ASSERT_TRST (-105)
  230. #define ERROR_JTAG_RESET_CANT_SRST (-106)
  231. #define ERROR_JTAG_DEVICE_ERROR (-107)
  232. #endif /* JTAG_H */