blob: 4f9fbebe02f7450088542ac295d2334f8f5c2411 [file] [log] [blame]
Paul Fox05dfbe62009-06-16 21:08:06 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2009 Paul Fox <pgf@laptop.org>
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +00005 * Copyright (C) 2009, 2010 Carl-Daniel Hailfinger
Paul Fox05dfbe62009-06-16 21:08:06 +00006 *
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 Fox05dfbe62009-06-16 21:08:06 +000015 */
16
Felix Singer7b83f3c2022-08-19 03:16:19 +020017#include <stdbool.h>
Paul Fox05dfbe62009-06-16 21:08:06 +000018#include <stdio.h>
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000019#include <strings.h>
Paul Fox05dfbe62009-06-16 21:08:06 +000020#include <string.h>
21#include <stdlib.h>
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +000022#include <ctype.h>
Paul Fox05dfbe62009-06-16 21:08:06 +000023#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000024#include "programmer.h"
Paul Fox05dfbe62009-06-16 21:08:06 +000025#include "spi.h"
Paul Fox05dfbe62009-06-16 21:08:06 +000026#include <ftdi.h>
27
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +000028/* This is not defined in libftdi.h <0.20 (c7e4c09e68cfa6f5e112334aa1b3bb23401c8dc7 to be exact).
Nico Huberc3b02dc2023-08-12 01:13:45 +020029 * Some tests indicate that this is the only change that it is needed to support the FT232H in flashprog. */
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +000030#if !defined(HAVE_FT232H)
31#define TYPE_232H 6
32#endif
33
Uwe Hermann836b26a2011-10-14 20:33:14 +000034/* Please keep sorted by vendor ID, then device ID. */
35
Uwe Hermann70145292010-07-29 19:57:55 +000036#define FTDI_VID 0x0403
37#define FTDI_FT2232H_PID 0x6010
38#define FTDI_FT4232H_PID 0x6011
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +000039#define FTDI_FT232H_PID 0x6014
Charles Parent8efb0b32022-02-28 14:55:58 +010040#define FTDI_FT4233H_PID 0x6041
Uwe Hermann836b26a2011-10-14 20:33:14 +000041#define TIAO_TUMPA_PID 0x8a98
Stefan Taunerb66ed842014-04-27 05:07:35 +000042#define TIAO_TUMPA_LITE_PID 0x8a99
Jacek Naglak24e1bbb2022-05-18 02:25:13 +020043#define KT_LINK_PID 0xbbe2
Uwe Hermann70145292010-07-29 19:57:55 +000044#define AMONTEC_JTAGKEY_PID 0xCFF8
Jörg Fischer6529b9f2010-07-29 15:54:53 +000045
Samir Ibradžić7189a5f2011-10-20 23:14:10 +000046#define GOEPEL_VID 0x096C
47#define GOEPEL_PICOTAP_PID 0x1449
48
Alex Badeacaf2d422010-11-10 03:26:57 +000049#define FIC_VID 0x1457
50#define OPENMOKO_DBGBOARD_PID 0x5118
51
Pete Batardc0207062011-06-11 12:21:37 +000052#define OLIMEX_VID 0x15BA
53#define OLIMEX_ARM_OCD_PID 0x0003
54#define OLIMEX_ARM_TINY_PID 0x0004
55#define OLIMEX_ARM_OCD_H_PID 0x002B
56#define OLIMEX_ARM_TINY_H_PID 0x002A
57
Todd Broch6800c952016-02-14 15:46:00 +000058#define GOOGLE_VID 0x18D1
59#define GOOGLE_SERVO_PID 0x5001
60#define GOOGLE_SERVO_V2_PID0 0x5002
61#define GOOGLE_SERVO_V2_PID1 0x5003
62
Thomas Heijligencc853d82021-05-04 15:32:17 +020063static const struct dev_entry devs_ft2232spi[] = {
Uwe Hermann70145292010-07-29 19:57:55 +000064 {FTDI_VID, FTDI_FT2232H_PID, OK, "FTDI", "FT2232H"},
65 {FTDI_VID, FTDI_FT4232H_PID, OK, "FTDI", "FT4232H"},
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +000066 {FTDI_VID, FTDI_FT232H_PID, OK, "FTDI", "FT232H"},
Charles Parent8efb0b32022-02-28 14:55:58 +010067 {FTDI_VID, FTDI_FT4233H_PID, OK, "FTDI", "FT4233H"},
Uwe Hermann836b26a2011-10-14 20:33:14 +000068 {FTDI_VID, TIAO_TUMPA_PID, OK, "TIAO", "USB Multi-Protocol Adapter"},
Stefan Taunerb66ed842014-04-27 05:07:35 +000069 {FTDI_VID, TIAO_TUMPA_LITE_PID, OK, "TIAO", "USB Multi-Protocol Adapter Lite"},
Jacek Naglak24e1bbb2022-05-18 02:25:13 +020070 {FTDI_VID, KT_LINK_PID, OK, "Kristech", "KT-LINK"},
Uwe Hermann70145292010-07-29 19:57:55 +000071 {FTDI_VID, AMONTEC_JTAGKEY_PID, OK, "Amontec", "JTAGkey"},
Samir Ibradžić7189a5f2011-10-20 23:14:10 +000072 {GOEPEL_VID, GOEPEL_PICOTAP_PID, OK, "GOEPEL", "PicoTAP"},
Todd Broch6800c952016-02-14 15:46:00 +000073 {GOOGLE_VID, GOOGLE_SERVO_PID, OK, "Google", "Servo"},
74 {GOOGLE_VID, GOOGLE_SERVO_V2_PID0, OK, "Google", "Servo V2 Legacy"},
75 {GOOGLE_VID, GOOGLE_SERVO_V2_PID1, OK, "Google", "Servo V2"},
Stefan Tauner3e515e22012-09-26 00:48:16 +000076 {FIC_VID, OPENMOKO_DBGBOARD_PID, OK, "FIC", "OpenMoko Neo1973 Debug board (V2+)"},
Stefan Tauner74dc73f2015-03-01 22:04:38 +000077 {OLIMEX_VID, OLIMEX_ARM_OCD_PID, OK, "Olimex", "ARM-USB-OCD"},
Pete Batardc0207062011-06-11 12:21:37 +000078 {OLIMEX_VID, OLIMEX_ARM_TINY_PID, OK, "Olimex", "ARM-USB-TINY"},
Stefan Tauner6697f712014-08-06 15:09:15 +000079 {OLIMEX_VID, OLIMEX_ARM_OCD_H_PID, OK, "Olimex", "ARM-USB-OCD-H"},
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000080 {OLIMEX_VID, OLIMEX_ARM_TINY_H_PID, OK, "Olimex", "ARM-USB-TINY-H"},
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000081
82 {0},
Jörg Fischer6529b9f2010-07-29 15:54:53 +000083};
84
Simon Buhrowdb9be312021-04-09 14:48:39 +020085#define FTDI_HW_BUFFER_SIZE 4096 /* in bytes */
86
Samir Ibradžićb482c6d2012-05-15 22:58:19 +000087#define DEFAULT_DIVISOR 2
Paul Fox05dfbe62009-06-16 21:08:06 +000088
Uwe Hermannc67d0372009-10-01 18:40:02 +000089#define BITMODE_BITBANG_NORMAL 1
90#define BITMODE_BITBANG_SPI 2
Paul Fox05dfbe62009-06-16 21:08:06 +000091
Nico Hubercf880682021-06-20 15:59:57 +020092/*
93 * The variables `cs_bits` and `pindir` store the values for the
94 * "set data bits low byte" MPSSE command that sets the initial
95 * state and the direction of the I/O pins. `cs_bits` pins default
96 * to high and will be toggled during SPI transactions. All other
Michael Niewöhnerc2b303b2021-09-21 18:03:29 +020097 * output pins will be kept low all the time. For some programmers,
98 * some reserved GPIOL* pins are used as outputs. Free GPIOL* pins
Michael Niewöhnerece63c82021-09-21 20:15:32 +020099 * are configured as inputs, while it's possible to use them either
100 * as generic gpios or as additional CS# signal(s) through the
101 * parameter(s) `gpiolX`. On exit, all pins will be reconfigured
102 * as inputs.
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000103 *
Nico Hubercf880682021-06-20 15:59:57 +0200104 * The pin offsets are as follows:
105 * TCK/SK is bit 0.
106 * TDI/DO is bit 1.
107 * TDO/DI is bit 2.
108 * TMS/CS is bit 3.
109 * GPIOL0 is bit 4.
110 * GPIOL1 is bit 5.
111 * GPIOL2 is bit 6.
112 * GPIOL3 is bit 7.
113 *
114 * The default values (set below in ft2232_spi_init) are used for
115 * most devices:
116 * value: 0x08 CS=high, DI=low, DO=low, SK=low
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000117 * dir: 0x0b CS=output, DI=input, DO=output, SK=output
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000118 */
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000119struct ft2232_data {
120 uint8_t cs_bits;
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200121 uint8_t aux_bits;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000122 uint8_t pindir;
123 struct ftdi_context ftdi_context;
124};
Paul Fox05dfbe62009-06-16 21:08:06 +0000125
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000126static const char *get_ft2232_devicename(int ft2232_vid, int ft2232_type)
127{
128 int i;
Uwe Hermann70145292010-07-29 19:57:55 +0000129 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000130 if ((devs_ft2232spi[i].device_id == ft2232_type) && (devs_ft2232spi[i].vendor_id == ft2232_vid))
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000131 return devs_ft2232spi[i].device_name;
132 }
133 return "unknown device";
134}
135
136static const char *get_ft2232_vendorname(int ft2232_vid, int ft2232_type)
137{
138 int i;
Uwe Hermann70145292010-07-29 19:57:55 +0000139 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000140 if ((devs_ft2232spi[i].device_id == ft2232_type) && (devs_ft2232spi[i].vendor_id == ft2232_vid))
Uwe Hermann70145292010-07-29 19:57:55 +0000141 return devs_ft2232spi[i].vendor_name;
142 }
143 return "unknown vendor";
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000144}
145
Uwe Hermann70145292010-07-29 19:57:55 +0000146static int send_buf(struct ftdi_context *ftdic, const unsigned char *buf,
147 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +0000148{
149 int r;
150 r = ftdi_write_data(ftdic, (unsigned char *) buf, size);
151 if (r < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000152 msg_perr("ftdi_write_data: %d, %s\n", r, ftdi_get_error_string(ftdic));
Paul Fox05dfbe62009-06-16 21:08:06 +0000153 return 1;
154 }
155 return 0;
156}
157
Uwe Hermann70145292010-07-29 19:57:55 +0000158static int get_buf(struct ftdi_context *ftdic, const unsigned char *buf,
159 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +0000160{
161 int r;
Alex Badeab9556e02010-11-10 03:10:41 +0000162
163 while (size > 0) {
164 r = ftdi_read_data(ftdic, (unsigned char *) buf, size);
165 if (r < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000166 msg_perr("ftdi_read_data: %d, %s\n", r, ftdi_get_error_string(ftdic));
Alex Badeab9556e02010-11-10 03:10:41 +0000167 return 1;
168 }
169 buf += r;
170 size -= r;
Paul Fox05dfbe62009-06-16 21:08:06 +0000171 }
172 return 0;
173}
174
Alan Green460c1c02021-01-08 09:36:45 +1100175static int ft2232_shutdown(void *data)
176{
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000177 struct ft2232_data *spi_data = (struct ft2232_data *)data;
178 struct ftdi_context *ftdic = &spi_data->ftdi_context;
Alan Green460c1c02021-01-08 09:36:45 +1100179 unsigned char buf[3];
Nico Huber4c40a792021-06-20 16:38:57 +0200180 int ret = 0;
Alan Green460c1c02021-01-08 09:36:45 +1100181
182 msg_pdbg("Releasing I/Os\n");
183 buf[0] = SET_BITS_LOW;
184 buf[1] = 0; /* Output byte ignored */
185 buf[2] = 0; /* Pin direction: all inputs */
186 if (send_buf(ftdic, buf, 3)) {
Nico Huberfda5f1f2021-06-20 16:46:31 +0200187 msg_perr("Unable to set pins back to inputs.\n");
Nico Huber4c40a792021-06-20 16:38:57 +0200188 ret = 1;
Alan Green460c1c02021-01-08 09:36:45 +1100189 }
190
Nico Huber4c40a792021-06-20 16:38:57 +0200191 const int close_ret = ftdi_usb_close(ftdic);
192 if (close_ret < 0) {
193 msg_perr("Unable to close FTDI device: %d (%s)\n", close_ret,
Alan Green460c1c02021-01-08 09:36:45 +1100194 ftdi_get_error_string(ftdic));
Nico Huber4c40a792021-06-20 16:38:57 +0200195 ret = 1;
Alan Green460c1c02021-01-08 09:36:45 +1100196 }
197
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000198 free(spi_data);
Nico Huber4c40a792021-06-20 16:38:57 +0200199 return ret;
Alan Green460c1c02021-01-08 09:36:45 +1100200}
201
Simon Buhrowdb9be312021-04-09 14:48:39 +0200202static bool ft2232_spi_command_fits(const struct spi_command *cmd, size_t buffer_size)
203{
204 const size_t cmd_len = 3; /* same length for any ft2232 command */
205 return
206 /* commands for CS# assertion and de-assertion: */
207 cmd_len + cmd_len
208 /* commands for either a write, a read or both: */
209 + (cmd->writecnt && cmd->readcnt ? cmd_len + cmd_len : cmd_len)
210 /* payload (only writecnt; readcnt concerns another buffer): */
211 + cmd->writecnt
212 <= buffer_size;
213}
214
215/* Returns 0 upon success, a negative number upon errors. */
216static int ft2232_spi_send_multicommand(const struct flashctx *flash, struct spi_command *cmds)
217{
218 struct ft2232_data *spi_data = flash->mst->spi.data;
219 struct ftdi_context *ftdic = &spi_data->ftdi_context;
220 static unsigned char buf[FTDI_HW_BUFFER_SIZE];
221 size_t i = 0;
222 int ret = 0;
223
224 /*
225 * Minimize FTDI-calls by packing as many commands as possible together.
226 */
227 for (; cmds->writecnt || cmds->readcnt; cmds++) {
228
229 if (cmds->writecnt > 65536 || cmds->readcnt > 65536)
230 return SPI_INVALID_LENGTH;
231
232 if (!ft2232_spi_command_fits(cmds, FTDI_HW_BUFFER_SIZE - i)) {
233 msg_perr("Command does not fit\n");
234 return SPI_GENERIC_ERROR;
235 }
236
237 msg_pspew("Assert CS#\n");
238 buf[i++] = SET_BITS_LOW;
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200239 /* assert CS# pins, keep aux_bits, all other output pins stay low */
240 buf[i++] = spi_data->aux_bits;
Simon Buhrowdb9be312021-04-09 14:48:39 +0200241 buf[i++] = spi_data->pindir;
242
243 /* WREN, OP(PROGRAM, ERASE), ADDR, DATA */
244 if (cmds->writecnt) {
245 buf[i++] = MPSSE_DO_WRITE | MPSSE_WRITE_NEG;
246 buf[i++] = (cmds->writecnt - 1) & 0xff;
247 buf[i++] = ((cmds->writecnt - 1) >> 8) & 0xff;
248 memcpy(buf + i, cmds->writearr, cmds->writecnt);
249 i += cmds->writecnt;
250 }
251
252 /* An optional read command */
253 if (cmds->readcnt) {
254 buf[i++] = MPSSE_DO_READ;
255 buf[i++] = (cmds->readcnt - 1) & 0xff;
256 buf[i++] = ((cmds->readcnt - 1) >> 8) & 0xff;
257 }
258
259 /* Add final de-assert CS# */
260 msg_pspew("De-assert CS#\n");
261 buf[i++] = SET_BITS_LOW;
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200262 buf[i++] = spi_data->cs_bits | spi_data->aux_bits;
Simon Buhrowdb9be312021-04-09 14:48:39 +0200263 buf[i++] = spi_data->pindir;
264
265 /* continue if there is no read-cmd and further cmds exist */
266 if (!cmds->readcnt &&
267 ((cmds + 1)->writecnt || (cmds + 1)->readcnt) &&
268 ft2232_spi_command_fits((cmds + 1), FTDI_HW_BUFFER_SIZE - i)) {
269 continue;
270 }
271
272 ret = send_buf(ftdic, buf, i);
273 i = 0;
274 if (ret) {
275 msg_perr("send_buf failed: %i\n", ret);
276 break;
277 }
278
279 if (cmds->readcnt) {
280 ret = get_buf(ftdic, cmds->readarr, cmds->readcnt);
281 if (ret) {
282 msg_perr("get_buf failed: %i\n", ret);
283 break;
284 }
285 }
286 }
287 return ret ? -1 : 0;
288}
289
Nico Huber03f3a6d2021-05-11 17:53:34 +0200290static const struct spi_master spi_master_ft2232 = {
Nico Huber1cf407b2017-11-10 20:18:23 +0100291 .features = SPI_MASTER_4BA,
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000292 .max_data_read = 64 * 1024,
293 .max_data_write = 256,
Nico Huber13b33bc2021-06-20 13:20:33 +0200294 .command = default_spi_send_command,
Simon Buhrowdb9be312021-04-09 14:48:39 +0200295 .multicommand = ft2232_spi_send_multicommand,
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000296 .read = default_spi_read,
297 .write_256 = default_spi_write_256,
Anastasia Klimchukc63d9182021-07-06 16:18:44 +1000298 .shutdown = ft2232_shutdown,
Aarya Chaumal0cea7532022-07-04 18:21:50 +0530299 .probe_opcode = default_spi_probe_opcode,
Michael Karcherb9dbe482011-05-11 17:07:07 +0000300};
301
Uwe Hermann274a20d2011-07-21 09:18:18 +0000302/* Returns 0 upon success, a negative number upon errors. */
Thomas Heijligencc853d82021-05-04 15:32:17 +0200303static int ft2232_spi_init(void)
Paul Fox05dfbe62009-06-16 21:08:06 +0000304{
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000305 int ret;
Paul Fox05dfbe62009-06-16 21:08:06 +0000306 unsigned char buf[512];
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000307 int ft2232_vid = FTDI_VID;
308 int ft2232_type = FTDI_FT4232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000309 int channel_count = 4; /* Stores the number of channels of the device. */
310 enum ftdi_interface ft2232_interface = INTERFACE_A;
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000311 /*
312 * The 'H' chips can run with an internal clock of either 12 MHz or 60 MHz,
Nikolai Artemiev518674c2020-06-24 18:53:03 +1000313 * but the non-H chips can only run at 12 MHz. We disable the divide-by-5
314 * prescaler on 'H' chips so they run at 60MHz.
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000315 */
Felix Singer7b83f3c2022-08-19 03:16:19 +0200316 bool clock_5x = true;
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000317 /* In addition to the prescaler mentioned above there is also another
318 * configurable one on all versions of the chips. Its divisor div can be
319 * set by a 16 bit value x according to the following formula:
320 * div = (1 + x) * 2 <-> x = div / 2 - 1
321 * Hence the expressible divisors are all even numbers between 2 and
322 * 2^17 (=131072) resulting in SCK frequencies of 6 MHz down to about
Nikolai Artemiev518674c2020-06-24 18:53:03 +1000323 * 92 Hz for 12 MHz inputs and 30 MHz down to about 458 Hz for 60 MHz
324 * inputs.
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000325 */
326 uint32_t divisor = DEFAULT_DIVISOR;
327 int f;
Harry Johnson9fc8e252021-07-08 14:28:39 -0700328 char *arg, *arg2;
Alex Badea0b94d052010-11-10 03:18:41 +0000329 double mpsse_clk;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000330 uint8_t cs_bits = 0x08;
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200331 uint8_t aux_bits = 0x00;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000332 uint8_t pindir = 0x0b;
Jacek Naglak24e1bbb2022-05-18 02:25:13 +0200333 uint8_t aux_bits_high = 0x00;
334 uint8_t pindir_high = 0x00;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000335
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000336 arg = extract_programmer_param("type");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000337 if (arg) {
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000338 if (!strcasecmp(arg, "2232H")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000339 ft2232_type = FTDI_FT2232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000340 channel_count = 2;
341 } else if (!strcasecmp(arg, "4232H")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000342 ft2232_type = FTDI_FT4232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000343 channel_count = 4;
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000344 } else if (!strcasecmp(arg, "232H")) {
345 ft2232_type = FTDI_FT232H_PID;
346 channel_count = 1;
Charles Parent8efb0b32022-02-28 14:55:58 +0100347 } else if (!strcasecmp(arg, "4233H")) {
348 ft2232_type = FTDI_FT4233H_PID;
349 channel_count = 4;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000350 } else if (!strcasecmp(arg, "jtagkey")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000351 ft2232_type = AMONTEC_JTAGKEY_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000352 channel_count = 2;
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000353 /* JTAGkey(2) needs to enable its output via Bit4 / GPIOL0
354 * value: 0x18 OE=high, CS=high, DI=low, DO=low, SK=low
355 * dir: 0x1b OE=output, CS=output, DI=input, DO=output, SK=output */
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000356 cs_bits = 0x18;
Uwe Hermann70145292010-07-29 19:57:55 +0000357 pindir = 0x1b;
Samir Ibradžić7189a5f2011-10-20 23:14:10 +0000358 } else if (!strcasecmp(arg, "picotap")) {
359 ft2232_vid = GOEPEL_VID;
360 ft2232_type = GOEPEL_PICOTAP_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000361 channel_count = 2;
Uwe Hermann836b26a2011-10-14 20:33:14 +0000362 } else if (!strcasecmp(arg, "tumpa")) {
363 /* Interface A is SPI1, B is SPI2. */
364 ft2232_type = TIAO_TUMPA_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000365 channel_count = 2;
Stefan Taunerb66ed842014-04-27 05:07:35 +0000366 } else if (!strcasecmp(arg, "tumpalite")) {
367 /* Only one channel is used on lite edition */
368 ft2232_type = TIAO_TUMPA_LITE_PID;
369 channel_count = 1;
Steve Markgraf0528b7f2011-08-12 01:19:32 +0000370 } else if (!strcasecmp(arg, "busblaster")) {
371 /* In its default configuration it is a jtagkey clone */
372 ft2232_type = FTDI_FT2232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000373 channel_count = 2;
Steve Markgraf0528b7f2011-08-12 01:19:32 +0000374 cs_bits = 0x18;
375 pindir = 0x1b;
Alex Badeacaf2d422010-11-10 03:26:57 +0000376 } else if (!strcasecmp(arg, "openmoko")) {
377 ft2232_vid = FIC_VID;
378 ft2232_type = OPENMOKO_DBGBOARD_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000379 channel_count = 2;
Pete Batardc0207062011-06-11 12:21:37 +0000380 } else if (!strcasecmp(arg, "arm-usb-ocd")) {
381 ft2232_vid = OLIMEX_VID;
382 ft2232_type = OLIMEX_ARM_OCD_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000383 channel_count = 2;
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000384 /* arm-usb-ocd(-h) has an output buffer that needs to be enabled by pulling ADBUS4 low.
385 * value: 0x08 #OE=low, CS=high, DI=low, DO=low, SK=low
386 * dir: 0x1b #OE=output, CS=output, DI=input, DO=output, SK=output */
Paul Fertser3cf335e2011-12-20 02:08:14 +0000387 cs_bits = 0x08;
388 pindir = 0x1b;
Pete Batardc0207062011-06-11 12:21:37 +0000389 } else if (!strcasecmp(arg, "arm-usb-tiny")) {
390 ft2232_vid = OLIMEX_VID;
391 ft2232_type = OLIMEX_ARM_TINY_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000392 channel_count = 2;
Pete Batardc0207062011-06-11 12:21:37 +0000393 } else if (!strcasecmp(arg, "arm-usb-ocd-h")) {
394 ft2232_vid = OLIMEX_VID;
395 ft2232_type = OLIMEX_ARM_OCD_H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000396 channel_count = 2;
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000397 /* See arm-usb-ocd */
Paul Fertser3cf335e2011-12-20 02:08:14 +0000398 cs_bits = 0x08;
399 pindir = 0x1b;
Pete Batardc0207062011-06-11 12:21:37 +0000400 } else if (!strcasecmp(arg, "arm-usb-tiny-h")) {
401 ft2232_vid = OLIMEX_VID;
402 ft2232_type = OLIMEX_ARM_TINY_H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000403 channel_count = 2;
Todd Broch6800c952016-02-14 15:46:00 +0000404 } else if (!strcasecmp(arg, "google-servo")) {
405 ft2232_vid = GOOGLE_VID;
406 ft2232_type = GOOGLE_SERVO_PID;
407 } else if (!strcasecmp(arg, "google-servo-v2")) {
408 ft2232_vid = GOOGLE_VID;
409 ft2232_type = GOOGLE_SERVO_V2_PID1;
410 /* Default divisor is too fast, and chip ID fails */
411 divisor = 6;
412 } else if (!strcasecmp(arg, "google-servo-v2-legacy")) {
413 ft2232_vid = GOOGLE_VID;
414 ft2232_type = GOOGLE_SERVO_V2_PID0;
Russ Dill7bd31a42019-10-30 00:40:43 -0700415 } else if (!strcasecmp(arg, "flyswatter")) {
416 ft2232_type = FTDI_FT2232H_PID;
417 channel_count = 2;
418 /* Flyswatter and Flyswatter-2 require GPIO bits 0x80
419 * and 0x40 to be driven low to enable output buffers */
420 pindir = 0xcb;
Jacek Naglak24e1bbb2022-05-18 02:25:13 +0200421 } else if (!strcasecmp(arg, "kt-link")) {
422 ft2232_type = KT_LINK_PID;
423 /* port B is used as uart */
424 channel_count = 1;
425 /* Set GPIOL1 output high - route TMS and TDO through multiplexers */
426 aux_bits = 0x20;
427 pindir = 0x2b;
428 /* Set GPIOH4 output low - enable TMS output buffer */
429 /* Set GPIOH5 output low - enable TDI output buffer */
430 /* Set GPIOH6 output low - enable TCK output buffer */
431 pindir_high = 0x70;
Alex Badeacaf2d422010-11-10 03:26:57 +0000432 } else {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000433 msg_perr("Error: Invalid device type specified.\n");
434 free(arg);
Nico Huber2f7c1df2023-03-07 23:36:44 +0000435 return -1;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000436 }
437 }
438 free(arg);
Stefan Tauner3e515e22012-09-26 00:48:16 +0000439
Michael Niewöhnerb50d9eb2021-09-21 19:43:04 +0200440 /* Remember reserved pins before pindir gets modified. */
441 const uint8_t rsv_bits = pindir & 0xf0;
442
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000443 arg = extract_programmer_param("port");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000444 if (arg) {
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000445 switch (toupper((unsigned char)*arg)) {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000446 case 'A':
447 ft2232_interface = INTERFACE_A;
448 break;
449 case 'B':
450 ft2232_interface = INTERFACE_B;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000451 if (channel_count < 2)
452 channel_count = -1;
453 break;
454 case 'C':
455 ft2232_interface = INTERFACE_C;
456 if (channel_count < 3)
457 channel_count = -1;
458 break;
459 case 'D':
460 ft2232_interface = INTERFACE_D;
461 if (channel_count < 4)
462 channel_count = -1;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000463 break;
464 default:
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000465 channel_count = -1;
466 break;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000467 }
Stefan Taunerd7d423b2012-10-20 09:13:16 +0000468 if (channel_count < 0 || strlen(arg) != 1) {
469 msg_perr("Error: Invalid channel/port/interface specified: \"%s\".\n", arg);
470 free(arg);
Nico Huber2f7c1df2023-03-07 23:36:44 +0000471 return -2;
Stefan Taunerd7d423b2012-10-20 09:13:16 +0000472 }
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000473 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000474 free(arg);
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000475
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000476 arg = extract_programmer_param("divisor");
477 if (arg && strlen(arg)) {
478 unsigned int temp = 0;
479 char *endptr;
480 temp = strtoul(arg, &endptr, 10);
481 if (*endptr || temp < 2 || temp > 131072 || temp & 0x1) {
482 msg_perr("Error: Invalid SPI frequency divisor specified: \"%s\".\n"
483 "Valid are even values between 2 and 131072.\n", arg);
484 free(arg);
Nico Huber2f7c1df2023-03-07 23:36:44 +0000485 return -2;
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000486 }
Elyes HAOUAS712ba3a2019-06-09 17:11:49 +0200487 divisor = (uint32_t)temp;
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000488 }
489 free(arg);
Stefan Tauner3e515e22012-09-26 00:48:16 +0000490
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200491 bool csgpiol_set = false;
Sergey Alirzaev4acc3f32018-08-01 16:39:17 +0300492 arg = extract_programmer_param("csgpiol");
493 if (arg) {
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200494 csgpiol_set = true;
495 msg_pwarn("Deprecation warning: `csgpiol` is deprecated and will be removed "
496 "in the future.\nUse `gpiolX=C` instead.\n");
497
Sergey Alirzaev4acc3f32018-08-01 16:39:17 +0300498 char *endptr;
499 unsigned int temp = strtoul(arg, &endptr, 10);
500 if (*endptr || endptr == arg || temp > 3) {
501 msg_perr("Error: Invalid GPIOL specified: \"%s\".\n"
502 "Valid values are between 0 and 3.\n", arg);
503 free(arg);
Nico Huber2f7c1df2023-03-07 23:36:44 +0000504 return -2;
Sergey Alirzaev4acc3f32018-08-01 16:39:17 +0300505 }
Michael Niewöhnerb50d9eb2021-09-21 19:43:04 +0200506
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200507 unsigned int pin = temp + 4;
Michael Niewöhnerb50d9eb2021-09-21 19:43:04 +0200508 if (rsv_bits & 1 << pin) {
509 msg_perr("Error: Invalid GPIOL specified: \"%s\".\n"
510 "The pin is reserved on this programmer.\n",
511 arg);
512 free(arg);
513 return -2;
514 }
515
Elyes HAOUAS712ba3a2019-06-09 17:11:49 +0200516 cs_bits |= 1 << pin;
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200517 pindir |= 1 << pin;
Sergey Alirzaev4acc3f32018-08-01 16:39:17 +0300518 }
519 free(arg);
520
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200521 /* gpiolX */
522 int pin;
523 for (pin = 0; pin < 4; pin++) {
524 char gpiol_param[7];
525 snprintf(gpiol_param, sizeof(gpiol_param), "gpiol%d", pin);
526 arg = extract_programmer_param(gpiol_param);
527
528 if (!arg)
529 continue;
530
531 if (csgpiol_set) {
532 msg_perr("Error: `csgpiol` and `gpiolX` are mutually exclusive.\n"
533 "Since `csgpiol` is deprecated and will be removed in the "
534 "future, use of `gpiolX=C` is recommended.\n");
535 free(arg);
536 return -2;
537 }
538
539 uint8_t bit = 1 << (pin + 4);
540 if (rsv_bits & bit) {
541 msg_perr("Error: Invalid GPIOL specified: \"gpiol%d=%s\".\n"
542 "Pin GPIOL%i is reserved on this programmer.\n",
543 pin, arg, pin);
544 free(arg);
545 return -2;
546 }
547
548 if (strlen(arg) != 1)
549 goto format_error;
550
551 switch (toupper((unsigned char)arg[0])) {
552 case 'H':
553 aux_bits |= bit;
554 pindir |= bit;
555 break;
556 case 'L':
557 pindir |= bit;
558 break;
559 case 'C':
560 cs_bits |= bit;
561 pindir |= bit;
562 break;
563 default:
564 goto format_error;
565 }
566
567 free(arg);
568 continue;
569
570format_error:
571 msg_perr("Error: Invalid GPIOL specified: \"gpiol%d=%s\".\n"
572 "Valid values are H, L and C.\n"
573 " H - Set GPIOL output high\n"
574 " L - Set GPIOL output low\n"
575 " C - Use GPIOL as additional CS# output\n",
576 pin, arg);
577
578 free(arg);
579 return -2;
580 }
581
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000582 msg_pdbg("Using device type %s %s ",
Uwe Hermann70145292010-07-29 19:57:55 +0000583 get_ft2232_vendorname(ft2232_vid, ft2232_type),
584 get_ft2232_devicename(ft2232_vid, ft2232_type));
Stefan Tauner3e515e22012-09-26 00:48:16 +0000585 msg_pdbg("channel %s.\n",
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000586 (ft2232_interface == INTERFACE_A) ? "A" :
587 (ft2232_interface == INTERFACE_B) ? "B" :
588 (ft2232_interface == INTERFACE_C) ? "C" : "D");
Paul Fox05dfbe62009-06-16 21:08:06 +0000589
Nico Huber2f7c1df2023-03-07 23:36:44 +0000590 struct ft2232_data *const spi_data = calloc(1, sizeof(*spi_data));
591 if (!spi_data) {
592 msg_perr("Unable to allocate space for SPI master data\n");
593 return SPI_GENERIC_ERROR;
594 }
595
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000596 struct ftdi_context *const ftdic = &spi_data->ftdi_context;
Paul Fox05dfbe62009-06-16 21:08:06 +0000597 if (ftdi_init(ftdic) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000598 msg_perr("ftdi_init failed.\n");
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000599 ret = -3;
600 goto init_err;
Paul Fox05dfbe62009-06-16 21:08:06 +0000601 }
602
Ilya A. Volynets-Evenbakh7c36d522012-08-14 01:32:46 +0000603 if (ftdi_set_interface(ftdic, ft2232_interface) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000604 msg_perr("Unable to select channel (%s).\n", ftdi_get_error_string(ftdic));
Ilya A. Volynets-Evenbakh7c36d522012-08-14 01:32:46 +0000605 }
606
Shik Chen14fbc4b2012-09-17 00:40:54 +0000607 arg = extract_programmer_param("serial");
Harry Johnson9fc8e252021-07-08 14:28:39 -0700608 arg2 = extract_programmer_param("description");
609
610 f = ftdi_usb_open_desc(ftdic, ft2232_vid, ft2232_type, arg2, arg);
611
Shik Chen14fbc4b2012-09-17 00:40:54 +0000612 free(arg);
Harry Johnson9fc8e252021-07-08 14:28:39 -0700613 free(arg2);
Paul Fox05dfbe62009-06-16 21:08:06 +0000614
615 if (f < 0 && f != -5) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000616 msg_perr("Unable to open FTDI device: %d (%s).\n", f, ftdi_get_error_string(ftdic));
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000617 ret = -4;
618 goto init_err;
Paul Fox05dfbe62009-06-16 21:08:06 +0000619 }
620
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000621 if (ftdic->type != TYPE_2232H && ftdic->type != TYPE_4232H && ftdic->type != TYPE_232H) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000622 msg_pdbg("FTDI chip type %d is not high-speed.\n", ftdic->type);
Felix Singer7b83f3c2022-08-19 03:16:19 +0200623 clock_5x = false;
Alex Badea0b94d052010-11-10 03:18:41 +0000624 }
625
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000626 if (ftdi_usb_reset(ftdic) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000627 msg_perr("Unable to reset FTDI device (%s).\n", ftdi_get_error_string(ftdic));
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000628 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000629
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000630 if (ftdi_set_latency_timer(ftdic, 2) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000631 msg_perr("Unable to set latency timer (%s).\n", ftdi_get_error_string(ftdic));
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000632 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000633
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000634 if (ftdi_set_bitmode(ftdic, 0x00, BITMODE_BITBANG_SPI) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000635 msg_perr("Unable to set bitmode to SPI (%s).\n", ftdi_get_error_string(ftdic));
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000636 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000637
Alex Badea0b94d052010-11-10 03:18:41 +0000638 if (clock_5x) {
639 msg_pdbg("Disable divide-by-5 front stage\n");
Nikolai Artemiev518674c2020-06-24 18:53:03 +1000640 buf[0] = DIS_DIV_5;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000641 if (send_buf(ftdic, buf, 1)) {
642 ret = -5;
643 goto ftdi_err;
644 }
Alex Badea0b94d052010-11-10 03:18:41 +0000645 mpsse_clk = 60.0;
646 } else {
647 mpsse_clk = 12.0;
648 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000649
Sean Nelson34b5db72010-01-10 01:08:37 +0000650 msg_pdbg("Set clock divisor\n");
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000651 buf[0] = TCK_DIVISOR;
Ilya A. Volynets-Evenbakh3464d052012-06-14 13:08:33 +0000652 buf[1] = (divisor / 2 - 1) & 0xff;
653 buf[2] = ((divisor / 2 - 1) >> 8) & 0xff;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000654 if (send_buf(ftdic, buf, 3)) {
655 ret = -6;
656 goto ftdi_err;
657 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000658
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000659 msg_pdbg("MPSSE clock: %f MHz, divisor: %u, SPI clock: %f MHz\n",
660 mpsse_clk, divisor, (double)(mpsse_clk / divisor));
Paul Fox05dfbe62009-06-16 21:08:06 +0000661
Uwe Hermannc67d0372009-10-01 18:40:02 +0000662 /* Disconnect TDI/DO to TDO/DI for loopback. */
Sean Nelson34b5db72010-01-10 01:08:37 +0000663 msg_pdbg("No loopback of TDI/DO TDO/DI\n");
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000664 buf[0] = LOOPBACK_END;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000665 if (send_buf(ftdic, buf, 1)) {
666 ret = -7;
667 goto ftdi_err;
668 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000669
Sean Nelson34b5db72010-01-10 01:08:37 +0000670 msg_pdbg("Set data bits\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000671 buf[0] = SET_BITS_LOW;
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200672 buf[1] = cs_bits | aux_bits;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000673 buf[2] = pindir;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000674 if (send_buf(ftdic, buf, 3)) {
675 ret = -8;
676 goto ftdi_err;
677 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000678
Jacek Naglak24e1bbb2022-05-18 02:25:13 +0200679 if (pindir_high) {
680 msg_pdbg("Set data bits HighByte\n");
681 buf[0] = SET_BITS_HIGH;
682 buf[1] = aux_bits_high;
683 buf[2] = pindir_high;
684 if (send_buf(ftdic, buf, 3)) {
685 ret = -8;
686 goto ftdi_err;
687 }
688 }
689
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000690 spi_data->cs_bits = cs_bits;
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200691 spi_data->aux_bits = aux_bits;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000692 spi_data->pindir = pindir;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000693
Anastasia Klimchukc63d9182021-07-06 16:18:44 +1000694 return register_spi_master(&spi_master_ft2232, spi_data);
Uwe Hermann274a20d2011-07-21 09:18:18 +0000695
696ftdi_err:
697 if ((f = ftdi_usb_close(ftdic)) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000698 msg_perr("Unable to close FTDI device: %d (%s)\n", f, ftdi_get_error_string(ftdic));
Uwe Hermann274a20d2011-07-21 09:18:18 +0000699 }
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000700init_err:
701 free(spi_data);
Uwe Hermann274a20d2011-07-21 09:18:18 +0000702 return ret;
Paul Fox05dfbe62009-06-16 21:08:06 +0000703}
704
Thomas Heijligencc853d82021-05-04 15:32:17 +0200705const struct programmer_entry programmer_ft2232_spi = {
706 .name = "ft2232_spi",
707 .type = USB,
708 .devs.dev = devs_ft2232spi,
709 .init = ft2232_spi_init,
Thomas Heijligencc853d82021-05-04 15:32:17 +0200710};