Merge branch '2022-05-05-assorted-cleanups-and-fixes'
[platform/kernel/u-boot.git] / cmd / sf.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Command for accessing SPI flash.
4  *
5  * Copyright (C) 2008 Atmel Corporation
6  */
7
8 #include <common.h>
9 #include <command.h>
10 #include <div64.h>
11 #include <dm.h>
12 #include <flash.h>
13 #include <log.h>
14 #include <malloc.h>
15 #include <mapmem.h>
16 #include <spi.h>
17 #include <spi_flash.h>
18 #include <asm/cache.h>
19 #include <jffs2/jffs2.h>
20 #include <linux/mtd/mtd.h>
21
22 #include <asm/io.h>
23 #include <dm/device-internal.h>
24
25 #include "legacy-mtd-utils.h"
26
27 static struct spi_flash *flash;
28
29 /*
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).
37  * Input:
38  *    arg: length specification (i.e. both command arguments)
39  * Output:
40  *    len: computed length for operation
41  * Return:
42  *    1: success
43  *   -1: failure (bad format, bad address).
44  */
45 static int sf_parse_len_arg(char *arg, ulong *len)
46 {
47         char *ep;
48         char round_up_len; /* indicates if the "+length" form used */
49         ulong len_arg;
50
51         round_up_len = 0;
52         if (*arg == '+') {
53                 round_up_len = 1;
54                 ++arg;
55         }
56
57         len_arg = hextoul(arg, &ep);
58         if (ep == arg || *ep != '\0')
59                 return -1;
60
61         if (round_up_len && flash->sector_size > 0)
62                 *len = ROUND(len_arg, flash->sector_size);
63         else
64                 *len = len_arg;
65
66         return 1;
67 }
68
69 /**
70  * This function takes a byte length and a delta unit of time to compute the
71  * approximate bytes per second
72  *
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
76  */
77 static ulong bytes_per_second(unsigned int len, ulong start_ms)
78 {
79         /* less accurate but avoids overflow */
80         if (len >= ((unsigned int) -1) / 1024)
81                 return len / (max(get_timer(start_ms) / 1024, 1UL));
82         else
83                 return 1024 * len / max(get_timer(start_ms), 1UL);
84 }
85
86 static int do_spi_flash_probe(int argc, char *const argv[])
87 {
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;
93         char *endp;
94 #if CONFIG_IS_ENABLED(DM_SPI_FLASH)
95         struct udevice *new, *bus_dev;
96         int ret;
97 #else
98         struct spi_flash *new;
99 #endif
100
101         if (argc >= 2) {
102                 cs = simple_strtoul(argv[1], &endp, 0);
103                 if (*argv[1] == 0 || (*endp != 0 && *endp != ':'))
104                         return -1;
105                 if (*endp == ':') {
106                         if (endp[1] == 0)
107                                 return -1;
108
109                         bus = cs;
110                         cs = simple_strtoul(endp + 1, &endp, 0);
111                         if (*endp != 0)
112                                 return -1;
113                 }
114         }
115
116         if (argc >= 3) {
117                 speed = simple_strtoul(argv[2], &endp, 0);
118                 if (*argv[2] == 0 || *endp != 0)
119                         return -1;
120         }
121         if (argc >= 4) {
122                 mode = hextoul(argv[3], &endp);
123                 if (*argv[3] == 0 || *endp != 0)
124                         return -1;
125         }
126
127 #if CONFIG_IS_ENABLED(DM_SPI_FLASH)
128         /* Remove the old device, otherwise probe will just be a nop */
129         ret = spi_find_bus_and_cs(bus, cs, &bus_dev, &new);
130         if (!ret) {
131                 device_remove(new, DM_REMOVE_NORMAL);
132         }
133         flash = NULL;
134         ret = spi_flash_probe_bus_cs(bus, cs, speed, mode, &new);
135         if (ret) {
136                 printf("Failed to initialize SPI flash at %u:%u (error %d)\n",
137                        bus, cs, ret);
138                 return 1;
139         }
140
141         flash = dev_get_uclass_priv(new);
142 #else
143         if (flash)
144                 spi_flash_free(flash);
145
146         new = spi_flash_probe(bus, cs, speed, mode);
147         flash = new;
148         if (!new) {
149                 printf("Failed to initialize SPI flash at %u:%u\n", bus, cs);
150                 return 1;
151         }
152 #endif
153
154         return 0;
155 }
156
157 /**
158  * Write a block of data to SPI flash, first checking if it is different from
159  * what is already there.
160  *
161  * If the data being written is the same, then *skipped is incremented by len.
162  *
163  * @param flash         flash context pointer
164  * @param offset        flash offset to write
165  * @param len           number of bytes to write
166  * @param buf           buffer to write from
167  * @param cmp_buf       read buffer to use to compare data
168  * @param skipped       Count of skipped data (incremented by this function)
169  * Return: NULL if OK, else a string containing the stage which failed
170  */
171 static const char *spi_flash_update_block(struct spi_flash *flash, u32 offset,
172                 size_t len, const char *buf, char *cmp_buf, size_t *skipped)
173 {
174         char *ptr = (char *)buf;
175
176         debug("offset=%#x, sector_size=%#x, len=%#zx\n",
177               offset, flash->sector_size, len);
178         /* Read the entire sector so to allow for rewriting */
179         if (spi_flash_read(flash, offset, flash->sector_size, cmp_buf))
180                 return "read";
181         /* Compare only what is meaningful (len) */
182         if (memcmp(cmp_buf, buf, len) == 0) {
183                 debug("Skip region %x size %zx: no change\n",
184                       offset, len);
185                 *skipped += len;
186                 return NULL;
187         }
188         /* Erase the entire sector */
189         if (spi_flash_erase(flash, offset, flash->sector_size))
190                 return "erase";
191         /* If it's a partial sector, copy the data into the temp-buffer */
192         if (len != flash->sector_size) {
193                 memcpy(cmp_buf, buf, len);
194                 ptr = cmp_buf;
195         }
196         /* Write one complete sector */
197         if (spi_flash_write(flash, offset, flash->sector_size, ptr))
198                 return "write";
199
200         return NULL;
201 }
202
203 /**
204  * Update an area of SPI flash by erasing and writing any blocks which need
205  * to change. Existing blocks with the correct data are left unchanged.
206  *
207  * @param flash         flash context pointer
208  * @param offset        flash offset to write
209  * @param len           number of bytes to write
210  * @param buf           buffer to write from
211  * Return: 0 if ok, 1 on error
212  */
213 static int spi_flash_update(struct spi_flash *flash, u32 offset,
214                 size_t len, const char *buf)
215 {
216         const char *err_oper = NULL;
217         char *cmp_buf;
218         const char *end = buf + len;
219         size_t todo;            /* number of bytes to do in this pass */
220         size_t skipped = 0;     /* statistics */
221         const ulong start_time = get_timer(0);
222         size_t scale = 1;
223         const char *start_buf = buf;
224         ulong delta;
225
226         if (end - buf >= 200)
227                 scale = (end - buf) / 100;
228         cmp_buf = memalign(ARCH_DMA_MINALIGN, flash->sector_size);
229         if (cmp_buf) {
230                 ulong last_update = get_timer(0);
231
232                 for (; buf < end && !err_oper; buf += todo, offset += todo) {
233                         todo = min_t(size_t, end - buf, flash->sector_size);
234                         if (get_timer(last_update) > 100) {
235                                 printf("   \rUpdating, %zu%% %lu B/s",
236                                        100 - (end - buf) / scale,
237                                         bytes_per_second(buf - start_buf,
238                                                          start_time));
239                                 last_update = get_timer(0);
240                         }
241                         err_oper = spi_flash_update_block(flash, offset, todo,
242                                         buf, cmp_buf, &skipped);
243                 }
244         } else {
245                 err_oper = "malloc";
246         }
247         free(cmp_buf);
248         putc('\r');
249         if (err_oper) {
250                 printf("SPI flash failed in %s step\n", err_oper);
251                 return 1;
252         }
253
254         delta = get_timer(start_time);
255         printf("%zu bytes written, %zu bytes skipped", len - skipped,
256                skipped);
257         printf(" in %ld.%lds, speed %ld B/s\n",
258                delta / 1000, delta % 1000, bytes_per_second(len, start_time));
259
260         return 0;
261 }
262
263 static int do_spi_flash_read_write(int argc, char *const argv[])
264 {
265         unsigned long addr;
266         void *buf;
267         char *endp;
268         int ret = 1;
269         int dev = 0;
270         loff_t offset, len, maxsize;
271
272         if (argc < 3)
273                 return -1;
274
275         addr = hextoul(argv[1], &endp);
276         if (*argv[1] == 0 || *endp != 0)
277                 return -1;
278
279         if (mtd_arg_off_size(argc - 2, &argv[2], &dev, &offset, &len,
280                              &maxsize, MTD_DEV_TYPE_NOR, flash->size))
281                 return -1;
282
283         /* Consistency checking */
284         if (offset + len > flash->size) {
285                 printf("ERROR: attempting %s past flash size (%#x)\n",
286                        argv[0], flash->size);
287                 return 1;
288         }
289
290         buf = map_physmem(addr, len, MAP_WRBACK);
291         if (!buf && addr) {
292                 puts("Failed to map physical memory\n");
293                 return 1;
294         }
295
296         if (strcmp(argv[0], "update") == 0) {
297                 ret = spi_flash_update(flash, offset, len, buf);
298         } else if (strncmp(argv[0], "read", 4) == 0 ||
299                         strncmp(argv[0], "write", 5) == 0) {
300                 int read;
301
302                 read = strncmp(argv[0], "read", 4) == 0;
303                 if (read)
304                         ret = spi_flash_read(flash, offset, len, buf);
305                 else
306                         ret = spi_flash_write(flash, offset, len, buf);
307
308                 printf("SF: %zu bytes @ %#x %s: ", (size_t)len, (u32)offset,
309                        read ? "Read" : "Written");
310                 if (ret)
311                         printf("ERROR %d\n", ret);
312                 else
313                         printf("OK\n");
314         }
315
316         unmap_physmem(buf, len);
317
318         return ret == 0 ? 0 : 1;
319 }
320
321 static int do_spi_flash_erase(int argc, char *const argv[])
322 {
323         int ret;
324         int dev = 0;
325         loff_t offset, len, maxsize;
326         ulong size;
327
328         if (argc < 3)
329                 return -1;
330
331         if (mtd_arg_off(argv[1], &dev, &offset, &len, &maxsize,
332                         MTD_DEV_TYPE_NOR, flash->size))
333                 return -1;
334
335         ret = sf_parse_len_arg(argv[2], &size);
336         if (ret != 1)
337                 return -1;
338
339         /* Consistency checking */
340         if (offset + size > flash->size) {
341                 printf("ERROR: attempting %s past flash size (%#x)\n",
342                        argv[0], flash->size);
343                 return 1;
344         }
345
346         ret = spi_flash_erase(flash, offset, size);
347         printf("SF: %zu bytes @ %#x Erased: ", (size_t)size, (u32)offset);
348         if (ret)
349                 printf("ERROR %d\n", ret);
350         else
351                 printf("OK\n");
352
353         return ret == 0 ? 0 : 1;
354 }
355
356 static int do_spi_protect(int argc, char *const argv[])
357 {
358         int ret = 0;
359         loff_t start, len;
360         bool prot = false;
361
362         if (argc != 4)
363                 return -1;
364
365         if (!str2off(argv[2], &start)) {
366                 puts("start sector is not a valid number\n");
367                 return 1;
368         }
369
370         if (!str2off(argv[3], &len)) {
371                 puts("len is not a valid number\n");
372                 return 1;
373         }
374
375         if (strcmp(argv[1], "lock") == 0)
376                 prot = true;
377         else if (strcmp(argv[1], "unlock") == 0)
378                 prot = false;
379         else
380                 return -1;  /* Unknown parameter */
381
382         ret = spi_flash_protect(flash, start, len, prot);
383
384         return ret == 0 ? 0 : 1;
385 }
386
387 enum {
388         STAGE_ERASE,
389         STAGE_CHECK,
390         STAGE_WRITE,
391         STAGE_READ,
392
393         STAGE_COUNT,
394 };
395
396 static const char *stage_name[STAGE_COUNT] = {
397         "erase",
398         "check",
399         "write",
400         "read",
401 };
402
403 struct test_info {
404         int stage;
405         int bytes;
406         unsigned base_ms;
407         unsigned time_ms[STAGE_COUNT];
408 };
409
410 static void show_time(struct test_info *test, int stage)
411 {
412         uint64_t speed; /* KiB/s */
413         int bps;        /* Bits per second */
414
415         speed = (long long)test->bytes * 1000;
416         if (test->time_ms[stage])
417                 do_div(speed, test->time_ms[stage] * 1024);
418         bps = speed * 8;
419
420         printf("%d %s: %u ticks, %d KiB/s %d.%03d Mbps\n", stage,
421                stage_name[stage], test->time_ms[stage],
422                (int)speed, bps / 1000, bps % 1000);
423 }
424
425 static void spi_test_next_stage(struct test_info *test)
426 {
427         test->time_ms[test->stage] = get_timer(test->base_ms);
428         show_time(test, test->stage);
429         test->base_ms = get_timer(0);
430         test->stage++;
431 }
432
433 /**
434  * Run a test on the SPI flash
435  *
436  * @param flash         SPI flash to use
437  * @param buf           Source buffer for data to write
438  * @param len           Size of data to read/write
439  * @param offset        Offset within flash to check
440  * @param vbuf          Verification buffer
441  * Return: 0 if ok, -1 on error
442  */
443 static int spi_flash_test(struct spi_flash *flash, uint8_t *buf, ulong len,
444                            ulong offset, uint8_t *vbuf)
445 {
446         struct test_info test;
447         int err, i;
448
449         printf("SPI flash test:\n");
450         memset(&test, '\0', sizeof(test));
451         test.base_ms = get_timer(0);
452         test.bytes = len;
453         err = spi_flash_erase(flash, offset, len);
454         if (err) {
455                 printf("Erase failed (err = %d)\n", err);
456                 return -1;
457         }
458         spi_test_next_stage(&test);
459
460         err = spi_flash_read(flash, offset, len, vbuf);
461         if (err) {
462                 printf("Check read failed (err = %d)\n", err);
463                 return -1;
464         }
465         for (i = 0; i < len; i++) {
466                 if (vbuf[i] != 0xff) {
467                         printf("Check failed at %d\n", i);
468                         print_buffer(i, vbuf + i, 1,
469                                      min_t(uint, len - i, 0x40), 0);
470                         return -1;
471                 }
472         }
473         spi_test_next_stage(&test);
474
475         err = spi_flash_write(flash, offset, len, buf);
476         if (err) {
477                 printf("Write failed (err = %d)\n", err);
478                 return -1;
479         }
480         memset(vbuf, '\0', len);
481         spi_test_next_stage(&test);
482
483         err = spi_flash_read(flash, offset, len, vbuf);
484         if (err) {
485                 printf("Read failed (ret = %d)\n", err);
486                 return -1;
487         }
488         spi_test_next_stage(&test);
489
490         for (i = 0; i < len; i++) {
491                 if (buf[i] != vbuf[i]) {
492                         printf("Verify failed at %d, good data:\n", i);
493                         print_buffer(i, buf + i, 1,
494                                      min_t(uint, len - i, 0x40), 0);
495                         printf("Bad data:\n");
496                         print_buffer(i, vbuf + i, 1,
497                                      min_t(uint, len - i, 0x40), 0);
498                         return -1;
499                 }
500         }
501         printf("Test passed\n");
502         for (i = 0; i < STAGE_COUNT; i++)
503                 show_time(&test, i);
504
505         return 0;
506 }
507
508 static int do_spi_flash_test(int argc, char *const argv[])
509 {
510         unsigned long offset;
511         unsigned long len;
512         uint8_t *buf, *from;
513         char *endp;
514         uint8_t *vbuf;
515         int ret;
516
517         if (argc < 3)
518                 return -1;
519         offset = hextoul(argv[1], &endp);
520         if (*argv[1] == 0 || *endp != 0)
521                 return -1;
522         len = hextoul(argv[2], &endp);
523         if (*argv[2] == 0 || *endp != 0)
524                 return -1;
525
526         vbuf = memalign(ARCH_DMA_MINALIGN, len);
527         if (!vbuf) {
528                 printf("Cannot allocate memory (%lu bytes)\n", len);
529                 return 1;
530         }
531         buf = memalign(ARCH_DMA_MINALIGN, len);
532         if (!buf) {
533                 free(vbuf);
534                 printf("Cannot allocate memory (%lu bytes)\n", len);
535                 return 1;
536         }
537
538         from = map_sysmem(CONFIG_SYS_TEXT_BASE, 0);
539         memcpy(buf, from, len);
540         ret = spi_flash_test(flash, buf, len, offset, vbuf);
541         free(vbuf);
542         free(buf);
543         if (ret) {
544                 printf("Test failed\n");
545                 return 1;
546         }
547
548         return 0;
549 }
550
551 static int do_spi_flash(struct cmd_tbl *cmdtp, int flag, int argc,
552                         char *const argv[])
553 {
554         const char *cmd;
555         int ret;
556
557         /* need at least two arguments */
558         if (argc < 2)
559                 goto usage;
560
561         cmd = argv[1];
562         --argc;
563         ++argv;
564
565         if (strcmp(cmd, "probe") == 0) {
566                 ret = do_spi_flash_probe(argc, argv);
567                 goto done;
568         }
569
570         /* The remaining commands require a selected device */
571         if (!flash) {
572                 puts("No SPI flash selected. Please run `sf probe'\n");
573                 return 1;
574         }
575
576         if (strcmp(cmd, "read") == 0 || strcmp(cmd, "write") == 0 ||
577             strcmp(cmd, "update") == 0)
578                 ret = do_spi_flash_read_write(argc, argv);
579         else if (strcmp(cmd, "erase") == 0)
580                 ret = do_spi_flash_erase(argc, argv);
581         else if (strcmp(cmd, "protect") == 0)
582                 ret = do_spi_protect(argc, argv);
583         else if (IS_ENABLED(CONFIG_CMD_SF_TEST) && !strcmp(cmd, "test"))
584                 ret = do_spi_flash_test(argc, argv);
585         else
586                 ret = -1;
587
588 done:
589         if (ret != -1)
590                 return ret;
591
592 usage:
593         return CMD_RET_USAGE;
594 }
595
596 #ifdef CONFIG_SYS_LONGHELP
597 static const char long_help[] =
598         "probe [[bus:]cs] [hz] [mode]   - init flash device on given SPI bus\n"
599         "                                 and chip select\n"
600         "sf read addr offset|partition len      - read `len' bytes starting at\n"
601         "                                         `offset' or from start of mtd\n"
602         "                                         `partition'to memory at `addr'\n"
603         "sf write addr offset|partition len     - write `len' bytes from memory\n"
604         "                                         at `addr' to flash at `offset'\n"
605         "                                         or to start of mtd `partition'\n"
606         "sf erase offset|partition [+]len       - erase `len' bytes from `offset'\n"
607         "                                         or from start of mtd `partition'\n"
608         "                                        `+len' round up `len' to block size\n"
609         "sf update addr offset|partition len    - erase and write `len' bytes from memory\n"
610         "                                         at `addr' to flash at `offset'\n"
611         "                                         or to start of mtd `partition'\n"
612         "sf protect lock/unlock sector len      - protect/unprotect 'len' bytes starting\n"
613         "                                         at address 'sector'"
614 #ifdef CONFIG_CMD_SF_TEST
615         "\nsf test offset len           - run a very basic destructive test"
616 #endif
617 #endif /* CONFIG_SYS_LONGHELP */
618         ;
619
620 U_BOOT_CMD(
621         sf,     5,      1,      do_spi_flash,
622         "SPI flash sub-system", long_help
623 );