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