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 | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 21 | #if CONFIG_FT2232_SPI == 1 |
Carl-Daniel Hailfinger | 3426ef6 | 2009-08-19 13:27:58 +0000 | [diff] [blame] | 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" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 30 | #include "programmer.h" |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 31 | #include "spi.h" |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 32 | #include <ftdi.h> |
| 33 | |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame^] | 34 | |
| 35 | #define FTDI_VID 0x0403 |
| 36 | #define FTDI_FT2232H_PID 0x6010 |
| 37 | #define FTDI_FT4232H_PID 0x6011 |
| 38 | #define AMONTEC_JTAGKEY_PID 0xCFF8 |
| 39 | |
| 40 | const struct usbdev_status devs_ft2232spi[] = { |
| 41 | {FTDI_VID, FTDI_FT2232H_PID, OK, "FTDI", "FT2232H"}, |
| 42 | {FTDI_VID, FTDI_FT4232H_PID, OK, "FTDI", "FT4232H"}, |
| 43 | {FTDI_VID, AMONTEC_JTAGKEY_PID, OK, "Amontec", "JTAGkey"}, |
| 44 | {}, |
| 45 | }; |
| 46 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 47 | /* |
| 48 | * The 'H' chips can run internally at either 12MHz or 60MHz. |
| 49 | * The non-H chips can only run at 12MHz. |
| 50 | */ |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 51 | #define CLOCK_5X 1 |
| 52 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 53 | /* |
| 54 | * In either case, the divisor is a simple integer clock divider. |
| 55 | * If CLOCK_5X is set, this divisor divides 30MHz, else it divides 6MHz. |
| 56 | */ |
| 57 | #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] | 58 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 59 | #define BITMODE_BITBANG_NORMAL 1 |
| 60 | #define BITMODE_BITBANG_SPI 2 |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 61 | |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame^] | 62 | /* Set data bits low-byte command: |
| 63 | * value: 0x08 CS=high, DI=low, DO=low, SK=low |
| 64 | * dir: 0x0b CS=output, DI=input, DO=output, SK=output |
| 65 | * |
| 66 | * JTAGkey(2) needs to enable its output via Bit4 / GPIOL0 |
| 67 | * value: 0x18 OE=high, CS=high, DI=low, DO=low, SK=low |
| 68 | * dir: 0x1b OE=output, CS=output, DI=input, DO=output, SK=output |
| 69 | * |
| 70 | */ |
| 71 | static unsigned char cs_bits = 0x08; |
| 72 | static unsigned char pindir = 0x0b; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 73 | static struct ftdi_context ftdic_context; |
| 74 | |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame^] | 75 | static const char *get_ft2232_devicename(int ft2232_vid, int ft2232_type) |
| 76 | { |
| 77 | int i; |
| 78 | for (i=0; devs_ft2232spi[i].vendor_name != NULL; i ++) { |
| 79 | if ((devs_ft2232spi[i].device_id == ft2232_type) |
| 80 | && (devs_ft2232spi[i].vendor_id == ft2232_vid)) |
| 81 | return devs_ft2232spi[i].device_name; |
| 82 | } |
| 83 | return "unknown device"; |
| 84 | } |
| 85 | |
| 86 | static const char *get_ft2232_vendorname(int ft2232_vid, int ft2232_type) |
| 87 | { |
| 88 | int i; |
| 89 | for (i=0; devs_ft2232spi[i].vendor_name != NULL; i ++) { |
| 90 | if ((devs_ft2232spi[i].device_id == ft2232_type) |
| 91 | && (devs_ft2232spi[i].vendor_id == ft2232_vid)) |
| 92 | return devs_ft2232spi[i].vendor_name; |
| 93 | } |
| 94 | return "unknown vendor"; |
| 95 | } |
| 96 | |
| 97 | |
| 98 | |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 99 | static int send_buf(struct ftdi_context *ftdic, const unsigned char *buf, int size) |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 100 | { |
| 101 | int r; |
| 102 | r = ftdi_write_data(ftdic, (unsigned char *) buf, size); |
| 103 | if (r < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 104 | msg_perr("ftdi_write_data: %d, %s\n", r, |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 105 | ftdi_get_error_string(ftdic)); |
| 106 | return 1; |
| 107 | } |
| 108 | return 0; |
| 109 | } |
| 110 | |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 111 | static int get_buf(struct ftdi_context *ftdic, const unsigned char *buf, int size) |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 112 | { |
| 113 | int r; |
| 114 | r = ftdi_read_data(ftdic, (unsigned char *) buf, size); |
| 115 | if (r < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 116 | msg_perr("ftdi_read_data: %d, %s\n", r, |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 117 | ftdi_get_error_string(ftdic)); |
| 118 | return 1; |
| 119 | } |
| 120 | return 0; |
| 121 | } |
| 122 | |
| 123 | int ft2232_spi_init(void) |
| 124 | { |
| 125 | int f; |
| 126 | struct ftdi_context *ftdic = &ftdic_context; |
| 127 | unsigned char buf[512]; |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame^] | 128 | int ft2232_vid = FTDI_VID; |
| 129 | int ft2232_type = FTDI_FT4232H_PID; |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 130 | enum ftdi_interface ft2232_interface = INTERFACE_B; |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 131 | char *arg; |
| 132 | |
Carl-Daniel Hailfinger | 2b6dcb3 | 2010-07-08 10:13:37 +0000 | [diff] [blame] | 133 | arg = extract_programmer_param("type"); |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 134 | if (arg) { |
| 135 | if (!strcasecmp(arg, "2232H")) |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame^] | 136 | ft2232_type = FTDI_FT2232H_PID; |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 137 | else if (!strcasecmp(arg, "4232H")) |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame^] | 138 | ft2232_type = FTDI_FT4232H_PID; |
| 139 | else if (!strcasecmp(arg, "jtagkey")) { |
| 140 | ft2232_type = AMONTEC_JTAGKEY_PID; |
| 141 | ft2232_interface = INTERFACE_A; |
| 142 | cs_bits = 0x18; |
| 143 | pindir = 0x1b; |
| 144 | } |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 145 | else { |
| 146 | msg_perr("Error: Invalid device type specified.\n"); |
| 147 | free(arg); |
| 148 | return 1; |
| 149 | } |
| 150 | } |
| 151 | free(arg); |
Carl-Daniel Hailfinger | 2b6dcb3 | 2010-07-08 10:13:37 +0000 | [diff] [blame] | 152 | arg = extract_programmer_param("port"); |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 153 | if (arg) { |
| 154 | switch (toupper(*arg)) { |
| 155 | case 'A': |
| 156 | ft2232_interface = INTERFACE_A; |
| 157 | break; |
| 158 | case 'B': |
| 159 | ft2232_interface = INTERFACE_B; |
| 160 | break; |
| 161 | default: |
| 162 | msg_perr("Error: Invalid port/interface specified.\n"); |
| 163 | free(arg); |
| 164 | return 1; |
| 165 | } |
| 166 | } |
| 167 | free(arg); |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame^] | 168 | msg_pdbg("Using device type %s %s ", |
| 169 | get_ft2232_vendorname(ft2232_vid,ft2232_type), |
| 170 | get_ft2232_devicename(ft2232_vid,ft2232_type)); |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 171 | msg_pdbg("interface %s\n", |
| 172 | (ft2232_interface == INTERFACE_A) ? "A" : "B"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 173 | |
| 174 | if (ftdi_init(ftdic) < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 175 | msg_perr("ftdi_init failed\n"); |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 176 | return EXIT_FAILURE; // TODO |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 177 | } |
| 178 | |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame^] | 179 | f = ftdi_usb_open(ftdic, FTDI_VID, ft2232_type); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 180 | |
| 181 | if (f < 0 && f != -5) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 182 | msg_perr("Unable to open FTDI device: %d (%s)\n", f, |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 183 | ftdi_get_error_string(ftdic)); |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 184 | exit(-1); // TODO |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 185 | } |
| 186 | |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 187 | if (ftdi_set_interface(ftdic, ft2232_interface) < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 188 | msg_perr("Unable to select interface: %s\n", |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 189 | ftdic->error_str); |
| 190 | } |
| 191 | |
| 192 | if (ftdi_usb_reset(ftdic) < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 193 | msg_perr("Unable to reset FTDI device\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | if (ftdi_set_latency_timer(ftdic, 2) < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 197 | msg_perr("Unable to set latency timer\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | if (ftdi_write_data_set_chunksize(ftdic, 512)) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 201 | msg_perr("Unable to set chunk size\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 202 | } |
| 203 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 204 | if (ftdi_set_bitmode(ftdic, 0x00, BITMODE_BITBANG_SPI) < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 205 | msg_perr("Unable to set bitmode to SPI\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | #if CLOCK_5X |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 209 | msg_pdbg("Disable divide-by-5 front stage\n"); |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 210 | buf[0] = 0x8a; /* Disable divide-by-5. */ |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 211 | if (send_buf(ftdic, buf, 1)) |
| 212 | return -1; |
| 213 | #define MPSSE_CLK 60.0 |
| 214 | |
| 215 | #else |
| 216 | |
| 217 | #define MPSSE_CLK 12.0 |
| 218 | |
| 219 | #endif |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 220 | msg_pdbg("Set clock divisor\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 221 | buf[0] = 0x86; /* command "set divisor" */ |
| 222 | /* valueL/valueH are (desired_divisor - 1) */ |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 223 | buf[1] = (DIVIDE_BY - 1) & 0xff; |
| 224 | buf[2] = ((DIVIDE_BY - 1) >> 8) & 0xff; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 225 | if (send_buf(ftdic, buf, 3)) |
| 226 | return -1; |
| 227 | |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 228 | msg_pdbg("SPI clock is %fMHz\n", |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 229 | (double)(MPSSE_CLK / (((DIVIDE_BY - 1) + 1) * 2))); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 230 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 231 | /* Disconnect TDI/DO to TDO/DI for loopback. */ |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 232 | msg_pdbg("No loopback of TDI/DO TDO/DI\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 233 | buf[0] = 0x85; |
| 234 | if (send_buf(ftdic, buf, 1)) |
| 235 | return -1; |
| 236 | |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 237 | msg_pdbg("Set data bits\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 238 | buf[0] = SET_BITS_LOW; |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame^] | 239 | buf[1] = cs_bits; |
| 240 | buf[2] = pindir; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 241 | if (send_buf(ftdic, buf, 3)) |
| 242 | return -1; |
| 243 | |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 244 | // msg_pdbg("\nft2232 chosen\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 245 | |
| 246 | buses_supported = CHIP_BUSTYPE_SPI; |
| 247 | spi_controller = SPI_CONTROLLER_FT2232; |
| 248 | |
| 249 | return 0; |
| 250 | } |
| 251 | |
Carl-Daniel Hailfinger | d047829 | 2009-07-10 21:08:55 +0000 | [diff] [blame] | 252 | int ft2232_spi_send_command(unsigned int writecnt, unsigned int readcnt, |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 253 | const unsigned char *writearr, unsigned char *readarr) |
| 254 | { |
| 255 | struct ftdi_context *ftdic = &ftdic_context; |
| 256 | static unsigned char *buf = NULL; |
Carl-Daniel Hailfinger | a2441ce | 2009-11-22 01:33:40 +0000 | [diff] [blame] | 257 | /* failed is special. We use bitwise ops, but it is essentially bool. */ |
| 258 | int i = 0, ret = 0, failed = 0; |
Carl-Daniel Hailfinger | b7e0145 | 2009-11-25 16:58:17 +0000 | [diff] [blame] | 259 | int bufsize; |
| 260 | static int oldbufsize = 0; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 261 | |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 262 | if (writecnt > 65536 || readcnt > 65536) |
| 263 | return SPI_INVALID_LENGTH; |
| 264 | |
Carl-Daniel Hailfinger | b7e0145 | 2009-11-25 16:58:17 +0000 | [diff] [blame] | 265 | /* buf is not used for the response from the chip. */ |
| 266 | bufsize = max(writecnt + 9, 260 + 9); |
| 267 | /* Never shrink. realloc() calls are expensive. */ |
| 268 | if (bufsize > oldbufsize) { |
| 269 | buf = realloc(buf, bufsize); |
| 270 | if (!buf) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 271 | msg_perr("Out of memory!\n"); |
Carl-Daniel Hailfinger | b7e0145 | 2009-11-25 16:58:17 +0000 | [diff] [blame] | 272 | exit(1); |
| 273 | } |
| 274 | oldbufsize = bufsize; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 275 | } |
| 276 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 277 | /* |
| 278 | * Minimize USB transfers by packing as many commands as possible |
| 279 | * together. If we're not expecting to read, we can assert CS#, write, |
| 280 | * 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] | 281 | * operations. |
| 282 | */ |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 283 | msg_pspew("Assert CS#\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 284 | buf[i++] = SET_BITS_LOW; |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame^] | 285 | buf[i++] = 0 & ~cs_bits; /* assertive */ |
| 286 | buf[i++] = pindir; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 287 | |
| 288 | if (writecnt) { |
| 289 | buf[i++] = 0x11; |
| 290 | buf[i++] = (writecnt - 1) & 0xff; |
| 291 | buf[i++] = ((writecnt - 1) >> 8) & 0xff; |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 292 | memcpy(buf + i, writearr, writecnt); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 293 | i += writecnt; |
| 294 | } |
| 295 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 296 | /* |
| 297 | * Optionally terminate this batch of commands with a |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 298 | * read command, then do the fetch of the results. |
| 299 | */ |
| 300 | if (readcnt) { |
| 301 | buf[i++] = 0x20; |
| 302 | buf[i++] = (readcnt - 1) & 0xff; |
| 303 | buf[i++] = ((readcnt - 1) >> 8) & 0xff; |
| 304 | ret = send_buf(ftdic, buf, i); |
Carl-Daniel Hailfinger | a2441ce | 2009-11-22 01:33:40 +0000 | [diff] [blame] | 305 | failed = ret; |
| 306 | /* We can't abort here, we still have to deassert CS#. */ |
| 307 | if (ret) |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 308 | msg_perr("send_buf failed before read: %i\n", |
Carl-Daniel Hailfinger | a2441ce | 2009-11-22 01:33:40 +0000 | [diff] [blame] | 309 | ret); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 310 | i = 0; |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 311 | if (ret == 0) { |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 312 | /* |
| 313 | * FIXME: This is unreliable. There's no guarantee that |
| 314 | * we read the response directly after sending the read |
| 315 | * command. We may be scheduled out etc. |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 316 | */ |
| 317 | ret = get_buf(ftdic, readarr, readcnt); |
Carl-Daniel Hailfinger | a2441ce | 2009-11-22 01:33:40 +0000 | [diff] [blame] | 318 | failed |= ret; |
| 319 | /* We can't abort here either. */ |
| 320 | if (ret) |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 321 | msg_perr("get_buf failed: %i\n", ret); |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 322 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 323 | } |
| 324 | |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 325 | msg_pspew("De-assert CS#\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 326 | buf[i++] = SET_BITS_LOW; |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame^] | 327 | buf[i++] = cs_bits; |
| 328 | buf[i++] = pindir; |
Carl-Daniel Hailfinger | a2441ce | 2009-11-22 01:33:40 +0000 | [diff] [blame] | 329 | ret = send_buf(ftdic, buf, i); |
| 330 | failed |= ret; |
| 331 | if (ret) |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 332 | msg_perr("send_buf failed at end: %i\n", ret); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 333 | |
Carl-Daniel Hailfinger | a2441ce | 2009-11-22 01:33:40 +0000 | [diff] [blame] | 334 | return failed ? -1 : 0; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 335 | } |
| 336 | |
| 337 | int ft2232_spi_read(struct flashchip *flash, uint8_t *buf, int start, int len) |
| 338 | { |
| 339 | /* Maximum read length is 64k bytes. */ |
| 340 | return spi_read_chunked(flash, buf, start, len, 64 * 1024); |
| 341 | } |
| 342 | |
Carl-Daniel Hailfinger | 9a795d8 | 2010-07-14 16:19:05 +0000 | [diff] [blame] | 343 | int ft2232_spi_write_256(struct flashchip *flash, uint8_t *buf, int start, int len) |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 344 | { |
Carl-Daniel Hailfinger | 9a795d8 | 2010-07-14 16:19:05 +0000 | [diff] [blame] | 345 | return spi_write_chunked(flash, buf, start, len, 256); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 346 | } |
| 347 | |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame^] | 348 | void print_supported_usbdevs(const struct usbdev_status *devs) |
| 349 | { |
| 350 | int i; |
| 351 | |
| 352 | for (i = 0; devs[i].vendor_name != NULL; i++) { |
| 353 | msg_pinfo("%s %s [%02x:%02x]%s\n", devs[i].vendor_name, |
| 354 | devs[i].device_name, devs[i].vendor_id, |
| 355 | devs[i].device_id, |
| 356 | (devs[i].status == NT) ? " (untested)" : ""); |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | |
| 361 | |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 362 | #endif |