rockchip: Remove ARCH= references from documentation
[oweals/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 = simple_strtoul(arg, &ep, 16);
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 #ifdef CONFIG_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 = simple_strtoul(argv[3], &endp, 16);
123                 if (*argv[3] == 0 || *endp != 0)
124                         return -1;
125         }
126
127 #ifdef CONFIG_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
149         if (!new) {
150                 printf("Failed to initialize SPI flash at %u:%u\n", bus, cs);
151                 return 1;
152         }
153
154         flash = new;
155 #endif
156
157         return 0;
158 }
159
160 /**
161  * Write a block of data to SPI flash, first checking if it is different from
162  * what is already there.
163  *
164  * If the data being written is the same, then *skipped is incremented by len.
165  *
166  * @param flash         flash context pointer
167  * @param offset        flash offset to write
168  * @param len           number of bytes to write
169  * @param buf           buffer to write from
170  * @param cmp_buf       read buffer to use to compare data
171  * @param skipped       Count of skipped data (incremented by this function)
172  * @return NULL if OK, else a string containing the stage which failed
173  */
174 static const char *spi_flash_update_block(struct spi_flash *flash, u32 offset,
175                 size_t len, const char *buf, char *cmp_buf, size_t *skipped)
176 {
177         char *ptr = (char *)buf;
178
179         debug("offset=%#x, sector_size=%#x, len=%#zx\n",
180               offset, flash->sector_size, len);
181         /* Read the entire sector so to allow for rewriting */
182         if (spi_flash_read(flash, offset, flash->sector_size, cmp_buf))
183                 return "read";
184         /* Compare only what is meaningful (len) */
185         if (memcmp(cmp_buf, buf, len) == 0) {
186                 debug("Skip region %x size %zx: no change\n",
187                       offset, len);
188                 *skipped += len;
189                 return NULL;
190         }
191         /* Erase the entire sector */
192         if (spi_flash_erase(flash, offset, flash->sector_size))
193                 return "erase";
194         /* If it's a partial sector, copy the data into the temp-buffer */
195         if (len != flash->sector_size) {
196                 memcpy(cmp_buf, buf, len);
197                 ptr = cmp_buf;
198         }
199         /* Write one complete sector */
200         if (spi_flash_write(flash, offset, flash->sector_size, ptr))
201                 return "write";
202
203         return NULL;
204 }
205
206 /**
207  * Update an area of SPI flash by erasing and writing any blocks which need
208  * to change. Existing blocks with the correct data are left unchanged.
209  *
210  * @param flash         flash context pointer
211  * @param offset        flash offset to write
212  * @param len           number of bytes to write
213  * @param buf           buffer to write from
214  * @return 0 if ok, 1 on error
215  */
216 static int spi_flash_update(struct spi_flash *flash, u32 offset,
217                 size_t len, const char *buf)
218 {
219         const char *err_oper = NULL;
220         char *cmp_buf;
221         const char *end = buf + len;
222         size_t todo;            /* number of bytes to do in this pass */
223         size_t skipped = 0;     /* statistics */
224         const ulong start_time = get_timer(0);
225         size_t scale = 1;
226         const char *start_buf = buf;
227         ulong delta;
228
229         if (end - buf >= 200)
230                 scale = (end - buf) / 100;
231         cmp_buf = memalign(ARCH_DMA_MINALIGN, flash->sector_size);
232         if (cmp_buf) {
233                 ulong last_update = get_timer(0);
234
235                 for (; buf < end && !err_oper; buf += todo, offset += todo) {
236                         todo = min_t(size_t, end - buf, flash->sector_size);
237                         if (get_timer(last_update) > 100) {
238                                 printf("   \rUpdating, %zu%% %lu B/s",
239                                        100 - (end - buf) / scale,
240                                         bytes_per_second(buf - start_buf,
241                                                          start_time));
242                                 last_update = get_timer(0);
243                         }
244                         err_oper = spi_flash_update_block(flash, offset, todo,
245                                         buf, cmp_buf, &skipped);
246                 }
247         } else {
248                 err_oper = "malloc";
249         }
250         free(cmp_buf);
251         putc('\r');
252         if (err_oper) {
253                 printf("SPI flash failed in %s step\n", err_oper);
254                 return 1;
255         }
256
257         delta = get_timer(start_time);
258         printf("%zu bytes written, %zu bytes skipped", len - skipped,
259                skipped);
260         printf(" in %ld.%lds, speed %ld B/s\n",
261                delta / 1000, delta % 1000, bytes_per_second(len, start_time));
262
263         return 0;
264 }
265
266 static int do_spi_flash_read_write(int argc, char *const argv[])
267 {
268         unsigned long addr;
269         void *buf;
270         char *endp;
271         int ret = 1;
272         int dev = 0;
273         loff_t offset, len, maxsize;
274
275         if (argc < 3)
276                 return -1;
277
278         addr = simple_strtoul(argv[1], &endp, 16);
279         if (*argv[1] == 0 || *endp != 0)
280                 return -1;
281
282         if (mtd_arg_off_size(argc - 2, &argv[2], &dev, &offset, &len,
283                              &maxsize, MTD_DEV_TYPE_NOR, flash->size))
284                 return -1;
285
286         /* Consistency checking */
287         if (offset + len > flash->size) {
288                 printf("ERROR: attempting %s past flash size (%#x)\n",
289                        argv[0], flash->size);
290                 return 1;
291         }
292
293         buf = map_physmem(addr, len, MAP_WRBACK);
294         if (!buf && addr) {
295                 puts("Failed to map physical memory\n");
296                 return 1;
297         }
298
299         if (strcmp(argv[0], "update") == 0) {
300                 ret = spi_flash_update(flash, offset, len, buf);
301         } else if (strncmp(argv[0], "read", 4) == 0 ||
302                         strncmp(argv[0], "write", 5) == 0) {
303                 int read;
304
305                 read = strncmp(argv[0], "read", 4) == 0;
306                 if (read)
307                         ret = spi_flash_read(flash, offset, len, buf);
308                 else
309                         ret = spi_flash_write(flash, offset, len, buf);
310
311                 printf("SF: %zu bytes @ %#x %s: ", (size_t)len, (u32)offset,
312                        read ? "Read" : "Written");
313                 if (ret)
314                         printf("ERROR %d\n", ret);
315                 else
316                         printf("OK\n");
317         }
318
319         unmap_physmem(buf, len);
320
321         return ret == 0 ? 0 : 1;
322 }
323
324 static int do_spi_flash_erase(int argc, char *const argv[])
325 {
326         int ret;
327         int dev = 0;
328         loff_t offset, len, maxsize;
329         ulong size;
330
331         if (argc < 3)
332                 return -1;
333
334         if (mtd_arg_off(argv[1], &dev, &offset, &len, &maxsize,
335                         MTD_DEV_TYPE_NOR, flash->size))
336                 return -1;
337
338         ret = sf_parse_len_arg(argv[2], &size);
339         if (ret != 1)
340                 return -1;
341
342         /* Consistency checking */
343         if (offset + size > flash->size) {
344                 printf("ERROR: attempting %s past flash size (%#x)\n",
345                        argv[0], flash->size);
346                 return 1;
347         }
348
349         ret = spi_flash_erase(flash, offset, size);
350         printf("SF: %zu bytes @ %#x Erased: %s\n", (size_t)size, (u32)offset,
351                ret ? "ERROR" : "OK");
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 #ifdef CONFIG_CMD_SF_TEST
388 enum {
389         STAGE_ERASE,
390         STAGE_CHECK,
391         STAGE_WRITE,
392         STAGE_READ,
393
394         STAGE_COUNT,
395 };
396
397 static char *stage_name[STAGE_COUNT] = {
398         "erase",
399         "check",
400         "write",
401         "read",
402 };
403
404 struct test_info {
405         int stage;
406         int bytes;
407         unsigned base_ms;
408         unsigned time_ms[STAGE_COUNT];
409 };
410
411 static void show_time(struct test_info *test, int stage)
412 {
413         uint64_t speed; /* KiB/s */
414         int bps;        /* Bits per second */
415
416         speed = (long long)test->bytes * 1000;
417         if (test->time_ms[stage])
418                 do_div(speed, test->time_ms[stage] * 1024);
419         bps = speed * 8;
420
421         printf("%d %s: %u ticks, %d KiB/s %d.%03d Mbps\n", stage,
422                stage_name[stage], test->time_ms[stage],
423                (int)speed, bps / 1000, bps % 1000);
424 }
425
426 static void spi_test_next_stage(struct test_info *test)
427 {
428         test->time_ms[test->stage] = get_timer(test->base_ms);
429         show_time(test, test->stage);
430         test->base_ms = get_timer(0);
431         test->stage++;
432 }
433
434 /**
435  * Run a test on the SPI flash
436  *
437  * @param flash         SPI flash to use
438  * @param buf           Source buffer for data to write
439  * @param len           Size of data to read/write
440  * @param offset        Offset within flash to check
441  * @param vbuf          Verification buffer
442  * @return 0 if ok, -1 on error
443  */
444 static int spi_flash_test(struct spi_flash *flash, uint8_t *buf, ulong len,
445                            ulong offset, uint8_t *vbuf)
446 {
447         struct test_info test;
448         int i;
449
450         printf("SPI flash test:\n");
451         memset(&test, '\0', sizeof(test));
452         test.base_ms = get_timer(0);
453         test.bytes = len;
454         if (spi_flash_erase(flash, offset, len)) {
455                 printf("Erase failed\n");
456                 return -1;
457         }
458         spi_test_next_stage(&test);
459
460         if (spi_flash_read(flash, offset, len, vbuf)) {
461                 printf("Check read failed\n");
462                 return -1;
463         }
464         for (i = 0; i < len; i++) {
465                 if (vbuf[i] != 0xff) {
466                         printf("Check failed at %d\n", i);
467                         print_buffer(i, vbuf + i, 1,
468                                      min_t(uint, len - i, 0x40), 0);
469                         return -1;
470                 }
471         }
472         spi_test_next_stage(&test);
473
474         if (spi_flash_write(flash, offset, len, buf)) {
475                 printf("Write failed\n");
476                 return -1;
477         }
478         memset(vbuf, '\0', len);
479         spi_test_next_stage(&test);
480
481         if (spi_flash_read(flash, offset, len, vbuf)) {
482                 printf("Read failed\n");
483                 return -1;
484         }
485         spi_test_next_stage(&test);
486
487         for (i = 0; i < len; i++) {
488                 if (buf[i] != vbuf[i]) {
489                         printf("Verify failed at %d, good data:\n", i);
490                         print_buffer(i, buf + i, 1,
491                                      min_t(uint, len - i, 0x40), 0);
492                         printf("Bad data:\n");
493                         print_buffer(i, vbuf + i, 1,
494                                      min_t(uint, len - i, 0x40), 0);
495                         return -1;
496                 }
497         }
498         printf("Test passed\n");
499         for (i = 0; i < STAGE_COUNT; i++)
500                 show_time(&test, i);
501
502         return 0;
503 }
504
505 static int do_spi_flash_test(int argc, char *const argv[])
506 {
507         unsigned long offset;
508         unsigned long len;
509         uint8_t *buf, *from;
510         char *endp;
511         uint8_t *vbuf;
512         int ret;
513
514         if (argc < 3)
515                 return -1;
516         offset = simple_strtoul(argv[1], &endp, 16);
517         if (*argv[1] == 0 || *endp != 0)
518                 return -1;
519         len = simple_strtoul(argv[2], &endp, 16);
520         if (*argv[2] == 0 || *endp != 0)
521                 return -1;
522
523         vbuf = memalign(ARCH_DMA_MINALIGN, len);
524         if (!vbuf) {
525                 printf("Cannot allocate memory (%lu bytes)\n", len);
526                 return 1;
527         }
528         buf = memalign(ARCH_DMA_MINALIGN, len);
529         if (!buf) {
530                 free(vbuf);
531                 printf("Cannot allocate memory (%lu bytes)\n", len);
532                 return 1;
533         }
534
535         from = map_sysmem(CONFIG_SYS_TEXT_BASE, 0);
536         memcpy(buf, from, len);
537         ret = spi_flash_test(flash, buf, len, offset, vbuf);
538         free(vbuf);
539         free(buf);
540         if (ret) {
541                 printf("Test failed\n");
542                 return 1;
543         }
544
545         return 0;
546 }
547 #endif /* CONFIG_CMD_SF_TEST */
548
549 static int do_spi_flash(struct cmd_tbl *cmdtp, int flag, int argc,
550                         char *const argv[])
551 {
552         const char *cmd;
553         int ret;
554
555         /* need at least two arguments */
556         if (argc < 2)
557                 goto usage;
558
559         cmd = argv[1];
560         --argc;
561         ++argv;
562
563         if (strcmp(cmd, "probe") == 0) {
564                 ret = do_spi_flash_probe(argc, argv);
565                 goto done;
566         }
567
568         /* The remaining commands require a selected device */
569         if (!flash) {
570                 puts("No SPI flash selected. Please run `sf probe'\n");
571                 return 1;
572         }
573
574         if (strcmp(cmd, "read") == 0 || strcmp(cmd, "write") == 0 ||
575             strcmp(cmd, "update") == 0)
576                 ret = do_spi_flash_read_write(argc, argv);
577         else if (strcmp(cmd, "erase") == 0)
578                 ret = do_spi_flash_erase(argc, argv);
579         else if (strcmp(cmd, "protect") == 0)
580                 ret = do_spi_protect(argc, argv);
581 #ifdef CONFIG_CMD_SF_TEST
582         else if (!strcmp(cmd, "test"))
583                 ret = do_spi_flash_test(argc, argv);
584 #endif
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_CMD_SF_TEST
597 #define SF_TEST_HELP "\nsf test offset len              " \
598                 "- run a very basic destructive test"
599 #else
600 #define SF_TEST_HELP
601 #endif
602
603 U_BOOT_CMD(
604         sf,     5,      1,      do_spi_flash,
605         "SPI flash sub-system",
606         "probe [[bus:]cs] [hz] [mode]   - init flash device on given SPI bus\n"
607         "                                 and chip select\n"
608         "sf read addr offset|partition len      - read `len' bytes starting at\n"
609         "                                         `offset' or from start of mtd\n"
610         "                                         `partition'to memory at `addr'\n"
611         "sf write addr offset|partition len     - write `len' bytes from memory\n"
612         "                                         at `addr' to flash at `offset'\n"
613         "                                         or to start of mtd `partition'\n"
614         "sf erase offset|partition [+]len       - erase `len' bytes from `offset'\n"
615         "                                         or from start of mtd `partition'\n"
616         "                                        `+len' round up `len' to block size\n"
617         "sf update addr offset|partition len    - erase and write `len' bytes from memory\n"
618         "                                         at `addr' to flash at `offset'\n"
619         "                                         or to start of mtd `partition'\n"
620         "sf protect lock/unlock sector len      - protect/unprotect 'len' bytes starting\n"
621         "                                         at address 'sector'\n"
622         SF_TEST_HELP
623 );