1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
5 * Copyright (C) 2007,2008 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
8 * Copyright (C) 2008 by Spencer Oliver *
9 * spen@spen-soft.co.uk *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
16 * This program is distributed in the hope that it will be useful, *
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
19 * GNU General Public License for more details. *
21 * You should have received a copy of the GNU General Public License *
22 * along with this program; if not, write to the *
23 * Free Software Foundation, Inc., *
24 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
25 ***************************************************************************/
32 #include "time_support.h"
34 /* command handlers */
35 static int handle_flash_bank_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
);
36 static int handle_flash_info_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
);
37 static int handle_flash_probe_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
);
38 static int handle_flash_erase_check_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
);
39 static int handle_flash_erase_address_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
);
40 static int handle_flash_protect_check_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
);
41 static int handle_flash_erase_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
);
42 static int handle_flash_write_bank_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
);
43 static int handle_flash_write_image_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
);
44 static int handle_flash_fill_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
);
45 static int handle_flash_protect_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
);
46 static int flash_write_unlock(target_t
*target
, image_t
*image
, uint32_t *written
, int erase
, bool unlock
);
50 extern flash_driver_t lpc2000_flash
;
51 extern flash_driver_t lpc288x_flash
;
52 extern flash_driver_t lpc2900_flash
;
53 extern flash_driver_t cfi_flash
;
54 extern flash_driver_t at91sam3_flash
;
55 extern flash_driver_t at91sam7_flash
;
56 extern flash_driver_t str7x_flash
;
57 extern flash_driver_t str9x_flash
;
58 extern flash_driver_t aduc702x_flash
;
59 extern flash_driver_t stellaris_flash
;
60 extern flash_driver_t str9xpec_flash
;
61 extern flash_driver_t stm32x_flash
;
62 extern flash_driver_t tms470_flash
;
63 extern flash_driver_t ecosflash_flash
;
64 extern flash_driver_t ocl_flash
;
65 extern flash_driver_t pic32mx_flash
;
66 extern flash_driver_t avr_flash
;
68 flash_driver_t
*flash_drivers
[] = {
89 flash_bank_t
*flash_banks
;
90 static command_t
*flash_cmd
;
92 /* wafer thin wrapper for invoking the flash driver */
93 static int flash_driver_write(struct flash_bank_s
*bank
, uint8_t *buffer
, uint32_t offset
, uint32_t count
)
97 retval
= bank
->driver
->write(bank
, buffer
, offset
, count
);
98 if (retval
!= ERROR_OK
)
100 LOG_ERROR("error writing to flash at address 0x%08" PRIx32
" at offset 0x%8.8" PRIx32
" (%d)",
101 bank
->base
, offset
, retval
);
107 static int flash_driver_erase(struct flash_bank_s
*bank
, int first
, int last
)
111 retval
= bank
->driver
->erase(bank
, first
, last
);
112 if (retval
!= ERROR_OK
)
114 LOG_ERROR("failed erasing sectors %d to %d (%d)", first
, last
, retval
);
120 int flash_driver_protect(struct flash_bank_s
*bank
, int set
, int first
, int last
)
124 retval
= bank
->driver
->protect(bank
, set
, first
, last
);
125 if (retval
!= ERROR_OK
)
127 LOG_ERROR("failed setting protection for areas %d to %d (%d)", first
, last
, retval
);
133 int flash_register_commands(struct command_context_s
*cmd_ctx
)
135 flash_cmd
= register_command(cmd_ctx
, NULL
, "flash", NULL
, COMMAND_ANY
, NULL
);
137 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 ...]");
141 static int jim_flash_banks(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
146 Jim_WrongNumArgs(interp
, 1, argv
, "no arguments to flash_banks command");
150 Jim_Obj
*list
= Jim_NewListObj(interp
, NULL
, 0);
151 for (p
= flash_banks
; p
; p
= p
->next
)
153 Jim_Obj
*elem
= Jim_NewListObj(interp
, NULL
, 0);
155 Jim_ListAppendElement(interp
, elem
, Jim_NewStringObj(interp
, "name", -1));
156 Jim_ListAppendElement(interp
, elem
, Jim_NewStringObj(interp
, p
->driver
->name
, -1));
157 Jim_ListAppendElement(interp
, elem
, Jim_NewStringObj(interp
, "base", -1));
158 Jim_ListAppendElement(interp
, elem
, Jim_NewIntObj(interp
, p
->base
));
159 Jim_ListAppendElement(interp
, elem
, Jim_NewStringObj(interp
, "size", -1));
160 Jim_ListAppendElement(interp
, elem
, Jim_NewIntObj(interp
, p
->size
));
161 Jim_ListAppendElement(interp
, elem
, Jim_NewStringObj(interp
, "bus_width", -1));
162 Jim_ListAppendElement(interp
, elem
, Jim_NewIntObj(interp
, p
->bus_width
));
163 Jim_ListAppendElement(interp
, elem
, Jim_NewStringObj(interp
, "chip_width", -1));
164 Jim_ListAppendElement(interp
, elem
, Jim_NewIntObj(interp
, p
->chip_width
));
166 Jim_ListAppendElement(interp
, list
, elem
);
169 Jim_SetResult(interp
, list
);
174 int flash_init_drivers(struct command_context_s
*cmd_ctx
)
176 register_jim(cmd_ctx
, "ocd_flash_banks", jim_flash_banks
, "return information about the flash banks");
180 register_command(cmd_ctx
, flash_cmd
, "info", handle_flash_info_command
, COMMAND_EXEC
,
181 "print info about flash bank <num>");
182 register_command(cmd_ctx
, flash_cmd
, "probe", handle_flash_probe_command
, COMMAND_EXEC
,
183 "identify flash bank <num>");
184 register_command(cmd_ctx
, flash_cmd
, "erase_check", handle_flash_erase_check_command
, COMMAND_EXEC
,
185 "check erase state of sectors in flash bank <num>");
186 register_command(cmd_ctx
, flash_cmd
, "protect_check", handle_flash_protect_check_command
, COMMAND_EXEC
,
187 "check protection state of sectors in flash bank <num>");
188 register_command(cmd_ctx
, flash_cmd
, "erase_sector", handle_flash_erase_command
, COMMAND_EXEC
,
189 "erase sectors at <bank> <first> <last>");
190 register_command(cmd_ctx
, flash_cmd
, "erase_address", handle_flash_erase_address_command
, COMMAND_EXEC
,
191 "erase address range <address> <length>");
193 register_command(cmd_ctx
, flash_cmd
, "fillw", handle_flash_fill_command
, COMMAND_EXEC
,
194 "fill with pattern (no autoerase) <address> <word_pattern> <count>");
195 register_command(cmd_ctx
, flash_cmd
, "fillh", handle_flash_fill_command
, COMMAND_EXEC
,
196 "fill with pattern <address> <halfword_pattern> <count>");
197 register_command(cmd_ctx
, flash_cmd
, "fillb", handle_flash_fill_command
, COMMAND_EXEC
,
198 "fill with pattern <address> <byte_pattern> <count>");
200 register_command(cmd_ctx
, flash_cmd
, "write_bank", handle_flash_write_bank_command
, COMMAND_EXEC
,
201 "write binary data to <bank> <file> <offset>");
202 register_command(cmd_ctx
, flash_cmd
, "write_image", handle_flash_write_image_command
, COMMAND_EXEC
,
203 "write_image [erase] [unlock] <file> [offset] [type]");
204 register_command(cmd_ctx
, flash_cmd
, "protect", handle_flash_protect_command
, COMMAND_EXEC
,
205 "set protection of sectors at <bank> <first> <last> <on | off>");
211 flash_bank_t
*get_flash_bank_by_num_noprobe(int num
)
216 for (p
= flash_banks
; p
; p
= p
->next
)
223 LOG_ERROR("flash bank %d does not exist", num
);
227 int flash_get_bank_count(void)
231 for (p
= flash_banks
; p
; p
= p
->next
)
238 flash_bank_t
*get_flash_bank_by_num(int num
)
240 flash_bank_t
*p
= get_flash_bank_by_num_noprobe(num
);
246 retval
= p
->driver
->auto_probe(p
);
248 if (retval
!= ERROR_OK
)
250 LOG_ERROR("auto_probe failed %d\n", retval
);
256 static int handle_flash_bank_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
)
265 return ERROR_COMMAND_SYNTAX_ERROR
;
268 if ((target
= get_target(args
[5])) == NULL
)
270 LOG_ERROR("target '%s' not defined", args
[5]);
274 for (i
= 0; flash_drivers
[i
]; i
++)
276 if (strcmp(args
[0], flash_drivers
[i
]->name
) == 0)
280 /* register flash specific commands */
281 if (flash_drivers
[i
]->register_commands(cmd_ctx
) != ERROR_OK
)
283 LOG_ERROR("couldn't register '%s' commands", args
[0]);
287 c
= malloc(sizeof(flash_bank_t
));
289 c
->driver
= flash_drivers
[i
];
290 c
->driver_priv
= NULL
;
291 c
->base
= strtoul(args
[1], NULL
, 0);
292 c
->size
= strtoul(args
[2], NULL
, 0);
293 c
->chip_width
= strtoul(args
[3], NULL
, 0);
294 c
->bus_width
= strtoul(args
[4], NULL
, 0);
299 if ((retval
= flash_drivers
[i
]->flash_bank_command(cmd_ctx
, cmd
, args
, argc
, c
)) != ERROR_OK
)
301 LOG_ERROR("'%s' driver rejected flash bank at 0x%8.8" PRIx32
, args
[0], c
->base
);
306 /* put flash bank in linked list */
310 /* find last flash bank */
311 for (p
= flash_banks
; p
&& p
->next
; p
= p
->next
) bank_num
++;
314 c
->bank_number
= bank_num
+ 1;
326 /* no matching flash driver found */
329 LOG_ERROR("flash driver '%s' not found", args
[0]);
336 static int handle_flash_info_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
)
345 return ERROR_COMMAND_SYNTAX_ERROR
;
348 for (p
= flash_banks
; p
; p
= p
->next
, i
++)
350 if (i
== strtoul(args
[0], NULL
, 0))
354 /* attempt auto probe */
355 if ((retval
= p
->driver
->auto_probe(p
)) != ERROR_OK
)
358 command_print(cmd_ctx
,
359 "#%" PRIi32
" : %s at 0x%8.8" PRIx32
", size 0x%8.8" PRIx32
", buswidth %i, chipwidth %i",
366 for (j
= 0; j
< p
->num_sectors
; j
++)
370 if (p
->sectors
[j
].is_protected
== 0)
371 protect_state
= "not protected";
372 else if (p
->sectors
[j
].is_protected
== 1)
373 protect_state
= "protected";
375 protect_state
= "protection state unknown";
377 command_print(cmd_ctx
,
378 "\t#%3i: 0x%8.8" PRIx32
" (0x%" PRIx32
" %" PRIi32
"kB) %s",
380 p
->sectors
[j
].offset
,
382 p
->sectors
[j
].size
>> 10,
386 *buf
= '\0'; /* initialize buffer, otherwise it migh contain garbage if driver function fails */
387 retval
= p
->driver
->info(p
, buf
, sizeof(buf
));
388 command_print(cmd_ctx
, "%s", buf
);
389 if (retval
!= ERROR_OK
)
390 LOG_ERROR("error retrieving flash info (%d)", retval
);
397 static int handle_flash_probe_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
)
404 return ERROR_COMMAND_SYNTAX_ERROR
;
407 p
= get_flash_bank_by_num_noprobe(strtoul(args
[0], NULL
, 0));
410 if ((retval
= p
->driver
->probe(p
)) == ERROR_OK
)
412 command_print(cmd_ctx
, "flash '%s' found at 0x%8.8" PRIx32
, p
->driver
->name
, p
->base
);
414 else if (retval
== ERROR_FLASH_BANK_INVALID
)
416 command_print(cmd_ctx
, "probing failed for flash bank '#%s' at 0x%8.8" PRIx32
,
421 command_print(cmd_ctx
, "unknown error when probing flash bank '#%s' at 0x%8.8" PRIx32
,
427 command_print(cmd_ctx
, "flash bank '#%s' is out of bounds", args
[0]);
433 static int handle_flash_erase_check_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
)
440 return ERROR_COMMAND_SYNTAX_ERROR
;
443 p
= get_flash_bank_by_num(strtoul(args
[0], NULL
, 0));
447 if ((retval
= p
->driver
->erase_check(p
)) == ERROR_OK
)
449 command_print(cmd_ctx
, "successfully checked erase state");
453 command_print(cmd_ctx
, "unknown error when checking erase state of flash bank #%s at 0x%8.8" PRIx32
,
457 for (j
= 0; j
< p
->num_sectors
; j
++)
461 if (p
->sectors
[j
].is_erased
== 0)
462 erase_state
= "not erased";
463 else if (p
->sectors
[j
].is_erased
== 1)
464 erase_state
= "erased";
466 erase_state
= "erase state unknown";
468 command_print(cmd_ctx
,
469 "\t#%3i: 0x%8.8" PRIx32
" (0x%" PRIx32
" %" PRIi32
"kB) %s",
471 p
->sectors
[j
].offset
,
473 p
->sectors
[j
].size
>> 10,
481 static int handle_flash_erase_address_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
)
490 target_t
*target
= get_current_target(cmd_ctx
);
494 return ERROR_COMMAND_SYNTAX_ERROR
;
497 address
= strtoul(args
[0], NULL
, 0);
498 length
= strtoul(args
[1], NULL
, 0);
501 command_print(cmd_ctx
, "Length must be >0");
502 return ERROR_COMMAND_SYNTAX_ERROR
;
505 p
= get_flash_bank_by_addr(target
, address
);
511 /* We can't know if we did a resume + halt, in which case we no longer know the erased state */
514 duration_start_measure(&duration
);
516 if ((retval
= flash_erase_address_range(target
, address
, length
)) == ERROR_OK
)
518 if ((retval
= duration_stop_measure(&duration
, &duration_text
)) != ERROR_OK
)
522 command_print(cmd_ctx
, "erased address 0x%8.8x length %i in %s", address
, length
, duration_text
);
529 static int handle_flash_protect_check_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
)
536 return ERROR_COMMAND_SYNTAX_ERROR
;
539 p
= get_flash_bank_by_num(strtoul(args
[0], NULL
, 0));
542 if ((retval
= p
->driver
->protect_check(p
)) == ERROR_OK
)
544 command_print(cmd_ctx
, "successfully checked protect state");
546 else if (retval
== ERROR_FLASH_OPERATION_FAILED
)
548 command_print(cmd_ctx
, "checking protection state failed (possibly unsupported) by flash #%s at 0x%8.8" PRIx32
, args
[0], p
->base
);
552 command_print(cmd_ctx
, "unknown error when checking protection state of flash bank '#%s' at 0x%8.8" PRIx32
, args
[0], p
->base
);
557 return ERROR_COMMAND_SYNTAX_ERROR
;
563 static int flash_check_sector_parameters(struct command_context_s
*cmd_ctx
,
564 uint32_t first
, uint32_t last
, uint32_t num_sectors
)
566 if (!(first
<= last
)) {
567 command_print(cmd_ctx
, "ERROR: "
568 "first sector must be <= last sector");
572 if (!(last
<= (num_sectors
- 1))) {
573 command_print(cmd_ctx
, "ERROR: last sector must be <= %d",
574 (int) num_sectors
- 1);
581 static int handle_flash_erase_command(struct command_context_s
*cmd_ctx
,
582 char *cmd
, char **args
, int argc
)
591 if ((retval
= parse_u32(args
[0], &bank_nr
)) != ERROR_OK
)
594 flash_bank_t
*p
= get_flash_bank_by_num(bank_nr
);
598 if ((retval
= parse_u32(args
[1], &first
)) != ERROR_OK
)
600 if (strcmp(args
[2], "last") == 0)
601 last
= p
->num_sectors
- 1;
603 if ((retval
= parse_u32(args
[2], &last
)) != ERROR_OK
)
606 if ((retval
= flash_check_sector_parameters(cmd_ctx
,
607 first
, last
, p
->num_sectors
)) != ERROR_OK
)
612 duration_start_measure(&duration
);
614 if ((retval
= flash_driver_erase(p
, first
, last
)) == ERROR_OK
) {
615 if ((retval
= duration_stop_measure(&duration
,
616 &duration_text
)) != ERROR_OK
)
618 command_print(cmd_ctx
, "erased sectors %i through %i "
619 "on flash bank %i in %s",
620 (int) first
, (int) last
, (int) bank_nr
,
626 return ERROR_COMMAND_SYNTAX_ERROR
;
631 static int handle_flash_protect_command(struct command_context_s
*cmd_ctx
,
632 char *cmd
, char **args
, int argc
)
642 if ((retval
= parse_u32(args
[0], &bank_nr
)) != ERROR_OK
)
645 flash_bank_t
*p
= get_flash_bank_by_num(bank_nr
);
649 if ((retval
= parse_u32(args
[1], &first
)) != ERROR_OK
)
651 if (strcmp(args
[2], "last") == 0)
652 last
= p
->num_sectors
- 1;
654 if ((retval
= parse_u32(args
[2], &last
)) != ERROR_OK
)
657 if (strcmp(args
[3], "on") == 0)
659 else if (strcmp(args
[3], "off") == 0)
662 return ERROR_COMMAND_SYNTAX_ERROR
;
664 if ((retval
= flash_check_sector_parameters(cmd_ctx
,
665 first
, last
, p
->num_sectors
)) != ERROR_OK
)
668 retval
= flash_driver_protect(p
, set
, first
, last
);
669 if (retval
== ERROR_OK
) {
670 command_print(cmd_ctx
, "%s protection for sectors %i "
671 "through %i on flash bank %i",
672 (set
) ? "set" : "cleared", (int) first
,
673 (int) last
, (int) bank_nr
);
677 return ERROR_COMMAND_SYNTAX_ERROR
;
682 static int handle_flash_write_image_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
)
684 target_t
*target
= get_current_target(cmd_ctx
);
692 int retval
, retvaltemp
;
696 return ERROR_COMMAND_SYNTAX_ERROR
;
699 /* flash auto-erase is disabled by default*/
701 bool auto_unlock
= false;
705 if (strcmp(args
[0], "erase") == 0)
710 command_print(cmd_ctx
, "auto erase enabled");
711 } else if (strcmp(args
[0], "unlock") == 0)
716 command_print(cmd_ctx
, "auto unlock enabled");
725 return ERROR_COMMAND_SYNTAX_ERROR
;
730 LOG_ERROR("no target selected");
734 duration_start_measure(&duration
);
738 image
.base_address_set
= 1;
739 image
.base_address
= strtoul(args
[1], NULL
, 0);
743 image
.base_address_set
= 0;
744 image
.base_address
= 0x0;
747 image
.start_address_set
= 0;
749 retval
= image_open(&image
, args
[0], (argc
== 3) ? args
[2] : NULL
);
750 if (retval
!= ERROR_OK
)
755 retval
= flash_write_unlock(target
, &image
, &written
, auto_erase
, auto_unlock
);
756 if (retval
!= ERROR_OK
)
762 if ((retvaltemp
= duration_stop_measure(&duration
, &duration_text
)) != ERROR_OK
)
770 speed
= written
/ 1024.0;
771 speed
/= ((float)duration
.duration
.tv_sec
772 + ((float)duration
.duration
.tv_usec
/ 1000000.0));
773 command_print(cmd_ctx
,
774 "wrote %" PRIu32
" byte from file %s in %s (%f kb/s)",
775 written
, args
[0], duration_text
, speed
);
784 static int handle_flash_fill_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
)
786 int err
= ERROR_OK
, retval
;
791 uint8_t readback
[1024];
793 uint32_t cur_size
= 0;
794 uint32_t chunk_count
;
797 target_t
*target
= get_current_target(cmd_ctx
);
803 return ERROR_COMMAND_SYNTAX_ERROR
;
806 address
= strtoul(args
[0], NULL
, 0);
807 pattern
= strtoul(args
[1], NULL
, 0);
808 count
= strtoul(args
[2], NULL
, 0);
825 return ERROR_COMMAND_SYNTAX_ERROR
;
828 chunk_count
= MIN(count
, (1024 / wordsize
));
832 for (i
= 0; i
< chunk_count
; i
++)
834 target_buffer_set_u32(target
, chunk
+ i
* wordsize
, pattern
);
838 for (i
= 0; i
< chunk_count
; i
++)
840 target_buffer_set_u16(target
, chunk
+ i
* wordsize
, pattern
);
844 memset(chunk
, pattern
, chunk_count
);
847 LOG_ERROR("BUG: can't happen");
851 duration_start_measure(&duration
);
853 for (wrote
= 0; wrote
< (count
*wordsize
); wrote
+= cur_size
)
855 cur_size
= MIN((count
*wordsize
- wrote
), sizeof(chunk
));
857 bank
= get_flash_bank_by_addr(target
, address
);
862 err
= flash_driver_write(bank
, chunk
, address
- bank
->base
+ wrote
, cur_size
);
866 err
= target_read_buffer(target
, address
+ wrote
, cur_size
, readback
);
871 for (i
= 0; i
< cur_size
; i
++)
873 if (readback
[i
]!=chunk
[i
])
875 LOG_ERROR("Verfication error address 0x%08" PRIx32
", read back 0x%02x, expected 0x%02x",
876 address
+ wrote
+ i
, readback
[i
], chunk
[i
]);
883 if ((retval
= duration_stop_measure(&duration
, &duration_text
)) != ERROR_OK
)
890 speed
= wrote
/ 1024.0;
891 speed
/= ((float)duration
.duration
.tv_sec
892 + ((float)duration
.duration
.tv_usec
/ 1000000.0));
893 command_print(cmd_ctx
,
894 "wrote %" PRIu32
" bytes to 0x%8.8" PRIx32
" in %s (%f kb/s)",
895 wrote
, address
, duration_text
, speed
);
901 static int handle_flash_write_bank_command(struct command_context_s
*cmd_ctx
, char *cmd
, char **args
, int argc
)
912 int retval
, retvaltemp
;
917 return ERROR_COMMAND_SYNTAX_ERROR
;
920 duration_start_measure(&duration
);
922 offset
= strtoul(args
[2], NULL
, 0);
923 p
= get_flash_bank_by_num(strtoul(args
[0], NULL
, 0));
926 command_print(cmd_ctx
, "flash bank '#%s' is out of bounds", args
[0]);
930 if (fileio_open(&fileio
, args
[1], FILEIO_READ
, FILEIO_BINARY
) != ERROR_OK
)
935 buffer
= malloc(fileio
.size
);
936 if (fileio_read(&fileio
, fileio
.size
, buffer
, &buf_cnt
) != ERROR_OK
)
939 fileio_close(&fileio
);
943 retval
= flash_driver_write(p
, buffer
, offset
, buf_cnt
);
948 if ((retvaltemp
= duration_stop_measure(&duration
, &duration_text
)) != ERROR_OK
)
950 fileio_close(&fileio
);
953 if (retval
== ERROR_OK
)
955 command_print(cmd_ctx
,
956 "wrote %lld byte from file %s to flash bank %li at offset 0x%8.8" PRIx32
" in %s (%f kb/s)",
959 strtoul(args
[0], NULL
, 0),
962 (float)fileio
.size
/ 1024.0 / ((float)duration
.duration
.tv_sec
+ ((float)duration
.duration
.tv_usec
/ 1000000.0)));
966 fileio_close(&fileio
);
971 void flash_set_dirty(void)
976 /* set all flash to require erasing */
977 for (c
= flash_banks
; c
; c
= c
->next
)
979 for (i
= 0; i
< c
->num_sectors
; i
++)
981 c
->sectors
[i
].is_erased
= 0;
986 /* lookup flash bank by address */
987 flash_bank_t
*get_flash_bank_by_addr(target_t
*target
, uint32_t addr
)
991 /* cycle through bank list */
992 for (c
= flash_banks
; c
; c
= c
->next
)
995 retval
= c
->driver
->auto_probe(c
);
997 if (retval
!= ERROR_OK
)
999 LOG_ERROR("auto_probe failed %d\n", retval
);
1002 /* check whether address belongs to this flash bank */
1003 if ((addr
>= c
->base
) && (addr
<= c
->base
+ (c
->size
- 1)) && target
== c
->target
)
1006 LOG_ERROR("No flash at address 0x%08" PRIx32
"\n", addr
);
1010 /* erase given flash region, selects proper bank according to target and address */
1011 static int flash_iterate_address_range(target_t
*target
, uint32_t addr
, uint32_t length
,
1012 int (*callback
)(struct flash_bank_s
*bank
, int first
, int last
))
1019 if ((c
= get_flash_bank_by_addr(target
, addr
)) == NULL
)
1020 return ERROR_FLASH_DST_OUT_OF_BANK
; /* no corresponding bank found */
1022 if (c
->size
== 0 || c
->num_sectors
== 0)
1024 LOG_ERROR("Bank is invalid");
1025 return ERROR_FLASH_BANK_INVALID
;
1030 /* special case, erase whole bank when length is zero */
1031 if (addr
!= c
->base
)
1032 return ERROR_FLASH_DST_BREAKS_ALIGNMENT
;
1034 return callback(c
, 0, c
->num_sectors
- 1);
1037 /* check whether it fits */
1038 if (addr
+ length
- 1 > c
->base
+ c
->size
- 1)
1039 return ERROR_FLASH_DST_BREAKS_ALIGNMENT
;
1043 for (i
= 0; i
< c
->num_sectors
; i
++)
1045 /* check whether sector overlaps with the given range and is not yet erased */
1046 if (addr
< c
->sectors
[i
].offset
+ c
->sectors
[i
].size
&& addr
+ length
> c
->sectors
[i
].offset
&& c
->sectors
[i
].is_erased
!= 1) {
1047 /* if first is not set yet then this is the first sector */
1050 last
= i
; /* and it is the last one so far in any case */
1054 if (first
== -1 || last
== -1)
1057 return callback(c
, first
, last
);
1062 int flash_erase_address_range(target_t
*target
, uint32_t addr
, uint32_t length
)
1064 return flash_iterate_address_range(target
, addr
, length
, &flash_driver_erase
);
1067 static int flash_driver_unprotect(struct flash_bank_s
*bank
, int first
, int last
)
1069 return flash_driver_protect(bank
, 0, first
, last
);
1072 static int flash_unlock_address_range(target_t
*target
, uint32_t addr
, uint32_t length
)
1074 return flash_iterate_address_range(target
, addr
, length
, &flash_driver_unprotect
);
1078 /* write (optional verify) an image to flash memory of the given target */
1079 static int flash_write_unlock(target_t
*target
, image_t
*image
, uint32_t *written
, int erase
, bool unlock
)
1081 int retval
= ERROR_OK
;
1084 uint32_t section_offset
;
1096 /* assume all sectors need erasing - stops any problems
1097 * when flash_write is called multiple times */
1102 /* allocate padding array */
1103 padding
= malloc(image
->num_sections
* sizeof(padding
));
1105 /* loop until we reach end of the image */
1106 while (section
< image
->num_sections
)
1108 uint32_t buffer_size
;
1112 uint32_t run_address
= image
->sections
[section
].base_address
+ section_offset
;
1113 uint32_t run_size
= image
->sections
[section
].size
- section_offset
;
1116 if (image
->sections
[section
].size
== 0)
1118 LOG_WARNING("empty section %d", section
);
1124 /* find the corresponding flash bank */
1125 if ((c
= get_flash_bank_by_addr(target
, run_address
)) == NULL
)
1127 section
++; /* and skip it */
1132 /* collect consecutive sections which fall into the same bank */
1133 section_first
= section
;
1134 section_last
= section
;
1135 padding
[section
] = 0;
1136 while ((run_address
+ run_size
- 1 < c
->base
+ c
->size
- 1)
1137 && (section_last
+ 1 < image
->num_sections
))
1139 if (image
->sections
[section_last
+ 1].base_address
< (run_address
+ run_size
))
1141 LOG_DEBUG("section %d out of order(very slightly surprising, but supported)", section_last
+ 1);
1144 /* if we have multiple sections within our image, flash programming could fail due to alignment issues
1145 * attempt to rebuild a consecutive buffer for the flash loader */
1146 pad_bytes
= (image
->sections
[section_last
+ 1].base_address
) - (run_address
+ run_size
);
1147 if ((run_address
+ run_size
+ pad_bytes
) > (c
->base
+ c
->size
))
1149 padding
[section_last
] = pad_bytes
;
1150 run_size
+= image
->sections
[++section_last
].size
;
1151 run_size
+= pad_bytes
;
1152 padding
[section_last
] = 0;
1154 LOG_INFO("Padding image section %d with %d bytes", section_last
-1, pad_bytes
);
1157 /* fit the run into bank constraints */
1158 if (run_address
+ run_size
- 1 > c
->base
+ c
->size
- 1)
1160 LOG_WARNING("writing %d bytes only - as image section is %d bytes and bank is only %d bytes", \
1161 (int)(c
->base
+ c
->size
- run_address
), (int)(run_size
), (int)(c
->size
));
1162 run_size
= c
->base
+ c
->size
- run_address
;
1165 /* allocate buffer */
1166 buffer
= malloc(run_size
);
1169 /* read sections to the buffer */
1170 while (buffer_size
< run_size
)
1174 size_read
= run_size
- buffer_size
;
1175 if (size_read
> image
->sections
[section
].size
- section_offset
)
1176 size_read
= image
->sections
[section
].size
- section_offset
;
1178 if ((retval
= image_read_section(image
, section
, section_offset
,
1179 size_read
, buffer
+ buffer_size
, &size_read
)) != ERROR_OK
|| size_read
== 0)
1186 /* see if we need to pad the section */
1187 while (padding
[section
]--)
1188 (buffer
+ buffer_size
)[size_read
++] = 0xff;
1190 buffer_size
+= size_read
;
1191 section_offset
+= size_read
;
1193 if (section_offset
>= image
->sections
[section
].size
)
1204 retval
= flash_unlock_address_range(target
, run_address
, run_size
);
1206 if (retval
== ERROR_OK
)
1210 /* calculate and erase sectors */
1211 retval
= flash_erase_address_range(target
, run_address
, run_size
);
1215 if (retval
== ERROR_OK
)
1217 /* write flash sectors */
1218 retval
= flash_driver_write(c
, buffer
, run_address
- c
->base
, run_size
);
1223 if (retval
!= ERROR_OK
)
1226 return retval
; /* abort operation */
1229 if (written
!= NULL
)
1230 *written
+= run_size
; /* add run size to total written counter */
1238 int flash_write(target_t
*target
, image_t
*image
, uint32_t *written
, int erase
)
1240 return flash_write_unlock(target
, image
, written
, erase
, false);
1243 int default_flash_mem_blank_check(struct flash_bank_s
*bank
)
1245 target_t
*target
= bank
->target
;
1246 uint8_t buffer
[1024];
1247 int buffer_size
= sizeof(buffer
);
1251 if (bank
->target
->state
!= TARGET_HALTED
)
1253 LOG_ERROR("Target not halted");
1254 return ERROR_TARGET_NOT_HALTED
;
1257 for (i
= 0; i
< bank
->num_sectors
; i
++)
1260 bank
->sectors
[i
].is_erased
= 1;
1262 for (j
= 0; j
< bank
->sectors
[i
].size
; j
+= buffer_size
)
1266 chunk
= buffer_size
;
1267 if (chunk
> (j
- bank
->sectors
[i
].size
))
1269 chunk
= (j
- bank
->sectors
[i
].size
);
1272 retval
= target_read_memory(target
, bank
->base
+ bank
->sectors
[i
].offset
+ j
, 4, chunk
/4, buffer
);
1273 if (retval
!= ERROR_OK
)
1276 for (nBytes
= 0; nBytes
< chunk
; nBytes
++)
1278 if (buffer
[nBytes
] != 0xFF)
1280 bank
->sectors
[i
].is_erased
= 0;
1290 int default_flash_blank_check(struct flash_bank_s
*bank
)
1292 target_t
*target
= bank
->target
;
1298 if (bank
->target
->state
!= TARGET_HALTED
)
1300 LOG_ERROR("Target not halted");
1301 return ERROR_TARGET_NOT_HALTED
;
1304 for (i
= 0; i
< bank
->num_sectors
; i
++)
1306 uint32_t address
= bank
->base
+ bank
->sectors
[i
].offset
;
1307 uint32_t size
= bank
->sectors
[i
].size
;
1309 if ((retval
= target_blank_check_memory(target
, address
, size
, &blank
)) != ERROR_OK
)
1315 bank
->sectors
[i
].is_erased
= 1;
1317 bank
->sectors
[i
].is_erased
= 0;
1323 LOG_USER("Running slow fallback erase check - add working memory");
1324 return default_flash_mem_blank_check(bank
);