blob: d68ee4a293b71196b7842ed543d8b35efbb54e98 [file] [log] [blame]
Mike Frysingerb375ad92013-12-03 16:43:27 -07001/*
2 * Simulate a SPI flash
3 *
4 * Copyright (c) 2011-2013 The Chromium OS Authors.
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * Licensed under the GPL-2 or later.
9 */
10
11#include <common.h>
Simon Glass01862382014-10-13 23:42:08 -060012#include <dm.h>
Mike Frysingerb375ad92013-12-03 16:43:27 -070013#include <malloc.h>
14#include <spi.h>
15#include <os.h>
16
17#include <spi_flash.h>
18#include "sf_internal.h"
19
20#include <asm/getopt.h>
21#include <asm/spi.h>
22#include <asm/state.h>
Simon Glass01862382014-10-13 23:42:08 -060023#include <dm/device-internal.h>
24#include <dm/lists.h>
25#include <dm/uclass-internal.h>
26
27DECLARE_GLOBAL_DATA_PTR;
Mike Frysingerb375ad92013-12-03 16:43:27 -070028
29/*
30 * The different states that our SPI flash transitions between.
31 * We need to keep track of this across multiple xfer calls since
32 * the SPI bus could possibly call down into us multiple times.
33 */
34enum sandbox_sf_state {
35 SF_CMD, /* default state -- we're awaiting a command */
36 SF_ID, /* read the flash's (jedec) ID code */
37 SF_ADDR, /* processing the offset in the flash to read/etc... */
38 SF_READ, /* reading data from the flash */
39 SF_WRITE, /* writing data to the flash, i.e. page programming */
40 SF_ERASE, /* erase the flash */
41 SF_READ_STATUS, /* read the flash's status register */
42 SF_READ_STATUS1, /* read the flash's status register upper 8 bits*/
Simon Glass01862382014-10-13 23:42:08 -060043 SF_WRITE_STATUS, /* write the flash's status register */
Mike Frysingerb375ad92013-12-03 16:43:27 -070044};
45
46static const char *sandbox_sf_state_name(enum sandbox_sf_state state)
47{
48 static const char * const states[] = {
49 "CMD", "ID", "ADDR", "READ", "WRITE", "ERASE", "READ_STATUS",
Simon Glass01862382014-10-13 23:42:08 -060050 "READ_STATUS1", "WRITE_STATUS",
Mike Frysingerb375ad92013-12-03 16:43:27 -070051 };
52 return states[state];
53}
54
55/* Bits for the status register */
56#define STAT_WIP (1 << 0)
57#define STAT_WEL (1 << 1)
58
59/* Assume all SPI flashes have 3 byte addresses since they do atm */
60#define SF_ADDR_LEN 3
61
Simon Glass5d8f0632014-09-15 06:33:19 -060062#define IDCODE_LEN 3
Mike Frysingerb375ad92013-12-03 16:43:27 -070063
64/* Used to quickly bulk erase backing store */
65static u8 sandbox_sf_0xff[0x1000];
66
67/* Internal state data for each SPI flash */
68struct sandbox_spi_flash {
Simon Glass01862382014-10-13 23:42:08 -060069 unsigned int cs; /* Chip select we are attached to */
Mike Frysingerb375ad92013-12-03 16:43:27 -070070 /*
71 * As we receive data over the SPI bus, our flash transitions
72 * between states. For example, we start off in the SF_CMD
73 * state where the first byte tells us what operation to perform
74 * (such as read or write the flash). But the operation itself
75 * can go through a few states such as first reading in the
76 * offset in the flash to perform the requested operation.
77 * Thus "state" stores the exact state that our machine is in
78 * while "cmd" stores the overall command we're processing.
79 */
80 enum sandbox_sf_state state;
81 uint cmd;
Simon Glass5d8f0632014-09-15 06:33:19 -060082 /* Erase size of current erase command */
83 uint erase_size;
Mike Frysingerb375ad92013-12-03 16:43:27 -070084 /* Current position in the flash; used when reading/writing/etc... */
85 uint off;
86 /* How many address bytes we've consumed */
87 uint addr_bytes, pad_addr_bytes;
88 /* The current flash status (see STAT_XXX defines above) */
89 u16 status;
90 /* Data describing the flash we're emulating */
Jagan Teki77ae47b2016-10-30 23:16:10 +053091 const struct spi_flash_info *data;
Mike Frysingerb375ad92013-12-03 16:43:27 -070092 /* The file on disk to serv up data from */
93 int fd;
94};
95
Simon Glass01862382014-10-13 23:42:08 -060096struct sandbox_spi_flash_plat_data {
97 const char *filename;
98 const char *device_name;
99 int bus;
100 int cs;
101};
102
103/**
104 * This is a very strange probe function. If it has platform data (which may
105 * have come from the device tree) then this function gets the filename and
106 * device type from there. Failing that it looks at the command line
107 * parameter.
108 */
109static int sandbox_sf_probe(struct udevice *dev)
Mike Frysingerb375ad92013-12-03 16:43:27 -0700110{
111 /* spec = idcode:file */
Simon Glass01862382014-10-13 23:42:08 -0600112 struct sandbox_spi_flash *sbsf = dev_get_priv(dev);
Mike Frysingerb375ad92013-12-03 16:43:27 -0700113 const char *file;
Simon Glass5d8f0632014-09-15 06:33:19 -0600114 size_t len, idname_len;
Jagan Teki77ae47b2016-10-30 23:16:10 +0530115 const struct spi_flash_info *data;
Simon Glass01862382014-10-13 23:42:08 -0600116 struct sandbox_spi_flash_plat_data *pdata = dev_get_platdata(dev);
117 struct sandbox_state *state = state_get_current();
118 struct udevice *bus = dev->parent;
119 const char *spec = NULL;
120 int ret = 0;
121 int cs = -1;
122 int i;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700123
Simon Glass01862382014-10-13 23:42:08 -0600124 debug("%s: bus %d, looking for emul=%p: ", __func__, bus->seq, dev);
125 if (bus->seq >= 0 && bus->seq < CONFIG_SANDBOX_SPI_MAX_BUS) {
126 for (i = 0; i < CONFIG_SANDBOX_SPI_MAX_CS; i++) {
127 if (state->spi[bus->seq][i].emul == dev)
128 cs = i;
129 }
130 }
131 if (cs == -1) {
Simon Glassbb213e32015-05-04 11:31:10 -0600132 printf("Error: Unknown chip select for device '%s'\n",
Simon Glass01862382014-10-13 23:42:08 -0600133 dev->name);
134 return -EINVAL;
135 }
136 debug("found at cs %d\n", cs);
137
138 if (!pdata->filename) {
139 struct sandbox_state *state = state_get_current();
140
141 assert(bus->seq != -1);
142 if (bus->seq < CONFIG_SANDBOX_SPI_MAX_BUS)
143 spec = state->spi[bus->seq][cs].spec;
Simon Glassef3493d2015-01-25 08:27:09 -0700144 if (!spec) {
Simon Glassdb45d9e2016-02-24 09:14:54 -0700145 debug("%s: No spec found for bus %d, cs %d\n",
146 __func__, bus->seq, cs);
Simon Glassef3493d2015-01-25 08:27:09 -0700147 ret = -ENOENT;
148 goto error;
149 }
Simon Glass01862382014-10-13 23:42:08 -0600150
151 file = strchr(spec, ':');
152 if (!file) {
Simon Glassdb45d9e2016-02-24 09:14:54 -0700153 printf("%s: unable to parse file\n", __func__);
Simon Glass01862382014-10-13 23:42:08 -0600154 ret = -EINVAL;
155 goto error;
156 }
157 idname_len = file - spec;
158 pdata->filename = file + 1;
159 pdata->device_name = spec;
160 ++file;
161 } else {
162 spec = strchr(pdata->device_name, ',');
163 if (spec)
164 spec++;
165 else
166 spec = pdata->device_name;
167 idname_len = strlen(spec);
Mike Frysingerb375ad92013-12-03 16:43:27 -0700168 }
Simon Glass01862382014-10-13 23:42:08 -0600169 debug("%s: device='%s'\n", __func__, spec);
Mike Frysingerb375ad92013-12-03 16:43:27 -0700170
Jagan Teki77ae47b2016-10-30 23:16:10 +0530171 for (data = spi_flash_ids; data->name; data++) {
Mike Frysingerb375ad92013-12-03 16:43:27 -0700172 len = strlen(data->name);
173 if (idname_len != len)
174 continue;
Simon Glass01862382014-10-13 23:42:08 -0600175 if (!strncasecmp(spec, data->name, len))
Mike Frysingerb375ad92013-12-03 16:43:27 -0700176 break;
177 }
Simon Glass5d8f0632014-09-15 06:33:19 -0600178 if (!data->name) {
Simon Glassdb45d9e2016-02-24 09:14:54 -0700179 printf("%s: unknown flash '%*s'\n", __func__, (int)idname_len,
Mike Frysingerb375ad92013-12-03 16:43:27 -0700180 spec);
Simon Glass01862382014-10-13 23:42:08 -0600181 ret = -EINVAL;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700182 goto error;
183 }
184
185 if (sandbox_sf_0xff[0] == 0x00)
186 memset(sandbox_sf_0xff, 0xff, sizeof(sandbox_sf_0xff));
187
Simon Glass01862382014-10-13 23:42:08 -0600188 sbsf->fd = os_open(pdata->filename, 02);
Mike Frysingerb375ad92013-12-03 16:43:27 -0700189 if (sbsf->fd == -1) {
Simon Glassdb45d9e2016-02-24 09:14:54 -0700190 printf("%s: unable to open file '%s'\n", __func__,
Simon Glass01862382014-10-13 23:42:08 -0600191 pdata->filename);
192 ret = -EIO;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700193 goto error;
194 }
195
196 sbsf->data = data;
Simon Glass01862382014-10-13 23:42:08 -0600197 sbsf->cs = cs;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700198
Mike Frysingerb375ad92013-12-03 16:43:27 -0700199 return 0;
200
201 error:
Simon Glassef3493d2015-01-25 08:27:09 -0700202 debug("%s: Got error %d\n", __func__, ret);
Simon Glass01862382014-10-13 23:42:08 -0600203 return ret;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700204}
205
Simon Glass01862382014-10-13 23:42:08 -0600206static int sandbox_sf_remove(struct udevice *dev)
Mike Frysingerb375ad92013-12-03 16:43:27 -0700207{
Simon Glass01862382014-10-13 23:42:08 -0600208 struct sandbox_spi_flash *sbsf = dev_get_priv(dev);
Mike Frysingerb375ad92013-12-03 16:43:27 -0700209
210 os_close(sbsf->fd);
Simon Glass01862382014-10-13 23:42:08 -0600211
212 return 0;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700213}
214
Simon Glass01862382014-10-13 23:42:08 -0600215static void sandbox_sf_cs_activate(struct udevice *dev)
Mike Frysingerb375ad92013-12-03 16:43:27 -0700216{
Simon Glass01862382014-10-13 23:42:08 -0600217 struct sandbox_spi_flash *sbsf = dev_get_priv(dev);
Mike Frysingerb375ad92013-12-03 16:43:27 -0700218
219 debug("sandbox_sf: CS activated; state is fresh!\n");
220
221 /* CS is asserted, so reset state */
222 sbsf->off = 0;
223 sbsf->addr_bytes = 0;
224 sbsf->pad_addr_bytes = 0;
225 sbsf->state = SF_CMD;
226 sbsf->cmd = SF_CMD;
227}
228
Simon Glass01862382014-10-13 23:42:08 -0600229static void sandbox_sf_cs_deactivate(struct udevice *dev)
Mike Frysingerb375ad92013-12-03 16:43:27 -0700230{
231 debug("sandbox_sf: CS deactivated; cmd done processing!\n");
232}
233
Simon Glass01862382014-10-13 23:42:08 -0600234/*
235 * There are times when the data lines are allowed to tristate. What
236 * is actually sensed on the line depends on the hardware. It could
237 * always be 0xFF/0x00 (if there are pull ups/downs), or things could
238 * float and so we'd get garbage back. This func encapsulates that
239 * scenario so we can worry about the details here.
240 */
241static void sandbox_spi_tristate(u8 *buf, uint len)
242{
243 /* XXX: make this into a user config option ? */
244 memset(buf, 0xff, len);
245}
246
Mike Frysingerb375ad92013-12-03 16:43:27 -0700247/* Figure out what command this stream is telling us to do */
248static int sandbox_sf_process_cmd(struct sandbox_spi_flash *sbsf, const u8 *rx,
249 u8 *tx)
250{
251 enum sandbox_sf_state oldstate = sbsf->state;
252
253 /* We need to output a byte for the cmd byte we just ate */
Simon Glass01862382014-10-13 23:42:08 -0600254 if (tx)
255 sandbox_spi_tristate(tx, 1);
Mike Frysingerb375ad92013-12-03 16:43:27 -0700256
257 sbsf->cmd = rx[0];
258 switch (sbsf->cmd) {
259 case CMD_READ_ID:
260 sbsf->state = SF_ID;
261 sbsf->cmd = SF_ID;
262 break;
263 case CMD_READ_ARRAY_FAST:
264 sbsf->pad_addr_bytes = 1;
265 case CMD_READ_ARRAY_SLOW:
266 case CMD_PAGE_PROGRAM:
Mike Frysingerb375ad92013-12-03 16:43:27 -0700267 sbsf->state = SF_ADDR;
268 break;
269 case CMD_WRITE_DISABLE:
270 debug(" write disabled\n");
271 sbsf->status &= ~STAT_WEL;
272 break;
273 case CMD_READ_STATUS:
274 sbsf->state = SF_READ_STATUS;
275 break;
276 case CMD_READ_STATUS1:
277 sbsf->state = SF_READ_STATUS1;
278 break;
279 case CMD_WRITE_ENABLE:
280 debug(" write enabled\n");
281 sbsf->status |= STAT_WEL;
282 break;
Simon Glass01862382014-10-13 23:42:08 -0600283 case CMD_WRITE_STATUS:
284 sbsf->state = SF_WRITE_STATUS;
285 break;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700286 default: {
Simon Glass5d8f0632014-09-15 06:33:19 -0600287 int flags = sbsf->data->flags;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700288
Simon Glass5d8f0632014-09-15 06:33:19 -0600289 /* we only support erase here */
290 if (sbsf->cmd == CMD_ERASE_CHIP) {
291 sbsf->erase_size = sbsf->data->sector_size *
292 sbsf->data->nr_sectors;
293 } else if (sbsf->cmd == CMD_ERASE_4K && (flags & SECT_4K)) {
294 sbsf->erase_size = 4 << 10;
Jagan Tekifbf356b2016-08-08 17:19:08 +0530295 } else if (sbsf->cmd == CMD_ERASE_64K && !(flags & SECT_4K)) {
Simon Glass5d8f0632014-09-15 06:33:19 -0600296 sbsf->erase_size = 64 << 10;
297 } else {
298 debug(" cmd unknown: %#x\n", sbsf->cmd);
Simon Glass01862382014-10-13 23:42:08 -0600299 return -EIO;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700300 }
Simon Glass5d8f0632014-09-15 06:33:19 -0600301 sbsf->state = SF_ADDR;
302 break;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700303 }
304 }
305
306 if (oldstate != sbsf->state)
307 debug(" cmd: transition to %s state\n",
308 sandbox_sf_state_name(sbsf->state));
309
310 return 0;
311}
312
313int sandbox_erase_part(struct sandbox_spi_flash *sbsf, int size)
314{
315 int todo;
316 int ret;
317
318 while (size > 0) {
Masahiro Yamadadb204642014-11-07 03:03:31 +0900319 todo = min(size, (int)sizeof(sandbox_sf_0xff));
Mike Frysingerb375ad92013-12-03 16:43:27 -0700320 ret = os_write(sbsf->fd, sandbox_sf_0xff, todo);
321 if (ret != todo)
322 return ret;
323 size -= todo;
324 }
325
326 return 0;
327}
328
Simon Glass01862382014-10-13 23:42:08 -0600329static int sandbox_sf_xfer(struct udevice *dev, unsigned int bitlen,
330 const void *rxp, void *txp, unsigned long flags)
Mike Frysingerb375ad92013-12-03 16:43:27 -0700331{
Simon Glass01862382014-10-13 23:42:08 -0600332 struct sandbox_spi_flash *sbsf = dev_get_priv(dev);
333 const uint8_t *rx = rxp;
334 uint8_t *tx = txp;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700335 uint cnt, pos = 0;
Simon Glass01862382014-10-13 23:42:08 -0600336 int bytes = bitlen / 8;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700337 int ret;
338
339 debug("sandbox_sf: state:%x(%s) bytes:%u\n", sbsf->state,
340 sandbox_sf_state_name(sbsf->state), bytes);
341
Simon Glass01862382014-10-13 23:42:08 -0600342 if ((flags & SPI_XFER_BEGIN))
343 sandbox_sf_cs_activate(dev);
344
Mike Frysingerb375ad92013-12-03 16:43:27 -0700345 if (sbsf->state == SF_CMD) {
346 /* Figure out the initial state */
Simon Glass01862382014-10-13 23:42:08 -0600347 ret = sandbox_sf_process_cmd(sbsf, rx, tx);
348 if (ret)
349 return ret;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700350 ++pos;
351 }
352
353 /* Process the remaining data */
354 while (pos < bytes) {
355 switch (sbsf->state) {
356 case SF_ID: {
357 u8 id;
358
359 debug(" id: off:%u tx:", sbsf->off);
Simon Glass5d8f0632014-09-15 06:33:19 -0600360 if (sbsf->off < IDCODE_LEN) {
361 /* Extract correct byte from ID 0x00aabbcc */
Jagan Teki77ae47b2016-10-30 23:16:10 +0530362 id = ((((sbsf->data)->id[0]) << 16) |
363 (((sbsf->data)->id[1]) << 8 |
364 ((sbsf->data)->id[2]))) >>
Simon Glass5d8f0632014-09-15 06:33:19 -0600365 (8 * (IDCODE_LEN - 1 - sbsf->off));
366 } else {
Mike Frysingerb375ad92013-12-03 16:43:27 -0700367 id = 0;
Simon Glass5d8f0632014-09-15 06:33:19 -0600368 }
369 debug("%d %02x\n", sbsf->off, id);
Mike Frysingerb375ad92013-12-03 16:43:27 -0700370 tx[pos++] = id;
371 ++sbsf->off;
372 break;
373 }
374 case SF_ADDR:
375 debug(" addr: bytes:%u rx:%02x ", sbsf->addr_bytes,
376 rx[pos]);
377
378 if (sbsf->addr_bytes++ < SF_ADDR_LEN)
379 sbsf->off = (sbsf->off << 8) | rx[pos];
380 debug("addr:%06x\n", sbsf->off);
381
Simon Glass01862382014-10-13 23:42:08 -0600382 if (tx)
383 sandbox_spi_tristate(&tx[pos], 1);
384 pos++;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700385
386 /* See if we're done processing */
387 if (sbsf->addr_bytes <
388 SF_ADDR_LEN + sbsf->pad_addr_bytes)
389 break;
390
391 /* Next state! */
392 if (os_lseek(sbsf->fd, sbsf->off, OS_SEEK_SET) < 0) {
393 puts("sandbox_sf: os_lseek() failed");
Simon Glass01862382014-10-13 23:42:08 -0600394 return -EIO;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700395 }
396 switch (sbsf->cmd) {
397 case CMD_READ_ARRAY_FAST:
398 case CMD_READ_ARRAY_SLOW:
399 sbsf->state = SF_READ;
400 break;
401 case CMD_PAGE_PROGRAM:
402 sbsf->state = SF_WRITE;
403 break;
404 default:
405 /* assume erase state ... */
406 sbsf->state = SF_ERASE;
407 goto case_sf_erase;
408 }
409 debug(" cmd: transition to %s state\n",
410 sandbox_sf_state_name(sbsf->state));
411 break;
412 case SF_READ:
413 /*
414 * XXX: need to handle exotic behavior:
415 * - reading past end of device
416 */
417
418 cnt = bytes - pos;
419 debug(" tx: read(%u)\n", cnt);
Simon Glass01862382014-10-13 23:42:08 -0600420 assert(tx);
Mike Frysingerb375ad92013-12-03 16:43:27 -0700421 ret = os_read(sbsf->fd, tx + pos, cnt);
422 if (ret < 0) {
Simon Glass01862382014-10-13 23:42:08 -0600423 puts("sandbox_sf: os_read() failed\n");
424 return -EIO;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700425 }
426 pos += ret;
427 break;
428 case SF_READ_STATUS:
429 debug(" read status: %#x\n", sbsf->status);
430 cnt = bytes - pos;
431 memset(tx + pos, sbsf->status, cnt);
432 pos += cnt;
433 break;
434 case SF_READ_STATUS1:
435 debug(" read status: %#x\n", sbsf->status);
436 cnt = bytes - pos;
437 memset(tx + pos, sbsf->status >> 8, cnt);
438 pos += cnt;
439 break;
Simon Glass01862382014-10-13 23:42:08 -0600440 case SF_WRITE_STATUS:
441 debug(" write status: %#x (ignored)\n", rx[pos]);
442 pos = bytes;
443 break;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700444 case SF_WRITE:
445 /*
446 * XXX: need to handle exotic behavior:
447 * - unaligned addresses
448 * - more than a page (256) worth of data
449 * - reading past end of device
450 */
451 if (!(sbsf->status & STAT_WEL)) {
452 puts("sandbox_sf: write enable not set before write\n");
453 goto done;
454 }
455
456 cnt = bytes - pos;
457 debug(" rx: write(%u)\n", cnt);
Simon Glass01862382014-10-13 23:42:08 -0600458 if (tx)
459 sandbox_spi_tristate(&tx[pos], cnt);
Mike Frysingerb375ad92013-12-03 16:43:27 -0700460 ret = os_write(sbsf->fd, rx + pos, cnt);
461 if (ret < 0) {
462 puts("sandbox_spi: os_write() failed\n");
Simon Glass01862382014-10-13 23:42:08 -0600463 return -EIO;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700464 }
465 pos += ret;
466 sbsf->status &= ~STAT_WEL;
467 break;
468 case SF_ERASE:
469 case_sf_erase: {
Mike Frysingerb375ad92013-12-03 16:43:27 -0700470 if (!(sbsf->status & STAT_WEL)) {
471 puts("sandbox_sf: write enable not set before erase\n");
472 goto done;
473 }
474
475 /* verify address is aligned */
Simon Glass5d8f0632014-09-15 06:33:19 -0600476 if (sbsf->off & (sbsf->erase_size - 1)) {
Mike Frysingerb375ad92013-12-03 16:43:27 -0700477 debug(" sector erase: cmd:%#x needs align:%#x, but we got %#x\n",
Simon Glass5d8f0632014-09-15 06:33:19 -0600478 sbsf->cmd, sbsf->erase_size,
Mike Frysingerb375ad92013-12-03 16:43:27 -0700479 sbsf->off);
480 sbsf->status &= ~STAT_WEL;
481 goto done;
482 }
483
Simon Glass5d8f0632014-09-15 06:33:19 -0600484 debug(" sector erase addr: %u, size: %u\n", sbsf->off,
485 sbsf->erase_size);
Mike Frysingerb375ad92013-12-03 16:43:27 -0700486
487 cnt = bytes - pos;
Simon Glass01862382014-10-13 23:42:08 -0600488 if (tx)
489 sandbox_spi_tristate(&tx[pos], cnt);
Mike Frysingerb375ad92013-12-03 16:43:27 -0700490 pos += cnt;
491
492 /*
493 * TODO(vapier@gentoo.org): latch WIP in status, and
494 * delay before clearing it ?
495 */
Simon Glass5d8f0632014-09-15 06:33:19 -0600496 ret = sandbox_erase_part(sbsf, sbsf->erase_size);
Mike Frysingerb375ad92013-12-03 16:43:27 -0700497 sbsf->status &= ~STAT_WEL;
498 if (ret) {
499 debug("sandbox_sf: Erase failed\n");
500 goto done;
501 }
502 goto done;
503 }
504 default:
505 debug(" ??? no idea what to do ???\n");
506 goto done;
507 }
508 }
509
510 done:
Simon Glass01862382014-10-13 23:42:08 -0600511 if (flags & SPI_XFER_END)
512 sandbox_sf_cs_deactivate(dev);
513 return pos == bytes ? 0 : -EIO;
514}
515
516int sandbox_sf_ofdata_to_platdata(struct udevice *dev)
517{
518 struct sandbox_spi_flash_plat_data *pdata = dev_get_platdata(dev);
519 const void *blob = gd->fdt_blob;
520 int node = dev->of_offset;
521
522 pdata->filename = fdt_getprop(blob, node, "sandbox,filename", NULL);
523 pdata->device_name = fdt_getprop(blob, node, "compatible", NULL);
524 if (!pdata->filename || !pdata->device_name) {
525 debug("%s: Missing properties, filename=%s, device_name=%s\n",
526 __func__, pdata->filename, pdata->device_name);
527 return -EINVAL;
528 }
529
530 return 0;
Mike Frysingerb375ad92013-12-03 16:43:27 -0700531}
532
Simon Glass01862382014-10-13 23:42:08 -0600533static const struct dm_spi_emul_ops sandbox_sf_emul_ops = {
Mike Frysingerb375ad92013-12-03 16:43:27 -0700534 .xfer = sandbox_sf_xfer,
535};
536
Simon Glass01862382014-10-13 23:42:08 -0600537#ifdef CONFIG_SPI_FLASH
Mike Frysingerb375ad92013-12-03 16:43:27 -0700538static int sandbox_cmdline_cb_spi_sf(struct sandbox_state *state,
539 const char *arg)
540{
541 unsigned long bus, cs;
542 const char *spec = sandbox_spi_parse_spec(arg, &bus, &cs);
543
544 if (!spec)
545 return 1;
546
547 /*
548 * It is safe to not make a copy of 'spec' because it comes from the
549 * command line.
550 *
551 * TODO(sjg@chromium.org): It would be nice if we could parse the
552 * spec here, but the problem is that no U-Boot init has been done
553 * yet. Perhaps we can figure something out.
554 */
Mike Frysingerb375ad92013-12-03 16:43:27 -0700555 state->spi[bus][cs].spec = spec;
Simon Glassdb45d9e2016-02-24 09:14:54 -0700556 debug("%s: Setting up spec '%s' for bus %ld, cs %ld\n", __func__,
557 spec, bus, cs);
558
Mike Frysingerb375ad92013-12-03 16:43:27 -0700559 return 0;
560}
561SANDBOX_CMDLINE_OPT(spi_sf, 1, "connect a SPI flash: <bus>:<cs>:<id>:<file>");
Simon Glass01862382014-10-13 23:42:08 -0600562
563int sandbox_sf_bind_emul(struct sandbox_state *state, int busnum, int cs,
564 struct udevice *bus, int of_offset, const char *spec)
565{
566 struct udevice *emul;
567 char name[20], *str;
568 struct driver *drv;
569 int ret;
570
571 /* now the emulator */
572 strncpy(name, spec, sizeof(name) - 6);
573 name[sizeof(name) - 6] = '\0';
574 strcat(name, "-emul");
575 str = strdup(name);
576 if (!str)
577 return -ENOMEM;
578 drv = lists_driver_lookup_name("sandbox_sf_emul");
579 if (!drv) {
580 puts("Cannot find sandbox_sf_emul driver\n");
581 return -ENOENT;
582 }
583 ret = device_bind(bus, drv, str, NULL, of_offset, &emul);
584 if (ret) {
585 printf("Cannot create emul device for spec '%s' (err=%d)\n",
586 spec, ret);
587 return ret;
588 }
589 state->spi[busnum][cs].emul = emul;
590
591 return 0;
592}
593
594void sandbox_sf_unbind_emul(struct sandbox_state *state, int busnum, int cs)
595{
Simon Glass5d2ee052015-01-25 08:27:12 -0700596 struct udevice *dev;
597
598 dev = state->spi[busnum][cs].emul;
599 device_remove(dev);
600 device_unbind(dev);
Simon Glass01862382014-10-13 23:42:08 -0600601 state->spi[busnum][cs].emul = NULL;
602}
603
604static int sandbox_sf_bind_bus_cs(struct sandbox_state *state, int busnum,
605 int cs, const char *spec)
606{
607 struct udevice *bus, *slave;
608 int ret;
609
610 ret = uclass_find_device_by_seq(UCLASS_SPI, busnum, true, &bus);
611 if (ret) {
612 printf("Invalid bus %d for spec '%s' (err=%d)\n", busnum,
613 spec, ret);
614 return ret;
615 }
Simon Glass5ef36f22014-11-11 10:46:22 -0700616 ret = spi_find_chip_select(bus, cs, &slave);
Simon Glass01862382014-10-13 23:42:08 -0600617 if (!ret) {
618 printf("Chip select %d already exists for spec '%s'\n", cs,
619 spec);
620 return -EEXIST;
621 }
622
Simon Glassd8a21f62014-11-11 10:46:23 -0700623 ret = device_bind_driver(bus, "spi_flash_std", spec, &slave);
Simon Glass01862382014-10-13 23:42:08 -0600624 if (ret)
625 return ret;
626
627 return sandbox_sf_bind_emul(state, busnum, cs, bus, -1, spec);
628}
629
630int sandbox_spi_get_emul(struct sandbox_state *state,
631 struct udevice *bus, struct udevice *slave,
632 struct udevice **emulp)
633{
634 struct sandbox_spi_info *info;
635 int busnum = bus->seq;
636 int cs = spi_chip_select(slave);
637 int ret;
638
639 info = &state->spi[busnum][cs];
640 if (!info->emul) {
641 /* Use the same device tree node as the SPI flash device */
642 debug("%s: busnum=%u, cs=%u: binding SPI flash emulation: ",
643 __func__, busnum, cs);
644 ret = sandbox_sf_bind_emul(state, busnum, cs, bus,
645 slave->of_offset, slave->name);
646 if (ret) {
647 debug("failed (err=%d)\n", ret);
648 return ret;
649 }
650 debug("OK\n");
651 }
652 *emulp = info->emul;
653
654 return 0;
655}
656
657int dm_scan_other(bool pre_reloc_only)
658{
659 struct sandbox_state *state = state_get_current();
660 int busnum, cs;
661
662 if (pre_reloc_only)
663 return 0;
664 for (busnum = 0; busnum < CONFIG_SANDBOX_SPI_MAX_BUS; busnum++) {
665 for (cs = 0; cs < CONFIG_SANDBOX_SPI_MAX_CS; cs++) {
666 const char *spec = state->spi[busnum][cs].spec;
667 int ret;
668
669 if (spec) {
670 ret = sandbox_sf_bind_bus_cs(state, busnum,
671 cs, spec);
672 if (ret) {
673 debug("%s: Bind failed for bus %d, cs %d\n",
674 __func__, busnum, cs);
675 return ret;
676 }
Simon Glassdb45d9e2016-02-24 09:14:54 -0700677 debug("%s: Setting up spec '%s' for bus %d, cs %d\n",
678 __func__, spec, busnum, cs);
Simon Glass01862382014-10-13 23:42:08 -0600679 }
680 }
681 }
682
683 return 0;
684}
685#endif
686
687static const struct udevice_id sandbox_sf_ids[] = {
688 { .compatible = "sandbox,spi-flash" },
689 { }
690};
691
692U_BOOT_DRIVER(sandbox_sf_emul) = {
693 .name = "sandbox_sf_emul",
694 .id = UCLASS_SPI_EMUL,
695 .of_match = sandbox_sf_ids,
696 .ofdata_to_platdata = sandbox_sf_ofdata_to_platdata,
697 .probe = sandbox_sf_probe,
698 .remove = sandbox_sf_remove,
699 .priv_auto_alloc_size = sizeof(struct sandbox_spi_flash),
700 .platdata_auto_alloc_size = sizeof(struct sandbox_spi_flash_plat_data),
701 .ops = &sandbox_sf_emul_ops,
702};