blob: 8f3dfda964c45da611177e4881c6e80f7ab433a5 [file] [log] [blame]
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +00001/*
2 * This file is part of the flashrom project.
3 *
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +00004 * Copyright (C) 2009,2010 Carl-Daniel Hailfinger
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +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
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +00008 * the Free Software Foundation; version 2 of the License.
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +00009 *
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 Hailfingerc3129202009-05-09 00:54:55 +000014 */
15
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000016#include <string.h>
17#include <stdlib.h>
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +000018#include <stdio.h>
19#include <ctype.h>
Stefan Tauner5e695ab2012-05-06 17:03:40 +000020#include <errno.h>
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000021#include "flash.h"
Carl-Daniel Hailfinger1b0ba892010-06-20 10:58:32 +000022#include "chipdrivers.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000023#include "programmer.h"
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000024
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +000025/* Remove the #define below if you don't want SPI flash chip emulation. */
26#define EMULATE_SPI_CHIP 1
27
28#if EMULATE_SPI_CHIP
29#define EMULATE_CHIP 1
30#include "spi.h"
31#endif
32
33#if EMULATE_CHIP
34#include <sys/types.h>
35#include <sys/stat.h>
36#endif
37
38#if EMULATE_CHIP
39static uint8_t *flashchip_contents = NULL;
40enum emu_chip {
41 EMULATE_NONE,
42 EMULATE_ST_M25P10_RES,
43 EMULATE_SST_SST25VF040_REMS,
44 EMULATE_SST_SST25VF032B,
Stefan Tauner0b9df972012-05-07 22:12:16 +000045 EMULATE_MACRONIX_MX25L6436,
Nico Huberf9632d82019-01-20 11:23:49 +010046 EMULATE_WINBOND_W25Q128FV,
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +000047};
48static enum emu_chip emu_chip = EMULATE_NONE;
49static char *emu_persistent_image = NULL;
Stefan Taunerc69c9c82011-11-23 09:13:48 +000050static unsigned int emu_chip_size = 0;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +000051#if EMULATE_SPI_CHIP
Stefan Taunerc69c9c82011-11-23 09:13:48 +000052static unsigned int emu_max_byteprogram_size = 0;
53static unsigned int emu_max_aai_size = 0;
54static unsigned int emu_jedec_se_size = 0;
55static unsigned int emu_jedec_be_52_size = 0;
56static unsigned int emu_jedec_be_d8_size = 0;
57static unsigned int emu_jedec_ce_60_size = 0;
58static unsigned int emu_jedec_ce_c7_size = 0;
Jacob Garberafc3ad62019-06-24 16:05:28 -060059static unsigned char spi_blacklist[256];
60static unsigned char spi_ignorelist[256];
61static int spi_blacklist_size = 0;
62static int spi_ignorelist_size = 0;
Stefan Tauner5e695ab2012-05-06 17:03:40 +000063static uint8_t emu_status = 0;
Stefan Tauner0b9df972012-05-07 22:12:16 +000064
65/* A legit complete SFDP table based on the MX25L6436E (rev. 1.8) datasheet. */
Stefan Tauner67d163d2013-01-15 17:37:48 +000066static const uint8_t sfdp_table[] = {
Stefan Tauner0b9df972012-05-07 22:12:16 +000067 0x53, 0x46, 0x44, 0x50, // @0x00: SFDP signature
68 0x00, 0x01, 0x01, 0xFF, // @0x04: revision 1.0, 2 headers
69 0x00, 0x00, 0x01, 0x09, // @0x08: JEDEC SFDP header rev. 1.0, 9 DW long
70 0x1C, 0x00, 0x00, 0xFF, // @0x0C: PTP0 = 0x1C (instead of 0x30)
71 0xC2, 0x00, 0x01, 0x04, // @0x10: Macronix header rev. 1.0, 4 DW long
72 0x48, 0x00, 0x00, 0xFF, // @0x14: PTP1 = 0x48 (instead of 0x60)
73 0xFF, 0xFF, 0xFF, 0xFF, // @0x18: hole.
74 0xE5, 0x20, 0xC9, 0xFF, // @0x1C: SFDP parameter table start
75 0xFF, 0xFF, 0xFF, 0x03, // @0x20
76 0x00, 0xFF, 0x08, 0x6B, // @0x24
77 0x08, 0x3B, 0x00, 0xFF, // @0x28
78 0xEE, 0xFF, 0xFF, 0xFF, // @0x2C
79 0xFF, 0xFF, 0x00, 0x00, // @0x30
80 0xFF, 0xFF, 0x00, 0xFF, // @0x34
81 0x0C, 0x20, 0x0F, 0x52, // @0x38
82 0x10, 0xD8, 0x00, 0xFF, // @0x3C: SFDP parameter table end
83 0xFF, 0xFF, 0xFF, 0xFF, // @0x40: hole.
84 0xFF, 0xFF, 0xFF, 0xFF, // @0x44: hole.
85 0x00, 0x36, 0x00, 0x27, // @0x48: Macronix parameter table start
86 0xF4, 0x4F, 0xFF, 0xFF, // @0x4C
87 0xD9, 0xC8, 0xFF, 0xFF, // @0x50
88 0xFF, 0xFF, 0xFF, 0xFF, // @0x54: Macronix parameter table end
89};
90
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +000091#endif
92#endif
93
Stefan Taunerc69c9c82011-11-23 09:13:48 +000094static unsigned int spi_write_256_chunksize = 256;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +000095
Mark Marshallf20b7be2014-05-09 21:16:21 +000096static int dummy_spi_send_command(struct flashctx *flash, unsigned int writecnt, unsigned int readcnt,
97 const unsigned char *writearr, unsigned char *readarr);
98static int dummy_spi_write_256(struct flashctx *flash, const uint8_t *buf,
Stefan Taunerc69c9c82011-11-23 09:13:48 +000099 unsigned int start, unsigned int len);
Mark Marshallf20b7be2014-05-09 21:16:21 +0000100static void dummy_chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr);
101static void dummy_chip_writew(const struct flashctx *flash, uint16_t val, chipaddr addr);
102static void dummy_chip_writel(const struct flashctx *flash, uint32_t val, chipaddr addr);
103static void dummy_chip_writen(const struct flashctx *flash, const uint8_t *buf, chipaddr addr, size_t len);
104static uint8_t dummy_chip_readb(const struct flashctx *flash, const chipaddr addr);
105static uint16_t dummy_chip_readw(const struct flashctx *flash, const chipaddr addr);
106static uint32_t dummy_chip_readl(const struct flashctx *flash, const chipaddr addr);
107static void dummy_chip_readn(const struct flashctx *flash, uint8_t *buf, const chipaddr addr, size_t len);
Michael Karcherb9dbe482011-05-11 17:07:07 +0000108
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000109static const struct spi_master spi_master_dummyflasher = {
Nico Huber1cf407b2017-11-10 20:18:23 +0100110 .features = SPI_MASTER_4BA,
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000111 .max_data_read = MAX_DATA_READ_UNLIMITED,
112 .max_data_write = MAX_DATA_UNSPECIFIED,
113 .command = dummy_spi_send_command,
114 .multicommand = default_spi_send_multicommand,
115 .read = default_spi_read,
116 .write_256 = dummy_spi_write_256,
Nico Huber7bca1262012-06-15 22:28:12 +0000117 .write_aai = default_spi_write_aai,
Michael Karcherb9dbe482011-05-11 17:07:07 +0000118};
David Hendricks8bb20212011-06-14 01:35:36 +0000119
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000120static const struct par_master par_master_dummy = {
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000121 .chip_readb = dummy_chip_readb,
122 .chip_readw = dummy_chip_readw,
123 .chip_readl = dummy_chip_readl,
124 .chip_readn = dummy_chip_readn,
125 .chip_writeb = dummy_chip_writeb,
126 .chip_writew = dummy_chip_writew,
127 .chip_writel = dummy_chip_writel,
128 .chip_writen = dummy_chip_writen,
129};
130
Jacob Garberafc3ad62019-06-24 16:05:28 -0600131static enum chipbustype dummy_buses_supported = BUS_NONE;
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000132
David Hendricks8bb20212011-06-14 01:35:36 +0000133static int dummy_shutdown(void *data)
134{
135 msg_pspew("%s\n", __func__);
136#if EMULATE_CHIP
137 if (emu_chip != EMULATE_NONE) {
138 if (emu_persistent_image) {
139 msg_pdbg("Writing %s\n", emu_persistent_image);
Stefan Taunere0ff1652012-09-22 22:56:09 +0000140 write_buf_to_file(flashchip_contents, emu_chip_size, emu_persistent_image);
141 free(emu_persistent_image);
142 emu_persistent_image = NULL;
David Hendricks8bb20212011-06-14 01:35:36 +0000143 }
144 free(flashchip_contents);
145 }
146#endif
147 return 0;
148}
149
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000150int dummy_init(void)
151{
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000152 char *bustext = NULL;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000153 char *tmp = NULL;
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +0000154 int i;
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000155#if EMULATE_SPI_CHIP
156 char *status = NULL;
157#endif
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000158#if EMULATE_CHIP
159 struct stat image_stat;
160#endif
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000161
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000162 msg_pspew("%s\n", __func__);
Carl-Daniel Hailfinger3504b532009-06-01 00:02:11 +0000163
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000164 bustext = extract_programmer_param("bus");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000165 msg_pdbg("Requested buses are: %s\n", bustext ? bustext : "default");
166 if (!bustext)
167 bustext = strdup("parallel+lpc+fwh+spi");
Carl-Daniel Hailfinger3504b532009-06-01 00:02:11 +0000168 /* Convert the parameters to lowercase. */
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000169 tolower_string(bustext);
Carl-Daniel Hailfinger3504b532009-06-01 00:02:11 +0000170
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000171 dummy_buses_supported = BUS_NONE;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000172 if (strstr(bustext, "parallel")) {
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000173 dummy_buses_supported |= BUS_PARALLEL;
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000174 msg_pdbg("Enabling support for %s flash.\n", "parallel");
Carl-Daniel Hailfinger3504b532009-06-01 00:02:11 +0000175 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000176 if (strstr(bustext, "lpc")) {
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000177 dummy_buses_supported |= BUS_LPC;
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000178 msg_pdbg("Enabling support for %s flash.\n", "LPC");
Carl-Daniel Hailfinger3504b532009-06-01 00:02:11 +0000179 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000180 if (strstr(bustext, "fwh")) {
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000181 dummy_buses_supported |= BUS_FWH;
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000182 msg_pdbg("Enabling support for %s flash.\n", "FWH");
Carl-Daniel Hailfinger3504b532009-06-01 00:02:11 +0000183 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000184 if (strstr(bustext, "spi")) {
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000185 dummy_buses_supported |= BUS_SPI;
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000186 msg_pdbg("Enabling support for %s flash.\n", "SPI");
Carl-Daniel Hailfinger3504b532009-06-01 00:02:11 +0000187 }
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000188 if (dummy_buses_supported == BUS_NONE)
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000189 msg_pdbg("Support for all flash bus types disabled.\n");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000190 free(bustext);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000191
192 tmp = extract_programmer_param("spi_write_256_chunksize");
193 if (tmp) {
194 spi_write_256_chunksize = atoi(tmp);
195 free(tmp);
196 if (spi_write_256_chunksize < 1) {
197 msg_perr("invalid spi_write_256_chunksize\n");
198 return 1;
199 }
200 }
201
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +0000202 tmp = extract_programmer_param("spi_blacklist");
203 if (tmp) {
204 i = strlen(tmp);
205 if (!strncmp(tmp, "0x", 2)) {
206 i -= 2;
207 memmove(tmp, tmp + 2, i + 1);
208 }
209 if ((i > 512) || (i % 2)) {
210 msg_perr("Invalid SPI command blacklist length\n");
211 free(tmp);
212 return 1;
213 }
214 spi_blacklist_size = i / 2;
215 for (i = 0; i < spi_blacklist_size * 2; i++) {
216 if (!isxdigit((unsigned char)tmp[i])) {
217 msg_perr("Invalid char \"%c\" in SPI command "
218 "blacklist\n", tmp[i]);
219 free(tmp);
220 return 1;
221 }
222 }
223 for (i = 0; i < spi_blacklist_size; i++) {
Carl-Daniel Hailfinger5b554712012-02-16 01:43:06 +0000224 unsigned int tmp2;
225 /* SCNx8 is apparently not supported by MSVC (and thus
226 * MinGW), so work around it with an extra variable
227 */
228 sscanf(tmp + i * 2, "%2x", &tmp2);
229 spi_blacklist[i] = (uint8_t)tmp2;
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +0000230 }
231 msg_pdbg("SPI blacklist is ");
232 for (i = 0; i < spi_blacklist_size; i++)
233 msg_pdbg("%02x ", spi_blacklist[i]);
234 msg_pdbg(", size %i\n", spi_blacklist_size);
235 }
236 free(tmp);
237
238 tmp = extract_programmer_param("spi_ignorelist");
239 if (tmp) {
240 i = strlen(tmp);
241 if (!strncmp(tmp, "0x", 2)) {
242 i -= 2;
243 memmove(tmp, tmp + 2, i + 1);
244 }
245 if ((i > 512) || (i % 2)) {
246 msg_perr("Invalid SPI command ignorelist length\n");
247 free(tmp);
248 return 1;
249 }
250 spi_ignorelist_size = i / 2;
251 for (i = 0; i < spi_ignorelist_size * 2; i++) {
252 if (!isxdigit((unsigned char)tmp[i])) {
253 msg_perr("Invalid char \"%c\" in SPI command "
254 "ignorelist\n", tmp[i]);
255 free(tmp);
256 return 1;
257 }
258 }
259 for (i = 0; i < spi_ignorelist_size; i++) {
Carl-Daniel Hailfinger5b554712012-02-16 01:43:06 +0000260 unsigned int tmp2;
261 /* SCNx8 is apparently not supported by MSVC (and thus
262 * MinGW), so work around it with an extra variable
263 */
264 sscanf(tmp + i * 2, "%2x", &tmp2);
265 spi_ignorelist[i] = (uint8_t)tmp2;
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +0000266 }
267 msg_pdbg("SPI ignorelist is ");
268 for (i = 0; i < spi_ignorelist_size; i++)
269 msg_pdbg("%02x ", spi_ignorelist[i]);
270 msg_pdbg(", size %i\n", spi_ignorelist_size);
271 }
272 free(tmp);
273
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000274#if EMULATE_CHIP
275 tmp = extract_programmer_param("emulate");
276 if (!tmp) {
277 msg_pdbg("Not emulating any flash chip.\n");
278 /* Nothing else to do. */
David Hendricks8bb20212011-06-14 01:35:36 +0000279 goto dummy_init_out;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000280 }
281#if EMULATE_SPI_CHIP
282 if (!strcmp(tmp, "M25P10.RES")) {
283 emu_chip = EMULATE_ST_M25P10_RES;
284 emu_chip_size = 128 * 1024;
285 emu_max_byteprogram_size = 128;
286 emu_max_aai_size = 0;
287 emu_jedec_se_size = 0;
288 emu_jedec_be_52_size = 0;
289 emu_jedec_be_d8_size = 32 * 1024;
290 emu_jedec_ce_60_size = 0;
291 emu_jedec_ce_c7_size = emu_chip_size;
292 msg_pdbg("Emulating ST M25P10.RES SPI flash chip (RES, page "
293 "write)\n");
294 }
295 if (!strcmp(tmp, "SST25VF040.REMS")) {
296 emu_chip = EMULATE_SST_SST25VF040_REMS;
297 emu_chip_size = 512 * 1024;
298 emu_max_byteprogram_size = 1;
299 emu_max_aai_size = 0;
300 emu_jedec_se_size = 4 * 1024;
301 emu_jedec_be_52_size = 32 * 1024;
302 emu_jedec_be_d8_size = 0;
303 emu_jedec_ce_60_size = emu_chip_size;
304 emu_jedec_ce_c7_size = 0;
305 msg_pdbg("Emulating SST SST25VF040.REMS SPI flash chip (REMS, "
306 "byte write)\n");
307 }
308 if (!strcmp(tmp, "SST25VF032B")) {
309 emu_chip = EMULATE_SST_SST25VF032B;
310 emu_chip_size = 4 * 1024 * 1024;
311 emu_max_byteprogram_size = 1;
312 emu_max_aai_size = 2;
313 emu_jedec_se_size = 4 * 1024;
314 emu_jedec_be_52_size = 32 * 1024;
315 emu_jedec_be_d8_size = 64 * 1024;
316 emu_jedec_ce_60_size = emu_chip_size;
317 emu_jedec_ce_c7_size = emu_chip_size;
318 msg_pdbg("Emulating SST SST25VF032B SPI flash chip (RDID, AAI "
319 "write)\n");
320 }
Stefan Tauner0b9df972012-05-07 22:12:16 +0000321 if (!strcmp(tmp, "MX25L6436")) {
322 emu_chip = EMULATE_MACRONIX_MX25L6436;
323 emu_chip_size = 8 * 1024 * 1024;
324 emu_max_byteprogram_size = 256;
325 emu_max_aai_size = 0;
326 emu_jedec_se_size = 4 * 1024;
327 emu_jedec_be_52_size = 32 * 1024;
328 emu_jedec_be_d8_size = 64 * 1024;
329 emu_jedec_ce_60_size = emu_chip_size;
330 emu_jedec_ce_c7_size = emu_chip_size;
331 msg_pdbg("Emulating Macronix MX25L6436 SPI flash chip (RDID, "
332 "SFDP)\n");
333 }
Nico Huberf9632d82019-01-20 11:23:49 +0100334 if (!strcmp(tmp, "W25Q128FV")) {
335 emu_chip = EMULATE_WINBOND_W25Q128FV;
336 emu_chip_size = 16 * 1024 * 1024;
337 emu_max_byteprogram_size = 256;
338 emu_max_aai_size = 0;
339 emu_jedec_se_size = 4 * 1024;
340 emu_jedec_be_52_size = 32 * 1024;
341 emu_jedec_be_d8_size = 64 * 1024;
342 emu_jedec_ce_60_size = emu_chip_size;
343 emu_jedec_ce_c7_size = emu_chip_size;
344 msg_pdbg("Emulating Winbond W25Q128FV SPI flash chip (RDID)\n");
345 }
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000346#endif
347 if (emu_chip == EMULATE_NONE) {
348 msg_perr("Invalid chip specified for emulation: %s\n", tmp);
349 free(tmp);
350 return 1;
351 }
352 free(tmp);
353 flashchip_contents = malloc(emu_chip_size);
354 if (!flashchip_contents) {
355 msg_perr("Out of memory!\n");
356 return 1;
357 }
David Hendricks8bb20212011-06-14 01:35:36 +0000358
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000359#ifdef EMULATE_SPI_CHIP
360 status = extract_programmer_param("spi_status");
361 if (status) {
362 char *endptr;
363 errno = 0;
364 emu_status = strtoul(status, &endptr, 0);
365 free(status);
366 if (errno != 0 || status == endptr) {
367 msg_perr("Error: initial status register specified, "
368 "but the value could not be converted.\n");
369 return 1;
370 }
371 msg_pdbg("Initial status register is set to 0x%02x.\n",
372 emu_status);
373 }
374#endif
375
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000376 msg_pdbg("Filling fake flash chip with 0xff, size %i\n", emu_chip_size);
377 memset(flashchip_contents, 0xff, emu_chip_size);
378
Stefan Taunerc2eec2c2014-05-03 21:33:01 +0000379 /* Will be freed by shutdown function if necessary. */
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000380 emu_persistent_image = extract_programmer_param("image");
381 if (!emu_persistent_image) {
382 /* Nothing else to do. */
David Hendricks8bb20212011-06-14 01:35:36 +0000383 goto dummy_init_out;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000384 }
Stefan Taunerc2eec2c2014-05-03 21:33:01 +0000385 /* We will silently (in default verbosity) ignore the file if it does not exist (yet) or the size does
386 * not match the emulated chip. */
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000387 if (!stat(emu_persistent_image, &image_stat)) {
Stefan Tauner23e10b82016-01-23 16:16:49 +0000388 msg_pdbg("Found persistent image %s, %jd B ",
389 emu_persistent_image, (intmax_t)image_stat.st_size);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000390 if (image_stat.st_size == emu_chip_size) {
391 msg_pdbg("matches.\n");
392 msg_pdbg("Reading %s\n", emu_persistent_image);
393 read_buf_from_file(flashchip_contents, emu_chip_size,
394 emu_persistent_image);
395 } else {
396 msg_pdbg("doesn't match.\n");
397 }
398 }
399#endif
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000400
David Hendricks8bb20212011-06-14 01:35:36 +0000401dummy_init_out:
402 if (register_shutdown(dummy_shutdown, NULL)) {
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000403 free(flashchip_contents);
David Hendricks8bb20212011-06-14 01:35:36 +0000404 return 1;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000405 }
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000406 if (dummy_buses_supported & (BUS_PARALLEL | BUS_LPC | BUS_FWH))
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000407 register_par_master(&par_master_dummy,
408 dummy_buses_supported & (BUS_PARALLEL | BUS_LPC | BUS_FWH));
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000409 if (dummy_buses_supported & BUS_SPI)
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000410 register_spi_master(&spi_master_dummyflasher);
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000411
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000412 return 0;
413}
414
Stefan Tauner305e0b92013-07-17 23:46:44 +0000415void *dummy_map(const char *descr, uintptr_t phys_addr, size_t len)
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000416{
Stefan Taunerc2eec2c2014-05-03 21:33:01 +0000417 msg_pspew("%s: Mapping %s, 0x%zx bytes at 0x%0*" PRIxPTR "\n",
Stefan Tauner0554ca52013-07-25 22:54:25 +0000418 __func__, descr, len, PRIxPTR_WIDTH, phys_addr);
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000419 return (void *)phys_addr;
420}
421
422void dummy_unmap(void *virt_addr, size_t len)
423{
Stefan Tauner0554ca52013-07-25 22:54:25 +0000424 msg_pspew("%s: Unmapping 0x%zx bytes at %p\n", __func__, len, virt_addr);
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000425}
426
Mark Marshallf20b7be2014-05-09 21:16:21 +0000427static void dummy_chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr)
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000428{
Stefan Taunerc2333752013-07-13 23:31:37 +0000429 msg_pspew("%s: addr=0x%" PRIxPTR ", val=0x%02x\n", __func__, addr, val);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000430}
431
Mark Marshallf20b7be2014-05-09 21:16:21 +0000432static void dummy_chip_writew(const struct flashctx *flash, uint16_t val, chipaddr addr)
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000433{
Stefan Taunerc2333752013-07-13 23:31:37 +0000434 msg_pspew("%s: addr=0x%" PRIxPTR ", val=0x%04x\n", __func__, addr, val);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000435}
436
Mark Marshallf20b7be2014-05-09 21:16:21 +0000437static void dummy_chip_writel(const struct flashctx *flash, uint32_t val, chipaddr addr)
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000438{
Stefan Taunerc2333752013-07-13 23:31:37 +0000439 msg_pspew("%s: addr=0x%" PRIxPTR ", val=0x%08x\n", __func__, addr, val);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000440}
441
Mark Marshallf20b7be2014-05-09 21:16:21 +0000442static void dummy_chip_writen(const struct flashctx *flash, const uint8_t *buf, chipaddr addr, size_t len)
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000443{
444 size_t i;
Stefan Tauner0554ca52013-07-25 22:54:25 +0000445 msg_pspew("%s: addr=0x%" PRIxPTR ", len=0x%zx, writing data (hex):", __func__, addr, len);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000446 for (i = 0; i < len; i++) {
447 if ((i % 16) == 0)
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000448 msg_pspew("\n");
449 msg_pspew("%02x ", buf[i]);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000450 }
451}
452
Mark Marshallf20b7be2014-05-09 21:16:21 +0000453static uint8_t dummy_chip_readb(const struct flashctx *flash, const chipaddr addr)
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000454{
Stefan Taunerc2333752013-07-13 23:31:37 +0000455 msg_pspew("%s: addr=0x%" PRIxPTR ", returning 0xff\n", __func__, addr);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000456 return 0xff;
457}
458
Mark Marshallf20b7be2014-05-09 21:16:21 +0000459static uint16_t dummy_chip_readw(const struct flashctx *flash, const chipaddr addr)
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000460{
Stefan Taunerc2333752013-07-13 23:31:37 +0000461 msg_pspew("%s: addr=0x%" PRIxPTR ", returning 0xffff\n", __func__, addr);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000462 return 0xffff;
463}
464
Mark Marshallf20b7be2014-05-09 21:16:21 +0000465static uint32_t dummy_chip_readl(const struct flashctx *flash, const chipaddr addr)
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000466{
Stefan Taunerc2333752013-07-13 23:31:37 +0000467 msg_pspew("%s: addr=0x%" PRIxPTR ", returning 0xffffffff\n", __func__, addr);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000468 return 0xffffffff;
469}
470
Mark Marshallf20b7be2014-05-09 21:16:21 +0000471static void dummy_chip_readn(const struct flashctx *flash, uint8_t *buf, const chipaddr addr, size_t len)
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000472{
Stefan Tauner0554ca52013-07-25 22:54:25 +0000473 msg_pspew("%s: addr=0x%" PRIxPTR ", len=0x%zx, returning array of 0xff\n", __func__, addr, len);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000474 memset(buf, 0xff, len);
475 return;
476}
477
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000478#if EMULATE_SPI_CHIP
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000479static int emulate_spi_chip_response(unsigned int writecnt,
480 unsigned int readcnt,
481 const unsigned char *writearr,
482 unsigned char *readarr)
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000483{
Stefan Tauner0b9df972012-05-07 22:12:16 +0000484 unsigned int offs, i, toread;
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000485 static int unsigned aai_offs;
Carl-Daniel Hailfingeraf2cac02012-08-30 21:41:00 +0000486 const unsigned char sst25vf040_rems_response[2] = {0xbf, 0x44};
487 const unsigned char sst25vf032b_rems_response[2] = {0xbf, 0x4a};
488 const unsigned char mx25l6436_rems_response[2] = {0xc2, 0x16};
Nico Huberf9632d82019-01-20 11:23:49 +0100489 const unsigned char w25q128fv_rems_response[2] = {0xef, 0x17};
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000490
491 if (writecnt == 0) {
492 msg_perr("No command sent to the chip!\n");
493 return 1;
494 }
Paul Menzelac427b22012-02-16 21:07:07 +0000495 /* spi_blacklist has precedence over spi_ignorelist. */
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +0000496 for (i = 0; i < spi_blacklist_size; i++) {
497 if (writearr[0] == spi_blacklist[i]) {
498 msg_pdbg("Refusing blacklisted SPI command 0x%02x\n",
499 spi_blacklist[i]);
500 return SPI_INVALID_OPCODE;
501 }
502 }
503 for (i = 0; i < spi_ignorelist_size; i++) {
504 if (writearr[0] == spi_ignorelist[i]) {
505 msg_cdbg("Ignoring ignorelisted SPI command 0x%02x\n",
506 spi_ignorelist[i]);
507 /* Return success because the command does not fail,
508 * it is simply ignored.
509 */
510 return 0;
511 }
512 }
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000513
514 if (emu_max_aai_size && (emu_status & SPI_SR_AAI)) {
515 if (writearr[0] != JEDEC_AAI_WORD_PROGRAM &&
516 writearr[0] != JEDEC_WRDI &&
517 writearr[0] != JEDEC_RDSR) {
518 msg_perr("Forbidden opcode (0x%02x) attempted during "
519 "AAI sequence!\n", writearr[0]);
520 return 0;
521 }
522 }
523
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000524 switch (writearr[0]) {
525 case JEDEC_RES:
Carl-Daniel Hailfingeraf2cac02012-08-30 21:41:00 +0000526 if (writecnt < JEDEC_RES_OUTSIZE)
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000527 break;
Carl-Daniel Hailfingeraf2cac02012-08-30 21:41:00 +0000528 /* offs calculation is only needed for SST chips which treat RES like REMS. */
529 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
530 offs += writecnt - JEDEC_REMS_OUTSIZE;
531 switch (emu_chip) {
532 case EMULATE_ST_M25P10_RES:
533 if (readcnt > 0)
534 memset(readarr, 0x10, readcnt);
535 break;
536 case EMULATE_SST_SST25VF040_REMS:
537 for (i = 0; i < readcnt; i++)
538 readarr[i] = sst25vf040_rems_response[(offs + i) % 2];
539 break;
540 case EMULATE_SST_SST25VF032B:
541 for (i = 0; i < readcnt; i++)
542 readarr[i] = sst25vf032b_rems_response[(offs + i) % 2];
543 break;
544 case EMULATE_MACRONIX_MX25L6436:
545 if (readcnt > 0)
546 memset(readarr, 0x16, readcnt);
547 break;
Nico Huberf9632d82019-01-20 11:23:49 +0100548 case EMULATE_WINBOND_W25Q128FV:
549 if (readcnt > 0)
550 memset(readarr, 0x17, readcnt);
551 break;
Carl-Daniel Hailfingeraf2cac02012-08-30 21:41:00 +0000552 default: /* ignore */
553 break;
554 }
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000555 break;
556 case JEDEC_REMS:
Carl-Daniel Hailfingeraf2cac02012-08-30 21:41:00 +0000557 /* REMS response has wraparound and uses an address parameter. */
558 if (writecnt < JEDEC_REMS_OUTSIZE)
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000559 break;
Carl-Daniel Hailfingeraf2cac02012-08-30 21:41:00 +0000560 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
561 offs += writecnt - JEDEC_REMS_OUTSIZE;
562 switch (emu_chip) {
563 case EMULATE_SST_SST25VF040_REMS:
564 for (i = 0; i < readcnt; i++)
565 readarr[i] = sst25vf040_rems_response[(offs + i) % 2];
566 break;
567 case EMULATE_SST_SST25VF032B:
568 for (i = 0; i < readcnt; i++)
569 readarr[i] = sst25vf032b_rems_response[(offs + i) % 2];
570 break;
571 case EMULATE_MACRONIX_MX25L6436:
572 for (i = 0; i < readcnt; i++)
573 readarr[i] = mx25l6436_rems_response[(offs + i) % 2];
574 break;
Nico Huberf9632d82019-01-20 11:23:49 +0100575 case EMULATE_WINBOND_W25Q128FV:
576 for (i = 0; i < readcnt; i++)
577 readarr[i] = w25q128fv_rems_response[(offs + i) % 2];
578 break;
Carl-Daniel Hailfingeraf2cac02012-08-30 21:41:00 +0000579 default: /* ignore */
580 break;
581 }
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000582 break;
583 case JEDEC_RDID:
Stefan Tauner0b9df972012-05-07 22:12:16 +0000584 switch (emu_chip) {
585 case EMULATE_SST_SST25VF032B:
586 if (readcnt > 0)
587 readarr[0] = 0xbf;
588 if (readcnt > 1)
589 readarr[1] = 0x25;
590 if (readcnt > 2)
591 readarr[2] = 0x4a;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000592 break;
Stefan Tauner0b9df972012-05-07 22:12:16 +0000593 case EMULATE_MACRONIX_MX25L6436:
594 if (readcnt > 0)
595 readarr[0] = 0xc2;
596 if (readcnt > 1)
597 readarr[1] = 0x20;
598 if (readcnt > 2)
599 readarr[2] = 0x17;
600 break;
Nico Huberf9632d82019-01-20 11:23:49 +0100601 case EMULATE_WINBOND_W25Q128FV:
602 if (readcnt > 0)
603 readarr[0] = 0xef;
604 if (readcnt > 1)
605 readarr[1] = 0x40;
606 if (readcnt > 2)
607 readarr[2] = 0x18;
608 break;
Stefan Tauner0b9df972012-05-07 22:12:16 +0000609 default: /* ignore */
610 break;
611 }
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000612 break;
Stefan Tauner0b9df972012-05-07 22:12:16 +0000613 case JEDEC_RDSR:
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000614 memset(readarr, emu_status, readcnt);
615 break;
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000616 /* FIXME: this should be chip-specific. */
617 case JEDEC_EWSR:
618 case JEDEC_WREN:
619 emu_status |= SPI_SR_WEL;
620 break;
621 case JEDEC_WRSR:
622 if (!(emu_status & SPI_SR_WEL)) {
623 msg_perr("WRSR attempted, but WEL is 0!\n");
624 break;
625 }
626 /* FIXME: add some reasonable simulation of the busy flag */
627 emu_status = writearr[1] & ~SPI_SR_WIP;
628 msg_pdbg2("WRSR wrote 0x%02x.\n", emu_status);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000629 break;
630 case JEDEC_READ:
631 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
632 /* Truncate to emu_chip_size. */
633 offs %= emu_chip_size;
634 if (readcnt > 0)
635 memcpy(readarr, flashchip_contents + offs, readcnt);
636 break;
637 case JEDEC_BYTE_PROGRAM:
638 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
639 /* Truncate to emu_chip_size. */
640 offs %= emu_chip_size;
641 if (writecnt < 5) {
642 msg_perr("BYTE PROGRAM size too short!\n");
643 return 1;
644 }
645 if (writecnt - 4 > emu_max_byteprogram_size) {
646 msg_perr("Max BYTE PROGRAM size exceeded!\n");
647 return 1;
648 }
649 memcpy(flashchip_contents + offs, writearr + 4, writecnt - 4);
650 break;
651 case JEDEC_AAI_WORD_PROGRAM:
652 if (!emu_max_aai_size)
653 break;
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000654 if (!(emu_status & SPI_SR_AAI)) {
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000655 if (writecnt < JEDEC_AAI_WORD_PROGRAM_OUTSIZE) {
656 msg_perr("Initial AAI WORD PROGRAM size too "
657 "short!\n");
658 return 1;
659 }
660 if (writecnt > JEDEC_AAI_WORD_PROGRAM_OUTSIZE) {
661 msg_perr("Initial AAI WORD PROGRAM size too "
662 "long!\n");
663 return 1;
664 }
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000665 emu_status |= SPI_SR_AAI;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000666 aai_offs = writearr[1] << 16 | writearr[2] << 8 |
667 writearr[3];
668 /* Truncate to emu_chip_size. */
669 aai_offs %= emu_chip_size;
670 memcpy(flashchip_contents + aai_offs, writearr + 4, 2);
671 aai_offs += 2;
672 } else {
673 if (writecnt < JEDEC_AAI_WORD_PROGRAM_CONT_OUTSIZE) {
674 msg_perr("Continuation AAI WORD PROGRAM size "
675 "too short!\n");
676 return 1;
677 }
678 if (writecnt > JEDEC_AAI_WORD_PROGRAM_CONT_OUTSIZE) {
679 msg_perr("Continuation AAI WORD PROGRAM size "
680 "too long!\n");
681 return 1;
682 }
683 memcpy(flashchip_contents + aai_offs, writearr + 1, 2);
684 aai_offs += 2;
685 }
686 break;
687 case JEDEC_WRDI:
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000688 if (emu_max_aai_size)
689 emu_status &= ~SPI_SR_AAI;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000690 break;
691 case JEDEC_SE:
692 if (!emu_jedec_se_size)
693 break;
694 if (writecnt != JEDEC_SE_OUTSIZE) {
695 msg_perr("SECTOR ERASE 0x20 outsize invalid!\n");
696 return 1;
697 }
698 if (readcnt != JEDEC_SE_INSIZE) {
699 msg_perr("SECTOR ERASE 0x20 insize invalid!\n");
700 return 1;
701 }
702 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
703 if (offs & (emu_jedec_se_size - 1))
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000704 msg_pdbg("Unaligned SECTOR ERASE 0x20: 0x%x\n", offs);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000705 offs &= ~(emu_jedec_se_size - 1);
706 memset(flashchip_contents + offs, 0xff, emu_jedec_se_size);
707 break;
708 case JEDEC_BE_52:
709 if (!emu_jedec_be_52_size)
710 break;
711 if (writecnt != JEDEC_BE_52_OUTSIZE) {
712 msg_perr("BLOCK ERASE 0x52 outsize invalid!\n");
713 return 1;
714 }
715 if (readcnt != JEDEC_BE_52_INSIZE) {
716 msg_perr("BLOCK ERASE 0x52 insize invalid!\n");
717 return 1;
718 }
719 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
720 if (offs & (emu_jedec_be_52_size - 1))
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000721 msg_pdbg("Unaligned BLOCK ERASE 0x52: 0x%x\n", offs);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000722 offs &= ~(emu_jedec_be_52_size - 1);
723 memset(flashchip_contents + offs, 0xff, emu_jedec_be_52_size);
724 break;
725 case JEDEC_BE_D8:
726 if (!emu_jedec_be_d8_size)
727 break;
728 if (writecnt != JEDEC_BE_D8_OUTSIZE) {
729 msg_perr("BLOCK ERASE 0xd8 outsize invalid!\n");
730 return 1;
731 }
732 if (readcnt != JEDEC_BE_D8_INSIZE) {
733 msg_perr("BLOCK ERASE 0xd8 insize invalid!\n");
734 return 1;
735 }
736 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
737 if (offs & (emu_jedec_be_d8_size - 1))
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000738 msg_pdbg("Unaligned BLOCK ERASE 0xd8: 0x%x\n", offs);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000739 offs &= ~(emu_jedec_be_d8_size - 1);
740 memset(flashchip_contents + offs, 0xff, emu_jedec_be_d8_size);
741 break;
742 case JEDEC_CE_60:
743 if (!emu_jedec_ce_60_size)
744 break;
745 if (writecnt != JEDEC_CE_60_OUTSIZE) {
746 msg_perr("CHIP ERASE 0x60 outsize invalid!\n");
747 return 1;
748 }
749 if (readcnt != JEDEC_CE_60_INSIZE) {
750 msg_perr("CHIP ERASE 0x60 insize invalid!\n");
751 return 1;
752 }
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000753 /* JEDEC_CE_60_OUTSIZE is 1 (no address) -> no offset. */
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000754 /* emu_jedec_ce_60_size is emu_chip_size. */
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000755 memset(flashchip_contents, 0xff, emu_jedec_ce_60_size);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000756 break;
757 case JEDEC_CE_C7:
758 if (!emu_jedec_ce_c7_size)
759 break;
760 if (writecnt != JEDEC_CE_C7_OUTSIZE) {
761 msg_perr("CHIP ERASE 0xc7 outsize invalid!\n");
762 return 1;
763 }
764 if (readcnt != JEDEC_CE_C7_INSIZE) {
765 msg_perr("CHIP ERASE 0xc7 insize invalid!\n");
766 return 1;
767 }
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000768 /* JEDEC_CE_C7_OUTSIZE is 1 (no address) -> no offset. */
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000769 /* emu_jedec_ce_c7_size is emu_chip_size. */
770 memset(flashchip_contents, 0xff, emu_jedec_ce_c7_size);
771 break;
Stefan Tauner0b9df972012-05-07 22:12:16 +0000772 case JEDEC_SFDP:
773 if (emu_chip != EMULATE_MACRONIX_MX25L6436)
774 break;
775 if (writecnt < 4)
776 break;
777 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
778
779 /* SFDP expects one dummy byte after the address. */
780 if (writecnt == 4) {
781 /* The dummy byte was not written, make sure it is read instead.
782 * Shifting and shortening the read array does achieve this goal.
783 */
784 readarr++;
785 readcnt--;
786 } else {
787 /* The response is shifted if more than 5 bytes are written, because SFDP data is
788 * already shifted out by the chip while those superfluous bytes are written. */
789 offs += writecnt - 5;
790 }
791
792 /* The SFDP spec implies that the start address of an SFDP read may be truncated to fit in the
793 * SFDP table address space, i.e. the start address may be wrapped around at SFDP table size.
794 * This is a reasonable implementation choice in hardware because it saves a few gates. */
795 if (offs >= sizeof(sfdp_table)) {
796 msg_pdbg("Wrapping the start address around the SFDP table boundary (using 0x%x "
797 "instead of 0x%x).\n", (unsigned int)(offs % sizeof(sfdp_table)), offs);
798 offs %= sizeof(sfdp_table);
799 }
800 toread = min(sizeof(sfdp_table) - offs, readcnt);
801 memcpy(readarr, sfdp_table + offs, toread);
802 if (toread < readcnt)
803 msg_pdbg("Crossing the SFDP table boundary in a single "
804 "continuous chunk produces undefined results "
805 "after that point.\n");
806 break;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000807 default:
808 /* No special response. */
809 break;
810 }
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000811 if (writearr[0] != JEDEC_WREN && writearr[0] != JEDEC_EWSR)
812 emu_status &= ~SPI_SR_WEL;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000813 return 0;
814}
815#endif
816
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000817static int dummy_spi_send_command(struct flashctx *flash, unsigned int writecnt,
818 unsigned int readcnt,
819 const unsigned char *writearr,
820 unsigned char *readarr)
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +0000821{
822 int i;
823
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000824 msg_pspew("%s:", __func__);
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +0000825
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000826 msg_pspew(" writing %u bytes:", writecnt);
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +0000827 for (i = 0; i < writecnt; i++)
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000828 msg_pspew(" 0x%02x", writearr[i]);
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +0000829
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000830 /* Response for unknown commands and missing chip is 0xff. */
831 memset(readarr, 0xff, readcnt);
832#if EMULATE_SPI_CHIP
833 switch (emu_chip) {
834 case EMULATE_ST_M25P10_RES:
835 case EMULATE_SST_SST25VF040_REMS:
836 case EMULATE_SST_SST25VF032B:
Stefan Tauner0b9df972012-05-07 22:12:16 +0000837 case EMULATE_MACRONIX_MX25L6436:
Nico Huberf9632d82019-01-20 11:23:49 +0100838 case EMULATE_WINBOND_W25Q128FV:
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000839 if (emulate_spi_chip_response(writecnt, readcnt, writearr,
840 readarr)) {
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +0000841 msg_pdbg("Invalid command sent to flash chip!\n");
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000842 return 1;
843 }
844 break;
845 default:
846 break;
847 }
848#endif
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000849 msg_pspew(" reading %u bytes:", readcnt);
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000850 for (i = 0; i < readcnt; i++)
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000851 msg_pspew(" 0x%02x", readarr[i]);
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000852 msg_pspew("\n");
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +0000853 return 0;
854}
Carl-Daniel Hailfinger1b0ba892010-06-20 10:58:32 +0000855
Mark Marshallf20b7be2014-05-09 21:16:21 +0000856static int dummy_spi_write_256(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len)
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000857{
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000858 return spi_write_chunked(flash, buf, start, len,
859 spi_write_256_chunksize);
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000860}