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. |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 15 | */ |
| 16 | |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 17 | #if CONFIG_FT2232_SPI == 1 |
Carl-Daniel Hailfinger | 3426ef6 | 2009-08-19 13:27:58 +0000 | [diff] [blame] | 18 | |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 19 | #include <stdio.h> |
Carl-Daniel Hailfinger | 1c6d2ff | 2012-08-27 00:44:42 +0000 | [diff] [blame] | 20 | #include <strings.h> |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 21 | #include <string.h> |
| 22 | #include <stdlib.h> |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 23 | #include <ctype.h> |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 24 | #include "flash.h" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 25 | #include "programmer.h" |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 26 | #include "spi.h" |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 27 | #include <ftdi.h> |
| 28 | |
Ilya A. Volynets-Evenbakh | 2c714ab | 2012-09-26 00:47:09 +0000 | [diff] [blame] | 29 | /* This is not defined in libftdi.h <0.20 (c7e4c09e68cfa6f5e112334aa1b3bb23401c8dc7 to be exact). |
Angel Pons | 44cfbb0 | 2021-04-17 17:07:34 +0200 | [diff] [blame] | 30 | * Some tests indicate that this is the only change that it is needed to support the FT232H in flashrom. */ |
Ilya A. Volynets-Evenbakh | 2c714ab | 2012-09-26 00:47:09 +0000 | [diff] [blame] | 31 | #if !defined(HAVE_FT232H) |
| 32 | #define TYPE_232H 6 |
| 33 | #endif |
| 34 | |
Uwe Hermann | 836b26a | 2011-10-14 20:33:14 +0000 | [diff] [blame] | 35 | /* Please keep sorted by vendor ID, then device ID. */ |
| 36 | |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 37 | #define FTDI_VID 0x0403 |
| 38 | #define FTDI_FT2232H_PID 0x6010 |
| 39 | #define FTDI_FT4232H_PID 0x6011 |
Ilya A. Volynets-Evenbakh | 2c714ab | 2012-09-26 00:47:09 +0000 | [diff] [blame] | 40 | #define FTDI_FT232H_PID 0x6014 |
Uwe Hermann | 836b26a | 2011-10-14 20:33:14 +0000 | [diff] [blame] | 41 | #define TIAO_TUMPA_PID 0x8a98 |
Stefan Tauner | b66ed84 | 2014-04-27 05:07:35 +0000 | [diff] [blame] | 42 | #define TIAO_TUMPA_LITE_PID 0x8a99 |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 43 | #define AMONTEC_JTAGKEY_PID 0xCFF8 |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 44 | |
Samir Ibradžić | 7189a5f | 2011-10-20 23:14:10 +0000 | [diff] [blame] | 45 | #define GOEPEL_VID 0x096C |
| 46 | #define GOEPEL_PICOTAP_PID 0x1449 |
| 47 | |
Alex Badea | caf2d42 | 2010-11-10 03:26:57 +0000 | [diff] [blame] | 48 | #define FIC_VID 0x1457 |
| 49 | #define OPENMOKO_DBGBOARD_PID 0x5118 |
| 50 | |
Pete Batard | c020706 | 2011-06-11 12:21:37 +0000 | [diff] [blame] | 51 | #define OLIMEX_VID 0x15BA |
| 52 | #define OLIMEX_ARM_OCD_PID 0x0003 |
| 53 | #define OLIMEX_ARM_TINY_PID 0x0004 |
| 54 | #define OLIMEX_ARM_OCD_H_PID 0x002B |
| 55 | #define OLIMEX_ARM_TINY_H_PID 0x002A |
| 56 | |
Todd Broch | 6800c95 | 2016-02-14 15:46:00 +0000 | [diff] [blame] | 57 | #define GOOGLE_VID 0x18D1 |
| 58 | #define GOOGLE_SERVO_PID 0x5001 |
| 59 | #define GOOGLE_SERVO_V2_PID0 0x5002 |
| 60 | #define GOOGLE_SERVO_V2_PID1 0x5003 |
| 61 | |
Thomas Heijligen | cc853d8 | 2021-05-04 15:32:17 +0200 | [diff] [blame] | 62 | static const struct dev_entry devs_ft2232spi[] = { |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 63 | {FTDI_VID, FTDI_FT2232H_PID, OK, "FTDI", "FT2232H"}, |
| 64 | {FTDI_VID, FTDI_FT4232H_PID, OK, "FTDI", "FT4232H"}, |
Ilya A. Volynets-Evenbakh | 2c714ab | 2012-09-26 00:47:09 +0000 | [diff] [blame] | 65 | {FTDI_VID, FTDI_FT232H_PID, OK, "FTDI", "FT232H"}, |
Uwe Hermann | 836b26a | 2011-10-14 20:33:14 +0000 | [diff] [blame] | 66 | {FTDI_VID, TIAO_TUMPA_PID, OK, "TIAO", "USB Multi-Protocol Adapter"}, |
Stefan Tauner | b66ed84 | 2014-04-27 05:07:35 +0000 | [diff] [blame] | 67 | {FTDI_VID, TIAO_TUMPA_LITE_PID, OK, "TIAO", "USB Multi-Protocol Adapter Lite"}, |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 68 | {FTDI_VID, AMONTEC_JTAGKEY_PID, OK, "Amontec", "JTAGkey"}, |
Samir Ibradžić | 7189a5f | 2011-10-20 23:14:10 +0000 | [diff] [blame] | 69 | {GOEPEL_VID, GOEPEL_PICOTAP_PID, OK, "GOEPEL", "PicoTAP"}, |
Todd Broch | 6800c95 | 2016-02-14 15:46:00 +0000 | [diff] [blame] | 70 | {GOOGLE_VID, GOOGLE_SERVO_PID, OK, "Google", "Servo"}, |
| 71 | {GOOGLE_VID, GOOGLE_SERVO_V2_PID0, OK, "Google", "Servo V2 Legacy"}, |
| 72 | {GOOGLE_VID, GOOGLE_SERVO_V2_PID1, OK, "Google", "Servo V2"}, |
Stefan Tauner | 3e515e2 | 2012-09-26 00:48:16 +0000 | [diff] [blame] | 73 | {FIC_VID, OPENMOKO_DBGBOARD_PID, OK, "FIC", "OpenMoko Neo1973 Debug board (V2+)"}, |
Stefan Tauner | 74dc73f | 2015-03-01 22:04:38 +0000 | [diff] [blame] | 74 | {OLIMEX_VID, OLIMEX_ARM_OCD_PID, OK, "Olimex", "ARM-USB-OCD"}, |
Pete Batard | c020706 | 2011-06-11 12:21:37 +0000 | [diff] [blame] | 75 | {OLIMEX_VID, OLIMEX_ARM_TINY_PID, OK, "Olimex", "ARM-USB-TINY"}, |
Stefan Tauner | 6697f71 | 2014-08-06 15:09:15 +0000 | [diff] [blame] | 76 | {OLIMEX_VID, OLIMEX_ARM_OCD_H_PID, OK, "Olimex", "ARM-USB-OCD-H"}, |
Stefan Tauner | c2eec2c | 2014-05-03 21:33:01 +0000 | [diff] [blame] | 77 | {OLIMEX_VID, OLIMEX_ARM_TINY_H_PID, OK, "Olimex", "ARM-USB-TINY-H"}, |
Carl-Daniel Hailfinger | 1c6d2ff | 2012-08-27 00:44:42 +0000 | [diff] [blame] | 78 | |
| 79 | {0}, |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 80 | }; |
| 81 | |
Simon Buhrow | db9be31 | 2021-04-09 14:48:39 +0200 | [diff] [blame] | 82 | #define FTDI_HW_BUFFER_SIZE 4096 /* in bytes */ |
| 83 | |
Samir Ibradžić | b482c6d | 2012-05-15 22:58:19 +0000 | [diff] [blame] | 84 | #define DEFAULT_DIVISOR 2 |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 85 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 86 | #define BITMODE_BITBANG_NORMAL 1 |
| 87 | #define BITMODE_BITBANG_SPI 2 |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 88 | |
Antony Pavlov | b4dd40c | 2015-01-25 03:52:47 +0000 | [diff] [blame] | 89 | /* The variables cs_bits and pindir store the values for the "set data bits low byte" MPSSE command that |
| 90 | * sets the initial state and the direction of the I/O pins. The pin offsets are as follows: |
| 91 | * SCK is bit 0. |
| 92 | * DO is bit 1. |
| 93 | * DI is bit 2. |
| 94 | * CS is bit 3. |
| 95 | * |
Anastasia Klimchuk | e8106ba | 2021-04-12 10:05:57 +1000 | [diff] [blame] | 96 | * The default values (set below in ft2232_spi_init) are used for most devices: |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 97 | * value: 0x08 CS=high, DI=low, DO=low, SK=low |
| 98 | * dir: 0x0b CS=output, DI=input, DO=output, SK=output |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 99 | */ |
Anastasia Klimchuk | e8106ba | 2021-04-12 10:05:57 +1000 | [diff] [blame] | 100 | struct ft2232_data { |
| 101 | uint8_t cs_bits; |
| 102 | uint8_t pindir; |
| 103 | struct ftdi_context ftdi_context; |
| 104 | }; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 105 | |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 106 | static const char *get_ft2232_devicename(int ft2232_vid, int ft2232_type) |
| 107 | { |
| 108 | int i; |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 109 | for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) { |
Stefan Tauner | 3e515e2 | 2012-09-26 00:48:16 +0000 | [diff] [blame] | 110 | if ((devs_ft2232spi[i].device_id == ft2232_type) && (devs_ft2232spi[i].vendor_id == ft2232_vid)) |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 111 | return devs_ft2232spi[i].device_name; |
| 112 | } |
| 113 | return "unknown device"; |
| 114 | } |
| 115 | |
| 116 | static const char *get_ft2232_vendorname(int ft2232_vid, int ft2232_type) |
| 117 | { |
| 118 | int i; |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 119 | for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) { |
Stefan Tauner | 3e515e2 | 2012-09-26 00:48:16 +0000 | [diff] [blame] | 120 | if ((devs_ft2232spi[i].device_id == ft2232_type) && (devs_ft2232spi[i].vendor_id == ft2232_vid)) |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 121 | return devs_ft2232spi[i].vendor_name; |
| 122 | } |
| 123 | return "unknown vendor"; |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 124 | } |
| 125 | |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 126 | static int send_buf(struct ftdi_context *ftdic, const unsigned char *buf, |
| 127 | int size) |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 128 | { |
| 129 | int r; |
| 130 | r = ftdi_write_data(ftdic, (unsigned char *) buf, size); |
| 131 | if (r < 0) { |
Stefan Tauner | 3e515e2 | 2012-09-26 00:48:16 +0000 | [diff] [blame] | 132 | msg_perr("ftdi_write_data: %d, %s\n", r, ftdi_get_error_string(ftdic)); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 133 | return 1; |
| 134 | } |
| 135 | return 0; |
| 136 | } |
| 137 | |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 138 | static int get_buf(struct ftdi_context *ftdic, const unsigned char *buf, |
| 139 | int size) |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 140 | { |
| 141 | int r; |
Alex Badea | b9556e0 | 2010-11-10 03:10:41 +0000 | [diff] [blame] | 142 | |
| 143 | while (size > 0) { |
| 144 | r = ftdi_read_data(ftdic, (unsigned char *) buf, size); |
| 145 | if (r < 0) { |
Stefan Tauner | 3e515e2 | 2012-09-26 00:48:16 +0000 | [diff] [blame] | 146 | msg_perr("ftdi_read_data: %d, %s\n", r, ftdi_get_error_string(ftdic)); |
Alex Badea | b9556e0 | 2010-11-10 03:10:41 +0000 | [diff] [blame] | 147 | return 1; |
| 148 | } |
| 149 | buf += r; |
| 150 | size -= r; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 151 | } |
| 152 | return 0; |
| 153 | } |
| 154 | |
Alan Green | 460c1c0 | 2021-01-08 09:36:45 +1100 | [diff] [blame] | 155 | static int ft2232_shutdown(void *data) |
| 156 | { |
| 157 | int f; |
Anastasia Klimchuk | e8106ba | 2021-04-12 10:05:57 +1000 | [diff] [blame] | 158 | struct ft2232_data *spi_data = (struct ft2232_data *)data; |
| 159 | struct ftdi_context *ftdic = &spi_data->ftdi_context; |
Alan Green | 460c1c0 | 2021-01-08 09:36:45 +1100 | [diff] [blame] | 160 | unsigned char buf[3]; |
| 161 | |
| 162 | msg_pdbg("Releasing I/Os\n"); |
| 163 | buf[0] = SET_BITS_LOW; |
| 164 | buf[1] = 0; /* Output byte ignored */ |
| 165 | buf[2] = 0; /* Pin direction: all inputs */ |
| 166 | if (send_buf(ftdic, buf, 3)) { |
| 167 | msg_perr("Unable to set pins back inputs: (%s)\n", |
| 168 | ftdi_get_error_string(ftdic)); |
| 169 | } |
| 170 | |
| 171 | if ((f = ftdi_usb_close(ftdic)) < 0) { |
| 172 | msg_perr("Unable to close FTDI device: %d (%s)\n", f, |
| 173 | ftdi_get_error_string(ftdic)); |
| 174 | return f; |
| 175 | } |
| 176 | |
Anastasia Klimchuk | e8106ba | 2021-04-12 10:05:57 +1000 | [diff] [blame] | 177 | free(spi_data); |
Alan Green | 460c1c0 | 2021-01-08 09:36:45 +1100 | [diff] [blame] | 178 | return 0; |
| 179 | } |
| 180 | |
Simon Buhrow | db9be31 | 2021-04-09 14:48:39 +0200 | [diff] [blame] | 181 | static bool ft2232_spi_command_fits(const struct spi_command *cmd, size_t buffer_size) |
| 182 | { |
| 183 | const size_t cmd_len = 3; /* same length for any ft2232 command */ |
| 184 | return |
| 185 | /* commands for CS# assertion and de-assertion: */ |
| 186 | cmd_len + cmd_len |
| 187 | /* commands for either a write, a read or both: */ |
| 188 | + (cmd->writecnt && cmd->readcnt ? cmd_len + cmd_len : cmd_len) |
| 189 | /* payload (only writecnt; readcnt concerns another buffer): */ |
| 190 | + cmd->writecnt |
| 191 | <= buffer_size; |
| 192 | } |
| 193 | |
| 194 | /* Returns 0 upon success, a negative number upon errors. */ |
| 195 | static int ft2232_spi_send_multicommand(const struct flashctx *flash, struct spi_command *cmds) |
| 196 | { |
| 197 | struct ft2232_data *spi_data = flash->mst->spi.data; |
| 198 | struct ftdi_context *ftdic = &spi_data->ftdi_context; |
| 199 | static unsigned char buf[FTDI_HW_BUFFER_SIZE]; |
| 200 | size_t i = 0; |
| 201 | int ret = 0; |
| 202 | |
| 203 | /* |
| 204 | * Minimize FTDI-calls by packing as many commands as possible together. |
| 205 | */ |
| 206 | for (; cmds->writecnt || cmds->readcnt; cmds++) { |
| 207 | |
| 208 | if (cmds->writecnt > 65536 || cmds->readcnt > 65536) |
| 209 | return SPI_INVALID_LENGTH; |
| 210 | |
| 211 | if (!ft2232_spi_command_fits(cmds, FTDI_HW_BUFFER_SIZE - i)) { |
| 212 | msg_perr("Command does not fit\n"); |
| 213 | return SPI_GENERIC_ERROR; |
| 214 | } |
| 215 | |
| 216 | msg_pspew("Assert CS#\n"); |
| 217 | buf[i++] = SET_BITS_LOW; |
| 218 | buf[i++] = 0 & ~spi_data->cs_bits; /* assertive */ |
| 219 | buf[i++] = spi_data->pindir; |
| 220 | |
| 221 | /* WREN, OP(PROGRAM, ERASE), ADDR, DATA */ |
| 222 | if (cmds->writecnt) { |
| 223 | buf[i++] = MPSSE_DO_WRITE | MPSSE_WRITE_NEG; |
| 224 | buf[i++] = (cmds->writecnt - 1) & 0xff; |
| 225 | buf[i++] = ((cmds->writecnt - 1) >> 8) & 0xff; |
| 226 | memcpy(buf + i, cmds->writearr, cmds->writecnt); |
| 227 | i += cmds->writecnt; |
| 228 | } |
| 229 | |
| 230 | /* An optional read command */ |
| 231 | if (cmds->readcnt) { |
| 232 | buf[i++] = MPSSE_DO_READ; |
| 233 | buf[i++] = (cmds->readcnt - 1) & 0xff; |
| 234 | buf[i++] = ((cmds->readcnt - 1) >> 8) & 0xff; |
| 235 | } |
| 236 | |
| 237 | /* Add final de-assert CS# */ |
| 238 | msg_pspew("De-assert CS#\n"); |
| 239 | buf[i++] = SET_BITS_LOW; |
| 240 | buf[i++] = spi_data->cs_bits; |
| 241 | buf[i++] = spi_data->pindir; |
| 242 | |
| 243 | /* continue if there is no read-cmd and further cmds exist */ |
| 244 | if (!cmds->readcnt && |
| 245 | ((cmds + 1)->writecnt || (cmds + 1)->readcnt) && |
| 246 | ft2232_spi_command_fits((cmds + 1), FTDI_HW_BUFFER_SIZE - i)) { |
| 247 | continue; |
| 248 | } |
| 249 | |
| 250 | ret = send_buf(ftdic, buf, i); |
| 251 | i = 0; |
| 252 | if (ret) { |
| 253 | msg_perr("send_buf failed: %i\n", ret); |
| 254 | break; |
| 255 | } |
| 256 | |
| 257 | if (cmds->readcnt) { |
| 258 | ret = get_buf(ftdic, cmds->readarr, cmds->readcnt); |
| 259 | if (ret) { |
| 260 | msg_perr("get_buf failed: %i\n", ret); |
| 261 | break; |
| 262 | } |
| 263 | } |
| 264 | } |
| 265 | return ret ? -1 : 0; |
| 266 | } |
| 267 | |
Anastasia Klimchuk | e8106ba | 2021-04-12 10:05:57 +1000 | [diff] [blame] | 268 | static struct spi_master spi_master_ft2232 = { |
Nico Huber | 1cf407b | 2017-11-10 20:18:23 +0100 | [diff] [blame] | 269 | .features = SPI_MASTER_4BA, |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 270 | .max_data_read = 64 * 1024, |
| 271 | .max_data_write = 256, |
Nico Huber | 13b33bc | 2021-06-20 13:20:33 +0200 | [diff] [blame^] | 272 | .command = default_spi_send_command, |
Simon Buhrow | db9be31 | 2021-04-09 14:48:39 +0200 | [diff] [blame] | 273 | .multicommand = ft2232_spi_send_multicommand, |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 274 | .read = default_spi_read, |
| 275 | .write_256 = default_spi_write_256, |
Nico Huber | 7bca126 | 2012-06-15 22:28:12 +0000 | [diff] [blame] | 276 | .write_aai = default_spi_write_aai, |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 277 | }; |
| 278 | |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 279 | /* Returns 0 upon success, a negative number upon errors. */ |
Thomas Heijligen | cc853d8 | 2021-05-04 15:32:17 +0200 | [diff] [blame] | 280 | static int ft2232_spi_init(void) |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 281 | { |
Anastasia Klimchuk | e8106ba | 2021-04-12 10:05:57 +1000 | [diff] [blame] | 282 | int ret; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 283 | unsigned char buf[512]; |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 284 | int ft2232_vid = FTDI_VID; |
| 285 | int ft2232_type = FTDI_FT4232H_PID; |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 286 | int channel_count = 4; /* Stores the number of channels of the device. */ |
| 287 | enum ftdi_interface ft2232_interface = INTERFACE_A; |
Samir Ibradžić | b482c6d | 2012-05-15 22:58:19 +0000 | [diff] [blame] | 288 | /* |
| 289 | * The 'H' chips can run with an internal clock of either 12 MHz or 60 MHz, |
| 290 | * but the non-H chips can only run at 12 MHz. We enable the divide-by-5 |
| 291 | * prescaler on the former to run on the same speed. |
| 292 | */ |
| 293 | uint8_t clock_5x = 1; |
| 294 | /* In addition to the prescaler mentioned above there is also another |
| 295 | * configurable one on all versions of the chips. Its divisor div can be |
| 296 | * set by a 16 bit value x according to the following formula: |
| 297 | * div = (1 + x) * 2 <-> x = div / 2 - 1 |
| 298 | * Hence the expressible divisors are all even numbers between 2 and |
| 299 | * 2^17 (=131072) resulting in SCK frequencies of 6 MHz down to about |
| 300 | * 92 Hz for 12 MHz inputs. |
| 301 | */ |
| 302 | uint32_t divisor = DEFAULT_DIVISOR; |
| 303 | int f; |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 304 | char *arg; |
Alex Badea | 0b94d05 | 2010-11-10 03:18:41 +0000 | [diff] [blame] | 305 | double mpsse_clk; |
Anastasia Klimchuk | e8106ba | 2021-04-12 10:05:57 +1000 | [diff] [blame] | 306 | uint8_t cs_bits = 0x08; |
| 307 | uint8_t pindir = 0x0b; |
| 308 | |
| 309 | struct ft2232_data *const spi_data = calloc(1, sizeof(*spi_data)); |
| 310 | if (!spi_data) { |
| 311 | msg_perr("Unable to allocate space for SPI master data\n"); |
| 312 | return SPI_GENERIC_ERROR; |
| 313 | } |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 314 | |
Carl-Daniel Hailfinger | 2b6dcb3 | 2010-07-08 10:13:37 +0000 | [diff] [blame] | 315 | arg = extract_programmer_param("type"); |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 316 | if (arg) { |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 317 | if (!strcasecmp(arg, "2232H")) { |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 318 | ft2232_type = FTDI_FT2232H_PID; |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 319 | channel_count = 2; |
| 320 | } else if (!strcasecmp(arg, "4232H")) { |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 321 | ft2232_type = FTDI_FT4232H_PID; |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 322 | channel_count = 4; |
Ilya A. Volynets-Evenbakh | 2c714ab | 2012-09-26 00:47:09 +0000 | [diff] [blame] | 323 | } else if (!strcasecmp(arg, "232H")) { |
| 324 | ft2232_type = FTDI_FT232H_PID; |
| 325 | channel_count = 1; |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 326 | } else if (!strcasecmp(arg, "jtagkey")) { |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 327 | ft2232_type = AMONTEC_JTAGKEY_PID; |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 328 | channel_count = 2; |
Antony Pavlov | b4dd40c | 2015-01-25 03:52:47 +0000 | [diff] [blame] | 329 | /* JTAGkey(2) needs to enable its output via Bit4 / GPIOL0 |
| 330 | * value: 0x18 OE=high, CS=high, DI=low, DO=low, SK=low |
| 331 | * 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] | 332 | cs_bits = 0x18; |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 333 | pindir = 0x1b; |
Samir Ibradžić | 7189a5f | 2011-10-20 23:14:10 +0000 | [diff] [blame] | 334 | } else if (!strcasecmp(arg, "picotap")) { |
| 335 | ft2232_vid = GOEPEL_VID; |
| 336 | ft2232_type = GOEPEL_PICOTAP_PID; |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 337 | channel_count = 2; |
Uwe Hermann | 836b26a | 2011-10-14 20:33:14 +0000 | [diff] [blame] | 338 | } else if (!strcasecmp(arg, "tumpa")) { |
| 339 | /* Interface A is SPI1, B is SPI2. */ |
| 340 | ft2232_type = TIAO_TUMPA_PID; |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 341 | channel_count = 2; |
Stefan Tauner | b66ed84 | 2014-04-27 05:07:35 +0000 | [diff] [blame] | 342 | } else if (!strcasecmp(arg, "tumpalite")) { |
| 343 | /* Only one channel is used on lite edition */ |
| 344 | ft2232_type = TIAO_TUMPA_LITE_PID; |
| 345 | channel_count = 1; |
Steve Markgraf | 0528b7f | 2011-08-12 01:19:32 +0000 | [diff] [blame] | 346 | } else if (!strcasecmp(arg, "busblaster")) { |
| 347 | /* In its default configuration it is a jtagkey clone */ |
| 348 | ft2232_type = FTDI_FT2232H_PID; |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 349 | channel_count = 2; |
Steve Markgraf | 0528b7f | 2011-08-12 01:19:32 +0000 | [diff] [blame] | 350 | cs_bits = 0x18; |
| 351 | pindir = 0x1b; |
Alex Badea | caf2d42 | 2010-11-10 03:26:57 +0000 | [diff] [blame] | 352 | } else if (!strcasecmp(arg, "openmoko")) { |
| 353 | ft2232_vid = FIC_VID; |
| 354 | ft2232_type = OPENMOKO_DBGBOARD_PID; |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 355 | channel_count = 2; |
Pete Batard | c020706 | 2011-06-11 12:21:37 +0000 | [diff] [blame] | 356 | } else if (!strcasecmp(arg, "arm-usb-ocd")) { |
| 357 | ft2232_vid = OLIMEX_VID; |
| 358 | ft2232_type = OLIMEX_ARM_OCD_PID; |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 359 | channel_count = 2; |
Antony Pavlov | b4dd40c | 2015-01-25 03:52:47 +0000 | [diff] [blame] | 360 | /* arm-usb-ocd(-h) has an output buffer that needs to be enabled by pulling ADBUS4 low. |
| 361 | * value: 0x08 #OE=low, CS=high, DI=low, DO=low, SK=low |
| 362 | * dir: 0x1b #OE=output, CS=output, DI=input, DO=output, SK=output */ |
Paul Fertser | 3cf335e | 2011-12-20 02:08:14 +0000 | [diff] [blame] | 363 | cs_bits = 0x08; |
| 364 | pindir = 0x1b; |
Pete Batard | c020706 | 2011-06-11 12:21:37 +0000 | [diff] [blame] | 365 | } else if (!strcasecmp(arg, "arm-usb-tiny")) { |
| 366 | ft2232_vid = OLIMEX_VID; |
| 367 | ft2232_type = OLIMEX_ARM_TINY_PID; |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 368 | channel_count = 2; |
Pete Batard | c020706 | 2011-06-11 12:21:37 +0000 | [diff] [blame] | 369 | } else if (!strcasecmp(arg, "arm-usb-ocd-h")) { |
| 370 | ft2232_vid = OLIMEX_VID; |
| 371 | ft2232_type = OLIMEX_ARM_OCD_H_PID; |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 372 | channel_count = 2; |
Antony Pavlov | b4dd40c | 2015-01-25 03:52:47 +0000 | [diff] [blame] | 373 | /* See arm-usb-ocd */ |
Paul Fertser | 3cf335e | 2011-12-20 02:08:14 +0000 | [diff] [blame] | 374 | cs_bits = 0x08; |
| 375 | pindir = 0x1b; |
Pete Batard | c020706 | 2011-06-11 12:21:37 +0000 | [diff] [blame] | 376 | } else if (!strcasecmp(arg, "arm-usb-tiny-h")) { |
| 377 | ft2232_vid = OLIMEX_VID; |
| 378 | ft2232_type = OLIMEX_ARM_TINY_H_PID; |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 379 | channel_count = 2; |
Todd Broch | 6800c95 | 2016-02-14 15:46:00 +0000 | [diff] [blame] | 380 | } else if (!strcasecmp(arg, "google-servo")) { |
| 381 | ft2232_vid = GOOGLE_VID; |
| 382 | ft2232_type = GOOGLE_SERVO_PID; |
| 383 | } else if (!strcasecmp(arg, "google-servo-v2")) { |
| 384 | ft2232_vid = GOOGLE_VID; |
| 385 | ft2232_type = GOOGLE_SERVO_V2_PID1; |
| 386 | /* Default divisor is too fast, and chip ID fails */ |
| 387 | divisor = 6; |
| 388 | } else if (!strcasecmp(arg, "google-servo-v2-legacy")) { |
| 389 | ft2232_vid = GOOGLE_VID; |
| 390 | ft2232_type = GOOGLE_SERVO_V2_PID0; |
Russ Dill | 7bd31a4 | 2019-10-30 00:40:43 -0700 | [diff] [blame] | 391 | } else if (!strcasecmp(arg, "flyswatter")) { |
| 392 | ft2232_type = FTDI_FT2232H_PID; |
| 393 | channel_count = 2; |
| 394 | /* Flyswatter and Flyswatter-2 require GPIO bits 0x80 |
| 395 | * and 0x40 to be driven low to enable output buffers */ |
| 396 | pindir = 0xcb; |
Alex Badea | caf2d42 | 2010-11-10 03:26:57 +0000 | [diff] [blame] | 397 | } else { |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 398 | msg_perr("Error: Invalid device type specified.\n"); |
| 399 | free(arg); |
Anastasia Klimchuk | e8106ba | 2021-04-12 10:05:57 +1000 | [diff] [blame] | 400 | ret = -1; |
| 401 | goto init_err; |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 402 | } |
| 403 | } |
| 404 | free(arg); |
Stefan Tauner | 3e515e2 | 2012-09-26 00:48:16 +0000 | [diff] [blame] | 405 | |
Carl-Daniel Hailfinger | 2b6dcb3 | 2010-07-08 10:13:37 +0000 | [diff] [blame] | 406 | arg = extract_programmer_param("port"); |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 407 | if (arg) { |
Carl-Daniel Hailfinger | 9e3a6c4 | 2010-10-08 12:40:09 +0000 | [diff] [blame] | 408 | switch (toupper((unsigned char)*arg)) { |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 409 | case 'A': |
| 410 | ft2232_interface = INTERFACE_A; |
| 411 | break; |
| 412 | case 'B': |
| 413 | ft2232_interface = INTERFACE_B; |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 414 | if (channel_count < 2) |
| 415 | channel_count = -1; |
| 416 | break; |
| 417 | case 'C': |
| 418 | ft2232_interface = INTERFACE_C; |
| 419 | if (channel_count < 3) |
| 420 | channel_count = -1; |
| 421 | break; |
| 422 | case 'D': |
| 423 | ft2232_interface = INTERFACE_D; |
| 424 | if (channel_count < 4) |
| 425 | channel_count = -1; |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 426 | break; |
| 427 | default: |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 428 | channel_count = -1; |
| 429 | break; |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 430 | } |
Stefan Tauner | d7d423b | 2012-10-20 09:13:16 +0000 | [diff] [blame] | 431 | if (channel_count < 0 || strlen(arg) != 1) { |
| 432 | msg_perr("Error: Invalid channel/port/interface specified: \"%s\".\n", arg); |
| 433 | free(arg); |
Anastasia Klimchuk | e8106ba | 2021-04-12 10:05:57 +1000 | [diff] [blame] | 434 | ret = -2; |
| 435 | goto init_err; |
Stefan Tauner | d7d423b | 2012-10-20 09:13:16 +0000 | [diff] [blame] | 436 | } |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 437 | } |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 438 | free(arg); |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 439 | |
Samir Ibradžić | b482c6d | 2012-05-15 22:58:19 +0000 | [diff] [blame] | 440 | arg = extract_programmer_param("divisor"); |
| 441 | if (arg && strlen(arg)) { |
| 442 | unsigned int temp = 0; |
| 443 | char *endptr; |
| 444 | temp = strtoul(arg, &endptr, 10); |
| 445 | if (*endptr || temp < 2 || temp > 131072 || temp & 0x1) { |
| 446 | msg_perr("Error: Invalid SPI frequency divisor specified: \"%s\".\n" |
| 447 | "Valid are even values between 2 and 131072.\n", arg); |
| 448 | free(arg); |
Anastasia Klimchuk | e8106ba | 2021-04-12 10:05:57 +1000 | [diff] [blame] | 449 | ret = -2; |
| 450 | goto init_err; |
Samir Ibradžić | b482c6d | 2012-05-15 22:58:19 +0000 | [diff] [blame] | 451 | } |
Elyes HAOUAS | 712ba3a | 2019-06-09 17:11:49 +0200 | [diff] [blame] | 452 | divisor = (uint32_t)temp; |
Samir Ibradžić | b482c6d | 2012-05-15 22:58:19 +0000 | [diff] [blame] | 453 | } |
| 454 | free(arg); |
Stefan Tauner | 3e515e2 | 2012-09-26 00:48:16 +0000 | [diff] [blame] | 455 | |
Sergey Alirzaev | 4acc3f3 | 2018-08-01 16:39:17 +0300 | [diff] [blame] | 456 | arg = extract_programmer_param("csgpiol"); |
| 457 | if (arg) { |
| 458 | char *endptr; |
| 459 | unsigned int temp = strtoul(arg, &endptr, 10); |
| 460 | if (*endptr || endptr == arg || temp > 3) { |
| 461 | msg_perr("Error: Invalid GPIOL specified: \"%s\".\n" |
| 462 | "Valid values are between 0 and 3.\n", arg); |
| 463 | free(arg); |
Anastasia Klimchuk | e8106ba | 2021-04-12 10:05:57 +1000 | [diff] [blame] | 464 | ret = -2; |
| 465 | goto init_err; |
Sergey Alirzaev | 4acc3f3 | 2018-08-01 16:39:17 +0300 | [diff] [blame] | 466 | } |
Elyes HAOUAS | 712ba3a | 2019-06-09 17:11:49 +0200 | [diff] [blame] | 467 | unsigned int pin = temp + 4; |
| 468 | cs_bits |= 1 << pin; |
| 469 | pindir |= 1 << pin; |
Sergey Alirzaev | 4acc3f3 | 2018-08-01 16:39:17 +0300 | [diff] [blame] | 470 | } |
| 471 | free(arg); |
| 472 | |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 473 | msg_pdbg("Using device type %s %s ", |
Uwe Hermann | 7014529 | 2010-07-29 19:57:55 +0000 | [diff] [blame] | 474 | get_ft2232_vendorname(ft2232_vid, ft2232_type), |
| 475 | get_ft2232_devicename(ft2232_vid, ft2232_type)); |
Stefan Tauner | 3e515e2 | 2012-09-26 00:48:16 +0000 | [diff] [blame] | 476 | msg_pdbg("channel %s.\n", |
Stefan Tauner | fbc71ac | 2012-09-26 00:46:02 +0000 | [diff] [blame] | 477 | (ft2232_interface == INTERFACE_A) ? "A" : |
| 478 | (ft2232_interface == INTERFACE_B) ? "B" : |
| 479 | (ft2232_interface == INTERFACE_C) ? "C" : "D"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 480 | |
Anastasia Klimchuk | e8106ba | 2021-04-12 10:05:57 +1000 | [diff] [blame] | 481 | struct ftdi_context *const ftdic = &spi_data->ftdi_context; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 482 | if (ftdi_init(ftdic) < 0) { |
Stefan Tauner | 3e515e2 | 2012-09-26 00:48:16 +0000 | [diff] [blame] | 483 | msg_perr("ftdi_init failed.\n"); |
Anastasia Klimchuk | e8106ba | 2021-04-12 10:05:57 +1000 | [diff] [blame] | 484 | ret = -3; |
| 485 | goto init_err; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 486 | } |
| 487 | |
Ilya A. Volynets-Evenbakh | 7c36d52 | 2012-08-14 01:32:46 +0000 | [diff] [blame] | 488 | if (ftdi_set_interface(ftdic, ft2232_interface) < 0) { |
Stefan Tauner | 3e515e2 | 2012-09-26 00:48:16 +0000 | [diff] [blame] | 489 | msg_perr("Unable to select channel (%s).\n", ftdi_get_error_string(ftdic)); |
Ilya A. Volynets-Evenbakh | 7c36d52 | 2012-08-14 01:32:46 +0000 | [diff] [blame] | 490 | } |
| 491 | |
Shik Chen | 14fbc4b | 2012-09-17 00:40:54 +0000 | [diff] [blame] | 492 | arg = extract_programmer_param("serial"); |
| 493 | f = ftdi_usb_open_desc(ftdic, ft2232_vid, ft2232_type, NULL, arg); |
| 494 | free(arg); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 495 | |
| 496 | if (f < 0 && f != -5) { |
Stefan Tauner | 3e515e2 | 2012-09-26 00:48:16 +0000 | [diff] [blame] | 497 | msg_perr("Unable to open FTDI device: %d (%s).\n", f, ftdi_get_error_string(ftdic)); |
Anastasia Klimchuk | e8106ba | 2021-04-12 10:05:57 +1000 | [diff] [blame] | 498 | ret = -4; |
| 499 | goto init_err; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 500 | } |
| 501 | |
Ilya A. Volynets-Evenbakh | 2c714ab | 2012-09-26 00:47:09 +0000 | [diff] [blame] | 502 | if (ftdic->type != TYPE_2232H && ftdic->type != TYPE_4232H && ftdic->type != TYPE_232H) { |
Stefan Tauner | 3e515e2 | 2012-09-26 00:48:16 +0000 | [diff] [blame] | 503 | msg_pdbg("FTDI chip type %d is not high-speed.\n", ftdic->type); |
Alex Badea | 0b94d05 | 2010-11-10 03:18:41 +0000 | [diff] [blame] | 504 | clock_5x = 0; |
| 505 | } |
| 506 | |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 507 | if (ftdi_usb_reset(ftdic) < 0) { |
Stefan Tauner | 3e515e2 | 2012-09-26 00:48:16 +0000 | [diff] [blame] | 508 | msg_perr("Unable to reset FTDI device (%s).\n", ftdi_get_error_string(ftdic)); |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 509 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 510 | |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 511 | if (ftdi_set_latency_timer(ftdic, 2) < 0) { |
Stefan Tauner | 3e515e2 | 2012-09-26 00:48:16 +0000 | [diff] [blame] | 512 | msg_perr("Unable to set latency timer (%s).\n", ftdi_get_error_string(ftdic)); |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 513 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 514 | |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 515 | if (ftdi_set_bitmode(ftdic, 0x00, BITMODE_BITBANG_SPI) < 0) { |
Stefan Tauner | 3e515e2 | 2012-09-26 00:48:16 +0000 | [diff] [blame] | 516 | msg_perr("Unable to set bitmode to SPI (%s).\n", ftdi_get_error_string(ftdic)); |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 517 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 518 | |
Alex Badea | 0b94d05 | 2010-11-10 03:18:41 +0000 | [diff] [blame] | 519 | if (clock_5x) { |
| 520 | msg_pdbg("Disable divide-by-5 front stage\n"); |
Stefan Tauner | 05151b6 | 2015-01-25 23:42:57 +0000 | [diff] [blame] | 521 | buf[0] = 0x8a; /* Disable divide-by-5. DIS_DIV_5 in newer libftdi */ |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 522 | if (send_buf(ftdic, buf, 1)) { |
| 523 | ret = -5; |
| 524 | goto ftdi_err; |
| 525 | } |
Alex Badea | 0b94d05 | 2010-11-10 03:18:41 +0000 | [diff] [blame] | 526 | mpsse_clk = 60.0; |
| 527 | } else { |
| 528 | mpsse_clk = 12.0; |
| 529 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 530 | |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 531 | msg_pdbg("Set clock divisor\n"); |
Antony Pavlov | b4dd40c | 2015-01-25 03:52:47 +0000 | [diff] [blame] | 532 | buf[0] = TCK_DIVISOR; |
Ilya A. Volynets-Evenbakh | 3464d05 | 2012-06-14 13:08:33 +0000 | [diff] [blame] | 533 | buf[1] = (divisor / 2 - 1) & 0xff; |
| 534 | buf[2] = ((divisor / 2 - 1) >> 8) & 0xff; |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 535 | if (send_buf(ftdic, buf, 3)) { |
| 536 | ret = -6; |
| 537 | goto ftdi_err; |
| 538 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 539 | |
Samir Ibradžić | b482c6d | 2012-05-15 22:58:19 +0000 | [diff] [blame] | 540 | msg_pdbg("MPSSE clock: %f MHz, divisor: %u, SPI clock: %f MHz\n", |
| 541 | mpsse_clk, divisor, (double)(mpsse_clk / divisor)); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 542 | |
Uwe Hermann | c67d037 | 2009-10-01 18:40:02 +0000 | [diff] [blame] | 543 | /* Disconnect TDI/DO to TDO/DI for loopback. */ |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 544 | msg_pdbg("No loopback of TDI/DO TDO/DI\n"); |
Antony Pavlov | b4dd40c | 2015-01-25 03:52:47 +0000 | [diff] [blame] | 545 | buf[0] = LOOPBACK_END; |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 546 | if (send_buf(ftdic, buf, 1)) { |
| 547 | ret = -7; |
| 548 | goto ftdi_err; |
| 549 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 550 | |
Sean Nelson | 34b5db7 | 2010-01-10 01:08:37 +0000 | [diff] [blame] | 551 | msg_pdbg("Set data bits\n"); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 552 | buf[0] = SET_BITS_LOW; |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 553 | buf[1] = cs_bits; |
| 554 | buf[2] = pindir; |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 555 | if (send_buf(ftdic, buf, 3)) { |
| 556 | ret = -8; |
| 557 | goto ftdi_err; |
| 558 | } |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 559 | |
Anastasia Klimchuk | e8106ba | 2021-04-12 10:05:57 +1000 | [diff] [blame] | 560 | spi_data->cs_bits = cs_bits; |
| 561 | spi_data->pindir = pindir; |
| 562 | spi_master_ft2232.data = spi_data; |
| 563 | |
| 564 | if (register_shutdown(ft2232_shutdown, spi_data)) { |
| 565 | ret = -9; |
| 566 | goto ftdi_err; |
| 567 | } |
Carl-Daniel Hailfinger | a5bcbce | 2014-07-19 22:03:29 +0000 | [diff] [blame] | 568 | register_spi_master(&spi_master_ft2232); |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 569 | |
| 570 | return 0; |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 571 | |
| 572 | ftdi_err: |
| 573 | if ((f = ftdi_usb_close(ftdic)) < 0) { |
Stefan Tauner | 3e515e2 | 2012-09-26 00:48:16 +0000 | [diff] [blame] | 574 | msg_perr("Unable to close FTDI device: %d (%s)\n", f, ftdi_get_error_string(ftdic)); |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 575 | } |
Anastasia Klimchuk | e8106ba | 2021-04-12 10:05:57 +1000 | [diff] [blame] | 576 | init_err: |
| 577 | free(spi_data); |
Uwe Hermann | 274a20d | 2011-07-21 09:18:18 +0000 | [diff] [blame] | 578 | return ret; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 579 | } |
| 580 | |
Thomas Heijligen | cc853d8 | 2021-05-04 15:32:17 +0200 | [diff] [blame] | 581 | const struct programmer_entry programmer_ft2232_spi = { |
| 582 | .name = "ft2232_spi", |
| 583 | .type = USB, |
| 584 | .devs.dev = devs_ft2232spi, |
| 585 | .init = ft2232_spi_init, |
| 586 | .map_flash_region = fallback_map, |
| 587 | .unmap_flash_region = fallback_unmap, |
| 588 | .delay = internal_delay, |
| 589 | }; |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 590 | #endif |