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