blob: 7925cee65616e73220843a919341c914fafcb8c6 [file] [log] [blame]
hailfinger37b4fbf2009-06-23 11:33:43 +00001/*
2 * This file is part of the flashrom project.
3 *
stefanct69965b62011-09-15 23:38:14 +00004 * Copyright (C) 2009, 2011 Urja Rannikko <urjaman@gmail.com>
hailfinger37b4fbf2009-06-23 11:33:43 +00005 * Copyright (C) 2009 Carl-Daniel Hailfinger
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
hailfinger4f45a4f2009-08-12 13:32:56 +000022#include <stdio.h>
hailfinger37b4fbf2009-06-23 11:33:43 +000023#include <stdlib.h>
hailfinger4f45a4f2009-08-12 13:32:56 +000024#include <unistd.h>
hailfinger4f45a4f2009-08-12 13:32:56 +000025#include <string.h>
hailfinger37b4fbf2009-06-23 11:33:43 +000026#include <ctype.h>
27#include <fcntl.h>
hailfinger37b4fbf2009-06-23 11:33:43 +000028#include <sys/socket.h>
29#include <arpa/inet.h>
30#include <netinet/in.h>
31#include <netinet/tcp.h>
32#include <netdb.h>
33#include <sys/stat.h>
34#include <errno.h>
hailfinger37b4fbf2009-06-23 11:33:43 +000035#include <inttypes.h>
36#include <termios.h>
hailfinger428f6852010-07-27 22:41:39 +000037#include "flash.h"
38#include "programmer.h"
stefanct69965b62011-09-15 23:38:14 +000039#include "chipdrivers.h"
hailfingerbacbc8b2009-07-21 13:02:59 +000040
stefanctd9ac2212011-10-22 21:45:27 +000041#define MSGHEADER "serprog: "
hailfingerbacbc8b2009-07-21 13:02:59 +000042
dhendrix0ffc2eb2011-06-14 01:35:36 +000043/*
44 * FIXME: This prototype was added to help reduce diffs for the shutdown
45 * registration patch, which shifted many lines of code to place
46 * serprog_shutdown() before serprog_init(). It should be removed soon.
47 */
48static int serprog_shutdown(void *data);
49
hailfingerbacbc8b2009-07-21 13:02:59 +000050#define S_ACK 0x06
51#define S_NAK 0x15
52#define S_CMD_NOP 0x00 /* No operation */
53#define S_CMD_Q_IFACE 0x01 /* Query interface version */
54#define S_CMD_Q_CMDMAP 0x02 /* Query supported commands bitmap */
55#define S_CMD_Q_PGMNAME 0x03 /* Query programmer name */
56#define S_CMD_Q_SERBUF 0x04 /* Query Serial Buffer Size */
57#define S_CMD_Q_BUSTYPE 0x05 /* Query supported bustypes */
58#define S_CMD_Q_CHIPSIZE 0x06 /* Query supported chipsize (2^n format) */
59#define S_CMD_Q_OPBUF 0x07 /* Query operation buffer size */
stefanct371e7e82011-07-07 19:56:58 +000060#define S_CMD_Q_WRNMAXLEN 0x08 /* Query opbuf-write-N maximum length */
hailfingerbacbc8b2009-07-21 13:02:59 +000061#define S_CMD_R_BYTE 0x09 /* Read a single byte */
62#define S_CMD_R_NBYTES 0x0A /* Read n bytes */
63#define S_CMD_O_INIT 0x0B /* Initialize operation buffer */
64#define S_CMD_O_WRITEB 0x0C /* Write opbuf: Write byte with address */
65#define S_CMD_O_WRITEN 0x0D /* Write to opbuf: Write-N */
66#define S_CMD_O_DELAY 0x0E /* Write opbuf: udelay */
67#define S_CMD_O_EXEC 0x0F /* Execute operation buffer */
68#define S_CMD_SYNCNOP 0x10 /* Special no-operation that returns NAK+ACK */
69#define S_CMD_Q_RDNMAXLEN 0x11 /* Query read-n maximum length */
70#define S_CMD_S_BUSTYPE 0x12 /* Set used bustype(s). */
stefanct69965b62011-09-15 23:38:14 +000071#define S_CMD_O_SPIOP 0x13 /* Perform SPI operation. */
hailfingerbacbc8b2009-07-21 13:02:59 +000072
hailfingerbacbc8b2009-07-21 13:02:59 +000073static uint16_t sp_device_serbuf_size = 16;
74static uint16_t sp_device_opbuf_size = 300;
75/* Bitmap of supported commands */
76static uint8_t sp_cmdmap[32];
77
uwe3a3ab2f2010-03-25 23:18:41 +000078/* sp_prev_was_write used to detect writes with contiguous addresses
hailfingerbacbc8b2009-07-21 13:02:59 +000079 and combine them to write-n's */
80static int sp_prev_was_write = 0;
81/* sp_write_n_addr used as the starting addr of the currently
82 combined write-n operation */
83static uint32_t sp_write_n_addr;
84/* The maximum length of an write_n operation; 0 = write-n not supported */
85static uint32_t sp_max_write_n = 0;
86/* The maximum length of a read_n operation; 0 = 2^24 */
87static uint32_t sp_max_read_n = 0;
88
89/* A malloc'd buffer for combining the operation's data
90 and a counter that tells how much data is there. */
91static uint8_t *sp_write_n_buf;
92static uint32_t sp_write_n_bytes = 0;
93
94/* sp_streamed_* used for flow control checking */
95static int sp_streamed_transmit_ops = 0;
96static int sp_streamed_transmit_bytes = 0;
97
98/* sp_opbuf_usage used for counting the amount of
99 on-device operation buffer used */
100static int sp_opbuf_usage = 0;
101/* if true causes sp_docommand to automatically check
102 whether the command is supported before doing it */
103static int sp_check_avail_automatic = 0;
104
hailfingerbacbc8b2009-07-21 13:02:59 +0000105static int sp_opensocket(char *ip, unsigned int port)
106{
107 int flag = 1;
108 struct hostent *hostPtr = NULL;
hailfinger3e454f32009-09-05 01:10:23 +0000109 union { struct sockaddr_in si; struct sockaddr s; } sp = {};
hailfingerbacbc8b2009-07-21 13:02:59 +0000110 int sock;
snelson0afd28b2010-01-10 01:06:23 +0000111 msg_pdbg(MSGHEADER "IP %s port %d\n", ip, port);
hailfingerbacbc8b2009-07-21 13:02:59 +0000112 sock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
113 if (sock < 0)
114 sp_die("Error: serprog cannot open socket");
115 hostPtr = gethostbyname(ip);
116 if (NULL == hostPtr) {
117 hostPtr = gethostbyaddr(ip, strlen(ip), AF_INET);
118 if (NULL == hostPtr)
119 sp_die("Error: cannot resolve");
120 }
hailfinger3e454f32009-09-05 01:10:23 +0000121 sp.si.sin_family = AF_INET;
122 sp.si.sin_port = htons(port);
123 (void)memcpy(&sp.si.sin_addr, hostPtr->h_addr, hostPtr->h_length);
124 if (connect(sock, &sp.s, sizeof(sp.si)) < 0) {
hailfingerbacbc8b2009-07-21 13:02:59 +0000125 close(sock);
126 sp_die("Error: serprog cannot connect");
127 }
128 /* We are latency limited, and sometimes do write-write-read *
129 * (write-n) - so enable TCP_NODELAY. */
130 setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, &flag, sizeof(int));
131 return sock;
132}
133
hailfingerbacbc8b2009-07-21 13:02:59 +0000134static int sp_sync_read_timeout(int loops)
135{
136 int i;
137 unsigned char c;
138 for (i = 0; i < loops; i++) {
139 ssize_t rv;
140 rv = read(sp_fd, &c, 1);
141 if (rv == 1)
142 return c;
143 if ((rv == -1) && (errno != EAGAIN))
144 sp_die("read");
145 usleep(10 * 1000); /* 10ms units */
146 }
147 return -1;
148}
149
uwe3a3ab2f2010-03-25 23:18:41 +0000150/* Synchronize: a bit tricky algorithm that tries to (and in my tests has *
hailfingerbacbc8b2009-07-21 13:02:59 +0000151 * always succeeded in) bring the serial protocol to known waiting-for- *
152 * command state - uses nonblocking read - rest of the driver uses *
153 * blocking read - TODO: add an alarm() timer for the rest of the app on *
154 * serial operations, though not such a big issue as the first thing to *
155 * do is synchronize (eg. check that device is alive). */
156static void sp_synchronize(void)
157{
158 int i;
159 int flags = fcntl(sp_fd, F_GETFL);
160 unsigned char buf[8];
161 flags |= O_NONBLOCK;
162 fcntl(sp_fd, F_SETFL, flags);
163 /* First sends 8 NOPs, then flushes the return data - should cause *
164 * the device serial parser to get to a sane state, unless if it *
165 * is waiting for a real long write-n. */
166 memset(buf, S_CMD_NOP, 8);
167 if (write(sp_fd, buf, 8) != 8)
168 sp_die("flush write");
169 /* A second should be enough to get all the answers to the buffer */
170 usleep(1000 * 1000);
171 sp_flush_incoming();
172
stefanct371e7e82011-07-07 19:56:58 +0000173 /* Then try up to 8 times to send syncnop and get the correct special *
174 * return of NAK+ACK. Timing note: up to 10 characters, 10*50ms = *
175 * up to 500ms per try, 8*0.5s = 4s; +1s (above) = up to 5s sync *
176 * attempt, ~1s if immediate success. */
hailfingerbacbc8b2009-07-21 13:02:59 +0000177 for (i = 0; i < 8; i++) {
178 int n;
179 unsigned char c = S_CMD_SYNCNOP;
180 if (write(sp_fd, &c, 1) != 1)
181 sp_die("sync write");
snelson0afd28b2010-01-10 01:06:23 +0000182 msg_pdbg(".");
hailfingerbacbc8b2009-07-21 13:02:59 +0000183 fflush(stdout);
184 for (n = 0; n < 10; n++) {
stefanct371e7e82011-07-07 19:56:58 +0000185 c = sp_sync_read_timeout(5); /* wait up to 50ms */
hailfingerbacbc8b2009-07-21 13:02:59 +0000186 if (c != S_NAK)
187 continue;
188 c = sp_sync_read_timeout(2);
189 if (c != S_ACK)
190 continue;
191 c = S_CMD_SYNCNOP;
192 if (write(sp_fd, &c, 1) != 1)
193 sp_die("sync write");
194 c = sp_sync_read_timeout(50);
195 if (c != S_NAK)
196 break; /* fail */
197 c = sp_sync_read_timeout(10);
198 if (c != S_ACK)
199 break; /* fail */
200 /* Ok, synchronized; back to blocking reads and return. */
201 flags &= ~O_NONBLOCK;
202 fcntl(sp_fd, F_SETFL, flags);
snelson0afd28b2010-01-10 01:06:23 +0000203 msg_pdbg("\n");
hailfingerbacbc8b2009-07-21 13:02:59 +0000204 return;
205 }
206 }
stefanctd9ac2212011-10-22 21:45:27 +0000207 msg_perr("Error: cannot synchronize protocol "
hailfingerbacbc8b2009-07-21 13:02:59 +0000208 "- check communications and reset device?\n");
209 exit(1);
210}
211
212static int sp_check_commandavail(uint8_t command)
213{
214 int byteoffs, bitoffs;
215 byteoffs = command / 8;
216 bitoffs = command % 8;
217 return (sp_cmdmap[byteoffs] & (1 << bitoffs)) ? 1 : 0;
218}
219
220static int sp_automatic_cmdcheck(uint8_t cmd)
221{
222 if ((sp_check_avail_automatic) && (sp_check_commandavail(cmd) == 0)) {
stefanctd9ac2212011-10-22 21:45:27 +0000223 msg_pdbg("Warning: Automatic command availability check failed "
224 "for cmd 0x%x - won't execute cmd\n", cmd);
hailfingerbacbc8b2009-07-21 13:02:59 +0000225 return 1;
226 }
227 return 0;
228}
229
230static int sp_docommand(uint8_t command, uint32_t parmlen,
stefanctd9ac2212011-10-22 21:45:27 +0000231 uint8_t *params, uint32_t retlen, void *retparms)
hailfingerbacbc8b2009-07-21 13:02:59 +0000232{
hailfingerbacbc8b2009-07-21 13:02:59 +0000233 unsigned char c;
234 if (sp_automatic_cmdcheck(command))
235 return 1;
stefanctd9ac2212011-10-22 21:45:27 +0000236 if (write(sp_fd, &command, 1) != 1)
237 sp_die("Error: cannot write op code");
238 if (write(sp_fd, params, parmlen) != (parmlen))
239 sp_die("Error: cannot write parameters");
hailfingerbacbc8b2009-07-21 13:02:59 +0000240 if (read(sp_fd, &c, 1) != 1)
241 sp_die("Error: cannot read from device");
stefanctd9ac2212011-10-22 21:45:27 +0000242 if (c == S_NAK)
243 return 1;
hailfingerbacbc8b2009-07-21 13:02:59 +0000244 if (c != S_ACK) {
snelson0afd28b2010-01-10 01:06:23 +0000245 msg_perr("Error: invalid response 0x%02X from device\n",c);
hailfingerbacbc8b2009-07-21 13:02:59 +0000246 exit(1);
247 }
248 if (retlen) {
249 int rd_bytes = 0;
250 do {
251 int r;
252 r = read(sp_fd, retparms + rd_bytes,
253 retlen - rd_bytes);
stefanctd9ac2212011-10-22 21:45:27 +0000254 if (r <= 0)
255 sp_die("Error: cannot read return parameters");
hailfingerbacbc8b2009-07-21 13:02:59 +0000256 rd_bytes += r;
257 } while (rd_bytes != retlen);
258 }
259 return 0;
260}
261
262static void sp_flush_stream(void)
263{
264 if (sp_streamed_transmit_ops)
265 do {
266 unsigned char c;
267 if (read(sp_fd, &c, 1) != 1) {
snelson0afd28b2010-01-10 01:06:23 +0000268 sp_die("Error: cannot read from device (flushing stream)");
hailfingerbacbc8b2009-07-21 13:02:59 +0000269 }
270 if (c == S_NAK) {
snelson0afd28b2010-01-10 01:06:23 +0000271 msg_perr("Error: NAK to a stream buffer operation\n");
hailfingerbacbc8b2009-07-21 13:02:59 +0000272 exit(1);
273 }
274 if (c != S_ACK) {
snelson0afd28b2010-01-10 01:06:23 +0000275 msg_perr("Error: Invalid reply 0x%02X from device\n", c);
hailfingerbacbc8b2009-07-21 13:02:59 +0000276 exit(1);
277 }
278 } while (--sp_streamed_transmit_ops);
279 sp_streamed_transmit_ops = 0;
280 sp_streamed_transmit_bytes = 0;
281}
282
283static int sp_stream_buffer_op(uint8_t cmd, uint32_t parmlen, uint8_t * parms)
284{
285 uint8_t *sp;
286 if (sp_automatic_cmdcheck(cmd))
287 return 1;
288 sp = malloc(1 + parmlen);
289 if (!sp) sp_die("Error: cannot malloc command buffer");
290 sp[0] = cmd;
291 memcpy(&(sp[1]), parms, parmlen);
292 if (sp_streamed_transmit_bytes >= (1 + parmlen + sp_device_serbuf_size))
293 sp_flush_stream();
294 if (write(sp_fd, sp, 1 + parmlen) != (1 + parmlen))
295 sp_die("Error: cannot write command");
296 free(sp);
297 sp_streamed_transmit_ops += 1;
298 sp_streamed_transmit_bytes += 1 + parmlen;
299 return 0;
300}
301
hailfinger76bb7e92011-11-09 23:40:00 +0000302static int serprog_spi_send_command(unsigned int writecnt, unsigned int readcnt,
303 const unsigned char *writearr,
304 unsigned char *readarr);
stefanctc5eb8a92011-11-23 09:13:48 +0000305static int serprog_spi_read(struct flashchip *flash, uint8_t *buf,
306 unsigned int start, unsigned int len);
stefanct69965b62011-09-15 23:38:14 +0000307static struct spi_programmer spi_programmer_serprog = {
308 .type = SPI_CONTROLLER_SERPROG,
309 .max_data_read = MAX_DATA_READ_UNLIMITED,
310 .max_data_write = MAX_DATA_WRITE_UNLIMITED,
311 .command = serprog_spi_send_command,
312 .multicommand = default_spi_send_multicommand,
313 .read = serprog_spi_read,
314 .write_256 = default_spi_write_256,
315};
316
hailfinger76bb7e92011-11-09 23:40:00 +0000317static const struct par_programmer par_programmer_serprog = {
318 .chip_readb = serprog_chip_readb,
319 .chip_readw = fallback_chip_readw,
320 .chip_readl = fallback_chip_readl,
321 .chip_readn = serprog_chip_readn,
322 .chip_writeb = serprog_chip_writeb,
323 .chip_writew = fallback_chip_writew,
324 .chip_writel = fallback_chip_writel,
325 .chip_writen = fallback_chip_writen,
326};
327
328static enum chipbustype serprog_buses_supported = BUS_NONE;
329
hailfingerbacbc8b2009-07-21 13:02:59 +0000330int serprog_init(void)
331{
332 uint16_t iface;
hailfingerbacbc8b2009-07-21 13:02:59 +0000333 unsigned char pgmname[17];
334 unsigned char rbuf[3];
335 unsigned char c;
hailfinger1ef766d2010-07-06 09:55:48 +0000336 char *device;
337 char *baudport;
338 int have_device = 0;
hailfingerbacbc8b2009-07-21 13:02:59 +0000339
hailfinger1ef766d2010-07-06 09:55:48 +0000340 /* the parameter is either of format "dev=/dev/device:baud" or "ip=ip:port" */
hailfingerddeb4ac2010-07-08 10:13:37 +0000341 device = extract_programmer_param("dev");
hailfinger1ef766d2010-07-06 09:55:48 +0000342 if (device && strlen(device)) {
343 baudport = strstr(device, ":");
344 if (baudport) {
345 /* Split device from baudrate. */
346 *baudport = '\0';
347 baudport++;
348 }
349 if (!baudport || !strlen(baudport)) {
350 msg_perr("Error: No baudrate specified.\n"
351 "Use flashrom -p serprog:dev=/dev/device:baud\n");
352 free(device);
stefanct69965b62011-09-15 23:38:14 +0000353 return 1;
hailfinger1ef766d2010-07-06 09:55:48 +0000354 }
355 if (strlen(device)) {
356 sp_fd = sp_openserport(device, atoi(baudport));
357 have_device++;
358 }
359 }
360 if (device && !strlen(device)) {
361 msg_perr("Error: No device specified.\n"
362 "Use flashrom -p serprog:dev=/dev/device:baud\n");
363 free(device);
364 return 1;
365 }
366 free(device);
hailfingerbacbc8b2009-07-21 13:02:59 +0000367
hailfingerddeb4ac2010-07-08 10:13:37 +0000368 device = extract_programmer_param("ip");
hailfinger1ef766d2010-07-06 09:55:48 +0000369 if (have_device && device) {
370 msg_perr("Error: Both host and device specified.\n"
371 "Please use either dev= or ip= but not both.\n");
372 free(device);
373 return 1;
374 }
375 if (device && strlen(device)) {
376 baudport = strstr(device, ":");
377 if (baudport) {
378 /* Split host from port. */
379 *baudport = '\0';
380 baudport++;
381 }
382 if (!baudport || !strlen(baudport)) {
383 msg_perr("Error: No port specified.\n"
384 "Use flashrom -p serprog:ip=ipaddr:port\n");
385 free(device);
stefanct69965b62011-09-15 23:38:14 +0000386 return 1;
hailfinger1ef766d2010-07-06 09:55:48 +0000387 }
388 if (strlen(device)) {
389 sp_fd = sp_opensocket(device, atoi(baudport));
390 have_device++;
391 }
392 }
393 if (device && !strlen(device)) {
394 msg_perr("Error: No host specified.\n"
395 "Use flashrom -p serprog:ip=ipaddr:port\n");
396 free(device);
397 return 1;
398 }
399 free(device);
400
401 if (!have_device) {
402 msg_perr("Error: Neither host nor device specified.\n"
403 "Use flashrom -p serprog:dev=/dev/device:baud or "
404 "flashrom -p serprog:ip=ipaddr:port\n");
405 return 1;
406 }
hailfingerbacbc8b2009-07-21 13:02:59 +0000407
dhendrix0ffc2eb2011-06-14 01:35:36 +0000408 if (register_shutdown(serprog_shutdown, NULL))
409 return 1;
410
snelson0afd28b2010-01-10 01:06:23 +0000411 msg_pdbg(MSGHEADER "connected - attempting to synchronize\n");
hailfingerbacbc8b2009-07-21 13:02:59 +0000412
413 sp_check_avail_automatic = 0;
414
415 sp_synchronize();
416
snelson0afd28b2010-01-10 01:06:23 +0000417 msg_pdbg(MSGHEADER "Synchronized\n");
hailfingerbacbc8b2009-07-21 13:02:59 +0000418
419 if (sp_docommand(S_CMD_Q_IFACE, 0, NULL, 2, &iface)) {
stefanctd9ac2212011-10-22 21:45:27 +0000420 msg_perr("Error: NAK to query interface version\n");
hailfinger76bb7e92011-11-09 23:40:00 +0000421 return 1;
hailfingerbacbc8b2009-07-21 13:02:59 +0000422 }
423
424 if (iface != 1) {
stefanctd9ac2212011-10-22 21:45:27 +0000425 msg_perr("Error: Unknown interface version: %d\n", iface);
hailfinger76bb7e92011-11-09 23:40:00 +0000426 return 1;
hailfingerbacbc8b2009-07-21 13:02:59 +0000427 }
428
snelson0afd28b2010-01-10 01:06:23 +0000429 msg_pdbg(MSGHEADER "Interface version ok.\n");
hailfingerbacbc8b2009-07-21 13:02:59 +0000430
431 if (sp_docommand(S_CMD_Q_CMDMAP, 0, NULL, 32, sp_cmdmap)) {
snelson0afd28b2010-01-10 01:06:23 +0000432 msg_perr("Error: query command map not supported\n");
hailfinger76bb7e92011-11-09 23:40:00 +0000433 return 1;
hailfingerbacbc8b2009-07-21 13:02:59 +0000434 }
435
436 sp_check_avail_automatic = 1;
437
hailfinger76bb7e92011-11-09 23:40:00 +0000438 /* FIXME: This assumes that serprog device bustypes are always
439 * identical with flashrom bustype enums and that they all fit
440 * in a single byte.
441 */
stefanct69965b62011-09-15 23:38:14 +0000442 if (sp_docommand(S_CMD_Q_BUSTYPE, 0, NULL, 1, &c)) {
443 msg_perr("Warning: NAK to query supported buses\n");
444 c = BUS_NONSPI; /* A reasonable default for now. */
hailfingerbacbc8b2009-07-21 13:02:59 +0000445 }
hailfinger76bb7e92011-11-09 23:40:00 +0000446 serprog_buses_supported = c;
447
stefanctd9ac2212011-10-22 21:45:27 +0000448 msg_pdbg(MSGHEADER "Bus support: parallel=%s, LPC=%s, FWH=%s, SPI=%s\n",
449 (c & BUS_PARALLEL) ? "on" : "off",
450 (c & BUS_LPC) ? "on" : "off",
451 (c & BUS_FWH) ? "on" : "off",
452 (c & BUS_SPI) ? "on" : "off");
stefanct69965b62011-09-15 23:38:14 +0000453 /* Check for the minimum operational set of commands. */
hailfinger76bb7e92011-11-09 23:40:00 +0000454 if (serprog_buses_supported & BUS_SPI) {
stefanct69965b62011-09-15 23:38:14 +0000455 uint8_t bt = BUS_SPI;
456 if (sp_check_commandavail(S_CMD_O_SPIOP) == 0) {
457 msg_perr("Error: SPI operation not supported while the "
458 "bustype is SPI\n");
hailfinger76bb7e92011-11-09 23:40:00 +0000459 return 1;
stefanct69965b62011-09-15 23:38:14 +0000460 }
461 /* Success of any of these commands is optional. We don't need
462 the programmer to tell us its limits, but if it doesn't, we
463 will assume stuff, so it's in the programmers best interest
464 to tell us. */
465 sp_docommand(S_CMD_S_BUSTYPE, 1, &bt, 0, NULL);
466 if (!sp_docommand(S_CMD_Q_WRNMAXLEN, 0, NULL, 3, rbuf)) {
467 uint32_t v;
468 v = ((unsigned int)(rbuf[0]) << 0);
469 v |= ((unsigned int)(rbuf[1]) << 8);
470 v |= ((unsigned int)(rbuf[2]) << 16);
471 if (v == 0)
472 v = (1 << 24) - 1; /* SPI-op maximum. */
473 spi_programmer_serprog.max_data_write = v;
474 msg_pdbg(MSGHEADER "Maximum write-n length is %d\n", v);
475 }
476 if (!sp_docommand(S_CMD_Q_RDNMAXLEN, 0, NULL, 3, rbuf)) {
477 uint32_t v;
478 v = ((unsigned int)(rbuf[0]) << 0);
479 v |= ((unsigned int)(rbuf[1]) << 8);
480 v |= ((unsigned int)(rbuf[2]) << 16);
481 if (v == 0)
482 v = (1 << 24) - 1; /* SPI-op maximum. */
483 spi_programmer_serprog.max_data_read = v;
484 msg_pdbg(MSGHEADER "Maximum read-n length is %d\n", v);
485 }
hailfinger76bb7e92011-11-09 23:40:00 +0000486 bt = serprog_buses_supported;
stefanct69965b62011-09-15 23:38:14 +0000487 sp_docommand(S_CMD_S_BUSTYPE, 1, &bt, 0, NULL);
hailfingerbacbc8b2009-07-21 13:02:59 +0000488 }
stefanct69965b62011-09-15 23:38:14 +0000489
hailfinger76bb7e92011-11-09 23:40:00 +0000490 if (serprog_buses_supported & BUS_NONSPI) {
stefanct69965b62011-09-15 23:38:14 +0000491 if (sp_check_commandavail(S_CMD_O_INIT) == 0) {
492 msg_perr("Error: Initialize operation buffer "
493 "not supported\n");
hailfinger76bb7e92011-11-09 23:40:00 +0000494 return 1;
stefanct69965b62011-09-15 23:38:14 +0000495 }
496
497 if (sp_check_commandavail(S_CMD_O_DELAY) == 0) {
498 msg_perr("Error: Write to opbuf: "
499 "delay not supported\n");
hailfinger76bb7e92011-11-09 23:40:00 +0000500 return 1;
stefanct69965b62011-09-15 23:38:14 +0000501 }
502
503 /* S_CMD_O_EXEC availability checked later. */
504
505 if (sp_check_commandavail(S_CMD_R_BYTE) == 0) {
506 msg_perr("Error: Single byte read not supported\n");
hailfinger76bb7e92011-11-09 23:40:00 +0000507 return 1;
stefanct69965b62011-09-15 23:38:14 +0000508 }
509 /* This could be translated to single byte reads (if missing),
510 * but now we don't support that. */
511 if (sp_check_commandavail(S_CMD_R_NBYTES) == 0) {
512 msg_perr("Error: Read n bytes not supported\n");
hailfinger76bb7e92011-11-09 23:40:00 +0000513 return 1;
stefanct69965b62011-09-15 23:38:14 +0000514 }
515 if (sp_check_commandavail(S_CMD_O_WRITEB) == 0) {
516 msg_perr("Error: Write to opbuf: "
517 "write byte not supported\n");
hailfinger76bb7e92011-11-09 23:40:00 +0000518 return 1;
stefanct69965b62011-09-15 23:38:14 +0000519 }
520
521 if (sp_docommand(S_CMD_Q_WRNMAXLEN, 0, NULL, 3, rbuf)) {
522 msg_pdbg(MSGHEADER "Write-n not supported");
523 sp_max_write_n = 0;
524 } else {
525 sp_max_write_n = ((unsigned int)(rbuf[0]) << 0);
526 sp_max_write_n |= ((unsigned int)(rbuf[1]) << 8);
527 sp_max_write_n |= ((unsigned int)(rbuf[2]) << 16);
528 if (!sp_max_write_n) {
529 sp_max_write_n = (1 << 24);
530 }
531 msg_pdbg(MSGHEADER "Maximum write-n length is %d\n",
532 sp_max_write_n);
533 sp_write_n_buf = malloc(sp_max_write_n);
534 if (!sp_write_n_buf) {
535 msg_perr("Error: cannot allocate memory for "
536 "Write-n buffer\n");
hailfinger76bb7e92011-11-09 23:40:00 +0000537 return 1;
stefanct69965b62011-09-15 23:38:14 +0000538 }
539 sp_write_n_bytes = 0;
540 }
541
542 if (sp_check_commandavail(S_CMD_Q_RDNMAXLEN) &&
543 (sp_docommand(S_CMD_Q_RDNMAXLEN, 0, NULL, 3, rbuf) == 0)) {
544 sp_max_read_n = ((unsigned int)(rbuf[0]) << 0);
545 sp_max_read_n |= ((unsigned int)(rbuf[1]) << 8);
546 sp_max_read_n |= ((unsigned int)(rbuf[2]) << 16);
547 msg_pdbg(MSGHEADER "Maximum read-n length is %d\n",
548 sp_max_read_n ? sp_max_read_n : (1 << 24));
549 } else {
550 msg_pdbg(MSGHEADER "Maximum read-n length "
551 "not reported\n");
552 sp_max_read_n = 0;
553 }
554
hailfingerbacbc8b2009-07-21 13:02:59 +0000555 }
556
557 if (sp_docommand(S_CMD_Q_PGMNAME, 0, NULL, 16, pgmname)) {
snelson0afd28b2010-01-10 01:06:23 +0000558 msg_perr("Warning: NAK to query programmer name\n");
hailfingerbacbc8b2009-07-21 13:02:59 +0000559 strcpy((char *)pgmname, "(unknown)");
560 }
561 pgmname[16] = 0;
stefanctd9ac2212011-10-22 21:45:27 +0000562 msg_pinfo(MSGHEADER "Programmer name is \"%s\"\n", pgmname);
hailfingerbacbc8b2009-07-21 13:02:59 +0000563
564 if (sp_docommand(S_CMD_Q_SERBUF, 0, NULL, 2, &sp_device_serbuf_size)) {
snelson0afd28b2010-01-10 01:06:23 +0000565 msg_perr("Warning: NAK to query serial buffer size\n");
hailfingerbacbc8b2009-07-21 13:02:59 +0000566 }
stefanctd9ac2212011-10-22 21:45:27 +0000567 msg_pdbg(MSGHEADER "Serial buffer size is %d\n",
hailfingerbacbc8b2009-07-21 13:02:59 +0000568 sp_device_serbuf_size);
569
stefanct69965b62011-09-15 23:38:14 +0000570 if (sp_check_commandavail(S_CMD_O_INIT)) {
571 /* This would be inconsistent. */
572 if (sp_check_commandavail(S_CMD_O_EXEC) == 0) {
573 msg_perr("Error: Execute operation buffer not "
574 "supported\n");
hailfinger76bb7e92011-11-09 23:40:00 +0000575 return 1;
hailfingerbacbc8b2009-07-21 13:02:59 +0000576 }
stefanct69965b62011-09-15 23:38:14 +0000577
578 if (sp_docommand(S_CMD_O_INIT, 0, NULL, 0, NULL)) {
579 msg_perr("Error: NAK to initialize operation buffer\n");
hailfinger76bb7e92011-11-09 23:40:00 +0000580 return 1;
stefanct69965b62011-09-15 23:38:14 +0000581 }
582
583 if (sp_docommand(S_CMD_Q_OPBUF, 0, NULL, 2,
584 &sp_device_opbuf_size)) {
585 msg_perr("Warning: NAK to query operation buffer "
586 "size\n");
587 }
stefanctd9ac2212011-10-22 21:45:27 +0000588 msg_pdbg(MSGHEADER "operation buffer size is %d\n",
stefanct69965b62011-09-15 23:38:14 +0000589 sp_device_opbuf_size);
590 }
hailfingerbacbc8b2009-07-21 13:02:59 +0000591
592 sp_prev_was_write = 0;
593 sp_streamed_transmit_ops = 0;
594 sp_streamed_transmit_bytes = 0;
595 sp_opbuf_usage = 0;
hailfinger76bb7e92011-11-09 23:40:00 +0000596 if (serprog_buses_supported & BUS_SPI)
597 register_spi_programmer(&spi_programmer_serprog);
598 if (serprog_buses_supported & BUS_NONSPI)
599 register_par_programmer(&par_programmer_serprog,
600 serprog_buses_supported & BUS_NONSPI);
hailfingerbacbc8b2009-07-21 13:02:59 +0000601 return 0;
602}
603
604/* Move an in flashrom buffer existing write-n operation to *
605 * the on-device operation buffer. */
606static void sp_pass_writen(void)
607{
608 unsigned char header[7];
snelson0afd28b2010-01-10 01:06:23 +0000609 msg_pspew(MSGHEADER "Passing write-n bytes=%d addr=0x%x\n",
stefanctd9ac2212011-10-22 21:45:27 +0000610 sp_write_n_bytes, sp_write_n_addr);
hailfingerbacbc8b2009-07-21 13:02:59 +0000611 if (sp_streamed_transmit_bytes >=
612 (7 + sp_write_n_bytes + sp_device_serbuf_size))
613 sp_flush_stream();
614 /* In case it's just a single byte send it as a single write. */
615 if (sp_write_n_bytes == 1) {
616 sp_write_n_bytes = 0;
617 header[0] = (sp_write_n_addr >> 0) & 0xFF;
618 header[1] = (sp_write_n_addr >> 8) & 0xFF;
619 header[2] = (sp_write_n_addr >> 16) & 0xFF;
620 header[3] = sp_write_n_buf[0];
621 sp_stream_buffer_op(S_CMD_O_WRITEB, 4, header);
622 sp_opbuf_usage += 5;
623 return;
624 }
625 header[0] = S_CMD_O_WRITEN;
626 header[1] = (sp_write_n_bytes >> 0) & 0xFF;
627 header[2] = (sp_write_n_bytes >> 8) & 0xFF;
628 header[3] = (sp_write_n_bytes >> 16) & 0xFF;
629 header[4] = (sp_write_n_addr >> 0) & 0xFF;
630 header[5] = (sp_write_n_addr >> 8) & 0xFF;
631 header[6] = (sp_write_n_addr >> 16) & 0xFF;
632 if (write(sp_fd, header, 7) != 7)
633 sp_die("Error: cannot write write-n command\n");
634 if (write(sp_fd, sp_write_n_buf, sp_write_n_bytes) !=
635 sp_write_n_bytes)
636 sp_die("Error: cannot write write-n data");
637 sp_streamed_transmit_bytes += 7 + sp_write_n_bytes;
638 sp_streamed_transmit_ops += 1;
639 sp_opbuf_usage += 7 + sp_write_n_bytes;
640 sp_write_n_bytes = 0;
641 sp_prev_was_write = 0;
642}
643
644static void sp_execute_opbuf_noflush(void)
645{
646 if ((sp_max_write_n) && (sp_write_n_bytes))
647 sp_pass_writen();
stepand0d220f2011-01-24 19:15:51 +0000648 sp_stream_buffer_op(S_CMD_O_EXEC, 0, NULL);
snelson0afd28b2010-01-10 01:06:23 +0000649 msg_pspew(MSGHEADER "Executed operation buffer of %d bytes\n",
hailfingerbacbc8b2009-07-21 13:02:59 +0000650 sp_opbuf_usage);
651 sp_opbuf_usage = 0;
652 sp_prev_was_write = 0;
653 return;
654}
655
656static void sp_execute_opbuf(void)
657{
658 sp_execute_opbuf_noflush();
659 sp_flush_stream();
660}
661
dhendrix0ffc2eb2011-06-14 01:35:36 +0000662static int serprog_shutdown(void *data)
hailfingerbacbc8b2009-07-21 13:02:59 +0000663{
snelson0afd28b2010-01-10 01:06:23 +0000664 msg_pspew("%s\n", __func__);
hailfingerbacbc8b2009-07-21 13:02:59 +0000665 if ((sp_opbuf_usage) || (sp_max_write_n && sp_write_n_bytes))
666 sp_execute_opbuf();
667 close(sp_fd);
668 if (sp_max_write_n)
669 free(sp_write_n_buf);
670 return 0;
671}
672
673static void sp_check_opbuf_usage(int bytes_to_be_added)
674{
675 if (sp_device_opbuf_size <= (sp_opbuf_usage + bytes_to_be_added)) {
676 sp_execute_opbuf();
677 /* If this happens in the mid of an page load the page load *
uwe3a3ab2f2010-03-25 23:18:41 +0000678 * will probably fail. */
snelson0afd28b2010-01-10 01:06:23 +0000679 msg_pdbg(MSGHEADER "Warning: executed operation buffer due to size reasons\n");
hailfingerbacbc8b2009-07-21 13:02:59 +0000680 }
681}
682
683void serprog_chip_writeb(uint8_t val, chipaddr addr)
684{
snelson0afd28b2010-01-10 01:06:23 +0000685 msg_pspew("%s\n", __func__);
hailfingerbacbc8b2009-07-21 13:02:59 +0000686 if (sp_max_write_n) {
687 if ((sp_prev_was_write)
688 && (addr == (sp_write_n_addr + sp_write_n_bytes))) {
689 sp_write_n_buf[sp_write_n_bytes++] = val;
690 } else {
691 if ((sp_prev_was_write) && (sp_write_n_bytes))
692 sp_pass_writen();
693 sp_prev_was_write = 1;
694 sp_write_n_addr = addr;
695 sp_write_n_bytes = 1;
696 sp_write_n_buf[0] = val;
697 }
698 sp_check_opbuf_usage(7 + sp_write_n_bytes);
699 if (sp_write_n_bytes >= sp_max_write_n)
700 sp_pass_writen();
701 } else {
702 /* We will have to do single writeb ops. */
703 unsigned char writeb_parm[4];
704 sp_check_opbuf_usage(6);
705 writeb_parm[0] = (addr >> 0) & 0xFF;
706 writeb_parm[1] = (addr >> 8) & 0xFF;
707 writeb_parm[2] = (addr >> 16) & 0xFF;
708 writeb_parm[3] = val;
709 sp_stream_buffer_op(S_CMD_O_WRITEB, 4, writeb_parm);
710 sp_opbuf_usage += 5;
711 }
712}
713
714uint8_t serprog_chip_readb(const chipaddr addr)
715{
716 unsigned char c;
717 unsigned char buf[3];
718 /* Will stream the read operation - eg. add it to the stream buffer, *
719 * then flush the buffer, then read the read answer. */
720 if ((sp_opbuf_usage) || (sp_max_write_n && sp_write_n_bytes))
721 sp_execute_opbuf_noflush();
722 buf[0] = ((addr >> 0) & 0xFF);
723 buf[1] = ((addr >> 8) & 0xFF);
724 buf[2] = ((addr >> 16) & 0xFF);
725 sp_stream_buffer_op(S_CMD_R_BYTE, 3, buf);
726 sp_flush_stream();
727 if (read(sp_fd, &c, 1) != 1)
728 sp_die("readb byteread");
snelson0afd28b2010-01-10 01:06:23 +0000729 msg_pspew("%s addr=0x%lx returning 0x%02X\n", __func__, addr, c);
hailfingerbacbc8b2009-07-21 13:02:59 +0000730 return c;
731}
732
uwe3a3ab2f2010-03-25 23:18:41 +0000733/* Local version that really does the job, doesn't care of max_read_n. */
hailfingerbacbc8b2009-07-21 13:02:59 +0000734static void sp_do_read_n(uint8_t * buf, const chipaddr addr, size_t len)
735{
736 int rd_bytes = 0;
737 unsigned char sbuf[6];
snelson0afd28b2010-01-10 01:06:23 +0000738 msg_pspew("%s: addr=0x%lx len=%lu\n", __func__, addr, (unsigned long)len);
hailfingerbacbc8b2009-07-21 13:02:59 +0000739 /* Stream the read-n -- as above. */
740 if ((sp_opbuf_usage) || (sp_max_write_n && sp_write_n_bytes))
741 sp_execute_opbuf_noflush();
742 sbuf[0] = ((addr >> 0) & 0xFF);
743 sbuf[1] = ((addr >> 8) & 0xFF);
744 sbuf[2] = ((addr >> 16) & 0xFF);
745 sbuf[3] = ((len >> 0) & 0xFF);
746 sbuf[4] = ((len >> 8) & 0xFF);
747 sbuf[5] = ((len >> 16) & 0xFF);
748 sp_stream_buffer_op(S_CMD_R_NBYTES, 6, sbuf);
749 sp_flush_stream();
750 do {
751 int r = read(sp_fd, buf + rd_bytes, len - rd_bytes);
752 if (r <= 0)
753 sp_die("Error: cannot read read-n data");
754 rd_bytes += r;
755 } while (rd_bytes != len);
756 return;
757}
758
759/* The externally called version that makes sure that max_read_n is obeyed. */
760void serprog_chip_readn(uint8_t * buf, const chipaddr addr, size_t len)
761{
762 size_t lenm = len;
763 chipaddr addrm = addr;
stefanctd9ac2212011-10-22 21:45:27 +0000764 while ((sp_max_read_n != 0) && (lenm > sp_max_read_n)) {
765 sp_do_read_n(&(buf[addrm-addr]), addrm, sp_max_read_n);
hailfingerbacbc8b2009-07-21 13:02:59 +0000766 addrm += sp_max_read_n;
767 lenm -= sp_max_read_n;
768 }
stefanctd9ac2212011-10-22 21:45:27 +0000769 if (lenm)
770 sp_do_read_n(&(buf[addrm-addr]), addrm, lenm);
hailfingerbacbc8b2009-07-21 13:02:59 +0000771}
772
stefanctd9ac2212011-10-22 21:45:27 +0000773void serprog_delay(int usecs)
hailfingerbacbc8b2009-07-21 13:02:59 +0000774{
775 unsigned char buf[4];
stefanctd9ac2212011-10-22 21:45:27 +0000776 msg_pspew("%s usecs=%d\n", __func__, usecs);
stefanct69965b62011-09-15 23:38:14 +0000777 if (!sp_check_commandavail(S_CMD_O_DELAY)) {
stefanct69965b62011-09-15 23:38:14 +0000778 msg_pdbg("Note: serprog_delay used, but the programmer doesn't "
779 "support delay\n");
stefanctd9ac2212011-10-22 21:45:27 +0000780 internal_delay(usecs);
stefanct69965b62011-09-15 23:38:14 +0000781 return;
782 }
hailfingerbacbc8b2009-07-21 13:02:59 +0000783 if ((sp_max_write_n) && (sp_write_n_bytes))
784 sp_pass_writen();
785 sp_check_opbuf_usage(5);
stefanctd9ac2212011-10-22 21:45:27 +0000786 buf[0] = ((usecs >> 0) & 0xFF);
787 buf[1] = ((usecs >> 8) & 0xFF);
788 buf[2] = ((usecs >> 16) & 0xFF);
789 buf[3] = ((usecs >> 24) & 0xFF);
hailfingerbacbc8b2009-07-21 13:02:59 +0000790 sp_stream_buffer_op(S_CMD_O_DELAY, 4, buf);
791 sp_opbuf_usage += 5;
792 sp_prev_was_write = 0;
793}
stefanct69965b62011-09-15 23:38:14 +0000794
hailfinger76bb7e92011-11-09 23:40:00 +0000795static int serprog_spi_send_command(unsigned int writecnt, unsigned int readcnt,
stefanct69965b62011-09-15 23:38:14 +0000796 const unsigned char *writearr,
797 unsigned char *readarr)
798{
799 unsigned char *parmbuf;
800 int ret;
801 msg_pspew("%s, writecnt=%i, readcnt=%i\n", __func__, writecnt, readcnt);
802 if ((sp_opbuf_usage) || (sp_max_write_n && sp_write_n_bytes))
803 sp_execute_opbuf();
804 parmbuf = malloc(writecnt + 6);
805 if (!parmbuf)
806 sp_die("Error: cannot malloc SPI send param buffer");
807 parmbuf[0] = (writecnt >> 0) & 0xFF;
808 parmbuf[1] = (writecnt >> 8) & 0xFF;
809 parmbuf[2] = (writecnt >> 16) & 0xFF;
810 parmbuf[3] = (readcnt >> 0) & 0xFF;
811 parmbuf[4] = (readcnt >> 8) & 0xFF;
812 parmbuf[5] = (readcnt >> 16) & 0xFF;
813 memcpy(parmbuf + 6, writearr, writecnt);
814 ret = sp_docommand(S_CMD_O_SPIOP, writecnt + 6, parmbuf, readcnt,
815 readarr);
816 free(parmbuf);
817 return ret;
818}
819
820/* FIXME: This function is optimized so that it does not split each transaction
821 * into chip page_size long blocks unnecessarily like spi_read_chunked. This has
822 * the advantage that it is much faster for most chips, but breaks those with
823 * non-contiguous address space (like AT45DB161D). When spi_read_chunked is
824 * fixed this method can be removed. */
stefanctc5eb8a92011-11-23 09:13:48 +0000825static int serprog_spi_read(struct flashchip *flash, uint8_t *buf, unsigned int start, unsigned int len)
stefanct69965b62011-09-15 23:38:14 +0000826{
stefanctc5eb8a92011-11-23 09:13:48 +0000827 unsigned int i, cur_len;
828 const unsigned int max_read = spi_programmer_serprog.max_data_read;
stefanct69965b62011-09-15 23:38:14 +0000829 for (i = 0; i < len; i += cur_len) {
830 int ret;
831 cur_len = min(max_read, (len - i));
832 ret = spi_nbyte_read(start + i, buf + i, cur_len);
833 if (ret)
834 return ret;
835 }
836 return 0;
837}