]>
Commit | Line | Data |
---|---|---|
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 | |
29 | static 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 | */ | |
48 | static 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 | */ | |
80 | static 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 | 89 | static 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 | */ | |
151 | static 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 | */ | |
193 | static 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 | 243 | static 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 | 299 | static 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 |
332 | enum { | |
333 | STAGE_ERASE, | |
334 | STAGE_CHECK, | |
335 | STAGE_WRITE, | |
336 | STAGE_READ, | |
337 | ||
338 | STAGE_COUNT, | |
339 | }; | |
340 | ||
341 | static char *stage_name[STAGE_COUNT] = { | |
342 | "erase", | |
343 | "check", | |
344 | "write", | |
345 | "read", | |
346 | }; | |
347 | ||
348 | struct test_info { | |
349 | int stage; | |
350 | int bytes; | |
351 | unsigned base_ms; | |
352 | unsigned time_ms[STAGE_COUNT]; | |
353 | }; | |
354 | ||
355 | static 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; | |
361 | do_div(speed, test->time_ms[stage] * 1024); | |
362 | bps = speed * 8; | |
363 | ||
364 | printf("%d %s: %d ticks, %d KiB/s %d.%03d Mbps\n", stage, | |
365 | stage_name[stage], test->time_ms[stage], | |
366 | (int)speed, bps / 1000, bps % 1000); | |
367 | } | |
368 | ||
369 | static void spi_test_next_stage(struct test_info *test) | |
370 | { | |
371 | test->time_ms[test->stage] = get_timer(test->base_ms); | |
372 | show_time(test, test->stage); | |
373 | test->base_ms = get_timer(0); | |
374 | test->stage++; | |
375 | } | |
376 | ||
377 | /** | |
378 | * Run a test on the SPI flash | |
379 | * | |
380 | * @param flash SPI flash to use | |
381 | * @param buf Source buffer for data to write | |
382 | * @param len Size of data to read/write | |
383 | * @param offset Offset within flash to check | |
384 | * @param vbuf Verification buffer | |
385 | * @return 0 if ok, -1 on error | |
386 | */ | |
1e7133e9 SG |
387 | static int spi_flash_test(struct spi_flash *flash, uint8_t *buf, ulong len, |
388 | ulong offset, uint8_t *vbuf) | |
24007273 SG |
389 | { |
390 | struct test_info test; | |
391 | int i; | |
392 | ||
393 | printf("SPI flash test:\n"); | |
394 | memset(&test, '\0', sizeof(test)); | |
395 | test.base_ms = get_timer(0); | |
396 | test.bytes = len; | |
397 | if (spi_flash_erase(flash, offset, len)) { | |
398 | printf("Erase failed\n"); | |
399 | return -1; | |
400 | } | |
401 | spi_test_next_stage(&test); | |
402 | ||
403 | if (spi_flash_read(flash, offset, len, vbuf)) { | |
404 | printf("Check read failed\n"); | |
405 | return -1; | |
406 | } | |
407 | for (i = 0; i < len; i++) { | |
408 | if (vbuf[i] != 0xff) { | |
409 | printf("Check failed at %d\n", i); | |
410 | print_buffer(i, vbuf + i, 1, min(len - i, 0x40), 0); | |
411 | return -1; | |
412 | } | |
413 | } | |
414 | spi_test_next_stage(&test); | |
415 | ||
416 | if (spi_flash_write(flash, offset, len, buf)) { | |
417 | printf("Write failed\n"); | |
418 | return -1; | |
419 | } | |
420 | memset(vbuf, '\0', len); | |
421 | spi_test_next_stage(&test); | |
422 | ||
423 | if (spi_flash_read(flash, offset, len, vbuf)) { | |
424 | printf("Read failed\n"); | |
425 | return -1; | |
426 | } | |
427 | spi_test_next_stage(&test); | |
428 | ||
429 | for (i = 0; i < len; i++) { | |
430 | if (buf[i] != vbuf[i]) { | |
431 | printf("Verify failed at %d, good data:\n", i); | |
432 | print_buffer(i, buf + i, 1, min(len - i, 0x40), 0); | |
433 | printf("Bad data:\n"); | |
434 | print_buffer(i, vbuf + i, 1, min(len - i, 0x40), 0); | |
435 | return -1; | |
436 | } | |
437 | } | |
438 | printf("Test passed\n"); | |
439 | for (i = 0; i < STAGE_COUNT; i++) | |
440 | show_time(&test, i); | |
441 | ||
442 | return 0; | |
443 | } | |
444 | ||
445 | static int do_spi_flash_test(int argc, char * const argv[]) | |
446 | { | |
447 | unsigned long offset; | |
448 | unsigned long len; | |
1e7133e9 | 449 | uint8_t *buf = (uint8_t *)CONFIG_SYS_TEXT_BASE; |
24007273 | 450 | char *endp; |
1e7133e9 | 451 | uint8_t *vbuf; |
24007273 SG |
452 | int ret; |
453 | ||
454 | offset = simple_strtoul(argv[1], &endp, 16); | |
455 | if (*argv[1] == 0 || *endp != 0) | |
456 | return -1; | |
457 | len = simple_strtoul(argv[2], &endp, 16); | |
458 | if (*argv[2] == 0 || *endp != 0) | |
459 | return -1; | |
460 | ||
461 | vbuf = malloc(len); | |
462 | if (!vbuf) { | |
463 | printf("Cannot allocate memory\n"); | |
464 | return 1; | |
465 | } | |
466 | buf = malloc(len); | |
467 | if (!buf) { | |
468 | free(vbuf); | |
469 | printf("Cannot allocate memory\n"); | |
470 | return 1; | |
471 | } | |
472 | ||
473 | memcpy(buf, (char *)CONFIG_SYS_TEXT_BASE, len); | |
474 | ret = spi_flash_test(flash, buf, len, offset, vbuf); | |
475 | free(vbuf); | |
476 | free(buf); | |
477 | if (ret) { | |
478 | printf("Test failed\n"); | |
479 | return 1; | |
480 | } | |
481 | ||
482 | return 0; | |
483 | } | |
484 | #endif /* CONFIG_CMD_SF_TEST */ | |
485 | ||
402ba1e3 JT |
486 | static int do_spi_flash(cmd_tbl_t *cmdtp, int flag, int argc, |
487 | char * const argv[]) | |
b6368467 HS |
488 | { |
489 | const char *cmd; | |
8a07de03 | 490 | int ret; |
b6368467 HS |
491 | |
492 | /* need at least two arguments */ | |
493 | if (argc < 2) | |
494 | goto usage; | |
495 | ||
496 | cmd = argv[1]; | |
8a07de03 MF |
497 | --argc; |
498 | ++argv; | |
b6368467 | 499 | |
8a07de03 MF |
500 | if (strcmp(cmd, "probe") == 0) { |
501 | ret = do_spi_flash_probe(argc, argv); | |
502 | goto done; | |
503 | } | |
b6368467 HS |
504 | |
505 | /* The remaining commands require a selected device */ | |
506 | if (!flash) { | |
507 | puts("No SPI flash selected. Please run `sf probe'\n"); | |
508 | return 1; | |
509 | } | |
510 | ||
8d1af942 SG |
511 | if (strcmp(cmd, "read") == 0 || strcmp(cmd, "write") == 0 || |
512 | strcmp(cmd, "update") == 0) | |
8a07de03 MF |
513 | ret = do_spi_flash_read_write(argc, argv); |
514 | else if (strcmp(cmd, "erase") == 0) | |
515 | ret = do_spi_flash_erase(argc, argv); | |
24007273 SG |
516 | #ifdef CONFIG_CMD_SF_TEST |
517 | else if (!strcmp(cmd, "test")) | |
518 | ret = do_spi_flash_test(argc, argv); | |
519 | #endif | |
8a07de03 MF |
520 | else |
521 | ret = -1; | |
522 | ||
523 | done: | |
524 | if (ret != -1) | |
525 | return ret; | |
b6368467 HS |
526 | |
527 | usage: | |
4c12eeb8 | 528 | return CMD_RET_USAGE; |
b6368467 HS |
529 | } |
530 | ||
24007273 SG |
531 | #ifdef CONFIG_CMD_SF_TEST |
532 | #define SF_TEST_HELP "\nsf test offset len " \ | |
533 | "- run a very basic destructive test" | |
534 | #else | |
535 | #define SF_TEST_HELP | |
536 | #endif | |
537 | ||
b6368467 HS |
538 | U_BOOT_CMD( |
539 | sf, 5, 1, do_spi_flash, | |
2fb2604d | 540 | "SPI flash sub-system", |
c1173bd0 | 541 | "probe [[bus:]cs] [hz] [mode] - init flash device on given SPI bus\n" |
b6368467 | 542 | " and chip select\n" |
402ba1e3 | 543 | "sf read addr offset len - read `len' bytes starting at\n" |
b6368467 HS |
544 | " `offset' to memory at `addr'\n" |
545 | "sf write addr offset len - write `len' bytes from memory\n" | |
546 | " at `addr' to flash at `offset'\n" | |
334eb4b0 | 547 | "sf erase offset [+]len - erase `len' bytes from `offset'\n" |
8d1af942 SG |
548 | " `+len' round up `len' to block size\n" |
549 | "sf update addr offset len - erase and write `len' bytes from memory\n" | |
550 | " at `addr' to flash at `offset'" | |
24007273 | 551 | SF_TEST_HELP |
a89c33db | 552 | ); |