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