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