1
2
3
4
5
6
7
8#include <common.h>
9#include <malloc.h>
10#include <spi_flash.h>
11
12#include <asm/io.h>
13
14#ifndef CONFIG_SF_DEFAULT_SPEED
15# define CONFIG_SF_DEFAULT_SPEED 1000000
16#endif
17#ifndef CONFIG_SF_DEFAULT_MODE
18# define CONFIG_SF_DEFAULT_MODE SPI_MODE_3
19#endif
20#ifndef CONFIG_SF_DEFAULT_CS
21# define CONFIG_SF_DEFAULT_CS 0
22#endif
23#ifndef CONFIG_SF_DEFAULT_BUS
24# define CONFIG_SF_DEFAULT_BUS 0
25#endif
26
27static struct spi_flash *flash;
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46static int sf_parse_len_arg(char *arg, ulong *len)
47{
48 char *ep;
49 char round_up_len;
50 ulong len_arg;
51
52 round_up_len = 0;
53 if (*arg == '+') {
54 round_up_len = 1;
55 ++arg;
56 }
57
58 len_arg = simple_strtoul(arg, &ep, 16);
59 if (ep == arg || *ep != '\0')
60 return -1;
61
62 if (round_up_len && flash->sector_size > 0)
63 *len = ROUND(len_arg, flash->sector_size);
64 else
65 *len = len_arg;
66
67 return 1;
68}
69
70static int do_spi_flash_probe(int argc, char * const argv[])
71{
72 unsigned int bus = CONFIG_SF_DEFAULT_BUS;
73 unsigned int cs = CONFIG_SF_DEFAULT_CS;
74 unsigned int speed = CONFIG_SF_DEFAULT_SPEED;
75 unsigned int mode = CONFIG_SF_DEFAULT_MODE;
76 char *endp;
77 struct spi_flash *new;
78
79 if (argc >= 2) {
80 cs = simple_strtoul(argv[1], &endp, 0);
81 if (*argv[1] == 0 || (*endp != 0 && *endp != ':'))
82 return -1;
83 if (*endp == ':') {
84 if (endp[1] == 0)
85 return -1;
86
87 bus = cs;
88 cs = simple_strtoul(endp + 1, &endp, 0);
89 if (*endp != 0)
90 return -1;
91 }
92 }
93
94 if (argc >= 3) {
95 speed = simple_strtoul(argv[2], &endp, 0);
96 if (*argv[2] == 0 || *endp != 0)
97 return -1;
98 }
99 if (argc >= 4) {
100 mode = simple_strtoul(argv[3], &endp, 16);
101 if (*argv[3] == 0 || *endp != 0)
102 return -1;
103 }
104
105 new = spi_flash_probe(bus, cs, speed, mode);
106 if (!new) {
107 printf("Failed to initialize SPI flash at %u:%u\n", bus, cs);
108 return 1;
109 }
110
111 if (flash)
112 spi_flash_free(flash);
113 flash = new;
114
115 return 0;
116}
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132static const char *spi_flash_update_block(struct spi_flash *flash, u32 offset,
133 size_t len, const char *buf, char *cmp_buf, size_t *skipped)
134{
135 debug("offset=%#x, sector_size=%#x, len=%#zx\n",
136 offset, flash->sector_size, len);
137 if (spi_flash_read(flash, offset, len, cmp_buf))
138 return "read";
139 if (memcmp(cmp_buf, buf, len) == 0) {
140 debug("Skip region %x size %zx: no change\n",
141 offset, len);
142 *skipped += len;
143 return NULL;
144 }
145 if (spi_flash_erase(flash, offset, len))
146 return "erase";
147 if (spi_flash_write(flash, offset, len, buf))
148 return "write";
149 return NULL;
150}
151
152
153
154
155
156
157
158
159
160
161
162static int spi_flash_update(struct spi_flash *flash, u32 offset,
163 size_t len, const char *buf)
164{
165 const char *err_oper = NULL;
166 char *cmp_buf;
167 const char *end = buf + len;
168 size_t todo;
169 size_t skipped = 0;
170
171 cmp_buf = malloc(flash->sector_size);
172 if (cmp_buf) {
173 for (; buf < end && !err_oper; buf += todo, offset += todo) {
174 todo = min(end - buf, flash->sector_size);
175 err_oper = spi_flash_update_block(flash, offset, todo,
176 buf, cmp_buf, &skipped);
177 }
178 } else {
179 err_oper = "malloc";
180 }
181 free(cmp_buf);
182 if (err_oper) {
183 printf("SPI flash failed in %s step\n", err_oper);
184 return 1;
185 }
186 printf("%zu bytes written, %zu bytes skipped\n", len - skipped,
187 skipped);
188
189 return 0;
190}
191
192static int do_spi_flash_read_write(int argc, char * const argv[])
193{
194 unsigned long addr;
195 unsigned long offset;
196 unsigned long len;
197 void *buf;
198 char *endp;
199 int ret;
200
201 if (argc < 4)
202 return -1;
203
204 addr = simple_strtoul(argv[1], &endp, 16);
205 if (*argv[1] == 0 || *endp != 0)
206 return -1;
207 offset = simple_strtoul(argv[2], &endp, 16);
208 if (*argv[2] == 0 || *endp != 0)
209 return -1;
210 len = simple_strtoul(argv[3], &endp, 16);
211 if (*argv[3] == 0 || *endp != 0)
212 return -1;
213
214 buf = map_physmem(addr, len, MAP_WRBACK);
215 if (!buf) {
216 puts("Failed to map physical memory\n");
217 return 1;
218 }
219
220 if (strcmp(argv[0], "update") == 0)
221 ret = spi_flash_update(flash, offset, len, buf);
222 else if (strcmp(argv[0], "read") == 0)
223 ret = spi_flash_read(flash, offset, len, buf);
224 else
225 ret = spi_flash_write(flash, offset, len, buf);
226
227 unmap_physmem(buf, len);
228
229 if (ret) {
230 printf("SPI flash %s failed\n", argv[0]);
231 return 1;
232 }
233
234 return 0;
235}
236
237static int do_spi_flash_erase(int argc, char * const argv[])
238{
239 unsigned long offset;
240 unsigned long len;
241 char *endp;
242 int ret;
243
244 if (argc < 3)
245 return -1;
246
247 offset = simple_strtoul(argv[1], &endp, 16);
248 if (*argv[1] == 0 || *endp != 0)
249 return -1;
250
251 ret = sf_parse_len_arg(argv[2], &len);
252 if (ret != 1)
253 return -1;
254
255 ret = spi_flash_erase(flash, offset, len);
256 if (ret) {
257 printf("SPI flash %s failed\n", argv[0]);
258 return 1;
259 }
260
261 return 0;
262}
263
264static int do_spi_flash(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
265{
266 const char *cmd;
267 int ret;
268
269
270 if (argc < 2)
271 goto usage;
272
273 cmd = argv[1];
274 --argc;
275 ++argv;
276
277 if (strcmp(cmd, "probe") == 0) {
278 ret = do_spi_flash_probe(argc, argv);
279 goto done;
280 }
281
282
283 if (!flash) {
284 puts("No SPI flash selected. Please run `sf probe'\n");
285 return 1;
286 }
287
288 if (strcmp(cmd, "read") == 0 || strcmp(cmd, "write") == 0 ||
289 strcmp(cmd, "update") == 0)
290 ret = do_spi_flash_read_write(argc, argv);
291 else if (strcmp(cmd, "erase") == 0)
292 ret = do_spi_flash_erase(argc, argv);
293 else
294 ret = -1;
295
296done:
297 if (ret != -1)
298 return ret;
299
300usage:
301 return CMD_RET_USAGE;
302}
303
304U_BOOT_CMD(
305 sf, 5, 1, do_spi_flash,
306 "SPI flash sub-system",
307 "probe [[bus:]cs] [hz] [mode] - init flash device on given SPI bus\n"
308 " and chip select\n"
309 "sf read addr offset len - read `len' bytes starting at\n"
310 " `offset' to memory at `addr'\n"
311 "sf write addr offset len - write `len' bytes from memory\n"
312 " at `addr' to flash at `offset'\n"
313 "sf erase offset [+]len - erase `len' bytes from `offset'\n"
314 " `+len' round up `len' to block size\n"
315 "sf update addr offset len - erase and write `len' bytes from memory\n"
316 " at `addr' to flash at `offset'"
317);
318