blob: edea1e66238c42a79722e2582a01a20070ea871d [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.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000021#if CONFIG_FT2232_SPI == 1
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +000022
Paul Fox05dfbe62009-06-16 21:08:06 +000023#include <stdio.h>
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000024#include <strings.h>
Paul Fox05dfbe62009-06-16 21:08:06 +000025#include <string.h>
26#include <stdlib.h>
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +000027#include <ctype.h>
Paul Fox05dfbe62009-06-16 21:08:06 +000028#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000029#include "programmer.h"
Paul Fox05dfbe62009-06-16 21:08:06 +000030#include "spi.h"
Paul Fox05dfbe62009-06-16 21:08:06 +000031#include <ftdi.h>
32
Uwe Hermann836b26a2011-10-14 20:33:14 +000033/* Please keep sorted by vendor ID, then device ID. */
34
Uwe Hermann70145292010-07-29 19:57:55 +000035#define FTDI_VID 0x0403
36#define FTDI_FT2232H_PID 0x6010
37#define FTDI_FT4232H_PID 0x6011
Uwe Hermann836b26a2011-10-14 20:33:14 +000038#define TIAO_TUMPA_PID 0x8a98
Uwe Hermann70145292010-07-29 19:57:55 +000039#define AMONTEC_JTAGKEY_PID 0xCFF8
Jörg Fischer6529b9f2010-07-29 15:54:53 +000040
Samir Ibradžić7189a5f2011-10-20 23:14:10 +000041#define GOEPEL_VID 0x096C
42#define GOEPEL_PICOTAP_PID 0x1449
43
Alex Badeacaf2d422010-11-10 03:26:57 +000044#define FIC_VID 0x1457
45#define OPENMOKO_DBGBOARD_PID 0x5118
46
Pete Batardc0207062011-06-11 12:21:37 +000047#define OLIMEX_VID 0x15BA
48#define OLIMEX_ARM_OCD_PID 0x0003
49#define OLIMEX_ARM_TINY_PID 0x0004
50#define OLIMEX_ARM_OCD_H_PID 0x002B
51#define OLIMEX_ARM_TINY_H_PID 0x002A
52
Jörg Fischer6529b9f2010-07-29 15:54:53 +000053const struct usbdev_status devs_ft2232spi[] = {
Uwe Hermann70145292010-07-29 19:57:55 +000054 {FTDI_VID, FTDI_FT2232H_PID, OK, "FTDI", "FT2232H"},
55 {FTDI_VID, FTDI_FT4232H_PID, OK, "FTDI", "FT4232H"},
Uwe Hermann836b26a2011-10-14 20:33:14 +000056 {FTDI_VID, TIAO_TUMPA_PID, OK, "TIAO", "USB Multi-Protocol Adapter"},
Uwe Hermann70145292010-07-29 19:57:55 +000057 {FTDI_VID, AMONTEC_JTAGKEY_PID, OK, "Amontec", "JTAGkey"},
Samir Ibradžić7189a5f2011-10-20 23:14:10 +000058 {GOEPEL_VID, GOEPEL_PICOTAP_PID, OK, "GOEPEL", "PicoTAP"},
Pete Batardc0207062011-06-11 12:21:37 +000059 {FIC_VID, OPENMOKO_DBGBOARD_PID, OK, "FIC",
Alex Badeacaf2d422010-11-10 03:26:57 +000060 "OpenMoko Neo1973 Debug board (V2+)"},
Pete Batardc0207062011-06-11 12:21:37 +000061 {OLIMEX_VID, OLIMEX_ARM_OCD_PID, NT, "Olimex", "ARM-USB-OCD"},
62 {OLIMEX_VID, OLIMEX_ARM_TINY_PID, OK, "Olimex", "ARM-USB-TINY"},
63 {OLIMEX_VID, OLIMEX_ARM_OCD_H_PID, NT, "Olimex", "ARM-USB-OCD-H"},
64 {OLIMEX_VID, OLIMEX_ARM_TINY_H_PID, NT, "Olimex", "ARM-USB-TINY-H"},
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000065
66 {0},
Jörg Fischer6529b9f2010-07-29 15:54:53 +000067};
68
Paul Fox05dfbe62009-06-16 21:08:06 +000069
Samir Ibradžićb482c6d2012-05-15 22:58:19 +000070#define DEFAULT_DIVISOR 2
Paul Fox05dfbe62009-06-16 21:08:06 +000071
Uwe Hermannc67d0372009-10-01 18:40:02 +000072#define BITMODE_BITBANG_NORMAL 1
73#define BITMODE_BITBANG_SPI 2
Paul Fox05dfbe62009-06-16 21:08:06 +000074
Jörg Fischer6529b9f2010-07-29 15:54:53 +000075/* Set data bits low-byte command:
76 * value: 0x08 CS=high, DI=low, DO=low, SK=low
77 * dir: 0x0b CS=output, DI=input, DO=output, SK=output
78 *
79 * JTAGkey(2) needs to enable its output via Bit4 / GPIOL0
80 * value: 0x18 OE=high, CS=high, DI=low, DO=low, SK=low
81 * dir: 0x1b OE=output, CS=output, DI=input, DO=output, SK=output
Jörg Fischer6529b9f2010-07-29 15:54:53 +000082 */
Uwe Hermann70145292010-07-29 19:57:55 +000083static uint8_t cs_bits = 0x08;
84static uint8_t pindir = 0x0b;
Paul Fox05dfbe62009-06-16 21:08:06 +000085static struct ftdi_context ftdic_context;
86
Jörg Fischer6529b9f2010-07-29 15:54:53 +000087static const char *get_ft2232_devicename(int ft2232_vid, int ft2232_type)
88{
89 int i;
Uwe Hermann70145292010-07-29 19:57:55 +000090 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +000091 if ((devs_ft2232spi[i].device_id == ft2232_type)
92 && (devs_ft2232spi[i].vendor_id == ft2232_vid))
93 return devs_ft2232spi[i].device_name;
94 }
95 return "unknown device";
96}
97
98static const char *get_ft2232_vendorname(int ft2232_vid, int ft2232_type)
99{
100 int i;
Uwe Hermann70145292010-07-29 19:57:55 +0000101 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
102 if ((devs_ft2232spi[i].device_id == ft2232_type)
103 && (devs_ft2232spi[i].vendor_id == ft2232_vid))
104 return devs_ft2232spi[i].vendor_name;
105 }
106 return "unknown vendor";
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000107}
108
Uwe Hermann70145292010-07-29 19:57:55 +0000109static int send_buf(struct ftdi_context *ftdic, const unsigned char *buf,
110 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +0000111{
112 int r;
113 r = ftdi_write_data(ftdic, (unsigned char *) buf, size);
114 if (r < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000115 msg_perr("ftdi_write_data: %d, %s\n", r,
Paul Fox05dfbe62009-06-16 21:08:06 +0000116 ftdi_get_error_string(ftdic));
117 return 1;
118 }
119 return 0;
120}
121
Uwe Hermann70145292010-07-29 19:57:55 +0000122static int get_buf(struct ftdi_context *ftdic, const unsigned char *buf,
123 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +0000124{
125 int r;
Alex Badeab9556e02010-11-10 03:10:41 +0000126
127 while (size > 0) {
128 r = ftdi_read_data(ftdic, (unsigned char *) buf, size);
129 if (r < 0) {
130 msg_perr("ftdi_read_data: %d, %s\n", r,
131 ftdi_get_error_string(ftdic));
132 return 1;
133 }
134 buf += r;
135 size -= r;
Paul Fox05dfbe62009-06-16 21:08:06 +0000136 }
137 return 0;
138}
139
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000140static int ft2232_spi_send_command(struct flashctx *flash,
141 unsigned int writecnt, unsigned int readcnt,
142 const unsigned char *writearr,
143 unsigned char *readarr);
Michael Karcherb9dbe482011-05-11 17:07:07 +0000144
145static const struct spi_programmer spi_programmer_ft2232 = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000146 .type = SPI_CONTROLLER_FT2232,
147 .max_data_read = 64 * 1024,
148 .max_data_write = 256,
149 .command = ft2232_spi_send_command,
150 .multicommand = default_spi_send_multicommand,
151 .read = default_spi_read,
152 .write_256 = default_spi_write_256,
Nico Huber7bca1262012-06-15 22:28:12 +0000153 .write_aai = default_spi_write_aai,
Michael Karcherb9dbe482011-05-11 17:07:07 +0000154};
155
Uwe Hermann274a20d2011-07-21 09:18:18 +0000156/* Returns 0 upon success, a negative number upon errors. */
Paul Fox05dfbe62009-06-16 21:08:06 +0000157int ft2232_spi_init(void)
158{
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000159 int ret = 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000160 struct ftdi_context *ftdic = &ftdic_context;
161 unsigned char buf[512];
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000162 int ft2232_vid = FTDI_VID;
163 int ft2232_type = FTDI_FT4232H_PID;
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +0000164 enum ftdi_interface ft2232_interface = INTERFACE_B;
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000165 /*
166 * The 'H' chips can run with an internal clock of either 12 MHz or 60 MHz,
167 * but the non-H chips can only run at 12 MHz. We enable the divide-by-5
168 * prescaler on the former to run on the same speed.
169 */
170 uint8_t clock_5x = 1;
171 /* In addition to the prescaler mentioned above there is also another
172 * configurable one on all versions of the chips. Its divisor div can be
173 * set by a 16 bit value x according to the following formula:
174 * div = (1 + x) * 2 <-> x = div / 2 - 1
175 * Hence the expressible divisors are all even numbers between 2 and
176 * 2^17 (=131072) resulting in SCK frequencies of 6 MHz down to about
177 * 92 Hz for 12 MHz inputs.
178 */
179 uint32_t divisor = DEFAULT_DIVISOR;
180 int f;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000181 char *arg;
Alex Badea0b94d052010-11-10 03:18:41 +0000182 double mpsse_clk;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000183
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000184 arg = extract_programmer_param("type");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000185 if (arg) {
186 if (!strcasecmp(arg, "2232H"))
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000187 ft2232_type = FTDI_FT2232H_PID;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000188 else if (!strcasecmp(arg, "4232H"))
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000189 ft2232_type = FTDI_FT4232H_PID;
190 else if (!strcasecmp(arg, "jtagkey")) {
191 ft2232_type = AMONTEC_JTAGKEY_PID;
192 ft2232_interface = INTERFACE_A;
193 cs_bits = 0x18;
Uwe Hermann70145292010-07-29 19:57:55 +0000194 pindir = 0x1b;
Samir Ibradžić7189a5f2011-10-20 23:14:10 +0000195 } else if (!strcasecmp(arg, "picotap")) {
196 ft2232_vid = GOEPEL_VID;
197 ft2232_type = GOEPEL_PICOTAP_PID;
198 ft2232_interface = INTERFACE_A;
Uwe Hermann836b26a2011-10-14 20:33:14 +0000199 } else if (!strcasecmp(arg, "tumpa")) {
200 /* Interface A is SPI1, B is SPI2. */
201 ft2232_type = TIAO_TUMPA_PID;
202 ft2232_interface = INTERFACE_A;
Steve Markgraf0528b7f2011-08-12 01:19:32 +0000203 } else if (!strcasecmp(arg, "busblaster")) {
204 /* In its default configuration it is a jtagkey clone */
205 ft2232_type = FTDI_FT2232H_PID;
206 ft2232_interface = INTERFACE_A;
207 cs_bits = 0x18;
208 pindir = 0x1b;
Alex Badeacaf2d422010-11-10 03:26:57 +0000209 } else if (!strcasecmp(arg, "openmoko")) {
210 ft2232_vid = FIC_VID;
211 ft2232_type = OPENMOKO_DBGBOARD_PID;
212 ft2232_interface = INTERFACE_A;
Pete Batardc0207062011-06-11 12:21:37 +0000213 } else if (!strcasecmp(arg, "arm-usb-ocd")) {
214 ft2232_vid = OLIMEX_VID;
215 ft2232_type = OLIMEX_ARM_OCD_PID;
216 ft2232_interface = INTERFACE_A;
Paul Fertser3cf335e2011-12-20 02:08:14 +0000217 cs_bits = 0x08;
218 pindir = 0x1b;
Pete Batardc0207062011-06-11 12:21:37 +0000219 } else if (!strcasecmp(arg, "arm-usb-tiny")) {
220 ft2232_vid = OLIMEX_VID;
221 ft2232_type = OLIMEX_ARM_TINY_PID;
222 ft2232_interface = INTERFACE_A;
223 } else if (!strcasecmp(arg, "arm-usb-ocd-h")) {
224 ft2232_vid = OLIMEX_VID;
225 ft2232_type = OLIMEX_ARM_OCD_H_PID;
226 ft2232_interface = INTERFACE_A;
Paul Fertser3cf335e2011-12-20 02:08:14 +0000227 cs_bits = 0x08;
228 pindir = 0x1b;
Pete Batardc0207062011-06-11 12:21:37 +0000229 } else if (!strcasecmp(arg, "arm-usb-tiny-h")) {
230 ft2232_vid = OLIMEX_VID;
231 ft2232_type = OLIMEX_ARM_TINY_H_PID;
232 ft2232_interface = INTERFACE_A;
Alex Badeacaf2d422010-11-10 03:26:57 +0000233 } else {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000234 msg_perr("Error: Invalid device type specified.\n");
235 free(arg);
Uwe Hermann274a20d2011-07-21 09:18:18 +0000236 return -1;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000237 }
238 }
239 free(arg);
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000240 arg = extract_programmer_param("port");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000241 if (arg) {
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000242 switch (toupper((unsigned char)*arg)) {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000243 case 'A':
244 ft2232_interface = INTERFACE_A;
245 break;
246 case 'B':
247 ft2232_interface = INTERFACE_B;
248 break;
249 default:
250 msg_perr("Error: Invalid port/interface specified.\n");
251 free(arg);
Uwe Hermann274a20d2011-07-21 09:18:18 +0000252 return -2;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000253 }
254 }
255 free(arg);
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000256 arg = extract_programmer_param("divisor");
257 if (arg && strlen(arg)) {
258 unsigned int temp = 0;
259 char *endptr;
260 temp = strtoul(arg, &endptr, 10);
261 if (*endptr || temp < 2 || temp > 131072 || temp & 0x1) {
262 msg_perr("Error: Invalid SPI frequency divisor specified: \"%s\".\n"
263 "Valid are even values between 2 and 131072.\n", arg);
264 free(arg);
265 return -2;
266 } else {
267 divisor = (uint32_t)temp;
268 }
269 }
270 free(arg);
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000271 msg_pdbg("Using device type %s %s ",
Uwe Hermann70145292010-07-29 19:57:55 +0000272 get_ft2232_vendorname(ft2232_vid, ft2232_type),
273 get_ft2232_devicename(ft2232_vid, ft2232_type));
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000274 msg_pdbg("interface %s\n",
Uwe Hermann70145292010-07-29 19:57:55 +0000275 (ft2232_interface == INTERFACE_A) ? "A" : "B");
Paul Fox05dfbe62009-06-16 21:08:06 +0000276
277 if (ftdi_init(ftdic) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000278 msg_perr("ftdi_init failed\n");
Uwe Hermann274a20d2011-07-21 09:18:18 +0000279 return -3;
Paul Fox05dfbe62009-06-16 21:08:06 +0000280 }
281
Ilya A. Volynets-Evenbakh7c36d522012-08-14 01:32:46 +0000282 if (ftdi_set_interface(ftdic, ft2232_interface) < 0) {
283 msg_perr("Unable to select interface: %s\n", ftdic->error_str);
284 }
285
Alex Badeab1b459c2010-11-10 03:22:39 +0000286 f = ftdi_usb_open(ftdic, ft2232_vid, ft2232_type);
Paul Fox05dfbe62009-06-16 21:08:06 +0000287
288 if (f < 0 && f != -5) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000289 msg_perr("Unable to open FTDI device: %d (%s)\n", f,
Paul Fox05dfbe62009-06-16 21:08:06 +0000290 ftdi_get_error_string(ftdic));
Uwe Hermann274a20d2011-07-21 09:18:18 +0000291 return -4;
Paul Fox05dfbe62009-06-16 21:08:06 +0000292 }
293
Alex Badea0b94d052010-11-10 03:18:41 +0000294 if (ftdic->type != TYPE_2232H && ftdic->type != TYPE_4232H) {
295 msg_pdbg("FTDI chip type %d is not high-speed\n",
296 ftdic->type);
297 clock_5x = 0;
298 }
299
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000300 if (ftdi_usb_reset(ftdic) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000301 msg_perr("Unable to reset FTDI device\n");
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000302 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000303
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000304 if (ftdi_set_latency_timer(ftdic, 2) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000305 msg_perr("Unable to set latency timer\n");
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000306 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000307
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000308 if (ftdi_write_data_set_chunksize(ftdic, 256)) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000309 msg_perr("Unable to set chunk size\n");
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000310 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000311
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000312 if (ftdi_set_bitmode(ftdic, 0x00, BITMODE_BITBANG_SPI) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000313 msg_perr("Unable to set bitmode to SPI\n");
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000314 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000315
Alex Badea0b94d052010-11-10 03:18:41 +0000316 if (clock_5x) {
317 msg_pdbg("Disable divide-by-5 front stage\n");
318 buf[0] = 0x8a; /* Disable divide-by-5. */
Uwe Hermann274a20d2011-07-21 09:18:18 +0000319 if (send_buf(ftdic, buf, 1)) {
320 ret = -5;
321 goto ftdi_err;
322 }
Alex Badea0b94d052010-11-10 03:18:41 +0000323 mpsse_clk = 60.0;
324 } else {
325 mpsse_clk = 12.0;
326 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000327
Sean Nelson34b5db72010-01-10 01:08:37 +0000328 msg_pdbg("Set clock divisor\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000329 buf[0] = 0x86; /* command "set divisor" */
Ilya A. Volynets-Evenbakh3464d052012-06-14 13:08:33 +0000330 buf[1] = (divisor / 2 - 1) & 0xff;
331 buf[2] = ((divisor / 2 - 1) >> 8) & 0xff;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000332 if (send_buf(ftdic, buf, 3)) {
333 ret = -6;
334 goto ftdi_err;
335 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000336
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000337 msg_pdbg("MPSSE clock: %f MHz, divisor: %u, SPI clock: %f MHz\n",
338 mpsse_clk, divisor, (double)(mpsse_clk / divisor));
Paul Fox05dfbe62009-06-16 21:08:06 +0000339
Uwe Hermannc67d0372009-10-01 18:40:02 +0000340 /* Disconnect TDI/DO to TDO/DI for loopback. */
Sean Nelson34b5db72010-01-10 01:08:37 +0000341 msg_pdbg("No loopback of TDI/DO TDO/DI\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000342 buf[0] = 0x85;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000343 if (send_buf(ftdic, buf, 1)) {
344 ret = -7;
345 goto ftdi_err;
346 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000347
Sean Nelson34b5db72010-01-10 01:08:37 +0000348 msg_pdbg("Set data bits\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000349 buf[0] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000350 buf[1] = cs_bits;
351 buf[2] = pindir;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000352 if (send_buf(ftdic, buf, 3)) {
353 ret = -8;
354 goto ftdi_err;
355 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000356
Sean Nelson34b5db72010-01-10 01:08:37 +0000357 // msg_pdbg("\nft2232 chosen\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000358
Michael Karcherb9dbe482011-05-11 17:07:07 +0000359 register_spi_programmer(&spi_programmer_ft2232);
Paul Fox05dfbe62009-06-16 21:08:06 +0000360
361 return 0;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000362
363ftdi_err:
364 if ((f = ftdi_usb_close(ftdic)) < 0) {
365 msg_perr("Unable to close FTDI device: %d (%s)\n", f,
366 ftdi_get_error_string(ftdic));
367 }
368
369 return ret;
Paul Fox05dfbe62009-06-16 21:08:06 +0000370}
371
Uwe Hermann274a20d2011-07-21 09:18:18 +0000372/* Returns 0 upon success, a negative number upon errors. */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000373static int ft2232_spi_send_command(struct flashctx *flash,
374 unsigned int writecnt, unsigned int readcnt,
375 const unsigned char *writearr,
376 unsigned char *readarr)
Paul Fox05dfbe62009-06-16 21:08:06 +0000377{
378 struct ftdi_context *ftdic = &ftdic_context;
379 static unsigned char *buf = NULL;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000380 /* failed is special. We use bitwise ops, but it is essentially bool. */
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000381 int i = 0, ret = 0, failed = 0;
382 int bufsize;
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000383 static int oldbufsize = 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000384
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000385 if (writecnt > 65536 || readcnt > 65536)
386 return SPI_INVALID_LENGTH;
387
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000388 /* buf is not used for the response from the chip. */
389 bufsize = max(writecnt + 9, 260 + 9);
390 /* Never shrink. realloc() calls are expensive. */
391 if (bufsize > oldbufsize) {
392 buf = realloc(buf, bufsize);
393 if (!buf) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000394 msg_perr("Out of memory!\n");
Uwe Hermann274a20d2011-07-21 09:18:18 +0000395 /* TODO: What to do with buf? */
396 return SPI_GENERIC_ERROR;
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000397 }
398 oldbufsize = bufsize;
Paul Fox05dfbe62009-06-16 21:08:06 +0000399 }
400
Uwe Hermannc67d0372009-10-01 18:40:02 +0000401 /*
402 * Minimize USB transfers by packing as many commands as possible
403 * together. If we're not expecting to read, we can assert CS#, write,
404 * and deassert CS# all in one shot. If reading, we do three separate
Stefan Reinauerab044b22009-09-16 08:26:59 +0000405 * operations.
406 */
Sean Nelson34b5db72010-01-10 01:08:37 +0000407 msg_pspew("Assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000408 buf[i++] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000409 buf[i++] = 0 & ~cs_bits; /* assertive */
410 buf[i++] = pindir;
Paul Fox05dfbe62009-06-16 21:08:06 +0000411
412 if (writecnt) {
413 buf[i++] = 0x11;
414 buf[i++] = (writecnt - 1) & 0xff;
415 buf[i++] = ((writecnt - 1) >> 8) & 0xff;
Uwe Hermannc67d0372009-10-01 18:40:02 +0000416 memcpy(buf + i, writearr, writecnt);
Paul Fox05dfbe62009-06-16 21:08:06 +0000417 i += writecnt;
418 }
419
Uwe Hermannc67d0372009-10-01 18:40:02 +0000420 /*
421 * Optionally terminate this batch of commands with a
Paul Fox05dfbe62009-06-16 21:08:06 +0000422 * read command, then do the fetch of the results.
423 */
424 if (readcnt) {
425 buf[i++] = 0x20;
426 buf[i++] = (readcnt - 1) & 0xff;
427 buf[i++] = ((readcnt - 1) >> 8) & 0xff;
428 ret = send_buf(ftdic, buf, i);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000429 failed = ret;
430 /* We can't abort here, we still have to deassert CS#. */
431 if (ret)
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000432 msg_perr("send_buf failed before read: %i\n", ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000433 i = 0;
Stefan Reinauerab044b22009-09-16 08:26:59 +0000434 if (ret == 0) {
Uwe Hermannc67d0372009-10-01 18:40:02 +0000435 /*
436 * FIXME: This is unreliable. There's no guarantee that
437 * we read the response directly after sending the read
438 * command. We may be scheduled out etc.
Stefan Reinauerab044b22009-09-16 08:26:59 +0000439 */
440 ret = get_buf(ftdic, readarr, readcnt);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000441 failed |= ret;
442 /* We can't abort here either. */
443 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000444 msg_perr("get_buf failed: %i\n", ret);
Stefan Reinauerab044b22009-09-16 08:26:59 +0000445 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000446 }
447
Sean Nelson34b5db72010-01-10 01:08:37 +0000448 msg_pspew("De-assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000449 buf[i++] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000450 buf[i++] = cs_bits;
451 buf[i++] = pindir;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000452 ret = send_buf(ftdic, buf, i);
453 failed |= ret;
454 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000455 msg_perr("send_buf failed at end: %i\n", ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000456
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000457 return failed ? -1 : 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000458}
459
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000460void print_supported_usbdevs(const struct usbdev_status *devs)
461{
Uwe Hermann70145292010-07-29 19:57:55 +0000462 int i;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000463
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000464 msg_pinfo("USB devices:\n");
Uwe Hermann70145292010-07-29 19:57:55 +0000465 for (i = 0; devs[i].vendor_name != NULL; i++) {
466 msg_pinfo("%s %s [%04x:%04x]%s\n", devs[i].vendor_name,
467 devs[i].device_name, devs[i].vendor_id,
468 devs[i].device_id,
469 (devs[i].status == NT) ? " (untested)" : "");
470 }
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000471}
472
Paul Fox05dfbe62009-06-16 21:08:06 +0000473#endif