blob: 66d0df03e74685cffd9726e297c294f03cfa8584 [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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000020#include <string.h>
21#include <stdlib.h>
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +000022#include <stdio.h>
23#include <ctype.h>
Stefan Tauner5e695ab2012-05-06 17:03:40 +000024#include <errno.h>
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000025#include "flash.h"
Carl-Daniel Hailfinger1b0ba892010-06-20 10:58:32 +000026#include "chipdrivers.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000027#include "programmer.h"
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +000028
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +000029/* Remove the #define below if you don't want SPI flash chip emulation. */
30#define EMULATE_SPI_CHIP 1
31
32#if EMULATE_SPI_CHIP
33#define EMULATE_CHIP 1
34#include "spi.h"
35#endif
36
37#if EMULATE_CHIP
38#include <sys/types.h>
39#include <sys/stat.h>
40#endif
41
42#if EMULATE_CHIP
43static uint8_t *flashchip_contents = NULL;
44enum emu_chip {
45 EMULATE_NONE,
46 EMULATE_ST_M25P10_RES,
47 EMULATE_SST_SST25VF040_REMS,
48 EMULATE_SST_SST25VF032B,
Stefan Tauner0b9df972012-05-07 22:12:16 +000049 EMULATE_MACRONIX_MX25L6436,
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +000050};
51static enum emu_chip emu_chip = EMULATE_NONE;
52static char *emu_persistent_image = NULL;
Stefan Taunerc69c9c82011-11-23 09:13:48 +000053static unsigned int emu_chip_size = 0;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +000054#if EMULATE_SPI_CHIP
Stefan Taunerc69c9c82011-11-23 09:13:48 +000055static unsigned int emu_max_byteprogram_size = 0;
56static unsigned int emu_max_aai_size = 0;
57static unsigned int emu_jedec_se_size = 0;
58static unsigned int emu_jedec_be_52_size = 0;
59static unsigned int emu_jedec_be_d8_size = 0;
60static unsigned int emu_jedec_ce_60_size = 0;
61static unsigned int emu_jedec_ce_c7_size = 0;
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +000062unsigned char spi_blacklist[256];
63unsigned char spi_ignorelist[256];
64int spi_blacklist_size = 0;
65int spi_ignorelist_size = 0;
Stefan Tauner5e695ab2012-05-06 17:03:40 +000066static uint8_t emu_status = 0;
Stefan Tauner0b9df972012-05-07 22:12:16 +000067
68/* A legit complete SFDP table based on the MX25L6436E (rev. 1.8) datasheet. */
69static const uint8_t const sfdp_table[] = {
70 0x53, 0x46, 0x44, 0x50, // @0x00: SFDP signature
71 0x00, 0x01, 0x01, 0xFF, // @0x04: revision 1.0, 2 headers
72 0x00, 0x00, 0x01, 0x09, // @0x08: JEDEC SFDP header rev. 1.0, 9 DW long
73 0x1C, 0x00, 0x00, 0xFF, // @0x0C: PTP0 = 0x1C (instead of 0x30)
74 0xC2, 0x00, 0x01, 0x04, // @0x10: Macronix header rev. 1.0, 4 DW long
75 0x48, 0x00, 0x00, 0xFF, // @0x14: PTP1 = 0x48 (instead of 0x60)
76 0xFF, 0xFF, 0xFF, 0xFF, // @0x18: hole.
77 0xE5, 0x20, 0xC9, 0xFF, // @0x1C: SFDP parameter table start
78 0xFF, 0xFF, 0xFF, 0x03, // @0x20
79 0x00, 0xFF, 0x08, 0x6B, // @0x24
80 0x08, 0x3B, 0x00, 0xFF, // @0x28
81 0xEE, 0xFF, 0xFF, 0xFF, // @0x2C
82 0xFF, 0xFF, 0x00, 0x00, // @0x30
83 0xFF, 0xFF, 0x00, 0xFF, // @0x34
84 0x0C, 0x20, 0x0F, 0x52, // @0x38
85 0x10, 0xD8, 0x00, 0xFF, // @0x3C: SFDP parameter table end
86 0xFF, 0xFF, 0xFF, 0xFF, // @0x40: hole.
87 0xFF, 0xFF, 0xFF, 0xFF, // @0x44: hole.
88 0x00, 0x36, 0x00, 0x27, // @0x48: Macronix parameter table start
89 0xF4, 0x4F, 0xFF, 0xFF, // @0x4C
90 0xD9, 0xC8, 0xFF, 0xFF, // @0x50
91 0xFF, 0xFF, 0xFF, 0xFF, // @0x54: Macronix parameter table end
92};
93
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +000094#endif
95#endif
96
Stefan Taunerc69c9c82011-11-23 09:13:48 +000097static unsigned int spi_write_256_chunksize = 256;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +000098
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000099static int dummy_spi_send_command(struct flashctx *flash, unsigned int writecnt,
100 unsigned int readcnt,
101 const unsigned char *writearr,
102 unsigned char *readarr);
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000103static int dummy_spi_write_256(struct flashctx *flash, uint8_t *buf,
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000104 unsigned int start, unsigned int len);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000105static void dummy_chip_writeb(const struct flashctx *flash, uint8_t val,
106 chipaddr addr);
107static void dummy_chip_writew(const struct flashctx *flash, uint16_t val,
108 chipaddr addr);
109static void dummy_chip_writel(const struct flashctx *flash, uint32_t val,
110 chipaddr addr);
111static void dummy_chip_writen(const struct flashctx *flash, uint8_t *buf,
112 chipaddr addr, size_t len);
113static uint8_t dummy_chip_readb(const struct flashctx *flash,
114 const chipaddr addr);
115static uint16_t dummy_chip_readw(const struct flashctx *flash,
116 const chipaddr addr);
117static uint32_t dummy_chip_readl(const struct flashctx *flash,
118 const chipaddr addr);
119static void dummy_chip_readn(const struct flashctx *flash, uint8_t *buf,
120 const chipaddr addr, size_t len);
Michael Karcherb9dbe482011-05-11 17:07:07 +0000121
122static const struct spi_programmer spi_programmer_dummyflasher = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000123 .type = SPI_CONTROLLER_DUMMY,
124 .max_data_read = MAX_DATA_READ_UNLIMITED,
125 .max_data_write = MAX_DATA_UNSPECIFIED,
126 .command = dummy_spi_send_command,
127 .multicommand = default_spi_send_multicommand,
128 .read = default_spi_read,
129 .write_256 = dummy_spi_write_256,
Nico Huber7bca1262012-06-15 22:28:12 +0000130 .write_aai = default_spi_write_aai,
Michael Karcherb9dbe482011-05-11 17:07:07 +0000131};
David Hendricks8bb20212011-06-14 01:35:36 +0000132
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000133static const struct par_programmer par_programmer_dummy = {
134 .chip_readb = dummy_chip_readb,
135 .chip_readw = dummy_chip_readw,
136 .chip_readl = dummy_chip_readl,
137 .chip_readn = dummy_chip_readn,
138 .chip_writeb = dummy_chip_writeb,
139 .chip_writew = dummy_chip_writew,
140 .chip_writel = dummy_chip_writel,
141 .chip_writen = dummy_chip_writen,
142};
143
144enum chipbustype dummy_buses_supported = BUS_NONE;
145
David Hendricks8bb20212011-06-14 01:35:36 +0000146static int dummy_shutdown(void *data)
147{
148 msg_pspew("%s\n", __func__);
149#if EMULATE_CHIP
150 if (emu_chip != EMULATE_NONE) {
151 if (emu_persistent_image) {
152 msg_pdbg("Writing %s\n", emu_persistent_image);
153 write_buf_to_file(flashchip_contents, emu_chip_size,
154 emu_persistent_image);
155 }
156 free(flashchip_contents);
157 }
158#endif
159 return 0;
160}
161
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000162int dummy_init(void)
163{
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000164 char *bustext = NULL;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000165 char *tmp = NULL;
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +0000166 int i;
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000167#if EMULATE_SPI_CHIP
168 char *status = NULL;
169#endif
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000170#if EMULATE_CHIP
171 struct stat image_stat;
172#endif
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000173
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000174 msg_pspew("%s\n", __func__);
Carl-Daniel Hailfinger3504b532009-06-01 00:02:11 +0000175
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000176 bustext = extract_programmer_param("bus");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000177 msg_pdbg("Requested buses are: %s\n", bustext ? bustext : "default");
178 if (!bustext)
179 bustext = strdup("parallel+lpc+fwh+spi");
Carl-Daniel Hailfinger3504b532009-06-01 00:02:11 +0000180 /* Convert the parameters to lowercase. */
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000181 tolower_string(bustext);
Carl-Daniel Hailfinger3504b532009-06-01 00:02:11 +0000182
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000183 dummy_buses_supported = BUS_NONE;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000184 if (strstr(bustext, "parallel")) {
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000185 dummy_buses_supported |= BUS_PARALLEL;
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000186 msg_pdbg("Enabling support for %s flash.\n", "parallel");
Carl-Daniel Hailfinger3504b532009-06-01 00:02:11 +0000187 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000188 if (strstr(bustext, "lpc")) {
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000189 dummy_buses_supported |= BUS_LPC;
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000190 msg_pdbg("Enabling support for %s flash.\n", "LPC");
Carl-Daniel Hailfinger3504b532009-06-01 00:02:11 +0000191 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000192 if (strstr(bustext, "fwh")) {
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000193 dummy_buses_supported |= BUS_FWH;
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000194 msg_pdbg("Enabling support for %s flash.\n", "FWH");
Carl-Daniel Hailfinger3504b532009-06-01 00:02:11 +0000195 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000196 if (strstr(bustext, "spi")) {
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000197 dummy_buses_supported |= BUS_SPI;
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000198 msg_pdbg("Enabling support for %s flash.\n", "SPI");
Carl-Daniel Hailfinger3504b532009-06-01 00:02:11 +0000199 }
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000200 if (dummy_buses_supported == BUS_NONE)
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000201 msg_pdbg("Support for all flash bus types disabled.\n");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000202 free(bustext);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000203
204 tmp = extract_programmer_param("spi_write_256_chunksize");
205 if (tmp) {
206 spi_write_256_chunksize = atoi(tmp);
207 free(tmp);
208 if (spi_write_256_chunksize < 1) {
209 msg_perr("invalid spi_write_256_chunksize\n");
210 return 1;
211 }
212 }
213
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +0000214 tmp = extract_programmer_param("spi_blacklist");
215 if (tmp) {
216 i = strlen(tmp);
217 if (!strncmp(tmp, "0x", 2)) {
218 i -= 2;
219 memmove(tmp, tmp + 2, i + 1);
220 }
221 if ((i > 512) || (i % 2)) {
222 msg_perr("Invalid SPI command blacklist length\n");
223 free(tmp);
224 return 1;
225 }
226 spi_blacklist_size = i / 2;
227 for (i = 0; i < spi_blacklist_size * 2; i++) {
228 if (!isxdigit((unsigned char)tmp[i])) {
229 msg_perr("Invalid char \"%c\" in SPI command "
230 "blacklist\n", tmp[i]);
231 free(tmp);
232 return 1;
233 }
234 }
235 for (i = 0; i < spi_blacklist_size; i++) {
Carl-Daniel Hailfinger5b554712012-02-16 01:43:06 +0000236 unsigned int tmp2;
237 /* SCNx8 is apparently not supported by MSVC (and thus
238 * MinGW), so work around it with an extra variable
239 */
240 sscanf(tmp + i * 2, "%2x", &tmp2);
241 spi_blacklist[i] = (uint8_t)tmp2;
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +0000242 }
243 msg_pdbg("SPI blacklist is ");
244 for (i = 0; i < spi_blacklist_size; i++)
245 msg_pdbg("%02x ", spi_blacklist[i]);
246 msg_pdbg(", size %i\n", spi_blacklist_size);
247 }
248 free(tmp);
249
250 tmp = extract_programmer_param("spi_ignorelist");
251 if (tmp) {
252 i = strlen(tmp);
253 if (!strncmp(tmp, "0x", 2)) {
254 i -= 2;
255 memmove(tmp, tmp + 2, i + 1);
256 }
257 if ((i > 512) || (i % 2)) {
258 msg_perr("Invalid SPI command ignorelist length\n");
259 free(tmp);
260 return 1;
261 }
262 spi_ignorelist_size = i / 2;
263 for (i = 0; i < spi_ignorelist_size * 2; i++) {
264 if (!isxdigit((unsigned char)tmp[i])) {
265 msg_perr("Invalid char \"%c\" in SPI command "
266 "ignorelist\n", tmp[i]);
267 free(tmp);
268 return 1;
269 }
270 }
271 for (i = 0; i < spi_ignorelist_size; i++) {
Carl-Daniel Hailfinger5b554712012-02-16 01:43:06 +0000272 unsigned int tmp2;
273 /* SCNx8 is apparently not supported by MSVC (and thus
274 * MinGW), so work around it with an extra variable
275 */
276 sscanf(tmp + i * 2, "%2x", &tmp2);
277 spi_ignorelist[i] = (uint8_t)tmp2;
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +0000278 }
279 msg_pdbg("SPI ignorelist is ");
280 for (i = 0; i < spi_ignorelist_size; i++)
281 msg_pdbg("%02x ", spi_ignorelist[i]);
282 msg_pdbg(", size %i\n", spi_ignorelist_size);
283 }
284 free(tmp);
285
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000286#if EMULATE_CHIP
287 tmp = extract_programmer_param("emulate");
288 if (!tmp) {
289 msg_pdbg("Not emulating any flash chip.\n");
290 /* Nothing else to do. */
David Hendricks8bb20212011-06-14 01:35:36 +0000291 goto dummy_init_out;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000292 }
293#if EMULATE_SPI_CHIP
294 if (!strcmp(tmp, "M25P10.RES")) {
295 emu_chip = EMULATE_ST_M25P10_RES;
296 emu_chip_size = 128 * 1024;
297 emu_max_byteprogram_size = 128;
298 emu_max_aai_size = 0;
299 emu_jedec_se_size = 0;
300 emu_jedec_be_52_size = 0;
301 emu_jedec_be_d8_size = 32 * 1024;
302 emu_jedec_ce_60_size = 0;
303 emu_jedec_ce_c7_size = emu_chip_size;
304 msg_pdbg("Emulating ST M25P10.RES SPI flash chip (RES, page "
305 "write)\n");
306 }
307 if (!strcmp(tmp, "SST25VF040.REMS")) {
308 emu_chip = EMULATE_SST_SST25VF040_REMS;
309 emu_chip_size = 512 * 1024;
310 emu_max_byteprogram_size = 1;
311 emu_max_aai_size = 0;
312 emu_jedec_se_size = 4 * 1024;
313 emu_jedec_be_52_size = 32 * 1024;
314 emu_jedec_be_d8_size = 0;
315 emu_jedec_ce_60_size = emu_chip_size;
316 emu_jedec_ce_c7_size = 0;
317 msg_pdbg("Emulating SST SST25VF040.REMS SPI flash chip (REMS, "
318 "byte write)\n");
319 }
320 if (!strcmp(tmp, "SST25VF032B")) {
321 emu_chip = EMULATE_SST_SST25VF032B;
322 emu_chip_size = 4 * 1024 * 1024;
323 emu_max_byteprogram_size = 1;
324 emu_max_aai_size = 2;
325 emu_jedec_se_size = 4 * 1024;
326 emu_jedec_be_52_size = 32 * 1024;
327 emu_jedec_be_d8_size = 64 * 1024;
328 emu_jedec_ce_60_size = emu_chip_size;
329 emu_jedec_ce_c7_size = emu_chip_size;
330 msg_pdbg("Emulating SST SST25VF032B SPI flash chip (RDID, AAI "
331 "write)\n");
332 }
Stefan Tauner0b9df972012-05-07 22:12:16 +0000333 if (!strcmp(tmp, "MX25L6436")) {
334 emu_chip = EMULATE_MACRONIX_MX25L6436;
335 emu_chip_size = 8 * 1024 * 1024;
336 emu_max_byteprogram_size = 256;
337 emu_max_aai_size = 0;
338 emu_jedec_se_size = 4 * 1024;
339 emu_jedec_be_52_size = 32 * 1024;
340 emu_jedec_be_d8_size = 64 * 1024;
341 emu_jedec_ce_60_size = emu_chip_size;
342 emu_jedec_ce_c7_size = emu_chip_size;
343 msg_pdbg("Emulating Macronix MX25L6436 SPI flash chip (RDID, "
344 "SFDP)\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
379 emu_persistent_image = extract_programmer_param("image");
380 if (!emu_persistent_image) {
381 /* Nothing else to do. */
David Hendricks8bb20212011-06-14 01:35:36 +0000382 goto dummy_init_out;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000383 }
384 if (!stat(emu_persistent_image, &image_stat)) {
385 msg_pdbg("Found persistent image %s, size %li ",
386 emu_persistent_image, (long)image_stat.st_size);
387 if (image_stat.st_size == emu_chip_size) {
388 msg_pdbg("matches.\n");
389 msg_pdbg("Reading %s\n", emu_persistent_image);
390 read_buf_from_file(flashchip_contents, emu_chip_size,
391 emu_persistent_image);
392 } else {
393 msg_pdbg("doesn't match.\n");
394 }
395 }
396#endif
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000397
David Hendricks8bb20212011-06-14 01:35:36 +0000398dummy_init_out:
399 if (register_shutdown(dummy_shutdown, NULL)) {
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000400 free(flashchip_contents);
David Hendricks8bb20212011-06-14 01:35:36 +0000401 return 1;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000402 }
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000403 if (dummy_buses_supported & (BUS_PARALLEL | BUS_LPC | BUS_FWH))
404 register_par_programmer(&par_programmer_dummy,
405 dummy_buses_supported &
406 (BUS_PARALLEL | BUS_LPC |
407 BUS_FWH));
408 if (dummy_buses_supported & BUS_SPI)
409 register_spi_programmer(&spi_programmer_dummyflasher);
410
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000411 return 0;
412}
413
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000414void *dummy_map(const char *descr, unsigned long phys_addr, size_t len)
415{
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000416 msg_pspew("%s: Mapping %s, 0x%lx bytes at 0x%08lx\n",
417 __func__, descr, (unsigned long)len, phys_addr);
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000418 return (void *)phys_addr;
419}
420
421void dummy_unmap(void *virt_addr, size_t len)
422{
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000423 msg_pspew("%s: Unmapping 0x%lx bytes at %p\n",
424 __func__, (unsigned long)len, virt_addr);
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000425}
426
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000427static void dummy_chip_writeb(const struct flashctx *flash, uint8_t val,
428 chipaddr addr)
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000429{
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000430 msg_pspew("%s: addr=0x%lx, val=0x%02x\n", __func__, addr, val);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000431}
432
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000433static void dummy_chip_writew(const struct flashctx *flash, uint16_t val,
434 chipaddr addr)
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000435{
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000436 msg_pspew("%s: addr=0x%lx, val=0x%04x\n", __func__, addr, val);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000437}
438
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000439static void dummy_chip_writel(const struct flashctx *flash, uint32_t val,
440 chipaddr addr)
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000441{
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000442 msg_pspew("%s: addr=0x%lx, val=0x%08x\n", __func__, addr, val);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000443}
444
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000445static void dummy_chip_writen(const struct flashctx *flash, uint8_t *buf,
446 chipaddr addr, size_t len)
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000447{
448 size_t i;
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000449 msg_pspew("%s: addr=0x%lx, len=0x%08lx, writing data (hex):",
450 __func__, addr, (unsigned long)len);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000451 for (i = 0; i < len; i++) {
452 if ((i % 16) == 0)
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000453 msg_pspew("\n");
454 msg_pspew("%02x ", buf[i]);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000455 }
456}
457
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000458static uint8_t dummy_chip_readb(const struct flashctx *flash,
459 const chipaddr addr)
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000460{
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000461 msg_pspew("%s: addr=0x%lx, returning 0xff\n", __func__, addr);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000462 return 0xff;
463}
464
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000465static uint16_t dummy_chip_readw(const struct flashctx *flash,
466 const chipaddr addr)
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000467{
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000468 msg_pspew("%s: addr=0x%lx, returning 0xffff\n", __func__, addr);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000469 return 0xffff;
470}
471
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000472static uint32_t dummy_chip_readl(const struct flashctx *flash,
473 const chipaddr addr)
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000474{
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000475 msg_pspew("%s: addr=0x%lx, returning 0xffffffff\n", __func__, addr);
Carl-Daniel Hailfingerc3129202009-05-09 00:54:55 +0000476 return 0xffffffff;
477}
478
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000479static void dummy_chip_readn(const struct flashctx *flash, uint8_t *buf,
480 const chipaddr addr, size_t len)
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000481{
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000482 msg_pspew("%s: addr=0x%lx, len=0x%lx, returning array of 0xff\n",
483 __func__, addr, (unsigned long)len);
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000484 memset(buf, 0xff, len);
485 return;
486}
487
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000488#if EMULATE_SPI_CHIP
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000489static int emulate_spi_chip_response(unsigned int writecnt,
490 unsigned int readcnt,
491 const unsigned char *writearr,
492 unsigned char *readarr)
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000493{
Stefan Tauner0b9df972012-05-07 22:12:16 +0000494 unsigned int offs, i, toread;
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000495 static int unsigned aai_offs;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000496
497 if (writecnt == 0) {
498 msg_perr("No command sent to the chip!\n");
499 return 1;
500 }
Paul Menzelac427b22012-02-16 21:07:07 +0000501 /* spi_blacklist has precedence over spi_ignorelist. */
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +0000502 for (i = 0; i < spi_blacklist_size; i++) {
503 if (writearr[0] == spi_blacklist[i]) {
504 msg_pdbg("Refusing blacklisted SPI command 0x%02x\n",
505 spi_blacklist[i]);
506 return SPI_INVALID_OPCODE;
507 }
508 }
509 for (i = 0; i < spi_ignorelist_size; i++) {
510 if (writearr[0] == spi_ignorelist[i]) {
511 msg_cdbg("Ignoring ignorelisted SPI command 0x%02x\n",
512 spi_ignorelist[i]);
513 /* Return success because the command does not fail,
514 * it is simply ignored.
515 */
516 return 0;
517 }
518 }
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000519
520 if (emu_max_aai_size && (emu_status & SPI_SR_AAI)) {
521 if (writearr[0] != JEDEC_AAI_WORD_PROGRAM &&
522 writearr[0] != JEDEC_WRDI &&
523 writearr[0] != JEDEC_RDSR) {
524 msg_perr("Forbidden opcode (0x%02x) attempted during "
525 "AAI sequence!\n", writearr[0]);
526 return 0;
527 }
528 }
529
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000530 switch (writearr[0]) {
531 case JEDEC_RES:
532 if (emu_chip != EMULATE_ST_M25P10_RES)
533 break;
534 /* Respond with ST_M25P10_RES. */
535 if (readcnt > 0)
536 readarr[0] = 0x10;
537 break;
538 case JEDEC_REMS:
539 if (emu_chip != EMULATE_SST_SST25VF040_REMS)
540 break;
541 /* Respond with SST_SST25VF040_REMS. */
542 if (readcnt > 0)
543 readarr[0] = 0xbf;
544 if (readcnt > 1)
545 readarr[1] = 0x44;
546 break;
547 case JEDEC_RDID:
Stefan Tauner0b9df972012-05-07 22:12:16 +0000548 switch (emu_chip) {
549 case EMULATE_SST_SST25VF032B:
550 if (readcnt > 0)
551 readarr[0] = 0xbf;
552 if (readcnt > 1)
553 readarr[1] = 0x25;
554 if (readcnt > 2)
555 readarr[2] = 0x4a;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000556 break;
Stefan Tauner0b9df972012-05-07 22:12:16 +0000557 case EMULATE_MACRONIX_MX25L6436:
558 if (readcnt > 0)
559 readarr[0] = 0xc2;
560 if (readcnt > 1)
561 readarr[1] = 0x20;
562 if (readcnt > 2)
563 readarr[2] = 0x17;
564 break;
565 default: /* ignore */
566 break;
567 }
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000568 break;
Stefan Tauner0b9df972012-05-07 22:12:16 +0000569 case JEDEC_RDSR:
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000570 memset(readarr, emu_status, readcnt);
571 break;
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000572 /* FIXME: this should be chip-specific. */
573 case JEDEC_EWSR:
574 case JEDEC_WREN:
575 emu_status |= SPI_SR_WEL;
576 break;
577 case JEDEC_WRSR:
578 if (!(emu_status & SPI_SR_WEL)) {
579 msg_perr("WRSR attempted, but WEL is 0!\n");
580 break;
581 }
582 /* FIXME: add some reasonable simulation of the busy flag */
583 emu_status = writearr[1] & ~SPI_SR_WIP;
584 msg_pdbg2("WRSR wrote 0x%02x.\n", emu_status);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000585 break;
586 case JEDEC_READ:
587 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
588 /* Truncate to emu_chip_size. */
589 offs %= emu_chip_size;
590 if (readcnt > 0)
591 memcpy(readarr, flashchip_contents + offs, readcnt);
592 break;
593 case JEDEC_BYTE_PROGRAM:
594 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
595 /* Truncate to emu_chip_size. */
596 offs %= emu_chip_size;
597 if (writecnt < 5) {
598 msg_perr("BYTE PROGRAM size too short!\n");
599 return 1;
600 }
601 if (writecnt - 4 > emu_max_byteprogram_size) {
602 msg_perr("Max BYTE PROGRAM size exceeded!\n");
603 return 1;
604 }
605 memcpy(flashchip_contents + offs, writearr + 4, writecnt - 4);
606 break;
607 case JEDEC_AAI_WORD_PROGRAM:
608 if (!emu_max_aai_size)
609 break;
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000610 if (!(emu_status & SPI_SR_AAI)) {
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000611 if (writecnt < JEDEC_AAI_WORD_PROGRAM_OUTSIZE) {
612 msg_perr("Initial AAI WORD PROGRAM size too "
613 "short!\n");
614 return 1;
615 }
616 if (writecnt > JEDEC_AAI_WORD_PROGRAM_OUTSIZE) {
617 msg_perr("Initial AAI WORD PROGRAM size too "
618 "long!\n");
619 return 1;
620 }
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000621 emu_status |= SPI_SR_AAI;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000622 aai_offs = writearr[1] << 16 | writearr[2] << 8 |
623 writearr[3];
624 /* Truncate to emu_chip_size. */
625 aai_offs %= emu_chip_size;
626 memcpy(flashchip_contents + aai_offs, writearr + 4, 2);
627 aai_offs += 2;
628 } else {
629 if (writecnt < JEDEC_AAI_WORD_PROGRAM_CONT_OUTSIZE) {
630 msg_perr("Continuation AAI WORD PROGRAM size "
631 "too short!\n");
632 return 1;
633 }
634 if (writecnt > JEDEC_AAI_WORD_PROGRAM_CONT_OUTSIZE) {
635 msg_perr("Continuation AAI WORD PROGRAM size "
636 "too long!\n");
637 return 1;
638 }
639 memcpy(flashchip_contents + aai_offs, writearr + 1, 2);
640 aai_offs += 2;
641 }
642 break;
643 case JEDEC_WRDI:
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000644 if (emu_max_aai_size)
645 emu_status &= ~SPI_SR_AAI;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000646 break;
647 case JEDEC_SE:
648 if (!emu_jedec_se_size)
649 break;
650 if (writecnt != JEDEC_SE_OUTSIZE) {
651 msg_perr("SECTOR ERASE 0x20 outsize invalid!\n");
652 return 1;
653 }
654 if (readcnt != JEDEC_SE_INSIZE) {
655 msg_perr("SECTOR ERASE 0x20 insize invalid!\n");
656 return 1;
657 }
658 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
659 if (offs & (emu_jedec_se_size - 1))
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000660 msg_pdbg("Unaligned SECTOR ERASE 0x20: 0x%x\n", offs);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000661 offs &= ~(emu_jedec_se_size - 1);
662 memset(flashchip_contents + offs, 0xff, emu_jedec_se_size);
663 break;
664 case JEDEC_BE_52:
665 if (!emu_jedec_be_52_size)
666 break;
667 if (writecnt != JEDEC_BE_52_OUTSIZE) {
668 msg_perr("BLOCK ERASE 0x52 outsize invalid!\n");
669 return 1;
670 }
671 if (readcnt != JEDEC_BE_52_INSIZE) {
672 msg_perr("BLOCK ERASE 0x52 insize invalid!\n");
673 return 1;
674 }
675 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
676 if (offs & (emu_jedec_be_52_size - 1))
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000677 msg_pdbg("Unaligned BLOCK ERASE 0x52: 0x%x\n", offs);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000678 offs &= ~(emu_jedec_be_52_size - 1);
679 memset(flashchip_contents + offs, 0xff, emu_jedec_be_52_size);
680 break;
681 case JEDEC_BE_D8:
682 if (!emu_jedec_be_d8_size)
683 break;
684 if (writecnt != JEDEC_BE_D8_OUTSIZE) {
685 msg_perr("BLOCK ERASE 0xd8 outsize invalid!\n");
686 return 1;
687 }
688 if (readcnt != JEDEC_BE_D8_INSIZE) {
689 msg_perr("BLOCK ERASE 0xd8 insize invalid!\n");
690 return 1;
691 }
692 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
693 if (offs & (emu_jedec_be_d8_size - 1))
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000694 msg_pdbg("Unaligned BLOCK ERASE 0xd8: 0x%x\n", offs);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000695 offs &= ~(emu_jedec_be_d8_size - 1);
696 memset(flashchip_contents + offs, 0xff, emu_jedec_be_d8_size);
697 break;
698 case JEDEC_CE_60:
699 if (!emu_jedec_ce_60_size)
700 break;
701 if (writecnt != JEDEC_CE_60_OUTSIZE) {
702 msg_perr("CHIP ERASE 0x60 outsize invalid!\n");
703 return 1;
704 }
705 if (readcnt != JEDEC_CE_60_INSIZE) {
706 msg_perr("CHIP ERASE 0x60 insize invalid!\n");
707 return 1;
708 }
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000709 /* JEDEC_CE_60_OUTSIZE is 1 (no address) -> no offset. */
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000710 /* emu_jedec_ce_60_size is emu_chip_size. */
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000711 memset(flashchip_contents, 0xff, emu_jedec_ce_60_size);
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000712 break;
713 case JEDEC_CE_C7:
714 if (!emu_jedec_ce_c7_size)
715 break;
716 if (writecnt != JEDEC_CE_C7_OUTSIZE) {
717 msg_perr("CHIP ERASE 0xc7 outsize invalid!\n");
718 return 1;
719 }
720 if (readcnt != JEDEC_CE_C7_INSIZE) {
721 msg_perr("CHIP ERASE 0xc7 insize invalid!\n");
722 return 1;
723 }
Carl-Daniel Hailfinger146b77d2011-02-04 22:52:04 +0000724 /* JEDEC_CE_C7_OUTSIZE is 1 (no address) -> no offset. */
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000725 /* emu_jedec_ce_c7_size is emu_chip_size. */
726 memset(flashchip_contents, 0xff, emu_jedec_ce_c7_size);
727 break;
Stefan Tauner0b9df972012-05-07 22:12:16 +0000728 case JEDEC_SFDP:
729 if (emu_chip != EMULATE_MACRONIX_MX25L6436)
730 break;
731 if (writecnt < 4)
732 break;
733 offs = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
734
735 /* SFDP expects one dummy byte after the address. */
736 if (writecnt == 4) {
737 /* The dummy byte was not written, make sure it is read instead.
738 * Shifting and shortening the read array does achieve this goal.
739 */
740 readarr++;
741 readcnt--;
742 } else {
743 /* The response is shifted if more than 5 bytes are written, because SFDP data is
744 * already shifted out by the chip while those superfluous bytes are written. */
745 offs += writecnt - 5;
746 }
747
748 /* The SFDP spec implies that the start address of an SFDP read may be truncated to fit in the
749 * SFDP table address space, i.e. the start address may be wrapped around at SFDP table size.
750 * This is a reasonable implementation choice in hardware because it saves a few gates. */
751 if (offs >= sizeof(sfdp_table)) {
752 msg_pdbg("Wrapping the start address around the SFDP table boundary (using 0x%x "
753 "instead of 0x%x).\n", (unsigned int)(offs % sizeof(sfdp_table)), offs);
754 offs %= sizeof(sfdp_table);
755 }
756 toread = min(sizeof(sfdp_table) - offs, readcnt);
757 memcpy(readarr, sfdp_table + offs, toread);
758 if (toread < readcnt)
759 msg_pdbg("Crossing the SFDP table boundary in a single "
760 "continuous chunk produces undefined results "
761 "after that point.\n");
762 break;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000763 default:
764 /* No special response. */
765 break;
766 }
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000767 if (writearr[0] != JEDEC_WREN && writearr[0] != JEDEC_EWSR)
768 emu_status &= ~SPI_SR_WEL;
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000769 return 0;
770}
771#endif
772
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000773static int dummy_spi_send_command(struct flashctx *flash, unsigned int writecnt,
774 unsigned int readcnt,
775 const unsigned char *writearr,
776 unsigned char *readarr)
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +0000777{
778 int i;
779
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000780 msg_pspew("%s:", __func__);
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +0000781
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000782 msg_pspew(" writing %u bytes:", writecnt);
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +0000783 for (i = 0; i < writecnt; i++)
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000784 msg_pspew(" 0x%02x", writearr[i]);
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +0000785
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000786 /* Response for unknown commands and missing chip is 0xff. */
787 memset(readarr, 0xff, readcnt);
788#if EMULATE_SPI_CHIP
789 switch (emu_chip) {
790 case EMULATE_ST_M25P10_RES:
791 case EMULATE_SST_SST25VF040_REMS:
792 case EMULATE_SST_SST25VF032B:
Stefan Tauner0b9df972012-05-07 22:12:16 +0000793 case EMULATE_MACRONIX_MX25L6436:
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000794 if (emulate_spi_chip_response(writecnt, readcnt, writearr,
795 readarr)) {
Carl-Daniel Hailfinger1b83be52012-02-08 23:28:54 +0000796 msg_pdbg("Invalid command sent to flash chip!\n");
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000797 return 1;
798 }
799 break;
800 default:
801 break;
802 }
803#endif
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000804 msg_pspew(" reading %u bytes:", readcnt);
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000805 for (i = 0; i < readcnt; i++)
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000806 msg_pspew(" 0x%02x", readarr[i]);
Carl-Daniel Hailfinger3ac101c2010-01-09 04:32:23 +0000807 msg_pspew("\n");
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +0000808 return 0;
809}
Carl-Daniel Hailfinger1b0ba892010-06-20 10:58:32 +0000810
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000811static int dummy_spi_write_256(struct flashctx *flash, uint8_t *buf,
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000812 unsigned int start, unsigned int len)
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000813{
Carl-Daniel Hailfingerf68aa8a2010-11-01 22:07:04 +0000814 return spi_write_chunked(flash, buf, start, len,
815 spi_write_256_chunksize);
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000816}