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.
 
 
 
 
 
 

335 lines
9.8 KiB

  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. #ifdef HAVE_CONFIG_H
  24. #include "config.h"
  25. #endif
  26. #include "bitbang.h"
  27. #include "jtag.h"
  28. /**
  29. * Function bitbang_stableclocks
  30. * issues a number of clock cycles while staying in a stable state.
  31. * Because the TMS value required to stay in the RESET state is a 1, whereas
  32. * the TMS value required to stay in any of the other stable states is a 0,
  33. * this function checks the current stable state to decide on the value of TMS
  34. * to use.
  35. */
  36. static void bitbang_stableclocks(int num_cycles);
  37. bitbang_interface_t *bitbang_interface;
  38. /* DANGER!!!! clock absolutely *MUST* be 0 in idle or reset won't work!
  39. *
  40. * Set this to 1 and str912 reset halt will fail.
  41. *
  42. * If someone can submit a patch with an explanation it will be greatly
  43. * appreciated, but as far as I can tell (ØH) DCLK is generated upon
  44. * clk=0 in TAP_IDLE. Good luck deducing that from the ARM documentation!
  45. * The ARM documentation uses the term "DCLK is asserted while in the TAP_IDLE
  46. * state". With hardware there is no such thing as *while* in a state. There
  47. * are only edges. So clk => 0 is in fact a very subtle state transition that
  48. * happens *while* in the TAP_IDLE state. "#&¤"#¤&"#&"#&
  49. *
  50. * For "reset halt" the last thing that happens before srst is asserted
  51. * is that the breakpoint is set up. If DCLK is not wiggled one last
  52. * time before the reset, then the breakpoint is not set up and
  53. * "reset halt" will fail to halt.
  54. *
  55. */
  56. #define CLOCK_IDLE() 0
  57. /* The bitbang driver leaves the TCK 0 when in idle */
  58. static void bitbang_end_state(tap_state_t state)
  59. {
  60. if (tap_is_state_stable(state))
  61. tap_set_end_state(state);
  62. else
  63. {
  64. LOG_ERROR("BUG: %i is not a valid end state", state);
  65. exit(-1);
  66. }
  67. }
  68. static void bitbang_state_move(int skip)
  69. {
  70. int i=0, tms=0;
  71. u8 tms_scan = tap_get_tms_path(tap_get_state(), tap_get_end_state());
  72. int tms_count = tap_get_tms_path_len(tap_get_state(), tap_get_end_state());
  73. for (i = skip; i < tms_count; i++)
  74. {
  75. tms = (tms_scan >> i) & 1;
  76. bitbang_interface->write(0, tms, 0);
  77. bitbang_interface->write(1, tms, 0);
  78. }
  79. bitbang_interface->write(CLOCK_IDLE(), tms, 0);
  80. tap_set_state(tap_get_end_state());
  81. }
  82. static void bitbang_path_move(pathmove_command_t *cmd)
  83. {
  84. int num_states = cmd->num_states;
  85. int state_count;
  86. int tms = 0;
  87. state_count = 0;
  88. while (num_states)
  89. {
  90. if (tap_state_transition(tap_get_state(), false) == cmd->path[state_count])
  91. {
  92. tms = 0;
  93. }
  94. else if (tap_state_transition(tap_get_state(), true) == cmd->path[state_count])
  95. {
  96. tms = 1;
  97. }
  98. else
  99. {
  100. LOG_ERROR("BUG: %s -> %s isn't a valid TAP transition", tap_state_name(tap_get_state()), tap_state_name(cmd->path[state_count]));
  101. exit(-1);
  102. }
  103. bitbang_interface->write(0, tms, 0);
  104. bitbang_interface->write(1, tms, 0);
  105. tap_set_state(cmd->path[state_count]);
  106. state_count++;
  107. num_states--;
  108. }
  109. bitbang_interface->write(CLOCK_IDLE(), tms, 0);
  110. tap_set_end_state(tap_get_state());
  111. }
  112. static void bitbang_runtest(int num_cycles)
  113. {
  114. int i;
  115. tap_state_t saved_end_state = tap_get_end_state();
  116. /* only do a state_move when we're not already in IDLE */
  117. if (tap_get_state() != TAP_IDLE)
  118. {
  119. bitbang_end_state(TAP_IDLE);
  120. bitbang_state_move(0);
  121. }
  122. /* execute num_cycles */
  123. for (i = 0; i < num_cycles; i++)
  124. {
  125. bitbang_interface->write(0, 0, 0);
  126. bitbang_interface->write(1, 0, 0);
  127. }
  128. bitbang_interface->write(CLOCK_IDLE(), 0, 0);
  129. /* finish in end_state */
  130. bitbang_end_state(saved_end_state);
  131. if (tap_get_state() != tap_get_end_state())
  132. bitbang_state_move(0);
  133. }
  134. static void bitbang_stableclocks(int num_cycles)
  135. {
  136. int tms = (tap_get_state() == TAP_RESET ? 1 : 0);
  137. int i;
  138. /* send num_cycles clocks onto the cable */
  139. for (i = 0; i < num_cycles; i++)
  140. {
  141. bitbang_interface->write(1, tms, 0);
  142. bitbang_interface->write(0, tms, 0);
  143. }
  144. }
  145. static void bitbang_scan(bool ir_scan, enum scan_type type, u8 *buffer, int scan_size)
  146. {
  147. tap_state_t saved_end_state = tap_get_end_state();
  148. int bit_cnt;
  149. if (!((!ir_scan && (tap_get_state() == TAP_DRSHIFT)) || (ir_scan && (tap_get_state() == TAP_IRSHIFT))))
  150. {
  151. if (ir_scan)
  152. bitbang_end_state(TAP_IRSHIFT);
  153. else
  154. bitbang_end_state(TAP_DRSHIFT);
  155. bitbang_state_move(0);
  156. bitbang_end_state(saved_end_state);
  157. }
  158. for (bit_cnt = 0; bit_cnt < scan_size; bit_cnt++)
  159. {
  160. int val=0;
  161. int tms=(bit_cnt==scan_size-1) ? 1 : 0;
  162. int tdi;
  163. int bytec=bit_cnt/8;
  164. int bcval=1<<(bit_cnt % 8);
  165. /* if we're just reading the scan, but don't care about the output
  166. * default to outputting 'low', this also makes valgrind traces more readable,
  167. * as it removes the dependency on an uninitialised value
  168. */
  169. tdi=0;
  170. if ((type != SCAN_IN) && (buffer[bytec] & bcval))
  171. tdi=1;
  172. bitbang_interface->write(0, tms, tdi);
  173. if (type!=SCAN_OUT)
  174. val=bitbang_interface->read();
  175. bitbang_interface->write(1, tms, tdi);
  176. if (type != SCAN_OUT)
  177. {
  178. if (val)
  179. buffer[bytec] |= bcval;
  180. else
  181. buffer[bytec] &= ~bcval;
  182. }
  183. }
  184. if (tap_get_state() != tap_get_end_state())
  185. {
  186. /* we *KNOW* the above loop transitioned out of
  187. * the shift state, so we skip the first state
  188. * and move directly to the end state.
  189. */
  190. bitbang_state_move(1);
  191. }
  192. }
  193. int bitbang_execute_queue(void)
  194. {
  195. jtag_command_t *cmd = jtag_command_queue; /* currently processed command */
  196. int scan_size;
  197. enum scan_type type;
  198. u8 *buffer;
  199. int retval;
  200. if (!bitbang_interface)
  201. {
  202. LOG_ERROR("BUG: Bitbang interface called, but not yet initialized");
  203. exit(-1);
  204. }
  205. /* return ERROR_OK, unless a jtag_read_buffer returns a failed check
  206. * that wasn't handled by a caller-provided error handler
  207. */
  208. retval = ERROR_OK;
  209. if(bitbang_interface->blink)
  210. bitbang_interface->blink(1);
  211. while (cmd)
  212. {
  213. switch (cmd->type)
  214. {
  215. case JTAG_END_STATE:
  216. #ifdef _DEBUG_JTAG_IO_
  217. LOG_DEBUG("end_state: %s", tap_state_name(cmd->cmd.end_state->end_state) );
  218. #endif
  219. if (cmd->cmd.end_state->end_state != TAP_INVALID)
  220. bitbang_end_state(cmd->cmd.end_state->end_state);
  221. break;
  222. case JTAG_RESET:
  223. #ifdef _DEBUG_JTAG_IO_
  224. LOG_DEBUG("reset trst: %i srst %i", cmd->cmd.reset->trst, cmd->cmd.reset->srst);
  225. #endif
  226. if ((cmd->cmd.reset->trst == 1) || (cmd->cmd.reset->srst && (jtag_reset_config & RESET_SRST_PULLS_TRST)))
  227. {
  228. tap_set_state(TAP_RESET);
  229. }
  230. bitbang_interface->reset(cmd->cmd.reset->trst, cmd->cmd.reset->srst);
  231. break;
  232. case JTAG_RUNTEST:
  233. #ifdef _DEBUG_JTAG_IO_
  234. LOG_DEBUG("runtest %i cycles, end in %s", cmd->cmd.runtest->num_cycles, tap_state_name(cmd->cmd.runtest->end_state) );
  235. #endif
  236. if (cmd->cmd.runtest->end_state != TAP_INVALID)
  237. bitbang_end_state(cmd->cmd.runtest->end_state);
  238. bitbang_runtest(cmd->cmd.runtest->num_cycles);
  239. break;
  240. case JTAG_STABLECLOCKS:
  241. /* this is only allowed while in a stable state. A check for a stable
  242. * state was done in jtag_add_clocks()
  243. */
  244. bitbang_stableclocks(cmd->cmd.stableclocks->num_cycles);
  245. break;
  246. case JTAG_STATEMOVE:
  247. #ifdef _DEBUG_JTAG_IO_
  248. LOG_DEBUG("statemove end in %s", tap_state_name(cmd->cmd.statemove->end_state));
  249. #endif
  250. if (cmd->cmd.statemove->end_state != TAP_INVALID)
  251. bitbang_end_state(cmd->cmd.statemove->end_state);
  252. bitbang_state_move(0);
  253. break;
  254. case JTAG_PATHMOVE:
  255. #ifdef _DEBUG_JTAG_IO_
  256. LOG_DEBUG("pathmove: %i states, end in %s", cmd->cmd.pathmove->num_states,
  257. tap_state_name(cmd->cmd.pathmove->path[cmd->cmd.pathmove->num_states - 1]));
  258. #endif
  259. bitbang_path_move(cmd->cmd.pathmove);
  260. break;
  261. case JTAG_SCAN:
  262. #ifdef _DEBUG_JTAG_IO_
  263. LOG_DEBUG("%s scan end in %s", (cmd->cmd.scan->ir_scan) ? "IR" : "DR", tap_state_name(cmd->cmd.scan->end_state) );
  264. #endif
  265. if (cmd->cmd.scan->end_state != TAP_INVALID)
  266. bitbang_end_state(cmd->cmd.scan->end_state);
  267. scan_size = jtag_build_buffer(cmd->cmd.scan, &buffer);
  268. type = jtag_scan_type(cmd->cmd.scan);
  269. bitbang_scan(cmd->cmd.scan->ir_scan, type, buffer, scan_size);
  270. if (jtag_read_buffer(buffer, cmd->cmd.scan) != ERROR_OK)
  271. retval = ERROR_JTAG_QUEUE_FAILED;
  272. if (buffer)
  273. free(buffer);
  274. break;
  275. case JTAG_SLEEP:
  276. #ifdef _DEBUG_JTAG_IO_
  277. LOG_DEBUG("sleep %i", cmd->cmd.sleep->us);
  278. #endif
  279. jtag_sleep(cmd->cmd.sleep->us);
  280. break;
  281. default:
  282. LOG_ERROR("BUG: unknown JTAG command type encountered");
  283. exit(-1);
  284. }
  285. cmd = cmd->next;
  286. }
  287. if(bitbang_interface->blink)
  288. bitbang_interface->blink(0);
  289. return retval;
  290. }