blob: 9c29b8018abf48181702fc405e72334215bf23d0 [file] [log] [blame]
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +00001/*
2 * This file is part of the flashrom project.
3 *
Carl-Daniel Hailfinger64263c72012-11-01 23:38:51 +00004 * Copyright (C) 2009, 2010, 2011, 2012 Carl-Daniel Hailfinger
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +000014 */
15
16#include <stdio.h>
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000017#include <strings.h>
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +000018#include <string.h>
Felix Singercf6b7082022-08-18 23:57:31 +020019#include <stdbool.h>
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +000020#include <stdlib.h>
21#include <ctype.h>
Carl-Daniel Hailfingerd2f007f2010-09-16 22:34:25 +000022#include <unistd.h>
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +000023#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000024#include "programmer.h"
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +000025#include "spi.h"
26
27/* Change this to #define if you want to test without a serial implementation */
28#undef FAKE_COMMUNICATION
29
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -060030struct buspirate_speeds {
Carl-Daniel Hailfingerc4224842011-06-09 20:06:34 +000031 const char *name;
32 const int speed;
33};
34
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -060035#define BP_DEFAULTBAUD 115200
36
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +000037#ifndef FAKE_COMMUNICATION
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000038static int buspirate_serialport_setup(char *dev)
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +000039{
40 /* 115200bps, 8 databits, no parity, 1 stopbit */
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -060041 sp_fd = sp_openserport(dev, BP_DEFAULTBAUD);
Elyes HAOUAS124ef382018-03-27 12:15:09 +020042 if (sp_fd == SER_INV_FD)
Niklas Söderlund2a95e872012-07-30 19:42:33 +000043 return 1;
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +000044 return 0;
45}
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +000046#else
47#define buspirate_serialport_setup(...) 0
Carl-Daniel Hailfingerefa151e2010-01-06 16:09:10 +000048#define serialport_shutdown(...) 0
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +000049#define serialport_write(...) 0
50#define serialport_read(...) 0
Patrick Georgi3b6237d2010-01-06 19:09:40 +000051#define sp_flush_incoming(...) 0
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +000052#endif
53
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +100054struct bp_spi_data {
Anastasia Klimchuk346d54d2021-06-10 09:57:51 +100055 unsigned char *commbuf;
56 int commbufsize;
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +100057};
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +000058
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +100059static int buspirate_commbuf_grow(int bufsize, unsigned char **bp_commbuf, int *bp_commbufsize)
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +000060{
61 unsigned char *tmpbuf;
62
63 /* Never shrink. realloc() calls are expensive. */
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +100064 if (bufsize <= *bp_commbufsize)
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +000065 return 0;
66
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +100067 tmpbuf = realloc(*bp_commbuf, bufsize);
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +000068 if (!tmpbuf) {
69 /* Keep the existing buffer because memory is already tight. */
70 msg_perr("Out of memory!\n");
71 return ERROR_OOM;
72 }
73
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +100074 *bp_commbuf = tmpbuf;
75 *bp_commbufsize = bufsize;
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +000076 return 0;
77}
78
Uwe Hermann91f4afa2011-07-28 08:13:25 +000079static int buspirate_sendrecv(unsigned char *buf, unsigned int writecnt,
80 unsigned int readcnt)
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +000081{
Nico Huber519be662018-12-23 20:03:35 +010082 unsigned int i;
83 int ret = 0;
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +000084
Sean Nelson84f7bce2010-01-09 23:56:41 +000085 msg_pspew("%s: write %i, read %i ", __func__, writecnt, readcnt);
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +000086 if (!writecnt && !readcnt) {
Sean Nelson84f7bce2010-01-09 23:56:41 +000087 msg_perr("Zero length command!\n");
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +000088 return 1;
89 }
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +000090 if (writecnt)
91 msg_pspew("Sending");
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +000092 for (i = 0; i < writecnt; i++)
Sean Nelson84f7bce2010-01-09 23:56:41 +000093 msg_pspew(" 0x%02x", buf[i]);
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +000094#ifdef FAKE_COMMUNICATION
95 /* Placate the caller for now. */
96 if (readcnt) {
97 buf[0] = 0x01;
98 memset(buf + 1, 0xff, readcnt - 1);
99 }
100 ret = 0;
101#else
102 if (writecnt)
103 ret = serialport_write(buf, writecnt);
104 if (ret)
105 return ret;
106 if (readcnt)
107 ret = serialport_read(buf, readcnt);
108 if (ret)
109 return ret;
110#endif
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000111 if (readcnt)
112 msg_pspew(", receiving");
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000113 for (i = 0; i < readcnt; i++)
Sean Nelson84f7bce2010-01-09 23:56:41 +0000114 msg_pspew(" 0x%02x", buf[i]);
115 msg_pspew("\n");
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000116 return 0;
117}
118
Jacob Garber4a84ec22019-07-25 19:12:31 -0600119static int buspirate_wait_for_string(unsigned char *buf, const char *key)
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000120{
121 unsigned int keylen = strlen(key);
122 int ret;
123
124 ret = buspirate_sendrecv(buf, 0, keylen);
125 while (!ret) {
126 if (!memcmp(buf, key, keylen))
127 return 0;
128 memmove(buf, buf + 1, keylen - 1);
129 ret = buspirate_sendrecv(buf + keylen - 1, 0, 1);
130 }
131 return ret;
132}
133
Edward O'Callaghan5eca4272020-04-12 17:27:53 +1000134static int buspirate_spi_send_command_v1(const struct flashctx *flash, unsigned int writecnt, unsigned int readcnt,
Carl-Daniel Hailfinger64263c72012-11-01 23:38:51 +0000135 const unsigned char *writearr, unsigned char *readarr);
Edward O'Callaghan5eca4272020-04-12 17:27:53 +1000136static int buspirate_spi_send_command_v2(const struct flashctx *flash, unsigned int writecnt, unsigned int readcnt,
Carl-Daniel Hailfinger64263c72012-11-01 23:38:51 +0000137 const unsigned char *writearr, unsigned char *readarr);
Michael Karcherb9dbe482011-05-11 17:07:07 +0000138
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000139static struct spi_master spi_master_buspirate = {
Nico Huber1cf407b2017-11-10 20:18:23 +0100140 .features = SPI_MASTER_4BA,
Carl-Daniel Hailfinger64263c72012-11-01 23:38:51 +0000141 .max_data_read = MAX_DATA_UNSPECIFIED,
142 .max_data_write = MAX_DATA_UNSPECIFIED,
143 .command = NULL,
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000144 .multicommand = default_spi_send_multicommand,
145 .read = default_spi_read,
146 .write_256 = default_spi_write_256,
Nico Huber7bca1262012-06-15 22:28:12 +0000147 .write_aai = default_spi_write_aai,
Michael Karcherb9dbe482011-05-11 17:07:07 +0000148};
149
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600150static const struct buspirate_speeds spispeeds[] = {
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000151 {"30k", 0x0},
152 {"125k", 0x1},
153 {"250k", 0x2},
154 {"1M", 0x3},
155 {"2M", 0x4},
156 {"2.6M", 0x5},
157 {"4M", 0x6},
158 {"8M", 0x7},
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600159 {NULL, 0x0}
160};
161
162static const struct buspirate_speeds serialspeeds[] = {
163 {"115200", 115200},
164 {"230400", 230400},
165 {"250000", 250000},
166 {"2000000", 2000000},
167 {"2M", 2000000},
168 {NULL, 0}
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000169};
170
David Hendricks8bb20212011-06-14 01:35:36 +0000171static int buspirate_spi_shutdown(void *data)
172{
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +1000173 struct bp_spi_data *bp_data = data;
Anastasia Klimchuk346d54d2021-06-10 09:57:51 +1000174 unsigned char *const bp_commbuf = bp_data->commbuf;
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000175 int ret = 0, ret2 = 0;
176 /* No need to allocate a buffer here, we know that bp_commbuf is at least DEFAULT_BUFSIZE big. */
David Hendricks8bb20212011-06-14 01:35:36 +0000177
178 /* Exit raw SPI mode (enter raw bitbang mode) */
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000179 bp_commbuf[0] = 0x00;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000180 if ((ret = buspirate_sendrecv(bp_commbuf, 1, 0)))
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000181 goto out_shutdown;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000182 if ((ret = buspirate_wait_for_string(bp_commbuf, "BBIO")))
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000183 goto out_shutdown;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000184 if ((ret = buspirate_sendrecv(bp_commbuf, 0, 1)))
185 goto out_shutdown;
186 msg_pdbg("Raw bitbang mode version %c\n", bp_commbuf[0]);
187 if (bp_commbuf[0] != '1') {
188 msg_perr("Can't handle raw bitbang mode version %c!\n", bp_commbuf[0]);
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000189 ret = 1;
190 goto out_shutdown;
David Hendricks8bb20212011-06-14 01:35:36 +0000191 }
192 /* Reset Bus Pirate (return to user terminal) */
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000193 bp_commbuf[0] = 0x0f;
194 ret = buspirate_sendrecv(bp_commbuf, 1, 0);
David Hendricks8bb20212011-06-14 01:35:36 +0000195
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000196out_shutdown:
David Hendricks8bb20212011-06-14 01:35:36 +0000197 /* Shut down serial port communication */
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000198 ret2 = serialport_shutdown(NULL);
199 /* Keep the oldest error, it is probably the best indicator. */
200 if (ret2 && !ret)
201 ret = ret2;
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +1000202
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000203 free(bp_commbuf);
David Hendricks8bb20212011-06-14 01:35:36 +0000204 if (ret)
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000205 msg_pdbg("Bus Pirate shutdown failed.\n");
206 else
207 msg_pdbg("Bus Pirate shutdown completed.\n");
David Hendricks8bb20212011-06-14 01:35:36 +0000208
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +1000209 free(data);
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000210 return ret;
David Hendricks8bb20212011-06-14 01:35:36 +0000211}
212
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000213#define BP_FWVERSION(a,b) ((a) << 8 | (b))
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600214#define BP_HWVERSION(a,b) BP_FWVERSION(a,b)
215
216/**
217 * The Bus Pirate's PIC microcontroller supports custom baud rates by manually specifying a
218 * clock divisor that can be calculated with the formula (16000000 / (4 * baud)) - 1.
219 */
220#define BP_DIVISOR(baud) ((4000000/(baud)) - 1)
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000221
Thomas Heijligencc853d82021-05-04 15:32:17 +0200222static int buspirate_spi_init(void)
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000223{
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000224 char *tmp;
Brian Salcedo30dfdba2013-01-03 20:44:30 +0000225 char *dev;
226 int i;
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600227 int cnt;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000228 unsigned int fw_version_major = 0;
229 unsigned int fw_version_minor = 0;
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600230 unsigned int hw_version_major = 0;
231 unsigned int hw_version_minor = 0;
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000232 int spispeed = 0x7;
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600233 int serialspeed_index = -1;
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000234 int ret = 0;
Felix Singercf6b7082022-08-18 23:57:31 +0200235 bool pullup = false;
236 bool psu = false;
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +1000237 unsigned char *bp_commbuf;
238 int bp_commbufsize;
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000239
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000240 dev = extract_programmer_param("dev");
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000241 if (dev && !strlen(dev)) {
242 free(dev);
243 dev = NULL;
244 }
245 if (!dev) {
246 msg_perr("No serial device given. Use flashrom -p buspirate_spi:dev=/dev/ttyUSB0\n");
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000247 return 1;
248 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000249
Brian Salcedo30dfdba2013-01-03 20:44:30 +0000250 tmp = extract_programmer_param("spispeed");
251 if (tmp) {
252 for (i = 0; spispeeds[i].name; i++) {
253 if (!strncasecmp(spispeeds[i].name, tmp, strlen(spispeeds[i].name))) {
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000254 spispeed = spispeeds[i].speed;
255 break;
256 }
Brian Salcedo30dfdba2013-01-03 20:44:30 +0000257 }
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000258 if (!spispeeds[i].name)
Sean Nelson84f7bce2010-01-09 23:56:41 +0000259 msg_perr("Invalid SPI speed, using default.\n");
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000260 }
Brian Salcedo30dfdba2013-01-03 20:44:30 +0000261 free(tmp);
262
Elyes HAOUASe2c90c42018-08-18 09:04:41 +0200263 /* Extract serialspeed parameter */
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600264 tmp = extract_programmer_param("serialspeed");
265 if (tmp) {
266 for (i = 0; serialspeeds[i].name; i++) {
267 if (!strncasecmp(serialspeeds[i].name, tmp, strlen(serialspeeds[i].name))) {
268 serialspeed_index = i;
269 break;
270 }
271 }
272 if (!serialspeeds[i].name)
273 msg_perr("Invalid serial speed %s, using default.\n", tmp);
274 }
275 free(tmp);
276
Brian Salcedo30dfdba2013-01-03 20:44:30 +0000277 tmp = extract_programmer_param("pullups");
278 if (tmp) {
279 if (strcasecmp("on", tmp) == 0)
Felix Singercf6b7082022-08-18 23:57:31 +0200280 pullup = true;
Brian Salcedo30dfdba2013-01-03 20:44:30 +0000281 else if (strcasecmp("off", tmp) == 0)
282 ; // ignore
283 else
284 msg_perr("Invalid pullups state, not using them.\n");
285 }
286 free(tmp);
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000287
Jeremy Kerr98bdcb42021-05-23 17:58:06 +0800288 tmp = extract_programmer_param("psus");
289 if (tmp) {
290 if (strcasecmp("on", tmp) == 0)
Felix Singercf6b7082022-08-18 23:57:31 +0200291 psu = true;
Jeremy Kerr98bdcb42021-05-23 17:58:06 +0800292 else if (strcasecmp("off", tmp) == 0)
293 ; // ignore
294 else
295 msg_perr("Invalid psus state, not enabling.\n");
296 }
297 free(tmp);
298
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000299 /* Default buffer size is 19: 16 bytes data, 3 bytes control. */
300#define DEFAULT_BUFSIZE (16 + 3)
301 bp_commbuf = malloc(DEFAULT_BUFSIZE);
302 if (!bp_commbuf) {
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000303 msg_perr("Out of memory!\n");
Stefan Reinauer18385912014-04-26 16:12:45 +0000304 free(dev);
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000305 return ERROR_OOM;
306 }
307 bp_commbufsize = DEFAULT_BUFSIZE;
308
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000309 ret = buspirate_serialport_setup(dev);
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000310 free(dev);
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000311 if (ret) {
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000312 free(bp_commbuf);
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000313 return ret;
314 }
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000315
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +1000316
317 struct bp_spi_data *bp_data = calloc(1, sizeof(*bp_data));
318 if (!bp_data) {
319 msg_perr("Unable to allocate space for SPI master data\n");
320 free(bp_commbuf);
321 return 1;
322 }
Anastasia Klimchuk346d54d2021-06-10 09:57:51 +1000323 bp_data->commbuf = bp_commbuf;
324 bp_data->commbufsize = bp_commbufsize;
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +1000325
Carl-Daniel Hailfinger64263c72012-11-01 23:38:51 +0000326 /* This is the brute force version, but it should work.
327 * It is likely to fail if a previous flashrom run was aborted during a write with the new SPI commands
328 * in firmware v5.5 because that firmware may wait for up to 4096 bytes of input before responding to
329 * 0x00 again. The obvious workaround (sending 4096 bytes of \0) may cause significant startup delays.
330 */
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000331 for (i = 0; i < 20; i++) {
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000332 /* Enter raw bitbang mode */
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000333 bp_commbuf[0] = 0x00;
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000334 /* Send the command, don't read the response. */
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000335 ret = buspirate_sendrecv(bp_commbuf, 1, 0);
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000336 if (ret)
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000337 goto init_err_cleanup_exit;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000338 /* The old way to handle responses from a Bus Pirate already in BBIO mode was to flush any
339 * response which came in over serial. Unfortunately that does not work reliably on Linux
340 * with FTDI USB-serial.
341 */
342 //sp_flush_incoming();
343 /* The Bus Pirate can't handle UART input buffer overflow in BBIO mode, and sending a sequence
344 * of 0x00 too fast apparently triggers such an UART input buffer overflow.
345 */
Maksim Kuleshov73dc0db2013-04-05 08:06:10 +0000346 internal_sleep(10000);
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000347 }
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000348 /* We know that 20 commands of \0 should elicit at least one BBIO1 response. */
349 if ((ret = buspirate_wait_for_string(bp_commbuf, "BBIO")))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000350 goto init_err_cleanup_exit;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000351
352 /* Reset the Bus Pirate. */
353 bp_commbuf[0] = 0x0f;
354 /* Send the command, don't read the response. */
355 if ((ret = buspirate_sendrecv(bp_commbuf, 1, 0)))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000356 goto init_err_cleanup_exit;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000357 if ((ret = buspirate_wait_for_string(bp_commbuf, "irate ")))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000358 goto init_err_cleanup_exit;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000359 /* Read the hardware version string. Last byte of the buffer is reserved for \0. */
360 for (i = 0; i < DEFAULT_BUFSIZE - 1; i++) {
361 if ((ret = buspirate_sendrecv(bp_commbuf + i, 0, 1)))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000362 goto init_err_cleanup_exit;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000363 if (strchr("\r\n\t ", bp_commbuf[i]))
364 break;
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000365 }
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000366 bp_commbuf[i] = '\0';
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600367 msg_pdbg("Detected Bus Pirate hardware ");
368 if (bp_commbuf[0] != 'v')
369 msg_pdbg("(unknown version number format)");
370 else if (!strchr("0123456789", bp_commbuf[1]))
371 msg_pdbg("(unknown version number format)");
372 else {
373 hw_version_major = strtoul((char *)bp_commbuf + 1, &tmp, 10);
374 while ((*tmp != '\0') && !strchr("0123456789", *tmp))
375 tmp++;
376 hw_version_minor = strtoul(tmp, NULL, 10);
377 msg_pdbg("%u.%u", hw_version_major, hw_version_minor);
378 }
379 msg_pdbg2(" (\"%s\")", bp_commbuf);
380 msg_pdbg("\n");
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000381
382 if ((ret = buspirate_wait_for_string(bp_commbuf, "irmware ")))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000383 goto init_err_cleanup_exit;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000384 /* Read the firmware version string. Last byte of the buffer is reserved for \0. */
385 for (i = 0; i < DEFAULT_BUFSIZE - 1; i++) {
386 if ((ret = buspirate_sendrecv(bp_commbuf + i, 0, 1)))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000387 goto init_err_cleanup_exit;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000388 if (strchr("\r\n\t ", bp_commbuf[i]))
389 break;
390 }
391 bp_commbuf[i] = '\0';
392 msg_pdbg("Detected Bus Pirate firmware ");
393 if (bp_commbuf[0] != 'v')
394 msg_pdbg("(unknown version number format)");
395 else if (!strchr("0123456789", bp_commbuf[1]))
396 msg_pdbg("(unknown version number format)");
397 else {
398 fw_version_major = strtoul((char *)bp_commbuf + 1, &tmp, 10);
399 while ((*tmp != '\0') && !strchr("0123456789", *tmp))
400 tmp++;
401 fw_version_minor = strtoul(tmp, NULL, 10);
402 msg_pdbg("%u.%u", fw_version_major, fw_version_minor);
403 }
404 msg_pdbg2(" (\"%s\")", bp_commbuf);
405 msg_pdbg("\n");
406
407 if ((ret = buspirate_wait_for_string(bp_commbuf, "HiZ>")))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000408 goto init_err_cleanup_exit;
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600409
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000410 /* Tell the user about missing SPI binary mode in firmware 2.3 and older. */
411 if (BP_FWVERSION(fw_version_major, fw_version_minor) < BP_FWVERSION(2, 4)) {
412 msg_pinfo("Bus Pirate firmware 2.3 and older does not support binary SPI access.\n");
413 msg_pinfo("Please upgrade to the latest firmware (at least 2.4).\n");
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000414 ret = SPI_PROGRAMMER_ERROR;
415 goto init_err_cleanup_exit;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000416 }
417
Carl-Daniel Hailfinger64263c72012-11-01 23:38:51 +0000418 /* Use fast SPI mode in firmware 5.5 and newer. */
419 if (BP_FWVERSION(fw_version_major, fw_version_minor) >= BP_FWVERSION(5, 5)) {
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600420 msg_pdbg("Using SPI command set v2.\n");
Carl-Daniel Hailfinger64263c72012-11-01 23:38:51 +0000421 /* Sensible default buffer size. */
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +1000422 if (buspirate_commbuf_grow(260 + 5, &bp_commbuf, &bp_commbufsize)) {
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000423 ret = ERROR_OOM;
424 goto init_err_cleanup_exit;
425 }
Anastasia Klimchuk346d54d2021-06-10 09:57:51 +1000426 bp_data->commbuf = bp_commbuf;
427 bp_data->commbufsize = bp_commbufsize;
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000428 spi_master_buspirate.max_data_read = 2048;
429 spi_master_buspirate.max_data_write = 256;
430 spi_master_buspirate.command = buspirate_spi_send_command_v2;
Carl-Daniel Hailfinger64263c72012-11-01 23:38:51 +0000431 } else {
432 msg_pinfo("Bus Pirate firmware 5.4 and older does not support fast SPI access.\n");
433 msg_pinfo("Reading/writing a flash chip may take hours.\n");
434 msg_pinfo("It is recommended to upgrade to firmware 5.5 or newer.\n");
435 /* Sensible default buffer size. */
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +1000436 if (buspirate_commbuf_grow(16 + 3, &bp_commbuf, &bp_commbufsize)) {
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000437 ret = ERROR_OOM;
438 goto init_err_cleanup_exit;
439 }
Anastasia Klimchuk346d54d2021-06-10 09:57:51 +1000440 bp_data->commbuf = bp_commbuf;
441 bp_data->commbufsize = bp_commbufsize;
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000442 spi_master_buspirate.max_data_read = 12;
443 spi_master_buspirate.max_data_write = 12;
444 spi_master_buspirate.command = buspirate_spi_send_command_v1;
Carl-Daniel Hailfinger64263c72012-11-01 23:38:51 +0000445 }
446
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000447 /* Workaround for broken speed settings in firmware 6.1 and older. */
448 if (BP_FWVERSION(fw_version_major, fw_version_minor) < BP_FWVERSION(6, 2))
449 if (spispeed > 0x4) {
450 msg_perr("Bus Pirate firmware 6.1 and older does not support SPI speeds above 2 MHz. "
451 "Limiting speed to 2 MHz.\n");
452 msg_pinfo("It is recommended to upgrade to firmware 6.2 or newer.\n");
453 spispeed = 0x4;
454 }
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600455
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000456 /* This works because speeds numbering starts at 0 and is contiguous. */
457 msg_pdbg("SPI speed is %sHz\n", spispeeds[spispeed].name);
458
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600459 /* Set 2M baud serial speed by default on hardware 3.0 and newer if a custom speed was not set */
460 if (serialspeed_index == -1 && BP_HWVERSION(hw_version_major, hw_version_minor) >= BP_HWVERSION(3, 0)) {
461 serialspeed_index = ARRAY_SIZE(serialspeeds) - 2;
462 msg_pdbg("Bus Pirate v3 or newer detected. Set serial speed to 2M baud.\n");
463 }
464
465 /* Set custom serial speed if specified */
466 if (serialspeed_index != -1) {
467 if (BP_FWVERSION(fw_version_major, fw_version_minor) < BP_FWVERSION(5, 5)) {
468 /* This feature requires firmware 5.5 or newer */
469 msg_perr("Bus Pirate firmware 5.4 and older does not support custom serial speeds."
470 "Using default speed of 115200 baud.\n");
471 } else if (serialspeeds[serialspeed_index].speed != BP_DEFAULTBAUD) {
472 /* Set the serial speed to match the user's choice if it doesn't already */
473
474 if (BP_HWVERSION(hw_version_major, hw_version_minor) < BP_HWVERSION(3, 0))
475 msg_pwarn("Increased serial speeds may not work on older (<3.0) Bus Pirates."
476 " Continue at your own risk.\n");
477
478 /* Enter baud rate configuration mode */
479 cnt = snprintf((char *)bp_commbuf, DEFAULT_BUFSIZE, "b\n");
480 if ((ret = buspirate_sendrecv(bp_commbuf, cnt, 0)))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000481 goto init_err_cleanup_exit;
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600482 if ((ret = buspirate_wait_for_string(bp_commbuf, ">")))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000483 goto init_err_cleanup_exit;
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600484
485 /* Enter manual clock divisor entry mode */
486 cnt = snprintf((char *)bp_commbuf, DEFAULT_BUFSIZE, "10\n");
487 if ((ret = buspirate_sendrecv(bp_commbuf, cnt, 0)))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000488 goto init_err_cleanup_exit;
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600489 if ((ret = buspirate_wait_for_string(bp_commbuf, ">")))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000490 goto init_err_cleanup_exit;
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600491
492 /* Set the clock divisor to the value calculated from the user's input */
493 cnt = snprintf((char *)bp_commbuf, DEFAULT_BUFSIZE, "%d\n",
494 BP_DIVISOR(serialspeeds[serialspeed_index].speed));
495
496 if ((ret = buspirate_sendrecv(bp_commbuf, cnt, 0)))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000497 goto init_err_cleanup_exit;
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600498 sleep(1);
499
500 /* Reconfigure the host's serial baud rate to the new value */
501 if ((ret = serialport_config(sp_fd, serialspeeds[serialspeed_index].speed))) {
502 msg_perr("Unable to configure system baud rate to specified value.");
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000503 goto init_err_cleanup_exit;
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600504 }
505
506 /* Return to the main prompt */
507 bp_commbuf[0] = ' ';
508 if ((ret = buspirate_sendrecv(bp_commbuf, 1, 0)))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000509 goto init_err_cleanup_exit;
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600510 if ((ret = buspirate_wait_for_string(bp_commbuf, "HiZ>")))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000511 goto init_err_cleanup_exit;
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600512
513 msg_pdbg("Serial speed is %d baud\n", serialspeeds[serialspeed_index].speed);
514 }
515
516 }
517
518
519
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000520 /* Enter raw bitbang mode */
521 for (i = 0; i < 20; i++) {
522 bp_commbuf[0] = 0x00;
523 if ((ret = buspirate_sendrecv(bp_commbuf, 1, 0)))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000524 goto init_err_cleanup_exit;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000525 }
526 if ((ret = buspirate_wait_for_string(bp_commbuf, "BBIO")))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000527 goto init_err_cleanup_exit;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000528 if ((ret = buspirate_sendrecv(bp_commbuf, 0, 1)))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000529 goto init_err_cleanup_exit;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000530 msg_pdbg("Raw bitbang mode version %c\n", bp_commbuf[0]);
531 if (bp_commbuf[0] != '1') {
532 msg_perr("Can't handle raw bitbang mode version %c!\n", bp_commbuf[0]);
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000533 ret = 1;
534 goto init_err_cleanup_exit;
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000535 }
536 /* Enter raw SPI mode */
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000537 bp_commbuf[0] = 0x01;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000538 ret = buspirate_sendrecv(bp_commbuf, 1, 0);
Anastasia Klimchukee6d5482021-06-24 16:25:43 +1000539 if (ret)
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000540 goto init_err_cleanup_exit;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000541 if ((ret = buspirate_wait_for_string(bp_commbuf, "SPI")))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000542 goto init_err_cleanup_exit;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000543 if ((ret = buspirate_sendrecv(bp_commbuf, 0, 1)))
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000544 goto init_err_cleanup_exit;
Carl-Daniel Hailfingera16a8922012-08-17 17:30:43 +0000545 msg_pdbg("Raw SPI mode version %c\n", bp_commbuf[0]);
546 if (bp_commbuf[0] != '1') {
547 msg_perr("Can't handle raw SPI mode version %c!\n", bp_commbuf[0]);
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000548 ret = 1;
549 goto init_err_cleanup_exit;
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000550 }
551
552 /* Initial setup (SPI peripherals config): Enable power, CS high, AUX */
Brian Salcedo30dfdba2013-01-03 20:44:30 +0000553 bp_commbuf[0] = 0x40 | 0x0b;
Felix Singercf6b7082022-08-18 23:57:31 +0200554 if (pullup) {
Brian Salcedo30dfdba2013-01-03 20:44:30 +0000555 bp_commbuf[0] |= (1 << 2);
556 msg_pdbg("Enabling pull-up resistors.\n");
557 }
Felix Singercf6b7082022-08-18 23:57:31 +0200558 if (psu) {
Jeremy Kerr98bdcb42021-05-23 17:58:06 +0800559 bp_commbuf[0] |= (1 << 3);
560 msg_pdbg("Enabling PSUs.\n");
561 }
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000562 ret = buspirate_sendrecv(bp_commbuf, 1, 1);
Anastasia Klimchukee6d5482021-06-24 16:25:43 +1000563 if (ret)
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000564 goto init_err_cleanup_exit;
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000565 if (bp_commbuf[0] != 0x01) {
Brian Salcedo30dfdba2013-01-03 20:44:30 +0000566 msg_perr("Protocol error while setting power/CS/AUX(/Pull-up resistors)!\n");
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000567 ret = 1;
568 goto init_err_cleanup_exit;
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000569 }
570
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000571 /* Set SPI speed */
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000572 bp_commbuf[0] = 0x60 | spispeed;
573 ret = buspirate_sendrecv(bp_commbuf, 1, 1);
Anastasia Klimchukee6d5482021-06-24 16:25:43 +1000574 if (ret)
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000575 goto init_err_cleanup_exit;
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000576 if (bp_commbuf[0] != 0x01) {
Sean Nelson84f7bce2010-01-09 23:56:41 +0000577 msg_perr("Protocol error while setting SPI speed!\n");
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000578 ret = 1;
579 goto init_err_cleanup_exit;
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000580 }
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600581
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000582 /* Set SPI config: output type, idle, clock edge, sample */
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000583 bp_commbuf[0] = 0x80 | 0xa;
Felix Singercf6b7082022-08-18 23:57:31 +0200584 if (pullup) {
Maxime Vincent2099c642017-11-24 13:04:08 +0100585 bp_commbuf[0] &= ~(1 << 3);
586 msg_pdbg("Pull-ups enabled, so using HiZ pin output! (Open-Drain mode)\n");
587 }
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000588 ret = buspirate_sendrecv(bp_commbuf, 1, 1);
Anastasia Klimchukee6d5482021-06-24 16:25:43 +1000589 if (ret)
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000590 goto init_err_cleanup_exit;
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000591 if (bp_commbuf[0] != 0x01) {
Sean Nelson84f7bce2010-01-09 23:56:41 +0000592 msg_perr("Protocol error while setting SPI config!\n");
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000593 ret = 1;
594 goto init_err_cleanup_exit;
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000595 }
596
597 /* De-assert CS# */
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000598 bp_commbuf[0] = 0x03;
599 ret = buspirate_sendrecv(bp_commbuf, 1, 1);
Anastasia Klimchukee6d5482021-06-24 16:25:43 +1000600 if (ret)
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000601 goto init_err_cleanup_exit;
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000602 if (bp_commbuf[0] != 0x01) {
Sean Nelson84f7bce2010-01-09 23:56:41 +0000603 msg_perr("Protocol error while raising CS#!\n");
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000604 ret = 1;
605 goto init_err_cleanup_exit;
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000606 }
607
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +1000608 if (register_shutdown(buspirate_spi_shutdown, bp_data) != 0) {
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000609 ret = 1;
610 goto init_err_cleanup_exit;
611 }
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +1000612 register_spi_master(&spi_master_buspirate, bp_data);
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000613
614 return 0;
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000615
616init_err_cleanup_exit:
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +1000617 buspirate_spi_shutdown(bp_data);
Anastasia Klimchuk7dcb6f32021-05-24 15:12:10 +1000618 return ret;
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000619}
620
Edward O'Callaghan5eca4272020-04-12 17:27:53 +1000621static int buspirate_spi_send_command_v1(const struct flashctx *flash, unsigned int writecnt, unsigned int readcnt,
Carl-Daniel Hailfinger64263c72012-11-01 23:38:51 +0000622 const unsigned char *writearr, unsigned char *readarr)
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000623{
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +1000624 struct bp_spi_data *bp_data = flash->mst->spi.data;
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000625 unsigned int i = 0;
626 int ret = 0;
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000627
628 if (writecnt > 16 || readcnt > 16 || (readcnt + writecnt) > 16)
629 return SPI_INVALID_LENGTH;
630
Carl-Daniel Hailfinger04e18be2010-07-29 16:24:09 +0000631 /* 3 bytes extra for CS#, len, CS#. */
Anastasia Klimchuk346d54d2021-06-10 09:57:51 +1000632 if (buspirate_commbuf_grow(writecnt + readcnt + 3, &bp_data->commbuf, &bp_data->commbufsize))
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000633 return ERROR_OOM;
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000634
Anastasia Klimchuk346d54d2021-06-10 09:57:51 +1000635 unsigned char *const bp_commbuf = bp_data->commbuf;
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +1000636
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000637 /* Assert CS# */
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000638 bp_commbuf[i++] = 0x02;
Carl-Daniel Hailfinger04e18be2010-07-29 16:24:09 +0000639
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000640 bp_commbuf[i++] = 0x10 | (writecnt + readcnt - 1);
641 memcpy(bp_commbuf + i, writearr, writecnt);
Carl-Daniel Hailfinger04e18be2010-07-29 16:24:09 +0000642 i += writecnt;
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000643 memset(bp_commbuf + i, 0, readcnt);
Carl-Daniel Hailfinger04e18be2010-07-29 16:24:09 +0000644
645 i += readcnt;
646 /* De-assert CS# */
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000647 bp_commbuf[i++] = 0x03;
Carl-Daniel Hailfinger04e18be2010-07-29 16:24:09 +0000648
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000649 ret = buspirate_sendrecv(bp_commbuf, i, i);
Carl-Daniel Hailfinger04e18be2010-07-29 16:24:09 +0000650
651 if (ret) {
652 msg_perr("Bus Pirate communication error!\n");
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000653 return SPI_GENERIC_ERROR;
Carl-Daniel Hailfinger04e18be2010-07-29 16:24:09 +0000654 }
655
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000656 if (bp_commbuf[0] != 0x01) {
Sean Nelson84f7bce2010-01-09 23:56:41 +0000657 msg_perr("Protocol error while lowering CS#!\n");
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000658 return SPI_GENERIC_ERROR;
659 }
660
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000661 if (bp_commbuf[1] != 0x01) {
Sean Nelson84f7bce2010-01-09 23:56:41 +0000662 msg_perr("Protocol error while reading/writing SPI!\n");
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000663 return SPI_GENERIC_ERROR;
664 }
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000665
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000666 if (bp_commbuf[i - 1] != 0x01) {
Sean Nelson84f7bce2010-01-09 23:56:41 +0000667 msg_perr("Protocol error while raising CS#!\n");
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000668 return SPI_GENERIC_ERROR;
669 }
670
Carl-Daniel Hailfinger04e18be2010-07-29 16:24:09 +0000671 /* Skip CS#, length, writearr. */
Carl-Daniel Hailfinger316fdfb2012-06-08 15:27:47 +0000672 memcpy(readarr, bp_commbuf + 2 + writecnt, readcnt);
Carl-Daniel Hailfinger04e18be2010-07-29 16:24:09 +0000673
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000674 return ret;
675}
Carl-Daniel Hailfinger64263c72012-11-01 23:38:51 +0000676
Edward O'Callaghan5eca4272020-04-12 17:27:53 +1000677static int buspirate_spi_send_command_v2(const struct flashctx *flash, unsigned int writecnt, unsigned int readcnt,
Carl-Daniel Hailfinger64263c72012-11-01 23:38:51 +0000678 const unsigned char *writearr, unsigned char *readarr)
679{
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +1000680 struct bp_spi_data *bp_data = flash->mst->spi.data;
Carl-Daniel Hailfinger64263c72012-11-01 23:38:51 +0000681 int i = 0, ret = 0;
682
683 if (writecnt > 4096 || readcnt > 4096 || (readcnt + writecnt) > 4096)
684 return SPI_INVALID_LENGTH;
685
686 /* 5 bytes extra for command, writelen, readlen.
687 * 1 byte extra for Ack/Nack.
688 */
Anastasia Klimchuk346d54d2021-06-10 09:57:51 +1000689 if (buspirate_commbuf_grow(max(writecnt + 5, readcnt + 1), &bp_data->commbuf, &bp_data->commbufsize))
Carl-Daniel Hailfinger64263c72012-11-01 23:38:51 +0000690 return ERROR_OOM;
691
Anastasia Klimchuk346d54d2021-06-10 09:57:51 +1000692 unsigned char *const bp_commbuf = bp_data->commbuf;
Anastasia Klimchukd8f8c992021-05-06 07:47:04 +1000693
Carl-Daniel Hailfinger64263c72012-11-01 23:38:51 +0000694 /* Combined SPI write/read. */
695 bp_commbuf[i++] = 0x04;
696 bp_commbuf[i++] = (writecnt >> 8) & 0xff;
697 bp_commbuf[i++] = writecnt & 0xff;
698 bp_commbuf[i++] = (readcnt >> 8) & 0xff;
699 bp_commbuf[i++] = readcnt & 0xff;
700 memcpy(bp_commbuf + i, writearr, writecnt);
Shawn Anastasio2b5adfb2017-12-31 00:17:15 -0600701
Carl-Daniel Hailfinger64263c72012-11-01 23:38:51 +0000702 ret = buspirate_sendrecv(bp_commbuf, i + writecnt, 1 + readcnt);
703
704 if (ret) {
705 msg_perr("Bus Pirate communication error!\n");
706 return SPI_GENERIC_ERROR;
707 }
708
709 if (bp_commbuf[0] != 0x01) {
710 msg_perr("Protocol error while sending SPI write/read!\n");
711 return SPI_GENERIC_ERROR;
712 }
713
714 /* Skip Ack. */
715 memcpy(readarr, bp_commbuf + 1, readcnt);
716
717 return ret;
Nico Huberdeeac7e2017-04-22 00:09:42 +0200718}
Thomas Heijligencc853d82021-05-04 15:32:17 +0200719
720const struct programmer_entry programmer_buspirate_spi = {
721 .name = "buspirate_spi",
722 .type = OTHER,
723 /* FIXME */
724 .devs.note = "Dangerous Prototypes Bus Pirate\n",
725 .init = buspirate_spi_init,
726 .map_flash_region = fallback_map,
727 .unmap_flash_region = fallback_unmap,
728 .delay = internal_delay,
729};