blob: a2ea2a8d5355f54bd865a90d3fe1e6051f809768 [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"
Sean Nelson14ba6682010-02-26 05:48:29 +000028#include "chipdrivers.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 Hermann70145292010-07-29 19:57:55 +000033#define FTDI_VID 0x0403
34#define FTDI_FT2232H_PID 0x6010
35#define FTDI_FT4232H_PID 0x6011
36#define AMONTEC_JTAGKEY_PID 0xCFF8
Jörg Fischer6529b9f2010-07-29 15:54:53 +000037
38const struct usbdev_status devs_ft2232spi[] = {
Uwe Hermann70145292010-07-29 19:57:55 +000039 {FTDI_VID, FTDI_FT2232H_PID, OK, "FTDI", "FT2232H"},
40 {FTDI_VID, FTDI_FT4232H_PID, OK, "FTDI", "FT4232H"},
41 {FTDI_VID, AMONTEC_JTAGKEY_PID, OK, "Amontec", "JTAGkey"},
42 {},
Jörg Fischer6529b9f2010-07-29 15:54:53 +000043};
44
Uwe Hermannc67d0372009-10-01 18:40:02 +000045/*
46 * The 'H' chips can run internally at either 12MHz or 60MHz.
47 * The non-H chips can only run at 12MHz.
48 */
Paul Fox05dfbe62009-06-16 21:08:06 +000049#define CLOCK_5X 1
50
Uwe Hermannc67d0372009-10-01 18:40:02 +000051/*
52 * In either case, the divisor is a simple integer clock divider.
53 * If CLOCK_5X is set, this divisor divides 30MHz, else it divides 6MHz.
54 */
55#define DIVIDE_BY 3 /* e.g. '3' will give either 10MHz or 2MHz SPI clock. */
Paul Fox05dfbe62009-06-16 21:08:06 +000056
Uwe Hermannc67d0372009-10-01 18:40:02 +000057#define BITMODE_BITBANG_NORMAL 1
58#define BITMODE_BITBANG_SPI 2
Paul Fox05dfbe62009-06-16 21:08:06 +000059
Jörg Fischer6529b9f2010-07-29 15:54:53 +000060/* Set data bits low-byte command:
61 * value: 0x08 CS=high, DI=low, DO=low, SK=low
62 * dir: 0x0b CS=output, DI=input, DO=output, SK=output
63 *
64 * JTAGkey(2) needs to enable its output via Bit4 / GPIOL0
65 * value: 0x18 OE=high, CS=high, DI=low, DO=low, SK=low
66 * dir: 0x1b OE=output, CS=output, DI=input, DO=output, SK=output
Jörg Fischer6529b9f2010-07-29 15:54:53 +000067 */
Uwe Hermann70145292010-07-29 19:57:55 +000068static uint8_t cs_bits = 0x08;
69static uint8_t pindir = 0x0b;
Paul Fox05dfbe62009-06-16 21:08:06 +000070static struct ftdi_context ftdic_context;
71
Jörg Fischer6529b9f2010-07-29 15:54:53 +000072static const char *get_ft2232_devicename(int ft2232_vid, int ft2232_type)
73{
74 int i;
Uwe Hermann70145292010-07-29 19:57:55 +000075 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +000076 if ((devs_ft2232spi[i].device_id == ft2232_type)
77 && (devs_ft2232spi[i].vendor_id == ft2232_vid))
78 return devs_ft2232spi[i].device_name;
79 }
80 return "unknown device";
81}
82
83static const char *get_ft2232_vendorname(int ft2232_vid, int ft2232_type)
84{
85 int i;
Uwe Hermann70145292010-07-29 19:57:55 +000086 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
87 if ((devs_ft2232spi[i].device_id == ft2232_type)
88 && (devs_ft2232spi[i].vendor_id == ft2232_vid))
89 return devs_ft2232spi[i].vendor_name;
90 }
91 return "unknown vendor";
Jörg Fischer6529b9f2010-07-29 15:54:53 +000092}
93
Uwe Hermann70145292010-07-29 19:57:55 +000094static int send_buf(struct ftdi_context *ftdic, const unsigned char *buf,
95 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +000096{
97 int r;
98 r = ftdi_write_data(ftdic, (unsigned char *) buf, size);
99 if (r < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000100 msg_perr("ftdi_write_data: %d, %s\n", r,
Paul Fox05dfbe62009-06-16 21:08:06 +0000101 ftdi_get_error_string(ftdic));
102 return 1;
103 }
104 return 0;
105}
106
Uwe Hermann70145292010-07-29 19:57:55 +0000107static int get_buf(struct ftdi_context *ftdic, const unsigned char *buf,
108 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +0000109{
110 int r;
111 r = ftdi_read_data(ftdic, (unsigned char *) buf, size);
112 if (r < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000113 msg_perr("ftdi_read_data: %d, %s\n", r,
Paul Fox05dfbe62009-06-16 21:08:06 +0000114 ftdi_get_error_string(ftdic));
115 return 1;
116 }
117 return 0;
118}
119
120int ft2232_spi_init(void)
121{
122 int f;
123 struct ftdi_context *ftdic = &ftdic_context;
124 unsigned char buf[512];
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000125 int ft2232_vid = FTDI_VID;
126 int ft2232_type = FTDI_FT4232H_PID;
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +0000127 enum ftdi_interface ft2232_interface = INTERFACE_B;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000128 char *arg;
129
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000130 arg = extract_programmer_param("type");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000131 if (arg) {
132 if (!strcasecmp(arg, "2232H"))
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000133 ft2232_type = FTDI_FT2232H_PID;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000134 else if (!strcasecmp(arg, "4232H"))
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000135 ft2232_type = FTDI_FT4232H_PID;
136 else if (!strcasecmp(arg, "jtagkey")) {
137 ft2232_type = AMONTEC_JTAGKEY_PID;
138 ft2232_interface = INTERFACE_A;
139 cs_bits = 0x18;
Uwe Hermann70145292010-07-29 19:57:55 +0000140 pindir = 0x1b;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000141 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000142 else {
143 msg_perr("Error: Invalid device type specified.\n");
144 free(arg);
145 return 1;
146 }
147 }
148 free(arg);
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000149 arg = extract_programmer_param("port");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000150 if (arg) {
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000151 switch (toupper((unsigned char)*arg)) {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000152 case 'A':
153 ft2232_interface = INTERFACE_A;
154 break;
155 case 'B':
156 ft2232_interface = INTERFACE_B;
157 break;
158 default:
159 msg_perr("Error: Invalid port/interface specified.\n");
160 free(arg);
161 return 1;
162 }
163 }
164 free(arg);
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000165 msg_pdbg("Using device type %s %s ",
Uwe Hermann70145292010-07-29 19:57:55 +0000166 get_ft2232_vendorname(ft2232_vid, ft2232_type),
167 get_ft2232_devicename(ft2232_vid, ft2232_type));
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000168 msg_pdbg("interface %s\n",
Uwe Hermann70145292010-07-29 19:57:55 +0000169 (ft2232_interface == INTERFACE_A) ? "A" : "B");
Paul Fox05dfbe62009-06-16 21:08:06 +0000170
171 if (ftdi_init(ftdic) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000172 msg_perr("ftdi_init failed\n");
Uwe Hermannc67d0372009-10-01 18:40:02 +0000173 return EXIT_FAILURE; // TODO
Paul Fox05dfbe62009-06-16 21:08:06 +0000174 }
175
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000176 f = ftdi_usb_open(ftdic, FTDI_VID, ft2232_type);
Paul Fox05dfbe62009-06-16 21:08:06 +0000177
178 if (f < 0 && f != -5) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000179 msg_perr("Unable to open FTDI device: %d (%s)\n", f,
Paul Fox05dfbe62009-06-16 21:08:06 +0000180 ftdi_get_error_string(ftdic));
Uwe Hermannc67d0372009-10-01 18:40:02 +0000181 exit(-1); // TODO
Paul Fox05dfbe62009-06-16 21:08:06 +0000182 }
183
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +0000184 if (ftdi_set_interface(ftdic, ft2232_interface) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000185 msg_perr("Unable to select interface: %s\n",
Paul Fox05dfbe62009-06-16 21:08:06 +0000186 ftdic->error_str);
187 }
188
189 if (ftdi_usb_reset(ftdic) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000190 msg_perr("Unable to reset FTDI device\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000191 }
192
193 if (ftdi_set_latency_timer(ftdic, 2) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000194 msg_perr("Unable to set latency timer\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000195 }
196
Uwe Hermann16ce40e2010-10-05 21:21:09 +0000197 if (ftdi_write_data_set_chunksize(ftdic, 256)) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000198 msg_perr("Unable to set chunk size\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000199 }
200
Uwe Hermannc67d0372009-10-01 18:40:02 +0000201 if (ftdi_set_bitmode(ftdic, 0x00, BITMODE_BITBANG_SPI) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000202 msg_perr("Unable to set bitmode to SPI\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000203 }
204
205#if CLOCK_5X
Sean Nelson34b5db72010-01-10 01:08:37 +0000206 msg_pdbg("Disable divide-by-5 front stage\n");
Uwe Hermannc67d0372009-10-01 18:40:02 +0000207 buf[0] = 0x8a; /* Disable divide-by-5. */
Paul Fox05dfbe62009-06-16 21:08:06 +0000208 if (send_buf(ftdic, buf, 1))
209 return -1;
210#define MPSSE_CLK 60.0
211
212#else
213
214#define MPSSE_CLK 12.0
215
216#endif
Sean Nelson34b5db72010-01-10 01:08:37 +0000217 msg_pdbg("Set clock divisor\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000218 buf[0] = 0x86; /* command "set divisor" */
219 /* valueL/valueH are (desired_divisor - 1) */
Uwe Hermannc67d0372009-10-01 18:40:02 +0000220 buf[1] = (DIVIDE_BY - 1) & 0xff;
221 buf[2] = ((DIVIDE_BY - 1) >> 8) & 0xff;
Paul Fox05dfbe62009-06-16 21:08:06 +0000222 if (send_buf(ftdic, buf, 3))
223 return -1;
224
Sean Nelson34b5db72010-01-10 01:08:37 +0000225 msg_pdbg("SPI clock is %fMHz\n",
Uwe Hermann70145292010-07-29 19:57:55 +0000226 (double)(MPSSE_CLK / (((DIVIDE_BY - 1) + 1) * 2)));
Paul Fox05dfbe62009-06-16 21:08:06 +0000227
Uwe Hermannc67d0372009-10-01 18:40:02 +0000228 /* Disconnect TDI/DO to TDO/DI for loopback. */
Sean Nelson34b5db72010-01-10 01:08:37 +0000229 msg_pdbg("No loopback of TDI/DO TDO/DI\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000230 buf[0] = 0x85;
231 if (send_buf(ftdic, buf, 1))
232 return -1;
233
Sean Nelson34b5db72010-01-10 01:08:37 +0000234 msg_pdbg("Set data bits\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000235 buf[0] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000236 buf[1] = cs_bits;
237 buf[2] = pindir;
Paul Fox05dfbe62009-06-16 21:08:06 +0000238 if (send_buf(ftdic, buf, 3))
239 return -1;
240
Sean Nelson34b5db72010-01-10 01:08:37 +0000241 // msg_pdbg("\nft2232 chosen\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000242
243 buses_supported = CHIP_BUSTYPE_SPI;
244 spi_controller = SPI_CONTROLLER_FT2232;
245
246 return 0;
247}
248
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000249int ft2232_spi_send_command(unsigned int writecnt, unsigned int readcnt,
Paul Fox05dfbe62009-06-16 21:08:06 +0000250 const unsigned char *writearr, unsigned char *readarr)
251{
252 struct ftdi_context *ftdic = &ftdic_context;
253 static unsigned char *buf = NULL;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000254 /* failed is special. We use bitwise ops, but it is essentially bool. */
255 int i = 0, ret = 0, failed = 0;
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000256 int bufsize;
257 static int oldbufsize = 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000258
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000259 if (writecnt > 65536 || readcnt > 65536)
260 return SPI_INVALID_LENGTH;
261
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000262 /* buf is not used for the response from the chip. */
263 bufsize = max(writecnt + 9, 260 + 9);
264 /* Never shrink. realloc() calls are expensive. */
265 if (bufsize > oldbufsize) {
266 buf = realloc(buf, bufsize);
267 if (!buf) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000268 msg_perr("Out of memory!\n");
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000269 exit(1);
270 }
271 oldbufsize = bufsize;
Paul Fox05dfbe62009-06-16 21:08:06 +0000272 }
273
Uwe Hermannc67d0372009-10-01 18:40:02 +0000274 /*
275 * Minimize USB transfers by packing as many commands as possible
276 * together. If we're not expecting to read, we can assert CS#, write,
277 * and deassert CS# all in one shot. If reading, we do three separate
Stefan Reinauerab044b22009-09-16 08:26:59 +0000278 * operations.
279 */
Sean Nelson34b5db72010-01-10 01:08:37 +0000280 msg_pspew("Assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000281 buf[i++] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000282 buf[i++] = 0 & ~cs_bits; /* assertive */
283 buf[i++] = pindir;
Paul Fox05dfbe62009-06-16 21:08:06 +0000284
285 if (writecnt) {
286 buf[i++] = 0x11;
287 buf[i++] = (writecnt - 1) & 0xff;
288 buf[i++] = ((writecnt - 1) >> 8) & 0xff;
Uwe Hermannc67d0372009-10-01 18:40:02 +0000289 memcpy(buf + i, writearr, writecnt);
Paul Fox05dfbe62009-06-16 21:08:06 +0000290 i += writecnt;
291 }
292
Uwe Hermannc67d0372009-10-01 18:40:02 +0000293 /*
294 * Optionally terminate this batch of commands with a
Paul Fox05dfbe62009-06-16 21:08:06 +0000295 * read command, then do the fetch of the results.
296 */
297 if (readcnt) {
298 buf[i++] = 0x20;
299 buf[i++] = (readcnt - 1) & 0xff;
300 buf[i++] = ((readcnt - 1) >> 8) & 0xff;
301 ret = send_buf(ftdic, buf, i);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000302 failed = ret;
303 /* We can't abort here, we still have to deassert CS#. */
304 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000305 msg_perr("send_buf failed before read: %i\n",
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000306 ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000307 i = 0;
Stefan Reinauerab044b22009-09-16 08:26:59 +0000308 if (ret == 0) {
Uwe Hermannc67d0372009-10-01 18:40:02 +0000309 /*
310 * FIXME: This is unreliable. There's no guarantee that
311 * we read the response directly after sending the read
312 * command. We may be scheduled out etc.
Stefan Reinauerab044b22009-09-16 08:26:59 +0000313 */
314 ret = get_buf(ftdic, readarr, readcnt);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000315 failed |= ret;
316 /* We can't abort here either. */
317 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000318 msg_perr("get_buf failed: %i\n", ret);
Stefan Reinauerab044b22009-09-16 08:26:59 +0000319 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000320 }
321
Sean Nelson34b5db72010-01-10 01:08:37 +0000322 msg_pspew("De-assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000323 buf[i++] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000324 buf[i++] = cs_bits;
325 buf[i++] = pindir;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000326 ret = send_buf(ftdic, buf, i);
327 failed |= ret;
328 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000329 msg_perr("send_buf failed at end: %i\n", ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000330
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000331 return failed ? -1 : 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000332}
333
334int ft2232_spi_read(struct flashchip *flash, uint8_t *buf, int start, int len)
335{
336 /* Maximum read length is 64k bytes. */
337 return spi_read_chunked(flash, buf, start, len, 64 * 1024);
338}
339
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000340int ft2232_spi_write_256(struct flashchip *flash, uint8_t *buf, int start, int len)
Paul Fox05dfbe62009-06-16 21:08:06 +0000341{
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000342 return spi_write_chunked(flash, buf, start, len, 256);
Paul Fox05dfbe62009-06-16 21:08:06 +0000343}
344
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000345void print_supported_usbdevs(const struct usbdev_status *devs)
346{
Uwe Hermann70145292010-07-29 19:57:55 +0000347 int i;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000348
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000349 msg_pinfo("USB devices:\n");
Uwe Hermann70145292010-07-29 19:57:55 +0000350 for (i = 0; devs[i].vendor_name != NULL; i++) {
351 msg_pinfo("%s %s [%04x:%04x]%s\n", devs[i].vendor_name,
352 devs[i].device_name, devs[i].vendor_id,
353 devs[i].device_id,
354 (devs[i].status == NT) ? " (untested)" : "");
355 }
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000356}
357
Paul Fox05dfbe62009-06-16 21:08:06 +0000358#endif