blob: 25006fb948875237545502f250afdf5a5c63e365 [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>
24#include <stdint.h>
25#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"
Sean Nelson14ba6682010-02-26 05:48:29 +000029#include "chipdrivers.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000030#include "programmer.h"
Paul Fox05dfbe62009-06-16 21:08:06 +000031#include "spi.h"
Paul Fox05dfbe62009-06-16 21:08:06 +000032#include <ftdi.h>
33
Uwe Hermannc67d0372009-10-01 18:40:02 +000034/*
35 * The 'H' chips can run internally at either 12MHz or 60MHz.
36 * The non-H chips can only run at 12MHz.
37 */
Paul Fox05dfbe62009-06-16 21:08:06 +000038#define CLOCK_5X 1
39
Uwe Hermannc67d0372009-10-01 18:40:02 +000040/*
41 * In either case, the divisor is a simple integer clock divider.
42 * If CLOCK_5X is set, this divisor divides 30MHz, else it divides 6MHz.
43 */
44#define DIVIDE_BY 3 /* e.g. '3' will give either 10MHz or 2MHz SPI clock. */
Paul Fox05dfbe62009-06-16 21:08:06 +000045
Uwe Hermannc67d0372009-10-01 18:40:02 +000046#define BITMODE_BITBANG_NORMAL 1
47#define BITMODE_BITBANG_SPI 2
Paul Fox05dfbe62009-06-16 21:08:06 +000048
49static struct ftdi_context ftdic_context;
50
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000051static int send_buf(struct ftdi_context *ftdic, const unsigned char *buf, int size)
Paul Fox05dfbe62009-06-16 21:08:06 +000052{
53 int r;
54 r = ftdi_write_data(ftdic, (unsigned char *) buf, size);
55 if (r < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +000056 msg_perr("ftdi_write_data: %d, %s\n", r,
Paul Fox05dfbe62009-06-16 21:08:06 +000057 ftdi_get_error_string(ftdic));
58 return 1;
59 }
60 return 0;
61}
62
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000063static int get_buf(struct ftdi_context *ftdic, const unsigned char *buf, int size)
Paul Fox05dfbe62009-06-16 21:08:06 +000064{
65 int r;
66 r = ftdi_read_data(ftdic, (unsigned char *) buf, size);
67 if (r < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +000068 msg_perr("ftdi_read_data: %d, %s\n", r,
Paul Fox05dfbe62009-06-16 21:08:06 +000069 ftdi_get_error_string(ftdic));
70 return 1;
71 }
72 return 0;
73}
74
75int ft2232_spi_init(void)
76{
77 int f;
78 struct ftdi_context *ftdic = &ftdic_context;
79 unsigned char buf[512];
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +000080 int ft2232_type = FTDI_FT4232H;
81 enum ftdi_interface ft2232_interface = INTERFACE_B;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +000082 char *arg;
83
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +000084 arg = extract_programmer_param("type");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +000085 if (arg) {
86 if (!strcasecmp(arg, "2232H"))
87 ft2232_type = FTDI_FT2232H;
88 else if (!strcasecmp(arg, "4232H"))
89 ft2232_type = FTDI_FT4232H;
90 else {
91 msg_perr("Error: Invalid device type specified.\n");
92 free(arg);
93 return 1;
94 }
95 }
96 free(arg);
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +000097 arg = extract_programmer_param("port");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +000098 if (arg) {
99 switch (toupper(*arg)) {
100 case 'A':
101 ft2232_interface = INTERFACE_A;
102 break;
103 case 'B':
104 ft2232_interface = INTERFACE_B;
105 break;
106 default:
107 msg_perr("Error: Invalid port/interface specified.\n");
108 free(arg);
109 return 1;
110 }
111 }
112 free(arg);
113 msg_pdbg("Using device type %s ",
114 (ft2232_type == FTDI_FT2232H) ? "2232H" : "4232H");
115 msg_pdbg("interface %s\n",
116 (ft2232_interface == INTERFACE_A) ? "A" : "B");
Paul Fox05dfbe62009-06-16 21:08:06 +0000117
118 if (ftdi_init(ftdic) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000119 msg_perr("ftdi_init failed\n");
Uwe Hermannc67d0372009-10-01 18:40:02 +0000120 return EXIT_FAILURE; // TODO
Paul Fox05dfbe62009-06-16 21:08:06 +0000121 }
122
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +0000123 f = ftdi_usb_open(ftdic, 0x0403, ft2232_type);
Paul Fox05dfbe62009-06-16 21:08:06 +0000124
125 if (f < 0 && f != -5) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000126 msg_perr("Unable to open FTDI device: %d (%s)\n", f,
Paul Fox05dfbe62009-06-16 21:08:06 +0000127 ftdi_get_error_string(ftdic));
Uwe Hermannc67d0372009-10-01 18:40:02 +0000128 exit(-1); // TODO
Paul Fox05dfbe62009-06-16 21:08:06 +0000129 }
130
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +0000131 if (ftdi_set_interface(ftdic, ft2232_interface) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000132 msg_perr("Unable to select interface: %s\n",
Paul Fox05dfbe62009-06-16 21:08:06 +0000133 ftdic->error_str);
134 }
135
136 if (ftdi_usb_reset(ftdic) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000137 msg_perr("Unable to reset FTDI device\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000138 }
139
140 if (ftdi_set_latency_timer(ftdic, 2) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000141 msg_perr("Unable to set latency timer\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000142 }
143
144 if (ftdi_write_data_set_chunksize(ftdic, 512)) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000145 msg_perr("Unable to set chunk size\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000146 }
147
Uwe Hermannc67d0372009-10-01 18:40:02 +0000148 if (ftdi_set_bitmode(ftdic, 0x00, BITMODE_BITBANG_SPI) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000149 msg_perr("Unable to set bitmode to SPI\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000150 }
151
152#if CLOCK_5X
Sean Nelson34b5db72010-01-10 01:08:37 +0000153 msg_pdbg("Disable divide-by-5 front stage\n");
Uwe Hermannc67d0372009-10-01 18:40:02 +0000154 buf[0] = 0x8a; /* Disable divide-by-5. */
Paul Fox05dfbe62009-06-16 21:08:06 +0000155 if (send_buf(ftdic, buf, 1))
156 return -1;
157#define MPSSE_CLK 60.0
158
159#else
160
161#define MPSSE_CLK 12.0
162
163#endif
Sean Nelson34b5db72010-01-10 01:08:37 +0000164 msg_pdbg("Set clock divisor\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000165 buf[0] = 0x86; /* command "set divisor" */
166 /* valueL/valueH are (desired_divisor - 1) */
Uwe Hermannc67d0372009-10-01 18:40:02 +0000167 buf[1] = (DIVIDE_BY - 1) & 0xff;
168 buf[2] = ((DIVIDE_BY - 1) >> 8) & 0xff;
Paul Fox05dfbe62009-06-16 21:08:06 +0000169 if (send_buf(ftdic, buf, 3))
170 return -1;
171
Sean Nelson34b5db72010-01-10 01:08:37 +0000172 msg_pdbg("SPI clock is %fMHz\n",
Uwe Hermannc67d0372009-10-01 18:40:02 +0000173 (double)(MPSSE_CLK / (((DIVIDE_BY - 1) + 1) * 2)));
Paul Fox05dfbe62009-06-16 21:08:06 +0000174
Uwe Hermannc67d0372009-10-01 18:40:02 +0000175 /* Disconnect TDI/DO to TDO/DI for loopback. */
Sean Nelson34b5db72010-01-10 01:08:37 +0000176 msg_pdbg("No loopback of TDI/DO TDO/DI\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000177 buf[0] = 0x85;
178 if (send_buf(ftdic, buf, 1))
179 return -1;
180
Sean Nelson34b5db72010-01-10 01:08:37 +0000181 msg_pdbg("Set data bits\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000182 /* Set data bits low-byte command:
183 * value: 0x08 CS=high, DI=low, DO=low, SK=low
184 * dir: 0x0b CS=output, DI=input, DO=output, SK=output
185 */
186#define CS_BIT 0x08
Paul Fox05dfbe62009-06-16 21:08:06 +0000187 buf[0] = SET_BITS_LOW;
Stefan Reinauerab044b22009-09-16 08:26:59 +0000188 buf[1] = CS_BIT;
Paul Fox05dfbe62009-06-16 21:08:06 +0000189 buf[2] = 0x0b;
190 if (send_buf(ftdic, buf, 3))
191 return -1;
192
Sean Nelson34b5db72010-01-10 01:08:37 +0000193 // msg_pdbg("\nft2232 chosen\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000194
195 buses_supported = CHIP_BUSTYPE_SPI;
196 spi_controller = SPI_CONTROLLER_FT2232;
197
198 return 0;
199}
200
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000201int ft2232_spi_send_command(unsigned int writecnt, unsigned int readcnt,
Paul Fox05dfbe62009-06-16 21:08:06 +0000202 const unsigned char *writearr, unsigned char *readarr)
203{
204 struct ftdi_context *ftdic = &ftdic_context;
205 static unsigned char *buf = NULL;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000206 /* failed is special. We use bitwise ops, but it is essentially bool. */
207 int i = 0, ret = 0, failed = 0;
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000208 int bufsize;
209 static int oldbufsize = 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000210
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000211 if (writecnt > 65536 || readcnt > 65536)
212 return SPI_INVALID_LENGTH;
213
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000214 /* buf is not used for the response from the chip. */
215 bufsize = max(writecnt + 9, 260 + 9);
216 /* Never shrink. realloc() calls are expensive. */
217 if (bufsize > oldbufsize) {
218 buf = realloc(buf, bufsize);
219 if (!buf) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000220 msg_perr("Out of memory!\n");
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000221 exit(1);
222 }
223 oldbufsize = bufsize;
Paul Fox05dfbe62009-06-16 21:08:06 +0000224 }
225
Uwe Hermannc67d0372009-10-01 18:40:02 +0000226 /*
227 * Minimize USB transfers by packing as many commands as possible
228 * together. If we're not expecting to read, we can assert CS#, write,
229 * and deassert CS# all in one shot. If reading, we do three separate
Stefan Reinauerab044b22009-09-16 08:26:59 +0000230 * operations.
231 */
Sean Nelson34b5db72010-01-10 01:08:37 +0000232 msg_pspew("Assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000233 buf[i++] = SET_BITS_LOW;
Stefan Reinauerab044b22009-09-16 08:26:59 +0000234 buf[i++] = 0 & ~CS_BIT; /* assertive */
Paul Fox05dfbe62009-06-16 21:08:06 +0000235 buf[i++] = 0x0b;
236
237 if (writecnt) {
238 buf[i++] = 0x11;
239 buf[i++] = (writecnt - 1) & 0xff;
240 buf[i++] = ((writecnt - 1) >> 8) & 0xff;
Uwe Hermannc67d0372009-10-01 18:40:02 +0000241 memcpy(buf + i, writearr, writecnt);
Paul Fox05dfbe62009-06-16 21:08:06 +0000242 i += writecnt;
243 }
244
Uwe Hermannc67d0372009-10-01 18:40:02 +0000245 /*
246 * Optionally terminate this batch of commands with a
Paul Fox05dfbe62009-06-16 21:08:06 +0000247 * read command, then do the fetch of the results.
248 */
249 if (readcnt) {
250 buf[i++] = 0x20;
251 buf[i++] = (readcnt - 1) & 0xff;
252 buf[i++] = ((readcnt - 1) >> 8) & 0xff;
253 ret = send_buf(ftdic, buf, i);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000254 failed = ret;
255 /* We can't abort here, we still have to deassert CS#. */
256 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000257 msg_perr("send_buf failed before read: %i\n",
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000258 ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000259 i = 0;
Stefan Reinauerab044b22009-09-16 08:26:59 +0000260 if (ret == 0) {
Uwe Hermannc67d0372009-10-01 18:40:02 +0000261 /*
262 * FIXME: This is unreliable. There's no guarantee that
263 * we read the response directly after sending the read
264 * command. We may be scheduled out etc.
Stefan Reinauerab044b22009-09-16 08:26:59 +0000265 */
266 ret = get_buf(ftdic, readarr, readcnt);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000267 failed |= ret;
268 /* We can't abort here either. */
269 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000270 msg_perr("get_buf failed: %i\n", ret);
Stefan Reinauerab044b22009-09-16 08:26:59 +0000271 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000272 }
273
Sean Nelson34b5db72010-01-10 01:08:37 +0000274 msg_pspew("De-assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000275 buf[i++] = SET_BITS_LOW;
Stefan Reinauerab044b22009-09-16 08:26:59 +0000276 buf[i++] = CS_BIT;
Paul Fox05dfbe62009-06-16 21:08:06 +0000277 buf[i++] = 0x0b;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000278 ret = send_buf(ftdic, buf, i);
279 failed |= ret;
280 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000281 msg_perr("send_buf failed at end: %i\n", ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000282
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000283 return failed ? -1 : 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000284}
285
286int ft2232_spi_read(struct flashchip *flash, uint8_t *buf, int start, int len)
287{
288 /* Maximum read length is 64k bytes. */
289 return spi_read_chunked(flash, buf, start, len, 64 * 1024);
290}
291
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000292int ft2232_spi_write_256(struct flashchip *flash, uint8_t *buf, int start, int len)
Paul Fox05dfbe62009-06-16 21:08:06 +0000293{
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000294 return spi_write_chunked(flash, buf, start, len, 256);
Paul Fox05dfbe62009-06-16 21:08:06 +0000295}
296
Paul Fox05dfbe62009-06-16 21:08:06 +0000297#endif