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