]> git.sur5r.net Git - openocd/blob - src/flash/nor/tcl.c
flash: -Wshadow warning fix
[openocd] / src / flash / nor / tcl.c
1 /***************************************************************************
2  *   Copyright (C) 2005 by Dominic Rath <Dominic.Rath@gmx.de>              *
3  *   Copyright (C) 2007,2008 Ã˜yvind Harboe <oyvind.harboe@zylin.com>       *
4  *   Copyright (C) 2008 by Spencer Oliver <spen@spen-soft.co.uk>           *
5  *   Copyright (C) 2009 Zachary T Welch <zw@superlucidity.net>             *
6  *                                                                         *
7  *   This program is free software; you can redistribute it and/or modify  *
8  *   it under the terms of the GNU General Public License as published by  *
9  *   the Free Software Foundation; either version 2 of the License, or     *
10  *   (at your option) any later version.                                   *
11  *                                                                         *
12  *   This program is distributed in the hope that it will be useful,       *
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
15  *   GNU General Public License for more details.                          *
16  *                                                                         *
17  *   You should have received a copy of the GNU General Public License     *
18  *   along with this program; if not, write to the                         *
19  *   Free Software Foundation, Inc.,                                       *
20  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
21  ***************************************************************************/
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25 #include "imp.h"
26 #include <helper/time_support.h>
27 #include <target/image.h>
28
29 /**
30  * @file
31  * Implements Tcl commands used to access NOR flash facilities.
32  */
33
34 COMMAND_HELPER(flash_command_get_bank, unsigned name_index,
35                 struct flash_bank **bank)
36 {
37         const char *name = CMD_ARGV[name_index];
38         int retval = get_flash_bank_by_name(name, bank);
39         if (retval != ERROR_OK)
40                 return retval;
41         if (*bank)
42                 return ERROR_OK;
43
44         unsigned bank_num;
45         COMMAND_PARSE_NUMBER(uint, name, bank_num);
46
47         return get_flash_bank_by_num(bank_num, bank);
48 }
49
50
51 COMMAND_HANDLER(handle_flash_info_command)
52 {
53         struct flash_bank *p;
54         int j = 0;
55         int retval;
56
57         if (CMD_ARGC != 1)
58                 return ERROR_COMMAND_SYNTAX_ERROR;
59
60         retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &p);
61         if (retval != ERROR_OK)
62                 return retval;
63
64         if (p != NULL)
65         {
66                 char buf[1024];
67
68                 /* attempt auto probe */
69                 if ((retval = p->driver->auto_probe(p)) != ERROR_OK)
70                         return retval;
71
72                 /* We must query the hardware to avoid printing stale information! */
73                 retval = p->driver->protect_check(p);
74                 if (retval != ERROR_OK)
75                         return retval;
76
77                 command_print(CMD_CTX,
78                               "#%" PRIu32 " : %s at 0x%8.8" PRIx32 ", size 0x%8.8" PRIx32 ", buswidth %i, chipwidth %i",
79                               p->bank_number,
80                               p->driver->name,
81                               p->base,
82                               p->size,
83                               p->bus_width,
84                               p->chip_width);
85                 for (j = 0; j < p->num_sectors; j++)
86                 {
87                         char *protect_state;
88
89                         if (p->sectors[j].is_protected == 0)
90                                 protect_state = "not protected";
91                         else if (p->sectors[j].is_protected == 1)
92                                 protect_state = "protected";
93                         else
94                                 protect_state = "protection state unknown";
95
96                         command_print(CMD_CTX,
97                                       "\t#%3i: 0x%8.8" PRIx32 " (0x%" PRIx32 " %" PRIi32 "kB) %s",
98                                       j,
99                                       p->sectors[j].offset,
100                                       p->sectors[j].size,
101                                       p->sectors[j].size >> 10,
102                                       protect_state);
103                 }
104
105                 *buf = '\0'; /* initialize buffer, otherwise it migh contain garbage if driver function fails */
106                 retval = p->driver->info(p, buf, sizeof(buf));
107                 command_print(CMD_CTX, "%s", buf);
108                 if (retval != ERROR_OK)
109                         LOG_ERROR("error retrieving flash info (%d)", retval);
110         }
111
112         return ERROR_OK;
113 }
114
115 COMMAND_HANDLER(handle_flash_probe_command)
116 {
117         struct flash_bank *p;
118         int retval;
119
120         if (CMD_ARGC != 1)
121         {
122                 return ERROR_COMMAND_SYNTAX_ERROR;
123         }
124
125         retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &p);
126         if (retval != ERROR_OK)
127                 return retval;
128
129         if (p)
130         {
131                 if ((retval = p->driver->probe(p)) == ERROR_OK)
132                 {
133                         command_print(CMD_CTX, "flash '%s' found at 0x%8.8" PRIx32, p->driver->name, p->base);
134                 }
135                 else if (retval == ERROR_FLASH_BANK_INVALID)
136                 {
137                         command_print(CMD_CTX, "probing failed for flash bank '#%s' at 0x%8.8" PRIx32,
138                                                   CMD_ARGV[0], p->base);
139                 }
140                 else
141                 {
142                         command_print(CMD_CTX, "unknown error when probing flash bank '#%s' at 0x%8.8" PRIx32,
143                                                   CMD_ARGV[0], p->base);
144                 }
145         }
146         else
147         {
148                 command_print(CMD_CTX, "flash bank '#%s' is out of bounds", CMD_ARGV[0]);
149         }
150
151         return ERROR_OK;
152 }
153
154 COMMAND_HANDLER(handle_flash_erase_check_command)
155 {
156         if (CMD_ARGC != 1)
157         {
158                 return ERROR_COMMAND_SYNTAX_ERROR;
159         }
160
161         struct flash_bank *p;
162         int retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &p);
163         if (ERROR_OK != retval)
164                 return retval;
165
166         int j;
167         if ((retval = p->driver->erase_check(p)) == ERROR_OK)
168         {
169                 command_print(CMD_CTX, "successfully checked erase state");
170         }
171         else
172         {
173                 command_print(CMD_CTX, "unknown error when checking erase state of flash bank #%s at 0x%8.8" PRIx32,
174                         CMD_ARGV[0], p->base);
175         }
176
177         for (j = 0; j < p->num_sectors; j++)
178         {
179                 char *erase_state;
180
181                 if (p->sectors[j].is_erased == 0)
182                         erase_state = "not erased";
183                 else if (p->sectors[j].is_erased == 1)
184                         erase_state = "erased";
185                 else
186                         erase_state = "erase state unknown";
187
188                 command_print(CMD_CTX,
189                               "\t#%3i: 0x%8.8" PRIx32 " (0x%" PRIx32 " %" PRIi32 "kB) %s",
190                               j,
191                               p->sectors[j].offset,
192                               p->sectors[j].size,
193                               p->sectors[j].size >> 10,
194                               erase_state);
195         }
196
197         return ERROR_OK;
198 }
199
200 COMMAND_HANDLER(handle_flash_erase_address_command)
201 {
202         struct flash_bank *p;
203         int retval = ERROR_OK;
204         uint32_t address;
205         uint32_t length;
206         bool do_pad = false;
207         bool do_unlock = false;
208         struct target *target = get_current_target(CMD_CTX);
209
210         while (CMD_ARGC >= 3)
211         {
212                 /* Optionally pad out the address range to block/sector
213                  * boundaries.  We can't know if there's data in that part
214                  * of the flash; only do padding if we're told to.
215                  */
216                 if (strcmp("pad", CMD_ARGV[0]) == 0)
217                 {
218                         do_pad = true;
219                 } else if (strcmp("unlock", CMD_ARGV[0]) == 0)
220                 {
221                         do_unlock = true;
222                 } else
223                 {
224                         return ERROR_COMMAND_SYNTAX_ERROR;
225                 }
226                 CMD_ARGC--;
227                 CMD_ARGV++;
228         }
229         if (CMD_ARGC != 2)
230         {
231                 return ERROR_COMMAND_SYNTAX_ERROR;
232         }
233
234         COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], address);
235         COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], length);
236
237         if (length <= 0)
238         {
239                 command_print(CMD_CTX, "Length must be >0");
240                 return ERROR_COMMAND_SYNTAX_ERROR;
241         }
242
243         retval = get_flash_bank_by_addr(target, address, true, &p);
244         if (retval != ERROR_OK)
245                 return retval;
246
247         /* We can't know if we did a resume + halt, in which case we no longer know the erased state */
248         flash_set_dirty();
249
250         struct duration bench;
251         duration_start(&bench);
252
253         if (do_unlock)
254         {
255                 retval = flash_unlock_address_range(target, address, length);
256         }
257
258         if (retval == ERROR_OK)
259         {
260                 retval = flash_erase_address_range(target, do_pad, address, length);
261         }
262
263         if ((ERROR_OK == retval) && (duration_measure(&bench) == ERROR_OK))
264         {
265                 command_print(CMD_CTX, "erased address 0x%8.8x (length %i)"
266                                 " in %fs (%0.3f KiB/s)", address, length,
267                                 duration_elapsed(&bench), duration_kbps(&bench, length));
268         }
269
270         return retval;
271 }
272
273 static int flash_check_sector_parameters(struct command_context *cmd_ctx,
274                 uint32_t first, uint32_t last, uint32_t num_sectors)
275 {
276         if (!(first <= last)) {
277                 command_print(cmd_ctx, "ERROR: "
278                                 "first sector must be <= last sector");
279                 return ERROR_FAIL;
280         }
281
282         if (!(last <= (num_sectors - 1))) {
283                 command_print(cmd_ctx, "ERROR: last sector must be <= %d",
284                                 (int) num_sectors - 1);
285                 return ERROR_FAIL;
286         }
287
288         return ERROR_OK;
289 }
290
291 COMMAND_HANDLER(handle_flash_erase_command)
292 {
293         if (CMD_ARGC != 3)
294                 return ERROR_COMMAND_SYNTAX_ERROR;
295
296         uint32_t first;
297         uint32_t last;
298
299         struct flash_bank *p;
300         int retval;
301
302         retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &p);
303         if (retval != ERROR_OK)
304                 return retval;
305
306         COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], first);
307         if (strcmp(CMD_ARGV[2], "last") == 0)
308                 last = p->num_sectors - 1;
309         else
310                 COMMAND_PARSE_NUMBER(u32, CMD_ARGV[2], last);
311
312         if ((retval = flash_check_sector_parameters(CMD_CTX,
313                         first, last, p->num_sectors)) != ERROR_OK)
314                 return retval;
315
316         struct duration bench;
317         duration_start(&bench);
318
319         retval = flash_driver_erase(p, first, last);
320
321         if ((ERROR_OK == retval) && (duration_measure(&bench) == ERROR_OK))
322         {
323                 command_print(CMD_CTX, "erased sectors %" PRIu32 " "
324                                 "through %" PRIu32" on flash bank %" PRIu32 " "
325                                 "in %fs", first, last, p->bank_number, duration_elapsed(&bench));
326         }
327
328         return ERROR_OK;
329 }
330
331 COMMAND_HANDLER(handle_flash_protect_command)
332 {
333         if (CMD_ARGC != 4)
334                 return ERROR_COMMAND_SYNTAX_ERROR;
335
336         uint32_t first;
337         uint32_t last;
338
339         struct flash_bank *p;
340         int retval;
341
342         retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &p);
343         if (retval != ERROR_OK)
344                 return retval;
345
346         COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], first);
347         if (strcmp(CMD_ARGV[2], "last") == 0)
348                 last = p->num_sectors - 1;
349         else
350                 COMMAND_PARSE_NUMBER(u32, CMD_ARGV[2], last);
351
352         bool set;
353         COMMAND_PARSE_ON_OFF(CMD_ARGV[3], set);
354
355         if ((retval = flash_check_sector_parameters(CMD_CTX,
356                         first, last, p->num_sectors)) != ERROR_OK)
357                 return retval;
358
359         retval = flash_driver_protect(p, set, first, last);
360         if (retval == ERROR_OK) {
361                 command_print(CMD_CTX, "%s protection for sectors %i "
362                                 "through %i on flash bank %" PRIu32 "",
363                         (set) ? "set" : "cleared", (int) first,
364                         (int) last, p->bank_number);
365         }
366
367         return ERROR_OK;
368 }
369
370 COMMAND_HANDLER(handle_flash_write_image_command)
371 {
372         struct target *target = get_current_target(CMD_CTX);
373
374         struct image image;
375         uint32_t written;
376
377         int retval;
378
379         if (CMD_ARGC < 1)
380         {
381                 return ERROR_COMMAND_SYNTAX_ERROR;
382         }
383
384         /* flash auto-erase is disabled by default*/
385         int auto_erase = 0;
386         bool auto_unlock = false;
387
388         for (;;)
389         {
390                 if (strcmp(CMD_ARGV[0], "erase") == 0)
391                 {
392                         auto_erase = 1;
393                         CMD_ARGV++;
394                         CMD_ARGC--;
395                         command_print(CMD_CTX, "auto erase enabled");
396                 } else if (strcmp(CMD_ARGV[0], "unlock") == 0)
397                 {
398                         auto_unlock = true;
399                         CMD_ARGV++;
400                         CMD_ARGC--;
401                         command_print(CMD_CTX, "auto unlock enabled");
402                 } else
403                 {
404                         break;
405                 }
406         }
407
408         if (CMD_ARGC < 1)
409         {
410                 return ERROR_COMMAND_SYNTAX_ERROR;
411         }
412
413         if (!target)
414         {
415                 LOG_ERROR("no target selected");
416                 return ERROR_FAIL;
417         }
418
419         struct duration bench;
420         duration_start(&bench);
421
422         if (CMD_ARGC >= 2)
423         {
424                 image.base_address_set = 1;
425                 COMMAND_PARSE_NUMBER(llong, CMD_ARGV[1], image.base_address);
426         }
427         else
428         {
429                 image.base_address_set = 0;
430                 image.base_address = 0x0;
431         }
432
433         image.start_address_set = 0;
434
435         retval = image_open(&image, CMD_ARGV[0], (CMD_ARGC == 3) ? CMD_ARGV[2] : NULL);
436         if (retval != ERROR_OK)
437         {
438                 return retval;
439         }
440
441         retval = flash_write_unlock(target, &image, &written, auto_erase, auto_unlock);
442         if (retval != ERROR_OK)
443         {
444                 image_close(&image);
445                 return retval;
446         }
447
448         if ((ERROR_OK == retval) && (duration_measure(&bench) == ERROR_OK))
449         {
450                 command_print(CMD_CTX, "wrote %" PRIu32 " bytes from file %s "
451                                 "in %fs (%0.3f KiB/s)", written, CMD_ARGV[0],
452                                 duration_elapsed(&bench), duration_kbps(&bench, written));
453         }
454
455         image_close(&image);
456
457         return retval;
458 }
459
460 COMMAND_HANDLER(handle_flash_fill_command)
461 {
462         int err = ERROR_OK;
463         uint32_t address;
464         uint32_t pattern;
465         uint32_t count;
466         uint32_t wrote = 0;
467         uint32_t cur_size = 0;
468         uint32_t chunk_count;
469         struct target *target = get_current_target(CMD_CTX);
470         unsigned i;
471         uint32_t wordsize;
472         int retval = ERROR_OK;
473
474         static size_t const chunksize = 1024;
475         uint8_t *chunk = malloc(chunksize);
476         if (chunk == NULL)
477                 return ERROR_FAIL;
478
479         uint8_t *readback = malloc(chunksize);
480         if (readback == NULL)
481         {
482                 free(chunk);
483                 return ERROR_FAIL;
484         }
485
486
487         if (CMD_ARGC != 3)
488         {
489                 retval = ERROR_COMMAND_SYNTAX_ERROR;
490                 goto done;
491         }
492
493
494         COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], address);
495         COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], pattern);
496         COMMAND_PARSE_NUMBER(u32, CMD_ARGV[2], count);
497
498         if (count == 0)
499                 goto done;
500
501         switch (CMD_NAME[4])
502         {
503         case 'w':
504                 wordsize = 4;
505                 break;
506         case 'h':
507                 wordsize = 2;
508                 break;
509         case 'b':
510                 wordsize = 1;
511                 break;
512         default:
513                 retval = ERROR_COMMAND_SYNTAX_ERROR;
514                 goto done;
515         }
516
517         chunk_count = MIN(count, (chunksize / wordsize));
518         switch (wordsize)
519         {
520         case 4:
521                 for (i = 0; i < chunk_count; i++)
522                 {
523                         target_buffer_set_u32(target, chunk + i * wordsize, pattern);
524                 }
525                 break;
526         case 2:
527                 for (i = 0; i < chunk_count; i++)
528                 {
529                         target_buffer_set_u16(target, chunk + i * wordsize, pattern);
530                 }
531                 break;
532         case 1:
533                 memset(chunk, pattern, chunk_count);
534                 break;
535         default:
536                 LOG_ERROR("BUG: can't happen");
537                 exit(-1);
538         }
539
540         struct duration bench;
541         duration_start(&bench);
542
543         for (wrote = 0; wrote < (count*wordsize); wrote += cur_size)
544         {
545                 struct flash_bank *bank;
546
547                 retval = get_flash_bank_by_addr(target, address, true, &bank );
548                 if (retval != ERROR_OK)
549                         goto done;
550
551                 cur_size = MIN((count * wordsize - wrote), chunksize);
552                 err = flash_driver_write(bank, chunk, address - bank->base + wrote, cur_size);
553                 if (err != ERROR_OK)
554                 {
555                         retval = err;
556                         goto done;
557                 }
558
559                 err = flash_driver_read(bank, readback, address - bank->base + wrote, cur_size);
560                 if (err != ERROR_OK)
561                 {
562                         retval = err;
563                         goto done;
564                 }
565
566                 for (i = 0; i < cur_size; i++)
567                 {
568                         if (readback[i]!=chunk[i])
569                         {
570                                 LOG_ERROR("Verification error address 0x%08" PRIx32 ", read back 0x%02x, expected 0x%02x",
571                                                   address + wrote + i, readback[i], chunk[i]);
572                                 retval = ERROR_FAIL;
573                                 goto done;
574                         }
575                 }
576         }
577
578         if ((retval == ERROR_OK) && (duration_measure(&bench) == ERROR_OK))
579         {
580                 command_print(CMD_CTX, "wrote %" PRIu32 " bytes to 0x%8.8" PRIx32
581                                 " in %fs (%0.3f KiB/s)", wrote, address,
582                                 duration_elapsed(&bench), duration_kbps(&bench, wrote));
583         }
584
585 done:
586         free(readback);
587         free(chunk);
588
589         return retval;
590 }
591
592 COMMAND_HANDLER(handle_flash_write_bank_command)
593 {
594         uint32_t offset;
595         uint8_t *buffer;
596         struct fileio fileio;
597
598         if (CMD_ARGC != 3)
599                 return ERROR_COMMAND_SYNTAX_ERROR;
600
601         struct duration bench;
602         duration_start(&bench);
603
604         struct flash_bank *p;
605         int retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &p);
606         if (ERROR_OK != retval)
607                 return retval;
608
609         COMMAND_PARSE_NUMBER(u32, CMD_ARGV[2], offset);
610
611         if (fileio_open(&fileio, CMD_ARGV[1], FILEIO_READ, FILEIO_BINARY) != ERROR_OK)
612         {
613                 return ERROR_OK;
614         }
615
616         buffer = malloc(fileio.size);
617         size_t buf_cnt;
618         if (fileio_read(&fileio, fileio.size, buffer, &buf_cnt) != ERROR_OK)
619         {
620                 free(buffer);
621                 fileio_close(&fileio);
622                 return ERROR_OK;
623         }
624
625         retval = flash_driver_write(p, buffer, offset, buf_cnt);
626
627         free(buffer);
628         buffer = NULL;
629
630         if ((ERROR_OK == retval) && (duration_measure(&bench) == ERROR_OK))
631         {
632                 command_print(CMD_CTX, "wrote %ld bytes from file %s to flash bank %u"
633                                 " at offset 0x%8.8" PRIx32 " in %fs (%0.3f KiB/s)",
634                                 (long)fileio.size, CMD_ARGV[1], p->bank_number, offset,
635                                 duration_elapsed(&bench), duration_kbps(&bench, fileio.size));
636         }
637
638         fileio_close(&fileio);
639
640         return retval;
641 }
642
643 void flash_set_dirty(void)
644 {
645         struct flash_bank *c;
646         int i;
647
648         /* set all flash to require erasing */
649         for (c = flash_bank_list(); c; c = c->next)
650         {
651                 for (i = 0; i < c->num_sectors; i++)
652                 {
653                         c->sectors[i].is_erased = 0;
654                 }
655         }
656 }
657
658 static const struct command_registration flash_exec_command_handlers[] = {
659         {
660                 .name = "probe",
661                 .handler = handle_flash_probe_command,
662                 .mode = COMMAND_EXEC,
663                 .usage = "bank_id",
664                 .help = "Identify a flash bank.",
665         },
666         {
667                 .name = "info",
668                 .handler = handle_flash_info_command,
669                 .mode = COMMAND_EXEC,
670                 .usage = "bank_id",
671                 .help = "Print information about a flash bank.",
672         },
673         {
674                 .name = "erase_check",
675                 .handler = handle_flash_erase_check_command,
676                 .mode = COMMAND_EXEC,
677                 .usage = "bank_id",
678                 .help = "Check erase state of all blocks in a "
679                         "flash bank.",
680         },
681         {
682                 .name = "erase_sector",
683                 .handler = handle_flash_erase_command,
684                 .mode = COMMAND_EXEC,
685                 .usage = "bank_id first_sector_num last_sector_num",
686                 .help = "Erase a range of sectors in a flash bank.",
687         },
688         {
689                 .name = "erase_address",
690                 .handler = handle_flash_erase_address_command,
691                 .mode = COMMAND_EXEC,
692                 .usage = "['pad'] ['unlock'] address length",
693                 .help = "Erase flash sectors starting at address and "
694                         "continuing for length bytes.  If 'pad' is specified, "
695                         "data outside that range may also be erased: the start "
696                         "address may be decreased, and length increased, so "
697                         "that all of the first and last sectors are erased. "
698                         "If 'unlock' is specified, then the flash is unprotected "
699                         "before erasing.",
700
701         },
702         {
703                 .name = "fillw",
704                 .handler = handle_flash_fill_command,
705                 .mode = COMMAND_EXEC,
706                 .usage = "address value n",
707                 .help = "Fill n words with 32-bit value, starting at "
708                         "word address.  (No autoerase.)",
709         },
710         {
711                 .name = "fillh",
712                 .handler = handle_flash_fill_command,
713                 .mode = COMMAND_EXEC,
714                 .usage = "address value n",
715                 .help = "Fill n halfwords with 16-bit value, starting at "
716                         "word address.  (No autoerase.)",
717         },
718         {
719                 .name = "fillb",
720                 .handler = handle_flash_fill_command,
721                 .mode = COMMAND_EXEC,
722                 .usage = "address value n",
723                 .help = "Fill n bytes with 8-bit value, starting at "
724                         "word address.  (No autoerase.)",
725         },
726         {
727                 .name = "write_bank",
728                 .handler = handle_flash_write_bank_command,
729                 .mode = COMMAND_EXEC,
730                 .usage = "bank_id filename offset",
731                 .help = "Write binary data from file to flash bank, "
732                         "starting at specified byte offset from the "
733                         "beginning of the bank.",
734         },
735         {
736                 .name = "write_image",
737                 .handler = handle_flash_write_image_command,
738                 .mode = COMMAND_EXEC,
739                 .usage = "[erase] [unlock] filename [offset [file_type]]",
740                 .help = "Write an image to flash.  Optionally first unprotect "
741                         "and/or erase the region to be used.  Allow optional "
742                         "offset from beginning of bank (defaults to zero)",
743         },
744         {
745                 .name = "protect",
746                 .handler = handle_flash_protect_command,
747                 .mode = COMMAND_EXEC,
748                 .usage = "bank_id first_sector [last_sector|'last'] "
749                         "('on'|'off')",
750                 .help = "Turn protection on or off for a range of sectors "
751                         "in a given flash bank.",
752         },
753         COMMAND_REGISTRATION_DONE
754 };
755
756 static int flash_init_drivers(struct command_context *cmd_ctx)
757 {
758         if (!flash_bank_list())
759                 return ERROR_OK;
760
761         struct command *parent = command_find_in_context(cmd_ctx, "flash");
762         return register_commands(cmd_ctx, parent, flash_exec_command_handlers);
763 }
764
765
766 COMMAND_HANDLER(handle_flash_bank_command)
767 {
768         if (CMD_ARGC < 7)
769         {
770                 LOG_ERROR("usage: flash bank <name> <driver> "
771                                 "<base> <size> <chip_width> <bus_width> <target>");
772                 return ERROR_COMMAND_SYNTAX_ERROR;
773         }
774         // save bank name and advance arguments for compatibility
775         const char *bank_name = *CMD_ARGV++;
776         CMD_ARGC--;
777
778         struct target *target;
779         if ((target = get_target(CMD_ARGV[5])) == NULL)
780         {
781                 LOG_ERROR("target '%s' not defined", CMD_ARGV[5]);
782                 return ERROR_FAIL;
783         }
784
785         const char *driver_name = CMD_ARGV[0];
786         struct flash_driver *driver = flash_driver_find_by_name(driver_name);
787         if (NULL == driver)
788         {
789                 /* no matching flash driver found */
790                 LOG_ERROR("flash driver '%s' not found", driver_name);
791                 return ERROR_FAIL;
792         }
793
794         /* check the flash bank name is unique */
795         if (get_flash_bank_by_name_noprobe(bank_name) != NULL)
796         {
797                 /* flash bank name already exists  */
798                 LOG_ERROR("flash bank name '%s' already exists", bank_name);
799                 return ERROR_FAIL;
800         }
801
802         /* register flash specific commands */
803         if (NULL != driver->commands)
804         {
805                 int retval = register_commands(CMD_CTX, NULL,
806                                 driver->commands);
807                 if (ERROR_OK != retval)
808                 {
809                         LOG_ERROR("couldn't register '%s' commands",
810                                         driver_name);
811                         return ERROR_FAIL;
812                 }
813         }
814
815         struct flash_bank *c = malloc(sizeof(*c));
816         c->name = strdup(bank_name);
817         c->target = target;
818         c->driver = driver;
819         c->driver_priv = NULL;
820         COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], c->base);
821         COMMAND_PARSE_NUMBER(u32, CMD_ARGV[2], c->size);
822         COMMAND_PARSE_NUMBER(int, CMD_ARGV[3], c->chip_width);
823         COMMAND_PARSE_NUMBER(int, CMD_ARGV[4], c->bus_width);
824         c->num_sectors = 0;
825         c->sectors = NULL;
826         c->next = NULL;
827
828         int retval;
829         retval = CALL_COMMAND_HANDLER(driver->flash_bank_command, c);
830         if (ERROR_OK != retval)
831         {
832                 LOG_ERROR("'%s' driver rejected flash bank at 0x%8.8" PRIx32,
833                                 driver_name, c->base);
834                 free(c);
835                 return retval;
836         }
837
838         flash_bank_add(c);
839
840         return ERROR_OK;
841 }
842
843 COMMAND_HANDLER(handle_flash_banks_command)
844 {
845         if (CMD_ARGC != 0)
846                 return ERROR_INVALID_ARGUMENTS;
847
848         unsigned n = 0;
849         for (struct flash_bank *p = flash_bank_list(); p; p = p->next, n++)
850         {
851                 LOG_USER("#%" PRIu32 " : %s at 0x%8.8" PRIx32 ", size 0x%8.8" PRIx32 ", "
852                         "buswidth %u, chipwidth %u", p->bank_number,
853                         p->driver->name, p->base, p->size,
854                         p->bus_width, p->chip_width);
855         }
856         return ERROR_OK;
857 }
858
859 static int jim_flash_list(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
860 {
861         if (argc != 1)
862         {
863                 Jim_WrongNumArgs(interp, 1, argv,
864                                 "no arguments to 'flash list' command");
865                 return JIM_ERR;
866         }
867
868         Jim_Obj *list = Jim_NewListObj(interp, NULL, 0);
869
870         for (struct flash_bank *p = flash_bank_list(); p; p = p->next)
871         {
872                 Jim_Obj *elem = Jim_NewListObj(interp, NULL, 0);
873
874                 Jim_ListAppendElement(interp, elem, Jim_NewStringObj(interp, "name", -1));
875                 Jim_ListAppendElement(interp, elem, Jim_NewStringObj(interp, p->driver->name, -1));
876                 Jim_ListAppendElement(interp, elem, Jim_NewStringObj(interp, "base", -1));
877                 Jim_ListAppendElement(interp, elem, Jim_NewIntObj(interp, p->base));
878                 Jim_ListAppendElement(interp, elem, Jim_NewStringObj(interp, "size", -1));
879                 Jim_ListAppendElement(interp, elem, Jim_NewIntObj(interp, p->size));
880                 Jim_ListAppendElement(interp, elem, Jim_NewStringObj(interp, "bus_width", -1));
881                 Jim_ListAppendElement(interp, elem, Jim_NewIntObj(interp, p->bus_width));
882                 Jim_ListAppendElement(interp, elem, Jim_NewStringObj(interp, "chip_width", -1));
883                 Jim_ListAppendElement(interp, elem, Jim_NewIntObj(interp, p->chip_width));
884
885                 Jim_ListAppendElement(interp, list, elem);
886         }
887
888         Jim_SetResult(interp, list);
889
890         return JIM_OK;
891 }
892
893
894 COMMAND_HANDLER(handle_flash_init_command)
895 {
896         if (CMD_ARGC != 0)
897                 return ERROR_COMMAND_SYNTAX_ERROR;
898
899         static bool flash_initialized = false;
900         if (flash_initialized)
901         {
902                 LOG_INFO("'flash init' has already been called");
903                 return ERROR_OK;
904         }
905         flash_initialized = true;
906
907         LOG_DEBUG("Initializing flash devices...");
908         return flash_init_drivers(CMD_CTX);
909 }
910
911 static const struct command_registration flash_config_command_handlers[] = {
912         {
913                 .name = "bank",
914                 .handler = handle_flash_bank_command,
915                 .mode = COMMAND_CONFIG,
916                 .usage = "bank_id driver_name base_address size_bytes "
917                         "chip_width_bytes bus_width_bytes target "
918                         "[driver_options ...]",
919                 .help = "Define a new bank with the given name, "
920                         "using the specified NOR flash driver.",
921         },
922         {
923                 .name = "init",
924                 .mode = COMMAND_CONFIG,
925                 .handler = handle_flash_init_command,
926                 .help = "Initialize flash devices.",
927         },
928         {
929                 .name = "banks",
930                 .mode = COMMAND_ANY,
931                 .handler = handle_flash_banks_command,
932                 .help = "Display table with information about flash banks.",
933         },
934         {
935                 .name = "list",
936                 .mode = COMMAND_ANY,
937                 .jim_handler = jim_flash_list,
938                 .help = "Returns a list of details about the flash banks.",
939         },
940         COMMAND_REGISTRATION_DONE
941 };
942 static const struct command_registration flash_command_handlers[] = {
943         {
944                 .name = "flash",
945                 .mode = COMMAND_ANY,
946                 .help = "NOR flash command group",
947                 .chain = flash_config_command_handlers,
948         },
949         COMMAND_REGISTRATION_DONE
950 };
951
952 int flash_register_commands(struct command_context *cmd_ctx)
953 {
954         return register_commands(cmd_ctx, NULL, flash_command_handlers);
955 }