blob: 8ab89fa3fe0d6744243fb2d55a7b29ae89181329 [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>
Paul Fox05dfbe62009-06-16 21:08:06 +000024#include <string.h>
25#include <stdlib.h>
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +000026#include <ctype.h>
Paul Fox05dfbe62009-06-16 21:08:06 +000027#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000028#include "programmer.h"
Paul Fox05dfbe62009-06-16 21:08:06 +000029#include "spi.h"
Paul Fox05dfbe62009-06-16 21:08:06 +000030#include <ftdi.h>
31
Uwe Hermann70145292010-07-29 19:57:55 +000032#define FTDI_VID 0x0403
33#define FTDI_FT2232H_PID 0x6010
34#define FTDI_FT4232H_PID 0x6011
35#define AMONTEC_JTAGKEY_PID 0xCFF8
Jörg Fischer6529b9f2010-07-29 15:54:53 +000036
Alex Badeacaf2d422010-11-10 03:26:57 +000037#define FIC_VID 0x1457
38#define OPENMOKO_DBGBOARD_PID 0x5118
39
Pete Batardc0207062011-06-11 12:21:37 +000040#define OLIMEX_VID 0x15BA
41#define OLIMEX_ARM_OCD_PID 0x0003
42#define OLIMEX_ARM_TINY_PID 0x0004
43#define OLIMEX_ARM_OCD_H_PID 0x002B
44#define OLIMEX_ARM_TINY_H_PID 0x002A
45
Jörg Fischer6529b9f2010-07-29 15:54:53 +000046const struct usbdev_status devs_ft2232spi[] = {
Uwe Hermann70145292010-07-29 19:57:55 +000047 {FTDI_VID, FTDI_FT2232H_PID, OK, "FTDI", "FT2232H"},
48 {FTDI_VID, FTDI_FT4232H_PID, OK, "FTDI", "FT4232H"},
49 {FTDI_VID, AMONTEC_JTAGKEY_PID, OK, "Amontec", "JTAGkey"},
Pete Batardc0207062011-06-11 12:21:37 +000050 {FIC_VID, OPENMOKO_DBGBOARD_PID, OK, "FIC",
Alex Badeacaf2d422010-11-10 03:26:57 +000051 "OpenMoko Neo1973 Debug board (V2+)"},
Pete Batardc0207062011-06-11 12:21:37 +000052 {OLIMEX_VID, OLIMEX_ARM_OCD_PID, NT, "Olimex", "ARM-USB-OCD"},
53 {OLIMEX_VID, OLIMEX_ARM_TINY_PID, OK, "Olimex", "ARM-USB-TINY"},
54 {OLIMEX_VID, OLIMEX_ARM_OCD_H_PID, NT, "Olimex", "ARM-USB-OCD-H"},
55 {OLIMEX_VID, OLIMEX_ARM_TINY_H_PID, NT, "Olimex", "ARM-USB-TINY-H"},
Uwe Hermann70145292010-07-29 19:57:55 +000056 {},
Jörg Fischer6529b9f2010-07-29 15:54:53 +000057};
58
Uwe Hermannc67d0372009-10-01 18:40:02 +000059/*
60 * The 'H' chips can run internally at either 12MHz or 60MHz.
61 * The non-H chips can only run at 12MHz.
62 */
Alex Badea0b94d052010-11-10 03:18:41 +000063static uint8_t clock_5x = 1;
Paul Fox05dfbe62009-06-16 21:08:06 +000064
Uwe Hermannc67d0372009-10-01 18:40:02 +000065/*
66 * In either case, the divisor is a simple integer clock divider.
Alex Badea0b94d052010-11-10 03:18:41 +000067 * If clock_5x is set, this divisor divides 30MHz, else it divides 6MHz.
Uwe Hermannc67d0372009-10-01 18:40:02 +000068 */
69#define DIVIDE_BY 3 /* e.g. '3' will give either 10MHz or 2MHz SPI clock. */
Paul Fox05dfbe62009-06-16 21:08:06 +000070
Uwe Hermannc67d0372009-10-01 18:40:02 +000071#define BITMODE_BITBANG_NORMAL 1
72#define BITMODE_BITBANG_SPI 2
Paul Fox05dfbe62009-06-16 21:08:06 +000073
Jörg Fischer6529b9f2010-07-29 15:54:53 +000074/* Set data bits low-byte command:
75 * value: 0x08 CS=high, DI=low, DO=low, SK=low
76 * dir: 0x0b CS=output, DI=input, DO=output, SK=output
77 *
78 * JTAGkey(2) needs to enable its output via Bit4 / GPIOL0
79 * value: 0x18 OE=high, CS=high, DI=low, DO=low, SK=low
80 * dir: 0x1b OE=output, CS=output, DI=input, DO=output, SK=output
Jörg Fischer6529b9f2010-07-29 15:54:53 +000081 */
Uwe Hermann70145292010-07-29 19:57:55 +000082static uint8_t cs_bits = 0x08;
83static uint8_t pindir = 0x0b;
Paul Fox05dfbe62009-06-16 21:08:06 +000084static struct ftdi_context ftdic_context;
85
Jörg Fischer6529b9f2010-07-29 15:54:53 +000086static const char *get_ft2232_devicename(int ft2232_vid, int ft2232_type)
87{
88 int i;
Uwe Hermann70145292010-07-29 19:57:55 +000089 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +000090 if ((devs_ft2232spi[i].device_id == ft2232_type)
91 && (devs_ft2232spi[i].vendor_id == ft2232_vid))
92 return devs_ft2232spi[i].device_name;
93 }
94 return "unknown device";
95}
96
97static const char *get_ft2232_vendorname(int ft2232_vid, int ft2232_type)
98{
99 int i;
Uwe Hermann70145292010-07-29 19:57:55 +0000100 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
101 if ((devs_ft2232spi[i].device_id == ft2232_type)
102 && (devs_ft2232spi[i].vendor_id == ft2232_vid))
103 return devs_ft2232spi[i].vendor_name;
104 }
105 return "unknown vendor";
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000106}
107
Uwe Hermann70145292010-07-29 19:57:55 +0000108static int send_buf(struct ftdi_context *ftdic, const unsigned char *buf,
109 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +0000110{
111 int r;
112 r = ftdi_write_data(ftdic, (unsigned char *) buf, size);
113 if (r < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000114 msg_perr("ftdi_write_data: %d, %s\n", r,
Paul Fox05dfbe62009-06-16 21:08:06 +0000115 ftdi_get_error_string(ftdic));
116 return 1;
117 }
118 return 0;
119}
120
Uwe Hermann70145292010-07-29 19:57:55 +0000121static int get_buf(struct ftdi_context *ftdic, const unsigned char *buf,
122 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +0000123{
124 int r;
Alex Badeab9556e02010-11-10 03:10:41 +0000125
126 while (size > 0) {
127 r = ftdi_read_data(ftdic, (unsigned char *) buf, size);
128 if (r < 0) {
129 msg_perr("ftdi_read_data: %d, %s\n", r,
130 ftdi_get_error_string(ftdic));
131 return 1;
132 }
133 buf += r;
134 size -= r;
Paul Fox05dfbe62009-06-16 21:08:06 +0000135 }
136 return 0;
137}
138
Michael Karcherb9dbe482011-05-11 17:07:07 +0000139static int ft2232_spi_send_command(unsigned int writecnt, unsigned int readcnt,
140 const unsigned char *writearr, unsigned char *readarr);
141
142static const struct spi_programmer spi_programmer_ft2232 = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000143 .type = SPI_CONTROLLER_FT2232,
144 .max_data_read = 64 * 1024,
145 .max_data_write = 256,
146 .command = ft2232_spi_send_command,
147 .multicommand = default_spi_send_multicommand,
148 .read = default_spi_read,
149 .write_256 = default_spi_write_256,
Michael Karcherb9dbe482011-05-11 17:07:07 +0000150};
151
Uwe Hermann274a20d2011-07-21 09:18:18 +0000152/* Returns 0 upon success, a negative number upon errors. */
Paul Fox05dfbe62009-06-16 21:08:06 +0000153int ft2232_spi_init(void)
154{
Uwe Hermann274a20d2011-07-21 09:18:18 +0000155 int f, ret = 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000156 struct ftdi_context *ftdic = &ftdic_context;
157 unsigned char buf[512];
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000158 int ft2232_vid = FTDI_VID;
159 int ft2232_type = FTDI_FT4232H_PID;
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +0000160 enum ftdi_interface ft2232_interface = INTERFACE_B;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000161 char *arg;
Alex Badea0b94d052010-11-10 03:18:41 +0000162 double mpsse_clk;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000163
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000164 arg = extract_programmer_param("type");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000165 if (arg) {
166 if (!strcasecmp(arg, "2232H"))
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000167 ft2232_type = FTDI_FT2232H_PID;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000168 else if (!strcasecmp(arg, "4232H"))
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000169 ft2232_type = FTDI_FT4232H_PID;
170 else if (!strcasecmp(arg, "jtagkey")) {
171 ft2232_type = AMONTEC_JTAGKEY_PID;
172 ft2232_interface = INTERFACE_A;
173 cs_bits = 0x18;
Uwe Hermann70145292010-07-29 19:57:55 +0000174 pindir = 0x1b;
Steve Markgraf0528b7f2011-08-12 01:19:32 +0000175 } else if (!strcasecmp(arg, "busblaster")) {
176 /* In its default configuration it is a jtagkey clone */
177 ft2232_type = FTDI_FT2232H_PID;
178 ft2232_interface = INTERFACE_A;
179 cs_bits = 0x18;
180 pindir = 0x1b;
Alex Badeacaf2d422010-11-10 03:26:57 +0000181 } else if (!strcasecmp(arg, "openmoko")) {
182 ft2232_vid = FIC_VID;
183 ft2232_type = OPENMOKO_DBGBOARD_PID;
184 ft2232_interface = INTERFACE_A;
Pete Batardc0207062011-06-11 12:21:37 +0000185 } else if (!strcasecmp(arg, "arm-usb-ocd")) {
186 ft2232_vid = OLIMEX_VID;
187 ft2232_type = OLIMEX_ARM_OCD_PID;
188 ft2232_interface = INTERFACE_A;
189 } else if (!strcasecmp(arg, "arm-usb-tiny")) {
190 ft2232_vid = OLIMEX_VID;
191 ft2232_type = OLIMEX_ARM_TINY_PID;
192 ft2232_interface = INTERFACE_A;
193 } else if (!strcasecmp(arg, "arm-usb-ocd-h")) {
194 ft2232_vid = OLIMEX_VID;
195 ft2232_type = OLIMEX_ARM_OCD_H_PID;
196 ft2232_interface = INTERFACE_A;
197 } else if (!strcasecmp(arg, "arm-usb-tiny-h")) {
198 ft2232_vid = OLIMEX_VID;
199 ft2232_type = OLIMEX_ARM_TINY_H_PID;
200 ft2232_interface = INTERFACE_A;
Alex Badeacaf2d422010-11-10 03:26:57 +0000201 } else {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000202 msg_perr("Error: Invalid device type specified.\n");
203 free(arg);
Uwe Hermann274a20d2011-07-21 09:18:18 +0000204 return -1;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000205 }
206 }
207 free(arg);
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000208 arg = extract_programmer_param("port");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000209 if (arg) {
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000210 switch (toupper((unsigned char)*arg)) {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000211 case 'A':
212 ft2232_interface = INTERFACE_A;
213 break;
214 case 'B':
215 ft2232_interface = INTERFACE_B;
216 break;
217 default:
218 msg_perr("Error: Invalid port/interface specified.\n");
219 free(arg);
Uwe Hermann274a20d2011-07-21 09:18:18 +0000220 return -2;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000221 }
222 }
223 free(arg);
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000224 msg_pdbg("Using device type %s %s ",
Uwe Hermann70145292010-07-29 19:57:55 +0000225 get_ft2232_vendorname(ft2232_vid, ft2232_type),
226 get_ft2232_devicename(ft2232_vid, ft2232_type));
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000227 msg_pdbg("interface %s\n",
Uwe Hermann70145292010-07-29 19:57:55 +0000228 (ft2232_interface == INTERFACE_A) ? "A" : "B");
Paul Fox05dfbe62009-06-16 21:08:06 +0000229
230 if (ftdi_init(ftdic) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000231 msg_perr("ftdi_init failed\n");
Uwe Hermann274a20d2011-07-21 09:18:18 +0000232 return -3;
Paul Fox05dfbe62009-06-16 21:08:06 +0000233 }
234
Alex Badeab1b459c2010-11-10 03:22:39 +0000235 f = ftdi_usb_open(ftdic, ft2232_vid, ft2232_type);
Paul Fox05dfbe62009-06-16 21:08:06 +0000236
237 if (f < 0 && f != -5) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000238 msg_perr("Unable to open FTDI device: %d (%s)\n", f,
Paul Fox05dfbe62009-06-16 21:08:06 +0000239 ftdi_get_error_string(ftdic));
Uwe Hermann274a20d2011-07-21 09:18:18 +0000240 return -4;
Paul Fox05dfbe62009-06-16 21:08:06 +0000241 }
242
Alex Badea0b94d052010-11-10 03:18:41 +0000243 if (ftdic->type != TYPE_2232H && ftdic->type != TYPE_4232H) {
244 msg_pdbg("FTDI chip type %d is not high-speed\n",
245 ftdic->type);
246 clock_5x = 0;
247 }
248
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +0000249 if (ftdi_set_interface(ftdic, ft2232_interface) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000250 msg_perr("Unable to select interface: %s\n",
Paul Fox05dfbe62009-06-16 21:08:06 +0000251 ftdic->error_str);
252 }
253
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000254 if (ftdi_usb_reset(ftdic) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000255 msg_perr("Unable to reset FTDI device\n");
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000256 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000257
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000258 if (ftdi_set_latency_timer(ftdic, 2) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000259 msg_perr("Unable to set latency timer\n");
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000260 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000261
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000262 if (ftdi_write_data_set_chunksize(ftdic, 256)) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000263 msg_perr("Unable to set chunk size\n");
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000264 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000265
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000266 if (ftdi_set_bitmode(ftdic, 0x00, BITMODE_BITBANG_SPI) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000267 msg_perr("Unable to set bitmode to SPI\n");
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000268 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000269
Alex Badea0b94d052010-11-10 03:18:41 +0000270 if (clock_5x) {
271 msg_pdbg("Disable divide-by-5 front stage\n");
272 buf[0] = 0x8a; /* Disable divide-by-5. */
Uwe Hermann274a20d2011-07-21 09:18:18 +0000273 if (send_buf(ftdic, buf, 1)) {
274 ret = -5;
275 goto ftdi_err;
276 }
Alex Badea0b94d052010-11-10 03:18:41 +0000277 mpsse_clk = 60.0;
278 } else {
279 mpsse_clk = 12.0;
280 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000281
Sean Nelson34b5db72010-01-10 01:08:37 +0000282 msg_pdbg("Set clock divisor\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000283 buf[0] = 0x86; /* command "set divisor" */
284 /* valueL/valueH are (desired_divisor - 1) */
Uwe Hermannc67d0372009-10-01 18:40:02 +0000285 buf[1] = (DIVIDE_BY - 1) & 0xff;
286 buf[2] = ((DIVIDE_BY - 1) >> 8) & 0xff;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000287 if (send_buf(ftdic, buf, 3)) {
288 ret = -6;
289 goto ftdi_err;
290 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000291
Alex Badea0b94d052010-11-10 03:18:41 +0000292 msg_pdbg("MPSSE clock: %f MHz divisor: %d "
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000293 "SPI clock: %f MHz\n", mpsse_clk, DIVIDE_BY,
Alex Badea0b94d052010-11-10 03:18:41 +0000294 (double)(mpsse_clk / (((DIVIDE_BY - 1) + 1) * 2)));
Paul Fox05dfbe62009-06-16 21:08:06 +0000295
Uwe Hermannc67d0372009-10-01 18:40:02 +0000296 /* Disconnect TDI/DO to TDO/DI for loopback. */
Sean Nelson34b5db72010-01-10 01:08:37 +0000297 msg_pdbg("No loopback of TDI/DO TDO/DI\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000298 buf[0] = 0x85;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000299 if (send_buf(ftdic, buf, 1)) {
300 ret = -7;
301 goto ftdi_err;
302 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000303
Sean Nelson34b5db72010-01-10 01:08:37 +0000304 msg_pdbg("Set data bits\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000305 buf[0] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000306 buf[1] = cs_bits;
307 buf[2] = pindir;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000308 if (send_buf(ftdic, buf, 3)) {
309 ret = -8;
310 goto ftdi_err;
311 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000312
Sean Nelson34b5db72010-01-10 01:08:37 +0000313 // msg_pdbg("\nft2232 chosen\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000314
Michael Karcherb9dbe482011-05-11 17:07:07 +0000315 register_spi_programmer(&spi_programmer_ft2232);
Paul Fox05dfbe62009-06-16 21:08:06 +0000316
317 return 0;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000318
319ftdi_err:
320 if ((f = ftdi_usb_close(ftdic)) < 0) {
321 msg_perr("Unable to close FTDI device: %d (%s)\n", f,
322 ftdi_get_error_string(ftdic));
323 }
324
325 return ret;
Paul Fox05dfbe62009-06-16 21:08:06 +0000326}
327
Uwe Hermann274a20d2011-07-21 09:18:18 +0000328/* Returns 0 upon success, a negative number upon errors. */
Michael Karcherb9dbe482011-05-11 17:07:07 +0000329static int ft2232_spi_send_command(unsigned int writecnt, unsigned int readcnt,
Paul Fox05dfbe62009-06-16 21:08:06 +0000330 const unsigned char *writearr, unsigned char *readarr)
331{
332 struct ftdi_context *ftdic = &ftdic_context;
333 static unsigned char *buf = NULL;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000334 /* failed is special. We use bitwise ops, but it is essentially bool. */
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000335 int i = 0, ret = 0, failed = 0;
336 int bufsize;
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000337 static int oldbufsize = 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000338
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000339 if (writecnt > 65536 || readcnt > 65536)
340 return SPI_INVALID_LENGTH;
341
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000342 /* buf is not used for the response from the chip. */
343 bufsize = max(writecnt + 9, 260 + 9);
344 /* Never shrink. realloc() calls are expensive. */
345 if (bufsize > oldbufsize) {
346 buf = realloc(buf, bufsize);
347 if (!buf) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000348 msg_perr("Out of memory!\n");
Uwe Hermann274a20d2011-07-21 09:18:18 +0000349 /* TODO: What to do with buf? */
350 return SPI_GENERIC_ERROR;
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000351 }
352 oldbufsize = bufsize;
Paul Fox05dfbe62009-06-16 21:08:06 +0000353 }
354
Uwe Hermannc67d0372009-10-01 18:40:02 +0000355 /*
356 * Minimize USB transfers by packing as many commands as possible
357 * together. If we're not expecting to read, we can assert CS#, write,
358 * and deassert CS# all in one shot. If reading, we do three separate
Stefan Reinauerab044b22009-09-16 08:26:59 +0000359 * operations.
360 */
Sean Nelson34b5db72010-01-10 01:08:37 +0000361 msg_pspew("Assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000362 buf[i++] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000363 buf[i++] = 0 & ~cs_bits; /* assertive */
364 buf[i++] = pindir;
Paul Fox05dfbe62009-06-16 21:08:06 +0000365
366 if (writecnt) {
367 buf[i++] = 0x11;
368 buf[i++] = (writecnt - 1) & 0xff;
369 buf[i++] = ((writecnt - 1) >> 8) & 0xff;
Uwe Hermannc67d0372009-10-01 18:40:02 +0000370 memcpy(buf + i, writearr, writecnt);
Paul Fox05dfbe62009-06-16 21:08:06 +0000371 i += writecnt;
372 }
373
Uwe Hermannc67d0372009-10-01 18:40:02 +0000374 /*
375 * Optionally terminate this batch of commands with a
Paul Fox05dfbe62009-06-16 21:08:06 +0000376 * read command, then do the fetch of the results.
377 */
378 if (readcnt) {
379 buf[i++] = 0x20;
380 buf[i++] = (readcnt - 1) & 0xff;
381 buf[i++] = ((readcnt - 1) >> 8) & 0xff;
382 ret = send_buf(ftdic, buf, i);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000383 failed = ret;
384 /* We can't abort here, we still have to deassert CS#. */
385 if (ret)
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000386 msg_perr("send_buf failed before read: %i\n", ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000387 i = 0;
Stefan Reinauerab044b22009-09-16 08:26:59 +0000388 if (ret == 0) {
Uwe Hermannc67d0372009-10-01 18:40:02 +0000389 /*
390 * FIXME: This is unreliable. There's no guarantee that
391 * we read the response directly after sending the read
392 * command. We may be scheduled out etc.
Stefan Reinauerab044b22009-09-16 08:26:59 +0000393 */
394 ret = get_buf(ftdic, readarr, readcnt);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000395 failed |= ret;
396 /* We can't abort here either. */
397 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000398 msg_perr("get_buf failed: %i\n", ret);
Stefan Reinauerab044b22009-09-16 08:26:59 +0000399 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000400 }
401
Sean Nelson34b5db72010-01-10 01:08:37 +0000402 msg_pspew("De-assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000403 buf[i++] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000404 buf[i++] = cs_bits;
405 buf[i++] = pindir;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000406 ret = send_buf(ftdic, buf, i);
407 failed |= ret;
408 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000409 msg_perr("send_buf failed at end: %i\n", ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000410
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000411 return failed ? -1 : 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000412}
413
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000414void print_supported_usbdevs(const struct usbdev_status *devs)
415{
Uwe Hermann70145292010-07-29 19:57:55 +0000416 int i;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000417
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000418 msg_pinfo("USB devices:\n");
Uwe Hermann70145292010-07-29 19:57:55 +0000419 for (i = 0; devs[i].vendor_name != NULL; i++) {
420 msg_pinfo("%s %s [%04x:%04x]%s\n", devs[i].vendor_name,
421 devs[i].device_name, devs[i].vendor_id,
422 devs[i].device_id,
423 (devs[i].status == NT) ? " (untested)" : "");
424 }
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000425}
426
Paul Fox05dfbe62009-06-16 21:08:06 +0000427#endif