]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_flash.c
* Patch by Nicolas Lacressonnière, 12 Nov 2003:
[karo-tx-uboot.git] / common / cmd_flash.c
1 /*
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>
29
30
31 #ifdef CONFIG_HAS_DATAFLASH
32 #include <dataflash.h>
33 #endif
34
35 #if (CONFIG_COMMANDS & CFG_CMD_FLASH)
36
37 extern 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  */
58 static int
59 abbrev_spec (char *str, flash_info_t ** pinfo, int *psf, int *psl)
60 {
61         flash_info_t *fp;
62         int bank, first, last;
63         char *p, *ep;
64
65         if ((p = strchr (str, ':')) == NULL)
66                 return 0;
67         *p++ = '\0';
68
69         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;
74
75         str = p;
76         if ((p = strchr (str, '-')) != NULL)
77                 *p++ = '\0';
78
79         first = simple_strtoul (str, &ep, 10);
80         if (ep == str || *ep != '\0' || first >= fp->sector_count)
81                 return -1;
82
83         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;
97 }
98
99 static int
100 flash_fill_sect_ranges (ulong addr_first, ulong addr_last,
101                         int *s_first, int *s_last,
102                         int *s_count )
103 {
104         flash_info_t *info;
105         ulong bank;
106         int rcode = 0;
107
108         *s_count = 0;
109
110         for (bank=0; bank < CFG_MAX_FLASH_BANKS; ++bank) {
111                 s_first[bank] = -1;     /* first sector to erase        */
112                 s_last [bank] = -1;     /* last  sector to erase        */
113         }
114
115         for (bank=0,info=&flash_info[0];
116              (bank < CFG_MAX_FLASH_BANKS) && (addr_first <= addr_last);
117              ++bank, ++info) {
118                 ulong b_end;
119                 int sect;
120                 short s_end;
121
122                 if (info->flash_id == FLASH_UNKNOWN) {
123                         continue;
124                 }
125
126                 b_end = info->start[0] + info->size - 1;        /* bank end addr */
127                 s_end = info->sector_count - 1;                 /* last sector   */
128
129
130                 for (sect=0; sect < info->sector_count; ++sect) {
131                         ulong end;      /* last address in current sect */
132
133                         end = (sect == s_end) ? b_end : info->start[sect + 1] - 1;
134
135                         if (addr_first > end)
136                                 continue;
137                         if (addr_last < info->start[sect])
138                                 continue;
139
140                         if (addr_first == info->start[sect]) {
141                                 s_first[bank] = sect;
142                         }
143                         if (addr_last  == end) {
144                                 s_last[bank]  = sect;
145                         }
146                 }
147                 if (s_first[bank] >= 0) {
148                         if (s_last[bank] < 0) {
149                                 if (addr_last > b_end) {
150                                         s_last[bank] = s_end;
151                                 } else {
152                                         printf ("Error: end address"
153                                                 " not on sector boundary\n");
154                                         rcode = 1;
155                                         break;
156                                 }
157                         }
158                         if (s_last[bank] < s_first[bank]) {
159                                 printf ("Error: end sector"
160                                         " precedes start sector\n");
161                                 rcode = 1;
162                                 break;
163                         }
164                         sect = s_last[bank];
165                         addr_first = (sect == s_end) ? b_end + 1: info->start[sect + 1];
166                         (*s_count) += s_last[bank] - s_first[bank] + 1;
167                 } else if (s_last[bank] >= 0) {
168                         printf("Error: cannot span across banks when they are"
169                                " mapped in reverse order\n");
170                         rcode = 1;
171                         break;
172                 }
173         }
174
175         return rcode;
176 }
177
178 int do_flinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
179 {
180         ulong bank;
181
182 #ifdef CONFIG_HAS_DATAFLASH
183         dataflash_print_info();
184 #endif
185
186         if (argc == 1) {        /* print info for all FLASH banks */
187                 for (bank=0; bank <CFG_MAX_FLASH_BANKS; ++bank) {
188                         printf ("\nBank # %ld: ", bank+1);
189
190                         flash_print_info (&flash_info[bank]);
191                 }
192                 return 0;
193         }
194
195         bank = simple_strtoul(argv[1], NULL, 16);
196         if ((bank < 1) || (bank > CFG_MAX_FLASH_BANKS)) {
197                 printf ("Only FLASH Banks # 1 ... # %d supported\n",
198                         CFG_MAX_FLASH_BANKS);
199                 return 1;
200         }
201         printf ("\nBank # %ld: ", bank);
202         flash_print_info (&flash_info[bank-1]);
203         return 0;
204 }
205 int do_flerase (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
206 {
207         flash_info_t *info;
208         ulong bank, addr_first, addr_last;
209         int n, sect_first, sect_last;
210         int rcode = 0;
211
212         if (argc < 2) {
213                 printf ("Usage:\n%s\n", cmdtp->usage);
214                 return 1;
215         }
216
217         if (strcmp(argv[1], "all") == 0) {
218                 for (bank=1; bank<=CFG_MAX_FLASH_BANKS; ++bank) {
219                         printf ("Erase Flash Bank # %ld ", bank);
220                         info = &flash_info[bank-1];
221                         rcode = flash_erase (info, 0, info->sector_count-1);
222                 }
223                 return rcode;
224         }
225
226         if ((n = abbrev_spec(argv[1], &info, &sect_first, &sect_last)) != 0) {
227                 if (n < 0) {
228                         printf("Bad sector specification\n");
229                         return 1;
230                 }
231                 printf ("Erase Flash Sectors %d-%d in Bank # %d ",
232                         sect_first, sect_last, (info-flash_info)+1);
233                 rcode = flash_erase(info, sect_first, sect_last);
234                 return rcode;
235         }
236
237         if (argc != 3) {
238                 printf ("Usage:\n%s\n", cmdtp->usage);
239                 return 1;
240         }
241
242         if (strcmp(argv[1], "bank") == 0) {
243                 bank = simple_strtoul(argv[2], NULL, 16);
244                 if ((bank < 1) || (bank > CFG_MAX_FLASH_BANKS)) {
245                         printf ("Only FLASH Banks # 1 ... # %d supported\n",
246                                 CFG_MAX_FLASH_BANKS);
247                         return 1;
248                 }
249                 printf ("Erase Flash Bank # %ld ", bank);
250                 info = &flash_info[bank-1];
251                 rcode = flash_erase (info, 0, info->sector_count-1);
252                 return rcode;
253         }
254
255         addr_first = simple_strtoul(argv[1], NULL, 16);
256         addr_last  = simple_strtoul(argv[2], NULL, 16);
257
258         if (addr_first >= addr_last) {
259                 printf ("Usage:\n%s\n", cmdtp->usage);
260                 return 1;
261         }
262
263         rcode = flash_sect_erase(addr_first, addr_last);
264         return rcode;
265 }
266
267 int flash_sect_erase (ulong addr_first, ulong addr_last)
268 {
269         flash_info_t *info;
270         ulong bank;
271         int s_first[CFG_MAX_FLASH_BANKS], s_last[CFG_MAX_FLASH_BANKS];
272         int erased = 0;
273         int planned;
274         int rcode = 0;
275
276         rcode = flash_fill_sect_ranges (addr_first, addr_last,
277                                         s_first, s_last, &planned );
278
279         if (planned && (rcode == 0)) {
280                 for (bank=0,info=&flash_info[0];
281                      (bank < CFG_MAX_FLASH_BANKS) && (rcode == 0);
282                      ++bank, ++info) {
283                         if (s_first[bank]>=0) {
284                                 erased += s_last[bank] - s_first[bank] + 1;
285                                 debug ("Erase Flash from 0x%08lx to 0x%08lx "
286                                         "in Bank # %ld ",
287                                         info->start[s_first[bank]],
288                                         (s_last[bank] == info->sector_count) ?
289                                                 info->start[0] + info->size - 1:
290                                                 info->start[s_last[bank]+1] - 1,
291                                         bank+1);
292                                 rcode = flash_erase (info, s_first[bank], s_last[bank]);
293                         }
294                 }
295                 printf ("Erased %d sectors\n", erased);
296         } else if (rcode == 0) {
297                 printf ("Error: start and/or end address"
298                         " not on sector boundary\n");
299                 rcode = 1;
300         }
301         return rcode;
302 }
303
304 int do_protect (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
305 {
306         flash_info_t *info;
307         ulong bank, addr_first, addr_last;
308         int i, p, n, sect_first, sect_last;
309         int rcode = 0;
310 #ifdef CONFIG_HAS_DATAFLASH
311         int status;
312 #endif
313         if (argc < 3) {
314                 printf ("Usage:\n%s\n", cmdtp->usage);
315                 return 1;
316         }
317
318         if (strcmp(argv[1], "off") == 0) {
319                 p = 0;
320         } else if (strcmp(argv[1], "on") == 0) {
321                 p = 1;
322         } else {
323                 printf ("Usage:\n%s\n", cmdtp->usage);
324                 return 1;
325         }
326
327 #ifdef CONFIG_HAS_DATAFLASH
328         if ((strcmp(argv[2], "all") != 0) && (strcmp(argv[2], "bank") != 0)) {
329                 addr_first = simple_strtoul(argv[2], NULL, 16);
330                 addr_last  = simple_strtoul(argv[3], NULL, 16);
331
332                 if (addr_dataflash(addr_first) && addr_dataflash(addr_last)) {
333                         status = dataflash_real_protect(p,addr_first,addr_last);
334                         if (status < 0){
335                                 printf("Bad DataFlash sector specification\n");
336                                 return 1;
337                         }
338                         printf("%sProtect %d DataFlash Sectors\n",
339                                 p ? "" : "Un-", status);
340                         return 0;
341                 }
342         }
343 #endif
344         
345         if (strcmp(argv[2], "all") == 0) {
346                 for (bank=1; bank<=CFG_MAX_FLASH_BANKS; ++bank) {
347                         info = &flash_info[bank-1];
348                         if (info->flash_id == FLASH_UNKNOWN) {
349                                 continue;
350                         }
351                         printf ("%sProtect Flash Bank # %ld\n",
352                                 p ? "" : "Un-", bank);
353
354                         for (i=0; i<info->sector_count; ++i) {
355 #if defined(CFG_FLASH_PROTECTION)
356                                 if (flash_real_protect(info, i, p))
357                                         rcode = 1;
358                                 putc ('.');
359 #else
360                                 info->protect[i] = p;
361 #endif  /* CFG_FLASH_PROTECTION */
362                         }
363                 }
364
365 #if defined(CFG_FLASH_PROTECTION)
366                 if (!rcode) puts (" done\n");
367 #endif  /* CFG_FLASH_PROTECTION */
368
369                 return rcode;
370         }
371
372         if ((n = abbrev_spec(argv[2], &info, &sect_first, &sect_last)) != 0) {
373                 if (n < 0) {
374                         printf("Bad sector specification\n");
375                         return 1;
376                 }
377                 printf("%sProtect Flash Sectors %d-%d in Bank # %d\n",
378                         p ? "" : "Un-", sect_first, sect_last,
379                         (info-flash_info)+1);
380                 for (i = sect_first; i <= sect_last; i++) {
381 #if defined(CFG_FLASH_PROTECTION)
382                         if (flash_real_protect(info, i, p))
383                                 rcode =  1;
384                         putc ('.');
385 #else
386                         info->protect[i] = p;
387 #endif  /* CFG_FLASH_PROTECTION */
388                 }
389
390 #if defined(CFG_FLASH_PROTECTION)
391                 if (!rcode) puts (" done\n");
392 #endif  /* CFG_FLASH_PROTECTION */
393
394                 return rcode;
395         }
396
397         if (argc != 4) {
398                 printf ("Usage:\n%s\n", cmdtp->usage);
399                 return 1;
400         }
401
402         if (strcmp(argv[2], "bank") == 0) {
403                 bank = simple_strtoul(argv[3], NULL, 16);
404                 if ((bank < 1) || (bank > CFG_MAX_FLASH_BANKS)) {
405                         printf ("Only FLASH Banks # 1 ... # %d supported\n",
406                                 CFG_MAX_FLASH_BANKS);
407                         return 1;
408                 }
409                 printf ("%sProtect Flash Bank # %ld\n",
410                         p ? "" : "Un-", bank);
411                 info = &flash_info[bank-1];
412
413                 if (info->flash_id == FLASH_UNKNOWN) {
414                         printf ("missing or unknown FLASH type\n");
415                         return 1;
416                 }
417                 for (i=0; i<info->sector_count; ++i) {
418 #if defined(CFG_FLASH_PROTECTION)
419                         if (flash_real_protect(info, i, p))
420                                 rcode =  1;
421                         putc ('.');
422 #else
423                         info->protect[i] = p;
424 #endif  /* CFG_FLASH_PROTECTION */
425                 }
426
427 #if defined(CFG_FLASH_PROTECTION)
428                 if (!rcode) puts (" done\n");
429 #endif  /* CFG_FLASH_PROTECTION */
430
431                 return rcode;
432         }
433
434         addr_first = simple_strtoul(argv[2], NULL, 16);
435         addr_last  = simple_strtoul(argv[3], NULL, 16);
436
437         if (addr_first >= addr_last) {
438                 printf ("Usage:\n%s\n", cmdtp->usage);
439                 return 1;
440         }
441         rcode = flash_sect_protect (p, addr_first, addr_last);
442         return rcode;
443 }
444
445
446 int flash_sect_protect (int p, ulong addr_first, ulong addr_last)
447 {
448         flash_info_t *info;
449         ulong bank;
450         int s_first[CFG_MAX_FLASH_BANKS], s_last[CFG_MAX_FLASH_BANKS];
451         int protected, i;
452         int planned;
453         int rcode;
454
455         rcode = flash_fill_sect_ranges( addr_first, addr_last, s_first, s_last, &planned );
456
457         protected = 0;
458
459         if (planned && (rcode == 0)) {
460                 for (bank=0,info=&flash_info[0]; bank < CFG_MAX_FLASH_BANKS; ++bank, ++info) {
461                         if (info->flash_id == FLASH_UNKNOWN) {
462                                 continue;
463                         }
464
465                         if (s_first[bank]>=0 && s_first[bank]<=s_last[bank]) {
466                                 debug ("Protecting sectors %d..%d in bank %ld\n",
467                                         s_first[bank], s_last[bank], bank+1);
468                                 protected += s_last[bank] - s_first[bank] + 1;
469                                 for (i=s_first[bank]; i<=s_last[bank]; ++i) {
470 #if defined(CFG_FLASH_PROTECTION)
471                                         if (flash_real_protect(info, i, p))
472                                                 rcode = 1;
473                                         putc ('.');
474 #else
475                                         info->protect[i] = p;
476 #endif  /* CFG_FLASH_PROTECTION */
477                                 }
478                         }
479 #if defined(CFG_FLASH_PROTECTION)
480                         if (!rcode) putc ('\n');
481 #endif  /* CFG_FLASH_PROTECTION */
482                 }
483
484                 printf ("%sProtected %d sectors\n",
485                         p ? "" : "Un-", protected);
486         } else if (rcode == 0) {
487                 printf ("Error: start and/or end address"
488                         " not on sector boundary\n");
489                 rcode = 1;
490         }
491         return rcode;
492 }
493
494
495 /**************************************************/
496
497 U_BOOT_CMD(
498         flinfo,    2,    1,    do_flinfo,
499         "flinfo  - print FLASH memory information\n",
500         "\n    - print information for all FLASH memory banks\n"
501         "flinfo N\n    - print information for FLASH memory bank # N\n"
502 );
503
504 U_BOOT_CMD(
505         erase,   3,   1,  do_flerase,
506         "erase   - erase FLASH memory\n",
507         "start end\n"
508         "    - erase FLASH from addr 'start' to addr 'end'\n"
509         "erase N:SF[-SL]\n    - erase sectors SF-SL in FLASH bank # N\n"
510         "erase bank N\n    - erase FLASH bank # N\n"
511         "erase all\n    - erase all FLASH banks\n"
512 );
513
514 U_BOOT_CMD(
515         protect,  4,  1,   do_protect,
516         "protect - enable or disable FLASH write protection\n",
517         "on  start end\n"
518         "    - protect FLASH from addr 'start' to addr 'end'\n"
519         "protect on  N:SF[-SL]\n"
520         "    - protect sectors SF-SL in FLASH bank # N\n"
521         "protect on  bank N\n    - protect FLASH bank # N\n"
522         "protect on  all\n    - protect all FLASH banks\n"
523         "protect off start end\n"
524         "    - make FLASH from addr 'start' to addr 'end' writable\n"
525         "protect off N:SF[-SL]\n"
526         "    - make sectors SF-SL writable in FLASH bank # N\n"
527         "protect off bank N\n    - make FLASH bank # N writable\n"
528         "protect off all\n    - make all FLASH banks writable\n"
529 );
530
531 #endif  /* CFG_CMD_FLASH */