1 // SPDX-License-Identifier: GPL-2.0+
3 * Command for accessing SPI flash.
5 * Copyright (C) 2008 Atmel Corporation
10 #include <display_options.h>
17 #include <spi_flash.h>
18 #include <asm/cache.h>
19 #include <jffs2/jffs2.h>
20 #include <linux/mtd/mtd.h>
23 #include <dm/device-internal.h>
25 #include "legacy-mtd-utils.h"
27 static struct spi_flash *flash;
30 * This function computes the length argument for the erase command.
31 * The length on which the command is to operate can be given in two forms:
32 * 1. <cmd> offset len - operate on <'offset', 'len')
33 * 2. <cmd> offset +len - operate on <'offset', 'round_up(len)')
34 * If the second form is used and the length doesn't fall on the
35 * sector boundary, than it will be adjusted to the next sector boundary.
36 * If it isn't in the flash, the function will fail (return -1).
38 * arg: length specification (i.e. both command arguments)
40 * len: computed length for operation
43 * -1: failure (bad format, bad address).
45 static int sf_parse_len_arg(char *arg, ulong *len)
48 char round_up_len; /* indicates if the "+length" form used */
57 len_arg = hextoul(arg, &ep);
58 if (ep == arg || *ep != '\0')
61 if (round_up_len && flash->sector_size > 0)
62 *len = ROUND(len_arg, flash->sector_size);
70 * This function takes a byte length and a delta unit of time to compute the
71 * approximate bytes per second
73 * @param len amount of bytes currently processed
74 * @param start_ms start time of processing in ms
75 * Return: bytes per second if OK, 0 on error
77 static ulong bytes_per_second(unsigned int len, ulong start_ms)
79 /* less accurate but avoids overflow */
80 if (len >= ((unsigned int) -1) / 1024)
81 return len / (max(get_timer(start_ms) / 1024, 1UL));
83 return 1024 * len / max(get_timer(start_ms), 1UL);
86 static int do_spi_flash_probe(int argc, char *const argv[])
88 unsigned int bus = CONFIG_SF_DEFAULT_BUS;
89 unsigned int cs = CONFIG_SF_DEFAULT_CS;
90 /* In DM mode, defaults speed and mode will be taken from DT */
91 unsigned int speed = CONFIG_SF_DEFAULT_SPEED;
92 unsigned int mode = CONFIG_SF_DEFAULT_MODE;
95 #if CONFIG_IS_ENABLED(DM_SPI_FLASH)
96 struct udevice *new, *bus_dev;
99 struct spi_flash *new;
103 cs = simple_strtoul(argv[1], &endp, 0);
104 if (*argv[1] == 0 || (*endp != 0 && *endp != ':'))
111 cs = simple_strtoul(endp + 1, &endp, 0);
118 speed = simple_strtoul(argv[2], &endp, 0);
119 if (*argv[2] == 0 || *endp != 0)
124 mode = hextoul(argv[3], &endp);
125 if (*argv[3] == 0 || *endp != 0)
130 #if CONFIG_IS_ENABLED(DM_SPI_FLASH)
131 /* Remove the old device, otherwise probe will just be a nop */
132 ret = spi_find_bus_and_cs(bus, cs, &bus_dev, &new);
134 device_remove(new, DM_REMOVE_NORMAL);
138 spi_flash_probe_bus_cs(bus, cs, &new);
139 flash = dev_get_uclass_priv(new);
141 flash = spi_flash_probe(bus, cs, speed, mode);
145 printf("Failed to initialize SPI flash at %u:%u (error %d)\n",
151 spi_flash_free(flash);
153 new = spi_flash_probe(bus, cs, speed, mode);
156 printf("Failed to initialize SPI flash at %u:%u\n", bus, cs);
165 * Write a block of data to SPI flash, first checking if it is different from
166 * what is already there.
168 * If the data being written is the same, then *skipped is incremented by len.
170 * @param flash flash context pointer
171 * @param offset flash offset to write
172 * @param len number of bytes to write
173 * @param buf buffer to write from
174 * @param cmp_buf read buffer to use to compare data
175 * @param skipped Count of skipped data (incremented by this function)
176 * Return: NULL if OK, else a string containing the stage which failed
178 static const char *spi_flash_update_block(struct spi_flash *flash, u32 offset,
179 size_t len, const char *buf, char *cmp_buf, size_t *skipped)
181 char *ptr = (char *)buf;
183 debug("offset=%#x, sector_size=%#x, len=%#zx\n",
184 offset, flash->sector_size, len);
185 /* Read the entire sector so to allow for rewriting */
186 if (spi_flash_read(flash, offset, flash->sector_size, cmp_buf))
188 /* Compare only what is meaningful (len) */
189 if (memcmp(cmp_buf, buf, len) == 0) {
190 debug("Skip region %x size %zx: no change\n",
195 /* Erase the entire sector */
196 if (spi_flash_erase(flash, offset, flash->sector_size))
198 /* If it's a partial sector, copy the data into the temp-buffer */
199 if (len != flash->sector_size) {
200 memcpy(cmp_buf, buf, len);
203 /* Write one complete sector */
204 if (spi_flash_write(flash, offset, flash->sector_size, ptr))
211 * Update an area of SPI flash by erasing and writing any blocks which need
212 * to change. Existing blocks with the correct data are left unchanged.
214 * @param flash flash context pointer
215 * @param offset flash offset to write
216 * @param len number of bytes to write
217 * @param buf buffer to write from
218 * Return: 0 if ok, 1 on error
220 static int spi_flash_update(struct spi_flash *flash, u32 offset,
221 size_t len, const char *buf)
223 const char *err_oper = NULL;
225 const char *end = buf + len;
226 size_t todo; /* number of bytes to do in this pass */
227 size_t skipped = 0; /* statistics */
228 const ulong start_time = get_timer(0);
230 const char *start_buf = buf;
233 if (end - buf >= 200)
234 scale = (end - buf) / 100;
235 cmp_buf = memalign(ARCH_DMA_MINALIGN, flash->sector_size);
237 ulong last_update = get_timer(0);
239 for (; buf < end && !err_oper; buf += todo, offset += todo) {
240 todo = min_t(size_t, end - buf, flash->sector_size);
241 if (get_timer(last_update) > 100) {
242 printf(" \rUpdating, %zu%% %lu B/s",
243 100 - (end - buf) / scale,
244 bytes_per_second(buf - start_buf,
246 last_update = get_timer(0);
248 err_oper = spi_flash_update_block(flash, offset, todo,
249 buf, cmp_buf, &skipped);
257 printf("SPI flash failed in %s step\n", err_oper);
261 delta = get_timer(start_time);
262 printf("%zu bytes written, %zu bytes skipped", len - skipped,
264 printf(" in %ld.%lds, speed %ld B/s\n",
265 delta / 1000, delta % 1000, bytes_per_second(len, start_time));
270 static int do_spi_flash_read_write(int argc, char *const argv[])
277 loff_t offset, len, maxsize;
282 addr = hextoul(argv[1], &endp);
283 if (*argv[1] == 0 || *endp != 0)
286 if (mtd_arg_off_size(argc - 2, &argv[2], &dev, &offset, &len,
287 &maxsize, MTD_DEV_TYPE_NOR, flash->size))
290 /* Consistency checking */
291 if (offset + len > flash->size) {
292 printf("ERROR: attempting %s past flash size (%#x)\n",
293 argv[0], flash->size);
297 if (strncmp(argv[0], "read", 4) != 0 && flash->flash_is_unlocked &&
298 !flash->flash_is_unlocked(flash, offset, len)) {
299 printf("ERROR: flash area is locked\n");
303 buf = map_physmem(addr, len, MAP_WRBACK);
305 puts("Failed to map physical memory\n");
309 if (strcmp(argv[0], "update") == 0) {
310 ret = spi_flash_update(flash, offset, len, buf);
311 } else if (strncmp(argv[0], "read", 4) == 0 ||
312 strncmp(argv[0], "write", 5) == 0) {
315 read = strncmp(argv[0], "read", 4) == 0;
317 ret = spi_flash_read(flash, offset, len, buf);
319 ret = spi_flash_write(flash, offset, len, buf);
321 printf("SF: %zu bytes @ %#x %s: ", (size_t)len, (u32)offset,
322 read ? "Read" : "Written");
324 printf("ERROR %d\n", ret);
329 unmap_physmem(buf, len);
331 return ret == 0 ? 0 : 1;
334 static int do_spi_flash_erase(int argc, char *const argv[])
338 loff_t offset, len, maxsize;
344 if (mtd_arg_off(argv[1], &dev, &offset, &len, &maxsize,
345 MTD_DEV_TYPE_NOR, flash->size))
348 ret = sf_parse_len_arg(argv[2], &size);
352 /* Consistency checking */
353 if (offset + size > flash->size) {
354 printf("ERROR: attempting %s past flash size (%#x)\n",
355 argv[0], flash->size);
359 if (flash->flash_is_unlocked &&
360 !flash->flash_is_unlocked(flash, offset, len)) {
361 printf("ERROR: flash area is locked\n");
365 ret = spi_flash_erase(flash, offset, size);
366 printf("SF: %zu bytes @ %#x Erased: ", (size_t)size, (u32)offset);
368 printf("ERROR %d\n", ret);
372 return ret == 0 ? 0 : 1;
375 static int do_spi_protect(int argc, char *const argv[])
384 if (!str2off(argv[2], &start)) {
385 puts("start sector is not a valid number\n");
389 if (!str2off(argv[3], &len)) {
390 puts("len is not a valid number\n");
394 if (strcmp(argv[1], "lock") == 0)
396 else if (strcmp(argv[1], "unlock") == 0)
399 return -1; /* Unknown parameter */
401 ret = spi_flash_protect(flash, start, len, prot);
403 return ret == 0 ? 0 : 1;
415 static const char *stage_name[STAGE_COUNT] = {
426 unsigned time_ms[STAGE_COUNT];
429 static void show_time(struct test_info *test, int stage)
431 uint64_t speed; /* KiB/s */
432 int bps; /* Bits per second */
434 speed = (long long)test->bytes * 1000;
435 if (test->time_ms[stage])
436 do_div(speed, test->time_ms[stage] * 1024);
439 printf("%d %s: %u ticks, %d KiB/s %d.%03d Mbps\n", stage,
440 stage_name[stage], test->time_ms[stage],
441 (int)speed, bps / 1000, bps % 1000);
444 static void spi_test_next_stage(struct test_info *test)
446 test->time_ms[test->stage] = get_timer(test->base_ms);
447 show_time(test, test->stage);
448 test->base_ms = get_timer(0);
453 * Run a test on the SPI flash
455 * @param flash SPI flash to use
456 * @param buf Source buffer for data to write
457 * @param len Size of data to read/write
458 * @param offset Offset within flash to check
459 * @param vbuf Verification buffer
460 * Return: 0 if ok, -1 on error
462 static int spi_flash_test(struct spi_flash *flash, uint8_t *buf, ulong len,
463 ulong offset, uint8_t *vbuf)
465 struct test_info test;
468 printf("SPI flash test:\n");
469 memset(&test, '\0', sizeof(test));
470 test.base_ms = get_timer(0);
472 err = spi_flash_erase(flash, offset, len);
474 printf("Erase failed (err = %d)\n", err);
477 spi_test_next_stage(&test);
479 err = spi_flash_read(flash, offset, len, vbuf);
481 printf("Check read failed (err = %d)\n", err);
484 for (i = 0; i < len; i++) {
485 if (vbuf[i] != 0xff) {
486 printf("Check failed at %d\n", i);
487 print_buffer(i, vbuf + i, 1,
488 min_t(uint, len - i, 0x40), 0);
492 spi_test_next_stage(&test);
494 err = spi_flash_write(flash, offset, len, buf);
496 printf("Write failed (err = %d)\n", err);
499 memset(vbuf, '\0', len);
500 spi_test_next_stage(&test);
502 err = spi_flash_read(flash, offset, len, vbuf);
504 printf("Read failed (ret = %d)\n", err);
507 spi_test_next_stage(&test);
509 for (i = 0; i < len; i++) {
510 if (buf[i] != vbuf[i]) {
511 printf("Verify failed at %d, good data:\n", i);
512 print_buffer(i, buf + i, 1,
513 min_t(uint, len - i, 0x40), 0);
514 printf("Bad data:\n");
515 print_buffer(i, vbuf + i, 1,
516 min_t(uint, len - i, 0x40), 0);
520 printf("Test passed\n");
521 for (i = 0; i < STAGE_COUNT; i++)
527 static int do_spi_flash_test(int argc, char *const argv[])
529 unsigned long offset;
538 offset = hextoul(argv[1], &endp);
539 if (*argv[1] == 0 || *endp != 0)
541 len = hextoul(argv[2], &endp);
542 if (*argv[2] == 0 || *endp != 0)
545 vbuf = memalign(ARCH_DMA_MINALIGN, len);
547 printf("Cannot allocate memory (%lu bytes)\n", len);
550 buf = memalign(ARCH_DMA_MINALIGN, len);
553 printf("Cannot allocate memory (%lu bytes)\n", len);
557 from = map_sysmem(CONFIG_SYS_TEXT_BASE, 0);
558 memcpy(buf, from, len);
559 ret = spi_flash_test(flash, buf, len, offset, vbuf);
563 printf("Test failed\n");
570 static int do_spi_flash(struct cmd_tbl *cmdtp, int flag, int argc,
576 /* need at least two arguments */
584 if (strcmp(cmd, "probe") == 0) {
585 ret = do_spi_flash_probe(argc, argv);
589 /* The remaining commands require a selected device */
591 puts("No SPI flash selected. Please run `sf probe'\n");
595 if (strcmp(cmd, "read") == 0 || strcmp(cmd, "write") == 0 ||
596 strcmp(cmd, "update") == 0)
597 ret = do_spi_flash_read_write(argc, argv);
598 else if (strcmp(cmd, "erase") == 0)
599 ret = do_spi_flash_erase(argc, argv);
600 else if (strcmp(cmd, "protect") == 0)
601 ret = do_spi_protect(argc, argv);
602 else if (IS_ENABLED(CONFIG_CMD_SF_TEST) && !strcmp(cmd, "test"))
603 ret = do_spi_flash_test(argc, argv);
612 return CMD_RET_USAGE;
615 #ifdef CONFIG_SYS_LONGHELP
616 static const char long_help[] =
617 "probe [[bus:]cs] [hz] [mode] - init flash device on given SPI bus\n"
619 "sf read addr offset|partition len - read `len' bytes starting at\n"
620 " `offset' or from start of mtd\n"
621 " `partition'to memory at `addr'\n"
622 "sf write addr offset|partition len - write `len' bytes from memory\n"
623 " at `addr' to flash at `offset'\n"
624 " or to start of mtd `partition'\n"
625 "sf erase offset|partition [+]len - erase `len' bytes from `offset'\n"
626 " or from start of mtd `partition'\n"
627 " `+len' round up `len' to block size\n"
628 "sf update addr offset|partition len - erase and write `len' bytes from memory\n"
629 " at `addr' to flash at `offset'\n"
630 " or to start of mtd `partition'\n"
631 "sf protect lock/unlock sector len - protect/unprotect 'len' bytes starting\n"
632 " at address 'sector'"
633 #ifdef CONFIG_CMD_SF_TEST
634 "\nsf test offset len - run a very basic destructive test"
636 #endif /* CONFIG_SYS_LONGHELP */
640 sf, 5, 1, do_spi_flash,
641 "SPI flash sub-system", long_help