1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
5 * Copyright (C) 2008 by Spencer Oliver *
6 * spen@spen-soft.co.uk *
8 * Copyright (C) 2011 Øyvind Harboe *
9 * oyvind.harboe@zylin.com *
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 ***************************************************************************/
31 #include <helper/binarybuffer.h>
32 #include <target/algorithm.h>
33 #include <target/armv7m.h>
35 /* Regarding performance:
37 * Short story - it might be best to leave the performance at
40 * You may see a jump in speed if you change to using
41 * 32bit words for the block programming.
43 * Its a shame you cannot use the double word as its
44 * even faster - but you require external VPP for that mode.
46 * Having said all that 16bit writes give us the widest vdd
47 * operating range, so may be worth adding a note to that effect.
51 /* Danger!!!! The STM32F1x and STM32F2x series actually have
52 * quite different flash controllers.
54 * What's more scary is that the names of the registers and their
55 * addresses are the same, but the actual bits and what they do are
56 * can be very different.
58 * To reduce testing complexity and dangers of regressions,
59 * a seperate file is used for stm32fx2x.
61 * 1mByte part with 4 x 16, 1 x 64, 7 x 128kBytes sectors
63 * What's the protection page size???
65 * Tested with STM3220F-EVAL board.
67 * STM32F21xx series for reference.
70 * http://www.st.com/internet/mcu/product/250192.jsp
73 * www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/PROGRAMMING_MANUAL/CD00233952.pdf
75 * STM32F1x series - notice that this code was copy, pasted and knocked
76 * into a stm32f2x driver, so in case something has been converted or
77 * bugs haven't been fixed, here are the original manuals:
79 * RM0008 - Reference manual
81 * RM0042, the Flash programming manual for low-, medium- high-density and
82 * connectivity line STM32F10x devices
84 * PM0068, the Flash programming manual for XL-density STM32F10x devices.
88 // Erase time can be as high as 1000ms, 10x this and it's toast...
89 #define FLASH_ERASE_TIMEOUT 10000
90 #define FLASH_WRITE_TIMEOUT 5
93 #define STM32_FLASH_BASE 0x40023c00
94 #define STM32_FLASH_ACR 0x40023c00
95 #define STM32_FLASH_KEYR 0x40023c04
96 #define STM32_FLASH_OPTKEYR 0x40023c08
97 #define STM32_FLASH_SR 0x40023c0C
98 #define STM32_FLASH_CR 0x40023c10
99 #define STM32_FLASH_OPTCR 0x40023c14
100 #define STM32_FLASH_OBR 0x40023c1C
104 /* option byte location */
106 #define STM32_OB_RDP 0x1FFFF800
107 #define STM32_OB_USER 0x1FFFF802
108 #define STM32_OB_DATA0 0x1FFFF804
109 #define STM32_OB_DATA1 0x1FFFF806
110 #define STM32_OB_WRP0 0x1FFFF808
111 #define STM32_OB_WRP1 0x1FFFF80A
112 #define STM32_OB_WRP2 0x1FFFF80C
113 #define STM32_OB_WRP3 0x1FFFF80E
115 /* FLASH_CR register bits */
117 #define FLASH_PG (1 << 0)
118 #define FLASH_SER (1 << 1)
119 #define FLASH_MER (1 << 2)
120 #define FLASH_STRT (1 << 16)
121 #define FLASH_PSIZE_8 (0 << 8)
122 #define FLASH_PSIZE_16 (1 << 8)
123 #define FLASH_PSIZE_32 (2 << 8)
124 #define FLASH_PSIZE_64 (3 << 8)
125 #define FLASH_SNB(a) ((a) << 3)
126 #define FLASH_LOCK (1 << 31)
128 /* FLASH_SR register bits */
130 #define FLASH_BSY (1 << 16)
131 #define FLASH_PGSERR (1 << 7) // Programming sequence error
132 #define FLASH_PGPERR (1 << 6) // Programming parallelism error
133 #define FLASH_PGAERR (1 << 5) // Programming alignment error
134 #define FLASH_WRPERR (1 << 4) // Write protection error
135 #define FLASH_OPERR (1 << 1) // Operation error
137 #define FLASH_ERROR (FLASH_PGSERR | FLASH_PGPERR | FLASH_PGAERR| FLASH_WRPERR| FLASH_OPERR)
139 /* STM32_FLASH_OBR bit definitions (reading) */
142 #define OPT_READOUT 1
143 #define OPT_RDWDGSW 2
144 #define OPT_RDRSTSTOP 3
145 #define OPT_RDRSTSTDBY 4
146 #define OPT_BFB2 5 /* dual flash bank only */
148 /* register unlock keys */
150 #define KEY1 0x45670123
151 #define KEY2 0xCDEF89AB
153 struct stm32x_flash_bank
155 struct working_area
*write_algorithm
;
160 /* flash bank stm32x <base> <size> 0 0 <target#>
162 FLASH_BANK_COMMAND_HANDLER(stm32x_flash_bank_command
)
164 struct stm32x_flash_bank
*stm32x_info
;
168 return ERROR_COMMAND_SYNTAX_ERROR
;
171 stm32x_info
= malloc(sizeof(struct stm32x_flash_bank
));
172 bank
->driver_priv
= stm32x_info
;
174 stm32x_info
->write_algorithm
= NULL
;
175 stm32x_info
->probed
= 0;
180 static inline int stm32x_get_flash_reg(struct flash_bank
*bank
, uint32_t reg
)
185 static inline int stm32x_get_flash_status(struct flash_bank
*bank
, uint32_t *status
)
187 struct target
*target
= bank
->target
;
188 return target_read_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_SR
), status
);
191 static int stm32x_wait_status_busy(struct flash_bank
*bank
, int timeout
)
193 struct target
*target
= bank
->target
;
195 int retval
= ERROR_OK
;
197 /* wait for busy to clear */
200 retval
= stm32x_get_flash_status(bank
, &status
);
201 if (retval
!= ERROR_OK
)
203 LOG_DEBUG("status: 0x%" PRIx32
"", status
);
204 if ((status
& FLASH_BSY
) == 0)
208 LOG_ERROR("timed out waiting for flash");
215 if (status
& FLASH_WRPERR
)
217 LOG_ERROR("stm32x device protected");
221 /* Clear but report errors */
222 if (status
& FLASH_ERROR
)
224 /* If this operation fails, we ignore it and report the original
227 target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_SR
),
228 status
& FLASH_ERROR
);
233 static int stm32x_unlock_reg(struct target
*target
)
237 /* first check if not already unlocked
238 * otherwise writing on STM32_FLASH_KEYR will fail
240 int retval
= target_read_u32(target
, STM32_FLASH_CR
, &ctrl
);
241 if (retval
!= ERROR_OK
)
244 if ((ctrl
& FLASH_LOCK
) == 0)
247 /* unlock flash registers */
248 retval
= target_write_u32(target
, STM32_FLASH_KEYR
, KEY1
);
249 if (retval
!= ERROR_OK
)
252 retval
= target_write_u32(target
, STM32_FLASH_KEYR
, KEY2
);
253 if (retval
!= ERROR_OK
)
256 retval
= target_read_u32(target
, STM32_FLASH_CR
, &ctrl
);
257 if (retval
!= ERROR_OK
)
260 if (ctrl
& FLASH_LOCK
) {
261 LOG_ERROR("flash not unlocked STM32_FLASH_CR: %x", ctrl
);
262 return ERROR_TARGET_FAILURE
;
268 static int stm32x_protect_check(struct flash_bank
*bank
)
273 static int stm32x_erase(struct flash_bank
*bank
, int first
, int last
)
275 struct target
*target
= bank
->target
;
278 if (bank
->target
->state
!= TARGET_HALTED
)
280 LOG_ERROR("Target not halted");
281 return ERROR_TARGET_NOT_HALTED
;
285 retval
= stm32x_unlock_reg(target
);
286 if (retval
!= ERROR_OK
)
291 To erase a sector, follow the procedure below:
292 1. Check that no Flash memory operation is ongoing by checking the BSY bit in the
294 2. Set the SER bit and select the sector (out of the 12 sectors in the main memory block)
295 you wish to erase (SNB) in the FLASH_CR register
296 3. Set the STRT bit in the FLASH_CR register
297 4. Wait for the BSY bit to be cleared
300 for (i
= first
; i
<= last
; i
++)
302 retval
= target_write_u32(target
,
303 stm32x_get_flash_reg(bank
, STM32_FLASH_CR
), FLASH_SER
| FLASH_SNB(i
) | FLASH_STRT
);
304 if (retval
!= ERROR_OK
)
307 retval
= stm32x_wait_status_busy(bank
, FLASH_ERASE_TIMEOUT
);
308 if (retval
!= ERROR_OK
)
311 bank
->sectors
[i
].is_erased
= 1;
314 retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_CR
), FLASH_LOCK
);
315 if (retval
!= ERROR_OK
)
321 static int stm32x_protect(struct flash_bank
*bank
, int set
, int first
, int last
)
326 static int stm32x_write_block(struct flash_bank
*bank
, uint8_t *buffer
,
327 uint32_t offset
, uint32_t count
)
329 struct stm32x_flash_bank
*stm32x_info
= bank
->driver_priv
;
330 struct target
*target
= bank
->target
;
331 uint32_t buffer_size
= 16384;
332 struct working_area
*source
;
333 uint32_t address
= bank
->base
+ offset
;
334 struct reg_param reg_params
[5];
335 struct armv7m_algorithm armv7m_info
;
336 int retval
= ERROR_OK
;
338 /* see contrib/loaders/flash/stm32f2x.S for src */
340 static const uint16_t stm32x_flash_write_code_16
[] = {
341 /* 00000000 <write>: */
342 0x4b07, /* ldr r3, [pc, #28] (20 <STM32_PROG16>) */
343 0x6123, /* str r3, [r4, #16] */
344 0xf830, 0x3b02, /* ldrh.w r3, [r0], #2 */
345 0xf821, 0x3b02, /* strh.w r3, [r1], #2 */
347 /* 0000000c <busy>: */
348 0x68e3, /* ldr r3, [r4, #12] */
349 0xf413, 0x3f80, /* tst.w r3, #65536 ; 0x10000 */
350 0xd0fb, /* beq.n c <busy> */
351 0xf013, 0x0ff0, /* tst.w r3, #240 ; 0xf0 */
352 0xd101, /* bne.n 1e <exit> */
353 0x3a01, /* subs r2, #1 */
354 0xd1f0, /* bne.n 0 <write> */
355 /* 0000001e <exit>: */
356 0xbe00, /* bkpt 0x0000 */
358 /* 00000020 <STM32_PROG16>: */
359 0x0101, 0x0000, /* .word 0x00000101 */
363 uint8_t stm32x_flash_write_code
[sizeof(stm32x_flash_write_code_16
)*2];
364 for (unsigned i
= 0; i
< sizeof(stm32x_flash_write_code_16
) / 2; i
++)
366 stm32x_flash_write_code
[i
*2 + 0] = stm32x_flash_write_code_16
[i
] & 0xff;
367 stm32x_flash_write_code
[i
*2 + 1] = (stm32x_flash_write_code_16
[i
] >> 8) & 0xff;
370 if (target_alloc_working_area(target
, sizeof(stm32x_flash_write_code
),
371 &stm32x_info
->write_algorithm
) != ERROR_OK
)
373 LOG_WARNING("no working area available, can't do block memory writes");
374 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE
;
377 if ((retval
= target_write_buffer(target
, stm32x_info
->write_algorithm
->address
,
378 sizeof(stm32x_flash_write_code
),
379 (uint8_t*)stm32x_flash_write_code
)) != ERROR_OK
)
383 while (target_alloc_working_area_try(target
, buffer_size
, &source
) != ERROR_OK
)
386 if (buffer_size
<= 256)
388 /* if we already allocated the writing code, but failed to get a
389 * buffer, free the algorithm */
390 if (stm32x_info
->write_algorithm
)
391 target_free_working_area(target
, stm32x_info
->write_algorithm
);
393 LOG_WARNING("no large enough working area available, can't do block memory writes");
394 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE
;
398 armv7m_info
.common_magic
= ARMV7M_COMMON_MAGIC
;
399 armv7m_info
.core_mode
= ARMV7M_MODE_ANY
;
401 init_reg_param(®_params
[0], "r0", 32, PARAM_OUT
);
402 init_reg_param(®_params
[1], "r1", 32, PARAM_OUT
);
403 init_reg_param(®_params
[2], "r2", 32, PARAM_OUT
);
404 init_reg_param(®_params
[3], "r3", 32, PARAM_IN_OUT
);
405 init_reg_param(®_params
[4], "r4", 32, PARAM_OUT
);
409 uint32_t thisrun_count
= (count
> (buffer_size
/ 2)) ?
410 (buffer_size
/ 2) : count
;
412 if ((retval
= target_write_buffer(target
, source
->address
,
413 thisrun_count
* 2, buffer
)) != ERROR_OK
)
416 buf_set_u32(reg_params
[0].value
, 0, 32, source
->address
);
417 buf_set_u32(reg_params
[1].value
, 0, 32, address
);
418 buf_set_u32(reg_params
[2].value
, 0, 32, thisrun_count
);
419 // R3 is a return value only
420 buf_set_u32(reg_params
[4].value
, 0, 32, STM32_FLASH_BASE
);
422 if ((retval
= target_run_algorithm(target
, 0, NULL
,
423 sizeof(reg_params
) / sizeof(*reg_params
),
425 stm32x_info
->write_algorithm
->address
,
427 10000, &armv7m_info
)) != ERROR_OK
)
429 LOG_ERROR("error executing stm32x flash write algorithm");
433 uint32_t error
= buf_get_u32(reg_params
[3].value
, 0, 32) & FLASH_ERROR
;
435 if (error
& FLASH_WRPERR
)
437 LOG_ERROR("flash memory write protected");
442 LOG_ERROR("flash write failed = %08x", error
);
443 /* Clear but report errors */
444 target_write_u32(target
, STM32_FLASH_SR
, error
);
449 buffer
+= thisrun_count
* 2;
450 address
+= thisrun_count
* 2;
451 count
-= thisrun_count
;
454 target_free_working_area(target
, source
);
455 target_free_working_area(target
, stm32x_info
->write_algorithm
);
457 destroy_reg_param(®_params
[0]);
458 destroy_reg_param(®_params
[1]);
459 destroy_reg_param(®_params
[2]);
460 destroy_reg_param(®_params
[3]);
461 destroy_reg_param(®_params
[4]);
466 static int stm32x_write(struct flash_bank
*bank
, uint8_t *buffer
,
467 uint32_t offset
, uint32_t count
)
469 struct target
*target
= bank
->target
;
470 uint32_t words_remaining
= (count
/ 2);
471 uint32_t bytes_remaining
= (count
& 0x00000001);
472 uint32_t address
= bank
->base
+ offset
;
473 uint32_t bytes_written
= 0;
476 if (bank
->target
->state
!= TARGET_HALTED
)
478 LOG_ERROR("Target not halted");
479 return ERROR_TARGET_NOT_HALTED
;
484 LOG_WARNING("offset 0x%" PRIx32
" breaks required 2-byte alignment", offset
);
485 return ERROR_FLASH_DST_BREAKS_ALIGNMENT
;
488 retval
= stm32x_unlock_reg(target
);
489 if (retval
!= ERROR_OK
)
492 /* multiple half words (2-byte) to be programmed? */
493 if (words_remaining
> 0)
495 /* try using a block write */
496 if ((retval
= stm32x_write_block(bank
, buffer
, offset
, words_remaining
)) != ERROR_OK
)
498 if (retval
== ERROR_TARGET_RESOURCE_NOT_AVAILABLE
)
500 /* if block write failed (no sufficient working area),
501 * we use normal (slow) single dword accesses */
502 LOG_WARNING("couldn't use block writes, falling back to single memory accesses");
507 buffer
+= words_remaining
* 2;
508 address
+= words_remaining
* 2;
513 if ((retval
!= ERROR_OK
) && (retval
!= ERROR_TARGET_RESOURCE_NOT_AVAILABLE
))
518 The Flash memory programming sequence is as follows:
519 1. Check that no main Flash memory operation is ongoing by checking the BSY bit in the
521 2. Set the PG bit in the FLASH_CR register
522 3. Perform the data write operation(s) to the desired memory address (inside main
523 memory block or OTP area):
524 – – Half-word access in case of x16 parallelism
525 – Word access in case of x32 parallelism
528 Byte access in case of x8 parallelism
529 Double word access in case of x64 parallelism
530 Wait for the BSY bit to be cleared
532 while (words_remaining
> 0)
535 memcpy(&value
, buffer
+ bytes_written
, sizeof(uint16_t));
537 retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_CR
),
538 FLASH_PG
| FLASH_PSIZE_16
);
539 if (retval
!= ERROR_OK
)
542 retval
= target_write_u16(target
, address
, value
);
543 if (retval
!= ERROR_OK
)
546 retval
= stm32x_wait_status_busy(bank
, FLASH_WRITE_TIMEOUT
);
547 if (retval
!= ERROR_OK
)
557 retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_CR
),
558 FLASH_PG
| FLASH_PSIZE_8
);
559 if (retval
!= ERROR_OK
)
561 retval
= target_write_u8(target
, address
, buffer
[bytes_written
]);
562 if (retval
!= ERROR_OK
)
565 retval
= stm32x_wait_status_busy(bank
, FLASH_WRITE_TIMEOUT
);
566 if (retval
!= ERROR_OK
)
570 return target_write_u32(target
, STM32_FLASH_CR
, FLASH_LOCK
);
573 static void setup_sector(struct flash_bank
*bank
, int start
, int num
, int size
)
575 for (int i
= start
; i
< (start
+ num
) ; i
++)
577 bank
->sectors
[i
].offset
= bank
->size
;
578 bank
->sectors
[i
].size
= size
;
579 bank
->size
+= bank
->sectors
[i
].size
;
583 static int stm32x_probe(struct flash_bank
*bank
)
585 struct target
*target
= bank
->target
;
586 struct stm32x_flash_bank
*stm32x_info
= bank
->driver_priv
;
588 uint16_t flash_size_in_kb
;
590 uint32_t base_address
= 0x08000000;
592 stm32x_info
->probed
= 0;
594 /* read stm32 device id register */
595 int retval
= target_read_u32(target
, 0xE0042000, &device_id
);
596 if (retval
!= ERROR_OK
)
598 LOG_INFO("device id = 0x%08" PRIx32
"", device_id
);
600 /* get flash size from target. */
601 retval
= target_read_u16(target
, 0x1FFF7A10, &flash_size_in_kb
);
602 if (retval
!= ERROR_OK
) {
603 LOG_WARNING("failed reading flash size, default to max target family");
604 /* failed reading flash size, default to max target family */
605 flash_size_in_kb
= 0xffff;
608 if ((device_id
& 0xfff) == 0x411) {
609 /* check for early silicon */
610 if (flash_size_in_kb
== 0xffff) {
611 /* number of sectors may be incorrrect on early silicon */
612 LOG_WARNING("STM32 flash size failed, probe inaccurate - assuming 512k flash");
613 flash_size_in_kb
= 512;
615 } else if ((device_id
& 0xfff) == 0x413) {
616 /* check for early silicon */
617 if (flash_size_in_kb
== 0xffff) {
618 /* number of sectors may be incorrrect on early silicon */
619 LOG_WARNING("STM32 flash size failed, probe inaccurate - assuming 512k flash");
620 flash_size_in_kb
= 512;
623 LOG_WARNING("Cannot identify target as a STM32 family.");
627 LOG_INFO("flash size = %dkbytes", flash_size_in_kb
);
629 /* did we assign flash size? */
630 assert(flash_size_in_kb
!= 0xffff);
632 /* calculate numbers of pages */
633 int num_pages
= (flash_size_in_kb
/ 128) + 4;
635 /* check that calculation result makes sense */
636 assert(num_pages
> 0);
640 bank
->sectors
= NULL
;
643 bank
->base
= base_address
;
644 bank
->num_sectors
= num_pages
;
645 bank
->sectors
= malloc(sizeof(struct flash_sector
) * num_pages
);
649 setup_sector(bank
, 0, 4, 16 * 1024);
650 setup_sector(bank
, 4, 1, 64 * 1024);
653 setup_sector(bank
, 4 + 1, num_pages
- 5, 128 * 1024);
655 for (i
= 0; i
< num_pages
; i
++) {
656 bank
->sectors
[i
].is_erased
= -1;
657 bank
->sectors
[i
].is_protected
= 0;
660 stm32x_info
->probed
= 1;
665 static int stm32x_auto_probe(struct flash_bank
*bank
)
667 struct stm32x_flash_bank
*stm32x_info
= bank
->driver_priv
;
668 if (stm32x_info
->probed
)
670 return stm32x_probe(bank
);
673 static int get_stm32x_info(struct flash_bank
*bank
, char *buf
, int buf_size
)
675 struct target
*target
= bank
->target
;
679 /* read stm32 device id register */
680 int retval
= target_read_u32(target
, 0xE0042000, &device_id
);
681 if (retval
!= ERROR_OK
)
684 if ((device_id
& 0xfff) == 0x411) {
685 printed
= snprintf(buf
, buf_size
, "stm32f2x - Rev: ");
689 switch (device_id
>> 16) {
691 snprintf(buf
, buf_size
, "A");
695 snprintf(buf
, buf_size
, "B");
699 snprintf(buf
, buf_size
, "Z");
703 snprintf(buf
, buf_size
, "Y");
707 snprintf(buf
, buf_size
, "unknown");
710 } else if ((device_id
& 0xfff) == 0x413) {
711 printed
= snprintf(buf
, buf_size
, "stm32f4x - Rev: ");
715 switch (device_id
>> 16) {
717 snprintf(buf
, buf_size
, "A");
721 snprintf(buf
, buf_size
, "unknown");
725 snprintf(buf
, buf_size
, "Cannot identify target as a stm32x\n");
732 static int stm32x_mass_erase(struct flash_bank
*bank
)
735 struct target
*target
= bank
->target
;
737 if (target
->state
!= TARGET_HALTED
) {
738 LOG_ERROR("Target not halted");
739 return ERROR_TARGET_NOT_HALTED
;
742 retval
= stm32x_unlock_reg(target
);
743 if (retval
!= ERROR_OK
)
746 /* mass erase flash memory */
747 retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_CR
), FLASH_MER
);
748 if (retval
!= ERROR_OK
)
750 retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_CR
),
751 FLASH_MER
| FLASH_STRT
);
752 if (retval
!= ERROR_OK
)
755 retval
= stm32x_wait_status_busy(bank
, 30000);
756 if (retval
!= ERROR_OK
)
759 retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_CR
), FLASH_LOCK
);
760 if (retval
!= ERROR_OK
)
766 COMMAND_HANDLER(stm32x_handle_mass_erase_command
)
771 command_print(CMD_CTX
, "stm32x mass_erase <bank>");
772 return ERROR_COMMAND_SYNTAX_ERROR
;
775 struct flash_bank
*bank
;
776 int retval
= CALL_COMMAND_HANDLER(flash_command_get_bank
, 0, &bank
);
777 if (ERROR_OK
!= retval
)
780 retval
= stm32x_mass_erase(bank
);
781 if (retval
== ERROR_OK
) {
782 /* set all sectors as erased */
783 for (i
= 0; i
< bank
->num_sectors
; i
++)
784 bank
->sectors
[i
].is_erased
= 1;
786 command_print(CMD_CTX
, "stm32x mass erase complete");
788 command_print(CMD_CTX
, "stm32x mass erase failed");
794 static const struct command_registration stm32x_exec_command_handlers
[] = {
796 .name
= "mass_erase",
797 .handler
= stm32x_handle_mass_erase_command
,
798 .mode
= COMMAND_EXEC
,
800 .help
= "Erase entire flash device.",
802 COMMAND_REGISTRATION_DONE
805 static const struct command_registration stm32x_command_handlers
[] = {
809 .help
= "stm32f2x flash command group",
810 .chain
= stm32x_exec_command_handlers
,
812 COMMAND_REGISTRATION_DONE
815 struct flash_driver stm32f2x_flash
= {
817 .commands
= stm32x_command_handlers
,
818 .flash_bank_command
= stm32x_flash_bank_command
,
819 .erase
= stm32x_erase
,
820 .protect
= stm32x_protect
,
821 .write
= stm32x_write
,
822 .read
= default_flash_read
,
823 .probe
= stm32x_probe
,
824 .auto_probe
= stm32x_auto_probe
,
825 .erase_check
= default_flash_mem_blank_check
,
826 .protect_check
= stm32x_protect_check
,
827 .info
= get_stm32x_info
,