- Added support for native MinGW builds (thanks to Spencer Oliver and Michael Fischer...
[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 void bitbang_end_state(enum tap_state state)
45 {
46 if (tap_move_map[state] != -1)
47 end_state = state;
48 else
49 {
50 ERROR("BUG: %i is not a valid end state", state);
51 exit(-1);
52 }
53 }
54
55 void bitbang_state_move(void) {
56
57 int i=0, tms=0;
58 u8 tms_scan = TAP_MOVE(cur_state, end_state);
59
60 for (i = 0; i < 7; i++)
61 {
62 tms = (tms_scan >> i) & 1;
63 bitbang_interface->write(0, tms, 0);
64 bitbang_interface->write(1, tms, 0);
65 }
66 bitbang_interface->write(0, tms, 0);
67
68 cur_state = end_state;
69 }
70
71 void bitbang_path_move(pathmove_command_t *cmd)
72 {
73 int num_states = cmd->num_states;
74 int state_count;
75
76 state_count = 0;
77 while (num_states)
78 {
79 if (tap_transitions[cur_state].low == cmd->path[state_count])
80 {
81 bitbang_interface->write(0, 0, 0);
82 bitbang_interface->write(1, 0, 0);
83 }
84 else if (tap_transitions[cur_state].high == cmd->path[state_count])
85 {
86 bitbang_interface->write(0, 1, 0);
87 bitbang_interface->write(1, 1, 0);
88 }
89 else
90 {
91 ERROR("BUG: %s -> %s isn't a valid TAP transition", tap_state_strings[cur_state], tap_state_strings[cmd->path[state_count]]);
92 exit(-1);
93 }
94
95 cur_state = cmd->path[state_count];
96 state_count++;
97 num_states--;
98 }
99
100 end_state = cur_state;
101 }
102
103 void bitbang_runtest(int num_cycles)
104 {
105 int i;
106
107 enum tap_state saved_end_state = end_state;
108
109 /* only do a state_move when we're not already in RTI */
110 if (cur_state != TAP_RTI)
111 {
112 bitbang_end_state(TAP_RTI);
113 bitbang_state_move();
114 }
115
116 /* execute num_cycles */
117 bitbang_interface->write(0, 0, 0);
118 for (i = 0; i < num_cycles; i++)
119 {
120 bitbang_interface->write(1, 0, 0);
121 bitbang_interface->write(0, 0, 0);
122 }
123
124 /* finish in end_state */
125 bitbang_end_state(saved_end_state);
126 if (cur_state != end_state)
127 bitbang_state_move();
128 }
129
130 void bitbang_scan(int ir_scan, enum scan_type type, u8 *buffer, int scan_size)
131 {
132 enum tap_state saved_end_state = end_state;
133 int bit_cnt;
134
135 if (ir_scan)
136 bitbang_end_state(TAP_SI);
137 else
138 bitbang_end_state(TAP_SD);
139
140 bitbang_state_move();
141 bitbang_end_state(saved_end_state);
142
143 for (bit_cnt = 0; bit_cnt < scan_size; bit_cnt++)
144 {
145 if ((buffer[bit_cnt/8] >> (bit_cnt % 8)) & 0x1) {
146 bitbang_interface->write(0, (bit_cnt==scan_size-1) ? 1 : 0, 1);
147 bitbang_interface->write(1, (bit_cnt==scan_size-1) ? 1 : 0, 1);
148 } else {
149 bitbang_interface->write(0, (bit_cnt==scan_size-1) ? 1 : 0, 0);
150 bitbang_interface->write(1, (bit_cnt==scan_size-1) ? 1 : 0, 0);
151 }
152
153 if (type != SCAN_OUT)
154 {
155 if (bitbang_interface->read())
156 buffer[(bit_cnt)/8] |= 1 << ((bit_cnt) % 8);
157 else
158 buffer[(bit_cnt)/8] &= ~(1 << ((bit_cnt) % 8));
159 }
160 }
161
162 /* Exit1 -> Pause */
163 bitbang_interface->write(0, 0, 0);
164 bitbang_interface->write(1, 0, 0);
165
166 if (ir_scan)
167 cur_state = TAP_PI;
168 else
169 cur_state = TAP_PD;
170
171 if (cur_state != end_state)
172 bitbang_state_move();
173 }
174
175 int bitbang_execute_queue(void)
176 {
177 jtag_command_t *cmd = jtag_command_queue; /* currently processed command */
178 int scan_size;
179 enum scan_type type;
180 u8 *buffer;
181
182 if (!bitbang_interface)
183 {
184 ERROR("BUG: Bitbang interface called, but not yet initialized");
185 exit(-1);
186 }
187
188 while (cmd)
189 {
190 switch (cmd->type)
191 {
192 case JTAG_END_STATE:
193 #ifdef _DEBUG_JTAG_IO_
194 DEBUG("end_state: %i", cmd->cmd.end_state->end_state);
195 #endif
196 if (cmd->cmd.end_state->end_state != -1)
197 bitbang_end_state(cmd->cmd.end_state->end_state);
198 break;
199 case JTAG_RESET:
200 #ifdef _DEBUG_JTAG_IO_
201 DEBUG("reset trst: %i srst %i", cmd->cmd.reset->trst, cmd->cmd.reset->srst);
202 #endif
203 if (cmd->cmd.reset->trst == 1)
204 {
205 cur_state = TAP_TLR;
206 }
207 bitbang_interface->reset(cmd->cmd.reset->trst, cmd->cmd.reset->srst);
208 break;
209 case JTAG_RUNTEST:
210 #ifdef _DEBUG_JTAG_IO_
211 DEBUG("runtest %i cycles, end in %i", cmd->cmd.runtest->num_cycles, cmd->cmd.runtest->end_state);
212 #endif
213 if (cmd->cmd.runtest->end_state != -1)
214 bitbang_end_state(cmd->cmd.runtest->end_state);
215 bitbang_runtest(cmd->cmd.runtest->num_cycles);
216 break;
217 case JTAG_STATEMOVE:
218 #ifdef _DEBUG_JTAG_IO_
219 DEBUG("statemove end in %i", cmd->cmd.statemove->end_state);
220 #endif
221 if (cmd->cmd.statemove->end_state != -1)
222 bitbang_end_state(cmd->cmd.statemove->end_state);
223 bitbang_state_move();
224 break;
225 case JTAG_PATHMOVE:
226 #ifdef _DEBUG_JTAG_IO_
227 DEBUG("pathmove: %i states, end in %i", cmd->cmd.pathmove->num_states, cmd->cmd.pathmove->path[cmd->cmd.pathmove->num_states - 1]);
228 #endif
229 bitbang_path_move(cmd->cmd.pathmove);
230 break;
231 case JTAG_SCAN:
232 #ifdef _DEBUG_JTAG_IO_
233 DEBUG("scan end in %i", cmd->cmd.scan->end_state);
234 #endif
235 if (cmd->cmd.scan->end_state != -1)
236 bitbang_end_state(cmd->cmd.scan->end_state);
237 scan_size = jtag_build_buffer(cmd->cmd.scan, &buffer);
238 type = jtag_scan_type(cmd->cmd.scan);
239 bitbang_scan(cmd->cmd.scan->ir_scan, type, buffer, scan_size);
240 if (jtag_read_buffer(buffer, cmd->cmd.scan) != ERROR_OK)
241 return ERROR_JTAG_QUEUE_FAILED;
242 if (buffer)
243 free(buffer);
244 break;
245 case JTAG_SLEEP:
246 #ifdef _DEBUG_JTAG_IO_
247 DEBUG("sleep", cmd->cmd.sleep->us);
248 #endif
249 jtag_sleep(cmd->cmd.sleep->us);
250 break;
251 default:
252 ERROR("BUG: unknown JTAG command type encountered");
253 exit(-1);
254 }
255 cmd = cmd->next;
256 }
257
258 return ERROR_OK;
259 }
260

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)