- added svn props
[openocd.git] / src / flash / flash.c
blob9bc0520d84ac06751129419fbe15bb427755eabf
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
24 #include "flash.h"
25 #include "command.h"
26 #include "target.h"
27 #include "time_support.h"
28 #include "fileio.h"
29 #include "image.h"
30 #include "log.h"
32 #include <string.h>
33 #include <unistd.h>
34 #include <stdlib.h>
35 #include <sys/types.h>
36 #include <sys/stat.h>
37 #include <errno.h>
38 #include <inttypes.h>
40 /* command handlers */
41 int handle_flash_bank_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
42 int handle_flash_banks_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
43 int handle_flash_info_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
44 int handle_flash_probe_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
45 int handle_flash_erase_check_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
46 int handle_flash_erase_address_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
47 int handle_flash_protect_check_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
48 int handle_flash_erase_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
49 int handle_flash_write_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
50 int handle_flash_write_bank_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
51 int handle_flash_write_image_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
52 int handle_flash_protect_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
53 int handle_flash_auto_erase_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
54 flash_bank_t *get_flash_bank_by_addr(target_t *target, u32 addr);
56 /* flash drivers
58 extern flash_driver_t lpc2000_flash;
59 extern flash_driver_t cfi_flash;
60 extern flash_driver_t at91sam7_flash;
61 extern flash_driver_t str7x_flash;
62 extern flash_driver_t str9x_flash;
63 extern flash_driver_t stellaris_flash;
64 extern flash_driver_t str9xpec_flash;
65 extern flash_driver_t stm32x_flash;
66 extern flash_driver_t tms470_flash;
67 extern flash_driver_t ecosflash_flash;
69 flash_driver_t *flash_drivers[] =
71 &lpc2000_flash,
72 &cfi_flash,
73 &at91sam7_flash,
74 &str7x_flash,
75 &str9x_flash,
76 &stellaris_flash,
77 &str9xpec_flash,
78 &stm32x_flash,
79 &tms470_flash,
80 &ecosflash_flash,
81 NULL,
84 flash_bank_t *flash_banks;
85 static command_t *flash_cmd;
86 static int auto_erase = 0;
88 /* wafer thin wrapper for invoking the flash driver */
89 static int flash_driver_write(struct flash_bank_s *bank, u8 *buffer, u32 offset, u32 count)
91 int retval=ERROR_OK;
92 if (bank->target->state != TARGET_HALTED)
94 ERROR("target not halted - aborting flash write");
95 retval=ERROR_TARGET_NOT_HALTED;
96 } else
98 retval=bank->driver->write(bank, buffer, offset, count);
100 if (retval!=ERROR_OK)
102 ERROR("Writing to flash bank at address 0x%08x at offset 0x%8.8x", bank->base, offset);
104 return retval;
107 static int flash_driver_erase(struct flash_bank_s *bank, int first, int last)
109 int retval=ERROR_OK;
110 if (bank->target->state != TARGET_HALTED)
112 ERROR("target not halted - aborting flash erase");
113 retval=ERROR_TARGET_NOT_HALTED;
114 } else if ((first < 0) || (last < first) || (last >= bank->num_sectors))
116 ERROR("invalid flash sector");
117 retval=ERROR_FLASH_SECTOR_INVALID;
118 } else
120 retval=bank->driver->erase(bank, first, last);
122 if (retval!=ERROR_OK)
124 ERROR("Failed erasing banks %d to %d", first, last);
126 return retval;
129 int flash_driver_protect(struct flash_bank_s *bank, int set, int first, int last)
131 int retval;
132 if (bank->target->state != TARGET_HALTED)
134 ERROR("target not halted - aborting flash erase");
135 retval=ERROR_TARGET_NOT_HALTED;
136 } else if ((first < 0) || (last < first) || (last >= bank->num_sectors))
138 ERROR("invalid flash sector");
139 retval=ERROR_FLASH_SECTOR_INVALID;
140 } else
142 retval=bank->driver->protect(bank, set, first, last);
144 if (retval!=ERROR_OK)
146 ERROR("Failed protecting banks %d to %d", first, last);
148 return retval;
152 int flash_register_commands(struct command_context_s *cmd_ctx)
154 flash_cmd = register_command(cmd_ctx, NULL, "flash", NULL, COMMAND_ANY, NULL);
156 register_command(cmd_ctx, flash_cmd, "bank", handle_flash_bank_command, COMMAND_CONFIG, "flash_bank <driver> <base> <size> <chip_width> <bus_width> <target> [driver_options ...]");
157 register_command(cmd_ctx, flash_cmd, "auto_erase", handle_flash_auto_erase_command, COMMAND_ANY,
158 "auto erase flash sectors <on|off>");
159 return ERROR_OK;
162 int flash_init_drivers(struct command_context_s *cmd_ctx)
164 if (flash_banks)
166 register_command(cmd_ctx, flash_cmd, "banks", handle_flash_banks_command, COMMAND_EXEC,
167 "list configured flash banks ");
168 register_command(cmd_ctx, flash_cmd, "info", handle_flash_info_command, COMMAND_EXEC,
169 "print info about flash bank <num>");
170 register_command(cmd_ctx, flash_cmd, "probe", handle_flash_probe_command, COMMAND_EXEC,
171 "identify flash bank <num>");
172 register_command(cmd_ctx, flash_cmd, "erase_check", handle_flash_erase_check_command, COMMAND_EXEC,
173 "check erase state of sectors in flash bank <num>");
174 register_command(cmd_ctx, flash_cmd, "protect_check", handle_flash_protect_check_command, COMMAND_EXEC,
175 "check protection state of sectors in flash bank <num>");
176 register_command(cmd_ctx, flash_cmd, "erase_sector", handle_flash_erase_command, COMMAND_EXEC,
177 "erase sectors at <bank> <first> <last>");
178 register_command(cmd_ctx, flash_cmd, "erase_address", handle_flash_erase_address_command, COMMAND_EXEC,
179 "erase address range <address> <length>");
180 register_command(cmd_ctx, flash_cmd, "write_bank", handle_flash_write_bank_command, COMMAND_EXEC,
181 "write binary data to <bank> <file> <offset>");
182 register_command(cmd_ctx, flash_cmd, "write_image", handle_flash_write_image_command, COMMAND_EXEC,
183 "write_image <file> [offset] [type]");
184 register_command(cmd_ctx, flash_cmd, "protect", handle_flash_protect_command, COMMAND_EXEC,
185 "set protection of sectors at <bank> <first> <last> <on|off>");
188 return ERROR_OK;
191 flash_bank_t *get_flash_bank_by_num_noprobe(int num)
193 flash_bank_t *p;
194 int i = 0;
196 for (p = flash_banks; p; p = p->next)
198 if (i++ == num)
200 return p;
203 ERROR("Flash bank %d does not exist", num);
204 return NULL;
207 flash_bank_t *get_flash_bank_by_num(int num)
209 flash_bank_t *p = get_flash_bank_by_num_noprobe(num);
210 int retval;
212 if (p == NULL)
213 return NULL;
215 retval = p->driver->auto_probe(p);
217 if (retval != ERROR_OK)
219 ERROR("auto_probe failed %d\n", retval);
220 return NULL;
222 return p;
225 int handle_flash_bank_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
227 int i;
228 int found = 0;
229 target_t *target;
231 if (argc < 6)
233 return ERROR_COMMAND_SYNTAX_ERROR;
236 if ((target = get_target_by_num(strtoul(args[5], NULL, 0))) == NULL)
238 ERROR("target %lu not defined", strtoul(args[5], NULL, 0));
239 return ERROR_OK;
242 for (i = 0; flash_drivers[i]; i++)
244 if (strcmp(args[0], flash_drivers[i]->name) == 0)
246 flash_bank_t *p, *c;
248 /* register flash specific commands */
249 if (flash_drivers[i]->register_commands(cmd_ctx) != ERROR_OK)
251 ERROR("couldn't register '%s' commands", args[0]);
252 exit(-1);
255 c = malloc(sizeof(flash_bank_t));
256 c->target = target;
257 c->driver = flash_drivers[i];
258 c->driver_priv = NULL;
259 c->base = strtoul(args[1], NULL, 0);
260 c->size = strtoul(args[2], NULL, 0);
261 c->chip_width = strtoul(args[3], NULL, 0);
262 c->bus_width = strtoul(args[4], NULL, 0);
263 c->num_sectors = 0;
264 c->sectors = NULL;
265 c->next = NULL;
267 if (flash_drivers[i]->flash_bank_command(cmd_ctx, cmd, args, argc, c) != ERROR_OK)
269 ERROR("'%s' driver rejected flash bank at 0x%8.8x", args[0], c->base);
270 free(c);
271 return ERROR_OK;
274 /* put flash bank in linked list */
275 if (flash_banks)
277 /* find last flash bank */
278 for (p = flash_banks; p && p->next; p = p->next);
279 if (p)
280 p->next = c;
282 else
284 flash_banks = c;
287 found = 1;
291 /* no matching flash driver found */
292 if (!found)
294 ERROR("flash driver '%s' not found", args[0]);
295 exit(-1);
298 return ERROR_OK;
301 int handle_flash_banks_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
303 flash_bank_t *p;
304 int i = 0;
306 if (!flash_banks)
308 command_print(cmd_ctx, "no flash banks configured");
309 return ERROR_OK;
312 for (p = flash_banks; p; p = p->next)
314 command_print(cmd_ctx, "#%i: %s at 0x%8.8x, size 0x%8.8x, buswidth %i, chipwidth %i",
315 i++, p->driver->name, p->base, p->size, p->bus_width, p->chip_width);
318 return ERROR_OK;
321 int handle_flash_info_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
323 flash_bank_t *p;
324 int i = 0;
325 int j = 0;
327 if (argc != 1)
329 return ERROR_COMMAND_SYNTAX_ERROR;
332 for (p = flash_banks; p; p = p->next, i++)
334 if (i == strtoul(args[0], NULL, 0))
336 char buf[1024];
338 /* attempt auto probe */
339 p->driver->auto_probe(p);
341 command_print(cmd_ctx, "#%i: %s at 0x%8.8x, size 0x%8.8x, buswidth %i, chipwidth %i",
342 i, p->driver->name, p->base, p->size, p->bus_width, p->chip_width);
343 for (j = 0; j < p->num_sectors; j++)
345 char *erase_state, *protect_state;
347 if (p->sectors[j].is_erased == 0)
348 erase_state = "not erased";
349 else if (p->sectors[j].is_erased == 1)
350 erase_state = "erased";
351 else
352 erase_state = "erase state unknown";
354 if (p->sectors[j].is_protected == 0)
355 protect_state = "not protected";
356 else if (p->sectors[j].is_protected == 1)
357 protect_state = "protected";
358 else
359 protect_state = "protection state unknown";
361 command_print(cmd_ctx, "\t#%i: 0x%8.8x (0x%x %ikB) %s, %s",
362 j, p->sectors[j].offset, p->sectors[j].size, p->sectors[j].size>>10,
363 erase_state, protect_state);
366 p->driver->info(p, buf, 1024);
367 command_print(cmd_ctx, "%s", buf);
371 return ERROR_OK;
374 int handle_flash_probe_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
376 flash_bank_t *p;
377 int retval;
379 if (argc != 1)
381 return ERROR_COMMAND_SYNTAX_ERROR;
384 p = get_flash_bank_by_num_noprobe(strtoul(args[0], NULL, 0));
385 if (p)
387 if ((retval = p->driver->probe(p)) == ERROR_OK)
389 command_print(cmd_ctx, "flash '%s' found at 0x%8.8x", p->driver->name, p->base);
391 else if (retval == ERROR_FLASH_BANK_INVALID)
393 command_print(cmd_ctx, "probing failed for flash bank '#%s' at 0x%8.8x",
394 args[0], p->base);
396 else
398 command_print(cmd_ctx, "unknown error when probing flash bank '#%s' at 0x%8.8x",
399 args[0], p->base);
402 else
404 command_print(cmd_ctx, "flash bank '#%s' is out of bounds", args[0]);
407 return ERROR_OK;
410 int handle_flash_erase_check_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
412 flash_bank_t *p;
413 int retval;
415 if (argc != 1)
417 return ERROR_COMMAND_SYNTAX_ERROR;
420 p = get_flash_bank_by_num(strtoul(args[0], NULL, 0));
421 if (p)
423 if ((retval = p->driver->erase_check(p)) == ERROR_OK)
425 command_print(cmd_ctx, "successfully checked erase state", p->driver->name, p->base);
427 else
429 command_print(cmd_ctx, "unknown error when checking erase state of flash bank #%s at 0x%8.8x",
430 args[0], p->base);
434 return ERROR_OK;
437 int handle_flash_erase_address_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
439 flash_bank_t *p;
440 int retval;
441 int address;
442 int length;
443 duration_t duration;
444 char *duration_text;
446 target_t *target = get_current_target(cmd_ctx);
448 if (argc != 2)
450 return ERROR_COMMAND_SYNTAX_ERROR;
453 address = strtoul(args[0], NULL, 0);
454 length = strtoul(args[1], NULL, 0);
455 if (length <= 0)
457 command_print(cmd_ctx, "Length must be >0");
458 return ERROR_COMMAND_SYNTAX_ERROR;
461 p = get_flash_bank_by_addr(target, address);
462 if (p == NULL)
464 return ERROR_COMMAND_SYNTAX_ERROR;
467 /* We can't know if we did a resume + halt, in which case we no longer know the erased state */
468 flash_set_dirty();
470 duration_start_measure(&duration);
472 if ((retval = flash_erase_address_range(target, address, length)) == ERROR_OK)
474 duration_stop_measure(&duration, &duration_text);
475 command_print(cmd_ctx, "erased address 0x%8.8x length %i in %s", address, length, duration_text);
476 free(duration_text);
479 return retval;
482 int handle_flash_protect_check_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
484 flash_bank_t *p;
485 int retval;
487 if (argc != 1)
489 return ERROR_COMMAND_SYNTAX_ERROR;
492 p = get_flash_bank_by_num(strtoul(args[0], NULL, 0));
493 if (p)
495 if ((retval = p->driver->protect_check(p)) == ERROR_OK)
497 command_print(cmd_ctx, "successfully checked protect state");
499 else if (retval == ERROR_FLASH_OPERATION_FAILED)
501 command_print(cmd_ctx, "checking protection state failed (possibly unsupported) by flash #%s at 0x%8.8x", args[0], p->base);
503 else
505 command_print(cmd_ctx, "unknown error when checking protection state of flash bank '#%s' at 0x%8.8x", args[0], p->base);
508 else
510 return ERROR_COMMAND_SYNTAX_ERROR;
513 return ERROR_OK;
516 int handle_flash_erase_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
518 if (argc > 2)
520 int first = strtoul(args[1], NULL, 0);
521 int last = strtoul(args[2], NULL, 0);
522 int retval;
523 flash_bank_t *p = get_flash_bank_by_num(strtoul(args[0], NULL, 0));
524 duration_t duration;
525 char *duration_text;
527 duration_start_measure(&duration);
529 if (!p)
531 return ERROR_COMMAND_SYNTAX_ERROR;
534 if ((retval = flash_driver_erase(p, first, last)) == ERROR_OK)
536 duration_stop_measure(&duration, &duration_text);
538 command_print(cmd_ctx, "erased sectors %i through %i on flash bank %i in %s", first, last, strtoul(args[0], 0, 0), duration_text);
539 free(duration_text);
542 else
544 return ERROR_COMMAND_SYNTAX_ERROR;
547 return ERROR_OK;
550 int handle_flash_protect_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
552 if (argc > 3)
554 int first = strtoul(args[1], NULL, 0);
555 int last = strtoul(args[2], NULL, 0);
556 int set;
557 int retval;
558 flash_bank_t *p = get_flash_bank_by_num(strtoul(args[0], NULL, 0));
559 if (!p)
561 command_print(cmd_ctx, "flash bank '#%s' is out of bounds", args[0]);
562 return ERROR_OK;
565 if (strcmp(args[3], "on") == 0)
566 set = 1;
567 else if (strcmp(args[3], "off") == 0)
568 set = 0;
569 else
571 return ERROR_COMMAND_SYNTAX_ERROR;
574 retval = flash_driver_protect(p, set, first, last);
575 if (retval == ERROR_OK)
577 command_print(cmd_ctx, "%s protection for sectors %i through %i on flash bank %i", (set) ? "set" : "cleared", first, last, strtoul(args[0], 0, 0));
580 else
582 return ERROR_COMMAND_SYNTAX_ERROR;
586 return ERROR_OK;
589 int handle_flash_write_image_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
591 target_t *target = get_current_target(cmd_ctx);
593 image_t image;
594 u32 written;
596 duration_t duration;
597 char *duration_text;
599 int retval;
601 if (argc < 1)
603 return ERROR_COMMAND_SYNTAX_ERROR;
607 if (!target)
609 ERROR("no target selected");
610 return ERROR_OK;
613 duration_start_measure(&duration);
615 if (argc >= 2)
617 image.base_address_set = 1;
618 image.base_address = strtoul(args[1], NULL, 0);
620 else
622 image.base_address_set = 0;
623 image.base_address = 0x0;
626 image.start_address_set = 0;
628 retval = image_open(&image, args[0], (argc == 3) ? args[2] : NULL);
629 if (retval != ERROR_OK)
631 command_print(cmd_ctx, "image_open error: %s", image.error_str);
632 return retval;
635 retval = flash_write(target, &image, &written, auto_erase);
637 if (retval != ERROR_OK)
639 image_close(&image);
640 return retval;
643 duration_stop_measure(&duration, &duration_text);
644 if (retval == ERROR_OK)
646 command_print(cmd_ctx, "wrote %u byte from file %s in %s (%f kb/s)",
647 written, args[0], duration_text,
648 (float)written / 1024.0 / ((float)duration.duration.tv_sec + ((float)duration.duration.tv_usec / 1000000.0)));
650 free(duration_text);
652 image_close(&image);
654 return retval;
657 int handle_flash_write_bank_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
659 u32 offset;
660 u8 *buffer;
661 u32 buf_cnt;
663 fileio_t fileio;
665 duration_t duration;
666 char *duration_text;
668 int retval;
669 flash_bank_t *p;
671 if (argc != 3)
673 return ERROR_COMMAND_SYNTAX_ERROR;
676 duration_start_measure(&duration);
678 offset = strtoul(args[2], NULL, 0);
679 p = get_flash_bank_by_num(strtoul(args[0], NULL, 0));
680 if (!p)
682 command_print(cmd_ctx, "flash bank '#%s' is out of bounds", args[0]);
683 return ERROR_OK;
686 if (fileio_open(&fileio, args[1], FILEIO_READ, FILEIO_BINARY) != ERROR_OK)
688 command_print(cmd_ctx, "flash write_binary error: %s", fileio.error_str);
689 return ERROR_OK;
692 buffer = malloc(fileio.size);
693 if (fileio_read(&fileio, fileio.size, buffer, &buf_cnt) != ERROR_OK)
695 command_print(cmd_ctx, "flash write_binary error: %s", fileio.error_str);
696 return ERROR_OK;
699 retval = flash_driver_write(p, buffer, offset, buf_cnt);
701 free(buffer);
703 duration_stop_measure(&duration, &duration_text);
704 if (retval!=ERROR_OK)
706 command_print(cmd_ctx, "wrote %"PRIi64" byte from file %s to flash bank %i at offset 0x%8.8x in %s (%f kb/s)",
707 fileio.size, args[1], strtoul(args[0], NULL, 0), offset, duration_text,
708 (float)fileio.size / 1024.0 / ((float)duration.duration.tv_sec + ((float)duration.duration.tv_usec / 1000000.0)));
710 free(duration_text);
712 fileio_close(&fileio);
714 return retval;
717 void flash_set_dirty(void)
719 flash_bank_t *c;
720 int i;
722 /* set all flash to require erasing */
723 for (c = flash_banks; c; c = c->next)
725 for (i = 0; i < c->num_sectors; i++)
727 c->sectors[i].is_erased = 0;
732 /* lookup flash bank by address */
733 flash_bank_t *get_flash_bank_by_addr(target_t *target, u32 addr)
735 flash_bank_t *c;
737 /* cycle through bank list */
738 for (c = flash_banks; c; c = c->next)
740 int retval;
741 retval = c->driver->auto_probe(c);
743 if (retval != ERROR_OK)
745 ERROR("auto_probe failed %d\n", retval);
746 return NULL;
748 /* check whether address belongs to this flash bank */
749 if ((addr >= c->base) && (addr < c->base + c->size) && target == c->target)
750 return c;
752 ERROR("No flash at address 0x%08x\n", addr);
753 return NULL;
756 /* erase given flash region, selects proper bank according to target and address */
757 int flash_erase_address_range(target_t *target, u32 addr, u32 length)
759 flash_bank_t *c;
760 int first = -1;
761 int last = -1;
762 int i;
764 if ((c = get_flash_bank_by_addr(target, addr)) == NULL)
765 return ERROR_FLASH_DST_OUT_OF_BANK; /* no corresponding bank found */
767 if (c->size == 0 || c->num_sectors == 0)
768 return ERROR_FLASH_BANK_INVALID;
770 if (length == 0)
772 /* special case, erase whole bank when length is zero */
773 if (addr != c->base)
774 return ERROR_FLASH_DST_BREAKS_ALIGNMENT;
776 return flash_driver_erase(c, 0, c->num_sectors - 1);
779 /* check whether it fits */
780 if (addr + length > c->base + c->size)
781 return ERROR_FLASH_DST_BREAKS_ALIGNMENT;
783 addr -= c->base;
785 for (i = 0; i < c->num_sectors; i++)
787 /* check whether sector overlaps with the given range and is not yet erased */
788 if (addr < c->sectors[i].offset + c->sectors[i].size && addr + length > c->sectors[i].offset && c->sectors[i].is_erased != 1) {
789 /* if first is not set yet then this is the first sector */
790 if (first == -1)
791 first = i;
792 last = i; /* and it is the last one so far in any case */
796 if( first == -1 || last == -1 )
797 return ERROR_OK;
799 return flash_driver_erase(c, first, last);
802 /* write (optional verify) an image to flash memory of the given target */
803 int flash_write(target_t *target, image_t *image, u32 *written, int erase)
805 int retval;
807 int section;
808 u32 section_offset;
809 flash_bank_t *c;
811 section = 0;
812 section_offset = 0;
814 if (written)
815 *written = 0;
817 if (erase)
819 /* assume all sectors need erasing - stops any problems
820 * when flash_write is called multiple times */
822 flash_set_dirty();
825 /* loop until we reach end of the image */
826 while (section < image->num_sections)
828 u32 buffer_size;
829 u8 *buffer;
830 int section_first;
831 int section_last;
832 u32 run_address = image->sections[section].base_address + section_offset;
833 u32 run_size = image->sections[section].size - section_offset;
835 if (image->sections[section].size == 0)
837 WARNING("empty section %d", section);
838 section++;
839 section_offset = 0;
840 continue;
843 /* find the corresponding flash bank */
844 if ((c = get_flash_bank_by_addr(target, run_address)) == NULL)
846 section++; /* and skip it */
847 section_offset = 0;
848 continue;
851 /* collect consecutive sections which fall into the same bank */
852 section_first = section;
853 section_last = section;
854 while ((run_address + run_size < c->base + c->size)
855 && (section_last + 1 < image->num_sections))
857 if (image->sections[section_last + 1].base_address < (run_address + run_size))
859 DEBUG("section %d out of order(very slightly surprising, but supported)", section_last + 1);
860 break;
862 if (image->sections[section_last + 1].base_address != (run_address + run_size))
863 break;
864 run_size += image->sections[++section_last].size;
867 /* fit the run into bank constraints */
868 if (run_address + run_size > c->base + c->size)
869 run_size = c->base + c->size - run_address;
871 /* allocate buffer */
872 buffer = malloc(run_size);
873 buffer_size = 0;
875 /* read sections to the buffer */
876 while (buffer_size < run_size)
878 u32 size_read;
880 if (buffer_size - run_size <= image->sections[section].size - section_offset)
881 size_read = buffer_size - run_size;
882 else
883 size_read = image->sections[section].size - section_offset;
885 if ((retval = image_read_section(image, section, section_offset,
886 size_read, buffer + buffer_size, &size_read)) != ERROR_OK || size_read == 0)
888 free(buffer);
890 return retval;
893 buffer_size += size_read;
894 section_offset += size_read;
896 if (section_offset >= image->sections[section].size)
898 section++;
899 section_offset = 0;
903 retval = ERROR_OK;
905 if (erase)
907 /* calculate and erase sectors */
908 retval = flash_erase_address_range( target, run_address, run_size );
911 if (retval == ERROR_OK)
913 /* write flash sectors */
914 retval = flash_driver_write(c, buffer, run_address - c->base, run_size);
917 free(buffer);
919 if (retval != ERROR_OK)
921 return retval; /* abort operation */
924 if (written != NULL)
925 *written += run_size; /* add run size to total written counter */
928 return ERROR_OK;
931 int handle_flash_auto_erase_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
933 if (argc != 1)
935 return ERROR_COMMAND_SYNTAX_ERROR;
939 if (strcmp(args[0], "on") == 0)
940 auto_erase = 1;
941 else if (strcmp(args[0], "off") == 0)
942 auto_erase = 0;
943 else
944 return ERROR_COMMAND_SYNTAX_ERROR;
946 return ERROR_OK;