blob: 62701c36ec337afbec9317f05e6c0a3b7f451083 [file] [log] [blame]
Paul Fox05dfbe62009-06-16 21:08:06 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2009 Paul Fox <pgf@laptop.org>
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +00005 * Copyright (C) 2009, 2010 Carl-Daniel Hailfinger
Paul Fox05dfbe62009-06-16 21:08:06 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Paul Fox05dfbe62009-06-16 21:08:06 +000015 */
16
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000017#if CONFIG_FT2232_SPI == 1
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +000018
Paul Fox05dfbe62009-06-16 21:08:06 +000019#include <stdio.h>
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000020#include <strings.h>
Paul Fox05dfbe62009-06-16 21:08:06 +000021#include <string.h>
22#include <stdlib.h>
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +000023#include <ctype.h>
Paul Fox05dfbe62009-06-16 21:08:06 +000024#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000025#include "programmer.h"
Paul Fox05dfbe62009-06-16 21:08:06 +000026#include "spi.h"
Paul Fox05dfbe62009-06-16 21:08:06 +000027#include <ftdi.h>
28
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +000029/* This is not defined in libftdi.h <0.20 (c7e4c09e68cfa6f5e112334aa1b3bb23401c8dc7 to be exact).
Angel Pons44cfbb02021-04-17 17:07:34 +020030 * Some tests indicate that this is the only change that it is needed to support the FT232H in flashrom. */
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +000031#if !defined(HAVE_FT232H)
32#define TYPE_232H 6
33#endif
34
Uwe Hermann836b26a2011-10-14 20:33:14 +000035/* Please keep sorted by vendor ID, then device ID. */
36
Uwe Hermann70145292010-07-29 19:57:55 +000037#define FTDI_VID 0x0403
38#define FTDI_FT2232H_PID 0x6010
39#define FTDI_FT4232H_PID 0x6011
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +000040#define FTDI_FT232H_PID 0x6014
Uwe Hermann836b26a2011-10-14 20:33:14 +000041#define TIAO_TUMPA_PID 0x8a98
Stefan Taunerb66ed842014-04-27 05:07:35 +000042#define TIAO_TUMPA_LITE_PID 0x8a99
Uwe Hermann70145292010-07-29 19:57:55 +000043#define AMONTEC_JTAGKEY_PID 0xCFF8
Jörg Fischer6529b9f2010-07-29 15:54:53 +000044
Samir Ibradžić7189a5f2011-10-20 23:14:10 +000045#define GOEPEL_VID 0x096C
46#define GOEPEL_PICOTAP_PID 0x1449
47
Alex Badeacaf2d422010-11-10 03:26:57 +000048#define FIC_VID 0x1457
49#define OPENMOKO_DBGBOARD_PID 0x5118
50
Pete Batardc0207062011-06-11 12:21:37 +000051#define OLIMEX_VID 0x15BA
52#define OLIMEX_ARM_OCD_PID 0x0003
53#define OLIMEX_ARM_TINY_PID 0x0004
54#define OLIMEX_ARM_OCD_H_PID 0x002B
55#define OLIMEX_ARM_TINY_H_PID 0x002A
56
Todd Broch6800c952016-02-14 15:46:00 +000057#define GOOGLE_VID 0x18D1
58#define GOOGLE_SERVO_PID 0x5001
59#define GOOGLE_SERVO_V2_PID0 0x5002
60#define GOOGLE_SERVO_V2_PID1 0x5003
61
Thomas Heijligencc853d82021-05-04 15:32:17 +020062static const struct dev_entry devs_ft2232spi[] = {
Uwe Hermann70145292010-07-29 19:57:55 +000063 {FTDI_VID, FTDI_FT2232H_PID, OK, "FTDI", "FT2232H"},
64 {FTDI_VID, FTDI_FT4232H_PID, OK, "FTDI", "FT4232H"},
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +000065 {FTDI_VID, FTDI_FT232H_PID, OK, "FTDI", "FT232H"},
Uwe Hermann836b26a2011-10-14 20:33:14 +000066 {FTDI_VID, TIAO_TUMPA_PID, OK, "TIAO", "USB Multi-Protocol Adapter"},
Stefan Taunerb66ed842014-04-27 05:07:35 +000067 {FTDI_VID, TIAO_TUMPA_LITE_PID, OK, "TIAO", "USB Multi-Protocol Adapter Lite"},
Uwe Hermann70145292010-07-29 19:57:55 +000068 {FTDI_VID, AMONTEC_JTAGKEY_PID, OK, "Amontec", "JTAGkey"},
Samir Ibradžić7189a5f2011-10-20 23:14:10 +000069 {GOEPEL_VID, GOEPEL_PICOTAP_PID, OK, "GOEPEL", "PicoTAP"},
Todd Broch6800c952016-02-14 15:46:00 +000070 {GOOGLE_VID, GOOGLE_SERVO_PID, OK, "Google", "Servo"},
71 {GOOGLE_VID, GOOGLE_SERVO_V2_PID0, OK, "Google", "Servo V2 Legacy"},
72 {GOOGLE_VID, GOOGLE_SERVO_V2_PID1, OK, "Google", "Servo V2"},
Stefan Tauner3e515e22012-09-26 00:48:16 +000073 {FIC_VID, OPENMOKO_DBGBOARD_PID, OK, "FIC", "OpenMoko Neo1973 Debug board (V2+)"},
Stefan Tauner74dc73f2015-03-01 22:04:38 +000074 {OLIMEX_VID, OLIMEX_ARM_OCD_PID, OK, "Olimex", "ARM-USB-OCD"},
Pete Batardc0207062011-06-11 12:21:37 +000075 {OLIMEX_VID, OLIMEX_ARM_TINY_PID, OK, "Olimex", "ARM-USB-TINY"},
Stefan Tauner6697f712014-08-06 15:09:15 +000076 {OLIMEX_VID, OLIMEX_ARM_OCD_H_PID, OK, "Olimex", "ARM-USB-OCD-H"},
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000077 {OLIMEX_VID, OLIMEX_ARM_TINY_H_PID, OK, "Olimex", "ARM-USB-TINY-H"},
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000078
79 {0},
Jörg Fischer6529b9f2010-07-29 15:54:53 +000080};
81
Simon Buhrowdb9be312021-04-09 14:48:39 +020082#define FTDI_HW_BUFFER_SIZE 4096 /* in bytes */
83
Samir Ibradžićb482c6d2012-05-15 22:58:19 +000084#define DEFAULT_DIVISOR 2
Paul Fox05dfbe62009-06-16 21:08:06 +000085
Uwe Hermannc67d0372009-10-01 18:40:02 +000086#define BITMODE_BITBANG_NORMAL 1
87#define BITMODE_BITBANG_SPI 2
Paul Fox05dfbe62009-06-16 21:08:06 +000088
Nico Hubercf880682021-06-20 15:59:57 +020089/*
90 * The variables `cs_bits` and `pindir` store the values for the
91 * "set data bits low byte" MPSSE command that sets the initial
92 * state and the direction of the I/O pins. `cs_bits` pins default
93 * to high and will be toggled during SPI transactions. All other
94 * output pins will be kept low all the time. On exit, all pins
95 * will be reconfigured as inputs.
Antony Pavlovb4dd40c2015-01-25 03:52:47 +000096 *
Nico Hubercf880682021-06-20 15:59:57 +020097 * The pin offsets are as follows:
98 * TCK/SK is bit 0.
99 * TDI/DO is bit 1.
100 * TDO/DI is bit 2.
101 * TMS/CS is bit 3.
102 * GPIOL0 is bit 4.
103 * GPIOL1 is bit 5.
104 * GPIOL2 is bit 6.
105 * GPIOL3 is bit 7.
106 *
107 * The default values (set below in ft2232_spi_init) are used for
108 * most devices:
109 * value: 0x08 CS=high, DI=low, DO=low, SK=low
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000110 * dir: 0x0b CS=output, DI=input, DO=output, SK=output
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000111 */
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000112struct ft2232_data {
113 uint8_t cs_bits;
114 uint8_t pindir;
115 struct ftdi_context ftdi_context;
116};
Paul Fox05dfbe62009-06-16 21:08:06 +0000117
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000118static const char *get_ft2232_devicename(int ft2232_vid, int ft2232_type)
119{
120 int i;
Uwe Hermann70145292010-07-29 19:57:55 +0000121 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000122 if ((devs_ft2232spi[i].device_id == ft2232_type) && (devs_ft2232spi[i].vendor_id == ft2232_vid))
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000123 return devs_ft2232spi[i].device_name;
124 }
125 return "unknown device";
126}
127
128static const char *get_ft2232_vendorname(int ft2232_vid, int ft2232_type)
129{
130 int i;
Uwe Hermann70145292010-07-29 19:57:55 +0000131 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000132 if ((devs_ft2232spi[i].device_id == ft2232_type) && (devs_ft2232spi[i].vendor_id == ft2232_vid))
Uwe Hermann70145292010-07-29 19:57:55 +0000133 return devs_ft2232spi[i].vendor_name;
134 }
135 return "unknown vendor";
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000136}
137
Uwe Hermann70145292010-07-29 19:57:55 +0000138static int send_buf(struct ftdi_context *ftdic, const unsigned char *buf,
139 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +0000140{
141 int r;
142 r = ftdi_write_data(ftdic, (unsigned char *) buf, size);
143 if (r < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000144 msg_perr("ftdi_write_data: %d, %s\n", r, ftdi_get_error_string(ftdic));
Paul Fox05dfbe62009-06-16 21:08:06 +0000145 return 1;
146 }
147 return 0;
148}
149
Uwe Hermann70145292010-07-29 19:57:55 +0000150static int get_buf(struct ftdi_context *ftdic, const unsigned char *buf,
151 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +0000152{
153 int r;
Alex Badeab9556e02010-11-10 03:10:41 +0000154
155 while (size > 0) {
156 r = ftdi_read_data(ftdic, (unsigned char *) buf, size);
157 if (r < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000158 msg_perr("ftdi_read_data: %d, %s\n", r, ftdi_get_error_string(ftdic));
Alex Badeab9556e02010-11-10 03:10:41 +0000159 return 1;
160 }
161 buf += r;
162 size -= r;
Paul Fox05dfbe62009-06-16 21:08:06 +0000163 }
164 return 0;
165}
166
Alan Green460c1c02021-01-08 09:36:45 +1100167static int ft2232_shutdown(void *data)
168{
169 int f;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000170 struct ft2232_data *spi_data = (struct ft2232_data *)data;
171 struct ftdi_context *ftdic = &spi_data->ftdi_context;
Alan Green460c1c02021-01-08 09:36:45 +1100172 unsigned char buf[3];
173
174 msg_pdbg("Releasing I/Os\n");
175 buf[0] = SET_BITS_LOW;
176 buf[1] = 0; /* Output byte ignored */
177 buf[2] = 0; /* Pin direction: all inputs */
178 if (send_buf(ftdic, buf, 3)) {
179 msg_perr("Unable to set pins back inputs: (%s)\n",
180 ftdi_get_error_string(ftdic));
181 }
182
183 if ((f = ftdi_usb_close(ftdic)) < 0) {
184 msg_perr("Unable to close FTDI device: %d (%s)\n", f,
185 ftdi_get_error_string(ftdic));
186 return f;
187 }
188
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000189 free(spi_data);
Alan Green460c1c02021-01-08 09:36:45 +1100190 return 0;
191}
192
Simon Buhrowdb9be312021-04-09 14:48:39 +0200193static bool ft2232_spi_command_fits(const struct spi_command *cmd, size_t buffer_size)
194{
195 const size_t cmd_len = 3; /* same length for any ft2232 command */
196 return
197 /* commands for CS# assertion and de-assertion: */
198 cmd_len + cmd_len
199 /* commands for either a write, a read or both: */
200 + (cmd->writecnt && cmd->readcnt ? cmd_len + cmd_len : cmd_len)
201 /* payload (only writecnt; readcnt concerns another buffer): */
202 + cmd->writecnt
203 <= buffer_size;
204}
205
206/* Returns 0 upon success, a negative number upon errors. */
207static int ft2232_spi_send_multicommand(const struct flashctx *flash, struct spi_command *cmds)
208{
209 struct ft2232_data *spi_data = flash->mst->spi.data;
210 struct ftdi_context *ftdic = &spi_data->ftdi_context;
211 static unsigned char buf[FTDI_HW_BUFFER_SIZE];
212 size_t i = 0;
213 int ret = 0;
214
215 /*
216 * Minimize FTDI-calls by packing as many commands as possible together.
217 */
218 for (; cmds->writecnt || cmds->readcnt; cmds++) {
219
220 if (cmds->writecnt > 65536 || cmds->readcnt > 65536)
221 return SPI_INVALID_LENGTH;
222
223 if (!ft2232_spi_command_fits(cmds, FTDI_HW_BUFFER_SIZE - i)) {
224 msg_perr("Command does not fit\n");
225 return SPI_GENERIC_ERROR;
226 }
227
228 msg_pspew("Assert CS#\n");
229 buf[i++] = SET_BITS_LOW;
Nico Hubercf880682021-06-20 15:59:57 +0200230 buf[i++] = 0; /* assert CS# pins, all other output pins stay low */
Simon Buhrowdb9be312021-04-09 14:48:39 +0200231 buf[i++] = spi_data->pindir;
232
233 /* WREN, OP(PROGRAM, ERASE), ADDR, DATA */
234 if (cmds->writecnt) {
235 buf[i++] = MPSSE_DO_WRITE | MPSSE_WRITE_NEG;
236 buf[i++] = (cmds->writecnt - 1) & 0xff;
237 buf[i++] = ((cmds->writecnt - 1) >> 8) & 0xff;
238 memcpy(buf + i, cmds->writearr, cmds->writecnt);
239 i += cmds->writecnt;
240 }
241
242 /* An optional read command */
243 if (cmds->readcnt) {
244 buf[i++] = MPSSE_DO_READ;
245 buf[i++] = (cmds->readcnt - 1) & 0xff;
246 buf[i++] = ((cmds->readcnt - 1) >> 8) & 0xff;
247 }
248
249 /* Add final de-assert CS# */
250 msg_pspew("De-assert CS#\n");
251 buf[i++] = SET_BITS_LOW;
252 buf[i++] = spi_data->cs_bits;
253 buf[i++] = spi_data->pindir;
254
255 /* continue if there is no read-cmd and further cmds exist */
256 if (!cmds->readcnt &&
257 ((cmds + 1)->writecnt || (cmds + 1)->readcnt) &&
258 ft2232_spi_command_fits((cmds + 1), FTDI_HW_BUFFER_SIZE - i)) {
259 continue;
260 }
261
262 ret = send_buf(ftdic, buf, i);
263 i = 0;
264 if (ret) {
265 msg_perr("send_buf failed: %i\n", ret);
266 break;
267 }
268
269 if (cmds->readcnt) {
270 ret = get_buf(ftdic, cmds->readarr, cmds->readcnt);
271 if (ret) {
272 msg_perr("get_buf failed: %i\n", ret);
273 break;
274 }
275 }
276 }
277 return ret ? -1 : 0;
278}
279
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000280static struct spi_master spi_master_ft2232 = {
Nico Huber1cf407b2017-11-10 20:18:23 +0100281 .features = SPI_MASTER_4BA,
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000282 .max_data_read = 64 * 1024,
283 .max_data_write = 256,
Nico Huber13b33bc2021-06-20 13:20:33 +0200284 .command = default_spi_send_command,
Simon Buhrowdb9be312021-04-09 14:48:39 +0200285 .multicommand = ft2232_spi_send_multicommand,
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000286 .read = default_spi_read,
287 .write_256 = default_spi_write_256,
Nico Huber7bca1262012-06-15 22:28:12 +0000288 .write_aai = default_spi_write_aai,
Michael Karcherb9dbe482011-05-11 17:07:07 +0000289};
290
Uwe Hermann274a20d2011-07-21 09:18:18 +0000291/* Returns 0 upon success, a negative number upon errors. */
Thomas Heijligencc853d82021-05-04 15:32:17 +0200292static int ft2232_spi_init(void)
Paul Fox05dfbe62009-06-16 21:08:06 +0000293{
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000294 int ret;
Paul Fox05dfbe62009-06-16 21:08:06 +0000295 unsigned char buf[512];
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000296 int ft2232_vid = FTDI_VID;
297 int ft2232_type = FTDI_FT4232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000298 int channel_count = 4; /* Stores the number of channels of the device. */
299 enum ftdi_interface ft2232_interface = INTERFACE_A;
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000300 /*
301 * The 'H' chips can run with an internal clock of either 12 MHz or 60 MHz,
302 * but the non-H chips can only run at 12 MHz. We enable the divide-by-5
303 * prescaler on the former to run on the same speed.
304 */
305 uint8_t clock_5x = 1;
306 /* In addition to the prescaler mentioned above there is also another
307 * configurable one on all versions of the chips. Its divisor div can be
308 * set by a 16 bit value x according to the following formula:
309 * div = (1 + x) * 2 <-> x = div / 2 - 1
310 * Hence the expressible divisors are all even numbers between 2 and
311 * 2^17 (=131072) resulting in SCK frequencies of 6 MHz down to about
312 * 92 Hz for 12 MHz inputs.
313 */
314 uint32_t divisor = DEFAULT_DIVISOR;
315 int f;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000316 char *arg;
Alex Badea0b94d052010-11-10 03:18:41 +0000317 double mpsse_clk;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000318 uint8_t cs_bits = 0x08;
319 uint8_t pindir = 0x0b;
320
321 struct ft2232_data *const spi_data = calloc(1, sizeof(*spi_data));
322 if (!spi_data) {
323 msg_perr("Unable to allocate space for SPI master data\n");
324 return SPI_GENERIC_ERROR;
325 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000326
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000327 arg = extract_programmer_param("type");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000328 if (arg) {
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000329 if (!strcasecmp(arg, "2232H")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000330 ft2232_type = FTDI_FT2232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000331 channel_count = 2;
332 } else if (!strcasecmp(arg, "4232H")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000333 ft2232_type = FTDI_FT4232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000334 channel_count = 4;
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000335 } else if (!strcasecmp(arg, "232H")) {
336 ft2232_type = FTDI_FT232H_PID;
337 channel_count = 1;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000338 } else if (!strcasecmp(arg, "jtagkey")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000339 ft2232_type = AMONTEC_JTAGKEY_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000340 channel_count = 2;
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000341 /* JTAGkey(2) needs to enable its output via Bit4 / GPIOL0
342 * value: 0x18 OE=high, CS=high, DI=low, DO=low, SK=low
343 * dir: 0x1b OE=output, CS=output, DI=input, DO=output, SK=output */
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000344 cs_bits = 0x18;
Uwe Hermann70145292010-07-29 19:57:55 +0000345 pindir = 0x1b;
Samir Ibradžić7189a5f2011-10-20 23:14:10 +0000346 } else if (!strcasecmp(arg, "picotap")) {
347 ft2232_vid = GOEPEL_VID;
348 ft2232_type = GOEPEL_PICOTAP_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000349 channel_count = 2;
Uwe Hermann836b26a2011-10-14 20:33:14 +0000350 } else if (!strcasecmp(arg, "tumpa")) {
351 /* Interface A is SPI1, B is SPI2. */
352 ft2232_type = TIAO_TUMPA_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000353 channel_count = 2;
Stefan Taunerb66ed842014-04-27 05:07:35 +0000354 } else if (!strcasecmp(arg, "tumpalite")) {
355 /* Only one channel is used on lite edition */
356 ft2232_type = TIAO_TUMPA_LITE_PID;
357 channel_count = 1;
Steve Markgraf0528b7f2011-08-12 01:19:32 +0000358 } else if (!strcasecmp(arg, "busblaster")) {
359 /* In its default configuration it is a jtagkey clone */
360 ft2232_type = FTDI_FT2232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000361 channel_count = 2;
Steve Markgraf0528b7f2011-08-12 01:19:32 +0000362 cs_bits = 0x18;
363 pindir = 0x1b;
Alex Badeacaf2d422010-11-10 03:26:57 +0000364 } else if (!strcasecmp(arg, "openmoko")) {
365 ft2232_vid = FIC_VID;
366 ft2232_type = OPENMOKO_DBGBOARD_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000367 channel_count = 2;
Pete Batardc0207062011-06-11 12:21:37 +0000368 } else if (!strcasecmp(arg, "arm-usb-ocd")) {
369 ft2232_vid = OLIMEX_VID;
370 ft2232_type = OLIMEX_ARM_OCD_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000371 channel_count = 2;
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000372 /* arm-usb-ocd(-h) has an output buffer that needs to be enabled by pulling ADBUS4 low.
373 * value: 0x08 #OE=low, CS=high, DI=low, DO=low, SK=low
374 * dir: 0x1b #OE=output, CS=output, DI=input, DO=output, SK=output */
Paul Fertser3cf335e2011-12-20 02:08:14 +0000375 cs_bits = 0x08;
376 pindir = 0x1b;
Pete Batardc0207062011-06-11 12:21:37 +0000377 } else if (!strcasecmp(arg, "arm-usb-tiny")) {
378 ft2232_vid = OLIMEX_VID;
379 ft2232_type = OLIMEX_ARM_TINY_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000380 channel_count = 2;
Pete Batardc0207062011-06-11 12:21:37 +0000381 } else if (!strcasecmp(arg, "arm-usb-ocd-h")) {
382 ft2232_vid = OLIMEX_VID;
383 ft2232_type = OLIMEX_ARM_OCD_H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000384 channel_count = 2;
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000385 /* See arm-usb-ocd */
Paul Fertser3cf335e2011-12-20 02:08:14 +0000386 cs_bits = 0x08;
387 pindir = 0x1b;
Pete Batardc0207062011-06-11 12:21:37 +0000388 } else if (!strcasecmp(arg, "arm-usb-tiny-h")) {
389 ft2232_vid = OLIMEX_VID;
390 ft2232_type = OLIMEX_ARM_TINY_H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000391 channel_count = 2;
Todd Broch6800c952016-02-14 15:46:00 +0000392 } else if (!strcasecmp(arg, "google-servo")) {
393 ft2232_vid = GOOGLE_VID;
394 ft2232_type = GOOGLE_SERVO_PID;
395 } else if (!strcasecmp(arg, "google-servo-v2")) {
396 ft2232_vid = GOOGLE_VID;
397 ft2232_type = GOOGLE_SERVO_V2_PID1;
398 /* Default divisor is too fast, and chip ID fails */
399 divisor = 6;
400 } else if (!strcasecmp(arg, "google-servo-v2-legacy")) {
401 ft2232_vid = GOOGLE_VID;
402 ft2232_type = GOOGLE_SERVO_V2_PID0;
Russ Dill7bd31a42019-10-30 00:40:43 -0700403 } else if (!strcasecmp(arg, "flyswatter")) {
404 ft2232_type = FTDI_FT2232H_PID;
405 channel_count = 2;
406 /* Flyswatter and Flyswatter-2 require GPIO bits 0x80
407 * and 0x40 to be driven low to enable output buffers */
408 pindir = 0xcb;
Alex Badeacaf2d422010-11-10 03:26:57 +0000409 } else {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000410 msg_perr("Error: Invalid device type specified.\n");
411 free(arg);
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000412 ret = -1;
413 goto init_err;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000414 }
415 }
416 free(arg);
Stefan Tauner3e515e22012-09-26 00:48:16 +0000417
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000418 arg = extract_programmer_param("port");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000419 if (arg) {
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000420 switch (toupper((unsigned char)*arg)) {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000421 case 'A':
422 ft2232_interface = INTERFACE_A;
423 break;
424 case 'B':
425 ft2232_interface = INTERFACE_B;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000426 if (channel_count < 2)
427 channel_count = -1;
428 break;
429 case 'C':
430 ft2232_interface = INTERFACE_C;
431 if (channel_count < 3)
432 channel_count = -1;
433 break;
434 case 'D':
435 ft2232_interface = INTERFACE_D;
436 if (channel_count < 4)
437 channel_count = -1;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000438 break;
439 default:
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000440 channel_count = -1;
441 break;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000442 }
Stefan Taunerd7d423b2012-10-20 09:13:16 +0000443 if (channel_count < 0 || strlen(arg) != 1) {
444 msg_perr("Error: Invalid channel/port/interface specified: \"%s\".\n", arg);
445 free(arg);
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000446 ret = -2;
447 goto init_err;
Stefan Taunerd7d423b2012-10-20 09:13:16 +0000448 }
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000449 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000450 free(arg);
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000451
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000452 arg = extract_programmer_param("divisor");
453 if (arg && strlen(arg)) {
454 unsigned int temp = 0;
455 char *endptr;
456 temp = strtoul(arg, &endptr, 10);
457 if (*endptr || temp < 2 || temp > 131072 || temp & 0x1) {
458 msg_perr("Error: Invalid SPI frequency divisor specified: \"%s\".\n"
459 "Valid are even values between 2 and 131072.\n", arg);
460 free(arg);
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000461 ret = -2;
462 goto init_err;
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000463 }
Elyes HAOUAS712ba3a2019-06-09 17:11:49 +0200464 divisor = (uint32_t)temp;
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000465 }
466 free(arg);
Stefan Tauner3e515e22012-09-26 00:48:16 +0000467
Sergey Alirzaev4acc3f32018-08-01 16:39:17 +0300468 arg = extract_programmer_param("csgpiol");
469 if (arg) {
470 char *endptr;
471 unsigned int temp = strtoul(arg, &endptr, 10);
472 if (*endptr || endptr == arg || temp > 3) {
473 msg_perr("Error: Invalid GPIOL specified: \"%s\".\n"
474 "Valid values are between 0 and 3.\n", arg);
475 free(arg);
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000476 ret = -2;
477 goto init_err;
Sergey Alirzaev4acc3f32018-08-01 16:39:17 +0300478 }
Elyes HAOUAS712ba3a2019-06-09 17:11:49 +0200479 unsigned int pin = temp + 4;
480 cs_bits |= 1 << pin;
481 pindir |= 1 << pin;
Sergey Alirzaev4acc3f32018-08-01 16:39:17 +0300482 }
483 free(arg);
484
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000485 msg_pdbg("Using device type %s %s ",
Uwe Hermann70145292010-07-29 19:57:55 +0000486 get_ft2232_vendorname(ft2232_vid, ft2232_type),
487 get_ft2232_devicename(ft2232_vid, ft2232_type));
Stefan Tauner3e515e22012-09-26 00:48:16 +0000488 msg_pdbg("channel %s.\n",
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000489 (ft2232_interface == INTERFACE_A) ? "A" :
490 (ft2232_interface == INTERFACE_B) ? "B" :
491 (ft2232_interface == INTERFACE_C) ? "C" : "D");
Paul Fox05dfbe62009-06-16 21:08:06 +0000492
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000493 struct ftdi_context *const ftdic = &spi_data->ftdi_context;
Paul Fox05dfbe62009-06-16 21:08:06 +0000494 if (ftdi_init(ftdic) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000495 msg_perr("ftdi_init failed.\n");
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000496 ret = -3;
497 goto init_err;
Paul Fox05dfbe62009-06-16 21:08:06 +0000498 }
499
Ilya A. Volynets-Evenbakh7c36d522012-08-14 01:32:46 +0000500 if (ftdi_set_interface(ftdic, ft2232_interface) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000501 msg_perr("Unable to select channel (%s).\n", ftdi_get_error_string(ftdic));
Ilya A. Volynets-Evenbakh7c36d522012-08-14 01:32:46 +0000502 }
503
Shik Chen14fbc4b2012-09-17 00:40:54 +0000504 arg = extract_programmer_param("serial");
505 f = ftdi_usb_open_desc(ftdic, ft2232_vid, ft2232_type, NULL, arg);
506 free(arg);
Paul Fox05dfbe62009-06-16 21:08:06 +0000507
508 if (f < 0 && f != -5) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000509 msg_perr("Unable to open FTDI device: %d (%s).\n", f, ftdi_get_error_string(ftdic));
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000510 ret = -4;
511 goto init_err;
Paul Fox05dfbe62009-06-16 21:08:06 +0000512 }
513
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000514 if (ftdic->type != TYPE_2232H && ftdic->type != TYPE_4232H && ftdic->type != TYPE_232H) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000515 msg_pdbg("FTDI chip type %d is not high-speed.\n", ftdic->type);
Alex Badea0b94d052010-11-10 03:18:41 +0000516 clock_5x = 0;
517 }
518
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000519 if (ftdi_usb_reset(ftdic) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000520 msg_perr("Unable to reset FTDI device (%s).\n", ftdi_get_error_string(ftdic));
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000521 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000522
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000523 if (ftdi_set_latency_timer(ftdic, 2) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000524 msg_perr("Unable to set latency timer (%s).\n", ftdi_get_error_string(ftdic));
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000525 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000526
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000527 if (ftdi_set_bitmode(ftdic, 0x00, BITMODE_BITBANG_SPI) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000528 msg_perr("Unable to set bitmode to SPI (%s).\n", ftdi_get_error_string(ftdic));
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000529 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000530
Alex Badea0b94d052010-11-10 03:18:41 +0000531 if (clock_5x) {
532 msg_pdbg("Disable divide-by-5 front stage\n");
Stefan Tauner05151b62015-01-25 23:42:57 +0000533 buf[0] = 0x8a; /* Disable divide-by-5. DIS_DIV_5 in newer libftdi */
Uwe Hermann274a20d2011-07-21 09:18:18 +0000534 if (send_buf(ftdic, buf, 1)) {
535 ret = -5;
536 goto ftdi_err;
537 }
Alex Badea0b94d052010-11-10 03:18:41 +0000538 mpsse_clk = 60.0;
539 } else {
540 mpsse_clk = 12.0;
541 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000542
Sean Nelson34b5db72010-01-10 01:08:37 +0000543 msg_pdbg("Set clock divisor\n");
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000544 buf[0] = TCK_DIVISOR;
Ilya A. Volynets-Evenbakh3464d052012-06-14 13:08:33 +0000545 buf[1] = (divisor / 2 - 1) & 0xff;
546 buf[2] = ((divisor / 2 - 1) >> 8) & 0xff;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000547 if (send_buf(ftdic, buf, 3)) {
548 ret = -6;
549 goto ftdi_err;
550 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000551
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000552 msg_pdbg("MPSSE clock: %f MHz, divisor: %u, SPI clock: %f MHz\n",
553 mpsse_clk, divisor, (double)(mpsse_clk / divisor));
Paul Fox05dfbe62009-06-16 21:08:06 +0000554
Uwe Hermannc67d0372009-10-01 18:40:02 +0000555 /* Disconnect TDI/DO to TDO/DI for loopback. */
Sean Nelson34b5db72010-01-10 01:08:37 +0000556 msg_pdbg("No loopback of TDI/DO TDO/DI\n");
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000557 buf[0] = LOOPBACK_END;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000558 if (send_buf(ftdic, buf, 1)) {
559 ret = -7;
560 goto ftdi_err;
561 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000562
Sean Nelson34b5db72010-01-10 01:08:37 +0000563 msg_pdbg("Set data bits\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000564 buf[0] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000565 buf[1] = cs_bits;
566 buf[2] = pindir;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000567 if (send_buf(ftdic, buf, 3)) {
568 ret = -8;
569 goto ftdi_err;
570 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000571
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000572 spi_data->cs_bits = cs_bits;
573 spi_data->pindir = pindir;
574 spi_master_ft2232.data = spi_data;
575
576 if (register_shutdown(ft2232_shutdown, spi_data)) {
577 ret = -9;
578 goto ftdi_err;
579 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000580 register_spi_master(&spi_master_ft2232);
Paul Fox05dfbe62009-06-16 21:08:06 +0000581
582 return 0;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000583
584ftdi_err:
585 if ((f = ftdi_usb_close(ftdic)) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000586 msg_perr("Unable to close FTDI device: %d (%s)\n", f, ftdi_get_error_string(ftdic));
Uwe Hermann274a20d2011-07-21 09:18:18 +0000587 }
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000588init_err:
589 free(spi_data);
Uwe Hermann274a20d2011-07-21 09:18:18 +0000590 return ret;
Paul Fox05dfbe62009-06-16 21:08:06 +0000591}
592
Thomas Heijligencc853d82021-05-04 15:32:17 +0200593const struct programmer_entry programmer_ft2232_spi = {
594 .name = "ft2232_spi",
595 .type = USB,
596 .devs.dev = devs_ft2232spi,
597 .init = ft2232_spi_init,
598 .map_flash_region = fallback_map,
599 .unmap_flash_region = fallback_unmap,
600 .delay = internal_delay,
601};
Paul Fox05dfbe62009-06-16 21:08:06 +0000602#endif