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" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 28 | #include "programmer.h" |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 29 | #include "spi.h" |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 30 | #include <ftdi.h> |
| 31 | |
Uwe Hermann | 836b26a | 2011-10-14 20:33:14 +0000 | [diff] [blame] | 32 | /* Please keep sorted by vendor ID, then device ID. */ |
| 33 | |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 34 | #define FTDI_VID 0x0403 |
| 35 | #define FTDI_FT2232H_PID 0x6010 |
| 36 | #define FTDI_FT4232H_PID 0x6011 |
Uwe Hermann | 836b26a | 2011-10-14 20:33:14 +0000 | [diff] [blame] | 37 | #define TIAO_TUMPA_PID 0x8a98 |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 38 | #define AMONTEC_JTAGKEY_PID 0xCFF8 |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 39 | |
Samir Ibradžić | 7189a5f | 2011-10-20 23:14:10 +0000 | [diff] [blame^] | 40 | #define GOEPEL_VID 0x096C |
| 41 | #define GOEPEL_PICOTAP_PID 0x1449 |
| 42 | |
Alex Badea | caf2d42 | 2010-11-10 03:26:57 +0000 | [diff] [blame] | 43 | #define FIC_VID 0x1457 |
| 44 | #define OPENMOKO_DBGBOARD_PID 0x5118 |
| 45 | |
Pete Batard | c020706 | 2011-06-11 12:21:37 +0000 | [diff] [blame] | 46 | #define OLIMEX_VID 0x15BA |
| 47 | #define OLIMEX_ARM_OCD_PID 0x0003 |
| 48 | #define OLIMEX_ARM_TINY_PID 0x0004 |
| 49 | #define OLIMEX_ARM_OCD_H_PID 0x002B |
| 50 | #define OLIMEX_ARM_TINY_H_PID 0x002A |
| 51 | |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 52 | const struct usbdev_status devs_ft2232spi[] = { |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 53 | {FTDI_VID, FTDI_FT2232H_PID, OK, "FTDI", "FT2232H"}, |
| 54 | {FTDI_VID, FTDI_FT4232H_PID, OK, "FTDI", "FT4232H"}, |
Uwe Hermann | 836b26a | 2011-10-14 20:33:14 +0000 | [diff] [blame] | 55 | {FTDI_VID, TIAO_TUMPA_PID, OK, "TIAO", "USB Multi-Protocol Adapter"}, |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 56 | {FTDI_VID, AMONTEC_JTAGKEY_PID, OK, "Amontec", "JTAGkey"}, |
Samir Ibradžić | 7189a5f | 2011-10-20 23:14:10 +0000 | [diff] [blame^] | 57 | {GOEPEL_VID, GOEPEL_PICOTAP_PID, OK, "GOEPEL", "PicoTAP"}, |
Pete Batard | c020706 | 2011-06-11 12:21:37 +0000 | [diff] [blame] | 58 | {FIC_VID, OPENMOKO_DBGBOARD_PID, OK, "FIC", |
Alex Badea | caf2d42 | 2010-11-10 03:26:57 +0000 | [diff] [blame] | 59 | "OpenMoko Neo1973 Debug board (V2+)"}, |
Pete Batard | c020706 | 2011-06-11 12:21:37 +0000 | [diff] [blame] | 60 | {OLIMEX_VID, OLIMEX_ARM_OCD_PID, NT, "Olimex", "ARM-USB-OCD"}, |
| 61 | {OLIMEX_VID, OLIMEX_ARM_TINY_PID, OK, "Olimex", "ARM-USB-TINY"}, |
| 62 | {OLIMEX_VID, OLIMEX_ARM_OCD_H_PID, NT, "Olimex", "ARM-USB-OCD-H"}, |
| 63 | {OLIMEX_VID, OLIMEX_ARM_TINY_H_PID, NT, "Olimex", "ARM-USB-TINY-H"}, |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 64 | {}, |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 65 | }; |
| 66 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 67 | /* |
| 68 | * The 'H' chips can run internally at either 12MHz or 60MHz. |
| 69 | * The non-H chips can only run at 12MHz. |
| 70 | */ |
Alex Badea | 0b94d05 | 2010-11-10 03:18:41 +0000 | [diff] [blame] | 71 | static uint8_t clock_5x = 1; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 72 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 73 | /* |
| 74 | * In either case, the divisor is a simple integer clock divider. |
Alex Badea | 0b94d05 | 2010-11-10 03:18:41 +0000 | [diff] [blame] | 75 | * If clock_5x is set, this divisor divides 30MHz, else it divides 6MHz. |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 76 | */ |
| 77 | #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] | 78 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 79 | #define BITMODE_BITBANG_NORMAL 1 |
| 80 | #define BITMODE_BITBANG_SPI 2 |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 81 | |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 82 | /* Set data bits low-byte command: |
| 83 | * value: 0x08 CS=high, DI=low, DO=low, SK=low |
| 84 | * dir: 0x0b CS=output, DI=input, DO=output, SK=output |
| 85 | * |
| 86 | * JTAGkey(2) needs to enable its output via Bit4 / GPIOL0 |
| 87 | * value: 0x18 OE=high, CS=high, DI=low, DO=low, SK=low |
| 88 | * 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] | 89 | */ |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 90 | static uint8_t cs_bits = 0x08; |
| 91 | static uint8_t pindir = 0x0b; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 92 | static struct ftdi_context ftdic_context; |
| 93 | |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 94 | static const char *get_ft2232_devicename(int ft2232_vid, int ft2232_type) |
| 95 | { |
| 96 | int i; |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 97 | for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) { |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 98 | if ((devs_ft2232spi[i].device_id == ft2232_type) |
| 99 | && (devs_ft2232spi[i].vendor_id == ft2232_vid)) |
| 100 | return devs_ft2232spi[i].device_name; |
| 101 | } |
| 102 | return "unknown device"; |
| 103 | } |
| 104 | |
| 105 | static const char *get_ft2232_vendorname(int ft2232_vid, int ft2232_type) |
| 106 | { |
| 107 | int i; |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 108 | for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) { |
| 109 | if ((devs_ft2232spi[i].device_id == ft2232_type) |
| 110 | && (devs_ft2232spi[i].vendor_id == ft2232_vid)) |
| 111 | return devs_ft2232spi[i].vendor_name; |
| 112 | } |
| 113 | return "unknown vendor"; |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 114 | } |
| 115 | |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 116 | static int send_buf(struct ftdi_context *ftdic, const unsigned char *buf, |
| 117 | int size) |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 118 | { |
| 119 | int r; |
| 120 | r = ftdi_write_data(ftdic, (unsigned char *) buf, size); |
| 121 | if (r < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 122 | msg_perr("ftdi_write_data: %d, %s\n", r, |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 123 | ftdi_get_error_string(ftdic)); |
| 124 | return 1; |
| 125 | } |
| 126 | return 0; |
| 127 | } |
| 128 | |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 129 | static int get_buf(struct ftdi_context *ftdic, const unsigned char *buf, |
| 130 | int size) |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 131 | { |
| 132 | int r; |
Alex Badea | b9556e0 | 2010-11-10 03:10:41 +0000 | [diff] [blame] | 133 | |
| 134 | while (size > 0) { |
| 135 | r = ftdi_read_data(ftdic, (unsigned char *) buf, size); |
| 136 | if (r < 0) { |
| 137 | msg_perr("ftdi_read_data: %d, %s\n", r, |
| 138 | ftdi_get_error_string(ftdic)); |
| 139 | return 1; |
| 140 | } |
| 141 | buf += r; |
| 142 | size -= r; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 143 | } |
| 144 | return 0; |
| 145 | } |
| 146 | |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 147 | static int ft2232_spi_send_command(unsigned int writecnt, unsigned int readcnt, |
| 148 | const unsigned char *writearr, unsigned char *readarr); |
| 149 | |
| 150 | static const struct spi_programmer spi_programmer_ft2232 = { |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 151 | .type = SPI_CONTROLLER_FT2232, |
| 152 | .max_data_read = 64 * 1024, |
| 153 | .max_data_write = 256, |
| 154 | .command = ft2232_spi_send_command, |
| 155 | .multicommand = default_spi_send_multicommand, |
| 156 | .read = default_spi_read, |
| 157 | .write_256 = default_spi_write_256, |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 158 | }; |
| 159 | |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 160 | /* Returns 0 upon success, a negative number upon errors. */ |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 161 | int ft2232_spi_init(void) |
| 162 | { |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 163 | int f, ret = 0; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 164 | struct ftdi_context *ftdic = &ftdic_context; |
| 165 | unsigned char buf[512]; |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 166 | int ft2232_vid = FTDI_VID; |
| 167 | int ft2232_type = FTDI_FT4232H_PID; |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 168 | enum ftdi_interface ft2232_interface = INTERFACE_B; |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 169 | char *arg; |
Alex Badea | 0b94d05 | 2010-11-10 03:18:41 +0000 | [diff] [blame] | 170 | double mpsse_clk; |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 171 | |
Carl-Daniel Hailfinger | 2b6dcb3 | 2010-07-08 10:13:37 +0000 | [diff] [blame] | 172 | arg = extract_programmer_param("type"); |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 173 | if (arg) { |
| 174 | if (!strcasecmp(arg, "2232H")) |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 175 | ft2232_type = FTDI_FT2232H_PID; |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 176 | else if (!strcasecmp(arg, "4232H")) |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 177 | ft2232_type = FTDI_FT4232H_PID; |
| 178 | else if (!strcasecmp(arg, "jtagkey")) { |
| 179 | ft2232_type = AMONTEC_JTAGKEY_PID; |
| 180 | ft2232_interface = INTERFACE_A; |
| 181 | cs_bits = 0x18; |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 182 | pindir = 0x1b; |
Samir Ibradžić | 7189a5f | 2011-10-20 23:14:10 +0000 | [diff] [blame^] | 183 | } else if (!strcasecmp(arg, "picotap")) { |
| 184 | ft2232_vid = GOEPEL_VID; |
| 185 | ft2232_type = GOEPEL_PICOTAP_PID; |
| 186 | ft2232_interface = INTERFACE_A; |
Uwe Hermann | 836b26a | 2011-10-14 20:33:14 +0000 | [diff] [blame] | 187 | } else if (!strcasecmp(arg, "tumpa")) { |
| 188 | /* Interface A is SPI1, B is SPI2. */ |
| 189 | ft2232_type = TIAO_TUMPA_PID; |
| 190 | ft2232_interface = INTERFACE_A; |
Steve Markgraf | 0528b7f | 2011-08-12 01:19:32 +0000 | [diff] [blame] | 191 | } else if (!strcasecmp(arg, "busblaster")) { |
| 192 | /* In its default configuration it is a jtagkey clone */ |
| 193 | ft2232_type = FTDI_FT2232H_PID; |
| 194 | ft2232_interface = INTERFACE_A; |
| 195 | cs_bits = 0x18; |
| 196 | pindir = 0x1b; |
Alex Badea | caf2d42 | 2010-11-10 03:26:57 +0000 | [diff] [blame] | 197 | } else if (!strcasecmp(arg, "openmoko")) { |
| 198 | ft2232_vid = FIC_VID; |
| 199 | ft2232_type = OPENMOKO_DBGBOARD_PID; |
| 200 | ft2232_interface = INTERFACE_A; |
Pete Batard | c020706 | 2011-06-11 12:21:37 +0000 | [diff] [blame] | 201 | } else if (!strcasecmp(arg, "arm-usb-ocd")) { |
| 202 | ft2232_vid = OLIMEX_VID; |
| 203 | ft2232_type = OLIMEX_ARM_OCD_PID; |
| 204 | ft2232_interface = INTERFACE_A; |
| 205 | } else if (!strcasecmp(arg, "arm-usb-tiny")) { |
| 206 | ft2232_vid = OLIMEX_VID; |
| 207 | ft2232_type = OLIMEX_ARM_TINY_PID; |
| 208 | ft2232_interface = INTERFACE_A; |
| 209 | } else if (!strcasecmp(arg, "arm-usb-ocd-h")) { |
| 210 | ft2232_vid = OLIMEX_VID; |
| 211 | ft2232_type = OLIMEX_ARM_OCD_H_PID; |
| 212 | ft2232_interface = INTERFACE_A; |
| 213 | } else if (!strcasecmp(arg, "arm-usb-tiny-h")) { |
| 214 | ft2232_vid = OLIMEX_VID; |
| 215 | ft2232_type = OLIMEX_ARM_TINY_H_PID; |
| 216 | ft2232_interface = INTERFACE_A; |
Alex Badea | caf2d42 | 2010-11-10 03:26:57 +0000 | [diff] [blame] | 217 | } else { |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 218 | msg_perr("Error: Invalid device type specified.\n"); |
| 219 | free(arg); |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 220 | return -1; |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 221 | } |
| 222 | } |
| 223 | free(arg); |
Carl-Daniel Hailfinger | 2b6dcb3 | 2010-07-08 10:13:37 +0000 | [diff] [blame] | 224 | arg = extract_programmer_param("port"); |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 225 | if (arg) { |
Carl-Daniel Hailfinger | 9e3a6c4 | 2010-10-08 12:40:09 +0000 | [diff] [blame] | 226 | switch (toupper((unsigned char)*arg)) { |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 227 | case 'A': |
| 228 | ft2232_interface = INTERFACE_A; |
| 229 | break; |
| 230 | case 'B': |
| 231 | ft2232_interface = INTERFACE_B; |
| 232 | break; |
| 233 | default: |
| 234 | msg_perr("Error: Invalid port/interface specified.\n"); |
| 235 | free(arg); |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 236 | return -2; |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 237 | } |
| 238 | } |
| 239 | free(arg); |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 240 | msg_pdbg("Using device type %s %s ", |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 241 | get_ft2232_vendorname(ft2232_vid, ft2232_type), |
| 242 | get_ft2232_devicename(ft2232_vid, ft2232_type)); |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 243 | msg_pdbg("interface %s\n", |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 244 | (ft2232_interface == INTERFACE_A) ? "A" : "B"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 245 | |
| 246 | if (ftdi_init(ftdic) < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 247 | msg_perr("ftdi_init failed\n"); |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 248 | return -3; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 249 | } |
| 250 | |
Alex Badea | b1b459c | 2010-11-10 03:22:39 +0000 | [diff] [blame] | 251 | f = ftdi_usb_open(ftdic, ft2232_vid, ft2232_type); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 252 | |
| 253 | if (f < 0 && f != -5) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 254 | msg_perr("Unable to open FTDI device: %d (%s)\n", f, |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 255 | ftdi_get_error_string(ftdic)); |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 256 | return -4; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 257 | } |
| 258 | |
Alex Badea | 0b94d05 | 2010-11-10 03:18:41 +0000 | [diff] [blame] | 259 | if (ftdic->type != TYPE_2232H && ftdic->type != TYPE_4232H) { |
| 260 | msg_pdbg("FTDI chip type %d is not high-speed\n", |
| 261 | ftdic->type); |
| 262 | clock_5x = 0; |
| 263 | } |
| 264 | |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 265 | if (ftdi_set_interface(ftdic, ft2232_interface) < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 266 | msg_perr("Unable to select interface: %s\n", |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 267 | ftdic->error_str); |
| 268 | } |
| 269 | |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 270 | if (ftdi_usb_reset(ftdic) < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 271 | msg_perr("Unable to reset FTDI device\n"); |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 272 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 273 | |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 274 | if (ftdi_set_latency_timer(ftdic, 2) < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 275 | msg_perr("Unable to set latency timer\n"); |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 276 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 277 | |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 278 | if (ftdi_write_data_set_chunksize(ftdic, 256)) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 279 | msg_perr("Unable to set chunk size\n"); |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 280 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 281 | |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 282 | if (ftdi_set_bitmode(ftdic, 0x00, BITMODE_BITBANG_SPI) < 0) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 283 | msg_perr("Unable to set bitmode to SPI\n"); |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 284 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 285 | |
Alex Badea | 0b94d05 | 2010-11-10 03:18:41 +0000 | [diff] [blame] | 286 | if (clock_5x) { |
| 287 | msg_pdbg("Disable divide-by-5 front stage\n"); |
| 288 | buf[0] = 0x8a; /* Disable divide-by-5. */ |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 289 | if (send_buf(ftdic, buf, 1)) { |
| 290 | ret = -5; |
| 291 | goto ftdi_err; |
| 292 | } |
Alex Badea | 0b94d05 | 2010-11-10 03:18:41 +0000 | [diff] [blame] | 293 | mpsse_clk = 60.0; |
| 294 | } else { |
| 295 | mpsse_clk = 12.0; |
| 296 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 297 | |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 298 | msg_pdbg("Set clock divisor\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 299 | buf[0] = 0x86; /* command "set divisor" */ |
| 300 | /* valueL/valueH are (desired_divisor - 1) */ |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 301 | buf[1] = (DIVIDE_BY - 1) & 0xff; |
| 302 | buf[2] = ((DIVIDE_BY - 1) >> 8) & 0xff; |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 303 | if (send_buf(ftdic, buf, 3)) { |
| 304 | ret = -6; |
| 305 | goto ftdi_err; |
| 306 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 307 | |
Alex Badea | 0b94d05 | 2010-11-10 03:18:41 +0000 | [diff] [blame] | 308 | msg_pdbg("MPSSE clock: %f MHz divisor: %d " |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 309 | "SPI clock: %f MHz\n", mpsse_clk, DIVIDE_BY, |
Alex Badea | 0b94d05 | 2010-11-10 03:18:41 +0000 | [diff] [blame] | 310 | (double)(mpsse_clk / (((DIVIDE_BY - 1) + 1) * 2))); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 311 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 312 | /* Disconnect TDI/DO to TDO/DI for loopback. */ |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 313 | msg_pdbg("No loopback of TDI/DO TDO/DI\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 314 | buf[0] = 0x85; |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 315 | if (send_buf(ftdic, buf, 1)) { |
| 316 | ret = -7; |
| 317 | goto ftdi_err; |
| 318 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 319 | |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 320 | msg_pdbg("Set data bits\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 321 | buf[0] = SET_BITS_LOW; |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 322 | buf[1] = cs_bits; |
| 323 | buf[2] = pindir; |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 324 | if (send_buf(ftdic, buf, 3)) { |
| 325 | ret = -8; |
| 326 | goto ftdi_err; |
| 327 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 328 | |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 329 | // msg_pdbg("\nft2232 chosen\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 330 | |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 331 | register_spi_programmer(&spi_programmer_ft2232); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 332 | |
| 333 | return 0; |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 334 | |
| 335 | ftdi_err: |
| 336 | if ((f = ftdi_usb_close(ftdic)) < 0) { |
| 337 | msg_perr("Unable to close FTDI device: %d (%s)\n", f, |
| 338 | ftdi_get_error_string(ftdic)); |
| 339 | } |
| 340 | |
| 341 | return ret; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 342 | } |
| 343 | |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 344 | /* Returns 0 upon success, a negative number upon errors. */ |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 345 | static int ft2232_spi_send_command(unsigned int writecnt, unsigned int readcnt, |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 346 | const unsigned char *writearr, unsigned char *readarr) |
| 347 | { |
| 348 | struct ftdi_context *ftdic = &ftdic_context; |
| 349 | static unsigned char *buf = NULL; |
Carl-Daniel Hailfinger | a2441ce | 2009-11-22 01:33:40 +0000 | [diff] [blame] | 350 | /* failed is special. We use bitwise ops, but it is essentially bool. */ |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 351 | int i = 0, ret = 0, failed = 0; |
| 352 | int bufsize; |
Carl-Daniel Hailfinger | b7e0145 | 2009-11-25 16:58:17 +0000 | [diff] [blame] | 353 | static int oldbufsize = 0; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 354 | |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 355 | if (writecnt > 65536 || readcnt > 65536) |
| 356 | return SPI_INVALID_LENGTH; |
| 357 | |
Carl-Daniel Hailfinger | b7e0145 | 2009-11-25 16:58:17 +0000 | [diff] [blame] | 358 | /* buf is not used for the response from the chip. */ |
| 359 | bufsize = max(writecnt + 9, 260 + 9); |
| 360 | /* Never shrink. realloc() calls are expensive. */ |
| 361 | if (bufsize > oldbufsize) { |
| 362 | buf = realloc(buf, bufsize); |
| 363 | if (!buf) { |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 364 | msg_perr("Out of memory!\n"); |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 365 | /* TODO: What to do with buf? */ |
| 366 | return SPI_GENERIC_ERROR; |
Carl-Daniel Hailfinger | b7e0145 | 2009-11-25 16:58:17 +0000 | [diff] [blame] | 367 | } |
| 368 | oldbufsize = bufsize; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 369 | } |
| 370 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 371 | /* |
| 372 | * Minimize USB transfers by packing as many commands as possible |
| 373 | * together. If we're not expecting to read, we can assert CS#, write, |
| 374 | * 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] | 375 | * operations. |
| 376 | */ |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 377 | msg_pspew("Assert CS#\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 378 | buf[i++] = SET_BITS_LOW; |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 379 | buf[i++] = 0 & ~cs_bits; /* assertive */ |
| 380 | buf[i++] = pindir; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 381 | |
| 382 | if (writecnt) { |
| 383 | buf[i++] = 0x11; |
| 384 | buf[i++] = (writecnt - 1) & 0xff; |
| 385 | buf[i++] = ((writecnt - 1) >> 8) & 0xff; |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 386 | memcpy(buf + i, writearr, writecnt); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 387 | i += writecnt; |
| 388 | } |
| 389 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 390 | /* |
| 391 | * Optionally terminate this batch of commands with a |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 392 | * read command, then do the fetch of the results. |
| 393 | */ |
| 394 | if (readcnt) { |
| 395 | buf[i++] = 0x20; |
| 396 | buf[i++] = (readcnt - 1) & 0xff; |
| 397 | buf[i++] = ((readcnt - 1) >> 8) & 0xff; |
| 398 | ret = send_buf(ftdic, buf, i); |
Carl-Daniel Hailfinger | a2441ce | 2009-11-22 01:33:40 +0000 | [diff] [blame] | 399 | failed = ret; |
| 400 | /* We can't abort here, we still have to deassert CS#. */ |
| 401 | if (ret) |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 402 | msg_perr("send_buf failed before read: %i\n", ret); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 403 | i = 0; |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 404 | if (ret == 0) { |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 405 | /* |
| 406 | * FIXME: This is unreliable. There's no guarantee that |
| 407 | * we read the response directly after sending the read |
| 408 | * command. We may be scheduled out etc. |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 409 | */ |
| 410 | ret = get_buf(ftdic, readarr, readcnt); |
Carl-Daniel Hailfinger | a2441ce | 2009-11-22 01:33:40 +0000 | [diff] [blame] | 411 | failed |= ret; |
| 412 | /* We can't abort here either. */ |
| 413 | if (ret) |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 414 | msg_perr("get_buf failed: %i\n", ret); |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 415 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 416 | } |
| 417 | |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 418 | msg_pspew("De-assert CS#\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 419 | buf[i++] = SET_BITS_LOW; |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 420 | buf[i++] = cs_bits; |
| 421 | buf[i++] = pindir; |
Carl-Daniel Hailfinger | a2441ce | 2009-11-22 01:33:40 +0000 | [diff] [blame] | 422 | ret = send_buf(ftdic, buf, i); |
| 423 | failed |= ret; |
| 424 | if (ret) |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 425 | msg_perr("send_buf failed at end: %i\n", ret); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 426 | |
Carl-Daniel Hailfinger | a2441ce | 2009-11-22 01:33:40 +0000 | [diff] [blame] | 427 | return failed ? -1 : 0; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 428 | } |
| 429 | |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 430 | void print_supported_usbdevs(const struct usbdev_status *devs) |
| 431 | { |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 432 | int i; |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 433 | |
Carl-Daniel Hailfinger | a73fb49 | 2010-10-06 23:48:34 +0000 | [diff] [blame] | 434 | msg_pinfo("USB devices:\n"); |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 435 | for (i = 0; devs[i].vendor_name != NULL; i++) { |
| 436 | msg_pinfo("%s %s [%04x:%04x]%s\n", devs[i].vendor_name, |
| 437 | devs[i].device_name, devs[i].vendor_id, |
| 438 | devs[i].device_id, |
| 439 | (devs[i].status == NT) ? " (untested)" : ""); |
| 440 | } |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 441 | } |
| 442 | |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 443 | #endif |