use jtag.c's cur/end_state global variables.
[openocd.git] / src / jtag / bitbang.c
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 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23
24 #include "bitbang.h"
25
26 /* project specific includes */
27 #include "log.h"
28 #include "types.h"
29 #include "jtag.h"
30 #include "configuration.h"
31
32 /* system includes */
33 #include <string.h>
34 #include <stdlib.h>
35 #include <unistd.h>
36
37 #include <sys/time.h>
38 #include <time.h>
39
40 bitbang_interface_t *bitbang_interface;
41
42 int bitbang_execute_queue(void);
43
44 /* The bitbang driver leaves the TCK 0 when in idle */
45
46 void bitbang_end_state(enum tap_state state)
47 {
48 if (tap_move_map[state] != -1)
49 end_state = state;
50 else
51 {
52 LOG_ERROR("BUG: %i is not a valid end state", state);
53 exit(-1);
54 }
55 }
56
57 void bitbang_state_move(void) {
58
59 int i=0, tms=0;
60 u8 tms_scan = TAP_MOVE(cur_state, end_state);
61
62 for (i = 0; i < 7; i++)
63 {
64 tms = (tms_scan >> i) & 1;
65 bitbang_interface->write(0, tms, 0);
66 bitbang_interface->write(1, tms, 0);
67 }
68 bitbang_interface->write(0, tms, 0);
69
70 cur_state = end_state;
71 }
72
73 void bitbang_path_move(pathmove_command_t *cmd)
74 {
75 int num_states = cmd->num_states;
76 int state_count;
77 int tms = 0;
78
79 state_count = 0;
80 while (num_states)
81 {
82 if (tap_transitions[cur_state].low == cmd->path[state_count])
83 {
84 tms = 0;
85 }
86 else if (tap_transitions[cur_state].high == cmd->path[state_count])
87 {
88 tms = 1;
89 }
90 else
91 {
92 LOG_ERROR("BUG: %s -> %s isn't a valid TAP transition", tap_state_strings[cur_state], tap_state_strings[cmd->path[state_count]]);
93 exit(-1);
94 }
95
96 bitbang_interface->write(0, tms, 0);
97 bitbang_interface->write(1, tms, 0);
98
99 cur_state = cmd->path[state_count];
100 state_count++;
101 num_states--;
102 }
103
104 bitbang_interface->write(0, tms, 0);
105
106 end_state = cur_state;
107 }
108
109 void bitbang_runtest(int num_cycles)
110 {
111 int i;
112
113 enum tap_state saved_end_state = end_state;
114
115 /* only do a state_move when we're not already in RTI */
116 if (cur_state != TAP_RTI)
117 {
118 bitbang_end_state(TAP_RTI);
119 bitbang_state_move();
120 }
121
122 /* execute num_cycles */
123 bitbang_interface->write(0, 0, 0);
124 for (i = 0; i < num_cycles; i++)
125 {
126 bitbang_interface->write(1, 0, 0);
127 bitbang_interface->write(0, 0, 0);
128 }
129
130 /* finish in end_state */
131 bitbang_end_state(saved_end_state);
132 if (cur_state != end_state)
133 bitbang_state_move();
134 }
135
136 void bitbang_scan(int ir_scan, enum scan_type type, u8 *buffer, int scan_size)
137 {
138 enum tap_state saved_end_state = end_state;
139 int bit_cnt;
140
141 if (!((!ir_scan && (cur_state == TAP_SD)) || (ir_scan && (cur_state == TAP_SI))))
142 {
143 if (ir_scan)
144 bitbang_end_state(TAP_SI);
145 else
146 bitbang_end_state(TAP_SD);
147
148 bitbang_state_move();
149 bitbang_end_state(saved_end_state);
150 }
151
152 for (bit_cnt = 0; bit_cnt < scan_size; bit_cnt++)
153 {
154 /* if we're just reading the scan, but don't care about the output
155 * default to outputting 'low', this also makes valgrind traces more readable,
156 * as it removes the dependency on an uninitialised value
157 */
158 if ((type != SCAN_IN) && ((buffer[bit_cnt/8] >> (bit_cnt % 8)) & 0x1))
159 {
160 bitbang_interface->write(0, (bit_cnt==scan_size-1) ? 1 : 0, 1);
161 bitbang_interface->write(1, (bit_cnt==scan_size-1) ? 1 : 0, 1);
162 } else {
163 bitbang_interface->write(0, (bit_cnt==scan_size-1) ? 1 : 0, 0);
164 bitbang_interface->write(1, (bit_cnt==scan_size-1) ? 1 : 0, 0);
165 }
166
167 if (type != SCAN_OUT)
168 {
169 /*
170 TDO should be sampled on the rising edge, and will change
171 on the falling edge.
172
173 Because there is no way to read the signal exactly at the rising edge,
174 read after the rising edge.
175
176 This is plain IEEE 1149 JTAG - nothing specific to the OpenOCD or its JTAG
177 API.
178 */
179 if (bitbang_interface->read())
180 buffer[(bit_cnt)/8] |= 1 << ((bit_cnt) % 8);
181 else
182 buffer[(bit_cnt)/8] &= ~(1 << ((bit_cnt) % 8));
183 }
184 }
185
186 /* TAP_SD & TAP_SI are illegal end states, so we always transition to the pause
187 * state which is a legal stable state from which statemove will work.
188 *
189 * Exit1 -> Pause
190 */
191 bitbang_interface->write(0, 0, 0);
192 bitbang_interface->write(1, 0, 0);
193 bitbang_interface->write(0, 0, 0);
194
195 if (ir_scan)
196 cur_state = TAP_PI;
197 else
198 cur_state = TAP_PD;
199
200 if (cur_state != end_state)
201 bitbang_state_move();
202 }
203
204 int bitbang_execute_queue(void)
205 {
206 jtag_command_t *cmd = jtag_command_queue; /* currently processed command */
207 int scan_size;
208 enum scan_type type;
209 u8 *buffer;
210 int retval;
211
212 if (!bitbang_interface)
213 {
214 LOG_ERROR("BUG: Bitbang interface called, but not yet initialized");
215 exit(-1);
216 }
217
218 /* return ERROR_OK, unless a jtag_read_buffer returns a failed check
219 * that wasn't handled by a caller-provided error handler
220 */
221 retval = ERROR_OK;
222
223 if(bitbang_interface->blink)
224 bitbang_interface->blink(1);
225
226 while (cmd)
227 {
228 switch (cmd->type)
229 {
230 case JTAG_END_STATE:
231 #ifdef _DEBUG_JTAG_IO_
232 LOG_DEBUG("end_state: %i", cmd->cmd.end_state->end_state);
233 #endif
234 if (cmd->cmd.end_state->end_state != -1)
235 bitbang_end_state(cmd->cmd.end_state->end_state);
236 break;
237 case JTAG_RESET:
238 #ifdef _DEBUG_JTAG_IO_
239 LOG_DEBUG("reset trst: %i srst %i", cmd->cmd.reset->trst, cmd->cmd.reset->srst);
240 #endif
241 if ((cmd->cmd.reset->trst == 1) || (cmd->cmd.reset->srst && (jtag_reset_config & RESET_SRST_PULLS_TRST)))
242 {
243 cur_state = TAP_TLR;
244 }
245 bitbang_interface->reset(cmd->cmd.reset->trst, cmd->cmd.reset->srst);
246 break;
247 case JTAG_RUNTEST:
248 #ifdef _DEBUG_JTAG_IO_
249 LOG_DEBUG("runtest %i cycles, end in %i", cmd->cmd.runtest->num_cycles, cmd->cmd.runtest->end_state);
250 #endif
251 if (cmd->cmd.runtest->end_state != -1)
252 bitbang_end_state(cmd->cmd.runtest->end_state);
253 bitbang_runtest(cmd->cmd.runtest->num_cycles);
254 break;
255 case JTAG_STATEMOVE:
256 #ifdef _DEBUG_JTAG_IO_
257 LOG_DEBUG("statemove end in %i", cmd->cmd.statemove->end_state);
258 #endif
259 if (cmd->cmd.statemove->end_state != -1)
260 bitbang_end_state(cmd->cmd.statemove->end_state);
261 bitbang_state_move();
262 break;
263 case JTAG_PATHMOVE:
264 #ifdef _DEBUG_JTAG_IO_
265 LOG_DEBUG("pathmove: %i states, end in %i", cmd->cmd.pathmove->num_states, cmd->cmd.pathmove->path[cmd->cmd.pathmove->num_states - 1]);
266 #endif
267 bitbang_path_move(cmd->cmd.pathmove);
268 break;
269 case JTAG_SCAN:
270 #ifdef _DEBUG_JTAG_IO_
271 LOG_DEBUG("%s scan end in %i", (cmd->cmd.scan->ir_scan) ? "IR" : "DR", cmd->cmd.scan->end_state);
272 #endif
273 if (cmd->cmd.scan->end_state != -1)
274 bitbang_end_state(cmd->cmd.scan->end_state);
275 scan_size = jtag_build_buffer(cmd->cmd.scan, &buffer);
276 type = jtag_scan_type(cmd->cmd.scan);
277 bitbang_scan(cmd->cmd.scan->ir_scan, type, buffer, scan_size);
278 if (jtag_read_buffer(buffer, cmd->cmd.scan) != ERROR_OK)
279 retval = ERROR_JTAG_QUEUE_FAILED;
280 if (buffer)
281 free(buffer);
282 break;
283 case JTAG_SLEEP:
284 #ifdef _DEBUG_JTAG_IO_
285 LOG_DEBUG("sleep %i", cmd->cmd.sleep->us);
286 #endif
287 jtag_sleep(cmd->cmd.sleep->us);
288 break;
289 default:
290 LOG_ERROR("BUG: unknown JTAG command type encountered");
291 exit(-1);
292 }
293 cmd = cmd->next;
294 }
295 if(bitbang_interface->blink)
296 bitbang_interface->blink(0);
297
298 return retval;
299 }
300

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)