blob: a0ccdb6328f38b91148e237755891d2de8fd31f0 [file] [log] [blame]
wdenk38a24a62002-09-18 12:49:44 +00001/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/*
25 * FLASH support
26 */
27#include <common.h>
28#include <command.h>
wdenk8bde7f72003-06-27 21:31:46 +000029
wdenk38a24a62002-09-18 12:49:44 +000030
wdenk2abbe072003-06-16 23:50:08 +000031#ifdef CONFIG_HAS_DATAFLASH
32#include <dataflash.h>
33#endif
34
wdenk38a24a62002-09-18 12:49:44 +000035#if (CONFIG_COMMANDS & CFG_CMD_FLASH)
36
37extern flash_info_t flash_info[]; /* info for FLASH chips */
38
39/*
40 * The user interface starts numbering for Flash banks with 1
41 * for historical reasons.
42 */
43
44/*
45 * this routine looks for an abbreviated flash range specification.
46 * the syntax is B:SF[-SL], where B is the bank number, SF is the first
47 * sector to erase, and SL is the last sector to erase (defaults to SF).
48 * bank numbers start at 1 to be consistent with other specs, sector numbers
49 * start at zero.
50 *
51 * returns: 1 - correct spec; *pinfo, *psf and *psl are
52 * set appropriately
53 * 0 - doesn't look like an abbreviated spec
54 * -1 - looks like an abbreviated spec, but got
55 * a parsing error, a number out of range,
56 * or an invalid flash bank.
57 */
58static int
wdenkbdccc4f2003-08-05 17:43:17 +000059abbrev_spec (char *str, flash_info_t ** pinfo, int *psf, int *psl)
wdenk38a24a62002-09-18 12:49:44 +000060{
wdenkbdccc4f2003-08-05 17:43:17 +000061 flash_info_t *fp;
62 int bank, first, last;
63 char *p, *ep;
wdenk38a24a62002-09-18 12:49:44 +000064
wdenkbdccc4f2003-08-05 17:43:17 +000065 if ((p = strchr (str, ':')) == NULL)
66 return 0;
wdenk38a24a62002-09-18 12:49:44 +000067 *p++ = '\0';
68
wdenkbdccc4f2003-08-05 17:43:17 +000069 bank = simple_strtoul (str, &ep, 10);
70 if (ep == str || *ep != '\0' ||
71 bank < 1 || bank > CFG_MAX_FLASH_BANKS ||
72 (fp = &flash_info[bank - 1])->flash_id == FLASH_UNKNOWN)
73 return -1;
wdenk38a24a62002-09-18 12:49:44 +000074
wdenkbdccc4f2003-08-05 17:43:17 +000075 str = p;
76 if ((p = strchr (str, '-')) != NULL)
77 *p++ = '\0';
wdenk38a24a62002-09-18 12:49:44 +000078
wdenkbdccc4f2003-08-05 17:43:17 +000079 first = simple_strtoul (str, &ep, 10);
80 if (ep == str || *ep != '\0' || first >= fp->sector_count)
81 return -1;
wdenk38a24a62002-09-18 12:49:44 +000082
wdenkbdccc4f2003-08-05 17:43:17 +000083 if (p != NULL) {
84 last = simple_strtoul (p, &ep, 10);
85 if (ep == p || *ep != '\0' ||
86 last < first || last >= fp->sector_count)
87 return -1;
88 } else {
89 last = first;
90 }
91
92 *pinfo = fp;
93 *psf = first;
94 *psl = last;
95
96 return 1;
wdenk38a24a62002-09-18 12:49:44 +000097}
wdenkbdccc4f2003-08-05 17:43:17 +000098
Wolfgang Denkf5301872005-07-21 11:45:50 +020099/*
100 * This function computes the start and end addresses for both
101 * erase and protect commands. The range of the addresses on which
102 * either of the commands is to operate can be given in two forms:
103 * 1. <cmd> start end - operate on <'start', 'end')
104 * 2. <cmd> start +length - operate on <'start', start + length)
105 * If the second form is used and the end address doesn't fall on the
106 * sector boundary, than it will be adjusted to the next sector boundary.
107 * If it isn't in the flash, the function will fail (return -1).
108 * Input:
109 * arg1, arg2: address specification (i.e. both command arguments)
110 * Output:
111 * addr_first, addr_last: computed address range
112 * Return:
113 * 1: success
114 * -1: failure (bad format, bad address).
115*/
116static int
117addr_spec(char *arg1, char *arg2, ulong *addr_first, ulong *addr_last)
118{
119 char *ep;
120 *addr_first = simple_strtoul(arg1, &ep, 16);
121 if (ep == arg1 || *ep != '\0')
122 return -1;
123
124 char len_used = 0; /* indicates if the "start +length" form used */
125 if (arg2 && *arg2 == '+'){
126 len_used = 1;
127 ++arg2;
128 }
129
130 *addr_last = simple_strtoul(arg2, &ep, 16);
131 if (ep == arg2 || *ep != '\0')
132 return -1;
133
134 if (len_used){
135 /*
136 * *addr_last has the length, compute correct *addr_last
137 * XXX watch out for the integer overflow! Right now it is
138 * checked for in both the callers.
139 */
140 *addr_last = *addr_first + *addr_last - 1;
141
142 /*
143 * It may happen that *addr_last doesn't fall on the sector
144 * boundary. We want to round such an address to the next
145 * sector boundary, so that the commands don't fail later on.
146 */
147
148 /* find the end addr of the sector where the *addr_last is */
149 char found = 0;
150 ulong bank;
151 for (bank = 0; bank < CFG_MAX_FLASH_BANKS && !found; ++bank){
152 int i;
153 flash_info_t *info = &flash_info[bank];
154 for (i = 0; i < info->sector_count && !found; ++i){
155 /* get the end address of the sector */
156 ulong sector_end_addr;
157 if (i == info->sector_count - 1){
158 sector_end_addr =
159 info->start[0] + info->size - 1;
160 } else {
161 sector_end_addr =
162 info->start[i+1] - 1;
163 }
164 if (*addr_last <= sector_end_addr &&
165 *addr_last >= info->start[i]){
166 /* sector found */
167 found = 1;
168 /* adjust *addr_last if necessary */
169 if (*addr_last < sector_end_addr){
170 *addr_last = sector_end_addr;
171 }
172 }
173 } /* sector */
174 } /* bank */
175 if (!found){
176 /* error, addres not in flash */
177 printf("Error: end address (0x%08lx) not in flash!\n",
178 *addr_last);
179 return -1;
180 }
181 } /* "start +length" from used */
182
183 return 1;
184}
185
wdenkbdccc4f2003-08-05 17:43:17 +0000186static int
187flash_fill_sect_ranges (ulong addr_first, ulong addr_last,
188 int *s_first, int *s_last,
189 int *s_count )
190{
191 flash_info_t *info;
192 ulong bank;
193 int rcode = 0;
194
195 *s_count = 0;
196
197 for (bank=0; bank < CFG_MAX_FLASH_BANKS; ++bank) {
198 s_first[bank] = -1; /* first sector to erase */
199 s_last [bank] = -1; /* last sector to erase */
200 }
201
202 for (bank=0,info=&flash_info[0];
203 (bank < CFG_MAX_FLASH_BANKS) && (addr_first <= addr_last);
204 ++bank, ++info) {
205 ulong b_end;
206 int sect;
207 short s_end;
208
209 if (info->flash_id == FLASH_UNKNOWN) {
210 continue;
211 }
212
213 b_end = info->start[0] + info->size - 1; /* bank end addr */
214 s_end = info->sector_count - 1; /* last sector */
215
216
217 for (sect=0; sect < info->sector_count; ++sect) {
218 ulong end; /* last address in current sect */
219
220 end = (sect == s_end) ? b_end : info->start[sect + 1] - 1;
221
222 if (addr_first > end)
223 continue;
224 if (addr_last < info->start[sect])
225 continue;
226
227 if (addr_first == info->start[sect]) {
228 s_first[bank] = sect;
229 }
230 if (addr_last == end) {
231 s_last[bank] = sect;
232 }
233 }
234 if (s_first[bank] >= 0) {
235 if (s_last[bank] < 0) {
236 if (addr_last > b_end) {
237 s_last[bank] = s_end;
238 } else {
wdenk4b9206e2004-03-23 22:14:11 +0000239 puts ("Error: end address"
wdenkbdccc4f2003-08-05 17:43:17 +0000240 " not on sector boundary\n");
241 rcode = 1;
242 break;
243 }
244 }
245 if (s_last[bank] < s_first[bank]) {
wdenk4b9206e2004-03-23 22:14:11 +0000246 puts ("Error: end sector"
wdenkbdccc4f2003-08-05 17:43:17 +0000247 " precedes start sector\n");
248 rcode = 1;
249 break;
250 }
251 sect = s_last[bank];
252 addr_first = (sect == s_end) ? b_end + 1: info->start[sect + 1];
253 (*s_count) += s_last[bank] - s_first[bank] + 1;
wdenke2ffd592004-12-31 09:32:47 +0000254 } else if (addr_first >= info->start[0] && addr_first < b_end) {
255 puts ("Error: start address not on sector boundary\n");
256 rcode = 1;
257 break;
wdenk2d5b5612003-10-14 19:43:55 +0000258 } else if (s_last[bank] >= 0) {
wdenk4b9206e2004-03-23 22:14:11 +0000259 puts ("Error: cannot span across banks when they are"
wdenk2d5b5612003-10-14 19:43:55 +0000260 " mapped in reverse order\n");
261 rcode = 1;
262 break;
wdenkbdccc4f2003-08-05 17:43:17 +0000263 }
264 }
265
266 return rcode;
267}
268
wdenk38a24a62002-09-18 12:49:44 +0000269int do_flinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
270{
271 ulong bank;
272
wdenk2abbe072003-06-16 23:50:08 +0000273#ifdef CONFIG_HAS_DATAFLASH
274 dataflash_print_info();
275#endif
276
wdenk38a24a62002-09-18 12:49:44 +0000277 if (argc == 1) { /* print info for all FLASH banks */
278 for (bank=0; bank <CFG_MAX_FLASH_BANKS; ++bank) {
279 printf ("\nBank # %ld: ", bank+1);
280
281 flash_print_info (&flash_info[bank]);
282 }
283 return 0;
284 }
285
286 bank = simple_strtoul(argv[1], NULL, 16);
287 if ((bank < 1) || (bank > CFG_MAX_FLASH_BANKS)) {
288 printf ("Only FLASH Banks # 1 ... # %d supported\n",
289 CFG_MAX_FLASH_BANKS);
290 return 1;
291 }
292 printf ("\nBank # %ld: ", bank);
293 flash_print_info (&flash_info[bank-1]);
294 return 0;
295}
296int do_flerase (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
297{
298 flash_info_t *info;
299 ulong bank, addr_first, addr_last;
300 int n, sect_first, sect_last;
301 int rcode = 0;
302
303 if (argc < 2) {
304 printf ("Usage:\n%s\n", cmdtp->usage);
305 return 1;
306 }
307
308 if (strcmp(argv[1], "all") == 0) {
309 for (bank=1; bank<=CFG_MAX_FLASH_BANKS; ++bank) {
310 printf ("Erase Flash Bank # %ld ", bank);
311 info = &flash_info[bank-1];
312 rcode = flash_erase (info, 0, info->sector_count-1);
313 }
314 return rcode;
315 }
316
317 if ((n = abbrev_spec(argv[1], &info, &sect_first, &sect_last)) != 0) {
318 if (n < 0) {
wdenk4b9206e2004-03-23 22:14:11 +0000319 puts ("Bad sector specification\n");
wdenk38a24a62002-09-18 12:49:44 +0000320 return 1;
321 }
322 printf ("Erase Flash Sectors %d-%d in Bank # %d ",
323 sect_first, sect_last, (info-flash_info)+1);
324 rcode = flash_erase(info, sect_first, sect_last);
325 return rcode;
326 }
327
328 if (argc != 3) {
329 printf ("Usage:\n%s\n", cmdtp->usage);
330 return 1;
331 }
332
333 if (strcmp(argv[1], "bank") == 0) {
334 bank = simple_strtoul(argv[2], NULL, 16);
335 if ((bank < 1) || (bank > CFG_MAX_FLASH_BANKS)) {
336 printf ("Only FLASH Banks # 1 ... # %d supported\n",
337 CFG_MAX_FLASH_BANKS);
338 return 1;
339 }
340 printf ("Erase Flash Bank # %ld ", bank);
341 info = &flash_info[bank-1];
342 rcode = flash_erase (info, 0, info->sector_count-1);
343 return rcode;
344 }
345
Wolfgang Denkf5301872005-07-21 11:45:50 +0200346 if (addr_spec(argv[1], argv[2], &addr_first, &addr_last) < 0){
347 printf ("Bad address format\n");
348 return 1;
349 }
wdenk38a24a62002-09-18 12:49:44 +0000350
351 if (addr_first >= addr_last) {
352 printf ("Usage:\n%s\n", cmdtp->usage);
353 return 1;
354 }
355
wdenk38a24a62002-09-18 12:49:44 +0000356 rcode = flash_sect_erase(addr_first, addr_last);
357 return rcode;
358}
359
360int flash_sect_erase (ulong addr_first, ulong addr_last)
361{
362 flash_info_t *info;
363 ulong bank;
wdenkbdccc4f2003-08-05 17:43:17 +0000364 int s_first[CFG_MAX_FLASH_BANKS], s_last[CFG_MAX_FLASH_BANKS];
365 int erased = 0;
366 int planned;
wdenk38a24a62002-09-18 12:49:44 +0000367 int rcode = 0;
368
wdenkbdccc4f2003-08-05 17:43:17 +0000369 rcode = flash_fill_sect_ranges (addr_first, addr_last,
370 s_first, s_last, &planned );
wdenk38a24a62002-09-18 12:49:44 +0000371
wdenkbdccc4f2003-08-05 17:43:17 +0000372 if (planned && (rcode == 0)) {
373 for (bank=0,info=&flash_info[0];
374 (bank < CFG_MAX_FLASH_BANKS) && (rcode == 0);
375 ++bank, ++info) {
376 if (s_first[bank]>=0) {
377 erased += s_last[bank] - s_first[bank] + 1;
wdenk013dc8d2003-08-07 14:52:18 +0000378 debug ("Erase Flash from 0x%08lx to 0x%08lx "
wdenkbdccc4f2003-08-05 17:43:17 +0000379 "in Bank # %ld ",
380 info->start[s_first[bank]],
381 (s_last[bank] == info->sector_count) ?
382 info->start[0] + info->size - 1:
383 info->start[s_last[bank]+1] - 1,
384 bank+1);
385 rcode = flash_erase (info, s_first[bank], s_last[bank]);
wdenk38a24a62002-09-18 12:49:44 +0000386 }
387 }
wdenk38a24a62002-09-18 12:49:44 +0000388 printf ("Erased %d sectors\n", erased);
wdenkbdccc4f2003-08-05 17:43:17 +0000389 } else if (rcode == 0) {
wdenk4b9206e2004-03-23 22:14:11 +0000390 puts ("Error: start and/or end address"
wdenk38a24a62002-09-18 12:49:44 +0000391 " not on sector boundary\n");
392 rcode = 1;
393 }
394 return rcode;
395}
396
wdenk38a24a62002-09-18 12:49:44 +0000397int do_protect (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
398{
399 flash_info_t *info;
400 ulong bank, addr_first, addr_last;
401 int i, p, n, sect_first, sect_last;
402 int rcode = 0;
wdenk5779d8d2003-12-06 23:55:10 +0000403#ifdef CONFIG_HAS_DATAFLASH
404 int status;
405#endif
wdenk38a24a62002-09-18 12:49:44 +0000406 if (argc < 3) {
407 printf ("Usage:\n%s\n", cmdtp->usage);
408 return 1;
409 }
410
wdenkbdccc4f2003-08-05 17:43:17 +0000411 if (strcmp(argv[1], "off") == 0) {
wdenk38a24a62002-09-18 12:49:44 +0000412 p = 0;
wdenkbdccc4f2003-08-05 17:43:17 +0000413 } else if (strcmp(argv[1], "on") == 0) {
wdenk38a24a62002-09-18 12:49:44 +0000414 p = 1;
wdenkbdccc4f2003-08-05 17:43:17 +0000415 } else {
wdenk38a24a62002-09-18 12:49:44 +0000416 printf ("Usage:\n%s\n", cmdtp->usage);
417 return 1;
418 }
419
wdenk5779d8d2003-12-06 23:55:10 +0000420#ifdef CONFIG_HAS_DATAFLASH
421 if ((strcmp(argv[2], "all") != 0) && (strcmp(argv[2], "bank") != 0)) {
422 addr_first = simple_strtoul(argv[2], NULL, 16);
423 addr_last = simple_strtoul(argv[3], NULL, 16);
424
425 if (addr_dataflash(addr_first) && addr_dataflash(addr_last)) {
426 status = dataflash_real_protect(p,addr_first,addr_last);
427 if (status < 0){
wdenk4b9206e2004-03-23 22:14:11 +0000428 puts ("Bad DataFlash sector specification\n");
wdenkd4ca31c2004-01-02 14:00:00 +0000429 return 1;
430 }
431 printf("%sProtect %d DataFlash Sectors\n",
432 p ? "" : "Un-", status);
wdenk5779d8d2003-12-06 23:55:10 +0000433 return 0;
434 }
435 }
436#endif
wdenkd4ca31c2004-01-02 14:00:00 +0000437
wdenk38a24a62002-09-18 12:49:44 +0000438 if (strcmp(argv[2], "all") == 0) {
439 for (bank=1; bank<=CFG_MAX_FLASH_BANKS; ++bank) {
440 info = &flash_info[bank-1];
441 if (info->flash_id == FLASH_UNKNOWN) {
442 continue;
443 }
444 printf ("%sProtect Flash Bank # %ld\n",
445 p ? "" : "Un-", bank);
446
447 for (i=0; i<info->sector_count; ++i) {
448#if defined(CFG_FLASH_PROTECTION)
449 if (flash_real_protect(info, i, p))
450 rcode = 1;
451 putc ('.');
452#else
453 info->protect[i] = p;
454#endif /* CFG_FLASH_PROTECTION */
455 }
456 }
457
458#if defined(CFG_FLASH_PROTECTION)
459 if (!rcode) puts (" done\n");
460#endif /* CFG_FLASH_PROTECTION */
461
462 return rcode;
463 }
464
465 if ((n = abbrev_spec(argv[2], &info, &sect_first, &sect_last)) != 0) {
466 if (n < 0) {
wdenk4b9206e2004-03-23 22:14:11 +0000467 puts ("Bad sector specification\n");
wdenk38a24a62002-09-18 12:49:44 +0000468 return 1;
469 }
470 printf("%sProtect Flash Sectors %d-%d in Bank # %d\n",
471 p ? "" : "Un-", sect_first, sect_last,
472 (info-flash_info)+1);
473 for (i = sect_first; i <= sect_last; i++) {
474#if defined(CFG_FLASH_PROTECTION)
475 if (flash_real_protect(info, i, p))
476 rcode = 1;
477 putc ('.');
478#else
479 info->protect[i] = p;
480#endif /* CFG_FLASH_PROTECTION */
481 }
482
483#if defined(CFG_FLASH_PROTECTION)
484 if (!rcode) puts (" done\n");
485#endif /* CFG_FLASH_PROTECTION */
486
487 return rcode;
488 }
489
490 if (argc != 4) {
491 printf ("Usage:\n%s\n", cmdtp->usage);
492 return 1;
493 }
494
495 if (strcmp(argv[2], "bank") == 0) {
496 bank = simple_strtoul(argv[3], NULL, 16);
497 if ((bank < 1) || (bank > CFG_MAX_FLASH_BANKS)) {
498 printf ("Only FLASH Banks # 1 ... # %d supported\n",
499 CFG_MAX_FLASH_BANKS);
500 return 1;
501 }
502 printf ("%sProtect Flash Bank # %ld\n",
503 p ? "" : "Un-", bank);
504 info = &flash_info[bank-1];
505
506 if (info->flash_id == FLASH_UNKNOWN) {
wdenk4b9206e2004-03-23 22:14:11 +0000507 puts ("missing or unknown FLASH type\n");
wdenk38a24a62002-09-18 12:49:44 +0000508 return 1;
509 }
510 for (i=0; i<info->sector_count; ++i) {
511#if defined(CFG_FLASH_PROTECTION)
512 if (flash_real_protect(info, i, p))
513 rcode = 1;
514 putc ('.');
515#else
516 info->protect[i] = p;
517#endif /* CFG_FLASH_PROTECTION */
518 }
519
520#if defined(CFG_FLASH_PROTECTION)
521 if (!rcode) puts (" done\n");
522#endif /* CFG_FLASH_PROTECTION */
523
524 return rcode;
525 }
526
Wolfgang Denkf5301872005-07-21 11:45:50 +0200527 if (addr_spec(argv[2], argv[3], &addr_first, &addr_last) < 0){
528 printf("Bad address format\n");
529 return 1;
530 }
wdenk38a24a62002-09-18 12:49:44 +0000531
532 if (addr_first >= addr_last) {
533 printf ("Usage:\n%s\n", cmdtp->usage);
534 return 1;
535 }
536 rcode = flash_sect_protect (p, addr_first, addr_last);
537 return rcode;
538}
539
540
541int flash_sect_protect (int p, ulong addr_first, ulong addr_last)
542{
543 flash_info_t *info;
544 ulong bank;
wdenkbdccc4f2003-08-05 17:43:17 +0000545 int s_first[CFG_MAX_FLASH_BANKS], s_last[CFG_MAX_FLASH_BANKS];
wdenk38a24a62002-09-18 12:49:44 +0000546 int protected, i;
wdenkbdccc4f2003-08-05 17:43:17 +0000547 int planned;
548 int rcode;
549
550 rcode = flash_fill_sect_ranges( addr_first, addr_last, s_first, s_last, &planned );
wdenk38a24a62002-09-18 12:49:44 +0000551
552 protected = 0;
553
wdenkbdccc4f2003-08-05 17:43:17 +0000554 if (planned && (rcode == 0)) {
555 for (bank=0,info=&flash_info[0]; bank < CFG_MAX_FLASH_BANKS; ++bank, ++info) {
556 if (info->flash_id == FLASH_UNKNOWN) {
wdenk38a24a62002-09-18 12:49:44 +0000557 continue;
wdenkbdccc4f2003-08-05 17:43:17 +0000558 }
wdenk38a24a62002-09-18 12:49:44 +0000559
wdenkbdccc4f2003-08-05 17:43:17 +0000560 if (s_first[bank]>=0 && s_first[bank]<=s_last[bank]) {
stroeseabcac872003-12-09 14:58:22 +0000561 debug ("%sProtecting sectors %d..%d in bank %ld\n",
562 p ? "" : "Un-",
wdenkbdccc4f2003-08-05 17:43:17 +0000563 s_first[bank], s_last[bank], bank+1);
564 protected += s_last[bank] - s_first[bank] + 1;
565 for (i=s_first[bank]; i<=s_last[bank]; ++i) {
wdenk38a24a62002-09-18 12:49:44 +0000566#if defined(CFG_FLASH_PROTECTION)
wdenkbdccc4f2003-08-05 17:43:17 +0000567 if (flash_real_protect(info, i, p))
568 rcode = 1;
569 putc ('.');
wdenk38a24a62002-09-18 12:49:44 +0000570#else
wdenkbdccc4f2003-08-05 17:43:17 +0000571 info->protect[i] = p;
wdenk38a24a62002-09-18 12:49:44 +0000572#endif /* CFG_FLASH_PROTECTION */
wdenkbdccc4f2003-08-05 17:43:17 +0000573 }
wdenk38a24a62002-09-18 12:49:44 +0000574 }
wdenk38a24a62002-09-18 12:49:44 +0000575#if defined(CFG_FLASH_PROTECTION)
wdenkbdccc4f2003-08-05 17:43:17 +0000576 if (!rcode) putc ('\n');
wdenk38a24a62002-09-18 12:49:44 +0000577#endif /* CFG_FLASH_PROTECTION */
wdenkbdccc4f2003-08-05 17:43:17 +0000578 }
wdenk38a24a62002-09-18 12:49:44 +0000579
wdenk38a24a62002-09-18 12:49:44 +0000580 printf ("%sProtected %d sectors\n",
581 p ? "" : "Un-", protected);
wdenkbdccc4f2003-08-05 17:43:17 +0000582 } else if (rcode == 0) {
wdenk4b9206e2004-03-23 22:14:11 +0000583 puts ("Error: start and/or end address"
wdenk38a24a62002-09-18 12:49:44 +0000584 " not on sector boundary\n");
585 rcode = 1;
586 }
587 return rcode;
588}
589
wdenk8bde7f72003-06-27 21:31:46 +0000590
591/**************************************************/
592
wdenk0d498392003-07-01 21:06:45 +0000593U_BOOT_CMD(
594 flinfo, 2, 1, do_flinfo,
wdenk8bde7f72003-06-27 21:31:46 +0000595 "flinfo - print FLASH memory information\n",
596 "\n - print information for all FLASH memory banks\n"
597 "flinfo N\n - print information for FLASH memory bank # N\n"
598);
599
wdenk0d498392003-07-01 21:06:45 +0000600U_BOOT_CMD(
601 erase, 3, 1, do_flerase,
wdenk8bde7f72003-06-27 21:31:46 +0000602 "erase - erase FLASH memory\n",
603 "start end\n"
604 " - erase FLASH from addr 'start' to addr 'end'\n"
Wolfgang Denkf5301872005-07-21 11:45:50 +0200605 "erase start +len\n"
606 " - erase FLASH from addr 'start' to the end of sect "
607 "w/addr 'start'+'len'-1\n"
wdenk8bde7f72003-06-27 21:31:46 +0000608 "erase N:SF[-SL]\n - erase sectors SF-SL in FLASH bank # N\n"
609 "erase bank N\n - erase FLASH bank # N\n"
610 "erase all\n - erase all FLASH banks\n"
611);
612
wdenk0d498392003-07-01 21:06:45 +0000613U_BOOT_CMD(
614 protect, 4, 1, do_protect,
wdenk8bde7f72003-06-27 21:31:46 +0000615 "protect - enable or disable FLASH write protection\n",
616 "on start end\n"
617 " - protect FLASH from addr 'start' to addr 'end'\n"
Wolfgang Denkf5301872005-07-21 11:45:50 +0200618 "protect on start +len\n"
619 " - protect FLASH from addr 'start' to end of sect "
620 "w/addr 'start'+'len'-1\n"
wdenk8bde7f72003-06-27 21:31:46 +0000621 "protect on N:SF[-SL]\n"
622 " - protect sectors SF-SL in FLASH bank # N\n"
623 "protect on bank N\n - protect FLASH bank # N\n"
624 "protect on all\n - protect all FLASH banks\n"
625 "protect off start end\n"
626 " - make FLASH from addr 'start' to addr 'end' writable\n"
Wolfgang Denkf5301872005-07-21 11:45:50 +0200627 "protect off start +len\n"
628 " - make FLASH from addr 'start' to end of sect "
629 "w/addr 'start'+'len'-1 wrtable\n"
wdenk8bde7f72003-06-27 21:31:46 +0000630 "protect off N:SF[-SL]\n"
631 " - make sectors SF-SL writable in FLASH bank # N\n"
632 "protect off bank N\n - make FLASH bank # N writable\n"
633 "protect off all\n - make all FLASH banks writable\n"
634);
635
wdenk38a24a62002-09-18 12:49:44 +0000636#endif /* CFG_CMD_FLASH */