blob: 628823fbd43fe1f2435b05aa580343f6803cd502 [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;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000164 int channel_count = 4; /* Stores the number of channels of the device. */
165 enum ftdi_interface ft2232_interface = INTERFACE_A;
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000166 /*
167 * The 'H' chips can run with an internal clock of either 12 MHz or 60 MHz,
168 * but the non-H chips can only run at 12 MHz. We enable the divide-by-5
169 * prescaler on the former to run on the same speed.
170 */
171 uint8_t clock_5x = 1;
172 /* In addition to the prescaler mentioned above there is also another
173 * configurable one on all versions of the chips. Its divisor div can be
174 * set by a 16 bit value x according to the following formula:
175 * div = (1 + x) * 2 <-> x = div / 2 - 1
176 * Hence the expressible divisors are all even numbers between 2 and
177 * 2^17 (=131072) resulting in SCK frequencies of 6 MHz down to about
178 * 92 Hz for 12 MHz inputs.
179 */
180 uint32_t divisor = DEFAULT_DIVISOR;
181 int f;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000182 char *arg;
Alex Badea0b94d052010-11-10 03:18:41 +0000183 double mpsse_clk;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000184
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000185 arg = extract_programmer_param("type");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000186 if (arg) {
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000187 if (!strcasecmp(arg, "2232H")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000188 ft2232_type = FTDI_FT2232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000189 channel_count = 2;
190 } else if (!strcasecmp(arg, "4232H")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000191 ft2232_type = FTDI_FT4232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000192 channel_count = 4;
193 } else if (!strcasecmp(arg, "jtagkey")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000194 ft2232_type = AMONTEC_JTAGKEY_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000195 channel_count = 2;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000196 cs_bits = 0x18;
Uwe Hermann70145292010-07-29 19:57:55 +0000197 pindir = 0x1b;
Samir Ibradžić7189a5f2011-10-20 23:14:10 +0000198 } else if (!strcasecmp(arg, "picotap")) {
199 ft2232_vid = GOEPEL_VID;
200 ft2232_type = GOEPEL_PICOTAP_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000201 channel_count = 2;
Uwe Hermann836b26a2011-10-14 20:33:14 +0000202 } else if (!strcasecmp(arg, "tumpa")) {
203 /* Interface A is SPI1, B is SPI2. */
204 ft2232_type = TIAO_TUMPA_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000205 channel_count = 2;
Steve Markgraf0528b7f2011-08-12 01:19:32 +0000206 } else if (!strcasecmp(arg, "busblaster")) {
207 /* In its default configuration it is a jtagkey clone */
208 ft2232_type = FTDI_FT2232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000209 channel_count = 2;
Steve Markgraf0528b7f2011-08-12 01:19:32 +0000210 cs_bits = 0x18;
211 pindir = 0x1b;
Alex Badeacaf2d422010-11-10 03:26:57 +0000212 } else if (!strcasecmp(arg, "openmoko")) {
213 ft2232_vid = FIC_VID;
214 ft2232_type = OPENMOKO_DBGBOARD_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000215 channel_count = 2;
Pete Batardc0207062011-06-11 12:21:37 +0000216 } else if (!strcasecmp(arg, "arm-usb-ocd")) {
217 ft2232_vid = OLIMEX_VID;
218 ft2232_type = OLIMEX_ARM_OCD_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000219 channel_count = 2;
Paul Fertser3cf335e2011-12-20 02:08:14 +0000220 cs_bits = 0x08;
221 pindir = 0x1b;
Pete Batardc0207062011-06-11 12:21:37 +0000222 } else if (!strcasecmp(arg, "arm-usb-tiny")) {
223 ft2232_vid = OLIMEX_VID;
224 ft2232_type = OLIMEX_ARM_TINY_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000225 channel_count = 2;
Pete Batardc0207062011-06-11 12:21:37 +0000226 } else if (!strcasecmp(arg, "arm-usb-ocd-h")) {
227 ft2232_vid = OLIMEX_VID;
228 ft2232_type = OLIMEX_ARM_OCD_H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000229 channel_count = 2;
Paul Fertser3cf335e2011-12-20 02:08:14 +0000230 cs_bits = 0x08;
231 pindir = 0x1b;
Pete Batardc0207062011-06-11 12:21:37 +0000232 } else if (!strcasecmp(arg, "arm-usb-tiny-h")) {
233 ft2232_vid = OLIMEX_VID;
234 ft2232_type = OLIMEX_ARM_TINY_H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000235 channel_count = 2;
Alex Badeacaf2d422010-11-10 03:26:57 +0000236 } else {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000237 msg_perr("Error: Invalid device type specified.\n");
238 free(arg);
Uwe Hermann274a20d2011-07-21 09:18:18 +0000239 return -1;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000240 }
241 }
242 free(arg);
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000243 arg = extract_programmer_param("port");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000244 if (arg) {
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000245 switch (toupper((unsigned char)*arg)) {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000246 case 'A':
247 ft2232_interface = INTERFACE_A;
248 break;
249 case 'B':
250 ft2232_interface = INTERFACE_B;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000251 if (channel_count < 2)
252 channel_count = -1;
253 break;
254 case 'C':
255 ft2232_interface = INTERFACE_C;
256 if (channel_count < 3)
257 channel_count = -1;
258 break;
259 case 'D':
260 ft2232_interface = INTERFACE_D;
261 if (channel_count < 4)
262 channel_count = -1;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000263 break;
264 default:
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000265 channel_count = -1;
266 break;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000267 }
268 }
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000269 if (channel_count < 0 || strlen(arg) != 1) {
270 msg_perr("Error: Invalid channel/port/interface specified: \"%s\".\n", arg);
271 free(arg);
272 return -2;
273 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000274 free(arg);
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000275
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000276 arg = extract_programmer_param("divisor");
277 if (arg && strlen(arg)) {
278 unsigned int temp = 0;
279 char *endptr;
280 temp = strtoul(arg, &endptr, 10);
281 if (*endptr || temp < 2 || temp > 131072 || temp & 0x1) {
282 msg_perr("Error: Invalid SPI frequency divisor specified: \"%s\".\n"
283 "Valid are even values between 2 and 131072.\n", arg);
284 free(arg);
285 return -2;
286 } else {
287 divisor = (uint32_t)temp;
288 }
289 }
290 free(arg);
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000291 msg_pdbg("Using device type %s %s ",
Uwe Hermann70145292010-07-29 19:57:55 +0000292 get_ft2232_vendorname(ft2232_vid, ft2232_type),
293 get_ft2232_devicename(ft2232_vid, ft2232_type));
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000294 msg_pdbg("channel %s\n",
295 (ft2232_interface == INTERFACE_A) ? "A" :
296 (ft2232_interface == INTERFACE_B) ? "B" :
297 (ft2232_interface == INTERFACE_C) ? "C" : "D");
Paul Fox05dfbe62009-06-16 21:08:06 +0000298
299 if (ftdi_init(ftdic) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000300 msg_perr("ftdi_init failed\n");
Uwe Hermann274a20d2011-07-21 09:18:18 +0000301 return -3;
Paul Fox05dfbe62009-06-16 21:08:06 +0000302 }
303
Ilya A. Volynets-Evenbakh7c36d522012-08-14 01:32:46 +0000304 if (ftdi_set_interface(ftdic, ft2232_interface) < 0) {
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000305 msg_perr("Unable to select channel: %s\n", ftdic->error_str);
Ilya A. Volynets-Evenbakh7c36d522012-08-14 01:32:46 +0000306 }
307
Shik Chen14fbc4b2012-09-17 00:40:54 +0000308 arg = extract_programmer_param("serial");
309 f = ftdi_usb_open_desc(ftdic, ft2232_vid, ft2232_type, NULL, arg);
310 free(arg);
Paul Fox05dfbe62009-06-16 21:08:06 +0000311
312 if (f < 0 && f != -5) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000313 msg_perr("Unable to open FTDI device: %d (%s)\n", f,
Paul Fox05dfbe62009-06-16 21:08:06 +0000314 ftdi_get_error_string(ftdic));
Uwe Hermann274a20d2011-07-21 09:18:18 +0000315 return -4;
Paul Fox05dfbe62009-06-16 21:08:06 +0000316 }
317
Alex Badea0b94d052010-11-10 03:18:41 +0000318 if (ftdic->type != TYPE_2232H && ftdic->type != TYPE_4232H) {
319 msg_pdbg("FTDI chip type %d is not high-speed\n",
320 ftdic->type);
321 clock_5x = 0;
322 }
323
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000324 if (ftdi_usb_reset(ftdic) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000325 msg_perr("Unable to reset FTDI device\n");
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000326 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000327
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000328 if (ftdi_set_latency_timer(ftdic, 2) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000329 msg_perr("Unable to set latency timer\n");
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000330 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000331
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000332 if (ftdi_write_data_set_chunksize(ftdic, 256)) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000333 msg_perr("Unable to set chunk size\n");
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000334 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000335
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000336 if (ftdi_set_bitmode(ftdic, 0x00, BITMODE_BITBANG_SPI) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000337 msg_perr("Unable to set bitmode to SPI\n");
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000338 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000339
Alex Badea0b94d052010-11-10 03:18:41 +0000340 if (clock_5x) {
341 msg_pdbg("Disable divide-by-5 front stage\n");
342 buf[0] = 0x8a; /* Disable divide-by-5. */
Uwe Hermann274a20d2011-07-21 09:18:18 +0000343 if (send_buf(ftdic, buf, 1)) {
344 ret = -5;
345 goto ftdi_err;
346 }
Alex Badea0b94d052010-11-10 03:18:41 +0000347 mpsse_clk = 60.0;
348 } else {
349 mpsse_clk = 12.0;
350 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000351
Sean Nelson34b5db72010-01-10 01:08:37 +0000352 msg_pdbg("Set clock divisor\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000353 buf[0] = 0x86; /* command "set divisor" */
Ilya A. Volynets-Evenbakh3464d052012-06-14 13:08:33 +0000354 buf[1] = (divisor / 2 - 1) & 0xff;
355 buf[2] = ((divisor / 2 - 1) >> 8) & 0xff;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000356 if (send_buf(ftdic, buf, 3)) {
357 ret = -6;
358 goto ftdi_err;
359 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000360
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000361 msg_pdbg("MPSSE clock: %f MHz, divisor: %u, SPI clock: %f MHz\n",
362 mpsse_clk, divisor, (double)(mpsse_clk / divisor));
Paul Fox05dfbe62009-06-16 21:08:06 +0000363
Uwe Hermannc67d0372009-10-01 18:40:02 +0000364 /* Disconnect TDI/DO to TDO/DI for loopback. */
Sean Nelson34b5db72010-01-10 01:08:37 +0000365 msg_pdbg("No loopback of TDI/DO TDO/DI\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000366 buf[0] = 0x85;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000367 if (send_buf(ftdic, buf, 1)) {
368 ret = -7;
369 goto ftdi_err;
370 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000371
Sean Nelson34b5db72010-01-10 01:08:37 +0000372 msg_pdbg("Set data bits\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000373 buf[0] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000374 buf[1] = cs_bits;
375 buf[2] = pindir;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000376 if (send_buf(ftdic, buf, 3)) {
377 ret = -8;
378 goto ftdi_err;
379 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000380
Sean Nelson34b5db72010-01-10 01:08:37 +0000381 // msg_pdbg("\nft2232 chosen\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000382
Michael Karcherb9dbe482011-05-11 17:07:07 +0000383 register_spi_programmer(&spi_programmer_ft2232);
Paul Fox05dfbe62009-06-16 21:08:06 +0000384
385 return 0;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000386
387ftdi_err:
388 if ((f = ftdi_usb_close(ftdic)) < 0) {
389 msg_perr("Unable to close FTDI device: %d (%s)\n", f,
390 ftdi_get_error_string(ftdic));
391 }
392
393 return ret;
Paul Fox05dfbe62009-06-16 21:08:06 +0000394}
395
Uwe Hermann274a20d2011-07-21 09:18:18 +0000396/* Returns 0 upon success, a negative number upon errors. */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000397static int ft2232_spi_send_command(struct flashctx *flash,
398 unsigned int writecnt, unsigned int readcnt,
399 const unsigned char *writearr,
400 unsigned char *readarr)
Paul Fox05dfbe62009-06-16 21:08:06 +0000401{
402 struct ftdi_context *ftdic = &ftdic_context;
403 static unsigned char *buf = NULL;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000404 /* failed is special. We use bitwise ops, but it is essentially bool. */
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000405 int i = 0, ret = 0, failed = 0;
406 int bufsize;
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000407 static int oldbufsize = 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000408
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000409 if (writecnt > 65536 || readcnt > 65536)
410 return SPI_INVALID_LENGTH;
411
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000412 /* buf is not used for the response from the chip. */
413 bufsize = max(writecnt + 9, 260 + 9);
414 /* Never shrink. realloc() calls are expensive. */
415 if (bufsize > oldbufsize) {
416 buf = realloc(buf, bufsize);
417 if (!buf) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000418 msg_perr("Out of memory!\n");
Uwe Hermann274a20d2011-07-21 09:18:18 +0000419 /* TODO: What to do with buf? */
420 return SPI_GENERIC_ERROR;
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000421 }
422 oldbufsize = bufsize;
Paul Fox05dfbe62009-06-16 21:08:06 +0000423 }
424
Uwe Hermannc67d0372009-10-01 18:40:02 +0000425 /*
426 * Minimize USB transfers by packing as many commands as possible
427 * together. If we're not expecting to read, we can assert CS#, write,
428 * and deassert CS# all in one shot. If reading, we do three separate
Stefan Reinauerab044b22009-09-16 08:26:59 +0000429 * operations.
430 */
Sean Nelson34b5db72010-01-10 01:08:37 +0000431 msg_pspew("Assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000432 buf[i++] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000433 buf[i++] = 0 & ~cs_bits; /* assertive */
434 buf[i++] = pindir;
Paul Fox05dfbe62009-06-16 21:08:06 +0000435
436 if (writecnt) {
437 buf[i++] = 0x11;
438 buf[i++] = (writecnt - 1) & 0xff;
439 buf[i++] = ((writecnt - 1) >> 8) & 0xff;
Uwe Hermannc67d0372009-10-01 18:40:02 +0000440 memcpy(buf + i, writearr, writecnt);
Paul Fox05dfbe62009-06-16 21:08:06 +0000441 i += writecnt;
442 }
443
Uwe Hermannc67d0372009-10-01 18:40:02 +0000444 /*
445 * Optionally terminate this batch of commands with a
Paul Fox05dfbe62009-06-16 21:08:06 +0000446 * read command, then do the fetch of the results.
447 */
448 if (readcnt) {
449 buf[i++] = 0x20;
450 buf[i++] = (readcnt - 1) & 0xff;
451 buf[i++] = ((readcnt - 1) >> 8) & 0xff;
452 ret = send_buf(ftdic, buf, i);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000453 failed = ret;
454 /* We can't abort here, we still have to deassert CS#. */
455 if (ret)
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000456 msg_perr("send_buf failed before read: %i\n", ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000457 i = 0;
Stefan Reinauerab044b22009-09-16 08:26:59 +0000458 if (ret == 0) {
Uwe Hermannc67d0372009-10-01 18:40:02 +0000459 /*
460 * FIXME: This is unreliable. There's no guarantee that
461 * we read the response directly after sending the read
462 * command. We may be scheduled out etc.
Stefan Reinauerab044b22009-09-16 08:26:59 +0000463 */
464 ret = get_buf(ftdic, readarr, readcnt);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000465 failed |= ret;
466 /* We can't abort here either. */
467 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000468 msg_perr("get_buf failed: %i\n", ret);
Stefan Reinauerab044b22009-09-16 08:26:59 +0000469 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000470 }
471
Sean Nelson34b5db72010-01-10 01:08:37 +0000472 msg_pspew("De-assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000473 buf[i++] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000474 buf[i++] = cs_bits;
475 buf[i++] = pindir;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000476 ret = send_buf(ftdic, buf, i);
477 failed |= ret;
478 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000479 msg_perr("send_buf failed at end: %i\n", ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000480
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000481 return failed ? -1 : 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000482}
483
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000484void print_supported_usbdevs(const struct usbdev_status *devs)
485{
Uwe Hermann70145292010-07-29 19:57:55 +0000486 int i;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000487
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000488 msg_pinfo("USB devices:\n");
Uwe Hermann70145292010-07-29 19:57:55 +0000489 for (i = 0; devs[i].vendor_name != NULL; i++) {
490 msg_pinfo("%s %s [%04x:%04x]%s\n", devs[i].vendor_name,
491 devs[i].device_name, devs[i].vendor_id,
492 devs[i].device_id,
493 (devs[i].status == NT) ? " (untested)" : "");
494 }
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000495}
496
Paul Fox05dfbe62009-06-16 21:08:06 +0000497#endif