blob: 4289e140c01b9c88b6eb6b97994a4fe623ae9d58 [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
Stefan Tauner4b24a2d2012-12-27 18:40:36 +000062const 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
Samir Ibradžićb482c6d2012-05-15 22:58:19 +000082#define DEFAULT_DIVISOR 2
Paul Fox05dfbe62009-06-16 21:08:06 +000083
Uwe Hermannc67d0372009-10-01 18:40:02 +000084#define BITMODE_BITBANG_NORMAL 1
85#define BITMODE_BITBANG_SPI 2
Paul Fox05dfbe62009-06-16 21:08:06 +000086
Antony Pavlovb4dd40c2015-01-25 03:52:47 +000087/* The variables cs_bits and pindir store the values for the "set data bits low byte" MPSSE command that
88 * sets the initial state and the direction of the I/O pins. The pin offsets are as follows:
89 * SCK is bit 0.
90 * DO is bit 1.
91 * DI is bit 2.
92 * CS is bit 3.
93 *
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +100094 * The default values (set below in ft2232_spi_init) are used for most devices:
Jörg Fischer6529b9f2010-07-29 15:54:53 +000095 * value: 0x08 CS=high, DI=low, DO=low, SK=low
96 * dir: 0x0b CS=output, DI=input, DO=output, SK=output
Jörg Fischer6529b9f2010-07-29 15:54:53 +000097 */
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +100098struct ft2232_data {
99 uint8_t cs_bits;
100 uint8_t pindir;
101 struct ftdi_context ftdi_context;
102};
Paul Fox05dfbe62009-06-16 21:08:06 +0000103
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000104static const char *get_ft2232_devicename(int ft2232_vid, int ft2232_type)
105{
106 int i;
Uwe Hermann70145292010-07-29 19:57:55 +0000107 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000108 if ((devs_ft2232spi[i].device_id == ft2232_type) && (devs_ft2232spi[i].vendor_id == ft2232_vid))
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000109 return devs_ft2232spi[i].device_name;
110 }
111 return "unknown device";
112}
113
114static const char *get_ft2232_vendorname(int ft2232_vid, int ft2232_type)
115{
116 int i;
Uwe Hermann70145292010-07-29 19:57:55 +0000117 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000118 if ((devs_ft2232spi[i].device_id == ft2232_type) && (devs_ft2232spi[i].vendor_id == ft2232_vid))
Uwe Hermann70145292010-07-29 19:57:55 +0000119 return devs_ft2232spi[i].vendor_name;
120 }
121 return "unknown vendor";
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000122}
123
Uwe Hermann70145292010-07-29 19:57:55 +0000124static int send_buf(struct ftdi_context *ftdic, const unsigned char *buf,
125 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +0000126{
127 int r;
128 r = ftdi_write_data(ftdic, (unsigned char *) buf, size);
129 if (r < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000130 msg_perr("ftdi_write_data: %d, %s\n", r, ftdi_get_error_string(ftdic));
Paul Fox05dfbe62009-06-16 21:08:06 +0000131 return 1;
132 }
133 return 0;
134}
135
Uwe Hermann70145292010-07-29 19:57:55 +0000136static int get_buf(struct ftdi_context *ftdic, const unsigned char *buf,
137 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +0000138{
139 int r;
Alex Badeab9556e02010-11-10 03:10:41 +0000140
141 while (size > 0) {
142 r = ftdi_read_data(ftdic, (unsigned char *) buf, size);
143 if (r < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000144 msg_perr("ftdi_read_data: %d, %s\n", r, ftdi_get_error_string(ftdic));
Alex Badeab9556e02010-11-10 03:10:41 +0000145 return 1;
146 }
147 buf += r;
148 size -= r;
Paul Fox05dfbe62009-06-16 21:08:06 +0000149 }
150 return 0;
151}
152
Alan Green460c1c02021-01-08 09:36:45 +1100153static int ft2232_shutdown(void *data)
154{
155 int f;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000156 struct ft2232_data *spi_data = (struct ft2232_data *)data;
157 struct ftdi_context *ftdic = &spi_data->ftdi_context;
Alan Green460c1c02021-01-08 09:36:45 +1100158 unsigned char buf[3];
159
160 msg_pdbg("Releasing I/Os\n");
161 buf[0] = SET_BITS_LOW;
162 buf[1] = 0; /* Output byte ignored */
163 buf[2] = 0; /* Pin direction: all inputs */
164 if (send_buf(ftdic, buf, 3)) {
165 msg_perr("Unable to set pins back inputs: (%s)\n",
166 ftdi_get_error_string(ftdic));
167 }
168
169 if ((f = ftdi_usb_close(ftdic)) < 0) {
170 msg_perr("Unable to close FTDI device: %d (%s)\n", f,
171 ftdi_get_error_string(ftdic));
172 return f;
173 }
174
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000175 free(spi_data);
Alan Green460c1c02021-01-08 09:36:45 +1100176 return 0;
177}
178
Edward O'Callaghan5eca4272020-04-12 17:27:53 +1000179static int ft2232_spi_send_command(const struct flashctx *flash,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000180 unsigned int writecnt, unsigned int readcnt,
181 const unsigned char *writearr,
182 unsigned char *readarr);
Michael Karcherb9dbe482011-05-11 17:07:07 +0000183
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000184static struct spi_master spi_master_ft2232 = {
Nico Huber1cf407b2017-11-10 20:18:23 +0100185 .features = SPI_MASTER_4BA,
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000186 .max_data_read = 64 * 1024,
187 .max_data_write = 256,
188 .command = ft2232_spi_send_command,
189 .multicommand = default_spi_send_multicommand,
190 .read = default_spi_read,
191 .write_256 = default_spi_write_256,
Nico Huber7bca1262012-06-15 22:28:12 +0000192 .write_aai = default_spi_write_aai,
Michael Karcherb9dbe482011-05-11 17:07:07 +0000193};
194
Uwe Hermann274a20d2011-07-21 09:18:18 +0000195/* Returns 0 upon success, a negative number upon errors. */
Paul Fox05dfbe62009-06-16 21:08:06 +0000196int ft2232_spi_init(void)
197{
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000198 int ret;
Paul Fox05dfbe62009-06-16 21:08:06 +0000199 unsigned char buf[512];
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000200 int ft2232_vid = FTDI_VID;
201 int ft2232_type = FTDI_FT4232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000202 int channel_count = 4; /* Stores the number of channels of the device. */
203 enum ftdi_interface ft2232_interface = INTERFACE_A;
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000204 /*
205 * The 'H' chips can run with an internal clock of either 12 MHz or 60 MHz,
206 * but the non-H chips can only run at 12 MHz. We enable the divide-by-5
207 * prescaler on the former to run on the same speed.
208 */
209 uint8_t clock_5x = 1;
210 /* In addition to the prescaler mentioned above there is also another
211 * configurable one on all versions of the chips. Its divisor div can be
212 * set by a 16 bit value x according to the following formula:
213 * div = (1 + x) * 2 <-> x = div / 2 - 1
214 * Hence the expressible divisors are all even numbers between 2 and
215 * 2^17 (=131072) resulting in SCK frequencies of 6 MHz down to about
216 * 92 Hz for 12 MHz inputs.
217 */
218 uint32_t divisor = DEFAULT_DIVISOR;
219 int f;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000220 char *arg;
Alex Badea0b94d052010-11-10 03:18:41 +0000221 double mpsse_clk;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000222 uint8_t cs_bits = 0x08;
223 uint8_t pindir = 0x0b;
224
225 struct ft2232_data *const spi_data = calloc(1, sizeof(*spi_data));
226 if (!spi_data) {
227 msg_perr("Unable to allocate space for SPI master data\n");
228 return SPI_GENERIC_ERROR;
229 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000230
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000231 arg = extract_programmer_param("type");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000232 if (arg) {
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000233 if (!strcasecmp(arg, "2232H")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000234 ft2232_type = FTDI_FT2232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000235 channel_count = 2;
236 } else if (!strcasecmp(arg, "4232H")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000237 ft2232_type = FTDI_FT4232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000238 channel_count = 4;
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000239 } else if (!strcasecmp(arg, "232H")) {
240 ft2232_type = FTDI_FT232H_PID;
241 channel_count = 1;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000242 } else if (!strcasecmp(arg, "jtagkey")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000243 ft2232_type = AMONTEC_JTAGKEY_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000244 channel_count = 2;
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000245 /* JTAGkey(2) needs to enable its output via Bit4 / GPIOL0
246 * value: 0x18 OE=high, CS=high, DI=low, DO=low, SK=low
247 * dir: 0x1b OE=output, CS=output, DI=input, DO=output, SK=output */
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000248 cs_bits = 0x18;
Uwe Hermann70145292010-07-29 19:57:55 +0000249 pindir = 0x1b;
Samir Ibradžić7189a5f2011-10-20 23:14:10 +0000250 } else if (!strcasecmp(arg, "picotap")) {
251 ft2232_vid = GOEPEL_VID;
252 ft2232_type = GOEPEL_PICOTAP_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000253 channel_count = 2;
Uwe Hermann836b26a2011-10-14 20:33:14 +0000254 } else if (!strcasecmp(arg, "tumpa")) {
255 /* Interface A is SPI1, B is SPI2. */
256 ft2232_type = TIAO_TUMPA_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000257 channel_count = 2;
Stefan Taunerb66ed842014-04-27 05:07:35 +0000258 } else if (!strcasecmp(arg, "tumpalite")) {
259 /* Only one channel is used on lite edition */
260 ft2232_type = TIAO_TUMPA_LITE_PID;
261 channel_count = 1;
Steve Markgraf0528b7f2011-08-12 01:19:32 +0000262 } else if (!strcasecmp(arg, "busblaster")) {
263 /* In its default configuration it is a jtagkey clone */
264 ft2232_type = FTDI_FT2232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000265 channel_count = 2;
Steve Markgraf0528b7f2011-08-12 01:19:32 +0000266 cs_bits = 0x18;
267 pindir = 0x1b;
Alex Badeacaf2d422010-11-10 03:26:57 +0000268 } else if (!strcasecmp(arg, "openmoko")) {
269 ft2232_vid = FIC_VID;
270 ft2232_type = OPENMOKO_DBGBOARD_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000271 channel_count = 2;
Pete Batardc0207062011-06-11 12:21:37 +0000272 } else if (!strcasecmp(arg, "arm-usb-ocd")) {
273 ft2232_vid = OLIMEX_VID;
274 ft2232_type = OLIMEX_ARM_OCD_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000275 channel_count = 2;
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000276 /* arm-usb-ocd(-h) has an output buffer that needs to be enabled by pulling ADBUS4 low.
277 * value: 0x08 #OE=low, CS=high, DI=low, DO=low, SK=low
278 * dir: 0x1b #OE=output, CS=output, DI=input, DO=output, SK=output */
Paul Fertser3cf335e2011-12-20 02:08:14 +0000279 cs_bits = 0x08;
280 pindir = 0x1b;
Pete Batardc0207062011-06-11 12:21:37 +0000281 } else if (!strcasecmp(arg, "arm-usb-tiny")) {
282 ft2232_vid = OLIMEX_VID;
283 ft2232_type = OLIMEX_ARM_TINY_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000284 channel_count = 2;
Pete Batardc0207062011-06-11 12:21:37 +0000285 } else if (!strcasecmp(arg, "arm-usb-ocd-h")) {
286 ft2232_vid = OLIMEX_VID;
287 ft2232_type = OLIMEX_ARM_OCD_H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000288 channel_count = 2;
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000289 /* See arm-usb-ocd */
Paul Fertser3cf335e2011-12-20 02:08:14 +0000290 cs_bits = 0x08;
291 pindir = 0x1b;
Pete Batardc0207062011-06-11 12:21:37 +0000292 } else if (!strcasecmp(arg, "arm-usb-tiny-h")) {
293 ft2232_vid = OLIMEX_VID;
294 ft2232_type = OLIMEX_ARM_TINY_H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000295 channel_count = 2;
Todd Broch6800c952016-02-14 15:46:00 +0000296 } else if (!strcasecmp(arg, "google-servo")) {
297 ft2232_vid = GOOGLE_VID;
298 ft2232_type = GOOGLE_SERVO_PID;
299 } else if (!strcasecmp(arg, "google-servo-v2")) {
300 ft2232_vid = GOOGLE_VID;
301 ft2232_type = GOOGLE_SERVO_V2_PID1;
302 /* Default divisor is too fast, and chip ID fails */
303 divisor = 6;
304 } else if (!strcasecmp(arg, "google-servo-v2-legacy")) {
305 ft2232_vid = GOOGLE_VID;
306 ft2232_type = GOOGLE_SERVO_V2_PID0;
Russ Dill7bd31a42019-10-30 00:40:43 -0700307 } else if (!strcasecmp(arg, "flyswatter")) {
308 ft2232_type = FTDI_FT2232H_PID;
309 channel_count = 2;
310 /* Flyswatter and Flyswatter-2 require GPIO bits 0x80
311 * and 0x40 to be driven low to enable output buffers */
312 pindir = 0xcb;
Alex Badeacaf2d422010-11-10 03:26:57 +0000313 } else {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000314 msg_perr("Error: Invalid device type specified.\n");
315 free(arg);
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000316 ret = -1;
317 goto init_err;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000318 }
319 }
320 free(arg);
Stefan Tauner3e515e22012-09-26 00:48:16 +0000321
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000322 arg = extract_programmer_param("port");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000323 if (arg) {
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000324 switch (toupper((unsigned char)*arg)) {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000325 case 'A':
326 ft2232_interface = INTERFACE_A;
327 break;
328 case 'B':
329 ft2232_interface = INTERFACE_B;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000330 if (channel_count < 2)
331 channel_count = -1;
332 break;
333 case 'C':
334 ft2232_interface = INTERFACE_C;
335 if (channel_count < 3)
336 channel_count = -1;
337 break;
338 case 'D':
339 ft2232_interface = INTERFACE_D;
340 if (channel_count < 4)
341 channel_count = -1;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000342 break;
343 default:
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000344 channel_count = -1;
345 break;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000346 }
Stefan Taunerd7d423b2012-10-20 09:13:16 +0000347 if (channel_count < 0 || strlen(arg) != 1) {
348 msg_perr("Error: Invalid channel/port/interface specified: \"%s\".\n", arg);
349 free(arg);
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000350 ret = -2;
351 goto init_err;
Stefan Taunerd7d423b2012-10-20 09:13:16 +0000352 }
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000353 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000354 free(arg);
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000355
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000356 arg = extract_programmer_param("divisor");
357 if (arg && strlen(arg)) {
358 unsigned int temp = 0;
359 char *endptr;
360 temp = strtoul(arg, &endptr, 10);
361 if (*endptr || temp < 2 || temp > 131072 || temp & 0x1) {
362 msg_perr("Error: Invalid SPI frequency divisor specified: \"%s\".\n"
363 "Valid are even values between 2 and 131072.\n", arg);
364 free(arg);
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000365 ret = -2;
366 goto init_err;
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000367 }
Elyes HAOUAS712ba3a2019-06-09 17:11:49 +0200368 divisor = (uint32_t)temp;
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000369 }
370 free(arg);
Stefan Tauner3e515e22012-09-26 00:48:16 +0000371
Sergey Alirzaev4acc3f32018-08-01 16:39:17 +0300372 arg = extract_programmer_param("csgpiol");
373 if (arg) {
374 char *endptr;
375 unsigned int temp = strtoul(arg, &endptr, 10);
376 if (*endptr || endptr == arg || temp > 3) {
377 msg_perr("Error: Invalid GPIOL specified: \"%s\".\n"
378 "Valid values are between 0 and 3.\n", arg);
379 free(arg);
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000380 ret = -2;
381 goto init_err;
Sergey Alirzaev4acc3f32018-08-01 16:39:17 +0300382 }
Elyes HAOUAS712ba3a2019-06-09 17:11:49 +0200383 unsigned int pin = temp + 4;
384 cs_bits |= 1 << pin;
385 pindir |= 1 << pin;
Sergey Alirzaev4acc3f32018-08-01 16:39:17 +0300386 }
387 free(arg);
388
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000389 msg_pdbg("Using device type %s %s ",
Uwe Hermann70145292010-07-29 19:57:55 +0000390 get_ft2232_vendorname(ft2232_vid, ft2232_type),
391 get_ft2232_devicename(ft2232_vid, ft2232_type));
Stefan Tauner3e515e22012-09-26 00:48:16 +0000392 msg_pdbg("channel %s.\n",
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000393 (ft2232_interface == INTERFACE_A) ? "A" :
394 (ft2232_interface == INTERFACE_B) ? "B" :
395 (ft2232_interface == INTERFACE_C) ? "C" : "D");
Paul Fox05dfbe62009-06-16 21:08:06 +0000396
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000397 struct ftdi_context *const ftdic = &spi_data->ftdi_context;
Paul Fox05dfbe62009-06-16 21:08:06 +0000398 if (ftdi_init(ftdic) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000399 msg_perr("ftdi_init failed.\n");
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000400 ret = -3;
401 goto init_err;
Paul Fox05dfbe62009-06-16 21:08:06 +0000402 }
403
Ilya A. Volynets-Evenbakh7c36d522012-08-14 01:32:46 +0000404 if (ftdi_set_interface(ftdic, ft2232_interface) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000405 msg_perr("Unable to select channel (%s).\n", ftdi_get_error_string(ftdic));
Ilya A. Volynets-Evenbakh7c36d522012-08-14 01:32:46 +0000406 }
407
Shik Chen14fbc4b2012-09-17 00:40:54 +0000408 arg = extract_programmer_param("serial");
409 f = ftdi_usb_open_desc(ftdic, ft2232_vid, ft2232_type, NULL, arg);
410 free(arg);
Paul Fox05dfbe62009-06-16 21:08:06 +0000411
412 if (f < 0 && f != -5) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000413 msg_perr("Unable to open FTDI device: %d (%s).\n", f, ftdi_get_error_string(ftdic));
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000414 ret = -4;
415 goto init_err;
Paul Fox05dfbe62009-06-16 21:08:06 +0000416 }
417
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000418 if (ftdic->type != TYPE_2232H && ftdic->type != TYPE_4232H && ftdic->type != TYPE_232H) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000419 msg_pdbg("FTDI chip type %d is not high-speed.\n", ftdic->type);
Alex Badea0b94d052010-11-10 03:18:41 +0000420 clock_5x = 0;
421 }
422
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000423 if (ftdi_usb_reset(ftdic) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000424 msg_perr("Unable to reset FTDI device (%s).\n", ftdi_get_error_string(ftdic));
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000425 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000426
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000427 if (ftdi_set_latency_timer(ftdic, 2) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000428 msg_perr("Unable to set latency timer (%s).\n", ftdi_get_error_string(ftdic));
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000429 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000430
el-coderoneb751232020-03-20 18:52:15 +0100431 if (ftdi_write_data_set_chunksize(ftdic, 270)) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000432 msg_perr("Unable to set chunk size (%s).\n", ftdi_get_error_string(ftdic));
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000433 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000434
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000435 if (ftdi_set_bitmode(ftdic, 0x00, BITMODE_BITBANG_SPI) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000436 msg_perr("Unable to set bitmode to SPI (%s).\n", ftdi_get_error_string(ftdic));
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000437 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000438
Alex Badea0b94d052010-11-10 03:18:41 +0000439 if (clock_5x) {
440 msg_pdbg("Disable divide-by-5 front stage\n");
Stefan Tauner05151b62015-01-25 23:42:57 +0000441 buf[0] = 0x8a; /* Disable divide-by-5. DIS_DIV_5 in newer libftdi */
Uwe Hermann274a20d2011-07-21 09:18:18 +0000442 if (send_buf(ftdic, buf, 1)) {
443 ret = -5;
444 goto ftdi_err;
445 }
Alex Badea0b94d052010-11-10 03:18:41 +0000446 mpsse_clk = 60.0;
447 } else {
448 mpsse_clk = 12.0;
449 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000450
Sean Nelson34b5db72010-01-10 01:08:37 +0000451 msg_pdbg("Set clock divisor\n");
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000452 buf[0] = TCK_DIVISOR;
Ilya A. Volynets-Evenbakh3464d052012-06-14 13:08:33 +0000453 buf[1] = (divisor / 2 - 1) & 0xff;
454 buf[2] = ((divisor / 2 - 1) >> 8) & 0xff;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000455 if (send_buf(ftdic, buf, 3)) {
456 ret = -6;
457 goto ftdi_err;
458 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000459
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000460 msg_pdbg("MPSSE clock: %f MHz, divisor: %u, SPI clock: %f MHz\n",
461 mpsse_clk, divisor, (double)(mpsse_clk / divisor));
Paul Fox05dfbe62009-06-16 21:08:06 +0000462
Uwe Hermannc67d0372009-10-01 18:40:02 +0000463 /* Disconnect TDI/DO to TDO/DI for loopback. */
Sean Nelson34b5db72010-01-10 01:08:37 +0000464 msg_pdbg("No loopback of TDI/DO TDO/DI\n");
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000465 buf[0] = LOOPBACK_END;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000466 if (send_buf(ftdic, buf, 1)) {
467 ret = -7;
468 goto ftdi_err;
469 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000470
Sean Nelson34b5db72010-01-10 01:08:37 +0000471 msg_pdbg("Set data bits\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000472 buf[0] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000473 buf[1] = cs_bits;
474 buf[2] = pindir;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000475 if (send_buf(ftdic, buf, 3)) {
476 ret = -8;
477 goto ftdi_err;
478 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000479
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000480 spi_data->cs_bits = cs_bits;
481 spi_data->pindir = pindir;
482 spi_master_ft2232.data = spi_data;
483
484 if (register_shutdown(ft2232_shutdown, spi_data)) {
485 ret = -9;
486 goto ftdi_err;
487 }
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000488 register_spi_master(&spi_master_ft2232);
Paul Fox05dfbe62009-06-16 21:08:06 +0000489
490 return 0;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000491
492ftdi_err:
493 if ((f = ftdi_usb_close(ftdic)) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000494 msg_perr("Unable to close FTDI device: %d (%s)\n", f, ftdi_get_error_string(ftdic));
Uwe Hermann274a20d2011-07-21 09:18:18 +0000495 }
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000496init_err:
497 free(spi_data);
Uwe Hermann274a20d2011-07-21 09:18:18 +0000498 return ret;
Paul Fox05dfbe62009-06-16 21:08:06 +0000499}
500
Uwe Hermann274a20d2011-07-21 09:18:18 +0000501/* Returns 0 upon success, a negative number upon errors. */
Edward O'Callaghan5eca4272020-04-12 17:27:53 +1000502static int ft2232_spi_send_command(const struct flashctx *flash,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000503 unsigned int writecnt, unsigned int readcnt,
504 const unsigned char *writearr,
505 unsigned char *readarr)
Paul Fox05dfbe62009-06-16 21:08:06 +0000506{
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000507 struct ft2232_data *spi_data = flash->mst->spi.data;
508 struct ftdi_context *ftdic = &spi_data->ftdi_context;
Paul Fox05dfbe62009-06-16 21:08:06 +0000509 static unsigned char *buf = NULL;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000510 /* failed is special. We use bitwise ops, but it is essentially bool. */
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000511 int i = 0, ret = 0, failed = 0;
Angel Pons6d42d2b2020-03-31 15:34:35 +0200512 size_t bufsize;
513 static size_t oldbufsize = 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000514
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000515 if (writecnt > 65536 || readcnt > 65536)
516 return SPI_INVALID_LENGTH;
517
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000518 /* buf is not used for the response from the chip. */
519 bufsize = max(writecnt + 9, 260 + 9);
520 /* Never shrink. realloc() calls are expensive. */
Angel Pons6d42d2b2020-03-31 15:34:35 +0200521 if (!buf || bufsize > oldbufsize) {
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000522 buf = realloc(buf, bufsize);
523 if (!buf) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000524 msg_perr("Out of memory!\n");
Uwe Hermann274a20d2011-07-21 09:18:18 +0000525 /* TODO: What to do with buf? */
526 return SPI_GENERIC_ERROR;
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000527 }
528 oldbufsize = bufsize;
Paul Fox05dfbe62009-06-16 21:08:06 +0000529 }
530
Uwe Hermannc67d0372009-10-01 18:40:02 +0000531 /*
532 * Minimize USB transfers by packing as many commands as possible
533 * together. If we're not expecting to read, we can assert CS#, write,
534 * and deassert CS# all in one shot. If reading, we do three separate
Stefan Reinauerab044b22009-09-16 08:26:59 +0000535 * operations.
536 */
Sean Nelson34b5db72010-01-10 01:08:37 +0000537 msg_pspew("Assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000538 buf[i++] = SET_BITS_LOW;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000539 buf[i++] = 0 & ~spi_data->cs_bits; /* assertive */
540 buf[i++] = spi_data->pindir;
Paul Fox05dfbe62009-06-16 21:08:06 +0000541
542 if (writecnt) {
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000543 buf[i++] = MPSSE_DO_WRITE | MPSSE_WRITE_NEG;
Paul Fox05dfbe62009-06-16 21:08:06 +0000544 buf[i++] = (writecnt - 1) & 0xff;
545 buf[i++] = ((writecnt - 1) >> 8) & 0xff;
Uwe Hermannc67d0372009-10-01 18:40:02 +0000546 memcpy(buf + i, writearr, writecnt);
Paul Fox05dfbe62009-06-16 21:08:06 +0000547 i += writecnt;
548 }
549
Uwe Hermannc67d0372009-10-01 18:40:02 +0000550 /*
551 * Optionally terminate this batch of commands with a
Paul Fox05dfbe62009-06-16 21:08:06 +0000552 * read command, then do the fetch of the results.
553 */
554 if (readcnt) {
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000555 buf[i++] = MPSSE_DO_READ;
Paul Fox05dfbe62009-06-16 21:08:06 +0000556 buf[i++] = (readcnt - 1) & 0xff;
557 buf[i++] = ((readcnt - 1) >> 8) & 0xff;
558 ret = send_buf(ftdic, buf, i);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000559 failed = ret;
560 /* We can't abort here, we still have to deassert CS#. */
561 if (ret)
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000562 msg_perr("send_buf failed before read: %i\n", ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000563 i = 0;
Stefan Reinauerab044b22009-09-16 08:26:59 +0000564 if (ret == 0) {
Uwe Hermannc67d0372009-10-01 18:40:02 +0000565 /*
566 * FIXME: This is unreliable. There's no guarantee that
567 * we read the response directly after sending the read
568 * command. We may be scheduled out etc.
Stefan Reinauerab044b22009-09-16 08:26:59 +0000569 */
570 ret = get_buf(ftdic, readarr, readcnt);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000571 failed |= ret;
572 /* We can't abort here either. */
573 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000574 msg_perr("get_buf failed: %i\n", ret);
Stefan Reinauerab044b22009-09-16 08:26:59 +0000575 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000576 }
577
Sean Nelson34b5db72010-01-10 01:08:37 +0000578 msg_pspew("De-assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000579 buf[i++] = SET_BITS_LOW;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000580 buf[i++] = spi_data->cs_bits;
581 buf[i++] = spi_data->pindir;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000582 ret = send_buf(ftdic, buf, i);
583 failed |= ret;
584 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000585 msg_perr("send_buf failed at end: %i\n", ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000586
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000587 return failed ? -1 : 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000588}
589
Paul Fox05dfbe62009-06-16 21:08:06 +0000590#endif