blob: a82153df8eae1c1a069a5b1bddb38dd3fbdcfa10 [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"
Nico Huberd5185632024-01-05 18:44:41 +010025#include "spi_command.h"
Paul Fox05dfbe62009-06-16 21:08:06 +000026#include "spi.h"
Paul Fox05dfbe62009-06-16 21:08:06 +000027#include <ftdi.h>
28
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +000029/* This is not defined in libftdi.h <0.20 (c7e4c09e68cfa6f5e112334aa1b3bb23401c8dc7 to be exact).
Nico Huberc3b02dc2023-08-12 01:13:45 +020030 * 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 +000031#if !defined(HAVE_FT232H)
32#define TYPE_232H 6
33#endif
34
Uwe Hermann836b26a2011-10-14 20:33:14 +000035/* Please keep sorted by vendor ID, then device ID. */
36
Uwe Hermann70145292010-07-29 19:57:55 +000037#define FTDI_VID 0x0403
38#define FTDI_FT2232H_PID 0x6010
39#define FTDI_FT4232H_PID 0x6011
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +000040#define FTDI_FT232H_PID 0x6014
Charles Parent8efb0b32022-02-28 14:55:58 +010041#define FTDI_FT4233H_PID 0x6041
Uwe Hermann836b26a2011-10-14 20:33:14 +000042#define TIAO_TUMPA_PID 0x8a98
Stefan Taunerb66ed842014-04-27 05:07:35 +000043#define TIAO_TUMPA_LITE_PID 0x8a99
Jacek Naglak24e1bbb2022-05-18 02:25:13 +020044#define KT_LINK_PID 0xbbe2
Uwe Hermann70145292010-07-29 19:57:55 +000045#define AMONTEC_JTAGKEY_PID 0xCFF8
Jörg Fischer6529b9f2010-07-29 15:54:53 +000046
Samir Ibradžić7189a5f2011-10-20 23:14:10 +000047#define GOEPEL_VID 0x096C
48#define GOEPEL_PICOTAP_PID 0x1449
49
Alex Badeacaf2d422010-11-10 03:26:57 +000050#define FIC_VID 0x1457
51#define OPENMOKO_DBGBOARD_PID 0x5118
52
Pete Batardc0207062011-06-11 12:21:37 +000053#define OLIMEX_VID 0x15BA
54#define OLIMEX_ARM_OCD_PID 0x0003
55#define OLIMEX_ARM_TINY_PID 0x0004
56#define OLIMEX_ARM_OCD_H_PID 0x002B
57#define OLIMEX_ARM_TINY_H_PID 0x002A
58
Todd Broch6800c952016-02-14 15:46:00 +000059#define GOOGLE_VID 0x18D1
60#define GOOGLE_SERVO_PID 0x5001
61#define GOOGLE_SERVO_V2_PID0 0x5002
62#define GOOGLE_SERVO_V2_PID1 0x5003
63
Thomas Heijligencc853d82021-05-04 15:32:17 +020064static const struct dev_entry devs_ft2232spi[] = {
Uwe Hermann70145292010-07-29 19:57:55 +000065 {FTDI_VID, FTDI_FT2232H_PID, OK, "FTDI", "FT2232H"},
66 {FTDI_VID, FTDI_FT4232H_PID, OK, "FTDI", "FT4232H"},
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +000067 {FTDI_VID, FTDI_FT232H_PID, OK, "FTDI", "FT232H"},
Charles Parent8efb0b32022-02-28 14:55:58 +010068 {FTDI_VID, FTDI_FT4233H_PID, OK, "FTDI", "FT4233H"},
Uwe Hermann836b26a2011-10-14 20:33:14 +000069 {FTDI_VID, TIAO_TUMPA_PID, OK, "TIAO", "USB Multi-Protocol Adapter"},
Stefan Taunerb66ed842014-04-27 05:07:35 +000070 {FTDI_VID, TIAO_TUMPA_LITE_PID, OK, "TIAO", "USB Multi-Protocol Adapter Lite"},
Jacek Naglak24e1bbb2022-05-18 02:25:13 +020071 {FTDI_VID, KT_LINK_PID, OK, "Kristech", "KT-LINK"},
Uwe Hermann70145292010-07-29 19:57:55 +000072 {FTDI_VID, AMONTEC_JTAGKEY_PID, OK, "Amontec", "JTAGkey"},
Samir Ibradžić7189a5f2011-10-20 23:14:10 +000073 {GOEPEL_VID, GOEPEL_PICOTAP_PID, OK, "GOEPEL", "PicoTAP"},
Todd Broch6800c952016-02-14 15:46:00 +000074 {GOOGLE_VID, GOOGLE_SERVO_PID, OK, "Google", "Servo"},
75 {GOOGLE_VID, GOOGLE_SERVO_V2_PID0, OK, "Google", "Servo V2 Legacy"},
76 {GOOGLE_VID, GOOGLE_SERVO_V2_PID1, OK, "Google", "Servo V2"},
Stefan Tauner3e515e22012-09-26 00:48:16 +000077 {FIC_VID, OPENMOKO_DBGBOARD_PID, OK, "FIC", "OpenMoko Neo1973 Debug board (V2+)"},
Stefan Tauner74dc73f2015-03-01 22:04:38 +000078 {OLIMEX_VID, OLIMEX_ARM_OCD_PID, OK, "Olimex", "ARM-USB-OCD"},
Pete Batardc0207062011-06-11 12:21:37 +000079 {OLIMEX_VID, OLIMEX_ARM_TINY_PID, OK, "Olimex", "ARM-USB-TINY"},
Stefan Tauner6697f712014-08-06 15:09:15 +000080 {OLIMEX_VID, OLIMEX_ARM_OCD_H_PID, OK, "Olimex", "ARM-USB-OCD-H"},
Stefan Taunerc2eec2c2014-05-03 21:33:01 +000081 {OLIMEX_VID, OLIMEX_ARM_TINY_H_PID, OK, "Olimex", "ARM-USB-TINY-H"},
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000082
83 {0},
Jörg Fischer6529b9f2010-07-29 15:54:53 +000084};
85
Simon Buhrowdb9be312021-04-09 14:48:39 +020086#define FTDI_HW_BUFFER_SIZE 4096 /* in bytes */
87
Samir Ibradžićb482c6d2012-05-15 22:58:19 +000088#define DEFAULT_DIVISOR 2
Paul Fox05dfbe62009-06-16 21:08:06 +000089
Uwe Hermannc67d0372009-10-01 18:40:02 +000090#define BITMODE_BITBANG_NORMAL 1
91#define BITMODE_BITBANG_SPI 2
Paul Fox05dfbe62009-06-16 21:08:06 +000092
Nico Hubercf880682021-06-20 15:59:57 +020093/*
94 * The variables `cs_bits` and `pindir` store the values for the
95 * "set data bits low byte" MPSSE command that sets the initial
96 * state and the direction of the I/O pins. `cs_bits` pins default
97 * to high and will be toggled during SPI transactions. All other
Michael Niewöhnerc2b303b2021-09-21 18:03:29 +020098 * output pins will be kept low all the time. For some programmers,
99 * some reserved GPIOL* pins are used as outputs. Free GPIOL* pins
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200100 * are configured as inputs, while it's possible to use them either
101 * as generic gpios or as additional CS# signal(s) through the
102 * parameter(s) `gpiolX`. On exit, all pins will be reconfigured
103 * as inputs.
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000104 *
Nico Hubercf880682021-06-20 15:59:57 +0200105 * The pin offsets are as follows:
106 * TCK/SK is bit 0.
107 * TDI/DO is bit 1.
108 * TDO/DI is bit 2.
109 * TMS/CS is bit 3.
110 * GPIOL0 is bit 4.
111 * GPIOL1 is bit 5.
112 * GPIOL2 is bit 6.
113 * GPIOL3 is bit 7.
114 *
115 * The default values (set below in ft2232_spi_init) are used for
116 * most devices:
117 * value: 0x08 CS=high, DI=low, DO=low, SK=low
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000118 * dir: 0x0b CS=output, DI=input, DO=output, SK=output
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000119 */
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000120struct ft2232_data {
121 uint8_t cs_bits;
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200122 uint8_t aux_bits;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000123 uint8_t pindir;
124 struct ftdi_context ftdi_context;
125};
Paul Fox05dfbe62009-06-16 21:08:06 +0000126
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000127static const char *get_ft2232_devicename(int ft2232_vid, int ft2232_type)
128{
129 int i;
Uwe Hermann70145292010-07-29 19:57:55 +0000130 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000131 if ((devs_ft2232spi[i].device_id == ft2232_type) && (devs_ft2232spi[i].vendor_id == ft2232_vid))
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000132 return devs_ft2232spi[i].device_name;
133 }
134 return "unknown device";
135}
136
137static const char *get_ft2232_vendorname(int ft2232_vid, int ft2232_type)
138{
139 int i;
Uwe Hermann70145292010-07-29 19:57:55 +0000140 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000141 if ((devs_ft2232spi[i].device_id == ft2232_type) && (devs_ft2232spi[i].vendor_id == ft2232_vid))
Uwe Hermann70145292010-07-29 19:57:55 +0000142 return devs_ft2232spi[i].vendor_name;
143 }
144 return "unknown vendor";
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000145}
146
Uwe Hermann70145292010-07-29 19:57:55 +0000147static int send_buf(struct ftdi_context *ftdic, const unsigned char *buf,
148 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +0000149{
150 int r;
151 r = ftdi_write_data(ftdic, (unsigned char *) buf, size);
152 if (r < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000153 msg_perr("ftdi_write_data: %d, %s\n", r, ftdi_get_error_string(ftdic));
Paul Fox05dfbe62009-06-16 21:08:06 +0000154 return 1;
155 }
156 return 0;
157}
158
Uwe Hermann70145292010-07-29 19:57:55 +0000159static int get_buf(struct ftdi_context *ftdic, const unsigned char *buf,
160 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +0000161{
162 int r;
Alex Badeab9556e02010-11-10 03:10:41 +0000163
164 while (size > 0) {
165 r = ftdi_read_data(ftdic, (unsigned char *) buf, size);
166 if (r < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000167 msg_perr("ftdi_read_data: %d, %s\n", r, ftdi_get_error_string(ftdic));
Alex Badeab9556e02010-11-10 03:10:41 +0000168 return 1;
169 }
170 buf += r;
171 size -= r;
Paul Fox05dfbe62009-06-16 21:08:06 +0000172 }
173 return 0;
174}
175
Alan Green460c1c02021-01-08 09:36:45 +1100176static int ft2232_shutdown(void *data)
177{
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000178 struct ft2232_data *spi_data = (struct ft2232_data *)data;
179 struct ftdi_context *ftdic = &spi_data->ftdi_context;
Alan Green460c1c02021-01-08 09:36:45 +1100180 unsigned char buf[3];
Nico Huber4c40a792021-06-20 16:38:57 +0200181 int ret = 0;
Alan Green460c1c02021-01-08 09:36:45 +1100182
183 msg_pdbg("Releasing I/Os\n");
184 buf[0] = SET_BITS_LOW;
185 buf[1] = 0; /* Output byte ignored */
186 buf[2] = 0; /* Pin direction: all inputs */
187 if (send_buf(ftdic, buf, 3)) {
Nico Huberfda5f1f2021-06-20 16:46:31 +0200188 msg_perr("Unable to set pins back to inputs.\n");
Nico Huber4c40a792021-06-20 16:38:57 +0200189 ret = 1;
Alan Green460c1c02021-01-08 09:36:45 +1100190 }
191
Nico Huber4c40a792021-06-20 16:38:57 +0200192 const int close_ret = ftdi_usb_close(ftdic);
193 if (close_ret < 0) {
194 msg_perr("Unable to close FTDI device: %d (%s)\n", close_ret,
Alan Green460c1c02021-01-08 09:36:45 +1100195 ftdi_get_error_string(ftdic));
Nico Huber4c40a792021-06-20 16:38:57 +0200196 ret = 1;
Alan Green460c1c02021-01-08 09:36:45 +1100197 }
198
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000199 free(spi_data);
Nico Huber4c40a792021-06-20 16:38:57 +0200200 return ret;
Alan Green460c1c02021-01-08 09:36:45 +1100201}
202
Simon Buhrowdb9be312021-04-09 14:48:39 +0200203static bool ft2232_spi_command_fits(const struct spi_command *cmd, size_t buffer_size)
204{
205 const size_t cmd_len = 3; /* same length for any ft2232 command */
206 return
207 /* commands for CS# assertion and de-assertion: */
208 cmd_len + cmd_len
209 /* commands for either a write, a read or both: */
Nico Huberd5185632024-01-05 18:44:41 +0100210 + (spi_write_len(cmd) && spi_read_len(cmd) ? cmd_len + cmd_len : cmd_len)
Simon Buhrowdb9be312021-04-09 14:48:39 +0200211 /* payload (only writecnt; readcnt concerns another buffer): */
Nico Huberd5185632024-01-05 18:44:41 +0100212 + spi_write_len(cmd)
Simon Buhrowdb9be312021-04-09 14:48:39 +0200213 <= buffer_size;
214}
215
216/* Returns 0 upon success, a negative number upon errors. */
217static int ft2232_spi_send_multicommand(const struct flashctx *flash, struct spi_command *cmds)
218{
Nico Huber9a11cbf2023-01-13 01:19:07 +0100219 struct ft2232_data *spi_data = flash->mst.spi->data;
Simon Buhrowdb9be312021-04-09 14:48:39 +0200220 struct ftdi_context *ftdic = &spi_data->ftdi_context;
221 static unsigned char buf[FTDI_HW_BUFFER_SIZE];
222 size_t i = 0;
223 int ret = 0;
224
225 /*
226 * Minimize FTDI-calls by packing as many commands as possible together.
227 */
Nico Huberd5185632024-01-05 18:44:41 +0100228 for (; !spi_is_empty(cmds); cmds++) {
229 const size_t writecnt = spi_write_len(cmds);
230 const size_t readcnt = spi_read_len(cmds);
Simon Buhrowdb9be312021-04-09 14:48:39 +0200231
Nico Huberd5185632024-01-05 18:44:41 +0100232 if (writecnt > 65536 || readcnt > 65536)
Simon Buhrowdb9be312021-04-09 14:48:39 +0200233 return SPI_INVALID_LENGTH;
234
235 if (!ft2232_spi_command_fits(cmds, FTDI_HW_BUFFER_SIZE - i)) {
236 msg_perr("Command does not fit\n");
237 return SPI_GENERIC_ERROR;
238 }
239
240 msg_pspew("Assert CS#\n");
241 buf[i++] = SET_BITS_LOW;
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200242 /* assert CS# pins, keep aux_bits, all other output pins stay low */
243 buf[i++] = spi_data->aux_bits;
Simon Buhrowdb9be312021-04-09 14:48:39 +0200244 buf[i++] = spi_data->pindir;
245
246 /* WREN, OP(PROGRAM, ERASE), ADDR, DATA */
Nico Huberd5185632024-01-05 18:44:41 +0100247 if (writecnt) {
Simon Buhrowdb9be312021-04-09 14:48:39 +0200248 buf[i++] = MPSSE_DO_WRITE | MPSSE_WRITE_NEG;
Nico Huberd5185632024-01-05 18:44:41 +0100249 buf[i++] = (writecnt - 1) & 0xff;
250 buf[i++] = ((writecnt - 1) >> 8) & 0xff;
251 memcpy(buf + i, cmds->writearr, writecnt);
252 i += writecnt;
Simon Buhrowdb9be312021-04-09 14:48:39 +0200253 }
254
255 /* An optional read command */
Nico Huberd5185632024-01-05 18:44:41 +0100256 if (readcnt) {
Simon Buhrowdb9be312021-04-09 14:48:39 +0200257 buf[i++] = MPSSE_DO_READ;
Nico Huberd5185632024-01-05 18:44:41 +0100258 buf[i++] = (readcnt - 1) & 0xff;
259 buf[i++] = ((readcnt - 1) >> 8) & 0xff;
Simon Buhrowdb9be312021-04-09 14:48:39 +0200260 }
261
262 /* Add final de-assert CS# */
263 msg_pspew("De-assert CS#\n");
264 buf[i++] = SET_BITS_LOW;
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200265 buf[i++] = spi_data->cs_bits | spi_data->aux_bits;
Simon Buhrowdb9be312021-04-09 14:48:39 +0200266 buf[i++] = spi_data->pindir;
267
268 /* continue if there is no read-cmd and further cmds exist */
Nico Huberd5185632024-01-05 18:44:41 +0100269 if (!readcnt && !spi_is_empty(cmds + 1) &&
Simon Buhrowdb9be312021-04-09 14:48:39 +0200270 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
Nico Huberd5185632024-01-05 18:44:41 +0100281 if (readcnt) {
282 ret = get_buf(ftdic, cmds->readarr, readcnt);
Simon Buhrowdb9be312021-04-09 14:48:39 +0200283 if (ret) {
284 msg_perr("get_buf failed: %i\n", ret);
285 break;
286 }
287 }
288 }
289 return ret ? -1 : 0;
290}
291
Nico Huber03f3a6d2021-05-11 17:53:34 +0200292static const struct spi_master spi_master_ft2232 = {
Nico Huber1cf407b2017-11-10 20:18:23 +0100293 .features = SPI_MASTER_4BA,
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000294 .max_data_read = 64 * 1024,
295 .max_data_write = 256,
Nico Huber13b33bc2021-06-20 13:20:33 +0200296 .command = default_spi_send_command,
Simon Buhrowdb9be312021-04-09 14:48:39 +0200297 .multicommand = ft2232_spi_send_multicommand,
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000298 .read = default_spi_read,
299 .write_256 = default_spi_write_256,
Anastasia Klimchukc63d9182021-07-06 16:18:44 +1000300 .shutdown = ft2232_shutdown,
Aarya Chaumal0cea7532022-07-04 18:21:50 +0530301 .probe_opcode = default_spi_probe_opcode,
Michael Karcherb9dbe482011-05-11 17:07:07 +0000302};
303
Uwe Hermann274a20d2011-07-21 09:18:18 +0000304/* Returns 0 upon success, a negative number upon errors. */
Nico Hubere3a26882023-01-11 21:45:51 +0100305static int ft2232_spi_init(struct flashprog_programmer *const prog)
Paul Fox05dfbe62009-06-16 21:08:06 +0000306{
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000307 int ret;
Paul Fox05dfbe62009-06-16 21:08:06 +0000308 unsigned char buf[512];
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000309 int ft2232_vid = FTDI_VID;
310 int ft2232_type = FTDI_FT4232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000311 int channel_count = 4; /* Stores the number of channels of the device. */
312 enum ftdi_interface ft2232_interface = INTERFACE_A;
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000313 /*
314 * The 'H' chips can run with an internal clock of either 12 MHz or 60 MHz,
Nikolai Artemiev518674c2020-06-24 18:53:03 +1000315 * but the non-H chips can only run at 12 MHz. We disable the divide-by-5
316 * prescaler on 'H' chips so they run at 60MHz.
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000317 */
Felix Singer7b83f3c2022-08-19 03:16:19 +0200318 bool clock_5x = true;
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000319 /* In addition to the prescaler mentioned above there is also another
320 * configurable one on all versions of the chips. Its divisor div can be
321 * set by a 16 bit value x according to the following formula:
322 * div = (1 + x) * 2 <-> x = div / 2 - 1
323 * Hence the expressible divisors are all even numbers between 2 and
324 * 2^17 (=131072) resulting in SCK frequencies of 6 MHz down to about
Nikolai Artemiev518674c2020-06-24 18:53:03 +1000325 * 92 Hz for 12 MHz inputs and 30 MHz down to about 458 Hz for 60 MHz
326 * inputs.
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000327 */
328 uint32_t divisor = DEFAULT_DIVISOR;
329 int f;
Harry Johnson9fc8e252021-07-08 14:28:39 -0700330 char *arg, *arg2;
Alex Badea0b94d052010-11-10 03:18:41 +0000331 double mpsse_clk;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000332 uint8_t cs_bits = 0x08;
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200333 uint8_t aux_bits = 0x00;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000334 uint8_t pindir = 0x0b;
Jacek Naglak24e1bbb2022-05-18 02:25:13 +0200335 uint8_t aux_bits_high = 0x00;
336 uint8_t pindir_high = 0x00;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000337
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000338 arg = extract_programmer_param("type");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000339 if (arg) {
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000340 if (!strcasecmp(arg, "2232H")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000341 ft2232_type = FTDI_FT2232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000342 channel_count = 2;
343 } else if (!strcasecmp(arg, "4232H")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000344 ft2232_type = FTDI_FT4232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000345 channel_count = 4;
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000346 } else if (!strcasecmp(arg, "232H")) {
347 ft2232_type = FTDI_FT232H_PID;
348 channel_count = 1;
Charles Parent8efb0b32022-02-28 14:55:58 +0100349 } else if (!strcasecmp(arg, "4233H")) {
350 ft2232_type = FTDI_FT4233H_PID;
351 channel_count = 4;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000352 } else if (!strcasecmp(arg, "jtagkey")) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000353 ft2232_type = AMONTEC_JTAGKEY_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000354 channel_count = 2;
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000355 /* JTAGkey(2) needs to enable its output via Bit4 / GPIOL0
356 * value: 0x18 OE=high, CS=high, DI=low, DO=low, SK=low
357 * dir: 0x1b OE=output, CS=output, DI=input, DO=output, SK=output */
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000358 cs_bits = 0x18;
Uwe Hermann70145292010-07-29 19:57:55 +0000359 pindir = 0x1b;
Samir Ibradžić7189a5f2011-10-20 23:14:10 +0000360 } else if (!strcasecmp(arg, "picotap")) {
361 ft2232_vid = GOEPEL_VID;
362 ft2232_type = GOEPEL_PICOTAP_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000363 channel_count = 2;
Uwe Hermann836b26a2011-10-14 20:33:14 +0000364 } else if (!strcasecmp(arg, "tumpa")) {
365 /* Interface A is SPI1, B is SPI2. */
366 ft2232_type = TIAO_TUMPA_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000367 channel_count = 2;
Stefan Taunerb66ed842014-04-27 05:07:35 +0000368 } else if (!strcasecmp(arg, "tumpalite")) {
369 /* Only one channel is used on lite edition */
370 ft2232_type = TIAO_TUMPA_LITE_PID;
371 channel_count = 1;
Steve Markgraf0528b7f2011-08-12 01:19:32 +0000372 } else if (!strcasecmp(arg, "busblaster")) {
373 /* In its default configuration it is a jtagkey clone */
374 ft2232_type = FTDI_FT2232H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000375 channel_count = 2;
Steve Markgraf0528b7f2011-08-12 01:19:32 +0000376 cs_bits = 0x18;
377 pindir = 0x1b;
Alex Badeacaf2d422010-11-10 03:26:57 +0000378 } else if (!strcasecmp(arg, "openmoko")) {
379 ft2232_vid = FIC_VID;
380 ft2232_type = OPENMOKO_DBGBOARD_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000381 channel_count = 2;
Pete Batardc0207062011-06-11 12:21:37 +0000382 } else if (!strcasecmp(arg, "arm-usb-ocd")) {
383 ft2232_vid = OLIMEX_VID;
384 ft2232_type = OLIMEX_ARM_OCD_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000385 channel_count = 2;
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000386 /* arm-usb-ocd(-h) has an output buffer that needs to be enabled by pulling ADBUS4 low.
387 * value: 0x08 #OE=low, CS=high, DI=low, DO=low, SK=low
388 * dir: 0x1b #OE=output, CS=output, DI=input, DO=output, SK=output */
Paul Fertser3cf335e2011-12-20 02:08:14 +0000389 cs_bits = 0x08;
390 pindir = 0x1b;
Pete Batardc0207062011-06-11 12:21:37 +0000391 } else if (!strcasecmp(arg, "arm-usb-tiny")) {
392 ft2232_vid = OLIMEX_VID;
393 ft2232_type = OLIMEX_ARM_TINY_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000394 channel_count = 2;
Pete Batardc0207062011-06-11 12:21:37 +0000395 } else if (!strcasecmp(arg, "arm-usb-ocd-h")) {
396 ft2232_vid = OLIMEX_VID;
397 ft2232_type = OLIMEX_ARM_OCD_H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000398 channel_count = 2;
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000399 /* See arm-usb-ocd */
Paul Fertser3cf335e2011-12-20 02:08:14 +0000400 cs_bits = 0x08;
401 pindir = 0x1b;
Pete Batardc0207062011-06-11 12:21:37 +0000402 } else if (!strcasecmp(arg, "arm-usb-tiny-h")) {
403 ft2232_vid = OLIMEX_VID;
404 ft2232_type = OLIMEX_ARM_TINY_H_PID;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000405 channel_count = 2;
Todd Broch6800c952016-02-14 15:46:00 +0000406 } else if (!strcasecmp(arg, "google-servo")) {
407 ft2232_vid = GOOGLE_VID;
408 ft2232_type = GOOGLE_SERVO_PID;
409 } else if (!strcasecmp(arg, "google-servo-v2")) {
410 ft2232_vid = GOOGLE_VID;
411 ft2232_type = GOOGLE_SERVO_V2_PID1;
412 /* Default divisor is too fast, and chip ID fails */
413 divisor = 6;
414 } else if (!strcasecmp(arg, "google-servo-v2-legacy")) {
415 ft2232_vid = GOOGLE_VID;
416 ft2232_type = GOOGLE_SERVO_V2_PID0;
Russ Dill7bd31a42019-10-30 00:40:43 -0700417 } else if (!strcasecmp(arg, "flyswatter")) {
418 ft2232_type = FTDI_FT2232H_PID;
419 channel_count = 2;
420 /* Flyswatter and Flyswatter-2 require GPIO bits 0x80
421 * and 0x40 to be driven low to enable output buffers */
422 pindir = 0xcb;
Jacek Naglak24e1bbb2022-05-18 02:25:13 +0200423 } else if (!strcasecmp(arg, "kt-link")) {
424 ft2232_type = KT_LINK_PID;
425 /* port B is used as uart */
426 channel_count = 1;
427 /* Set GPIOL1 output high - route TMS and TDO through multiplexers */
428 aux_bits = 0x20;
429 pindir = 0x2b;
430 /* Set GPIOH4 output low - enable TMS output buffer */
431 /* Set GPIOH5 output low - enable TDI output buffer */
432 /* Set GPIOH6 output low - enable TCK output buffer */
433 pindir_high = 0x70;
Alex Badeacaf2d422010-11-10 03:26:57 +0000434 } else {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000435 msg_perr("Error: Invalid device type specified.\n");
436 free(arg);
Nico Huber2f7c1df2023-03-07 23:36:44 +0000437 return -1;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000438 }
439 }
440 free(arg);
Stefan Tauner3e515e22012-09-26 00:48:16 +0000441
Michael Niewöhnerb50d9eb2021-09-21 19:43:04 +0200442 /* Remember reserved pins before pindir gets modified. */
443 const uint8_t rsv_bits = pindir & 0xf0;
444
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000445 arg = extract_programmer_param("port");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000446 if (arg) {
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000447 switch (toupper((unsigned char)*arg)) {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000448 case 'A':
449 ft2232_interface = INTERFACE_A;
450 break;
451 case 'B':
452 ft2232_interface = INTERFACE_B;
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000453 if (channel_count < 2)
454 channel_count = -1;
455 break;
456 case 'C':
457 ft2232_interface = INTERFACE_C;
458 if (channel_count < 3)
459 channel_count = -1;
460 break;
461 case 'D':
462 ft2232_interface = INTERFACE_D;
463 if (channel_count < 4)
464 channel_count = -1;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000465 break;
466 default:
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000467 channel_count = -1;
468 break;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000469 }
Stefan Taunerd7d423b2012-10-20 09:13:16 +0000470 if (channel_count < 0 || strlen(arg) != 1) {
471 msg_perr("Error: Invalid channel/port/interface specified: \"%s\".\n", arg);
472 free(arg);
Nico Huber2f7c1df2023-03-07 23:36:44 +0000473 return -2;
Stefan Taunerd7d423b2012-10-20 09:13:16 +0000474 }
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000475 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000476 free(arg);
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000477
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000478 arg = extract_programmer_param("divisor");
479 if (arg && strlen(arg)) {
480 unsigned int temp = 0;
481 char *endptr;
482 temp = strtoul(arg, &endptr, 10);
483 if (*endptr || temp < 2 || temp > 131072 || temp & 0x1) {
484 msg_perr("Error: Invalid SPI frequency divisor specified: \"%s\".\n"
485 "Valid are even values between 2 and 131072.\n", arg);
486 free(arg);
Nico Huber2f7c1df2023-03-07 23:36:44 +0000487 return -2;
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000488 }
Elyes HAOUAS712ba3a2019-06-09 17:11:49 +0200489 divisor = (uint32_t)temp;
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000490 }
491 free(arg);
Stefan Tauner3e515e22012-09-26 00:48:16 +0000492
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200493 bool csgpiol_set = false;
Sergey Alirzaev4acc3f32018-08-01 16:39:17 +0300494 arg = extract_programmer_param("csgpiol");
495 if (arg) {
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200496 csgpiol_set = true;
497 msg_pwarn("Deprecation warning: `csgpiol` is deprecated and will be removed "
498 "in the future.\nUse `gpiolX=C` instead.\n");
499
Sergey Alirzaev4acc3f32018-08-01 16:39:17 +0300500 char *endptr;
501 unsigned int temp = strtoul(arg, &endptr, 10);
502 if (*endptr || endptr == arg || temp > 3) {
503 msg_perr("Error: Invalid GPIOL specified: \"%s\".\n"
504 "Valid values are between 0 and 3.\n", arg);
505 free(arg);
Nico Huber2f7c1df2023-03-07 23:36:44 +0000506 return -2;
Sergey Alirzaev4acc3f32018-08-01 16:39:17 +0300507 }
Michael Niewöhnerb50d9eb2021-09-21 19:43:04 +0200508
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200509 unsigned int pin = temp + 4;
Michael Niewöhnerb50d9eb2021-09-21 19:43:04 +0200510 if (rsv_bits & 1 << pin) {
511 msg_perr("Error: Invalid GPIOL specified: \"%s\".\n"
512 "The pin is reserved on this programmer.\n",
513 arg);
514 free(arg);
515 return -2;
516 }
517
Elyes HAOUAS712ba3a2019-06-09 17:11:49 +0200518 cs_bits |= 1 << pin;
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200519 pindir |= 1 << pin;
Sergey Alirzaev4acc3f32018-08-01 16:39:17 +0300520 }
521 free(arg);
522
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200523 /* gpiolX */
524 int pin;
525 for (pin = 0; pin < 4; pin++) {
526 char gpiol_param[7];
527 snprintf(gpiol_param, sizeof(gpiol_param), "gpiol%d", pin);
528 arg = extract_programmer_param(gpiol_param);
529
530 if (!arg)
531 continue;
532
533 if (csgpiol_set) {
534 msg_perr("Error: `csgpiol` and `gpiolX` are mutually exclusive.\n"
535 "Since `csgpiol` is deprecated and will be removed in the "
536 "future, use of `gpiolX=C` is recommended.\n");
537 free(arg);
538 return -2;
539 }
540
541 uint8_t bit = 1 << (pin + 4);
542 if (rsv_bits & bit) {
543 msg_perr("Error: Invalid GPIOL specified: \"gpiol%d=%s\".\n"
544 "Pin GPIOL%i is reserved on this programmer.\n",
545 pin, arg, pin);
546 free(arg);
547 return -2;
548 }
549
550 if (strlen(arg) != 1)
551 goto format_error;
552
553 switch (toupper((unsigned char)arg[0])) {
554 case 'H':
555 aux_bits |= bit;
556 pindir |= bit;
557 break;
558 case 'L':
559 pindir |= bit;
560 break;
561 case 'C':
562 cs_bits |= bit;
563 pindir |= bit;
564 break;
565 default:
566 goto format_error;
567 }
568
569 free(arg);
570 continue;
571
572format_error:
573 msg_perr("Error: Invalid GPIOL specified: \"gpiol%d=%s\".\n"
574 "Valid values are H, L and C.\n"
575 " H - Set GPIOL output high\n"
576 " L - Set GPIOL output low\n"
577 " C - Use GPIOL as additional CS# output\n",
578 pin, arg);
579
580 free(arg);
581 return -2;
582 }
583
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000584 msg_pdbg("Using device type %s %s ",
Uwe Hermann70145292010-07-29 19:57:55 +0000585 get_ft2232_vendorname(ft2232_vid, ft2232_type),
586 get_ft2232_devicename(ft2232_vid, ft2232_type));
Stefan Tauner3e515e22012-09-26 00:48:16 +0000587 msg_pdbg("channel %s.\n",
Stefan Taunerfbc71ac2012-09-26 00:46:02 +0000588 (ft2232_interface == INTERFACE_A) ? "A" :
589 (ft2232_interface == INTERFACE_B) ? "B" :
590 (ft2232_interface == INTERFACE_C) ? "C" : "D");
Paul Fox05dfbe62009-06-16 21:08:06 +0000591
Nico Huber2f7c1df2023-03-07 23:36:44 +0000592 struct ft2232_data *const spi_data = calloc(1, sizeof(*spi_data));
593 if (!spi_data) {
594 msg_perr("Unable to allocate space for SPI master data\n");
595 return SPI_GENERIC_ERROR;
596 }
597
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000598 struct ftdi_context *const ftdic = &spi_data->ftdi_context;
Paul Fox05dfbe62009-06-16 21:08:06 +0000599 if (ftdi_init(ftdic) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000600 msg_perr("ftdi_init failed.\n");
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000601 ret = -3;
602 goto init_err;
Paul Fox05dfbe62009-06-16 21:08:06 +0000603 }
604
Ilya A. Volynets-Evenbakh7c36d522012-08-14 01:32:46 +0000605 if (ftdi_set_interface(ftdic, ft2232_interface) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000606 msg_perr("Unable to select channel (%s).\n", ftdi_get_error_string(ftdic));
Ilya A. Volynets-Evenbakh7c36d522012-08-14 01:32:46 +0000607 }
608
Shik Chen14fbc4b2012-09-17 00:40:54 +0000609 arg = extract_programmer_param("serial");
Harry Johnson9fc8e252021-07-08 14:28:39 -0700610 arg2 = extract_programmer_param("description");
611
612 f = ftdi_usb_open_desc(ftdic, ft2232_vid, ft2232_type, arg2, arg);
613
Shik Chen14fbc4b2012-09-17 00:40:54 +0000614 free(arg);
Harry Johnson9fc8e252021-07-08 14:28:39 -0700615 free(arg2);
Paul Fox05dfbe62009-06-16 21:08:06 +0000616
617 if (f < 0 && f != -5) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000618 msg_perr("Unable to open FTDI device: %d (%s).\n", f, ftdi_get_error_string(ftdic));
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000619 ret = -4;
620 goto init_err;
Paul Fox05dfbe62009-06-16 21:08:06 +0000621 }
622
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000623 if (ftdic->type != TYPE_2232H && ftdic->type != TYPE_4232H && ftdic->type != TYPE_232H) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000624 msg_pdbg("FTDI chip type %d is not high-speed.\n", ftdic->type);
Felix Singer7b83f3c2022-08-19 03:16:19 +0200625 clock_5x = false;
Alex Badea0b94d052010-11-10 03:18:41 +0000626 }
627
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000628 if (ftdi_usb_reset(ftdic) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000629 msg_perr("Unable to reset FTDI device (%s).\n", ftdi_get_error_string(ftdic));
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000630 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000631
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000632 if (ftdi_set_latency_timer(ftdic, 2) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000633 msg_perr("Unable to set latency timer (%s).\n", ftdi_get_error_string(ftdic));
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000634 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000635
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000636 if (ftdi_set_bitmode(ftdic, 0x00, BITMODE_BITBANG_SPI) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000637 msg_perr("Unable to set bitmode to SPI (%s).\n", ftdi_get_error_string(ftdic));
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000638 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000639
Alex Badea0b94d052010-11-10 03:18:41 +0000640 if (clock_5x) {
641 msg_pdbg("Disable divide-by-5 front stage\n");
Nikolai Artemiev518674c2020-06-24 18:53:03 +1000642 buf[0] = DIS_DIV_5;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000643 if (send_buf(ftdic, buf, 1)) {
644 ret = -5;
645 goto ftdi_err;
646 }
Alex Badea0b94d052010-11-10 03:18:41 +0000647 mpsse_clk = 60.0;
648 } else {
649 mpsse_clk = 12.0;
650 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000651
Sean Nelson34b5db72010-01-10 01:08:37 +0000652 msg_pdbg("Set clock divisor\n");
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000653 buf[0] = TCK_DIVISOR;
Ilya A. Volynets-Evenbakh3464d052012-06-14 13:08:33 +0000654 buf[1] = (divisor / 2 - 1) & 0xff;
655 buf[2] = ((divisor / 2 - 1) >> 8) & 0xff;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000656 if (send_buf(ftdic, buf, 3)) {
657 ret = -6;
658 goto ftdi_err;
659 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000660
Samir Ibradžićb482c6d2012-05-15 22:58:19 +0000661 msg_pdbg("MPSSE clock: %f MHz, divisor: %u, SPI clock: %f MHz\n",
662 mpsse_clk, divisor, (double)(mpsse_clk / divisor));
Paul Fox05dfbe62009-06-16 21:08:06 +0000663
Uwe Hermannc67d0372009-10-01 18:40:02 +0000664 /* Disconnect TDI/DO to TDO/DI for loopback. */
Sean Nelson34b5db72010-01-10 01:08:37 +0000665 msg_pdbg("No loopback of TDI/DO TDO/DI\n");
Antony Pavlovb4dd40c2015-01-25 03:52:47 +0000666 buf[0] = LOOPBACK_END;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000667 if (send_buf(ftdic, buf, 1)) {
668 ret = -7;
669 goto ftdi_err;
670 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000671
Sean Nelson34b5db72010-01-10 01:08:37 +0000672 msg_pdbg("Set data bits\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000673 buf[0] = SET_BITS_LOW;
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200674 buf[1] = cs_bits | aux_bits;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000675 buf[2] = pindir;
Uwe Hermann274a20d2011-07-21 09:18:18 +0000676 if (send_buf(ftdic, buf, 3)) {
677 ret = -8;
678 goto ftdi_err;
679 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000680
Jacek Naglak24e1bbb2022-05-18 02:25:13 +0200681 if (pindir_high) {
682 msg_pdbg("Set data bits HighByte\n");
683 buf[0] = SET_BITS_HIGH;
684 buf[1] = aux_bits_high;
685 buf[2] = pindir_high;
686 if (send_buf(ftdic, buf, 3)) {
687 ret = -8;
688 goto ftdi_err;
689 }
690 }
691
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000692 spi_data->cs_bits = cs_bits;
Michael Niewöhnerece63c82021-09-21 20:15:32 +0200693 spi_data->aux_bits = aux_bits;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000694 spi_data->pindir = pindir;
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000695
Nico Huber89569d62023-01-12 23:31:40 +0100696 return register_spi_master(&spi_master_ft2232, 0, spi_data);
Uwe Hermann274a20d2011-07-21 09:18:18 +0000697
698ftdi_err:
699 if ((f = ftdi_usb_close(ftdic)) < 0) {
Stefan Tauner3e515e22012-09-26 00:48:16 +0000700 msg_perr("Unable to close FTDI device: %d (%s)\n", f, ftdi_get_error_string(ftdic));
Uwe Hermann274a20d2011-07-21 09:18:18 +0000701 }
Anastasia Klimchuke8106ba2021-04-12 10:05:57 +1000702init_err:
703 free(spi_data);
Uwe Hermann274a20d2011-07-21 09:18:18 +0000704 return ret;
Paul Fox05dfbe62009-06-16 21:08:06 +0000705}
706
Thomas Heijligencc853d82021-05-04 15:32:17 +0200707const struct programmer_entry programmer_ft2232_spi = {
708 .name = "ft2232_spi",
709 .type = USB,
710 .devs.dev = devs_ft2232spi,
711 .init = ft2232_spi_init,
Thomas Heijligencc853d82021-05-04 15:32:17 +0200712};