blob: 3889eedc4cee7f45cb55ef454962c14a1a7722c5 [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
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +000033/* This is not defined in libftdi.h <0.20 (c7e4c09e68cfa6f5e112334aa1b3bb23401c8dc7 to be exact).
34 * Some tests indicate that his is the only change that it is needed to support the FT232H in flashrom. */
35#if !defined(HAVE_FT232H)
36#define TYPE_232H 6
37#endif
38
Uwe Hermann836b26a2011-10-14 20:33:14 +000039/* Please keep sorted by vendor ID, then device ID. */
40
Uwe Hermann70145292010-07-29 19:57:55 +000041#define FTDI_VID 0x0403
42#define FTDI_FT2232H_PID 0x6010
43#define FTDI_FT4232H_PID 0x6011
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +000044#define FTDI_FT232H_PID 0x6014
Uwe Hermann836b26a2011-10-14 20:33:14 +000045#define TIAO_TUMPA_PID 0x8a98
Stefan Taunerb66ed842014-04-27 05:07:35 +000046#define TIAO_TUMPA_LITE_PID 0x8a99
Uwe Hermann70145292010-07-29 19:57:55 +000047#define AMONTEC_JTAGKEY_PID 0xCFF8
Jörg Fischer6529b9f2010-07-29 15:54:53 +000048
Samir Ibradžić7189a5f2011-10-20 23:14:10 +000049#define GOEPEL_VID 0x096C
50#define GOEPEL_PICOTAP_PID 0x1449
51
Alex Badeacaf2d422010-11-10 03:26:57 +000052#define FIC_VID 0x1457
53#define OPENMOKO_DBGBOARD_PID 0x5118
54
Pete Batardc0207062011-06-11 12:21:37 +000055#define OLIMEX_VID 0x15BA
56#define OLIMEX_ARM_OCD_PID 0x0003
57#define OLIMEX_ARM_TINY_PID 0x0004
58#define OLIMEX_ARM_OCD_H_PID 0x002B
59#define OLIMEX_ARM_TINY_H_PID 0x002A
60
Todd Broch6800c952016-02-14 15:46:00 +000061#define GOOGLE_VID 0x18D1
62#define GOOGLE_SERVO_PID 0x5001
63#define GOOGLE_SERVO_V2_PID0 0x5002
64#define GOOGLE_SERVO_V2_PID1 0x5003
65
Stefan Tauner4b24a2d2012-12-27 18:40:36 +000066const struct dev_entry devs_ft2232spi[] = {
Uwe Hermann70145292010-07-29 19:57:55 +000067 {FTDI_VID, FTDI_FT2232H_PID, OK, "FTDI", "FT2232H"},
68 {FTDI_VID, FTDI_FT4232H_PID, OK, "FTDI", "FT4232H"},
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +000069 {FTDI_VID, FTDI_FT232H_PID, OK, "FTDI", "FT232H"},
Uwe Hermann836b26a2011-10-14 20:33:14 +000070 {FTDI_VID, TIAO_TUMPA_PID, OK, "TIAO", "USB Multi-Protocol Adapter"},
Stefan Taunerb66ed842014-04-27 05:07:35 +000071 {FTDI_VID, TIAO_TUMPA_LITE_PID, OK, "TIAO", "USB Multi-Protocol Adapter Lite"},
Uwe Hermann70145292010-07-29 19:57:55 +000072 {FTDI_VID, AMONTEC_JTAGKEY_PID, OK, "Amontec", "JTAGkey"},
Samir Ibradžić7189a5f2011-10-20 23:14:10 +000073 {GOEPEL_VID, GOEPEL_PICOTAP_PID, OK, "GOEPEL", "PicoTAP"},
Todd Broch6800c952016-02-14 15:46:00 +000074 {GOOGLE_VID, GOOGLE_SERVO_PID, OK, "Google", "Servo"},
75 {GOOGLE_VID, GOOGLE_SERVO_V2_PID0, OK, "Google", "Servo V2 Legacy"},
76 {GOOGLE_VID, GOOGLE_SERVO_V2_PID1, OK, "Google", "Servo V2"},
Stefan Tauner3e515e22012-09-26 00:48:16 +000077 {FIC_VID, OPENMOKO_DBGBOARD_PID, OK, "FIC", "OpenMoko Neo1973 Debug board (V2+)"},
Stefan Tauner74dc73f2015-03-01 22:04:38 +000078 {OLIMEX_VID, OLIMEX_ARM_OCD_PID, OK, "Olimex", "ARM-USB-OCD"},
Pete Batardc0207062011-06-11 12:21:37 +000079 {OLIMEX_VID, OLIMEX_ARM_TINY_PID, OK, "Olimex", "ARM-USB-TINY"},
Stefan Tauner6697f712014-08-06 15:09:15 +000080 {OLIMEX_VID, OLIMEX_ARM_OCD_H_PID, OK, "Olimex", "ARM-USB-OCD-H"},
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000081 {OLIMEX_VID, OLIMEX_ARM_TINY_H_PID, OK, "Olimex", "ARM-USB-TINY-H"},
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000082
83 {0},
Jörg Fischer6529b9f2010-07-29 15:54:53 +000084};
85
Samir Ibradžićb482c6d2012-05-15 22:58:19 +000086#define DEFAULT_DIVISOR 2
Paul Fox05dfbe62009-06-16 21:08:06 +000087
Uwe Hermannc67d0372009-10-01 18:40:02 +000088#define BITMODE_BITBANG_NORMAL 1
89#define BITMODE_BITBANG_SPI 2
Paul Fox05dfbe62009-06-16 21:08:06 +000090
Antony Pavlovb4dd40c2015-01-25 03:52:47 +000091/* The variables cs_bits and pindir store the values for the "set data bits low byte" MPSSE command that
92 * sets the initial state and the direction of the I/O pins. The pin offsets are as follows:
93 * SCK is bit 0.
94 * DO is bit 1.
95 * DI is bit 2.
96 * CS is bit 3.
97 *
98 * The default values (set below) are used for most devices:
Jörg Fischer6529b9f2010-07-29 15:54:53 +000099 * value: 0x08 CS=high, DI=low, DO=low, SK=low
100 * dir: 0x0b CS=output, DI=input, DO=output, SK=output
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000101 */
Uwe Hermann70145292010-07-29 19:57:55 +0000102static uint8_t cs_bits = 0x08;
103static uint8_t pindir = 0x0b;
Paul Fox05dfbe62009-06-16 21:08:06 +0000104static struct ftdi_context ftdic_context;
105
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000106static const char *get_ft2232_devicename(int ft2232_vid, int ft2232_type)
107{
108 int i;
Uwe Hermann70145292010-07-29 19:57:55 +0000109 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000110 if ((devs_ft2232spi[i].device_id == ft2232_type) && (devs_ft2232spi[i].vendor_id == ft2232_vid))
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000111 return devs_ft2232spi[i].device_name;
112 }
113 return "unknown device";
114}
115
116static const char *get_ft2232_vendorname(int ft2232_vid, int ft2232_type)
117{
118 int i;
Uwe Hermann70145292010-07-29 19:57:55 +0000119 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000120 if ((devs_ft2232spi[i].device_id == ft2232_type) && (devs_ft2232spi[i].vendor_id == ft2232_vid))
Uwe Hermann70145292010-07-29 19:57:55 +0000121 return devs_ft2232spi[i].vendor_name;
122 }
123 return "unknown vendor";
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000124}
125
Uwe Hermann70145292010-07-29 19:57:55 +0000126static int send_buf(struct ftdi_context *ftdic, const unsigned char *buf,
127 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +0000128{
129 int r;
130 r = ftdi_write_data(ftdic, (unsigned char *) buf, size);
131 if (r < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000132 msg_perr("ftdi_write_data: %d, %s\n", r, ftdi_get_error_string(ftdic));
Paul Fox05dfbe62009-06-16 21:08:06 +0000133 return 1;
134 }
135 return 0;
136}
137
Uwe Hermann70145292010-07-29 19:57:55 +0000138static int get_buf(struct ftdi_context *ftdic, const unsigned char *buf,
139 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +0000140{
141 int r;
Alex Badeab9556e02010-11-10 03:10:41 +0000142
143 while (size > 0) {
144 r = ftdi_read_data(ftdic, (unsigned char *) buf, size);
145 if (r < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000146 msg_perr("ftdi_read_data: %d, %s\n", r, ftdi_get_error_string(ftdic));
Alex Badeab9556e02010-11-10 03:10:41 +0000147 return 1;
148 }
149 buf += r;
150 size -= r;
Paul Fox05dfbe62009-06-16 21:08:06 +0000151 }
152 return 0;
153}
154
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000155static int ft2232_spi_send_command(struct flashctx *flash,
156 unsigned int writecnt, unsigned int readcnt,
157 const unsigned char *writearr,
158 unsigned char *readarr);
Michael Karcherb9dbe482011-05-11 17:07:07 +0000159
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000160static const struct spi_master spi_master_ft2232 = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000161 .type = SPI_CONTROLLER_FT2232,
Nico Huber1cf407b2017-11-10 20:18:23 +0100162 .features = SPI_MASTER_4BA,
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000163 .max_data_read = 64 * 1024,
164 .max_data_write = 256,
165 .command = ft2232_spi_send_command,
166 .multicommand = default_spi_send_multicommand,
167 .read = default_spi_read,
168 .write_256 = default_spi_write_256,
Nico Huber7bca1262012-06-15 22:28:12 +0000169 .write_aai = default_spi_write_aai,
Michael Karcherb9dbe482011-05-11 17:07:07 +0000170};
171
Uwe Hermann274a20d2011-07-21 09:18:18 +0000172/* Returns 0 upon success, a negative number upon errors. */
Paul Fox05dfbe62009-06-16 21:08:06 +0000173int ft2232_spi_init(void)
174{
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000175 int ret = 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000176 struct ftdi_context *ftdic = &ftdic_context;
177 unsigned char buf[512];
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000178 int ft2232_vid = FTDI_VID;
179 int ft2232_type = FTDI_FT4232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000180 int channel_count = 4; /* Stores the number of channels of the device. */
181 enum ftdi_interface ft2232_interface = INTERFACE_A;
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000182 /*
183 * The 'H' chips can run with an internal clock of either 12 MHz or 60 MHz,
184 * but the non-H chips can only run at 12 MHz. We enable the divide-by-5
185 * prescaler on the former to run on the same speed.
186 */
187 uint8_t clock_5x = 1;
188 /* In addition to the prescaler mentioned above there is also another
189 * configurable one on all versions of the chips. Its divisor div can be
190 * set by a 16 bit value x according to the following formula:
191 * div = (1 + x) * 2 <-> x = div / 2 - 1
192 * Hence the expressible divisors are all even numbers between 2 and
193 * 2^17 (=131072) resulting in SCK frequencies of 6 MHz down to about
194 * 92 Hz for 12 MHz inputs.
195 */
196 uint32_t divisor = DEFAULT_DIVISOR;
197 int f;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000198 char *arg;
Alex Badea0b94d052010-11-10 03:18:41 +0000199 double mpsse_clk;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000200
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000201 arg = extract_programmer_param("type");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000202 if (arg) {
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000203 if (!strcasecmp(arg, "2232H")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000204 ft2232_type = FTDI_FT2232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000205 channel_count = 2;
206 } else if (!strcasecmp(arg, "4232H")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000207 ft2232_type = FTDI_FT4232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000208 channel_count = 4;
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000209 } else if (!strcasecmp(arg, "232H")) {
210 ft2232_type = FTDI_FT232H_PID;
211 channel_count = 1;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000212 } else if (!strcasecmp(arg, "jtagkey")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000213 ft2232_type = AMONTEC_JTAGKEY_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000214 channel_count = 2;
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000215 /* JTAGkey(2) needs to enable its output via Bit4 / GPIOL0
216 * value: 0x18 OE=high, CS=high, DI=low, DO=low, SK=low
217 * dir: 0x1b OE=output, CS=output, DI=input, DO=output, SK=output */
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000218 cs_bits = 0x18;
Uwe Hermann70145292010-07-29 19:57:55 +0000219 pindir = 0x1b;
Samir Ibradžić7189a5f2011-10-20 23:14:10 +0000220 } else if (!strcasecmp(arg, "picotap")) {
221 ft2232_vid = GOEPEL_VID;
222 ft2232_type = GOEPEL_PICOTAP_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000223 channel_count = 2;
Uwe Hermann836b26a2011-10-14 20:33:14 +0000224 } else if (!strcasecmp(arg, "tumpa")) {
225 /* Interface A is SPI1, B is SPI2. */
226 ft2232_type = TIAO_TUMPA_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000227 channel_count = 2;
Stefan Taunerb66ed842014-04-27 05:07:35 +0000228 } else if (!strcasecmp(arg, "tumpalite")) {
229 /* Only one channel is used on lite edition */
230 ft2232_type = TIAO_TUMPA_LITE_PID;
231 channel_count = 1;
Steve Markgraf0528b7f2011-08-12 01:19:32 +0000232 } else if (!strcasecmp(arg, "busblaster")) {
233 /* In its default configuration it is a jtagkey clone */
234 ft2232_type = FTDI_FT2232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000235 channel_count = 2;
Steve Markgraf0528b7f2011-08-12 01:19:32 +0000236 cs_bits = 0x18;
237 pindir = 0x1b;
Alex Badeacaf2d422010-11-10 03:26:57 +0000238 } else if (!strcasecmp(arg, "openmoko")) {
239 ft2232_vid = FIC_VID;
240 ft2232_type = OPENMOKO_DBGBOARD_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000241 channel_count = 2;
Pete Batardc0207062011-06-11 12:21:37 +0000242 } else if (!strcasecmp(arg, "arm-usb-ocd")) {
243 ft2232_vid = OLIMEX_VID;
244 ft2232_type = OLIMEX_ARM_OCD_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000245 channel_count = 2;
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000246 /* arm-usb-ocd(-h) has an output buffer that needs to be enabled by pulling ADBUS4 low.
247 * value: 0x08 #OE=low, CS=high, DI=low, DO=low, SK=low
248 * dir: 0x1b #OE=output, CS=output, DI=input, DO=output, SK=output */
Paul Fertser3cf335e2011-12-20 02:08:14 +0000249 cs_bits = 0x08;
250 pindir = 0x1b;
Pete Batardc0207062011-06-11 12:21:37 +0000251 } else if (!strcasecmp(arg, "arm-usb-tiny")) {
252 ft2232_vid = OLIMEX_VID;
253 ft2232_type = OLIMEX_ARM_TINY_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000254 channel_count = 2;
Pete Batardc0207062011-06-11 12:21:37 +0000255 } else if (!strcasecmp(arg, "arm-usb-ocd-h")) {
256 ft2232_vid = OLIMEX_VID;
257 ft2232_type = OLIMEX_ARM_OCD_H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000258 channel_count = 2;
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000259 /* See arm-usb-ocd */
Paul Fertser3cf335e2011-12-20 02:08:14 +0000260 cs_bits = 0x08;
261 pindir = 0x1b;
Pete Batardc0207062011-06-11 12:21:37 +0000262 } else if (!strcasecmp(arg, "arm-usb-tiny-h")) {
263 ft2232_vid = OLIMEX_VID;
264 ft2232_type = OLIMEX_ARM_TINY_H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000265 channel_count = 2;
Todd Broch6800c952016-02-14 15:46:00 +0000266 } else if (!strcasecmp(arg, "google-servo")) {
267 ft2232_vid = GOOGLE_VID;
268 ft2232_type = GOOGLE_SERVO_PID;
269 } else if (!strcasecmp(arg, "google-servo-v2")) {
270 ft2232_vid = GOOGLE_VID;
271 ft2232_type = GOOGLE_SERVO_V2_PID1;
272 /* Default divisor is too fast, and chip ID fails */
273 divisor = 6;
274 } else if (!strcasecmp(arg, "google-servo-v2-legacy")) {
275 ft2232_vid = GOOGLE_VID;
276 ft2232_type = GOOGLE_SERVO_V2_PID0;
Alex Badeacaf2d422010-11-10 03:26:57 +0000277 } else {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000278 msg_perr("Error: Invalid device type specified.\n");
279 free(arg);
Uwe Hermann274a20d2011-07-21 09:18:18 +0000280 return -1;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000281 }
282 }
283 free(arg);
Stefan Tauner3e515e22012-09-26 00:48:16 +0000284
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000285 arg = extract_programmer_param("port");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000286 if (arg) {
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000287 switch (toupper((unsigned char)*arg)) {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000288 case 'A':
289 ft2232_interface = INTERFACE_A;
290 break;
291 case 'B':
292 ft2232_interface = INTERFACE_B;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000293 if (channel_count < 2)
294 channel_count = -1;
295 break;
296 case 'C':
297 ft2232_interface = INTERFACE_C;
298 if (channel_count < 3)
299 channel_count = -1;
300 break;
301 case 'D':
302 ft2232_interface = INTERFACE_D;
303 if (channel_count < 4)
304 channel_count = -1;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000305 break;
306 default:
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000307 channel_count = -1;
308 break;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000309 }
Stefan Taunerd7d423b2012-10-20 09:13:16 +0000310 if (channel_count < 0 || strlen(arg) != 1) {
311 msg_perr("Error: Invalid channel/port/interface specified: \"%s\".\n", arg);
312 free(arg);
313 return -2;
314 }
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000315 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000316 free(arg);
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000317
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000318 arg = extract_programmer_param("divisor");
319 if (arg && strlen(arg)) {
320 unsigned int temp = 0;
321 char *endptr;
322 temp = strtoul(arg, &endptr, 10);
323 if (*endptr || temp < 2 || temp > 131072 || temp & 0x1) {
324 msg_perr("Error: Invalid SPI frequency divisor specified: \"%s\".\n"
325 "Valid are even values between 2 and 131072.\n", arg);
326 free(arg);
327 return -2;
328 } else {
329 divisor = (uint32_t)temp;
330 }
331 }
332 free(arg);
Stefan Tauner3e515e22012-09-26 00:48:16 +0000333
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000334 msg_pdbg("Using device type %s %s ",
Uwe Hermann70145292010-07-29 19:57:55 +0000335 get_ft2232_vendorname(ft2232_vid, ft2232_type),
336 get_ft2232_devicename(ft2232_vid, ft2232_type));
Stefan Tauner3e515e22012-09-26 00:48:16 +0000337 msg_pdbg("channel %s.\n",
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000338 (ft2232_interface == INTERFACE_A) ? "A" :
339 (ft2232_interface == INTERFACE_B) ? "B" :
340 (ft2232_interface == INTERFACE_C) ? "C" : "D");
Paul Fox05dfbe62009-06-16 21:08:06 +0000341
342 if (ftdi_init(ftdic) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000343 msg_perr("ftdi_init failed.\n");
Uwe Hermann274a20d2011-07-21 09:18:18 +0000344 return -3;
Paul Fox05dfbe62009-06-16 21:08:06 +0000345 }
346
Ilya A. Volynets-Evenbakh7c36d522012-08-14 01:32:46 +0000347 if (ftdi_set_interface(ftdic, ft2232_interface) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000348 msg_perr("Unable to select channel (%s).\n", ftdi_get_error_string(ftdic));
Ilya A. Volynets-Evenbakh7c36d522012-08-14 01:32:46 +0000349 }
350
Shik Chen14fbc4b2012-09-17 00:40:54 +0000351 arg = extract_programmer_param("serial");
352 f = ftdi_usb_open_desc(ftdic, ft2232_vid, ft2232_type, NULL, arg);
353 free(arg);
Paul Fox05dfbe62009-06-16 21:08:06 +0000354
355 if (f < 0 && f != -5) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000356 msg_perr("Unable to open FTDI device: %d (%s).\n", f, ftdi_get_error_string(ftdic));
Uwe Hermann274a20d2011-07-21 09:18:18 +0000357 return -4;
Paul Fox05dfbe62009-06-16 21:08:06 +0000358 }
359
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000360 if (ftdic->type != TYPE_2232H && ftdic->type != TYPE_4232H && ftdic->type != TYPE_232H) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000361 msg_pdbg("FTDI chip type %d is not high-speed.\n", ftdic->type);
Alex Badea0b94d052010-11-10 03:18:41 +0000362 clock_5x = 0;
363 }
364
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000365 if (ftdi_usb_reset(ftdic) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000366 msg_perr("Unable to reset FTDI device (%s).\n", ftdi_get_error_string(ftdic));
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000367 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000368
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000369 if (ftdi_set_latency_timer(ftdic, 2) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000370 msg_perr("Unable to set latency timer (%s).\n", ftdi_get_error_string(ftdic));
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000371 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000372
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000373 if (ftdi_write_data_set_chunksize(ftdic, 256)) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000374 msg_perr("Unable to set chunk size (%s).\n", ftdi_get_error_string(ftdic));
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000375 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000376
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000377 if (ftdi_set_bitmode(ftdic, 0x00, BITMODE_BITBANG_SPI) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000378 msg_perr("Unable to set bitmode to SPI (%s).\n", ftdi_get_error_string(ftdic));
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000379 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000380
Alex Badea0b94d052010-11-10 03:18:41 +0000381 if (clock_5x) {
382 msg_pdbg("Disable divide-by-5 front stage\n");
Stefan Tauner05151b62015-01-25 23:42:57 +0000383 buf[0] = 0x8a; /* Disable divide-by-5. DIS_DIV_5 in newer libftdi */
Uwe Hermann274a20d2011-07-21 09:18:18 +0000384 if (send_buf(ftdic, buf, 1)) {
385 ret = -5;
386 goto ftdi_err;
387 }
Alex Badea0b94d052010-11-10 03:18:41 +0000388 mpsse_clk = 60.0;
389 } else {
390 mpsse_clk = 12.0;
391 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000392
Sean Nelson34b5db72010-01-10 01:08:37 +0000393 msg_pdbg("Set clock divisor\n");
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000394 buf[0] = TCK_DIVISOR;
Ilya A. Volynets-Evenbakh3464d052012-06-14 13:08:33 +0000395 buf[1] = (divisor / 2 - 1) & 0xff;
396 buf[2] = ((divisor / 2 - 1) >> 8) & 0xff;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000397 if (send_buf(ftdic, buf, 3)) {
398 ret = -6;
399 goto ftdi_err;
400 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000401
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000402 msg_pdbg("MPSSE clock: %f MHz, divisor: %u, SPI clock: %f MHz\n",
403 mpsse_clk, divisor, (double)(mpsse_clk / divisor));
Paul Fox05dfbe62009-06-16 21:08:06 +0000404
Uwe Hermannc67d0372009-10-01 18:40:02 +0000405 /* Disconnect TDI/DO to TDO/DI for loopback. */
Sean Nelson34b5db72010-01-10 01:08:37 +0000406 msg_pdbg("No loopback of TDI/DO TDO/DI\n");
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000407 buf[0] = LOOPBACK_END;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000408 if (send_buf(ftdic, buf, 1)) {
409 ret = -7;
410 goto ftdi_err;
411 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000412
Sean Nelson34b5db72010-01-10 01:08:37 +0000413 msg_pdbg("Set data bits\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000414 buf[0] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000415 buf[1] = cs_bits;
416 buf[2] = pindir;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000417 if (send_buf(ftdic, buf, 3)) {
418 ret = -8;
419 goto ftdi_err;
420 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000421
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000422 register_spi_master(&spi_master_ft2232);
Paul Fox05dfbe62009-06-16 21:08:06 +0000423
424 return 0;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000425
426ftdi_err:
427 if ((f = ftdi_usb_close(ftdic)) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000428 msg_perr("Unable to close FTDI device: %d (%s)\n", f, ftdi_get_error_string(ftdic));
Uwe Hermann274a20d2011-07-21 09:18:18 +0000429 }
Uwe Hermann274a20d2011-07-21 09:18:18 +0000430 return ret;
Paul Fox05dfbe62009-06-16 21:08:06 +0000431}
432
Uwe Hermann274a20d2011-07-21 09:18:18 +0000433/* Returns 0 upon success, a negative number upon errors. */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000434static int ft2232_spi_send_command(struct flashctx *flash,
435 unsigned int writecnt, unsigned int readcnt,
436 const unsigned char *writearr,
437 unsigned char *readarr)
Paul Fox05dfbe62009-06-16 21:08:06 +0000438{
439 struct ftdi_context *ftdic = &ftdic_context;
440 static unsigned char *buf = NULL;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000441 /* failed is special. We use bitwise ops, but it is essentially bool. */
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000442 int i = 0, ret = 0, failed = 0;
443 int bufsize;
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000444 static int oldbufsize = 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000445
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000446 if (writecnt > 65536 || readcnt > 65536)
447 return SPI_INVALID_LENGTH;
448
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000449 /* buf is not used for the response from the chip. */
450 bufsize = max(writecnt + 9, 260 + 9);
451 /* Never shrink. realloc() calls are expensive. */
452 if (bufsize > oldbufsize) {
453 buf = realloc(buf, bufsize);
454 if (!buf) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000455 msg_perr("Out of memory!\n");
Uwe Hermann274a20d2011-07-21 09:18:18 +0000456 /* TODO: What to do with buf? */
457 return SPI_GENERIC_ERROR;
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000458 }
459 oldbufsize = bufsize;
Paul Fox05dfbe62009-06-16 21:08:06 +0000460 }
461
Uwe Hermannc67d0372009-10-01 18:40:02 +0000462 /*
463 * Minimize USB transfers by packing as many commands as possible
464 * together. If we're not expecting to read, we can assert CS#, write,
465 * and deassert CS# all in one shot. If reading, we do three separate
Stefan Reinauerab044b22009-09-16 08:26:59 +0000466 * operations.
467 */
Sean Nelson34b5db72010-01-10 01:08:37 +0000468 msg_pspew("Assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000469 buf[i++] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000470 buf[i++] = 0 & ~cs_bits; /* assertive */
471 buf[i++] = pindir;
Paul Fox05dfbe62009-06-16 21:08:06 +0000472
473 if (writecnt) {
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000474 buf[i++] = MPSSE_DO_WRITE | MPSSE_WRITE_NEG;
Paul Fox05dfbe62009-06-16 21:08:06 +0000475 buf[i++] = (writecnt - 1) & 0xff;
476 buf[i++] = ((writecnt - 1) >> 8) & 0xff;
Uwe Hermannc67d0372009-10-01 18:40:02 +0000477 memcpy(buf + i, writearr, writecnt);
Paul Fox05dfbe62009-06-16 21:08:06 +0000478 i += writecnt;
479 }
480
Uwe Hermannc67d0372009-10-01 18:40:02 +0000481 /*
482 * Optionally terminate this batch of commands with a
Paul Fox05dfbe62009-06-16 21:08:06 +0000483 * read command, then do the fetch of the results.
484 */
485 if (readcnt) {
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000486 buf[i++] = MPSSE_DO_READ;
Paul Fox05dfbe62009-06-16 21:08:06 +0000487 buf[i++] = (readcnt - 1) & 0xff;
488 buf[i++] = ((readcnt - 1) >> 8) & 0xff;
489 ret = send_buf(ftdic, buf, i);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000490 failed = ret;
491 /* We can't abort here, we still have to deassert CS#. */
492 if (ret)
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000493 msg_perr("send_buf failed before read: %i\n", ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000494 i = 0;
Stefan Reinauerab044b22009-09-16 08:26:59 +0000495 if (ret == 0) {
Uwe Hermannc67d0372009-10-01 18:40:02 +0000496 /*
497 * FIXME: This is unreliable. There's no guarantee that
498 * we read the response directly after sending the read
499 * command. We may be scheduled out etc.
Stefan Reinauerab044b22009-09-16 08:26:59 +0000500 */
501 ret = get_buf(ftdic, readarr, readcnt);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000502 failed |= ret;
503 /* We can't abort here either. */
504 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000505 msg_perr("get_buf failed: %i\n", ret);
Stefan Reinauerab044b22009-09-16 08:26:59 +0000506 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000507 }
508
Sean Nelson34b5db72010-01-10 01:08:37 +0000509 msg_pspew("De-assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000510 buf[i++] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000511 buf[i++] = cs_bits;
512 buf[i++] = pindir;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000513 ret = send_buf(ftdic, buf, i);
514 failed |= ret;
515 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000516 msg_perr("send_buf failed at end: %i\n", ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000517
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000518 return failed ? -1 : 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000519}
520
Paul Fox05dfbe62009-06-16 21:08:06 +0000521#endif