Add FTDI JTAG driver using MPSSE layer
[openocd.git] / src / jtag / drivers / ftdi.c
1 /**************************************************************************
2 * Copyright (C) 2012 by Andreas Fritiofson *
3 * andreas.fritiofson@gmail.com *
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
21 /**
22 * @file
23 * JTAG adapters based on the FT2232 full and high speed USB parts are
24 * popular low cost JTAG debug solutions. Many FT2232 based JTAG adapters
25 * are discrete, but development boards may integrate them as alternatives
26 * to more capable (and expensive) third party JTAG pods.
27 *
28 * JTAG uses only one of the two communications channels ("MPSSE engines")
29 * on these devices. Adapters based on FT4232 parts have four ports/channels
30 * (A/B/C/D), instead of just two (A/B).
31 *
32 * Especially on development boards integrating one of these chips (as
33 * opposed to discrete pods/dongles), the additional channels can be used
34 * for a variety of purposes, but OpenOCD only uses one channel at a time.
35 *
36 * - As a USB-to-serial adapter for the target's console UART ...
37 * which may be able to support ROM boot loaders that load initial
38 * firmware images to flash (or SRAM).
39 *
40 * - On systems which support ARM's SWD in addition to JTAG, or instead
41 * of it, that second port can be used for reading SWV/SWO trace data.
42 *
43 * - Additional JTAG links, e.g. to a CPLD or * FPGA.
44 *
45 * FT2232 based JTAG adapters are "dumb" not "smart", because most JTAG
46 * request/response interactions involve round trips over the USB link.
47 * A "smart" JTAG adapter has intelligence close to the scan chain, so it
48 * can for example poll quickly for a status change (usually taking on the
49 * order of microseconds not milliseconds) before beginning a queued
50 * transaction which require the previous one to have completed.
51 *
52 * There are dozens of adapters of this type, differing in details which
53 * this driver needs to understand. Those "layout" details are required
54 * as part of FT2232 driver configuration.
55 *
56 * This code uses information contained in the MPSSE specification which was
57 * found here:
58 * http://www.ftdichip.com/Documents/AppNotes/AN2232C-01_MPSSE_Cmnd.pdf
59 * Hereafter this is called the "MPSSE Spec".
60 *
61 * The datasheet for the ftdichip.com's FT2232D part is here:
62 * http://www.ftdichip.com/Documents/DataSheets/DS_FT2232D.pdf
63 *
64 * Also note the issue with code 0x4b (clock data to TMS) noted in
65 * http://developer.intra2net.com/mailarchive/html/libftdi/2009/msg00292.html
66 * which can affect longer JTAG state paths.
67 */
68
69 #ifdef HAVE_CONFIG_H
70 #include "config.h"
71 #endif
72
73 /* project specific includes */
74 #include <jtag/interface.h>
75 #include <transport/transport.h>
76 #include <helper/time_support.h>
77
78 #if IS_CYGWIN == 1
79 #include <windows.h>
80 #endif
81
82 #include <assert.h>
83
84 /* FTDI access library includes */
85 #include "mpsse.h"
86
87 #define JTAG_MODE (LSB_FIRST | POS_EDGE_IN | NEG_EDGE_OUT)
88
89 static char *ftdi_device_desc;
90 static char *ftdi_serial;
91 static uint8_t ftdi_channel;
92
93 #define MAX_USB_IDS 8
94 /* vid = pid = 0 marks the end of the list */
95 static uint16_t ftdi_vid[MAX_USB_IDS + 1] = { 0 };
96 static uint16_t ftdi_pid[MAX_USB_IDS + 1] = { 0 };
97
98 static struct mpsse_ctx *mpsse_ctx;
99
100 struct signal {
101 const char *name;
102 uint16_t data_mask;
103 uint16_t oe_mask;
104 bool invert_data;
105 bool invert_oe;
106 struct signal *next;
107 };
108
109 static struct signal *signals;
110
111 static uint16_t output;
112 static uint16_t direction;
113
114 static struct signal *find_signal_by_name(const char *name)
115 {
116 for (struct signal *sig = signals; sig; sig = sig->next) {
117 if (strcmp(name, sig->name) == 0)
118 return sig;
119 }
120 return NULL;
121 }
122
123 static struct signal *create_signal(const char *name)
124 {
125 struct signal **psig = &signals;
126 while (*psig)
127 psig = &(*psig)->next;
128
129 *psig = calloc(1, sizeof(**psig));
130 if (*psig)
131 (*psig)->name = strdup(name);
132 if ((*psig)->name == NULL) {
133 free(*psig);
134 *psig = NULL;
135 }
136 return *psig;
137 }
138
139 static int ftdi_set_signal(const struct signal *s, char value)
140 {
141 int retval;
142 bool data;
143 bool oe;
144
145 if (s->data_mask == 0 && s->oe_mask == 0) {
146 LOG_ERROR("interface doesn't provide signal '%s'", s->name);
147 return ERROR_FAIL;
148 }
149 switch (value) {
150 case '0':
151 data = s->invert_data;
152 oe = !s->invert_oe;
153 break;
154 case '1':
155 if (s->data_mask == 0) {
156 LOG_ERROR("interface can't drive '%s' high", s->name);
157 return ERROR_FAIL;
158 }
159 data = !s->invert_data;
160 oe = !s->invert_oe;
161 break;
162 case 'z':
163 case 'Z':
164 if (s->oe_mask == 0) {
165 LOG_ERROR("interface can't tri-state '%s'", s->name);
166 return ERROR_FAIL;
167 }
168 data = s->invert_data;
169 oe = s->invert_oe;
170 break;
171 default:
172 assert(0 && "invalid signal level specifier");
173 return ERROR_FAIL;
174 }
175
176 output = data ? output | s->data_mask : output & ~s->data_mask;
177 if (s->oe_mask == s->data_mask)
178 direction = oe ? output | s->oe_mask : output & ~s->oe_mask;
179 else
180 output = oe ? output | s->oe_mask : output & ~s->oe_mask;
181
182 retval = mpsse_set_data_bits_low_byte(mpsse_ctx, output & 0xff, direction & 0xff);
183 if (retval == ERROR_OK)
184 retval = mpsse_set_data_bits_high_byte(mpsse_ctx, output >> 8, direction >> 8);
185 if (retval != ERROR_OK) {
186 LOG_ERROR("couldn't initialize FTDI GPIO");
187 return ERROR_JTAG_INIT_FAILED;
188 }
189
190 return ERROR_OK;
191 }
192
193
194 /**
195 * Function move_to_state
196 * moves the TAP controller from the current state to a
197 * \a goal_state through a path given by tap_get_tms_path(). State transition
198 * logging is performed by delegation to clock_tms().
199 *
200 * @param goal_state is the destination state for the move.
201 */
202 static int move_to_state(tap_state_t goal_state)
203 {
204 tap_state_t start_state = tap_get_state();
205
206 /* goal_state is 1/2 of a tuple/pair of states which allow convenient
207 lookup of the required TMS pattern to move to this state from the
208 start state.
209 */
210
211 /* do the 2 lookups */
212 int tms_bits = tap_get_tms_path(start_state, goal_state);
213 int tms_count = tap_get_tms_path_len(start_state, goal_state);
214
215 DEBUG_JTAG_IO("start=%s goal=%s", tap_state_name(start_state), tap_state_name(goal_state));
216
217 /* Track state transitions step by step */
218 for (int i = 0; i < tms_count; i++)
219 tap_set_state(tap_state_transition(tap_get_state(), (tms_bits >> i) & 1));
220
221 return mpsse_clock_tms_cs_out(mpsse_ctx,
222 (uint8_t *)&tms_bits,
223 0,
224 tms_count,
225 false,
226 JTAG_MODE);
227 }
228
229 static int ftdi_speed(int speed)
230 {
231 int retval;
232 retval = mpsse_set_frequency(mpsse_ctx, speed);
233
234 if (retval < 0) {
235 LOG_ERROR("couldn't set FTDI TCK speed");
236 return retval;
237 }
238
239 return ERROR_OK;
240 }
241
242 static int ftdi_speed_div(int speed, int *khz)
243 {
244 *khz = speed / 1000;
245 return ERROR_OK;
246 }
247
248 static int ftdi_khz(int khz, int *jtag_speed)
249 {
250 *jtag_speed = khz * 1000;
251 return ERROR_OK;
252 }
253
254 static void ftdi_end_state(tap_state_t state)
255 {
256 if (tap_is_state_stable(state))
257 tap_set_end_state(state);
258 else {
259 LOG_ERROR("BUG: %s is not a stable end state", tap_state_name(state));
260 exit(-1);
261 }
262 }
263
264 static int ftdi_execute_runtest(struct jtag_command *cmd)
265 {
266 int retval = ERROR_OK;
267 int i;
268 uint8_t zero = 0;
269
270 DEBUG_JTAG_IO("runtest %i cycles, end in %s",
271 cmd->cmd.runtest->num_cycles,
272 tap_state_name(cmd->cmd.runtest->end_state));
273
274 if (tap_get_state() != TAP_IDLE)
275 move_to_state(TAP_IDLE);
276
277 /* TODO: Reuse ftdi_execute_stableclocks */
278 i = cmd->cmd.runtest->num_cycles;
279 while (i > 0 && retval == ERROR_OK) {
280 /* there are no state transitions in this code, so omit state tracking */
281 unsigned this_len = i > 7 ? 7 : i;
282 retval = mpsse_clock_tms_cs_out(mpsse_ctx, &zero, 0, this_len, false, JTAG_MODE);
283 i -= this_len;
284 }
285
286 ftdi_end_state(cmd->cmd.runtest->end_state);
287
288 if (tap_get_state() != tap_get_end_state())
289 move_to_state(tap_get_end_state());
290
291 DEBUG_JTAG_IO("runtest: %i, end in %s",
292 cmd->cmd.runtest->num_cycles,
293 tap_state_name(tap_get_end_state()));
294 return retval;
295 }
296
297 static int ftdi_execute_statemove(struct jtag_command *cmd)
298 {
299 int retval = ERROR_OK;
300
301 DEBUG_JTAG_IO("statemove end in %s",
302 tap_state_name(cmd->cmd.statemove->end_state));
303
304 ftdi_end_state(cmd->cmd.statemove->end_state);
305
306 /* shortest-path move to desired end state */
307 if (tap_get_state() != tap_get_end_state() || tap_get_end_state() == TAP_RESET)
308 move_to_state(tap_get_end_state());
309
310 return retval;
311 }
312
313 /**
314 * Clock a bunch of TMS (or SWDIO) transitions, to change the JTAG
315 * (or SWD) state machine. REVISIT: Not the best method, perhaps.
316 */
317 static int ftdi_execute_tms(struct jtag_command *cmd)
318 {
319 DEBUG_JTAG_IO("TMS: %d bits", cmd->cmd.tms->num_bits);
320
321 /* TODO: Missing tap state tracking, also missing from ft2232.c! */
322 return mpsse_clock_tms_cs_out(mpsse_ctx,
323 cmd->cmd.tms->bits,
324 0,
325 cmd->cmd.tms->num_bits,
326 false,
327 JTAG_MODE);
328 }
329
330 static int ftdi_execute_pathmove(struct jtag_command *cmd)
331 {
332 int retval = ERROR_OK;
333
334 tap_state_t *path = cmd->cmd.pathmove->path;
335 int num_states = cmd->cmd.pathmove->num_states;
336
337 DEBUG_JTAG_IO("pathmove: %i states, current: %s end: %s", num_states,
338 tap_state_name(tap_get_state()),
339 tap_state_name(path[num_states-1]));
340
341 int state_count = 0;
342 unsigned bit_count = 0;
343 uint8_t tms_byte = 0;
344
345 DEBUG_JTAG_IO("-");
346
347 /* this loop verifies that the path is legal and logs each state in the path */
348 while (num_states-- && retval == ERROR_OK) {
349
350 /* either TMS=0 or TMS=1 must work ... */
351 if (tap_state_transition(tap_get_state(), false)
352 == path[state_count])
353 buf_set_u32(&tms_byte, bit_count++, 1, 0x0);
354 else if (tap_state_transition(tap_get_state(), true)
355 == path[state_count]) {
356 buf_set_u32(&tms_byte, bit_count++, 1, 0x1);
357
358 /* ... or else the caller goofed BADLY */
359 } else {
360 LOG_ERROR("BUG: %s -> %s isn't a valid "
361 "TAP state transition",
362 tap_state_name(tap_get_state()),
363 tap_state_name(path[state_count]));
364 exit(-1);
365 }
366
367 tap_set_state(path[state_count]);
368 state_count++;
369
370 if (bit_count == 7 || num_states == 0) {
371 retval = mpsse_clock_tms_cs_out(mpsse_ctx,
372 &tms_byte,
373 0,
374 bit_count,
375 false,
376 JTAG_MODE);
377 bit_count = 0;
378 }
379 }
380 tap_set_end_state(tap_get_state());
381
382 return retval;
383 }
384
385 static int ftdi_execute_scan(struct jtag_command *cmd)
386 {
387 int retval = ERROR_OK;
388
389 DEBUG_JTAG_IO("%s type:%d", cmd->cmd.scan->ir_scan ? "IRSCAN" : "DRSCAN",
390 jtag_scan_type(cmd->cmd.scan));
391
392 if (cmd->cmd.scan->ir_scan) {
393 if (tap_get_state() != TAP_IRSHIFT)
394 move_to_state(TAP_IRSHIFT);
395 } else {
396 if (tap_get_state() != TAP_DRSHIFT)
397 move_to_state(TAP_DRSHIFT);
398 }
399
400 ftdi_end_state(cmd->cmd.scan->end_state);
401
402 struct scan_field *field = cmd->cmd.scan->fields;
403 unsigned scan_size = 0;
404
405 for (int i = 0; i < cmd->cmd.scan->num_fields; i++, field++) {
406 scan_size += field->num_bits;
407 DEBUG_JTAG_IO("%s%s field %d/%d %d bits",
408 field->in_value ? "in" : "",
409 field->out_value ? "out" : "",
410 i,
411 cmd->cmd.scan->num_fields,
412 field->num_bits);
413
414 if (i == cmd->cmd.scan->num_fields - 1 && tap_get_state() != tap_get_end_state()) {
415 /* Last field, and we're leaving IRSHIFT/DRSHIFT. Clock last bit during tap
416 *movement */
417 mpsse_clock_data(mpsse_ctx,
418 field->out_value,
419 0,
420 field->in_value,
421 0,
422 field->num_bits - 1,
423 JTAG_MODE);
424 uint8_t last_bit = 0;
425 if (field->out_value)
426 bit_copy(&last_bit, 0, field->out_value, field->num_bits - 1, 1);
427 uint8_t tms_bits = 0x01;
428 retval = mpsse_clock_tms_cs(mpsse_ctx,
429 &tms_bits,
430 0,
431 field->in_value,
432 field->num_bits - 1,
433 1,
434 last_bit,
435 JTAG_MODE);
436 tap_set_state(tap_state_transition(tap_get_state(), 1));
437 retval = mpsse_clock_tms_cs_out(mpsse_ctx,
438 &tms_bits,
439 1,
440 1,
441 last_bit,
442 JTAG_MODE);
443 tap_set_state(tap_state_transition(tap_get_state(), 0));
444 } else
445 mpsse_clock_data(mpsse_ctx,
446 field->out_value,
447 0,
448 field->in_value,
449 0,
450 field->num_bits,
451 JTAG_MODE);
452 if (retval != ERROR_OK) {
453 LOG_ERROR("failed to add field %d in scan", i);
454 return retval;
455 }
456 }
457
458 if (tap_get_state() != tap_get_end_state())
459 move_to_state(tap_get_end_state());
460
461 DEBUG_JTAG_IO("%s scan, %i bits, end in %s",
462 (cmd->cmd.scan->ir_scan) ? "IR" : "DR", scan_size,
463 tap_state_name(tap_get_end_state()));
464 return retval;
465
466 }
467
468 static int ftdi_execute_reset(struct jtag_command *cmd)
469 {
470 DEBUG_JTAG_IO("reset trst: %i srst %i",
471 cmd->cmd.reset->trst, cmd->cmd.reset->srst);
472
473 if (cmd->cmd.reset->trst == 1
474 || (cmd->cmd.reset->srst
475 && (jtag_get_reset_config() & RESET_SRST_PULLS_TRST)))
476 tap_set_state(TAP_RESET);
477
478 struct signal *trst = find_signal_by_name("nTRST");
479 if (trst && cmd->cmd.reset->trst == 1) {
480 ftdi_set_signal(trst, '0');
481 } else if (trst && cmd->cmd.reset->trst == 0) {
482 if (jtag_get_reset_config() & RESET_TRST_OPEN_DRAIN)
483 ftdi_set_signal(trst, 'z');
484 else
485 ftdi_set_signal(trst, '1');
486 }
487
488 struct signal *srst = find_signal_by_name("nSRST");
489 if (srst && cmd->cmd.reset->srst == 1) {
490 ftdi_set_signal(srst, '0');
491 } else if (srst && cmd->cmd.reset->srst == 0) {
492 if (jtag_get_reset_config() & RESET_SRST_PUSH_PULL)
493 ftdi_set_signal(srst, '1');
494 else
495 ftdi_set_signal(srst, 'z');
496 }
497
498 DEBUG_JTAG_IO("trst: %i, srst: %i",
499 cmd->cmd.reset->trst, cmd->cmd.reset->srst);
500 return ERROR_OK;
501 }
502
503 static int ftdi_execute_sleep(struct jtag_command *cmd)
504 {
505 int retval = ERROR_OK;
506
507 DEBUG_JTAG_IO("sleep %" PRIi32, cmd->cmd.sleep->us);
508
509 retval = mpsse_flush(mpsse_ctx);
510 jtag_sleep(cmd->cmd.sleep->us);
511 DEBUG_JTAG_IO("sleep %" PRIi32 " usec while in %s",
512 cmd->cmd.sleep->us,
513 tap_state_name(tap_get_state()));
514 return retval;
515 }
516
517 static int ftdi_execute_stableclocks(struct jtag_command *cmd)
518 {
519 int retval = ERROR_OK;
520
521 /* this is only allowed while in a stable state. A check for a stable
522 * state was done in jtag_add_clocks()
523 */
524 int num_cycles = cmd->cmd.stableclocks->num_cycles;
525
526 /* 7 bits of either ones or zeros. */
527 uint8_t tms = tap_get_state() == TAP_RESET ? 0x7f : 0x00;
528
529 /* TODO: Use mpsse_clock_data with in=out=0 for this, if TMS can be set to
530 * the correct level and remain there during the scan */
531 while (num_cycles > 0 && retval == ERROR_OK) {
532 /* there are no state transitions in this code, so omit state tracking */
533 unsigned this_len = num_cycles > 7 ? 7 : num_cycles;
534 retval = mpsse_clock_tms_cs_out(mpsse_ctx, &tms, 0, this_len, false, JTAG_MODE);
535 num_cycles -= this_len;
536 }
537
538 DEBUG_JTAG_IO("clocks %i while in %s",
539 cmd->cmd.stableclocks->num_cycles,
540 tap_state_name(tap_get_state()));
541 return retval;
542 }
543
544 static int ftdi_execute_command(struct jtag_command *cmd)
545 {
546 int retval;
547
548 switch (cmd->type) {
549 case JTAG_RESET:
550 retval = ftdi_execute_reset(cmd);
551 break;
552 case JTAG_RUNTEST:
553 retval = ftdi_execute_runtest(cmd);
554 break;
555 case JTAG_TLR_RESET:
556 retval = ftdi_execute_statemove(cmd);
557 break;
558 case JTAG_PATHMOVE:
559 retval = ftdi_execute_pathmove(cmd);
560 break;
561 case JTAG_SCAN:
562 retval = ftdi_execute_scan(cmd);
563 break;
564 case JTAG_SLEEP:
565 retval = ftdi_execute_sleep(cmd);
566 break;
567 case JTAG_STABLECLOCKS:
568 retval = ftdi_execute_stableclocks(cmd);
569 break;
570 case JTAG_TMS:
571 retval = ftdi_execute_tms(cmd);
572 break;
573 default:
574 LOG_ERROR("BUG: unknown JTAG command type encountered: %d", cmd->type);
575 retval = ERROR_JTAG_QUEUE_FAILED;
576 break;
577 }
578 return retval;
579 }
580
581 static int ftdi_execute_queue(void)
582 {
583 int retval = ERROR_OK;
584
585 /* blink, if the current layout has that feature */
586 struct signal *led = find_signal_by_name("LED");
587 if (led)
588 ftdi_set_signal(led, '1');
589
590 for (struct jtag_command *cmd = jtag_command_queue; cmd; cmd = cmd->next) {
591 /* fill the write buffer with the desired command */
592 if (ftdi_execute_command(cmd) != ERROR_OK)
593 retval = ERROR_JTAG_QUEUE_FAILED;
594 }
595
596 if (led)
597 ftdi_set_signal(led, '0');
598
599 retval = mpsse_flush(mpsse_ctx);
600 if (retval != ERROR_OK)
601 LOG_ERROR("error while flushing MPSSE queue: %d", retval);
602
603 return retval;
604 }
605
606 static int ftdi_initialize(void)
607 {
608 int retval;
609
610 if (tap_get_tms_path_len(TAP_IRPAUSE, TAP_IRPAUSE) == 7)
611 LOG_DEBUG("ftdi interface using 7 step jtag state transitions");
612 else
613 LOG_DEBUG("ftdi interface using shortest path jtag state transitions");
614
615 for (int i = 0; ftdi_vid[i] || ftdi_pid[i]; i++) {
616 mpsse_ctx = mpsse_open(&ftdi_vid[i], &ftdi_pid[i], ftdi_device_desc,
617 ftdi_serial, ftdi_channel);
618 if (mpsse_ctx)
619 break;
620 }
621
622 if (!mpsse_ctx)
623 return ERROR_JTAG_INIT_FAILED;
624
625 retval = mpsse_set_data_bits_low_byte(mpsse_ctx, output & 0xff, direction & 0xff);
626 if (retval == ERROR_OK)
627 retval = mpsse_set_data_bits_high_byte(mpsse_ctx, output >> 8, direction >> 8);
628 if (retval != ERROR_OK) {
629 LOG_ERROR("couldn't initialize FTDI with 'JTAGkey' layout");
630 return ERROR_JTAG_INIT_FAILED;
631 }
632
633 retval = mpsse_loopback_config(mpsse_ctx, false);
634 if (retval != ERROR_OK) {
635 LOG_ERROR("couldn't write to FTDI to disable loopback");
636 return ERROR_JTAG_INIT_FAILED;
637 }
638
639 return mpsse_flush(mpsse_ctx);
640 }
641
642 static int ftdi_quit(void)
643 {
644 mpsse_close(mpsse_ctx);
645
646 return ERROR_OK;
647 }
648
649 COMMAND_HANDLER(ftdi_handle_device_desc_command)
650 {
651 if (CMD_ARGC == 1) {
652 if (ftdi_device_desc)
653 free(ftdi_device_desc);
654 ftdi_device_desc = strdup(CMD_ARGV[0]);
655 } else {
656 LOG_ERROR("expected exactly one argument to ftdi_device_desc <description>");
657 }
658
659 return ERROR_OK;
660 }
661
662 COMMAND_HANDLER(ftdi_handle_serial_command)
663 {
664 if (CMD_ARGC == 1) {
665 if (ftdi_serial)
666 free(ftdi_serial);
667 ftdi_serial = strdup(CMD_ARGV[0]);
668 } else {
669 return ERROR_COMMAND_SYNTAX_ERROR;
670 }
671
672 return ERROR_OK;
673 }
674
675 COMMAND_HANDLER(ftdi_handle_channel_command)
676 {
677 if (CMD_ARGC == 1)
678 COMMAND_PARSE_NUMBER(u8, CMD_ARGV[0], ftdi_channel);
679 else
680 return ERROR_COMMAND_SYNTAX_ERROR;
681
682 return ERROR_OK;
683 }
684
685 COMMAND_HANDLER(ftdi_handle_layout_init_command)
686 {
687 if (CMD_ARGC != 2)
688 return ERROR_COMMAND_SYNTAX_ERROR;
689
690 COMMAND_PARSE_NUMBER(u16, CMD_ARGV[0], output);
691 COMMAND_PARSE_NUMBER(u16, CMD_ARGV[1], direction);
692
693 return ERROR_OK;
694 }
695
696 COMMAND_HANDLER(ftdi_handle_layout_signal_command)
697 {
698 if (CMD_ARGC < 1)
699 return ERROR_COMMAND_SYNTAX_ERROR;
700
701 bool invert_data = false;
702 uint16_t data_mask = 0;
703 bool invert_oe = false;
704 uint16_t oe_mask = 0;
705 for (unsigned i = 1; i < CMD_ARGC; i += 2) {
706 if (strcmp("-data", CMD_ARGV[i]) == 0) {
707 invert_data = false;
708 COMMAND_PARSE_NUMBER(u16, CMD_ARGV[i + 1], data_mask);
709 } else if (strcmp("-ndata", CMD_ARGV[i]) == 0) {
710 invert_data = true;
711 COMMAND_PARSE_NUMBER(u16, CMD_ARGV[i + 1], data_mask);
712 } else if (strcmp("-oe", CMD_ARGV[i]) == 0) {
713 invert_oe = false;
714 COMMAND_PARSE_NUMBER(u16, CMD_ARGV[i + 1], oe_mask);
715 } else if (strcmp("-noe", CMD_ARGV[i]) == 0) {
716 invert_oe = true;
717 COMMAND_PARSE_NUMBER(u16, CMD_ARGV[i + 1], oe_mask);
718 } else {
719 LOG_ERROR("unknown option '%s'", CMD_ARGV[i]);
720 return ERROR_COMMAND_SYNTAX_ERROR;
721 }
722 }
723
724 struct signal *sig;
725 sig = find_signal_by_name(CMD_ARGV[0]);
726 if (!sig)
727 sig = create_signal(CMD_ARGV[0]);
728 if (!sig) {
729 LOG_ERROR("failed to create signal %s", CMD_ARGV[0]);
730 return ERROR_FAIL;
731 }
732
733 sig->invert_data = invert_data;
734 sig->data_mask = data_mask;
735 sig->invert_oe = invert_oe;
736 sig->oe_mask = oe_mask;
737
738 return ERROR_OK;
739 }
740
741 COMMAND_HANDLER(ftdi_handle_set_signal_command)
742 {
743 if (CMD_ARGC < 2)
744 return ERROR_COMMAND_SYNTAX_ERROR;
745
746 struct signal *sig;
747 sig = find_signal_by_name(CMD_ARGV[0]);
748 if (!sig) {
749 LOG_ERROR("interface configuration doesn't define signal '%s'", CMD_ARGV[0]);
750 return ERROR_FAIL;
751 }
752
753 switch (*CMD_ARGV[1]) {
754 case '0':
755 case '1':
756 case 'z':
757 case 'Z':
758 /* single character level specifier only */
759 if (CMD_ARGV[1][1] == '\0') {
760 ftdi_set_signal(sig, *CMD_ARGV[1]);
761 break;
762 }
763 default:
764 LOG_ERROR("unknown signal level '%s', use 0, 1 or z", CMD_ARGV[1]);
765 return ERROR_COMMAND_SYNTAX_ERROR;
766 }
767
768 return mpsse_flush(mpsse_ctx);
769 }
770
771 COMMAND_HANDLER(ftdi_handle_vid_pid_command)
772 {
773 if (CMD_ARGC > MAX_USB_IDS * 2) {
774 LOG_WARNING("ignoring extra IDs in ftdi_vid_pid "
775 "(maximum is %d pairs)", MAX_USB_IDS);
776 CMD_ARGC = MAX_USB_IDS * 2;
777 }
778 if (CMD_ARGC < 2 || (CMD_ARGC & 1)) {
779 LOG_WARNING("incomplete ftdi_vid_pid configuration directive");
780 if (CMD_ARGC < 2)
781 return ERROR_COMMAND_SYNTAX_ERROR;
782 /* remove the incomplete trailing id */
783 CMD_ARGC -= 1;
784 }
785
786 unsigned i;
787 for (i = 0; i < CMD_ARGC; i += 2) {
788 COMMAND_PARSE_NUMBER(u16, CMD_ARGV[i], ftdi_vid[i >> 1]);
789 COMMAND_PARSE_NUMBER(u16, CMD_ARGV[i + 1], ftdi_pid[i >> 1]);
790 }
791
792 /*
793 * Explicitly terminate, in case there are multiples instances of
794 * ftdi_vid_pid.
795 */
796 ftdi_vid[i >> 1] = ftdi_pid[i >> 1] = 0;
797
798 return ERROR_OK;
799 }
800
801 static const struct command_registration ftdi_command_handlers[] = {
802 {
803 .name = "ftdi_device_desc",
804 .handler = &ftdi_handle_device_desc_command,
805 .mode = COMMAND_CONFIG,
806 .help = "set the USB device description of the FTDI device",
807 .usage = "description_string",
808 },
809 {
810 .name = "ftdi_serial",
811 .handler = &ftdi_handle_serial_command,
812 .mode = COMMAND_CONFIG,
813 .help = "set the serial number of the FTDI device",
814 .usage = "serial_string",
815 },
816 {
817 .name = "ftdi_channel",
818 .handler = &ftdi_handle_channel_command,
819 .mode = COMMAND_CONFIG,
820 .help = "set the channel of the FTDI device that is used as JTAG",
821 .usage = "(0-3)",
822 },
823 {
824 .name = "ftdi_layout_init",
825 .handler = &ftdi_handle_layout_init_command,
826 .mode = COMMAND_CONFIG,
827 .help = "initialize the FTDI GPIO signals used "
828 "to control output-enables and reset signals",
829 .usage = "data direction",
830 },
831 {
832 .name = "ftdi_layout_signal",
833 .handler = &ftdi_handle_layout_signal_command,
834 .mode = COMMAND_ANY,
835 .help = "define a signal controlled by one or more FTDI GPIO as data "
836 "and/or output enable",
837 .usage = "name [-data mask|-ndata mask] [-oe mask|-noe mask]",
838 },
839 {
840 .name = "ftdi_set_signal",
841 .handler = &ftdi_handle_set_signal_command,
842 .mode = COMMAND_EXEC,
843 .help = "control a layout-specific signal",
844 .usage = "name (1|0|z)",
845 },
846 {
847 .name = "ftdi_vid_pid",
848 .handler = &ftdi_handle_vid_pid_command,
849 .mode = COMMAND_CONFIG,
850 .help = "the vendor ID and product ID of the FTDI device",
851 .usage = "(vid pid)* ",
852 },
853 COMMAND_REGISTRATION_DONE
854 };
855
856 struct jtag_interface ftdi_interface = {
857 .name = "ftdi",
858 .supported = DEBUG_CAP_TMS_SEQ,
859 .commands = ftdi_command_handlers,
860 .transports = jtag_only,
861
862 .init = ftdi_initialize,
863 .quit = ftdi_quit,
864 .speed = ftdi_speed,
865 .speed_div = ftdi_speed_div,
866 .khz = ftdi_khz,
867 .execute_queue = ftdi_execute_queue,
868 };

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)