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