blob: 29296865ea35a73f2a73ace5ac16fcea08d3f1f5 [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,
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +000046};
47static enum emu_chip emu_chip = EMULATE_NONE;
48static char *emu_persistent_image = NULL;
Stefan Taunerc69c9c82011-11-23 09:13:48 +000049static unsigned int emu_chip_size = 0;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +000050#if EMULATE_SPI_CHIP
Stefan Taunerc69c9c82011-11-23 09:13:48 +000051static unsigned int emu_max_byteprogram_size = 0;
52static unsigned int emu_max_aai_size = 0;
53static unsigned int emu_jedec_se_size = 0;
54static unsigned int emu_jedec_be_52_size = 0;
55static unsigned int emu_jedec_be_d8_size = 0;
56static unsigned int emu_jedec_ce_60_size = 0;
57static unsigned int emu_jedec_ce_c7_size = 0;
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +000058unsigned char spi_blacklist[256];
59unsigned char spi_ignorelist[256];
60int spi_blacklist_size = 0;
61int spi_ignorelist_size = 0;
Stefan Tauner5e695ab2012-05-06 17:03:40 +000062static uint8_t emu_status = 0;
Stefan Tauner0b9df972012-05-07 22:12:16 +000063
64/* A legit complete SFDP table based on the MX25L6436E (rev. 1.8) datasheet. */
Stefan Tauner67d163d2013-01-15 17:37:48 +000065static const uint8_t sfdp_table[] = {
Stefan Tauner0b9df972012-05-07 22:12:16 +000066 0x53, 0x46, 0x44, 0x50, // @0x00: SFDP signature
67 0x00, 0x01, 0x01, 0xFF, // @0x04: revision 1.0, 2 headers
68 0x00, 0x00, 0x01, 0x09, // @0x08: JEDEC SFDP header rev. 1.0, 9 DW long
69 0x1C, 0x00, 0x00, 0xFF, // @0x0C: PTP0 = 0x1C (instead of 0x30)
70 0xC2, 0x00, 0x01, 0x04, // @0x10: Macronix header rev. 1.0, 4 DW long
71 0x48, 0x00, 0x00, 0xFF, // @0x14: PTP1 = 0x48 (instead of 0x60)
72 0xFF, 0xFF, 0xFF, 0xFF, // @0x18: hole.
73 0xE5, 0x20, 0xC9, 0xFF, // @0x1C: SFDP parameter table start
74 0xFF, 0xFF, 0xFF, 0x03, // @0x20
75 0x00, 0xFF, 0x08, 0x6B, // @0x24
76 0x08, 0x3B, 0x00, 0xFF, // @0x28
77 0xEE, 0xFF, 0xFF, 0xFF, // @0x2C
78 0xFF, 0xFF, 0x00, 0x00, // @0x30
79 0xFF, 0xFF, 0x00, 0xFF, // @0x34
80 0x0C, 0x20, 0x0F, 0x52, // @0x38
81 0x10, 0xD8, 0x00, 0xFF, // @0x3C: SFDP parameter table end
82 0xFF, 0xFF, 0xFF, 0xFF, // @0x40: hole.
83 0xFF, 0xFF, 0xFF, 0xFF, // @0x44: hole.
84 0x00, 0x36, 0x00, 0x27, // @0x48: Macronix parameter table start
85 0xF4, 0x4F, 0xFF, 0xFF, // @0x4C
86 0xD9, 0xC8, 0xFF, 0xFF, // @0x50
87 0xFF, 0xFF, 0xFF, 0xFF, // @0x54: Macronix parameter table end
88};
89
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +000090#endif
91#endif
92
Stefan Taunerc69c9c82011-11-23 09:13:48 +000093static unsigned int spi_write_256_chunksize = 256;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +000094
Mark Marshallf20b7be2014-05-09 21:16:21 +000095static int dummy_spi_send_command(struct flashctx *flash, unsigned int writecnt, unsigned int readcnt,
96 const unsigned char *writearr, unsigned char *readarr);
97static int dummy_spi_write_256(struct flashctx *flash, const uint8_t *buf,
Stefan Taunerc69c9c82011-11-23 09:13:48 +000098 unsigned int start, unsigned int len);
Mark Marshallf20b7be2014-05-09 21:16:21 +000099static void dummy_chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr);
100static void dummy_chip_writew(const struct flashctx *flash, uint16_t val, chipaddr addr);
101static void dummy_chip_writel(const struct flashctx *flash, uint32_t val, chipaddr addr);
102static void dummy_chip_writen(const struct flashctx *flash, const uint8_t *buf, chipaddr addr, size_t len);
103static uint8_t dummy_chip_readb(const struct flashctx *flash, const chipaddr addr);
104static uint16_t dummy_chip_readw(const struct flashctx *flash, const chipaddr addr);
105static uint32_t dummy_chip_readl(const struct flashctx *flash, const chipaddr addr);
106static void dummy_chip_readn(const struct flashctx *flash, uint8_t *buf, const chipaddr addr, size_t len);
Michael Karcherb9dbe482011-05-11 17:07:07 +0000107
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000108static const struct spi_master spi_master_dummyflasher = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000109 .type = SPI_CONTROLLER_DUMMY,
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
131enum chipbustype dummy_buses_supported = BUS_NONE;
132
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 }
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000334#endif
335 if (emu_chip == EMULATE_NONE) {
336 msg_perr("Invalid chip specified for emulation: %s\n", tmp);
337 free(tmp);
338 return 1;
339 }
340 free(tmp);
341 flashchip_contents = malloc(emu_chip_size);
342 if (!flashchip_contents) {
343 msg_perr("Out of memory!\n");
344 return 1;
345 }
David Hendricks8bb20212011-06-14 01:35:36 +0000346
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000347#ifdef EMULATE_SPI_CHIP
348 status = extract_programmer_param("spi_status");
349 if (status) {
350 char *endptr;
351 errno = 0;
352 emu_status = strtoul(status, &endptr, 0);
353 free(status);
354 if (errno != 0 || status == endptr) {
355 msg_perr("Error: initial status register specified, "
356 "but the value could not be converted.\n");
357 return 1;
358 }
359 msg_pdbg("Initial status register is set to 0x%02x.\n",
360 emu_status);
361 }
362#endif
363
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000364 msg_pdbg("Filling fake flash chip with 0xff, size %i\n", emu_chip_size);
365 memset(flashchip_contents, 0xff, emu_chip_size);
366
Stefan Taunerc2eec2c2014-05-03 21:33:01 +0000367 /* Will be freed by shutdown function if necessary. */
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000368 emu_persistent_image = extract_programmer_param("image");
369 if (!emu_persistent_image) {
370 /* Nothing else to do. */
David Hendricks8bb20212011-06-14 01:35:36 +0000371 goto dummy_init_out;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000372 }
Stefan Taunerc2eec2c2014-05-03 21:33:01 +0000373 /* We will silently (in default verbosity) ignore the file if it does not exist (yet) or the size does
374 * not match the emulated chip. */
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000375 if (!stat(emu_persistent_image, &image_stat)) {
Stefan Tauner23e10b82016-01-23 16:16:49 +0000376 msg_pdbg("Found persistent image %s, %jd B ",
377 emu_persistent_image, (intmax_t)image_stat.st_size);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000378 if (image_stat.st_size == emu_chip_size) {
379 msg_pdbg("matches.\n");
380 msg_pdbg("Reading %s\n", emu_persistent_image);
381 read_buf_from_file(flashchip_contents, emu_chip_size,
382 emu_persistent_image);
383 } else {
384 msg_pdbg("doesn't match.\n");
385 }
386 }
387#endif
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000388
David Hendricks8bb20212011-06-14 01:35:36 +0000389dummy_init_out:
390 if (register_shutdown(dummy_shutdown, NULL)) {
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000391 free(flashchip_contents);
David Hendricks8bb20212011-06-14 01:35:36 +0000392 return 1;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000393 }
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000394 if (dummy_buses_supported & (BUS_PARALLEL | BUS_LPC | BUS_FWH))
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000395 register_par_master(&par_master_dummy,
396 dummy_buses_supported & (BUS_PARALLEL | BUS_LPC | BUS_FWH));
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000397 if (dummy_buses_supported & BUS_SPI)
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000398 register_spi_master(&spi_master_dummyflasher);
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000399
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000400 return 0;
401}
402
Stefan Tauner305e0b92013-07-17 23:46:44 +0000403void *dummy_map(const char *descr, uintptr_t phys_addr, size_t len)
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000404{
Stefan Taunerc2eec2c2014-05-03 21:33:01 +0000405 msg_pspew("%s: Mapping %s, 0x%zx bytes at 0x%0*" PRIxPTR "\n",
Stefan Tauner0554ca52013-07-25 22:54:25 +0000406 __func__, descr, len, PRIxPTR_WIDTH, phys_addr);
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000407 return (void *)phys_addr;
408}
409
410void dummy_unmap(void *virt_addr, size_t len)
411{
Stefan Tauner0554ca52013-07-25 22:54:25 +0000412 msg_pspew("%s: Unmapping 0x%zx bytes at %p\n", __func__, len, virt_addr);
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000413}
414
Mark Marshallf20b7be2014-05-09 21:16:21 +0000415static void dummy_chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr)
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000416{
Stefan Taunerc2333752013-07-13 23:31:37 +0000417 msg_pspew("%s: addr=0x%" PRIxPTR ", val=0x%02x\n", __func__, addr, val);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000418}
419
Mark Marshallf20b7be2014-05-09 21:16:21 +0000420static void dummy_chip_writew(const struct flashctx *flash, uint16_t val, chipaddr addr)
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000421{
Stefan Taunerc2333752013-07-13 23:31:37 +0000422 msg_pspew("%s: addr=0x%" PRIxPTR ", val=0x%04x\n", __func__, addr, val);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000423}
424
Mark Marshallf20b7be2014-05-09 21:16:21 +0000425static void dummy_chip_writel(const struct flashctx *flash, uint32_t val, chipaddr addr)
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000426{
Stefan Taunerc2333752013-07-13 23:31:37 +0000427 msg_pspew("%s: addr=0x%" PRIxPTR ", val=0x%08x\n", __func__, addr, val);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000428}
429
Mark Marshallf20b7be2014-05-09 21:16:21 +0000430static 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 +0000431{
432 size_t i;
Stefan Tauner0554ca52013-07-25 22:54:25 +0000433 msg_pspew("%s: addr=0x%" PRIxPTR ", len=0x%zx, writing data (hex):", __func__, addr, len);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000434 for (i = 0; i < len; i++) {
435 if ((i % 16) == 0)
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000436 msg_pspew("\n");
437 msg_pspew("%02x ", buf[i]);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000438 }
439}
440
Mark Marshallf20b7be2014-05-09 21:16:21 +0000441static uint8_t dummy_chip_readb(const struct flashctx *flash, const chipaddr addr)
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000442{
Stefan Taunerc2333752013-07-13 23:31:37 +0000443 msg_pspew("%s: addr=0x%" PRIxPTR ", returning 0xff\n", __func__, addr);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000444 return 0xff;
445}
446
Mark Marshallf20b7be2014-05-09 21:16:21 +0000447static uint16_t dummy_chip_readw(const struct flashctx *flash, const chipaddr addr)
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000448{
Stefan Taunerc2333752013-07-13 23:31:37 +0000449 msg_pspew("%s: addr=0x%" PRIxPTR ", returning 0xffff\n", __func__, addr);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000450 return 0xffff;
451}
452
Mark Marshallf20b7be2014-05-09 21:16:21 +0000453static uint32_t dummy_chip_readl(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 0xffffffff\n", __func__, addr);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000456 return 0xffffffff;
457}
458
Mark Marshallf20b7be2014-05-09 21:16:21 +0000459static 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 +0000460{
Stefan Tauner0554ca52013-07-25 22:54:25 +0000461 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 +0000462 memset(buf, 0xff, len);
463 return;
464}
465
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000466#if EMULATE_SPI_CHIP
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000467static int emulate_spi_chip_response(unsigned int writecnt,
468 unsigned int readcnt,
469 const unsigned char *writearr,
470 unsigned char *readarr)
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000471{
Stefan Tauner0b9df972012-05-07 22:12:16 +0000472 unsigned int offs, i, toread;
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000473 static int unsigned aai_offs;
Carl-Daniel Hailfingeraf2cac02012-08-30 21:41:00 +0000474 const unsigned char sst25vf040_rems_response[2] = {0xbf, 0x44};
475 const unsigned char sst25vf032b_rems_response[2] = {0xbf, 0x4a};
476 const unsigned char mx25l6436_rems_response[2] = {0xc2, 0x16};
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000477
478 if (writecnt == 0) {
479 msg_perr("No command sent to the chip!\n");
480 return 1;
481 }
Paul Menzelac427b22012-02-16 21:07:07 +0000482 /* spi_blacklist has precedence over spi_ignorelist. */
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +0000483 for (i = 0; i < spi_blacklist_size; i++) {
484 if (writearr[0] == spi_blacklist[i]) {
485 msg_pdbg("Refusing blacklisted SPI command 0x%02x\n",
486 spi_blacklist[i]);
487 return SPI_INVALID_OPCODE;
488 }
489 }
490 for (i = 0; i < spi_ignorelist_size; i++) {
491 if (writearr[0] == spi_ignorelist[i]) {
492 msg_cdbg("Ignoring ignorelisted SPI command 0x%02x\n",
493 spi_ignorelist[i]);
494 /* Return success because the command does not fail,
495 * it is simply ignored.
496 */
497 return 0;
498 }
499 }
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000500
501 if (emu_max_aai_size && (emu_status & SPI_SR_AAI)) {
502 if (writearr[0] != JEDEC_AAI_WORD_PROGRAM &&
503 writearr[0] != JEDEC_WRDI &&
504 writearr[0] != JEDEC_RDSR) {
505 msg_perr("Forbidden opcode (0x%02x) attempted during "
506 "AAI sequence!\n", writearr[0]);
507 return 0;
508 }
509 }
510
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000511 switch (writearr[0]) {
512 case JEDEC_RES:
Carl-Daniel Hailfingeraf2cac02012-08-30 21:41:00 +0000513 if (writecnt < JEDEC_RES_OUTSIZE)
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000514 break;
Carl-Daniel Hailfingeraf2cac02012-08-30 21:41:00 +0000515 /* offs calculation is only needed for SST chips which treat RES like REMS. */
516 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
517 offs += writecnt - JEDEC_REMS_OUTSIZE;
518 switch (emu_chip) {
519 case EMULATE_ST_M25P10_RES:
520 if (readcnt > 0)
521 memset(readarr, 0x10, readcnt);
522 break;
523 case EMULATE_SST_SST25VF040_REMS:
524 for (i = 0; i < readcnt; i++)
525 readarr[i] = sst25vf040_rems_response[(offs + i) % 2];
526 break;
527 case EMULATE_SST_SST25VF032B:
528 for (i = 0; i < readcnt; i++)
529 readarr[i] = sst25vf032b_rems_response[(offs + i) % 2];
530 break;
531 case EMULATE_MACRONIX_MX25L6436:
532 if (readcnt > 0)
533 memset(readarr, 0x16, readcnt);
534 break;
535 default: /* ignore */
536 break;
537 }
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000538 break;
539 case JEDEC_REMS:
Carl-Daniel Hailfingeraf2cac02012-08-30 21:41:00 +0000540 /* REMS response has wraparound and uses an address parameter. */
541 if (writecnt < JEDEC_REMS_OUTSIZE)
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000542 break;
Carl-Daniel Hailfingeraf2cac02012-08-30 21:41:00 +0000543 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
544 offs += writecnt - JEDEC_REMS_OUTSIZE;
545 switch (emu_chip) {
546 case EMULATE_SST_SST25VF040_REMS:
547 for (i = 0; i < readcnt; i++)
548 readarr[i] = sst25vf040_rems_response[(offs + i) % 2];
549 break;
550 case EMULATE_SST_SST25VF032B:
551 for (i = 0; i < readcnt; i++)
552 readarr[i] = sst25vf032b_rems_response[(offs + i) % 2];
553 break;
554 case EMULATE_MACRONIX_MX25L6436:
555 for (i = 0; i < readcnt; i++)
556 readarr[i] = mx25l6436_rems_response[(offs + i) % 2];
557 break;
558 default: /* ignore */
559 break;
560 }
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000561 break;
562 case JEDEC_RDID:
Stefan Tauner0b9df972012-05-07 22:12:16 +0000563 switch (emu_chip) {
564 case EMULATE_SST_SST25VF032B:
565 if (readcnt > 0)
566 readarr[0] = 0xbf;
567 if (readcnt > 1)
568 readarr[1] = 0x25;
569 if (readcnt > 2)
570 readarr[2] = 0x4a;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000571 break;
Stefan Tauner0b9df972012-05-07 22:12:16 +0000572 case EMULATE_MACRONIX_MX25L6436:
573 if (readcnt > 0)
574 readarr[0] = 0xc2;
575 if (readcnt > 1)
576 readarr[1] = 0x20;
577 if (readcnt > 2)
578 readarr[2] = 0x17;
579 break;
580 default: /* ignore */
581 break;
582 }
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000583 break;
Stefan Tauner0b9df972012-05-07 22:12:16 +0000584 case JEDEC_RDSR:
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000585 memset(readarr, emu_status, readcnt);
586 break;
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000587 /* FIXME: this should be chip-specific. */
588 case JEDEC_EWSR:
589 case JEDEC_WREN:
590 emu_status |= SPI_SR_WEL;
591 break;
592 case JEDEC_WRSR:
593 if (!(emu_status & SPI_SR_WEL)) {
594 msg_perr("WRSR attempted, but WEL is 0!\n");
595 break;
596 }
597 /* FIXME: add some reasonable simulation of the busy flag */
598 emu_status = writearr[1] & ~SPI_SR_WIP;
599 msg_pdbg2("WRSR wrote 0x%02x.\n", emu_status);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000600 break;
601 case JEDEC_READ:
602 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
603 /* Truncate to emu_chip_size. */
604 offs %= emu_chip_size;
605 if (readcnt > 0)
606 memcpy(readarr, flashchip_contents + offs, readcnt);
607 break;
608 case JEDEC_BYTE_PROGRAM:
609 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
610 /* Truncate to emu_chip_size. */
611 offs %= emu_chip_size;
612 if (writecnt < 5) {
613 msg_perr("BYTE PROGRAM size too short!\n");
614 return 1;
615 }
616 if (writecnt - 4 > emu_max_byteprogram_size) {
617 msg_perr("Max BYTE PROGRAM size exceeded!\n");
618 return 1;
619 }
620 memcpy(flashchip_contents + offs, writearr + 4, writecnt - 4);
621 break;
622 case JEDEC_AAI_WORD_PROGRAM:
623 if (!emu_max_aai_size)
624 break;
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000625 if (!(emu_status & SPI_SR_AAI)) {
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000626 if (writecnt < JEDEC_AAI_WORD_PROGRAM_OUTSIZE) {
627 msg_perr("Initial AAI WORD PROGRAM size too "
628 "short!\n");
629 return 1;
630 }
631 if (writecnt > JEDEC_AAI_WORD_PROGRAM_OUTSIZE) {
632 msg_perr("Initial AAI WORD PROGRAM size too "
633 "long!\n");
634 return 1;
635 }
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000636 emu_status |= SPI_SR_AAI;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000637 aai_offs = writearr[1] << 16 | writearr[2] << 8 |
638 writearr[3];
639 /* Truncate to emu_chip_size. */
640 aai_offs %= emu_chip_size;
641 memcpy(flashchip_contents + aai_offs, writearr + 4, 2);
642 aai_offs += 2;
643 } else {
644 if (writecnt < JEDEC_AAI_WORD_PROGRAM_CONT_OUTSIZE) {
645 msg_perr("Continuation AAI WORD PROGRAM size "
646 "too short!\n");
647 return 1;
648 }
649 if (writecnt > JEDEC_AAI_WORD_PROGRAM_CONT_OUTSIZE) {
650 msg_perr("Continuation AAI WORD PROGRAM size "
651 "too long!\n");
652 return 1;
653 }
654 memcpy(flashchip_contents + aai_offs, writearr + 1, 2);
655 aai_offs += 2;
656 }
657 break;
658 case JEDEC_WRDI:
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000659 if (emu_max_aai_size)
660 emu_status &= ~SPI_SR_AAI;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000661 break;
662 case JEDEC_SE:
663 if (!emu_jedec_se_size)
664 break;
665 if (writecnt != JEDEC_SE_OUTSIZE) {
666 msg_perr("SECTOR ERASE 0x20 outsize invalid!\n");
667 return 1;
668 }
669 if (readcnt != JEDEC_SE_INSIZE) {
670 msg_perr("SECTOR ERASE 0x20 insize invalid!\n");
671 return 1;
672 }
673 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
674 if (offs & (emu_jedec_se_size - 1))
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000675 msg_pdbg("Unaligned SECTOR ERASE 0x20: 0x%x\n", offs);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000676 offs &= ~(emu_jedec_se_size - 1);
677 memset(flashchip_contents + offs, 0xff, emu_jedec_se_size);
678 break;
679 case JEDEC_BE_52:
680 if (!emu_jedec_be_52_size)
681 break;
682 if (writecnt != JEDEC_BE_52_OUTSIZE) {
683 msg_perr("BLOCK ERASE 0x52 outsize invalid!\n");
684 return 1;
685 }
686 if (readcnt != JEDEC_BE_52_INSIZE) {
687 msg_perr("BLOCK ERASE 0x52 insize invalid!\n");
688 return 1;
689 }
690 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
691 if (offs & (emu_jedec_be_52_size - 1))
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000692 msg_pdbg("Unaligned BLOCK ERASE 0x52: 0x%x\n", offs);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000693 offs &= ~(emu_jedec_be_52_size - 1);
694 memset(flashchip_contents + offs, 0xff, emu_jedec_be_52_size);
695 break;
696 case JEDEC_BE_D8:
697 if (!emu_jedec_be_d8_size)
698 break;
699 if (writecnt != JEDEC_BE_D8_OUTSIZE) {
700 msg_perr("BLOCK ERASE 0xd8 outsize invalid!\n");
701 return 1;
702 }
703 if (readcnt != JEDEC_BE_D8_INSIZE) {
704 msg_perr("BLOCK ERASE 0xd8 insize invalid!\n");
705 return 1;
706 }
707 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
708 if (offs & (emu_jedec_be_d8_size - 1))
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000709 msg_pdbg("Unaligned BLOCK ERASE 0xd8: 0x%x\n", offs);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000710 offs &= ~(emu_jedec_be_d8_size - 1);
711 memset(flashchip_contents + offs, 0xff, emu_jedec_be_d8_size);
712 break;
713 case JEDEC_CE_60:
714 if (!emu_jedec_ce_60_size)
715 break;
716 if (writecnt != JEDEC_CE_60_OUTSIZE) {
717 msg_perr("CHIP ERASE 0x60 outsize invalid!\n");
718 return 1;
719 }
720 if (readcnt != JEDEC_CE_60_INSIZE) {
721 msg_perr("CHIP ERASE 0x60 insize invalid!\n");
722 return 1;
723 }
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000724 /* JEDEC_CE_60_OUTSIZE is 1 (no address) -> no offset. */
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000725 /* emu_jedec_ce_60_size is emu_chip_size. */
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000726 memset(flashchip_contents, 0xff, emu_jedec_ce_60_size);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000727 break;
728 case JEDEC_CE_C7:
729 if (!emu_jedec_ce_c7_size)
730 break;
731 if (writecnt != JEDEC_CE_C7_OUTSIZE) {
732 msg_perr("CHIP ERASE 0xc7 outsize invalid!\n");
733 return 1;
734 }
735 if (readcnt != JEDEC_CE_C7_INSIZE) {
736 msg_perr("CHIP ERASE 0xc7 insize invalid!\n");
737 return 1;
738 }
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000739 /* JEDEC_CE_C7_OUTSIZE is 1 (no address) -> no offset. */
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000740 /* emu_jedec_ce_c7_size is emu_chip_size. */
741 memset(flashchip_contents, 0xff, emu_jedec_ce_c7_size);
742 break;
Stefan Tauner0b9df972012-05-07 22:12:16 +0000743 case JEDEC_SFDP:
744 if (emu_chip != EMULATE_MACRONIX_MX25L6436)
745 break;
746 if (writecnt < 4)
747 break;
748 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
749
750 /* SFDP expects one dummy byte after the address. */
751 if (writecnt == 4) {
752 /* The dummy byte was not written, make sure it is read instead.
753 * Shifting and shortening the read array does achieve this goal.
754 */
755 readarr++;
756 readcnt--;
757 } else {
758 /* The response is shifted if more than 5 bytes are written, because SFDP data is
759 * already shifted out by the chip while those superfluous bytes are written. */
760 offs += writecnt - 5;
761 }
762
763 /* The SFDP spec implies that the start address of an SFDP read may be truncated to fit in the
764 * SFDP table address space, i.e. the start address may be wrapped around at SFDP table size.
765 * This is a reasonable implementation choice in hardware because it saves a few gates. */
766 if (offs >= sizeof(sfdp_table)) {
767 msg_pdbg("Wrapping the start address around the SFDP table boundary (using 0x%x "
768 "instead of 0x%x).\n", (unsigned int)(offs % sizeof(sfdp_table)), offs);
769 offs %= sizeof(sfdp_table);
770 }
771 toread = min(sizeof(sfdp_table) - offs, readcnt);
772 memcpy(readarr, sfdp_table + offs, toread);
773 if (toread < readcnt)
774 msg_pdbg("Crossing the SFDP table boundary in a single "
775 "continuous chunk produces undefined results "
776 "after that point.\n");
777 break;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000778 default:
779 /* No special response. */
780 break;
781 }
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000782 if (writearr[0] != JEDEC_WREN && writearr[0] != JEDEC_EWSR)
783 emu_status &= ~SPI_SR_WEL;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000784 return 0;
785}
786#endif
787
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000788static int dummy_spi_send_command(struct flashctx *flash, unsigned int writecnt,
789 unsigned int readcnt,
790 const unsigned char *writearr,
791 unsigned char *readarr)
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +0000792{
793 int i;
794
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000795 msg_pspew("%s:", __func__);
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +0000796
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000797 msg_pspew(" writing %u bytes:", writecnt);
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +0000798 for (i = 0; i < writecnt; i++)
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000799 msg_pspew(" 0x%02x", writearr[i]);
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +0000800
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000801 /* Response for unknown commands and missing chip is 0xff. */
802 memset(readarr, 0xff, readcnt);
803#if EMULATE_SPI_CHIP
804 switch (emu_chip) {
805 case EMULATE_ST_M25P10_RES:
806 case EMULATE_SST_SST25VF040_REMS:
807 case EMULATE_SST_SST25VF032B:
Stefan Tauner0b9df972012-05-07 22:12:16 +0000808 case EMULATE_MACRONIX_MX25L6436:
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000809 if (emulate_spi_chip_response(writecnt, readcnt, writearr,
810 readarr)) {
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +0000811 msg_pdbg("Invalid command sent to flash chip!\n");
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000812 return 1;
813 }
814 break;
815 default:
816 break;
817 }
818#endif
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000819 msg_pspew(" reading %u bytes:", readcnt);
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000820 for (i = 0; i < readcnt; i++)
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000821 msg_pspew(" 0x%02x", readarr[i]);
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000822 msg_pspew("\n");
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +0000823 return 0;
824}
Carl-Daniel Hailfinger1b0ba892010-06-20 10:58:32 +0000825
Mark Marshallf20b7be2014-05-09 21:16:21 +0000826static 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 +0000827{
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000828 return spi_write_chunked(flash, buf, start, len,
829 spi_write_256_chunksize);
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000830}