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 by Andreas Fritiofson *
9 * andreas.fritiofson@gmail.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 ***************************************************************************/
32 #include <helper/binarybuffer.h>
33 #include <target/algorithm.h>
34 #include <target/armv7m.h>
36 /* stm32x register locations */
38 #define FLASH_REG_BASE_B0 0x40022000
39 #define FLASH_REG_BASE_B1 0x40022040
41 #define STM32_FLASH_ACR 0x00
42 #define STM32_FLASH_KEYR 0x04
43 #define STM32_FLASH_OPTKEYR 0x08
44 #define STM32_FLASH_SR 0x0C
45 #define STM32_FLASH_CR 0x10
46 #define STM32_FLASH_AR 0x14
47 #define STM32_FLASH_OBR 0x1C
48 #define STM32_FLASH_WRPR 0x20
50 /* TODO: Check if code using these really should be hard coded to bank 0.
51 * There are valid cases, on dual flash devices the protection of the
52 * second bank is done on the bank0 reg's. */
53 #define STM32_FLASH_ACR_B0 0x40022000
54 #define STM32_FLASH_KEYR_B0 0x40022004
55 #define STM32_FLASH_OPTKEYR_B0 0x40022008
56 #define STM32_FLASH_SR_B0 0x4002200C
57 #define STM32_FLASH_CR_B0 0x40022010
58 #define STM32_FLASH_AR_B0 0x40022014
59 #define STM32_FLASH_OBR_B0 0x4002201C
60 #define STM32_FLASH_WRPR_B0 0x40022020
62 /* option byte location */
64 #define STM32_OB_RDP 0x1FFFF800
65 #define STM32_OB_USER 0x1FFFF802
66 #define STM32_OB_DATA0 0x1FFFF804
67 #define STM32_OB_DATA1 0x1FFFF806
68 #define STM32_OB_WRP0 0x1FFFF808
69 #define STM32_OB_WRP1 0x1FFFF80A
70 #define STM32_OB_WRP2 0x1FFFF80C
71 #define STM32_OB_WRP3 0x1FFFF80E
73 /* FLASH_CR register bits */
75 #define FLASH_PG (1 << 0)
76 #define FLASH_PER (1 << 1)
77 #define FLASH_MER (1 << 2)
78 #define FLASH_OPTPG (1 << 4)
79 #define FLASH_OPTER (1 << 5)
80 #define FLASH_STRT (1 << 6)
81 #define FLASH_LOCK (1 << 7)
82 #define FLASH_OPTWRE (1 << 9)
84 /* FLASH_SR register bits */
86 #define FLASH_BSY (1 << 0)
87 #define FLASH_PGERR (1 << 2)
88 #define FLASH_WRPRTERR (1 << 4)
89 #define FLASH_EOP (1 << 5)
91 /* STM32_FLASH_OBR bit definitions (reading) */
96 #define OPT_RDRSTSTOP 3
97 #define OPT_RDRSTSTDBY 4
98 #define OPT_BFB2 5 /* dual flash bank only */
100 /* register unlock keys */
102 #define KEY1 0x45670123
103 #define KEY2 0xCDEF89AB
107 #define FLASH_WRITE_TIMEOUT 10
108 #define FLASH_ERASE_TIMEOUT 100
110 struct stm32x_options
{
112 uint16_t user_options
;
113 uint16_t protection
[4];
116 struct stm32x_flash_bank
{
117 struct stm32x_options option_bytes
;
122 /* used to access dual flash bank stm32xl */
123 uint32_t register_base
;
126 static int stm32x_mass_erase(struct flash_bank
*bank
);
127 static int stm32x_get_device_id(struct flash_bank
*bank
, uint32_t *device_id
);
129 /* flash bank stm32x <base> <size> 0 0 <target#>
131 FLASH_BANK_COMMAND_HANDLER(stm32x_flash_bank_command
)
133 struct stm32x_flash_bank
*stm32x_info
;
136 return ERROR_COMMAND_SYNTAX_ERROR
;
138 stm32x_info
= malloc(sizeof(struct stm32x_flash_bank
));
140 bank
->driver_priv
= stm32x_info
;
141 stm32x_info
->probed
= 0;
142 stm32x_info
->has_dual_banks
= false;
143 stm32x_info
->register_base
= FLASH_REG_BASE_B0
;
148 static inline int stm32x_get_flash_reg(struct flash_bank
*bank
, uint32_t reg
)
150 struct stm32x_flash_bank
*stm32x_info
= bank
->driver_priv
;
151 return reg
+ stm32x_info
->register_base
;
154 static inline int stm32x_get_flash_status(struct flash_bank
*bank
, uint32_t *status
)
156 struct target
*target
= bank
->target
;
157 return target_read_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_SR
), status
);
160 static int stm32x_wait_status_busy(struct flash_bank
*bank
, int timeout
)
162 struct target
*target
= bank
->target
;
164 int retval
= ERROR_OK
;
166 /* wait for busy to clear */
168 retval
= stm32x_get_flash_status(bank
, &status
);
169 if (retval
!= ERROR_OK
)
171 LOG_DEBUG("status: 0x%" PRIx32
"", status
);
172 if ((status
& FLASH_BSY
) == 0)
174 if (timeout
-- <= 0) {
175 LOG_ERROR("timed out waiting for flash");
181 if (status
& FLASH_WRPRTERR
) {
182 LOG_ERROR("stm32x device protected");
186 if (status
& FLASH_PGERR
) {
187 LOG_ERROR("stm32x device programming failed");
191 /* Clear but report errors */
192 if (status
& (FLASH_WRPRTERR
| FLASH_PGERR
)) {
193 /* If this operation fails, we ignore it and report the original
196 target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_SR
),
197 FLASH_WRPRTERR
| FLASH_PGERR
);
202 int stm32x_check_operation_supported(struct flash_bank
*bank
)
204 struct stm32x_flash_bank
*stm32x_info
= bank
->driver_priv
;
206 /* if we have a dual flash bank device then
207 * we need to perform option byte stuff on bank0 only */
208 if (stm32x_info
->register_base
!= FLASH_REG_BASE_B0
) {
209 LOG_ERROR("Option Byte Operation's must use bank0");
210 return ERROR_FLASH_OPERATION_FAILED
;
216 static int stm32x_read_options(struct flash_bank
*bank
)
219 struct stm32x_flash_bank
*stm32x_info
= NULL
;
220 struct target
*target
= bank
->target
;
222 stm32x_info
= bank
->driver_priv
;
224 /* read current option bytes */
225 int retval
= target_read_u32(target
, STM32_FLASH_OBR_B0
, &optiondata
);
226 if (retval
!= ERROR_OK
)
229 stm32x_info
->option_bytes
.user_options
= (uint16_t)0xFFF8 | ((optiondata
>> 2) & 0x07);
230 stm32x_info
->option_bytes
.RDP
= (optiondata
& (1 << OPT_READOUT
)) ? 0xFFFF : 0x5AA5;
232 if (optiondata
& (1 << OPT_READOUT
))
233 LOG_INFO("Device Security Bit Set");
235 /* each bit refers to a 4bank protection */
236 retval
= target_read_u32(target
, STM32_FLASH_WRPR_B0
, &optiondata
);
237 if (retval
!= ERROR_OK
)
240 stm32x_info
->option_bytes
.protection
[0] = (uint16_t)optiondata
;
241 stm32x_info
->option_bytes
.protection
[1] = (uint16_t)(optiondata
>> 8);
242 stm32x_info
->option_bytes
.protection
[2] = (uint16_t)(optiondata
>> 16);
243 stm32x_info
->option_bytes
.protection
[3] = (uint16_t)(optiondata
>> 24);
248 static int stm32x_erase_options(struct flash_bank
*bank
)
250 struct stm32x_flash_bank
*stm32x_info
= NULL
;
251 struct target
*target
= bank
->target
;
253 stm32x_info
= bank
->driver_priv
;
255 /* stlink is currently does not support 16bit
256 * read/writes. so we cannot write option bytes */
257 struct armv7m_common
*armv7m
= target_to_armv7m(target
);
258 if (armv7m
&& armv7m
->stlink
) {
259 LOG_ERROR("Option bytes currently unsupported for stlink");
263 /* read current options */
264 stm32x_read_options(bank
);
266 /* unlock flash registers */
267 int retval
= target_write_u32(target
, STM32_FLASH_KEYR_B0
, KEY1
);
268 if (retval
!= ERROR_OK
)
271 retval
= target_write_u32(target
, STM32_FLASH_KEYR_B0
, KEY2
);
272 if (retval
!= ERROR_OK
)
275 /* unlock option flash registers */
276 retval
= target_write_u32(target
, STM32_FLASH_OPTKEYR_B0
, KEY1
);
277 if (retval
!= ERROR_OK
)
279 retval
= target_write_u32(target
, STM32_FLASH_OPTKEYR_B0
, KEY2
);
280 if (retval
!= ERROR_OK
)
283 /* erase option bytes */
284 retval
= target_write_u32(target
, STM32_FLASH_CR_B0
, FLASH_OPTER
| FLASH_OPTWRE
);
285 if (retval
!= ERROR_OK
)
287 retval
= target_write_u32(target
, STM32_FLASH_CR_B0
, FLASH_OPTER
| FLASH_STRT
| FLASH_OPTWRE
);
288 if (retval
!= ERROR_OK
)
291 retval
= stm32x_wait_status_busy(bank
, FLASH_ERASE_TIMEOUT
);
292 if (retval
!= ERROR_OK
)
295 /* clear readout protection and complementary option bytes
296 * this will also force a device unlock if set */
297 stm32x_info
->option_bytes
.RDP
= 0x5AA5;
302 static int stm32x_write_options(struct flash_bank
*bank
)
304 struct stm32x_flash_bank
*stm32x_info
= NULL
;
305 struct target
*target
= bank
->target
;
307 stm32x_info
= bank
->driver_priv
;
309 /* unlock flash registers */
310 int retval
= target_write_u32(target
, STM32_FLASH_KEYR_B0
, KEY1
);
311 if (retval
!= ERROR_OK
)
313 retval
= target_write_u32(target
, STM32_FLASH_KEYR_B0
, KEY2
);
314 if (retval
!= ERROR_OK
)
317 /* unlock option flash registers */
318 retval
= target_write_u32(target
, STM32_FLASH_OPTKEYR_B0
, KEY1
);
319 if (retval
!= ERROR_OK
)
321 retval
= target_write_u32(target
, STM32_FLASH_OPTKEYR_B0
, KEY2
);
322 if (retval
!= ERROR_OK
)
325 /* program option bytes */
326 retval
= target_write_u32(target
, STM32_FLASH_CR_B0
, FLASH_OPTPG
| FLASH_OPTWRE
);
327 if (retval
!= ERROR_OK
)
330 /* write user option byte */
331 retval
= target_write_u16(target
, STM32_OB_USER
, stm32x_info
->option_bytes
.user_options
);
332 if (retval
!= ERROR_OK
)
335 retval
= stm32x_wait_status_busy(bank
, FLASH_WRITE_TIMEOUT
);
336 if (retval
!= ERROR_OK
)
339 /* write protection byte 1 */
340 retval
= target_write_u16(target
, STM32_OB_WRP0
, stm32x_info
->option_bytes
.protection
[0]);
341 if (retval
!= ERROR_OK
)
344 retval
= stm32x_wait_status_busy(bank
, FLASH_WRITE_TIMEOUT
);
345 if (retval
!= ERROR_OK
)
348 /* write protection byte 2 */
349 retval
= target_write_u16(target
, STM32_OB_WRP1
, stm32x_info
->option_bytes
.protection
[1]);
350 if (retval
!= ERROR_OK
)
353 retval
= stm32x_wait_status_busy(bank
, FLASH_WRITE_TIMEOUT
);
354 if (retval
!= ERROR_OK
)
357 /* write protection byte 3 */
358 retval
= target_write_u16(target
, STM32_OB_WRP2
, stm32x_info
->option_bytes
.protection
[2]);
359 if (retval
!= ERROR_OK
)
362 retval
= stm32x_wait_status_busy(bank
, FLASH_WRITE_TIMEOUT
);
363 if (retval
!= ERROR_OK
)
366 /* write protection byte 4 */
367 retval
= target_write_u16(target
, STM32_OB_WRP3
, stm32x_info
->option_bytes
.protection
[3]);
368 if (retval
!= ERROR_OK
)
371 retval
= stm32x_wait_status_busy(bank
, FLASH_WRITE_TIMEOUT
);
372 if (retval
!= ERROR_OK
)
375 /* write readout protection bit */
376 retval
= target_write_u16(target
, STM32_OB_RDP
, stm32x_info
->option_bytes
.RDP
);
377 if (retval
!= ERROR_OK
)
380 retval
= stm32x_wait_status_busy(bank
, FLASH_WRITE_TIMEOUT
);
381 if (retval
!= ERROR_OK
)
384 retval
= target_write_u32(target
, STM32_FLASH_CR_B0
, FLASH_LOCK
);
385 if (retval
!= ERROR_OK
)
391 static int stm32x_protect_check(struct flash_bank
*bank
)
393 struct target
*target
= bank
->target
;
394 struct stm32x_flash_bank
*stm32x_info
= bank
->driver_priv
;
401 if (target
->state
!= TARGET_HALTED
) {
402 LOG_ERROR("Target not halted");
403 return ERROR_TARGET_NOT_HALTED
;
406 int retval
= stm32x_check_operation_supported(bank
);
407 if (ERROR_OK
!= retval
)
410 /* medium density - each bit refers to a 4bank protection
411 * high density - each bit refers to a 2bank protection */
412 retval
= target_read_u32(target
, STM32_FLASH_WRPR_B0
, &protection
);
413 if (retval
!= ERROR_OK
)
416 /* medium density - each protection bit is for 4 * 1K pages
417 * high density - each protection bit is for 2 * 2K pages */
418 num_bits
= (bank
->num_sectors
/ stm32x_info
->ppage_size
);
420 if (stm32x_info
->ppage_size
== 2) {
421 /* high density flash/connectivity line protection */
425 if (protection
& (1 << 31))
428 /* bit 31 controls sector 62 - 255 protection for high density
429 * bit 31 controls sector 62 - 127 protection for connectivity line */
430 for (s
= 62; s
< bank
->num_sectors
; s
++)
431 bank
->sectors
[s
].is_protected
= set
;
433 if (bank
->num_sectors
> 61)
436 for (i
= 0; i
< num_bits
; i
++) {
439 if (protection
& (1 << i
))
442 for (s
= 0; s
< stm32x_info
->ppage_size
; s
++)
443 bank
->sectors
[(i
* stm32x_info
->ppage_size
) + s
].is_protected
= set
;
446 /* low/medium density flash protection */
447 for (i
= 0; i
< num_bits
; i
++) {
450 if (protection
& (1 << i
))
453 for (s
= 0; s
< stm32x_info
->ppage_size
; s
++)
454 bank
->sectors
[(i
* stm32x_info
->ppage_size
) + s
].is_protected
= set
;
461 static int stm32x_erase(struct flash_bank
*bank
, int first
, int last
)
463 struct target
*target
= bank
->target
;
466 if (bank
->target
->state
!= TARGET_HALTED
) {
467 LOG_ERROR("Target not halted");
468 return ERROR_TARGET_NOT_HALTED
;
471 if ((first
== 0) && (last
== (bank
->num_sectors
- 1)))
472 return stm32x_mass_erase(bank
);
474 /* unlock flash registers */
475 int retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_KEYR
), KEY1
);
476 if (retval
!= ERROR_OK
)
478 retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_KEYR
), KEY2
);
479 if (retval
!= ERROR_OK
)
482 for (i
= first
; i
<= last
; i
++) {
483 retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_CR
), FLASH_PER
);
484 if (retval
!= ERROR_OK
)
486 retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_AR
),
487 bank
->base
+ bank
->sectors
[i
].offset
);
488 if (retval
!= ERROR_OK
)
490 retval
= target_write_u32(target
,
491 stm32x_get_flash_reg(bank
, STM32_FLASH_CR
), FLASH_PER
| FLASH_STRT
);
492 if (retval
!= ERROR_OK
)
495 retval
= stm32x_wait_status_busy(bank
, FLASH_ERASE_TIMEOUT
);
496 if (retval
!= ERROR_OK
)
499 bank
->sectors
[i
].is_erased
= 1;
502 retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_CR
), FLASH_LOCK
);
503 if (retval
!= ERROR_OK
)
509 static int stm32x_protect(struct flash_bank
*bank
, int set
, int first
, int last
)
511 struct stm32x_flash_bank
*stm32x_info
= NULL
;
512 struct target
*target
= bank
->target
;
513 uint16_t prot_reg
[4] = {0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF};
518 stm32x_info
= bank
->driver_priv
;
520 if (target
->state
!= TARGET_HALTED
) {
521 LOG_ERROR("Target not halted");
522 return ERROR_TARGET_NOT_HALTED
;
525 int retval
= stm32x_check_operation_supported(bank
);
526 if (ERROR_OK
!= retval
)
529 if ((first
% stm32x_info
->ppage_size
) != 0) {
530 LOG_WARNING("aligned start protect sector to a %d sector boundary",
531 stm32x_info
->ppage_size
);
532 first
= first
- (first
% stm32x_info
->ppage_size
);
534 if (((last
+ 1) % stm32x_info
->ppage_size
) != 0) {
535 LOG_WARNING("aligned end protect sector to a %d sector boundary",
536 stm32x_info
->ppage_size
);
538 last
= last
- (last
% stm32x_info
->ppage_size
);
542 /* medium density - each bit refers to a 4bank protection
543 * high density - each bit refers to a 2bank protection */
544 retval
= target_read_u32(target
, STM32_FLASH_WRPR_B0
, &protection
);
545 if (retval
!= ERROR_OK
)
548 prot_reg
[0] = (uint16_t)protection
;
549 prot_reg
[1] = (uint16_t)(protection
>> 8);
550 prot_reg
[2] = (uint16_t)(protection
>> 16);
551 prot_reg
[3] = (uint16_t)(protection
>> 24);
553 if (stm32x_info
->ppage_size
== 2) {
554 /* high density flash */
556 /* bit 7 controls sector 62 - 255 protection */
559 prot_reg
[3] &= ~(1 << 7);
561 prot_reg
[3] |= (1 << 7);
569 for (i
= first
; i
<= last
; i
++) {
570 reg
= (i
/ stm32x_info
->ppage_size
) / 8;
571 bit
= (i
/ stm32x_info
->ppage_size
) - (reg
* 8);
574 prot_reg
[reg
] &= ~(1 << bit
);
576 prot_reg
[reg
] |= (1 << bit
);
579 /* medium density flash */
580 for (i
= first
; i
<= last
; i
++) {
581 reg
= (i
/ stm32x_info
->ppage_size
) / 8;
582 bit
= (i
/ stm32x_info
->ppage_size
) - (reg
* 8);
585 prot_reg
[reg
] &= ~(1 << bit
);
587 prot_reg
[reg
] |= (1 << bit
);
591 status
= stm32x_erase_options(bank
);
592 if (status
!= ERROR_OK
)
595 stm32x_info
->option_bytes
.protection
[0] = prot_reg
[0];
596 stm32x_info
->option_bytes
.protection
[1] = prot_reg
[1];
597 stm32x_info
->option_bytes
.protection
[2] = prot_reg
[2];
598 stm32x_info
->option_bytes
.protection
[3] = prot_reg
[3];
600 return stm32x_write_options(bank
);
603 static int stm32x_write_block(struct flash_bank
*bank
, uint8_t *buffer
,
604 uint32_t offset
, uint32_t count
)
606 struct stm32x_flash_bank
*stm32x_info
= bank
->driver_priv
;
607 struct target
*target
= bank
->target
;
608 uint32_t buffer_size
= 16384;
609 struct working_area
*write_algorithm
;
610 struct working_area
*source
;
611 uint32_t address
= bank
->base
+ offset
;
612 struct reg_param reg_params
[5];
613 struct armv7m_algorithm armv7m_info
;
614 int retval
= ERROR_OK
;
616 /* see contrib/loaders/flash/stm32f1x.S for src */
618 static const uint8_t stm32x_flash_write_code
[] = {
619 /* #define STM32_FLASH_SR_OFFSET 0x0C */
621 0x16, 0x68, /* ldr r6, [r2, #0] */
622 0x00, 0x2e, /* cmp r6, #0 */
623 0x18, 0xd0, /* beq exit */
624 0x55, 0x68, /* ldr r5, [r2, #4] */
625 0xb5, 0x42, /* cmp r5, r6 */
626 0xf9, 0xd0, /* beq wait_fifo */
627 0x2e, 0x88, /* ldrh r6, [r5, #0] */
628 0x26, 0x80, /* strh r6, [r4, #0] */
629 0x02, 0x35, /* adds r5, #2 */
630 0x02, 0x34, /* adds r4, #2 */
632 0xc6, 0x68, /* ldr r6, [r0, #STM32_FLASH_SR_OFFSET] */
633 0x01, 0x27, /* movs r7, #1 */
634 0x3e, 0x42, /* tst r6, r7 */
635 0xfb, 0xd1, /* bne busy */
636 0x14, 0x27, /* movs r7, #0x14 */
637 0x3e, 0x42, /* tst r6, r7 */
638 0x08, 0xd1, /* bne error */
639 0x9d, 0x42, /* cmp r5, r3 */
640 0x01, 0xd3, /* bcc no_wrap */
641 0x15, 0x46, /* mov r5, r2 */
642 0x08, 0x35, /* adds r5, #8 */
644 0x55, 0x60, /* str r5, [r2, #4] */
645 0x01, 0x39, /* subs r1, r1, #1 */
646 0x00, 0x29, /* cmp r1, #0 */
647 0x02, 0xd0, /* beq exit */
648 0xe5, 0xe7, /* b wait_fifo */
650 0x00, 0x20, /* movs r0, #0 */
651 0x50, 0x60, /* str r0, [r2, #4] */
653 0x30, 0x46, /* mov r0, r6 */
654 0x00, 0xbe, /* bkpt #0 */
657 /* flash write code */
658 if (target_alloc_working_area(target
, sizeof(stm32x_flash_write_code
),
659 &write_algorithm
) != ERROR_OK
) {
660 LOG_WARNING("no working area available, can't do block memory writes");
661 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE
;
664 retval
= target_write_buffer(target
, write_algorithm
->address
,
665 sizeof(stm32x_flash_write_code
), (uint8_t *)stm32x_flash_write_code
);
666 if (retval
!= ERROR_OK
)
670 while (target_alloc_working_area_try(target
, buffer_size
, &source
) != ERROR_OK
) {
672 buffer_size
&= ~3UL; /* Make sure it's 4 byte aligned */
673 if (buffer_size
<= 256) {
674 /* we already allocated the writing code, but failed to get a
675 * buffer, free the algorithm */
676 target_free_working_area(target
, write_algorithm
);
678 LOG_WARNING("no large enough working area available, can't do block memory writes");
679 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE
;
683 init_reg_param(®_params
[0], "r0", 32, PARAM_IN_OUT
); /* flash base (in), status (out) */
684 init_reg_param(®_params
[1], "r1", 32, PARAM_OUT
); /* count (halfword-16bit) */
685 init_reg_param(®_params
[2], "r2", 32, PARAM_OUT
); /* buffer start */
686 init_reg_param(®_params
[3], "r3", 32, PARAM_OUT
); /* buffer end */
687 init_reg_param(®_params
[4], "r4", 32, PARAM_IN_OUT
); /* target address */
689 buf_set_u32(reg_params
[0].value
, 0, 32, stm32x_info
->register_base
);
690 buf_set_u32(reg_params
[1].value
, 0, 32, count
);
691 buf_set_u32(reg_params
[2].value
, 0, 32, source
->address
);
692 buf_set_u32(reg_params
[3].value
, 0, 32, source
->address
+ source
->size
);
693 buf_set_u32(reg_params
[4].value
, 0, 32, address
);
695 armv7m_info
.common_magic
= ARMV7M_COMMON_MAGIC
;
696 armv7m_info
.core_mode
= ARMV7M_MODE_ANY
;
698 retval
= target_run_flash_async_algorithm(target
, buffer
, count
, 2,
701 source
->address
, source
->size
,
702 write_algorithm
->address
, 0,
705 if (retval
== ERROR_FLASH_OPERATION_FAILED
) {
706 LOG_ERROR("flash write failed at address 0x%"PRIx32
,
707 buf_get_u32(reg_params
[4].value
, 0, 32));
709 if (buf_get_u32(reg_params
[0].value
, 0, 32) & FLASH_PGERR
) {
710 LOG_ERROR("flash memory not erased before writing");
711 /* Clear but report errors */
712 target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_SR
), FLASH_PGERR
);
715 if (buf_get_u32(reg_params
[0].value
, 0, 32) & FLASH_WRPRTERR
) {
716 LOG_ERROR("flash memory write protected");
717 /* Clear but report errors */
718 target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_SR
), FLASH_WRPRTERR
);
722 target_free_working_area(target
, source
);
723 target_free_working_area(target
, write_algorithm
);
725 destroy_reg_param(®_params
[0]);
726 destroy_reg_param(®_params
[1]);
727 destroy_reg_param(®_params
[2]);
728 destroy_reg_param(®_params
[3]);
729 destroy_reg_param(®_params
[4]);
734 static int stm32x_write(struct flash_bank
*bank
, uint8_t *buffer
,
735 uint32_t offset
, uint32_t count
)
737 struct target
*target
= bank
->target
;
738 uint8_t *new_buffer
= NULL
;
740 if (bank
->target
->state
!= TARGET_HALTED
) {
741 LOG_ERROR("Target not halted");
742 return ERROR_TARGET_NOT_HALTED
;
746 LOG_ERROR("offset 0x%" PRIx32
" breaks required 2-byte alignment", offset
);
747 return ERROR_FLASH_DST_BREAKS_ALIGNMENT
;
750 /* If there's an odd number of bytes, the data has to be padded. Duplicate
751 * the buffer and use the normal code path with a single block write since
752 * it's probably cheaper than to special case the last odd write using
753 * discrete accesses. */
755 new_buffer
= malloc(count
+ 1);
756 if (new_buffer
== NULL
) {
757 LOG_ERROR("odd number of bytes to write and no memory for padding buffer");
760 LOG_INFO("odd number of bytes to write, padding with 0xff");
761 buffer
= memcpy(new_buffer
, buffer
, count
);
762 buffer
[count
++] = 0xff;
765 uint32_t words_remaining
= count
/ 2;
768 /* unlock flash registers */
769 retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_KEYR
), KEY1
);
770 if (retval
!= ERROR_OK
)
772 retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_KEYR
), KEY2
);
773 if (retval
!= ERROR_OK
)
776 retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_CR
), FLASH_PG
);
777 if (retval
!= ERROR_OK
)
780 /* try using a block write */
781 retval
= stm32x_write_block(bank
, buffer
, offset
, words_remaining
);
783 if (retval
== ERROR_TARGET_RESOURCE_NOT_AVAILABLE
) {
784 /* if block write failed (no sufficient working area),
785 * we use normal (slow) single halfword accesses */
786 LOG_WARNING("couldn't use block writes, falling back to single memory accesses");
788 while (words_remaining
> 0) {
790 memcpy(&value
, buffer
, sizeof(uint16_t));
792 retval
= target_write_u16(target
, bank
->base
+ offset
, value
);
793 if (retval
!= ERROR_OK
)
794 goto reset_pg_and_lock
;
796 retval
= stm32x_wait_status_busy(bank
, 5);
797 if (retval
!= ERROR_OK
)
798 goto reset_pg_and_lock
;
807 retval2
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_CR
), FLASH_LOCK
);
808 if (retval
== ERROR_OK
)
818 static int stm32x_get_device_id(struct flash_bank
*bank
, uint32_t *device_id
)
820 /* This check the device CPUID core register to detect
821 * the M0 from the M3 devices. */
823 struct target
*target
= bank
->target
;
824 uint32_t cpuid
, device_id_register
= 0;
826 /* Get the CPUID from the ARM Core
827 * http://infocenter.arm.com/help/topic/com.arm.doc.ddi0432c/DDI0432C_cortex_m0_r0p0_trm.pdf 4.2.1 */
828 int retval
= target_read_u32(target
, 0xE000ED00, &cpuid
);
829 if (retval
!= ERROR_OK
)
832 if (((cpuid
>> 4) & 0xFFF) == 0xC20) {
833 /* 0xC20 is M0 devices */
834 device_id_register
= 0x40015800;
835 } else if (((cpuid
>> 4) & 0xFFF) == 0xC23) {
836 /* 0xC23 is M3 devices */
837 device_id_register
= 0xE0042000;
838 } else if (((cpuid
>> 4) & 0xFFF) == 0xC24) {
839 /* 0xC24 is M4 devices */
840 device_id_register
= 0xE0042000;
842 LOG_ERROR("Cannot identify target as a stm32x");
846 /* read stm32 device id register */
847 retval
= target_read_u32(target
, device_id_register
, device_id
);
848 if (retval
!= ERROR_OK
)
854 static int stm32x_get_flash_size(struct flash_bank
*bank
, uint16_t *flash_size_in_kb
)
856 struct target
*target
= bank
->target
;
857 uint32_t cpuid
, flash_size_reg
;
859 int retval
= target_read_u32(target
, 0xE000ED00, &cpuid
);
860 if (retval
!= ERROR_OK
)
863 if (((cpuid
>> 4) & 0xFFF) == 0xC20) {
864 /* 0xC20 is M0 devices */
865 flash_size_reg
= 0x1FFFF7CC;
866 } else if (((cpuid
>> 4) & 0xFFF) == 0xC23) {
867 /* 0xC23 is M3 devices */
868 flash_size_reg
= 0x1FFFF7E0;
869 } else if (((cpuid
>> 4) & 0xFFF) == 0xC24) {
870 /* 0xC24 is M4 devices */
871 flash_size_reg
= 0x1FFFF7CC;
873 LOG_ERROR("Cannot identify target as a stm32x");
877 retval
= target_read_u16(target
, flash_size_reg
, flash_size_in_kb
);
878 if (retval
!= ERROR_OK
)
884 static int stm32x_probe(struct flash_bank
*bank
)
886 struct stm32x_flash_bank
*stm32x_info
= bank
->driver_priv
;
888 uint16_t flash_size_in_kb
;
889 uint16_t max_flash_size_in_kb
;
892 uint32_t base_address
= 0x08000000;
894 stm32x_info
->probed
= 0;
895 stm32x_info
->register_base
= FLASH_REG_BASE_B0
;
897 /* read stm32 device id register */
898 int retval
= stm32x_get_device_id(bank
, &device_id
);
899 if (retval
!= ERROR_OK
)
902 LOG_INFO("device id = 0x%08" PRIx32
"", device_id
);
904 /* set page size, protection granularity and max flash size depending on family */
905 switch (device_id
& 0xfff) {
906 case 0x410: /* medium density */
908 stm32x_info
->ppage_size
= 4;
909 max_flash_size_in_kb
= 128;
911 case 0x412: /* low density */
913 stm32x_info
->ppage_size
= 4;
914 max_flash_size_in_kb
= 32;
916 case 0x414: /* high density */
918 stm32x_info
->ppage_size
= 2;
919 max_flash_size_in_kb
= 512;
921 case 0x418: /* connectivity line density */
923 stm32x_info
->ppage_size
= 2;
924 max_flash_size_in_kb
= 256;
926 case 0x420: /* value line density */
928 stm32x_info
->ppage_size
= 4;
929 max_flash_size_in_kb
= 128;
931 case 0x422: /* stm32f30x */
933 stm32x_info
->ppage_size
= 2;
934 max_flash_size_in_kb
= 256;
936 case 0x428: /* value line High density */
938 stm32x_info
->ppage_size
= 4;
939 max_flash_size_in_kb
= 128;
941 case 0x430: /* xl line density (dual flash banks) */
943 stm32x_info
->ppage_size
= 2;
944 max_flash_size_in_kb
= 1024;
945 stm32x_info
->has_dual_banks
= true;
947 case 0x432: /* stm32f37x */
949 stm32x_info
->ppage_size
= 2;
950 max_flash_size_in_kb
= 256;
952 case 0x440: /* stm32f0x */
954 stm32x_info
->ppage_size
= 4;
955 max_flash_size_in_kb
= 64;
958 LOG_WARNING("Cannot identify target as a STM32 family.");
962 /* get flash size from target. */
963 retval
= stm32x_get_flash_size(bank
, &flash_size_in_kb
);
965 /* failed reading flash size or flash size invalid (early silicon),
966 * default to max target family */
967 if (retval
!= ERROR_OK
|| flash_size_in_kb
== 0xffff || flash_size_in_kb
== 0) {
968 LOG_WARNING("STM32 flash size failed, probe inaccurate - assuming %dk flash",
969 max_flash_size_in_kb
);
970 flash_size_in_kb
= max_flash_size_in_kb
;
973 if (stm32x_info
->has_dual_banks
) {
974 /* split reported size into matching bank */
975 if (bank
->base
!= 0x08080000) {
976 /* bank 0 will be fixed 512k */
977 flash_size_in_kb
= 512;
979 flash_size_in_kb
-= 512;
980 /* bank1 also uses a register offset */
981 stm32x_info
->register_base
= FLASH_REG_BASE_B1
;
982 base_address
= 0x08080000;
986 LOG_INFO("flash size = %dkbytes", flash_size_in_kb
);
988 /* did we assign flash size? */
989 assert(flash_size_in_kb
!= 0xffff);
991 /* calculate numbers of pages */
992 int num_pages
= flash_size_in_kb
* 1024 / page_size
;
994 /* check that calculation result makes sense */
995 assert(num_pages
> 0);
999 bank
->sectors
= NULL
;
1002 bank
->base
= base_address
;
1003 bank
->size
= (num_pages
* page_size
);
1004 bank
->num_sectors
= num_pages
;
1005 bank
->sectors
= malloc(sizeof(struct flash_sector
) * num_pages
);
1007 for (i
= 0; i
< num_pages
; i
++) {
1008 bank
->sectors
[i
].offset
= i
* page_size
;
1009 bank
->sectors
[i
].size
= page_size
;
1010 bank
->sectors
[i
].is_erased
= -1;
1011 bank
->sectors
[i
].is_protected
= 1;
1014 stm32x_info
->probed
= 1;
1019 static int stm32x_auto_probe(struct flash_bank
*bank
)
1021 struct stm32x_flash_bank
*stm32x_info
= bank
->driver_priv
;
1022 if (stm32x_info
->probed
)
1024 return stm32x_probe(bank
);
1028 COMMAND_HANDLER(stm32x_handle_part_id_command
)
1034 static int get_stm32x_info(struct flash_bank
*bank
, char *buf
, int buf_size
)
1039 /* read stm32 device id register */
1040 int retval
= stm32x_get_device_id(bank
, &device_id
);
1041 if (retval
!= ERROR_OK
)
1044 if ((device_id
& 0xfff) == 0x410) {
1045 printed
= snprintf(buf
, buf_size
, "stm32x (Medium Density) - Rev: ");
1047 buf_size
-= printed
;
1049 switch (device_id
>> 16) {
1051 snprintf(buf
, buf_size
, "A");
1055 snprintf(buf
, buf_size
, "B");
1059 snprintf(buf
, buf_size
, "Z");
1063 snprintf(buf
, buf_size
, "Y");
1067 snprintf(buf
, buf_size
, "unknown");
1070 } else if ((device_id
& 0xfff) == 0x412) {
1071 printed
= snprintf(buf
, buf_size
, "stm32x (Low Density) - Rev: ");
1073 buf_size
-= printed
;
1075 switch (device_id
>> 16) {
1077 snprintf(buf
, buf_size
, "A");
1081 snprintf(buf
, buf_size
, "unknown");
1084 } else if ((device_id
& 0xfff) == 0x414) {
1085 printed
= snprintf(buf
, buf_size
, "stm32x (High Density) - Rev: ");
1087 buf_size
-= printed
;
1089 switch (device_id
>> 16) {
1091 snprintf(buf
, buf_size
, "A");
1095 snprintf(buf
, buf_size
, "Z");
1099 snprintf(buf
, buf_size
, "unknown");
1102 } else if ((device_id
& 0xfff) == 0x418) {
1103 printed
= snprintf(buf
, buf_size
, "stm32x (Connectivity) - Rev: ");
1105 buf_size
-= printed
;
1107 switch (device_id
>> 16) {
1109 snprintf(buf
, buf_size
, "A");
1113 snprintf(buf
, buf_size
, "Z");
1117 snprintf(buf
, buf_size
, "unknown");
1120 } else if ((device_id
& 0xfff) == 0x420) {
1121 printed
= snprintf(buf
, buf_size
, "stm32x (Value) - Rev: ");
1123 buf_size
-= printed
;
1125 switch (device_id
>> 16) {
1127 snprintf(buf
, buf_size
, "A");
1131 snprintf(buf
, buf_size
, "Z");
1135 snprintf(buf
, buf_size
, "unknown");
1138 } else if ((device_id
& 0xfff) == 0x422) {
1139 printed
= snprintf(buf
, buf_size
, "stm32f30x - Rev: ");
1141 buf_size
-= printed
;
1143 switch (device_id
>> 16) {
1145 snprintf(buf
, buf_size
, "A");
1149 snprintf(buf
, buf_size
, "Z");
1153 snprintf(buf
, buf_size
, "B");
1157 snprintf(buf
, buf_size
, "unknown");
1160 } else if ((device_id
& 0xfff) == 0x428) {
1161 printed
= snprintf(buf
, buf_size
, "stm32x (Value HD) - Rev: ");
1163 buf_size
-= printed
;
1165 switch (device_id
>> 16) {
1167 snprintf(buf
, buf_size
, "A");
1171 snprintf(buf
, buf_size
, "Z");
1175 snprintf(buf
, buf_size
, "unknown");
1178 } else if ((device_id
& 0xfff) == 0x430) {
1179 printed
= snprintf(buf
, buf_size
, "stm32x (XL) - Rev: ");
1181 buf_size
-= printed
;
1183 switch (device_id
>> 16) {
1185 snprintf(buf
, buf_size
, "A");
1189 snprintf(buf
, buf_size
, "unknown");
1192 } else if ((device_id
& 0xfff) == 0x432) {
1193 printed
= snprintf(buf
, buf_size
, "stm32f37x - Rev: ");
1195 buf_size
-= printed
;
1197 switch (device_id
>> 16) {
1199 snprintf(buf
, buf_size
, "A");
1203 snprintf(buf
, buf_size
, "B");
1207 snprintf(buf
, buf_size
, "unknown");
1210 } else if ((device_id
& 0xfff) == 0x440) {
1211 printed
= snprintf(buf
, buf_size
, "stm32f0x - Rev: ");
1213 buf_size
-= printed
;
1215 switch (device_id
>> 16) {
1217 snprintf(buf
, buf_size
, "1.0");
1221 snprintf(buf
, buf_size
, "2.0");
1225 snprintf(buf
, buf_size
, "unknown");
1229 snprintf(buf
, buf_size
, "Cannot identify target as a stm32x\n");
1236 COMMAND_HANDLER(stm32x_handle_lock_command
)
1238 struct target
*target
= NULL
;
1239 struct stm32x_flash_bank
*stm32x_info
= NULL
;
1242 return ERROR_COMMAND_SYNTAX_ERROR
;
1244 struct flash_bank
*bank
;
1245 int retval
= CALL_COMMAND_HANDLER(flash_command_get_bank
, 0, &bank
);
1246 if (ERROR_OK
!= retval
)
1249 stm32x_info
= bank
->driver_priv
;
1251 target
= bank
->target
;
1253 if (target
->state
!= TARGET_HALTED
) {
1254 LOG_ERROR("Target not halted");
1255 return ERROR_TARGET_NOT_HALTED
;
1258 retval
= stm32x_check_operation_supported(bank
);
1259 if (ERROR_OK
!= retval
)
1262 if (stm32x_erase_options(bank
) != ERROR_OK
) {
1263 command_print(CMD_CTX
, "stm32x failed to erase options");
1267 /* set readout protection */
1268 stm32x_info
->option_bytes
.RDP
= 0;
1270 if (stm32x_write_options(bank
) != ERROR_OK
) {
1271 command_print(CMD_CTX
, "stm32x failed to lock device");
1275 command_print(CMD_CTX
, "stm32x locked");
1280 COMMAND_HANDLER(stm32x_handle_unlock_command
)
1282 struct target
*target
= NULL
;
1285 return ERROR_COMMAND_SYNTAX_ERROR
;
1287 struct flash_bank
*bank
;
1288 int retval
= CALL_COMMAND_HANDLER(flash_command_get_bank
, 0, &bank
);
1289 if (ERROR_OK
!= retval
)
1292 target
= bank
->target
;
1294 if (target
->state
!= TARGET_HALTED
) {
1295 LOG_ERROR("Target not halted");
1296 return ERROR_TARGET_NOT_HALTED
;
1299 retval
= stm32x_check_operation_supported(bank
);
1300 if (ERROR_OK
!= retval
)
1303 if (stm32x_erase_options(bank
) != ERROR_OK
) {
1304 command_print(CMD_CTX
, "stm32x failed to unlock device");
1308 if (stm32x_write_options(bank
) != ERROR_OK
) {
1309 command_print(CMD_CTX
, "stm32x failed to lock device");
1313 command_print(CMD_CTX
, "stm32x unlocked.\n"
1314 "INFO: a reset or power cycle is required "
1315 "for the new settings to take effect.");
1320 COMMAND_HANDLER(stm32x_handle_options_read_command
)
1322 uint32_t optionbyte
;
1323 struct target
*target
= NULL
;
1324 struct stm32x_flash_bank
*stm32x_info
= NULL
;
1327 return ERROR_COMMAND_SYNTAX_ERROR
;
1329 struct flash_bank
*bank
;
1330 int retval
= CALL_COMMAND_HANDLER(flash_command_get_bank
, 0, &bank
);
1331 if (ERROR_OK
!= retval
)
1334 stm32x_info
= bank
->driver_priv
;
1336 target
= bank
->target
;
1338 if (target
->state
!= TARGET_HALTED
) {
1339 LOG_ERROR("Target not halted");
1340 return ERROR_TARGET_NOT_HALTED
;
1343 retval
= stm32x_check_operation_supported(bank
);
1344 if (ERROR_OK
!= retval
)
1347 retval
= target_read_u32(target
, STM32_FLASH_OBR_B0
, &optionbyte
);
1348 if (retval
!= ERROR_OK
)
1350 command_print(CMD_CTX
, "Option Byte: 0x%" PRIx32
"", optionbyte
);
1352 if (buf_get_u32((uint8_t *)&optionbyte
, OPT_ERROR
, 1))
1353 command_print(CMD_CTX
, "Option Byte Complement Error");
1355 if (buf_get_u32((uint8_t *)&optionbyte
, OPT_READOUT
, 1))
1356 command_print(CMD_CTX
, "Readout Protection On");
1358 command_print(CMD_CTX
, "Readout Protection Off");
1360 if (buf_get_u32((uint8_t *)&optionbyte
, OPT_RDWDGSW
, 1))
1361 command_print(CMD_CTX
, "Software Watchdog");
1363 command_print(CMD_CTX
, "Hardware Watchdog");
1365 if (buf_get_u32((uint8_t *)&optionbyte
, OPT_RDRSTSTOP
, 1))
1366 command_print(CMD_CTX
, "Stop: No reset generated");
1368 command_print(CMD_CTX
, "Stop: Reset generated");
1370 if (buf_get_u32((uint8_t *)&optionbyte
, OPT_RDRSTSTDBY
, 1))
1371 command_print(CMD_CTX
, "Standby: No reset generated");
1373 command_print(CMD_CTX
, "Standby: Reset generated");
1375 if (stm32x_info
->has_dual_banks
) {
1376 if (buf_get_u32((uint8_t *)&optionbyte
, OPT_BFB2
, 1))
1377 command_print(CMD_CTX
, "Boot: Bank 0");
1379 command_print(CMD_CTX
, "Boot: Bank 1");
1385 COMMAND_HANDLER(stm32x_handle_options_write_command
)
1387 struct target
*target
= NULL
;
1388 struct stm32x_flash_bank
*stm32x_info
= NULL
;
1389 uint16_t optionbyte
= 0xF8;
1392 return ERROR_COMMAND_SYNTAX_ERROR
;
1394 struct flash_bank
*bank
;
1395 int retval
= CALL_COMMAND_HANDLER(flash_command_get_bank
, 0, &bank
);
1396 if (ERROR_OK
!= retval
)
1399 stm32x_info
= bank
->driver_priv
;
1401 target
= bank
->target
;
1403 if (target
->state
!= TARGET_HALTED
) {
1404 LOG_ERROR("Target not halted");
1405 return ERROR_TARGET_NOT_HALTED
;
1408 retval
= stm32x_check_operation_supported(bank
);
1409 if (ERROR_OK
!= retval
)
1412 /* REVISIT: ignores some options which we will display...
1413 * and doesn't insist on the specified syntax.
1417 if (strcmp(CMD_ARGV
[1], "SWWDG") == 0)
1418 optionbyte
|= (1 << 0);
1419 else /* REVISIT must be "HWWDG" then ... */
1420 optionbyte
&= ~(1 << 0);
1423 if (strcmp(CMD_ARGV
[2], "NORSTSTOP") == 0)
1424 optionbyte
|= (1 << 1);
1425 else /* REVISIT must be "RSTSTNDBY" then ... */
1426 optionbyte
&= ~(1 << 1);
1428 /* OPT_RDRSTSTDBY */
1429 if (strcmp(CMD_ARGV
[3], "NORSTSTNDBY") == 0)
1430 optionbyte
|= (1 << 2);
1431 else /* REVISIT must be "RSTSTOP" then ... */
1432 optionbyte
&= ~(1 << 2);
1434 if (CMD_ARGC
> 4 && stm32x_info
->has_dual_banks
) {
1436 if (strcmp(CMD_ARGV
[4], "BOOT0") == 0)
1437 optionbyte
|= (1 << 3);
1439 optionbyte
&= ~(1 << 3);
1442 if (stm32x_erase_options(bank
) != ERROR_OK
) {
1443 command_print(CMD_CTX
, "stm32x failed to erase options");
1447 stm32x_info
->option_bytes
.user_options
= optionbyte
;
1449 if (stm32x_write_options(bank
) != ERROR_OK
) {
1450 command_print(CMD_CTX
, "stm32x failed to write options");
1454 command_print(CMD_CTX
, "stm32x write options complete.\n"
1455 "INFO: a reset or power cycle is required "
1456 "for the new settings to take effect.");
1461 static int stm32x_mass_erase(struct flash_bank
*bank
)
1463 struct target
*target
= bank
->target
;
1465 if (target
->state
!= TARGET_HALTED
) {
1466 LOG_ERROR("Target not halted");
1467 return ERROR_TARGET_NOT_HALTED
;
1470 /* unlock option flash registers */
1471 int retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_KEYR
), KEY1
);
1472 if (retval
!= ERROR_OK
)
1474 retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_KEYR
), KEY2
);
1475 if (retval
!= ERROR_OK
)
1478 /* mass erase flash memory */
1479 retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_CR
), FLASH_MER
);
1480 if (retval
!= ERROR_OK
)
1482 retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_CR
),
1483 FLASH_MER
| FLASH_STRT
);
1484 if (retval
!= ERROR_OK
)
1487 retval
= stm32x_wait_status_busy(bank
, FLASH_ERASE_TIMEOUT
);
1488 if (retval
!= ERROR_OK
)
1491 retval
= target_write_u32(target
, stm32x_get_flash_reg(bank
, STM32_FLASH_CR
), FLASH_LOCK
);
1492 if (retval
!= ERROR_OK
)
1498 COMMAND_HANDLER(stm32x_handle_mass_erase_command
)
1503 return ERROR_COMMAND_SYNTAX_ERROR
;
1505 struct flash_bank
*bank
;
1506 int retval
= CALL_COMMAND_HANDLER(flash_command_get_bank
, 0, &bank
);
1507 if (ERROR_OK
!= retval
)
1510 retval
= stm32x_mass_erase(bank
);
1511 if (retval
== ERROR_OK
) {
1512 /* set all sectors as erased */
1513 for (i
= 0; i
< bank
->num_sectors
; i
++)
1514 bank
->sectors
[i
].is_erased
= 1;
1516 command_print(CMD_CTX
, "stm32x mass erase complete");
1518 command_print(CMD_CTX
, "stm32x mass erase failed");
1523 static const struct command_registration stm32x_exec_command_handlers
[] = {
1526 .handler
= stm32x_handle_lock_command
,
1527 .mode
= COMMAND_EXEC
,
1529 .help
= "Lock entire flash device.",
1533 .handler
= stm32x_handle_unlock_command
,
1534 .mode
= COMMAND_EXEC
,
1536 .help
= "Unlock entire protected flash device.",
1539 .name
= "mass_erase",
1540 .handler
= stm32x_handle_mass_erase_command
,
1541 .mode
= COMMAND_EXEC
,
1543 .help
= "Erase entire flash device.",
1546 .name
= "options_read",
1547 .handler
= stm32x_handle_options_read_command
,
1548 .mode
= COMMAND_EXEC
,
1550 .help
= "Read and display device option byte.",
1553 .name
= "options_write",
1554 .handler
= stm32x_handle_options_write_command
,
1555 .mode
= COMMAND_EXEC
,
1556 .usage
= "bank_id ('SWWDG'|'HWWDG') "
1557 "('RSTSTNDBY'|'NORSTSTNDBY') "
1558 "('RSTSTOP'|'NORSTSTOP')",
1559 .help
= "Replace bits in device option byte.",
1561 COMMAND_REGISTRATION_DONE
1564 static const struct command_registration stm32x_command_handlers
[] = {
1567 .mode
= COMMAND_ANY
,
1568 .help
= "stm32f1x flash command group",
1570 .chain
= stm32x_exec_command_handlers
,
1572 COMMAND_REGISTRATION_DONE
1575 struct flash_driver stm32f1x_flash
= {
1577 .commands
= stm32x_command_handlers
,
1578 .flash_bank_command
= stm32x_flash_bank_command
,
1579 .erase
= stm32x_erase
,
1580 .protect
= stm32x_protect
,
1581 .write
= stm32x_write
,
1582 .read
= default_flash_read
,
1583 .probe
= stm32x_probe
,
1584 .auto_probe
= stm32x_auto_probe
,
1585 .erase_check
= default_flash_blank_check
,
1586 .protect_check
= stm32x_protect_check
,
1587 .info
= get_stm32x_info
,