Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2009 Paul Fox <pgf@laptop.org> |
Carl-Daniel Hailfinger | 5824fbf | 2010-05-21 23:09:42 +0000 | [diff] [blame] | 5 | * Copyright (C) 2009, 2010 Carl-Daniel Hailfinger |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 6 | * |
| 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 Hailfinger | 3426ef6 | 2009-08-19 13:27:58 +0000 | [diff] [blame] | 21 | #if FT2232_SPI_SUPPORT == 1 |
| 22 | |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 23 | #include <stdio.h> |
| 24 | #include <stdint.h> |
| 25 | #include <string.h> |
| 26 | #include <stdlib.h> |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 27 | #include <ctype.h> |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 28 | #include "flash.h" |
Sean Nelson | 14ba668 | 2010-02-26 05:48:29 +0000 | [diff] [blame] | 29 | #include "chipdrivers.h" |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 30 | #include "spi.h" |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 31 | #include <ftdi.h> |
| 32 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 33 | /* |
| 34 | * The 'H' chips can run internally at either 12MHz or 60MHz. |
| 35 | * The non-H chips can only run at 12MHz. |
| 36 | */ |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 37 | #define CLOCK_5X 1 |
| 38 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 39 | /* |
| 40 | * In either case, the divisor is a simple integer clock divider. |
| 41 | * If CLOCK_5X is set, this divisor divides 30MHz, else it divides 6MHz. |
| 42 | */ |
| 43 | #define DIVIDE_BY 3 /* e.g. '3' will give either 10MHz or 2MHz SPI clock. */ |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 44 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 45 | #define BITMODE_BITBANG_NORMAL 1 |
| 46 | #define BITMODE_BITBANG_SPI 2 |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 47 | |
| 48 | static struct ftdi_context ftdic_context; |
| 49 | |
| 50 | int send_buf(struct ftdi_context *ftdic, const unsigned char *buf, int size) |
| 51 | { |
| 52 | int r; |
| 53 | r = ftdi_write_data(ftdic, (unsigned char *) buf, size); |
| 54 | if (r < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 55 | msg_perr("ftdi_write_data: %d, %s\n", r, |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 56 | ftdi_get_error_string(ftdic)); |
| 57 | return 1; |
| 58 | } |
| 59 | return 0; |
| 60 | } |
| 61 | |
| 62 | int get_buf(struct ftdi_context *ftdic, const unsigned char *buf, int size) |
| 63 | { |
| 64 | int r; |
| 65 | r = ftdi_read_data(ftdic, (unsigned char *) buf, size); |
| 66 | if (r < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 67 | msg_perr("ftdi_read_data: %d, %s\n", r, |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 68 | ftdi_get_error_string(ftdic)); |
| 69 | return 1; |
| 70 | } |
| 71 | return 0; |
| 72 | } |
| 73 | |
| 74 | int ft2232_spi_init(void) |
| 75 | { |
| 76 | int f; |
| 77 | struct ftdi_context *ftdic = &ftdic_context; |
| 78 | unsigned char buf[512]; |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 79 | char *portpos = NULL; |
| 80 | int ft2232_type = FTDI_FT4232H; |
| 81 | enum ftdi_interface ft2232_interface = INTERFACE_B; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 82 | |
| 83 | if (ftdi_init(ftdic) < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 84 | msg_perr("ftdi_init failed\n"); |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 85 | return EXIT_FAILURE; // TODO |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 86 | } |
| 87 | |
Carl-Daniel Hailfinger | ef58a9c | 2009-08-12 13:32:56 +0000 | [diff] [blame] | 88 | if (programmer_param && !strlen(programmer_param)) { |
| 89 | free(programmer_param); |
| 90 | programmer_param = NULL; |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 91 | } |
Carl-Daniel Hailfinger | ef58a9c | 2009-08-12 13:32:56 +0000 | [diff] [blame] | 92 | if (programmer_param) { |
| 93 | if (strstr(programmer_param, "2232")) |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 94 | ft2232_type = FTDI_FT2232H; |
Carl-Daniel Hailfinger | ef58a9c | 2009-08-12 13:32:56 +0000 | [diff] [blame] | 95 | if (strstr(programmer_param, "4232")) |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 96 | ft2232_type = FTDI_FT4232H; |
Carl-Daniel Hailfinger | ef58a9c | 2009-08-12 13:32:56 +0000 | [diff] [blame] | 97 | portpos = strstr(programmer_param, "port="); |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 98 | if (portpos) { |
| 99 | portpos += 5; |
| 100 | switch (toupper(*portpos)) { |
| 101 | case 'A': |
| 102 | ft2232_interface = INTERFACE_A; |
| 103 | break; |
| 104 | case 'B': |
| 105 | ft2232_interface = INTERFACE_B; |
| 106 | break; |
| 107 | default: |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 108 | msg_perr("Invalid interface specified, " |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 109 | "using default.\n"); |
| 110 | } |
| 111 | } |
Carl-Daniel Hailfinger | ef58a9c | 2009-08-12 13:32:56 +0000 | [diff] [blame] | 112 | free(programmer_param); |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 113 | } |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 114 | msg_pdbg("Using device type %s ", |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 115 | (ft2232_type == FTDI_FT2232H) ? "2232H" : "4232H"); |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 116 | msg_pdbg("interface %s\n", |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 117 | (ft2232_interface == INTERFACE_A) ? "A" : "B"); |
| 118 | |
| 119 | f = ftdi_usb_open(ftdic, 0x0403, ft2232_type); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 120 | |
| 121 | if (f < 0 && f != -5) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 122 | msg_perr("Unable to open FTDI device: %d (%s)\n", f, |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 123 | ftdi_get_error_string(ftdic)); |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 124 | exit(-1); // TODO |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 125 | } |
| 126 | |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 127 | if (ftdi_set_interface(ftdic, ft2232_interface) < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 128 | msg_perr("Unable to select interface: %s\n", |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 129 | ftdic->error_str); |
| 130 | } |
| 131 | |
| 132 | if (ftdi_usb_reset(ftdic) < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 133 | msg_perr("Unable to reset FTDI device\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | if (ftdi_set_latency_timer(ftdic, 2) < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 137 | msg_perr("Unable to set latency timer\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | if (ftdi_write_data_set_chunksize(ftdic, 512)) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 141 | msg_perr("Unable to set chunk size\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 142 | } |
| 143 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 144 | if (ftdi_set_bitmode(ftdic, 0x00, BITMODE_BITBANG_SPI) < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 145 | msg_perr("Unable to set bitmode to SPI\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | #if CLOCK_5X |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 149 | msg_pdbg("Disable divide-by-5 front stage\n"); |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 150 | buf[0] = 0x8a; /* Disable divide-by-5. */ |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 151 | if (send_buf(ftdic, buf, 1)) |
| 152 | return -1; |
| 153 | #define MPSSE_CLK 60.0 |
| 154 | |
| 155 | #else |
| 156 | |
| 157 | #define MPSSE_CLK 12.0 |
| 158 | |
| 159 | #endif |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 160 | msg_pdbg("Set clock divisor\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 161 | buf[0] = 0x86; /* command "set divisor" */ |
| 162 | /* valueL/valueH are (desired_divisor - 1) */ |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 163 | buf[1] = (DIVIDE_BY - 1) & 0xff; |
| 164 | buf[2] = ((DIVIDE_BY - 1) >> 8) & 0xff; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 165 | if (send_buf(ftdic, buf, 3)) |
| 166 | return -1; |
| 167 | |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 168 | msg_pdbg("SPI clock is %fMHz\n", |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 169 | (double)(MPSSE_CLK / (((DIVIDE_BY - 1) + 1) * 2))); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 170 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 171 | /* Disconnect TDI/DO to TDO/DI for loopback. */ |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 172 | msg_pdbg("No loopback of TDI/DO TDO/DI\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 173 | buf[0] = 0x85; |
| 174 | if (send_buf(ftdic, buf, 1)) |
| 175 | return -1; |
| 176 | |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 177 | msg_pdbg("Set data bits\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 178 | /* Set data bits low-byte command: |
| 179 | * value: 0x08 CS=high, DI=low, DO=low, SK=low |
| 180 | * dir: 0x0b CS=output, DI=input, DO=output, SK=output |
| 181 | */ |
| 182 | #define CS_BIT 0x08 |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 183 | buf[0] = SET_BITS_LOW; |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 184 | buf[1] = CS_BIT; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 185 | buf[2] = 0x0b; |
| 186 | if (send_buf(ftdic, buf, 3)) |
| 187 | return -1; |
| 188 | |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 189 | // msg_pdbg("\nft2232 chosen\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 190 | |
| 191 | buses_supported = CHIP_BUSTYPE_SPI; |
| 192 | spi_controller = SPI_CONTROLLER_FT2232; |
| 193 | |
| 194 | return 0; |
| 195 | } |
| 196 | |
Carl-Daniel Hailfinger | d047829 | 2009-07-10 21:08:55 +0000 | [diff] [blame] | 197 | int ft2232_spi_send_command(unsigned int writecnt, unsigned int readcnt, |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 198 | const unsigned char *writearr, unsigned char *readarr) |
| 199 | { |
| 200 | struct ftdi_context *ftdic = &ftdic_context; |
| 201 | static unsigned char *buf = NULL; |
Carl-Daniel Hailfinger | a2441ce | 2009-11-22 01:33:40 +0000 | [diff] [blame] | 202 | /* failed is special. We use bitwise ops, but it is essentially bool. */ |
| 203 | int i = 0, ret = 0, failed = 0; |
Carl-Daniel Hailfinger | b7e0145 | 2009-11-25 16:58:17 +0000 | [diff] [blame] | 204 | int bufsize; |
| 205 | static int oldbufsize = 0; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 206 | |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 207 | if (writecnt > 65536 || readcnt > 65536) |
| 208 | return SPI_INVALID_LENGTH; |
| 209 | |
Carl-Daniel Hailfinger | b7e0145 | 2009-11-25 16:58:17 +0000 | [diff] [blame] | 210 | /* buf is not used for the response from the chip. */ |
| 211 | bufsize = max(writecnt + 9, 260 + 9); |
| 212 | /* Never shrink. realloc() calls are expensive. */ |
| 213 | if (bufsize > oldbufsize) { |
| 214 | buf = realloc(buf, bufsize); |
| 215 | if (!buf) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 216 | msg_perr("Out of memory!\n"); |
Carl-Daniel Hailfinger | b7e0145 | 2009-11-25 16:58:17 +0000 | [diff] [blame] | 217 | exit(1); |
| 218 | } |
| 219 | oldbufsize = bufsize; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 220 | } |
| 221 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 222 | /* |
| 223 | * Minimize USB transfers by packing as many commands as possible |
| 224 | * together. If we're not expecting to read, we can assert CS#, write, |
| 225 | * and deassert CS# all in one shot. If reading, we do three separate |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 226 | * operations. |
| 227 | */ |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 228 | msg_pspew("Assert CS#\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 229 | buf[i++] = SET_BITS_LOW; |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 230 | buf[i++] = 0 & ~CS_BIT; /* assertive */ |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 231 | buf[i++] = 0x0b; |
| 232 | |
| 233 | if (writecnt) { |
| 234 | buf[i++] = 0x11; |
| 235 | buf[i++] = (writecnt - 1) & 0xff; |
| 236 | buf[i++] = ((writecnt - 1) >> 8) & 0xff; |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 237 | memcpy(buf + i, writearr, writecnt); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 238 | i += writecnt; |
| 239 | } |
| 240 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 241 | /* |
| 242 | * Optionally terminate this batch of commands with a |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 243 | * read command, then do the fetch of the results. |
| 244 | */ |
| 245 | if (readcnt) { |
| 246 | buf[i++] = 0x20; |
| 247 | buf[i++] = (readcnt - 1) & 0xff; |
| 248 | buf[i++] = ((readcnt - 1) >> 8) & 0xff; |
| 249 | ret = send_buf(ftdic, buf, i); |
Carl-Daniel Hailfinger | a2441ce | 2009-11-22 01:33:40 +0000 | [diff] [blame] | 250 | failed = ret; |
| 251 | /* We can't abort here, we still have to deassert CS#. */ |
| 252 | if (ret) |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 253 | msg_perr("send_buf failed before read: %i\n", |
Carl-Daniel Hailfinger | a2441ce | 2009-11-22 01:33:40 +0000 | [diff] [blame] | 254 | ret); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 255 | i = 0; |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 256 | if (ret == 0) { |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 257 | /* |
| 258 | * FIXME: This is unreliable. There's no guarantee that |
| 259 | * we read the response directly after sending the read |
| 260 | * command. We may be scheduled out etc. |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 261 | */ |
| 262 | ret = get_buf(ftdic, readarr, readcnt); |
Carl-Daniel Hailfinger | a2441ce | 2009-11-22 01:33:40 +0000 | [diff] [blame] | 263 | failed |= ret; |
| 264 | /* We can't abort here either. */ |
| 265 | if (ret) |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 266 | msg_perr("get_buf failed: %i\n", ret); |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 267 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 268 | } |
| 269 | |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 270 | msg_pspew("De-assert CS#\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 271 | buf[i++] = SET_BITS_LOW; |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 272 | buf[i++] = CS_BIT; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 273 | buf[i++] = 0x0b; |
Carl-Daniel Hailfinger | a2441ce | 2009-11-22 01:33:40 +0000 | [diff] [blame] | 274 | ret = send_buf(ftdic, buf, i); |
| 275 | failed |= ret; |
| 276 | if (ret) |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 277 | msg_perr("send_buf failed at end: %i\n", ret); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 278 | |
Carl-Daniel Hailfinger | a2441ce | 2009-11-22 01:33:40 +0000 | [diff] [blame] | 279 | return failed ? -1 : 0; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | int ft2232_spi_read(struct flashchip *flash, uint8_t *buf, int start, int len) |
| 283 | { |
| 284 | /* Maximum read length is 64k bytes. */ |
| 285 | return spi_read_chunked(flash, buf, start, len, 64 * 1024); |
| 286 | } |
| 287 | |
| 288 | int ft2232_spi_write_256(struct flashchip *flash, uint8_t *buf) |
| 289 | { |
| 290 | int total_size = 1024 * flash->total_size; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 291 | |
Carl-Daniel Hailfinger | 116081a | 2009-08-10 02:29:21 +0000 | [diff] [blame] | 292 | spi_disable_blockprotect(); |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 293 | /* Erase first. */ |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 294 | msg_pinfo("Erasing flash before programming... "); |
Carl-Daniel Hailfinger | f38431a | 2009-09-05 02:30:58 +0000 | [diff] [blame] | 295 | if (erase_flash(flash)) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 296 | msg_perr("ERASE FAILED!\n"); |
Carl-Daniel Hailfinger | 116081a | 2009-08-10 02:29:21 +0000 | [diff] [blame] | 297 | return -1; |
| 298 | } |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 299 | msg_pinfo("done.\n"); |
| 300 | msg_pdbg("total_size is %d\n", total_size); |
Carl-Daniel Hailfinger | 5824fbf | 2010-05-21 23:09:42 +0000 | [diff] [blame] | 301 | return spi_write_chunked(flash, buf, 0, total_size, 256); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 302 | } |
| 303 | |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 304 | #endif |