]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/cmd_sf.c
m68k: powerpc: Clean up do_mdm_init
[people/ms/u-boot.git] / common / cmd_sf.c
CommitLineData
b6368467
HS
1/*
2 * Command for accessing SPI flash.
3 *
4 * Copyright (C) 2008 Atmel Corporation
0c88a84a
JT
5 *
6 * SPDX-License-Identifier: GPL-2.0+
b6368467 7 */
4166ee58 8
b6368467 9#include <common.h>
381c6e2c 10#include <div64.h>
8d1af942 11#include <malloc.h>
b6368467
HS
12#include <spi_flash.h>
13
14#include <asm/io.h>
15
16#ifndef CONFIG_SF_DEFAULT_SPEED
17# define CONFIG_SF_DEFAULT_SPEED 1000000
18#endif
19#ifndef CONFIG_SF_DEFAULT_MODE
20# define CONFIG_SF_DEFAULT_MODE SPI_MODE_3
21#endif
c1173bd0
EN
22#ifndef CONFIG_SF_DEFAULT_CS
23# define CONFIG_SF_DEFAULT_CS 0
24#endif
25#ifndef CONFIG_SF_DEFAULT_BUS
26# define CONFIG_SF_DEFAULT_BUS 0
27#endif
b6368467
HS
28
29static struct spi_flash *flash;
30
334eb4b0
RR
31
32/*
33 * This function computes the length argument for the erase command.
34 * The length on which the command is to operate can be given in two forms:
35 * 1. <cmd> offset len - operate on <'offset', 'len')
36 * 2. <cmd> offset +len - operate on <'offset', 'round_up(len)')
37 * If the second form is used and the length doesn't fall on the
38 * sector boundary, than it will be adjusted to the next sector boundary.
39 * If it isn't in the flash, the function will fail (return -1).
40 * Input:
41 * arg: length specification (i.e. both command arguments)
42 * Output:
43 * len: computed length for operation
44 * Return:
45 * 1: success
46 * -1: failure (bad format, bad address).
47 */
48static int sf_parse_len_arg(char *arg, ulong *len)
49{
50 char *ep;
51 char round_up_len; /* indicates if the "+length" form used */
52 ulong len_arg;
53
54 round_up_len = 0;
55 if (*arg == '+') {
56 round_up_len = 1;
57 ++arg;
58 }
59
60 len_arg = simple_strtoul(arg, &ep, 16);
61 if (ep == arg || *ep != '\0')
62 return -1;
63
64 if (round_up_len && flash->sector_size > 0)
155cfb5e 65 *len = ROUND(len_arg, flash->sector_size);
334eb4b0
RR
66 else
67 *len = len_arg;
68
69 return 1;
70}
71
a683c288
JM
72/**
73 * This function takes a byte length and a delta unit of time to compute the
74 * approximate bytes per second
75 *
76 * @param len amount of bytes currently processed
77 * @param start_ms start time of processing in ms
78 * @return bytes per second if OK, 0 on error
79 */
80static ulong bytes_per_second(unsigned int len, ulong start_ms)
81{
82 /* less accurate but avoids overflow */
83 if (len >= ((unsigned int) -1) / 1024)
84 return len / (max(get_timer(start_ms) / 1024, 1));
85 else
86 return 1024 * len / max(get_timer(start_ms), 1);
87}
88
54841ab5 89static int do_spi_flash_probe(int argc, char * const argv[])
b6368467 90{
c1173bd0
EN
91 unsigned int bus = CONFIG_SF_DEFAULT_BUS;
92 unsigned int cs = CONFIG_SF_DEFAULT_CS;
b6368467
HS
93 unsigned int speed = CONFIG_SF_DEFAULT_SPEED;
94 unsigned int mode = CONFIG_SF_DEFAULT_MODE;
95 char *endp;
96 struct spi_flash *new;
97
c1173bd0
EN
98 if (argc >= 2) {
99 cs = simple_strtoul(argv[1], &endp, 0);
100 if (*argv[1] == 0 || (*endp != 0 && *endp != ':'))
8a07de03 101 return -1;
c1173bd0
EN
102 if (*endp == ':') {
103 if (endp[1] == 0)
104 return -1;
105
106 bus = cs;
107 cs = simple_strtoul(endp + 1, &endp, 0);
108 if (*endp != 0)
109 return -1;
110 }
b6368467
HS
111 }
112
113 if (argc >= 3) {
114 speed = simple_strtoul(argv[2], &endp, 0);
115 if (*argv[2] == 0 || *endp != 0)
8a07de03 116 return -1;
b6368467
HS
117 }
118 if (argc >= 4) {
6e8d58d3 119 mode = simple_strtoul(argv[3], &endp, 16);
b6368467 120 if (*argv[3] == 0 || *endp != 0)
8a07de03 121 return -1;
b6368467
HS
122 }
123
124 new = spi_flash_probe(bus, cs, speed, mode);
125 if (!new) {
126 printf("Failed to initialize SPI flash at %u:%u\n", bus, cs);
127 return 1;
128 }
129
130 if (flash)
131 spi_flash_free(flash);
132 flash = new;
133
b6368467 134 return 0;
b6368467
HS
135}
136
8d1af942
SG
137/**
138 * Write a block of data to SPI flash, first checking if it is different from
139 * what is already there.
140 *
141 * If the data being written is the same, then *skipped is incremented by len.
142 *
143 * @param flash flash context pointer
144 * @param offset flash offset to write
145 * @param len number of bytes to write
146 * @param buf buffer to write from
147 * @param cmp_buf read buffer to use to compare data
148 * @param skipped Count of skipped data (incremented by this function)
149 * @return NULL if OK, else a string containing the stage which failed
150 */
151static const char *spi_flash_update_block(struct spi_flash *flash, u32 offset,
152 size_t len, const char *buf, char *cmp_buf, size_t *skipped)
153{
a97f6efd 154 debug("offset=%#x, sector_size=%#x, len=%#zx\n",
402ba1e3 155 offset, flash->sector_size, len);
b95f958d
GF
156 /* Read the entire sector so to allow for rewriting */
157 if (spi_flash_read(flash, offset, flash->sector_size, cmp_buf))
8d1af942 158 return "read";
b95f958d 159 /* Compare only what is meaningful (len) */
8d1af942 160 if (memcmp(cmp_buf, buf, len) == 0) {
a97f6efd 161 debug("Skip region %x size %zx: no change\n",
402ba1e3 162 offset, len);
8d1af942
SG
163 *skipped += len;
164 return NULL;
165 }
34888506
GF
166 /* Erase the entire sector */
167 if (spi_flash_erase(flash, offset, flash->sector_size))
8d1af942 168 return "erase";
b95f958d 169 /* Write the initial part of the block from the source */
8d1af942
SG
170 if (spi_flash_write(flash, offset, len, buf))
171 return "write";
b95f958d
GF
172 /* If it's a partial sector, rewrite the existing part */
173 if (len != flash->sector_size) {
174 /* Rewrite the original data to the end of the sector */
175 if (spi_flash_write(flash, offset + len,
176 flash->sector_size - len, &cmp_buf[len]))
177 return "write";
178 }
179
8d1af942
SG
180 return NULL;
181}
182
183/**
184 * Update an area of SPI flash by erasing and writing any blocks which need
185 * to change. Existing blocks with the correct data are left unchanged.
186 *
187 * @param flash flash context pointer
188 * @param offset flash offset to write
189 * @param len number of bytes to write
190 * @param buf buffer to write from
191 * @return 0 if ok, 1 on error
192 */
193static int spi_flash_update(struct spi_flash *flash, u32 offset,
194 size_t len, const char *buf)
195{
196 const char *err_oper = NULL;
197 char *cmp_buf;
198 const char *end = buf + len;
199 size_t todo; /* number of bytes to do in this pass */
8e8a4bc2 200 size_t skipped = 0; /* statistics */
a683c288
JM
201 const ulong start_time = get_timer(0);
202 size_t scale = 1;
203 const char *start_buf = buf;
204 ulong delta;
8d1af942 205
a683c288
JM
206 if (end - buf >= 200)
207 scale = (end - buf) / 100;
8d1af942
SG
208 cmp_buf = malloc(flash->sector_size);
209 if (cmp_buf) {
a683c288
JM
210 ulong last_update = get_timer(0);
211
8e8a4bc2 212 for (; buf < end && !err_oper; buf += todo, offset += todo) {
8d1af942 213 todo = min(end - buf, flash->sector_size);
a683c288
JM
214 if (get_timer(last_update) > 100) {
215 printf(" \rUpdating, %zu%% %lu B/s",
402ba1e3 216 100 - (end - buf) / scale,
a683c288
JM
217 bytes_per_second(buf - start_buf,
218 start_time));
219 last_update = get_timer(0);
220 }
8d1af942
SG
221 err_oper = spi_flash_update_block(flash, offset, todo,
222 buf, cmp_buf, &skipped);
223 }
224 } else {
225 err_oper = "malloc";
226 }
227 free(cmp_buf);
a683c288 228 putc('\r');
8d1af942
SG
229 if (err_oper) {
230 printf("SPI flash failed in %s step\n", err_oper);
231 return 1;
232 }
a683c288
JM
233
234 delta = get_timer(start_time);
235 printf("%zu bytes written, %zu bytes skipped", len - skipped,
402ba1e3 236 skipped);
a683c288 237 printf(" in %ld.%lds, speed %ld B/s\n",
402ba1e3 238 delta / 1000, delta % 1000, bytes_per_second(len, start_time));
8e8a4bc2 239
8d1af942
SG
240 return 0;
241}
242
54841ab5 243static int do_spi_flash_read_write(int argc, char * const argv[])
b6368467
HS
244{
245 unsigned long addr;
246 unsigned long offset;
247 unsigned long len;
248 void *buf;
249 char *endp;
60b6614a 250 int ret = 1;
b6368467
HS
251
252 if (argc < 4)
8a07de03 253 return -1;
b6368467
HS
254
255 addr = simple_strtoul(argv[1], &endp, 16);
256 if (*argv[1] == 0 || *endp != 0)
8a07de03 257 return -1;
b6368467
HS
258 offset = simple_strtoul(argv[2], &endp, 16);
259 if (*argv[2] == 0 || *endp != 0)
8a07de03 260 return -1;
b6368467
HS
261 len = simple_strtoul(argv[3], &endp, 16);
262 if (*argv[3] == 0 || *endp != 0)
8a07de03 263 return -1;
b6368467 264
86493994
GF
265 /* Consistency checking */
266 if (offset + len > flash->size) {
267 printf("ERROR: attempting %s past flash size (%#x)\n",
402ba1e3 268 argv[0], flash->size);
86493994
GF
269 return 1;
270 }
271
b6368467
HS
272 buf = map_physmem(addr, len, MAP_WRBACK);
273 if (!buf) {
274 puts("Failed to map physical memory\n");
275 return 1;
276 }
277
402ba1e3 278 if (strcmp(argv[0], "update") == 0) {
8d1af942 279 ret = spi_flash_update(flash, offset, len, buf);
402ba1e3 280 } else if (strncmp(argv[0], "read", 4) == 0 ||
60b6614a
JT
281 strncmp(argv[0], "write", 5) == 0) {
282 int read;
283
284 read = strncmp(argv[0], "read", 4) == 0;
285 if (read)
286 ret = spi_flash_read(flash, offset, len, buf);
287 else
288 ret = spi_flash_write(flash, offset, len, buf);
289
290 printf("SF: %zu bytes @ %#x %s: %s\n", (size_t)len, (u32)offset,
402ba1e3 291 read ? "Read" : "Written", ret ? "ERROR" : "OK");
60b6614a 292 }
b6368467
HS
293
294 unmap_physmem(buf, len);
295
60b6614a 296 return ret == 0 ? 0 : 1;
b6368467
HS
297}
298
54841ab5 299static int do_spi_flash_erase(int argc, char * const argv[])
b6368467
HS
300{
301 unsigned long offset;
302 unsigned long len;
303 char *endp;
304 int ret;
305
306 if (argc < 3)
8a07de03 307 return -1;
b6368467
HS
308
309 offset = simple_strtoul(argv[1], &endp, 16);
310 if (*argv[1] == 0 || *endp != 0)
8a07de03 311 return -1;
334eb4b0
RR
312
313 ret = sf_parse_len_arg(argv[2], &len);
314 if (ret != 1)
8a07de03 315 return -1;
b6368467 316
86493994
GF
317 /* Consistency checking */
318 if (offset + len > flash->size) {
319 printf("ERROR: attempting %s past flash size (%#x)\n",
402ba1e3 320 argv[0], flash->size);
86493994
GF
321 return 1;
322 }
323
b6368467 324 ret = spi_flash_erase(flash, offset, len);
96bbf556 325 printf("SF: %zu bytes @ %#x Erased: %s\n", (size_t)len, (u32)offset,
402ba1e3 326 ret ? "ERROR" : "OK");
b6368467 327
96bbf556 328 return ret == 0 ? 0 : 1;
b6368467
HS
329}
330
24007273
SG
331#ifdef CONFIG_CMD_SF_TEST
332enum {
333 STAGE_ERASE,
334 STAGE_CHECK,
335 STAGE_WRITE,
336 STAGE_READ,
337
338 STAGE_COUNT,
339};
340
341static char *stage_name[STAGE_COUNT] = {
342 "erase",
343 "check",
344 "write",
345 "read",
346};
347
348struct test_info {
349 int stage;
350 int bytes;
351 unsigned base_ms;
352 unsigned time_ms[STAGE_COUNT];
353};
354
355static void show_time(struct test_info *test, int stage)
356{
357 uint64_t speed; /* KiB/s */
358 int bps; /* Bits per second */
359
360 speed = (long long)test->bytes * 1000;
d1f22d4b
SG
361 if (test->time_ms[stage])
362 do_div(speed, test->time_ms[stage] * 1024);
24007273
SG
363 bps = speed * 8;
364
365 printf("%d %s: %d ticks, %d KiB/s %d.%03d Mbps\n", stage,
366 stage_name[stage], test->time_ms[stage],
367 (int)speed, bps / 1000, bps % 1000);
368}
369
370static void spi_test_next_stage(struct test_info *test)
371{
372 test->time_ms[test->stage] = get_timer(test->base_ms);
373 show_time(test, test->stage);
374 test->base_ms = get_timer(0);
375 test->stage++;
376}
377
378/**
379 * Run a test on the SPI flash
380 *
381 * @param flash SPI flash to use
382 * @param buf Source buffer for data to write
383 * @param len Size of data to read/write
384 * @param offset Offset within flash to check
385 * @param vbuf Verification buffer
386 * @return 0 if ok, -1 on error
387 */
1e7133e9
SG
388static int spi_flash_test(struct spi_flash *flash, uint8_t *buf, ulong len,
389 ulong offset, uint8_t *vbuf)
24007273
SG
390{
391 struct test_info test;
392 int i;
393
394 printf("SPI flash test:\n");
395 memset(&test, '\0', sizeof(test));
396 test.base_ms = get_timer(0);
397 test.bytes = len;
398 if (spi_flash_erase(flash, offset, len)) {
399 printf("Erase failed\n");
400 return -1;
401 }
402 spi_test_next_stage(&test);
403
404 if (spi_flash_read(flash, offset, len, vbuf)) {
405 printf("Check read failed\n");
406 return -1;
407 }
408 for (i = 0; i < len; i++) {
409 if (vbuf[i] != 0xff) {
410 printf("Check failed at %d\n", i);
411 print_buffer(i, vbuf + i, 1, min(len - i, 0x40), 0);
412 return -1;
413 }
414 }
415 spi_test_next_stage(&test);
416
417 if (spi_flash_write(flash, offset, len, buf)) {
418 printf("Write failed\n");
419 return -1;
420 }
421 memset(vbuf, '\0', len);
422 spi_test_next_stage(&test);
423
424 if (spi_flash_read(flash, offset, len, vbuf)) {
425 printf("Read failed\n");
426 return -1;
427 }
428 spi_test_next_stage(&test);
429
430 for (i = 0; i < len; i++) {
431 if (buf[i] != vbuf[i]) {
432 printf("Verify failed at %d, good data:\n", i);
433 print_buffer(i, buf + i, 1, min(len - i, 0x40), 0);
434 printf("Bad data:\n");
435 print_buffer(i, vbuf + i, 1, min(len - i, 0x40), 0);
436 return -1;
437 }
438 }
439 printf("Test passed\n");
440 for (i = 0; i < STAGE_COUNT; i++)
441 show_time(&test, i);
442
443 return 0;
444}
445
446static int do_spi_flash_test(int argc, char * const argv[])
447{
448 unsigned long offset;
449 unsigned long len;
d1f22d4b 450 uint8_t *buf, *from;
24007273 451 char *endp;
1e7133e9 452 uint8_t *vbuf;
24007273
SG
453 int ret;
454
d1f22d4b
SG
455 if (argc < 3)
456 return -1;
24007273
SG
457 offset = simple_strtoul(argv[1], &endp, 16);
458 if (*argv[1] == 0 || *endp != 0)
459 return -1;
460 len = simple_strtoul(argv[2], &endp, 16);
461 if (*argv[2] == 0 || *endp != 0)
462 return -1;
463
464 vbuf = malloc(len);
465 if (!vbuf) {
d1f22d4b 466 printf("Cannot allocate memory (%lu bytes)\n", len);
24007273
SG
467 return 1;
468 }
469 buf = malloc(len);
470 if (!buf) {
471 free(vbuf);
d1f22d4b 472 printf("Cannot allocate memory (%lu bytes)\n", len);
24007273
SG
473 return 1;
474 }
475
d1f22d4b
SG
476 from = map_sysmem(CONFIG_SYS_TEXT_BASE, 0);
477 memcpy(buf, from, len);
24007273
SG
478 ret = spi_flash_test(flash, buf, len, offset, vbuf);
479 free(vbuf);
480 free(buf);
481 if (ret) {
482 printf("Test failed\n");
483 return 1;
484 }
485
486 return 0;
487}
488#endif /* CONFIG_CMD_SF_TEST */
489
402ba1e3
JT
490static int do_spi_flash(cmd_tbl_t *cmdtp, int flag, int argc,
491 char * const argv[])
b6368467
HS
492{
493 const char *cmd;
8a07de03 494 int ret;
b6368467
HS
495
496 /* need at least two arguments */
497 if (argc < 2)
498 goto usage;
499
500 cmd = argv[1];
8a07de03
MF
501 --argc;
502 ++argv;
b6368467 503
8a07de03
MF
504 if (strcmp(cmd, "probe") == 0) {
505 ret = do_spi_flash_probe(argc, argv);
506 goto done;
507 }
b6368467
HS
508
509 /* The remaining commands require a selected device */
510 if (!flash) {
511 puts("No SPI flash selected. Please run `sf probe'\n");
512 return 1;
513 }
514
8d1af942
SG
515 if (strcmp(cmd, "read") == 0 || strcmp(cmd, "write") == 0 ||
516 strcmp(cmd, "update") == 0)
8a07de03
MF
517 ret = do_spi_flash_read_write(argc, argv);
518 else if (strcmp(cmd, "erase") == 0)
519 ret = do_spi_flash_erase(argc, argv);
24007273
SG
520#ifdef CONFIG_CMD_SF_TEST
521 else if (!strcmp(cmd, "test"))
522 ret = do_spi_flash_test(argc, argv);
523#endif
8a07de03
MF
524 else
525 ret = -1;
526
527done:
528 if (ret != -1)
529 return ret;
b6368467
HS
530
531usage:
4c12eeb8 532 return CMD_RET_USAGE;
b6368467
HS
533}
534
24007273
SG
535#ifdef CONFIG_CMD_SF_TEST
536#define SF_TEST_HELP "\nsf test offset len " \
537 "- run a very basic destructive test"
538#else
539#define SF_TEST_HELP
540#endif
541
b6368467
HS
542U_BOOT_CMD(
543 sf, 5, 1, do_spi_flash,
2fb2604d 544 "SPI flash sub-system",
c1173bd0 545 "probe [[bus:]cs] [hz] [mode] - init flash device on given SPI bus\n"
b6368467 546 " and chip select\n"
402ba1e3 547 "sf read addr offset len - read `len' bytes starting at\n"
b6368467
HS
548 " `offset' to memory at `addr'\n"
549 "sf write addr offset len - write `len' bytes from memory\n"
550 " at `addr' to flash at `offset'\n"
334eb4b0 551 "sf erase offset [+]len - erase `len' bytes from `offset'\n"
8d1af942
SG
552 " `+len' round up `len' to block size\n"
553 "sf update addr offset len - erase and write `len' bytes from memory\n"
554 " at `addr' to flash at `offset'"
24007273 555 SF_TEST_HELP
a89c33db 556);