2015-08-22 11:36:52 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2015 by Uwe Bonnes *
|
|
|
|
* bon@elektron.ikp.physik.tu-darmstadt.de *
|
2020-01-05 16:19:41 -06:00
|
|
|
* *
|
|
|
|
* Copyright (C) 2019 by Tarek Bochkati for STMicroelectronics *
|
|
|
|
* tarek.bouchkati@gmail.com *
|
|
|
|
* *
|
2015-08-22 11:36:52 -05:00
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
2016-05-16 15:41:00 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
2015-08-22 11:36:52 -05:00
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "imp.h"
|
2021-05-13 17:48:31 -05:00
|
|
|
#include <helper/align.h>
|
2015-08-22 11:36:52 -05:00
|
|
|
#include <helper/binarybuffer.h>
|
|
|
|
#include <target/algorithm.h>
|
|
|
|
#include <target/armv7m.h>
|
2020-01-05 16:19:41 -06:00
|
|
|
#include "bits.h"
|
2018-12-16 10:30:41 -06:00
|
|
|
#include "stm32l4x.h"
|
2015-08-22 11:36:52 -05:00
|
|
|
|
|
|
|
/* STM32L4xxx series for reference.
|
|
|
|
*
|
2017-05-04 05:43:08 -05:00
|
|
|
* RM0351 (STM32L4x5/STM32L4x6)
|
|
|
|
* http://www.st.com/resource/en/reference_manual/dm00083560.pdf
|
2015-08-22 11:36:52 -05:00
|
|
|
*
|
2017-05-04 05:43:08 -05:00
|
|
|
* RM0394 (STM32L43x/44x/45x/46x)
|
|
|
|
* http://www.st.com/resource/en/reference_manual/dm00151940.pdf
|
2015-08-22 11:36:52 -05:00
|
|
|
*
|
2018-11-23 07:40:39 -06:00
|
|
|
* RM0432 (STM32L4R/4Sxx)
|
|
|
|
* http://www.st.com/resource/en/reference_manual/dm00310109.pdf
|
|
|
|
*
|
2017-05-04 05:43:08 -05:00
|
|
|
* STM32L476RG Datasheet (for erase timing)
|
|
|
|
* http://www.st.com/resource/en/datasheet/stm32l476rg.pdf
|
2015-08-22 11:36:52 -05:00
|
|
|
*
|
2017-05-04 05:43:08 -05:00
|
|
|
* The RM0351 devices have normally two banks, but on 512 and 256 kiB devices
|
|
|
|
* an option byte is available to map all sectors to the first bank.
|
2015-08-22 11:36:52 -05:00
|
|
|
* Both STM32 banks are treated as one OpenOCD bank, as other STM32 devices
|
|
|
|
* handlers do!
|
|
|
|
*
|
2017-05-04 05:43:08 -05:00
|
|
|
* RM0394 devices have a single bank only.
|
|
|
|
*
|
2018-11-23 07:40:39 -06:00
|
|
|
* RM0432 devices have single and dual bank operating modes.
|
2020-01-06 11:33:42 -06:00
|
|
|
* - for STM32L4R/Sxx the FLASH size is 2Mbyte or 1Mbyte.
|
|
|
|
* - for STM32L4P/Q5x the FLASH size is 1Mbyte or 512Kbyte.
|
2018-11-23 07:40:39 -06:00
|
|
|
* Bank page (sector) size is 4Kbyte (dual mode) or 8Kbyte (single mode).
|
|
|
|
*
|
|
|
|
* Bank mode is controlled by two different bits in option bytes register.
|
2020-01-06 11:33:42 -06:00
|
|
|
* - for STM32L4R/Sxx
|
|
|
|
* In 2M FLASH devices bit 22 (DBANK) controls Dual Bank mode.
|
|
|
|
* In 1M FLASH devices bit 21 (DB1M) controls Dual Bank mode.
|
|
|
|
* - for STM32L4P5/Q5x
|
|
|
|
* In 1M FLASH devices bit 22 (DBANK) controls Dual Bank mode.
|
|
|
|
* In 512K FLASH devices bit 21 (DB512K) controls Dual Bank mode.
|
2018-11-23 07:40:39 -06:00
|
|
|
*
|
2015-08-22 11:36:52 -05:00
|
|
|
*/
|
|
|
|
|
2018-12-16 10:30:41 -06:00
|
|
|
/* STM32WBxxx series for reference.
|
|
|
|
*
|
|
|
|
* RM0434 (STM32WB55)
|
|
|
|
* http://www.st.com/resource/en/reference_manual/dm00318631.pdf
|
|
|
|
*
|
|
|
|
* RM0471 (STM32WB50)
|
|
|
|
* http://www.st.com/resource/en/reference_manual/dm00622834.pdf
|
|
|
|
*/
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2020-03-09 09:10:17 -05:00
|
|
|
/* STM32WLxxx series for reference.
|
|
|
|
*
|
|
|
|
* RM0461 (STM32WLEx)
|
|
|
|
* http://www.st.com/resource/en/reference_manual/dm00530369.pdf
|
|
|
|
*/
|
|
|
|
|
2020-11-02 18:58:59 -06:00
|
|
|
/* STM32G0xxx series for reference.
|
2018-12-16 10:30:41 -06:00
|
|
|
*
|
|
|
|
* RM0444 (STM32G0x1)
|
|
|
|
* http://www.st.com/resource/en/reference_manual/dm00371828.pdf
|
|
|
|
*
|
|
|
|
* RM0454 (STM32G0x0)
|
|
|
|
* http://www.st.com/resource/en/reference_manual/dm00463896.pdf
|
|
|
|
*/
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2020-11-02 18:58:59 -06:00
|
|
|
/* STM32G4xxx series for reference.
|
2018-12-16 10:30:41 -06:00
|
|
|
*
|
2020-10-15 11:05:48 -05:00
|
|
|
* RM0440 (STM32G43x/44x/47x/48x/49x/4Ax)
|
2018-12-16 10:30:41 -06:00
|
|
|
* http://www.st.com/resource/en/reference_manual/dm00355726.pdf
|
|
|
|
*
|
|
|
|
* Cat. 2 devices have single bank only, page size is 2kByte.
|
|
|
|
*
|
|
|
|
* Cat. 3 devices have single and dual bank operating modes,
|
|
|
|
* Page size is 2kByte (dual mode) or 4kByte (single mode).
|
|
|
|
*
|
|
|
|
* Bank mode is controlled by bit 22 (DBANK) in option bytes register.
|
|
|
|
* Both banks are treated as a single OpenOCD bank.
|
2020-10-15 11:05:48 -05:00
|
|
|
*
|
|
|
|
* Cat. 4 devices have single bank only, page size is 2kByte.
|
2018-12-16 10:30:41 -06:00
|
|
|
*/
|
2020-01-05 16:19:41 -06:00
|
|
|
|
2020-03-25 10:33:30 -05:00
|
|
|
/* STM32L5xxx series for reference.
|
|
|
|
*
|
|
|
|
* RM0428 (STM32L552xx/STM32L562xx)
|
|
|
|
* http://www.st.com/resource/en/reference_manual/dm00346336.pdf
|
|
|
|
*/
|
|
|
|
|
2018-12-16 10:30:41 -06:00
|
|
|
/* Erase time can be as high as 25ms, 10x this and assume it's toast... */
|
|
|
|
|
|
|
|
#define FLASH_ERASE_TIMEOUT 250
|
2020-01-05 16:19:41 -06:00
|
|
|
|
2020-11-02 18:07:00 -06:00
|
|
|
|
|
|
|
/* relevant STM32L4 flags ****************************************************/
|
|
|
|
#define F_NONE 0
|
|
|
|
/* this flag indicates if the device flash is with dual bank architecture */
|
|
|
|
#define F_HAS_DUAL_BANK BIT(0)
|
|
|
|
/* this flags is used for dual bank devices only, it indicates if the
|
|
|
|
* 4 WRPxx are usable if the device is configured in single-bank mode */
|
|
|
|
#define F_USE_ALL_WRPXX BIT(1)
|
|
|
|
/* this flag indicates if the device embeds a TrustZone security feature */
|
|
|
|
#define F_HAS_TZ BIT(2)
|
|
|
|
/* end of STM32L4 flags ******************************************************/
|
|
|
|
|
|
|
|
|
2020-11-02 18:58:59 -06:00
|
|
|
enum stm32l4_flash_reg_index {
|
|
|
|
STM32_FLASH_ACR_INDEX,
|
|
|
|
STM32_FLASH_KEYR_INDEX,
|
|
|
|
STM32_FLASH_OPTKEYR_INDEX,
|
|
|
|
STM32_FLASH_SR_INDEX,
|
|
|
|
STM32_FLASH_CR_INDEX,
|
|
|
|
STM32_FLASH_OPTR_INDEX,
|
|
|
|
STM32_FLASH_WRP1AR_INDEX,
|
|
|
|
STM32_FLASH_WRP1BR_INDEX,
|
|
|
|
STM32_FLASH_WRP2AR_INDEX,
|
|
|
|
STM32_FLASH_WRP2BR_INDEX,
|
|
|
|
STM32_FLASH_REG_INDEX_NUM,
|
|
|
|
};
|
|
|
|
|
2020-11-02 18:22:53 -06:00
|
|
|
enum stm32l4_rdp {
|
|
|
|
RDP_LEVEL_0 = 0xAA,
|
|
|
|
RDP_LEVEL_0_5 = 0x55, /* for devices with TrustZone enabled */
|
|
|
|
RDP_LEVEL_1 = 0x00,
|
|
|
|
RDP_LEVEL_2 = 0xCC
|
|
|
|
};
|
|
|
|
|
2020-11-02 18:58:59 -06:00
|
|
|
static const uint32_t stm32l4_flash_regs[STM32_FLASH_REG_INDEX_NUM] = {
|
|
|
|
[STM32_FLASH_ACR_INDEX] = 0x000,
|
|
|
|
[STM32_FLASH_KEYR_INDEX] = 0x008,
|
|
|
|
[STM32_FLASH_OPTKEYR_INDEX] = 0x00C,
|
|
|
|
[STM32_FLASH_SR_INDEX] = 0x010,
|
|
|
|
[STM32_FLASH_CR_INDEX] = 0x014,
|
|
|
|
[STM32_FLASH_OPTR_INDEX] = 0x020,
|
|
|
|
[STM32_FLASH_WRP1AR_INDEX] = 0x02C,
|
|
|
|
[STM32_FLASH_WRP1BR_INDEX] = 0x030,
|
|
|
|
[STM32_FLASH_WRP2AR_INDEX] = 0x04C,
|
|
|
|
[STM32_FLASH_WRP2BR_INDEX] = 0x050,
|
|
|
|
};
|
|
|
|
|
2020-03-25 10:33:30 -05:00
|
|
|
static const uint32_t stm32l5_ns_flash_regs[STM32_FLASH_REG_INDEX_NUM] = {
|
|
|
|
[STM32_FLASH_ACR_INDEX] = 0x000,
|
|
|
|
[STM32_FLASH_KEYR_INDEX] = 0x008,
|
|
|
|
[STM32_FLASH_OPTKEYR_INDEX] = 0x010,
|
|
|
|
[STM32_FLASH_SR_INDEX] = 0x020,
|
|
|
|
[STM32_FLASH_CR_INDEX] = 0x028,
|
|
|
|
[STM32_FLASH_OPTR_INDEX] = 0x040,
|
|
|
|
[STM32_FLASH_WRP1AR_INDEX] = 0x058,
|
|
|
|
[STM32_FLASH_WRP1BR_INDEX] = 0x05C,
|
|
|
|
[STM32_FLASH_WRP2AR_INDEX] = 0x068,
|
|
|
|
[STM32_FLASH_WRP2BR_INDEX] = 0x06C,
|
|
|
|
};
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
struct stm32l4_rev {
|
|
|
|
const uint16_t rev;
|
|
|
|
const char *str;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct stm32l4_part_info {
|
|
|
|
uint16_t id;
|
|
|
|
const char *device_str;
|
|
|
|
const struct stm32l4_rev *revs;
|
|
|
|
const size_t num_revs;
|
|
|
|
const uint16_t max_flash_size_kb;
|
2020-11-02 18:07:00 -06:00
|
|
|
const uint32_t flags; /* one bit per feature, see STM32L4 flags: macros F_XXX */
|
2020-01-05 16:19:41 -06:00
|
|
|
const uint32_t flash_regs_base;
|
2020-11-02 18:58:59 -06:00
|
|
|
const uint32_t *default_flash_regs;
|
2020-01-05 16:19:41 -06:00
|
|
|
const uint32_t fsize_addr;
|
2020-03-22 14:39:44 -05:00
|
|
|
const uint32_t otp_base;
|
|
|
|
const uint32_t otp_size;
|
2020-01-05 16:19:41 -06:00
|
|
|
};
|
2015-08-22 11:36:52 -05:00
|
|
|
|
|
|
|
struct stm32l4_flash_bank {
|
2020-02-10 08:37:45 -06:00
|
|
|
bool probed;
|
2020-01-05 16:19:41 -06:00
|
|
|
uint32_t idcode;
|
2020-06-07 10:00:13 -05:00
|
|
|
unsigned int bank1_sectors;
|
2020-01-05 16:19:41 -06:00
|
|
|
bool dual_bank_mode;
|
|
|
|
int hole_sectors;
|
2018-12-16 10:30:41 -06:00
|
|
|
uint32_t user_bank_size;
|
|
|
|
uint32_t wrpxxr_mask;
|
2020-01-05 16:19:41 -06:00
|
|
|
const struct stm32l4_part_info *part_info;
|
2020-11-02 18:58:59 -06:00
|
|
|
const uint32_t *flash_regs;
|
2020-03-22 14:39:44 -05:00
|
|
|
bool otp_enabled;
|
2020-11-02 18:22:53 -06:00
|
|
|
enum stm32l4_rdp rdp;
|
|
|
|
bool tzen;
|
2015-08-22 11:36:52 -05:00
|
|
|
};
|
|
|
|
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
enum stm32_bank_id {
|
|
|
|
STM32_BANK1,
|
|
|
|
STM32_BANK2,
|
|
|
|
STM32_ALL_BANKS
|
|
|
|
};
|
|
|
|
|
|
|
|
struct stm32l4_wrp {
|
|
|
|
enum stm32l4_flash_reg_index reg_idx;
|
|
|
|
uint32_t value;
|
|
|
|
bool used;
|
|
|
|
int first;
|
|
|
|
int last;
|
|
|
|
int offset;
|
|
|
|
};
|
|
|
|
|
2020-11-02 18:58:59 -06:00
|
|
|
/* human readable list of families this drivers supports (sorted alphabetically) */
|
2020-03-25 10:33:30 -05:00
|
|
|
static const char *device_families = "STM32G0/G4/L4/L4+/L5/WB/WL";
|
2018-12-16 10:30:41 -06:00
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
static const struct stm32l4_rev stm32_415_revs[] = {
|
|
|
|
{ 0x1000, "1" }, { 0x1001, "2" }, { 0x1003, "3" }, { 0x1007, "4" }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct stm32l4_rev stm32_435_revs[] = {
|
|
|
|
{ 0x1000, "A" }, { 0x1001, "Z" }, { 0x2001, "Y" },
|
|
|
|
};
|
|
|
|
|
2018-12-16 10:30:41 -06:00
|
|
|
static const struct stm32l4_rev stm32_460_revs[] = {
|
|
|
|
{ 0x1000, "A/Z" } /* A and Z, no typo in RM! */, { 0x2000, "B" },
|
|
|
|
};
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
static const struct stm32l4_rev stm32_461_revs[] = {
|
|
|
|
{ 0x1000, "A" }, { 0x2000, "B" },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct stm32l4_rev stm32_462_revs[] = {
|
2018-12-16 10:30:41 -06:00
|
|
|
{ 0x1000, "A" }, { 0x1001, "Z" }, { 0x2001, "Y" },
|
2020-01-05 16:19:41 -06:00
|
|
|
};
|
|
|
|
|
2020-01-06 08:47:09 -06:00
|
|
|
static const struct stm32l4_rev stm32_464_revs[] = {
|
2018-12-16 10:30:41 -06:00
|
|
|
{ 0x1000, "A" }, { 0x1001, "Z" }, { 0x2001, "Y" },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct stm32l4_rev stm32_466_revs[] = {
|
|
|
|
{ 0x1000, "A" }, { 0x1001, "Z" }, { 0x2000, "B" },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct stm32l4_rev stm32_468_revs[] = {
|
|
|
|
{ 0x1000, "A" }, { 0x2000, "B" }, { 0x2001, "Z" },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct stm32l4_rev stm32_469_revs[] = {
|
|
|
|
{ 0x1000, "A" }, { 0x2000, "B" }, { 0x2001, "Z" },
|
2020-01-06 08:47:09 -06:00
|
|
|
};
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
static const struct stm32l4_rev stm32_470_revs[] = {
|
|
|
|
{ 0x1000, "A" }, { 0x1001, "Z" }, { 0x1003, "Y" }, { 0x100F, "W" },
|
|
|
|
};
|
|
|
|
|
2020-01-06 11:33:42 -06:00
|
|
|
static const struct stm32l4_rev stm32_471_revs[] = {
|
2020-03-15 06:21:37 -05:00
|
|
|
{ 0x1001, "Z" },
|
2020-01-06 11:33:42 -06:00
|
|
|
};
|
|
|
|
|
2020-03-25 10:33:30 -05:00
|
|
|
static const struct stm32l4_rev stm32_472_revs[] = {
|
|
|
|
{ 0x1000, "A" }, { 0x2000, "B" },
|
|
|
|
};
|
|
|
|
|
2020-10-15 11:05:48 -05:00
|
|
|
static const struct stm32l4_rev stm32_479_revs[] = {
|
|
|
|
{ 0x1000, "A" },
|
|
|
|
};
|
|
|
|
|
2020-01-06 10:19:31 -06:00
|
|
|
static const struct stm32l4_rev stm32_495_revs[] = {
|
|
|
|
{ 0x2001, "2.1" },
|
|
|
|
};
|
|
|
|
|
2020-03-09 07:33:08 -05:00
|
|
|
static const struct stm32l4_rev stm32_496_revs[] = {
|
|
|
|
{ 0x1000, "A" },
|
|
|
|
};
|
|
|
|
|
2020-03-09 09:10:17 -05:00
|
|
|
static const struct stm32l4_rev stm32_497_revs[] = {
|
|
|
|
{ 0x1000, "1.0" },
|
|
|
|
};
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
static const struct stm32l4_part_info stm32l4_parts[] = {
|
|
|
|
{
|
|
|
|
.id = 0x415,
|
|
|
|
.revs = stm32_415_revs,
|
|
|
|
.num_revs = ARRAY_SIZE(stm32_415_revs),
|
|
|
|
.device_str = "STM32L47/L48xx",
|
|
|
|
.max_flash_size_kb = 1024,
|
2020-11-02 18:07:00 -06:00
|
|
|
.flags = F_HAS_DUAL_BANK,
|
2020-01-05 16:19:41 -06:00
|
|
|
.flash_regs_base = 0x40022000,
|
2020-11-02 18:58:59 -06:00
|
|
|
.default_flash_regs = stm32l4_flash_regs,
|
2020-01-05 16:19:41 -06:00
|
|
|
.fsize_addr = 0x1FFF75E0,
|
2020-03-22 14:39:44 -05:00
|
|
|
.otp_base = 0x1FFF7000,
|
|
|
|
.otp_size = 1024,
|
2020-01-05 16:19:41 -06:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.id = 0x435,
|
|
|
|
.revs = stm32_435_revs,
|
|
|
|
.num_revs = ARRAY_SIZE(stm32_435_revs),
|
|
|
|
.device_str = "STM32L43/L44xx",
|
|
|
|
.max_flash_size_kb = 256,
|
2020-11-02 18:07:00 -06:00
|
|
|
.flags = F_NONE,
|
2020-01-05 16:19:41 -06:00
|
|
|
.flash_regs_base = 0x40022000,
|
2020-11-02 18:58:59 -06:00
|
|
|
.default_flash_regs = stm32l4_flash_regs,
|
2020-01-05 16:19:41 -06:00
|
|
|
.fsize_addr = 0x1FFF75E0,
|
2020-03-22 14:39:44 -05:00
|
|
|
.otp_base = 0x1FFF7000,
|
|
|
|
.otp_size = 1024,
|
2020-01-05 16:19:41 -06:00
|
|
|
},
|
2018-12-16 10:30:41 -06:00
|
|
|
{
|
|
|
|
.id = 0x460,
|
|
|
|
.revs = stm32_460_revs,
|
|
|
|
.num_revs = ARRAY_SIZE(stm32_460_revs),
|
|
|
|
.device_str = "STM32G07/G08xx",
|
|
|
|
.max_flash_size_kb = 128,
|
2020-11-02 18:07:00 -06:00
|
|
|
.flags = F_NONE,
|
2018-12-16 10:30:41 -06:00
|
|
|
.flash_regs_base = 0x40022000,
|
2020-11-02 18:58:59 -06:00
|
|
|
.default_flash_regs = stm32l4_flash_regs,
|
2018-12-16 10:30:41 -06:00
|
|
|
.fsize_addr = 0x1FFF75E0,
|
2020-03-22 14:39:44 -05:00
|
|
|
.otp_base = 0x1FFF7000,
|
|
|
|
.otp_size = 1024,
|
2018-12-16 10:30:41 -06:00
|
|
|
},
|
2020-01-05 16:19:41 -06:00
|
|
|
{
|
|
|
|
.id = 0x461,
|
|
|
|
.revs = stm32_461_revs,
|
|
|
|
.num_revs = ARRAY_SIZE(stm32_461_revs),
|
|
|
|
.device_str = "STM32L49/L4Axx",
|
|
|
|
.max_flash_size_kb = 1024,
|
2020-11-02 18:07:00 -06:00
|
|
|
.flags = F_HAS_DUAL_BANK,
|
2020-01-05 16:19:41 -06:00
|
|
|
.flash_regs_base = 0x40022000,
|
2020-11-02 18:58:59 -06:00
|
|
|
.default_flash_regs = stm32l4_flash_regs,
|
2020-01-05 16:19:41 -06:00
|
|
|
.fsize_addr = 0x1FFF75E0,
|
2020-03-22 14:39:44 -05:00
|
|
|
.otp_base = 0x1FFF7000,
|
|
|
|
.otp_size = 1024,
|
2020-01-05 16:19:41 -06:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.id = 0x462,
|
|
|
|
.revs = stm32_462_revs,
|
|
|
|
.num_revs = ARRAY_SIZE(stm32_462_revs),
|
|
|
|
.device_str = "STM32L45/L46xx",
|
|
|
|
.max_flash_size_kb = 512,
|
2020-11-02 18:07:00 -06:00
|
|
|
.flags = F_NONE,
|
2020-01-05 16:19:41 -06:00
|
|
|
.flash_regs_base = 0x40022000,
|
2020-11-02 18:58:59 -06:00
|
|
|
.default_flash_regs = stm32l4_flash_regs,
|
2020-01-05 16:19:41 -06:00
|
|
|
.fsize_addr = 0x1FFF75E0,
|
2020-03-22 14:39:44 -05:00
|
|
|
.otp_base = 0x1FFF7000,
|
|
|
|
.otp_size = 1024,
|
2020-01-05 16:19:41 -06:00
|
|
|
},
|
2020-01-06 08:47:09 -06:00
|
|
|
{
|
|
|
|
.id = 0x464,
|
|
|
|
.revs = stm32_464_revs,
|
|
|
|
.num_revs = ARRAY_SIZE(stm32_464_revs),
|
|
|
|
.device_str = "STM32L41/L42xx",
|
|
|
|
.max_flash_size_kb = 128,
|
2020-11-02 18:07:00 -06:00
|
|
|
.flags = F_NONE,
|
2020-01-06 08:47:09 -06:00
|
|
|
.flash_regs_base = 0x40022000,
|
2020-11-02 18:58:59 -06:00
|
|
|
.default_flash_regs = stm32l4_flash_regs,
|
2020-01-06 08:47:09 -06:00
|
|
|
.fsize_addr = 0x1FFF75E0,
|
2020-03-22 14:39:44 -05:00
|
|
|
.otp_base = 0x1FFF7000,
|
|
|
|
.otp_size = 1024,
|
2020-01-06 08:47:09 -06:00
|
|
|
},
|
2018-12-16 10:30:41 -06:00
|
|
|
{
|
|
|
|
.id = 0x466,
|
|
|
|
.revs = stm32_466_revs,
|
|
|
|
.num_revs = ARRAY_SIZE(stm32_466_revs),
|
|
|
|
.device_str = "STM32G03/G04xx",
|
|
|
|
.max_flash_size_kb = 64,
|
2020-11-02 18:07:00 -06:00
|
|
|
.flags = F_NONE,
|
2018-12-16 10:30:41 -06:00
|
|
|
.flash_regs_base = 0x40022000,
|
2020-11-02 18:58:59 -06:00
|
|
|
.default_flash_regs = stm32l4_flash_regs,
|
2018-12-16 10:30:41 -06:00
|
|
|
.fsize_addr = 0x1FFF75E0,
|
2020-03-22 14:39:44 -05:00
|
|
|
.otp_base = 0x1FFF7000,
|
|
|
|
.otp_size = 1024,
|
2018-12-16 10:30:41 -06:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.id = 0x468,
|
|
|
|
.revs = stm32_468_revs,
|
|
|
|
.num_revs = ARRAY_SIZE(stm32_468_revs),
|
|
|
|
.device_str = "STM32G43/G44xx",
|
|
|
|
.max_flash_size_kb = 128,
|
2020-11-02 18:07:00 -06:00
|
|
|
.flags = F_NONE,
|
2018-12-16 10:30:41 -06:00
|
|
|
.flash_regs_base = 0x40022000,
|
2020-11-02 18:58:59 -06:00
|
|
|
.default_flash_regs = stm32l4_flash_regs,
|
2018-12-16 10:30:41 -06:00
|
|
|
.fsize_addr = 0x1FFF75E0,
|
2020-03-22 14:39:44 -05:00
|
|
|
.otp_base = 0x1FFF7000,
|
|
|
|
.otp_size = 1024,
|
2018-12-16 10:30:41 -06:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.id = 0x469,
|
|
|
|
.revs = stm32_469_revs,
|
|
|
|
.num_revs = ARRAY_SIZE(stm32_469_revs),
|
|
|
|
.device_str = "STM32G47/G48xx",
|
|
|
|
.max_flash_size_kb = 512,
|
2020-11-02 18:07:00 -06:00
|
|
|
.flags = F_HAS_DUAL_BANK | F_USE_ALL_WRPXX,
|
2018-12-16 10:30:41 -06:00
|
|
|
.flash_regs_base = 0x40022000,
|
2020-11-02 18:58:59 -06:00
|
|
|
.default_flash_regs = stm32l4_flash_regs,
|
2018-12-16 10:30:41 -06:00
|
|
|
.fsize_addr = 0x1FFF75E0,
|
2020-03-22 14:39:44 -05:00
|
|
|
.otp_base = 0x1FFF7000,
|
|
|
|
.otp_size = 1024,
|
2018-12-16 10:30:41 -06:00
|
|
|
},
|
2020-01-05 16:19:41 -06:00
|
|
|
{
|
|
|
|
.id = 0x470,
|
|
|
|
.revs = stm32_470_revs,
|
|
|
|
.num_revs = ARRAY_SIZE(stm32_470_revs),
|
|
|
|
.device_str = "STM32L4R/L4Sxx",
|
|
|
|
.max_flash_size_kb = 2048,
|
2020-11-02 18:07:00 -06:00
|
|
|
.flags = F_HAS_DUAL_BANK | F_USE_ALL_WRPXX,
|
2020-01-05 16:19:41 -06:00
|
|
|
.flash_regs_base = 0x40022000,
|
2020-11-02 18:58:59 -06:00
|
|
|
.default_flash_regs = stm32l4_flash_regs,
|
2020-01-05 16:19:41 -06:00
|
|
|
.fsize_addr = 0x1FFF75E0,
|
2020-03-22 14:39:44 -05:00
|
|
|
.otp_base = 0x1FFF7000,
|
|
|
|
.otp_size = 1024,
|
2020-01-05 16:19:41 -06:00
|
|
|
},
|
2020-01-06 11:33:42 -06:00
|
|
|
{
|
|
|
|
.id = 0x471,
|
|
|
|
.revs = stm32_471_revs,
|
|
|
|
.num_revs = ARRAY_SIZE(stm32_471_revs),
|
|
|
|
.device_str = "STM32L4P5/L4Q5x",
|
|
|
|
.max_flash_size_kb = 1024,
|
2020-11-02 18:07:00 -06:00
|
|
|
.flags = F_HAS_DUAL_BANK | F_USE_ALL_WRPXX,
|
2020-01-06 11:33:42 -06:00
|
|
|
.flash_regs_base = 0x40022000,
|
2020-11-02 18:58:59 -06:00
|
|
|
.default_flash_regs = stm32l4_flash_regs,
|
2020-01-06 11:33:42 -06:00
|
|
|
.fsize_addr = 0x1FFF75E0,
|
2020-03-22 14:39:44 -05:00
|
|
|
.otp_base = 0x1FFF7000,
|
|
|
|
.otp_size = 1024,
|
2020-01-06 11:33:42 -06:00
|
|
|
},
|
2020-03-25 10:33:30 -05:00
|
|
|
{
|
|
|
|
.id = 0x472,
|
|
|
|
.revs = stm32_472_revs,
|
|
|
|
.num_revs = ARRAY_SIZE(stm32_472_revs),
|
|
|
|
.device_str = "STM32L55/L56xx",
|
|
|
|
.max_flash_size_kb = 512,
|
2020-11-02 18:07:00 -06:00
|
|
|
.flags = F_HAS_DUAL_BANK | F_USE_ALL_WRPXX | F_HAS_TZ,
|
2020-03-25 10:33:30 -05:00
|
|
|
.flash_regs_base = 0x40022000,
|
|
|
|
.default_flash_regs = stm32l5_ns_flash_regs,
|
|
|
|
.fsize_addr = 0x0BFA05E0,
|
2020-03-22 14:39:44 -05:00
|
|
|
.otp_base = 0x0BFA0000,
|
|
|
|
.otp_size = 512,
|
2020-03-25 10:33:30 -05:00
|
|
|
},
|
2020-10-15 11:05:48 -05:00
|
|
|
{
|
|
|
|
.id = 0x479,
|
|
|
|
.revs = stm32_479_revs,
|
|
|
|
.num_revs = ARRAY_SIZE(stm32_479_revs),
|
|
|
|
.device_str = "STM32G49/G4Axx",
|
|
|
|
.max_flash_size_kb = 512,
|
2020-11-02 18:07:00 -06:00
|
|
|
.flags = F_NONE,
|
2020-10-15 11:05:48 -05:00
|
|
|
.flash_regs_base = 0x40022000,
|
2020-11-02 18:58:59 -06:00
|
|
|
.default_flash_regs = stm32l4_flash_regs,
|
2020-10-15 11:05:48 -05:00
|
|
|
.fsize_addr = 0x1FFF75E0,
|
2020-03-22 14:39:44 -05:00
|
|
|
.otp_base = 0x1FFF7000,
|
|
|
|
.otp_size = 1024,
|
2020-10-15 11:05:48 -05:00
|
|
|
},
|
2020-01-06 10:19:31 -06:00
|
|
|
{
|
|
|
|
.id = 0x495,
|
|
|
|
.revs = stm32_495_revs,
|
|
|
|
.num_revs = ARRAY_SIZE(stm32_495_revs),
|
|
|
|
.device_str = "STM32WB5x",
|
|
|
|
.max_flash_size_kb = 1024,
|
2020-11-02 18:07:00 -06:00
|
|
|
.flags = F_NONE,
|
2020-01-06 10:19:31 -06:00
|
|
|
.flash_regs_base = 0x58004000,
|
2020-11-02 18:58:59 -06:00
|
|
|
.default_flash_regs = stm32l4_flash_regs,
|
2020-01-06 10:19:31 -06:00
|
|
|
.fsize_addr = 0x1FFF75E0,
|
2020-03-22 14:39:44 -05:00
|
|
|
.otp_base = 0x1FFF7000,
|
|
|
|
.otp_size = 1024,
|
2020-01-06 10:19:31 -06:00
|
|
|
},
|
2020-03-09 07:33:08 -05:00
|
|
|
{
|
|
|
|
.id = 0x496,
|
|
|
|
.revs = stm32_496_revs,
|
|
|
|
.num_revs = ARRAY_SIZE(stm32_496_revs),
|
|
|
|
.device_str = "STM32WB3x",
|
|
|
|
.max_flash_size_kb = 512,
|
2020-11-02 18:07:00 -06:00
|
|
|
.flags = F_NONE,
|
2020-03-09 07:33:08 -05:00
|
|
|
.flash_regs_base = 0x58004000,
|
2020-11-02 18:58:59 -06:00
|
|
|
.default_flash_regs = stm32l4_flash_regs,
|
2020-03-09 07:33:08 -05:00
|
|
|
.fsize_addr = 0x1FFF75E0,
|
2020-03-22 14:39:44 -05:00
|
|
|
.otp_base = 0x1FFF7000,
|
|
|
|
.otp_size = 1024,
|
2020-03-09 07:33:08 -05:00
|
|
|
},
|
2020-03-09 09:10:17 -05:00
|
|
|
{
|
|
|
|
.id = 0x497,
|
|
|
|
.revs = stm32_497_revs,
|
|
|
|
.num_revs = ARRAY_SIZE(stm32_497_revs),
|
|
|
|
.device_str = "STM32WLEx",
|
|
|
|
.max_flash_size_kb = 256,
|
2020-11-02 18:07:00 -06:00
|
|
|
.flags = F_NONE,
|
2020-03-09 09:10:17 -05:00
|
|
|
.flash_regs_base = 0x58004000,
|
2020-11-02 18:58:59 -06:00
|
|
|
.default_flash_regs = stm32l4_flash_regs,
|
2020-03-09 09:10:17 -05:00
|
|
|
.fsize_addr = 0x1FFF75E0,
|
2020-03-22 14:39:44 -05:00
|
|
|
.otp_base = 0x1FFF7000,
|
|
|
|
.otp_size = 1024,
|
2020-03-09 09:10:17 -05:00
|
|
|
},
|
2020-01-05 16:19:41 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
/* flash bank stm32l4x <base> <size> 0 0 <target#> */
|
2015-08-22 11:36:52 -05:00
|
|
|
FLASH_BANK_COMMAND_HANDLER(stm32l4_flash_bank_command)
|
|
|
|
{
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info;
|
|
|
|
|
|
|
|
if (CMD_ARGC < 6)
|
|
|
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
|
|
|
|
2020-03-22 14:39:44 -05:00
|
|
|
/* fix-up bank base address: 0 is used for normal flash memory */
|
|
|
|
if (bank->base == 0)
|
|
|
|
bank->base = STM32_FLASH_BANK_BASE;
|
|
|
|
|
2021-03-12 18:09:01 -06:00
|
|
|
stm32l4_info = calloc(1, sizeof(struct stm32l4_flash_bank));
|
2015-08-22 11:36:52 -05:00
|
|
|
if (!stm32l4_info)
|
|
|
|
return ERROR_FAIL; /* Checkme: What better error to use?*/
|
|
|
|
bank->driver_priv = stm32l4_info;
|
|
|
|
|
2019-12-14 09:08:32 -06:00
|
|
|
/* The flash write must be aligned to a double word (8-bytes) boundary.
|
|
|
|
* Ask the flash infrastructure to ensure required alignment */
|
|
|
|
bank->write_start_alignment = bank->write_end_alignment = 8;
|
|
|
|
|
2020-02-10 08:37:45 -06:00
|
|
|
stm32l4_info->probed = false;
|
2020-03-22 14:39:44 -05:00
|
|
|
stm32l4_info->otp_enabled = false;
|
2018-12-16 10:30:41 -06:00
|
|
|
stm32l4_info->user_bank_size = bank->size;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
/* bitmap helper extension */
|
|
|
|
struct range {
|
|
|
|
unsigned int start;
|
|
|
|
unsigned int end;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void bitmap_to_ranges(unsigned long *bitmap, unsigned int nbits,
|
|
|
|
struct range *ranges, unsigned int *ranges_count) {
|
|
|
|
*ranges_count = 0;
|
|
|
|
bool last_bit = 0, cur_bit;
|
|
|
|
for (unsigned int i = 0; i < nbits; i++) {
|
|
|
|
cur_bit = test_bit(i, bitmap);
|
|
|
|
|
|
|
|
if (cur_bit && !last_bit) {
|
|
|
|
(*ranges_count)++;
|
|
|
|
ranges[*ranges_count - 1].start = i;
|
|
|
|
ranges[*ranges_count - 1].end = i;
|
|
|
|
} else if (cur_bit && last_bit) {
|
|
|
|
/* update (increment) the end this range */
|
|
|
|
ranges[*ranges_count - 1].end = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
last_bit = cur_bit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int range_print_one(struct range *range, char *str)
|
|
|
|
{
|
|
|
|
if (range->start == range->end)
|
|
|
|
return sprintf(str, "[%d]", range->start);
|
|
|
|
|
|
|
|
return sprintf(str, "[%d,%d]", range->start, range->end);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *range_print_alloc(struct range *ranges, unsigned int ranges_count)
|
|
|
|
{
|
|
|
|
/* each range will be printed like the following: [start,end]
|
|
|
|
* start and end, both are unsigned int, an unsigned int takes 10 characters max
|
|
|
|
* plus 3 characters for '[', ',' and ']'
|
|
|
|
* thus means each range can take maximum 23 character
|
|
|
|
* after each range we add a ' ' as separator and finally we need the '\0'
|
|
|
|
* if the ranges_count is zero we reserve one char for '\0' to return an empty string */
|
|
|
|
char *str = calloc(1, ranges_count * (24 * sizeof(char)) + 1);
|
|
|
|
char *ptr = str;
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < ranges_count; i++) {
|
|
|
|
ptr += range_print_one(&(ranges[i]), ptr);
|
|
|
|
|
|
|
|
if (i < ranges_count - 1)
|
|
|
|
*(ptr++) = ' ';
|
|
|
|
}
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* end of bitmap helper extension */
|
|
|
|
|
2020-03-22 14:39:44 -05:00
|
|
|
static inline bool stm32l4_is_otp(struct flash_bank *bank)
|
|
|
|
{
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
return bank->base == stm32l4_info->part_info->otp_base;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int stm32l4_otp_enable(struct flash_bank *bank, bool enable)
|
|
|
|
{
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
|
|
|
|
if (!stm32l4_is_otp(bank))
|
|
|
|
return ERROR_FAIL;
|
|
|
|
|
|
|
|
char *op_str = enable ? "enabled" : "disabled";
|
|
|
|
|
|
|
|
LOG_INFO("OTP memory (bank #%d) is %s%s for write commands",
|
|
|
|
bank->bank_number,
|
|
|
|
stm32l4_info->otp_enabled == enable ? "already " : "",
|
|
|
|
op_str);
|
|
|
|
|
|
|
|
stm32l4_info->otp_enabled = enable;
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool stm32l4_otp_is_enabled(struct flash_bank *bank)
|
|
|
|
{
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
return stm32l4_info->otp_enabled;
|
|
|
|
}
|
|
|
|
|
2020-11-02 18:22:53 -06:00
|
|
|
static void stm32l4_sync_rdp_tzen(struct flash_bank *bank, uint32_t optr_value)
|
|
|
|
{
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
|
|
|
|
bool tzen = false;
|
|
|
|
|
|
|
|
if (stm32l4_info->part_info->flags & F_HAS_TZ)
|
|
|
|
tzen = (optr_value & FLASH_TZEN) != 0;
|
|
|
|
|
|
|
|
uint32_t rdp = optr_value & FLASH_RDP_MASK;
|
|
|
|
|
|
|
|
/* for devices without TrustZone:
|
|
|
|
* RDP level 0 and 2 values are to 0xAA and 0xCC
|
|
|
|
* Any other value corresponds to RDP level 1
|
|
|
|
* for devices with TrusZone:
|
|
|
|
* RDP level 0 and 2 values are 0xAA and 0xCC
|
|
|
|
* RDP level 0.5 value is 0x55 only if TZEN = 1
|
|
|
|
* Any other value corresponds to RDP level 1, including 0x55 if TZEN = 0
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (rdp != RDP_LEVEL_0 && rdp != RDP_LEVEL_2) {
|
|
|
|
if (!tzen || (tzen && rdp != RDP_LEVEL_0_5))
|
|
|
|
rdp = RDP_LEVEL_1;
|
|
|
|
}
|
|
|
|
|
|
|
|
stm32l4_info->tzen = tzen;
|
|
|
|
stm32l4_info->rdp = rdp;
|
|
|
|
}
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
static inline uint32_t stm32l4_get_flash_reg(struct flash_bank *bank, uint32_t reg_offset)
|
2015-08-22 11:36:52 -05:00
|
|
|
{
|
2020-01-05 16:19:41 -06:00
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
return stm32l4_info->part_info->flash_regs_base + reg_offset;
|
2015-08-22 11:36:52 -05:00
|
|
|
}
|
|
|
|
|
2020-11-02 18:58:59 -06:00
|
|
|
static inline uint32_t stm32l4_get_flash_reg_by_index(struct flash_bank *bank,
|
|
|
|
enum stm32l4_flash_reg_index reg_index)
|
|
|
|
{
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
return stm32l4_get_flash_reg(bank, stm32l4_info->flash_regs[reg_index]);
|
|
|
|
}
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
static inline int stm32l4_read_flash_reg(struct flash_bank *bank, uint32_t reg_offset, uint32_t *value)
|
2015-08-22 11:36:52 -05:00
|
|
|
{
|
2020-01-05 16:19:41 -06:00
|
|
|
return target_read_u32(bank->target, stm32l4_get_flash_reg(bank, reg_offset), value);
|
|
|
|
}
|
|
|
|
|
2020-11-02 18:58:59 -06:00
|
|
|
static inline int stm32l4_read_flash_reg_by_index(struct flash_bank *bank,
|
|
|
|
enum stm32l4_flash_reg_index reg_index, uint32_t *value)
|
|
|
|
{
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
return stm32l4_read_flash_reg(bank, stm32l4_info->flash_regs[reg_index], value);
|
|
|
|
}
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
static inline int stm32l4_write_flash_reg(struct flash_bank *bank, uint32_t reg_offset, uint32_t value)
|
|
|
|
{
|
|
|
|
return target_write_u32(bank->target, stm32l4_get_flash_reg(bank, reg_offset), value);
|
2015-08-22 11:36:52 -05:00
|
|
|
}
|
|
|
|
|
2020-11-02 18:58:59 -06:00
|
|
|
static inline int stm32l4_write_flash_reg_by_index(struct flash_bank *bank,
|
|
|
|
enum stm32l4_flash_reg_index reg_index, uint32_t value)
|
|
|
|
{
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
return stm32l4_write_flash_reg(bank, stm32l4_info->flash_regs[reg_index], value);
|
|
|
|
}
|
|
|
|
|
2015-08-22 11:36:52 -05:00
|
|
|
static int stm32l4_wait_status_busy(struct flash_bank *bank, int timeout)
|
|
|
|
{
|
|
|
|
uint32_t status;
|
|
|
|
int retval = ERROR_OK;
|
|
|
|
|
|
|
|
/* wait for busy to clear */
|
|
|
|
for (;;) {
|
2020-11-02 18:58:59 -06:00
|
|
|
retval = stm32l4_read_flash_reg_by_index(bank, STM32_FLASH_SR_INDEX, &status);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
LOG_DEBUG("status: 0x%" PRIx32 "", status);
|
|
|
|
if ((status & FLASH_BSY) == 0)
|
|
|
|
break;
|
|
|
|
if (timeout-- <= 0) {
|
|
|
|
LOG_ERROR("timed out waiting for flash");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
alive_sleep(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (status & FLASH_WRPERR) {
|
|
|
|
LOG_ERROR("stm32x device protected");
|
|
|
|
retval = ERROR_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clear but report errors */
|
|
|
|
if (status & FLASH_ERROR) {
|
2018-05-14 13:56:56 -05:00
|
|
|
if (retval == ERROR_OK)
|
|
|
|
retval = ERROR_FAIL;
|
2015-08-22 11:36:52 -05:00
|
|
|
/* If this operation fails, we ignore it and report the original
|
|
|
|
* retval
|
|
|
|
*/
|
2020-11-02 18:58:59 -06:00
|
|
|
stm32l4_write_flash_reg_by_index(bank, STM32_FLASH_SR_INDEX, status & FLASH_ERROR);
|
2015-08-22 11:36:52 -05:00
|
|
|
}
|
2020-01-05 16:19:41 -06:00
|
|
|
|
2015-08-22 11:36:52 -05:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
static int stm32l4_unlock_reg(struct flash_bank *bank)
|
2015-08-22 11:36:52 -05:00
|
|
|
{
|
|
|
|
uint32_t ctrl;
|
|
|
|
|
|
|
|
/* first check if not already unlocked
|
|
|
|
* otherwise writing on STM32_FLASH_KEYR will fail
|
|
|
|
*/
|
2020-11-02 18:58:59 -06:00
|
|
|
int retval = stm32l4_read_flash_reg_by_index(bank, STM32_FLASH_CR_INDEX, &ctrl);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
if ((ctrl & FLASH_LOCK) == 0)
|
|
|
|
return ERROR_OK;
|
|
|
|
|
|
|
|
/* unlock flash registers */
|
2020-11-02 18:58:59 -06:00
|
|
|
retval = stm32l4_write_flash_reg_by_index(bank, STM32_FLASH_KEYR_INDEX, KEY1);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
2020-11-02 18:58:59 -06:00
|
|
|
retval = stm32l4_write_flash_reg_by_index(bank, STM32_FLASH_KEYR_INDEX, KEY2);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
2020-11-02 18:58:59 -06:00
|
|
|
retval = stm32l4_read_flash_reg_by_index(bank, STM32_FLASH_CR_INDEX, &ctrl);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
if (ctrl & FLASH_LOCK) {
|
|
|
|
LOG_ERROR("flash not unlocked STM32_FLASH_CR: %" PRIx32, ctrl);
|
|
|
|
return ERROR_TARGET_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
static int stm32l4_unlock_option_reg(struct flash_bank *bank)
|
2015-08-22 11:36:52 -05:00
|
|
|
{
|
|
|
|
uint32_t ctrl;
|
|
|
|
|
2020-11-02 18:58:59 -06:00
|
|
|
int retval = stm32l4_read_flash_reg_by_index(bank, STM32_FLASH_CR_INDEX, &ctrl);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
if ((ctrl & FLASH_OPTLOCK) == 0)
|
|
|
|
return ERROR_OK;
|
|
|
|
|
|
|
|
/* unlock option registers */
|
2020-11-02 18:58:59 -06:00
|
|
|
retval = stm32l4_write_flash_reg_by_index(bank, STM32_FLASH_OPTKEYR_INDEX, OPTKEY1);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
2020-11-02 18:58:59 -06:00
|
|
|
retval = stm32l4_write_flash_reg_by_index(bank, STM32_FLASH_OPTKEYR_INDEX, OPTKEY2);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
2020-11-02 18:58:59 -06:00
|
|
|
retval = stm32l4_read_flash_reg_by_index(bank, STM32_FLASH_CR_INDEX, &ctrl);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
if (ctrl & FLASH_OPTLOCK) {
|
|
|
|
LOG_ERROR("options not unlocked STM32_FLASH_CR: %" PRIx32, ctrl);
|
|
|
|
return ERROR_TARGET_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2020-03-25 16:47:08 -05:00
|
|
|
static int stm32l4_perform_obl_launch(struct flash_bank *bank)
|
|
|
|
{
|
|
|
|
int retval, retval2;
|
|
|
|
|
|
|
|
retval = stm32l4_unlock_reg(bank);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto err_lock;
|
|
|
|
|
|
|
|
retval = stm32l4_unlock_option_reg(bank);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto err_lock;
|
|
|
|
|
|
|
|
/* Set OBL_LAUNCH bit in CR -> system reset and option bytes reload,
|
|
|
|
* but the RMs explicitly do *NOT* list this as power-on reset cause, and:
|
|
|
|
* "Note: If the read protection is set while the debugger is still
|
|
|
|
* connected through JTAG/SWD, apply a POR (power-on reset) instead of a system reset."
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* "Setting OBL_LAUNCH generates a reset so the option byte loading is performed under system reset" */
|
|
|
|
/* Due to this reset ST-Link reports an SWD_DP_ERROR, despite the write was successful,
|
|
|
|
* then just ignore the returned value */
|
|
|
|
stm32l4_write_flash_reg_by_index(bank, STM32_FLASH_CR_INDEX, FLASH_OBL_LAUNCH);
|
|
|
|
|
|
|
|
/* Need to re-probe after change */
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
stm32l4_info->probed = false;
|
|
|
|
|
|
|
|
err_lock:
|
|
|
|
retval2 = stm32l4_write_flash_reg_by_index(bank, STM32_FLASH_CR_INDEX, FLASH_LOCK | FLASH_OPTLOCK);
|
|
|
|
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
return retval2;
|
|
|
|
}
|
|
|
|
|
2018-12-16 10:30:41 -06:00
|
|
|
static int stm32l4_write_option(struct flash_bank *bank, uint32_t reg_offset,
|
|
|
|
uint32_t value, uint32_t mask)
|
2018-08-16 07:04:45 -05:00
|
|
|
{
|
|
|
|
uint32_t optiondata;
|
2019-12-14 12:37:41 -06:00
|
|
|
int retval, retval2;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2019-12-14 12:37:41 -06:00
|
|
|
retval = stm32l4_read_flash_reg(bank, reg_offset, &optiondata);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
retval = stm32l4_unlock_reg(bank);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
2019-12-14 12:37:41 -06:00
|
|
|
goto err_lock;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
retval = stm32l4_unlock_option_reg(bank);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
2019-12-14 12:37:41 -06:00
|
|
|
goto err_lock;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2018-08-16 07:04:45 -05:00
|
|
|
optiondata = (optiondata & ~mask) | (value & mask);
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
retval = stm32l4_write_flash_reg(bank, reg_offset, optiondata);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
2019-12-14 12:37:41 -06:00
|
|
|
goto err_lock;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2020-11-02 18:58:59 -06:00
|
|
|
retval = stm32l4_write_flash_reg_by_index(bank, STM32_FLASH_CR_INDEX, FLASH_OPTSTRT);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
2019-12-14 12:37:41 -06:00
|
|
|
goto err_lock;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2018-08-16 07:04:45 -05:00
|
|
|
retval = stm32l4_wait_status_busy(bank, FLASH_ERASE_TIMEOUT);
|
2019-12-14 12:37:41 -06:00
|
|
|
|
|
|
|
err_lock:
|
2020-11-02 18:58:59 -06:00
|
|
|
retval2 = stm32l4_write_flash_reg_by_index(bank, STM32_FLASH_CR_INDEX, FLASH_LOCK | FLASH_OPTLOCK);
|
2019-12-14 12:37:41 -06:00
|
|
|
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2018-08-16 07:04:45 -05:00
|
|
|
|
2019-12-14 12:37:41 -06:00
|
|
|
return retval2;
|
2015-08-22 11:36:52 -05:00
|
|
|
}
|
|
|
|
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
static int stm32l4_get_one_wrpxy(struct flash_bank *bank, struct stm32l4_wrp *wrpxy,
|
|
|
|
enum stm32l4_flash_reg_index reg_idx, int offset)
|
2015-08-22 11:36:52 -05:00
|
|
|
{
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
int ret;
|
2020-01-05 16:19:41 -06:00
|
|
|
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
wrpxy->reg_idx = reg_idx;
|
|
|
|
wrpxy->offset = offset;
|
|
|
|
|
|
|
|
ret = stm32l4_read_flash_reg_by_index(bank, wrpxy->reg_idx , &wrpxy->value);
|
|
|
|
if (ret != ERROR_OK)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
wrpxy->first = (wrpxy->value & stm32l4_info->wrpxxr_mask) + wrpxy->offset;
|
|
|
|
wrpxy->last = ((wrpxy->value >> 16) & stm32l4_info->wrpxxr_mask) + wrpxy->offset;
|
|
|
|
wrpxy->used = wrpxy->first <= wrpxy->last;
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int stm32l4_get_all_wrpxy(struct flash_bank *bank, enum stm32_bank_id dev_bank_id,
|
|
|
|
struct stm32l4_wrp *wrpxy, unsigned int *n_wrp)
|
|
|
|
{
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
*n_wrp = 0;
|
|
|
|
|
|
|
|
/* for single bank devices there is 2 WRP regions.
|
|
|
|
* for dual bank devices there is 2 WRP regions per bank,
|
|
|
|
* if configured as single bank only 2 WRP are usable
|
|
|
|
* except for STM32L4R/S/P/Q, G4 cat3, L5 ... all 4 WRP are usable
|
|
|
|
* note: this should be revised, if a device will have the SWAP banks option
|
|
|
|
*/
|
|
|
|
|
|
|
|
int wrp2y_sectors_offset = -1; /* -1 : unused */
|
|
|
|
|
|
|
|
/* if bank_id is BANK1 or ALL_BANKS */
|
|
|
|
if (dev_bank_id != STM32_BANK2) {
|
|
|
|
/* get FLASH_WRP1AR */
|
|
|
|
ret = stm32l4_get_one_wrpxy(bank, &wrpxy[(*n_wrp)++], STM32_FLASH_WRP1AR_INDEX, 0);
|
|
|
|
if (ret != ERROR_OK)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* get WRP1BR */
|
|
|
|
ret = stm32l4_get_one_wrpxy(bank, &wrpxy[(*n_wrp)++], STM32_FLASH_WRP1BR_INDEX, 0);
|
|
|
|
if (ret != ERROR_OK)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* for some devices (like STM32L4R/S) in single-bank mode, the 4 WRPxx are usable */
|
2020-11-02 18:07:00 -06:00
|
|
|
if ((stm32l4_info->part_info->flags & F_USE_ALL_WRPXX) && !stm32l4_info->dual_bank_mode)
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
wrp2y_sectors_offset = 0;
|
2018-12-16 10:30:41 -06:00
|
|
|
}
|
|
|
|
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
/* if bank_id is BANK2 or ALL_BANKS */
|
|
|
|
if (dev_bank_id != STM32_BANK1 && stm32l4_info->dual_bank_mode)
|
|
|
|
wrp2y_sectors_offset = stm32l4_info->bank1_sectors;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
if (wrp2y_sectors_offset > -1) {
|
|
|
|
/* get WRP2AR */
|
|
|
|
ret = stm32l4_get_one_wrpxy(bank, &wrpxy[(*n_wrp)++], STM32_FLASH_WRP2AR_INDEX, wrp2y_sectors_offset);
|
|
|
|
if (ret != ERROR_OK)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* get WRP2BR */
|
|
|
|
ret = stm32l4_get_one_wrpxy(bank, &wrpxy[(*n_wrp)++], STM32_FLASH_WRP2BR_INDEX, wrp2y_sectors_offset);
|
|
|
|
if (ret != ERROR_OK)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int stm32l4_write_one_wrpxy(struct flash_bank *bank, struct stm32l4_wrp *wrpxy)
|
|
|
|
{
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
|
|
|
|
int wrp_start = wrpxy->first - wrpxy->offset;
|
|
|
|
int wrp_end = wrpxy->last - wrpxy->offset;
|
|
|
|
|
|
|
|
uint32_t wrp_value = (wrp_start & stm32l4_info->wrpxxr_mask) | ((wrp_end & stm32l4_info->wrpxxr_mask) << 16);
|
|
|
|
|
|
|
|
return stm32l4_write_option(bank, stm32l4_info->flash_regs[wrpxy->reg_idx], wrp_value, 0xffffffff);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int stm32l4_write_all_wrpxy(struct flash_bank *bank, struct stm32l4_wrp *wrpxy, unsigned int n_wrp)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < n_wrp; i++) {
|
|
|
|
ret = stm32l4_write_one_wrpxy(bank, &wrpxy[i]);
|
|
|
|
if (ret != ERROR_OK)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int stm32l4_protect_check(struct flash_bank *bank)
|
|
|
|
{
|
|
|
|
unsigned int n_wrp;
|
|
|
|
struct stm32l4_wrp wrpxy[4];
|
|
|
|
|
|
|
|
int ret = stm32l4_get_all_wrpxy(bank, STM32_ALL_BANKS, wrpxy, &n_wrp);
|
|
|
|
if (ret != ERROR_OK)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* initialize all sectors as unprotected */
|
|
|
|
for (unsigned int i = 0; i < bank->num_sectors; i++)
|
|
|
|
bank->sectors[i].is_protected = 0;
|
|
|
|
|
|
|
|
/* now check WRPxy and mark the protected sectors */
|
|
|
|
for (unsigned int i = 0; i < n_wrp; i++) {
|
|
|
|
if (wrpxy[i].used) {
|
|
|
|
for (int s = wrpxy[i].first; s <= wrpxy[i].last; s++)
|
|
|
|
bank->sectors[s].is_protected = 1;
|
2015-08-22 11:36:52 -05:00
|
|
|
}
|
|
|
|
}
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
|
2015-08-22 11:36:52 -05:00
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2020-06-07 10:00:13 -05:00
|
|
|
static int stm32l4_erase(struct flash_bank *bank, unsigned int first,
|
|
|
|
unsigned int last)
|
2015-08-22 11:36:52 -05:00
|
|
|
{
|
2020-01-05 16:19:41 -06:00
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
2019-12-14 12:37:41 -06:00
|
|
|
int retval, retval2;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2020-06-07 10:00:13 -05:00
|
|
|
assert((first <= last) && (last < bank->num_sectors));
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2020-03-22 14:39:44 -05:00
|
|
|
if (stm32l4_is_otp(bank)) {
|
|
|
|
LOG_ERROR("cannot erase OTP memory");
|
|
|
|
return ERROR_FLASH_OPER_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
2015-08-22 11:36:52 -05:00
|
|
|
if (bank->target->state != TARGET_HALTED) {
|
|
|
|
LOG_ERROR("Target not halted");
|
|
|
|
return ERROR_TARGET_NOT_HALTED;
|
|
|
|
}
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
retval = stm32l4_unlock_reg(bank);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
2019-12-14 12:37:41 -06:00
|
|
|
goto err_lock;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Sector Erase
|
|
|
|
To erase a sector, follow the procedure below:
|
|
|
|
1. Check that no Flash memory operation is ongoing by
|
2018-12-16 10:30:41 -06:00
|
|
|
checking the BSY bit in the FLASH_SR register
|
2015-08-22 11:36:52 -05:00
|
|
|
2. Set the PER bit and select the page and bank
|
2018-11-23 07:40:39 -06:00
|
|
|
you wish to erase in the FLASH_CR register
|
2015-08-22 11:36:52 -05:00
|
|
|
3. Set the STRT bit in the FLASH_CR register
|
|
|
|
4. Wait for the BSY bit to be cleared
|
|
|
|
*/
|
|
|
|
|
2020-06-07 10:00:13 -05:00
|
|
|
for (unsigned int i = first; i <= last; i++) {
|
2015-08-22 11:36:52 -05:00
|
|
|
uint32_t erase_flags;
|
|
|
|
erase_flags = FLASH_PER | FLASH_STRT;
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
if (i >= stm32l4_info->bank1_sectors) {
|
2015-08-22 11:36:52 -05:00
|
|
|
uint8_t snb;
|
2020-01-05 16:19:41 -06:00
|
|
|
snb = i - stm32l4_info->bank1_sectors;
|
2015-08-22 11:36:52 -05:00
|
|
|
erase_flags |= snb << FLASH_PAGE_SHIFT | FLASH_CR_BKER;
|
|
|
|
} else
|
|
|
|
erase_flags |= i << FLASH_PAGE_SHIFT;
|
2020-11-02 18:58:59 -06:00
|
|
|
retval = stm32l4_write_flash_reg_by_index(bank, STM32_FLASH_CR_INDEX, erase_flags);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
2019-12-14 12:37:41 -06:00
|
|
|
break;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
|
|
|
retval = stm32l4_wait_status_busy(bank, FLASH_ERASE_TIMEOUT);
|
|
|
|
if (retval != ERROR_OK)
|
2019-12-14 12:37:41 -06:00
|
|
|
break;
|
2015-08-22 11:36:52 -05:00
|
|
|
}
|
|
|
|
|
2019-12-14 12:37:41 -06:00
|
|
|
err_lock:
|
2020-11-02 18:58:59 -06:00
|
|
|
retval2 = stm32l4_write_flash_reg_by_index(bank, STM32_FLASH_CR_INDEX, FLASH_LOCK);
|
2019-12-14 12:37:41 -06:00
|
|
|
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
2019-12-14 12:37:41 -06:00
|
|
|
return retval2;
|
2015-08-22 11:36:52 -05:00
|
|
|
}
|
|
|
|
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
static int stm32l4_protect(struct flash_bank *bank, int set, unsigned int first, unsigned int last)
|
2015-08-22 11:36:52 -05:00
|
|
|
{
|
|
|
|
struct target *target = bank->target;
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
int ret = ERROR_OK;
|
|
|
|
unsigned int i;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2020-03-22 14:39:44 -05:00
|
|
|
if (stm32l4_is_otp(bank)) {
|
|
|
|
LOG_ERROR("cannot protect/unprotect OTP memory");
|
|
|
|
return ERROR_FLASH_OPER_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
2015-08-22 11:36:52 -05:00
|
|
|
if (target->state != TARGET_HALTED) {
|
|
|
|
LOG_ERROR("Target not halted");
|
|
|
|
return ERROR_TARGET_NOT_HALTED;
|
|
|
|
}
|
|
|
|
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
/* the requested sectors could be located into bank1 and/or bank2 */
|
|
|
|
bool use_bank2 = false;
|
2020-01-05 16:19:41 -06:00
|
|
|
if (last >= stm32l4_info->bank1_sectors) {
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
if (first < stm32l4_info->bank1_sectors) {
|
|
|
|
/* the requested sectors for (un)protection are shared between
|
|
|
|
* bank 1 and 2, then split the operation */
|
|
|
|
|
|
|
|
/* 1- deal with bank 1 sectors */
|
|
|
|
LOG_DEBUG("The requested sectors for %s are shared between bank 1 and 2",
|
|
|
|
set ? "protection" : "unprotection");
|
|
|
|
ret = stm32l4_protect(bank, set, first, stm32l4_info->bank1_sectors - 1);
|
|
|
|
if (ret != ERROR_OK)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* 2- then continue with bank 2 sectors */
|
|
|
|
first = stm32l4_info->bank1_sectors;
|
2018-08-16 07:04:45 -05:00
|
|
|
}
|
|
|
|
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
use_bank2 = true;
|
2015-08-22 11:36:52 -05:00
|
|
|
}
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
|
|
|
|
/* refresh the sectors' protection */
|
|
|
|
ret = stm32l4_protect_check(bank);
|
|
|
|
if (ret != ERROR_OK)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* check if the desired protection is already configured */
|
|
|
|
for (i = first; i <= last; i++) {
|
|
|
|
if (bank->sectors[i].is_protected != set)
|
|
|
|
break;
|
|
|
|
else if (i == last) {
|
|
|
|
LOG_INFO("The specified sectors are already %s", set ? "protected" : "unprotected");
|
|
|
|
return ERROR_OK;
|
2018-08-16 07:04:45 -05:00
|
|
|
}
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* all sectors from first to last (or part of them) could have different
|
|
|
|
* protection other than the requested */
|
|
|
|
unsigned int n_wrp;
|
|
|
|
struct stm32l4_wrp wrpxy[4];
|
2015-08-22 11:36:52 -05:00
|
|
|
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
ret = stm32l4_get_all_wrpxy(bank, use_bank2 ? STM32_BANK2 : STM32_BANK1, wrpxy, &n_wrp);
|
|
|
|
if (ret != ERROR_OK)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* use bitmap and range helpers to optimize the WRP usage */
|
|
|
|
DECLARE_BITMAP(pages, bank->num_sectors);
|
|
|
|
bitmap_zero(pages, bank->num_sectors);
|
|
|
|
|
|
|
|
for (i = 0; i < n_wrp; i++) {
|
|
|
|
if (wrpxy[i].used) {
|
|
|
|
for (int p = wrpxy[i].first; p <= wrpxy[i].last; p++)
|
|
|
|
set_bit(p, pages);
|
|
|
|
}
|
2018-08-16 07:04:45 -05:00
|
|
|
}
|
2015-08-22 11:36:52 -05:00
|
|
|
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
/* we have at most 'n_wrp' WRP areas
|
|
|
|
* add one range if the user is trying to protect a fifth range */
|
|
|
|
struct range ranges[n_wrp + 1];
|
|
|
|
unsigned int ranges_count = 0;
|
|
|
|
|
|
|
|
bitmap_to_ranges(pages, bank->num_sectors, ranges, &ranges_count);
|
|
|
|
|
|
|
|
/* pretty-print the currently protected ranges */
|
|
|
|
if (ranges_count > 0) {
|
|
|
|
char *ranges_str = range_print_alloc(ranges, ranges_count);
|
|
|
|
LOG_DEBUG("current protected areas: %s", ranges_str);
|
|
|
|
free(ranges_str);
|
|
|
|
} else
|
|
|
|
LOG_DEBUG("current protected areas: none");
|
|
|
|
|
|
|
|
if (set) { /* flash protect */
|
|
|
|
for (i = first; i <= last; i++)
|
|
|
|
set_bit(i, pages);
|
|
|
|
} else { /* flash unprotect */
|
|
|
|
for (i = first; i <= last; i++)
|
|
|
|
clear_bit(i, pages);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check the ranges_count after the user request */
|
|
|
|
bitmap_to_ranges(pages, bank->num_sectors, ranges, &ranges_count);
|
|
|
|
|
|
|
|
/* pretty-print the requested areas for protection */
|
|
|
|
if (ranges_count > 0) {
|
|
|
|
char *ranges_str = range_print_alloc(ranges, ranges_count);
|
|
|
|
LOG_DEBUG("requested areas for protection: %s", ranges_str);
|
|
|
|
free(ranges_str);
|
|
|
|
} else
|
|
|
|
LOG_DEBUG("requested areas for protection: none");
|
|
|
|
|
|
|
|
if (ranges_count > n_wrp) {
|
|
|
|
LOG_ERROR("cannot set the requested protection "
|
|
|
|
"(only %u write protection areas are available)" , n_wrp);
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* re-init all WRPxy as disabled (first > last)*/
|
|
|
|
for (i = 0; i < n_wrp; i++) {
|
|
|
|
wrpxy[i].first = wrpxy[i].offset + 1;
|
|
|
|
wrpxy[i].last = wrpxy[i].offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* then configure WRPxy areas */
|
|
|
|
for (i = 0; i < ranges_count; i++) {
|
|
|
|
wrpxy[i].first = ranges[i].start;
|
|
|
|
wrpxy[i].last = ranges[i].end;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* finally write WRPxy registers */
|
|
|
|
return stm32l4_write_all_wrpxy(bank, wrpxy, n_wrp);
|
2015-08-22 11:36:52 -05:00
|
|
|
}
|
|
|
|
|
2019-12-14 11:55:01 -06:00
|
|
|
/* Count is in double-words */
|
2015-08-22 11:36:52 -05:00
|
|
|
static int stm32l4_write_block(struct flash_bank *bank, const uint8_t *buffer,
|
2018-12-16 10:30:41 -06:00
|
|
|
uint32_t offset, uint32_t count)
|
2015-08-22 11:36:52 -05:00
|
|
|
{
|
|
|
|
struct target *target = bank->target;
|
2018-12-16 10:30:41 -06:00
|
|
|
uint32_t buffer_size;
|
2015-08-22 11:36:52 -05:00
|
|
|
struct working_area *write_algorithm;
|
|
|
|
struct working_area *source;
|
|
|
|
uint32_t address = bank->base + offset;
|
2018-12-16 10:30:41 -06:00
|
|
|
struct reg_param reg_params[6];
|
2015-08-22 11:36:52 -05:00
|
|
|
struct armv7m_algorithm armv7m_info;
|
|
|
|
int retval = ERROR_OK;
|
|
|
|
|
|
|
|
static const uint8_t stm32l4_flash_write_code[] = {
|
2018-03-01 15:57:08 -06:00
|
|
|
#include "../../../contrib/loaders/flash/stm32/stm32l4x.inc"
|
2015-08-22 11:36:52 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
if (target_alloc_working_area(target, sizeof(stm32l4_flash_write_code),
|
|
|
|
&write_algorithm) != ERROR_OK) {
|
|
|
|
LOG_WARNING("no working area available, can't do block memory writes");
|
|
|
|
return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
|
2016-02-28 14:21:40 -06:00
|
|
|
}
|
2015-08-22 11:36:52 -05:00
|
|
|
|
|
|
|
retval = target_write_buffer(target, write_algorithm->address,
|
|
|
|
sizeof(stm32l4_flash_write_code),
|
|
|
|
stm32l4_flash_write_code);
|
2018-05-14 15:06:39 -05:00
|
|
|
if (retval != ERROR_OK) {
|
|
|
|
target_free_working_area(target, write_algorithm);
|
2015-08-22 11:36:52 -05:00
|
|
|
return retval;
|
2018-05-14 15:06:39 -05:00
|
|
|
}
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2018-12-16 10:30:41 -06:00
|
|
|
/* memory buffer, size *must* be multiple of dword plus one dword for rp and one for wp */
|
|
|
|
buffer_size = target_get_working_area_avail(target) & ~(2 * sizeof(uint32_t) - 1);
|
|
|
|
if (buffer_size < 256) {
|
|
|
|
LOG_WARNING("large enough working area not available, can't do block memory writes");
|
|
|
|
return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
|
|
|
|
} else if (buffer_size > 16384) {
|
|
|
|
/* probably won't benefit from more than 16k ... */
|
|
|
|
buffer_size = 16384;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (target_alloc_working_area_try(target, buffer_size, &source) != ERROR_OK) {
|
|
|
|
LOG_ERROR("allocating working area failed");
|
|
|
|
return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
|
2016-02-28 14:21:40 -06:00
|
|
|
}
|
2015-08-22 11:36:52 -05:00
|
|
|
|
|
|
|
armv7m_info.common_magic = ARMV7M_COMMON_MAGIC;
|
|
|
|
armv7m_info.core_mode = ARM_MODE_THREAD;
|
|
|
|
|
|
|
|
init_reg_param(®_params[0], "r0", 32, PARAM_IN_OUT); /* buffer start, status (out) */
|
|
|
|
init_reg_param(®_params[1], "r1", 32, PARAM_OUT); /* buffer end */
|
|
|
|
init_reg_param(®_params[2], "r2", 32, PARAM_OUT); /* target address */
|
|
|
|
init_reg_param(®_params[3], "r3", 32, PARAM_OUT); /* count (double word-64bit) */
|
2018-12-16 10:30:41 -06:00
|
|
|
init_reg_param(®_params[4], "r4", 32, PARAM_OUT); /* flash status register */
|
|
|
|
init_reg_param(®_params[5], "r5", 32, PARAM_OUT); /* flash control register */
|
2015-08-22 11:36:52 -05:00
|
|
|
|
|
|
|
buf_set_u32(reg_params[0].value, 0, 32, source->address);
|
|
|
|
buf_set_u32(reg_params[1].value, 0, 32, source->address + source->size);
|
|
|
|
buf_set_u32(reg_params[2].value, 0, 32, address);
|
2019-12-14 11:55:01 -06:00
|
|
|
buf_set_u32(reg_params[3].value, 0, 32, count);
|
2020-11-02 18:58:59 -06:00
|
|
|
buf_set_u32(reg_params[4].value, 0, 32, stm32l4_get_flash_reg_by_index(bank, STM32_FLASH_SR_INDEX));
|
|
|
|
buf_set_u32(reg_params[5].value, 0, 32, stm32l4_get_flash_reg_by_index(bank, STM32_FLASH_CR_INDEX));
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2019-12-14 11:55:01 -06:00
|
|
|
retval = target_run_flash_async_algorithm(target, buffer, count, 8,
|
2015-08-22 11:36:52 -05:00
|
|
|
0, NULL,
|
2018-12-16 10:30:41 -06:00
|
|
|
ARRAY_SIZE(reg_params), reg_params,
|
2015-08-22 11:36:52 -05:00
|
|
|
source->address, source->size,
|
|
|
|
write_algorithm->address, 0,
|
|
|
|
&armv7m_info);
|
|
|
|
|
|
|
|
if (retval == ERROR_FLASH_OPERATION_FAILED) {
|
|
|
|
LOG_ERROR("error executing stm32l4 flash write algorithm");
|
|
|
|
|
|
|
|
uint32_t error = buf_get_u32(reg_params[0].value, 0, 32) & FLASH_ERROR;
|
|
|
|
|
|
|
|
if (error & FLASH_WRPERR)
|
|
|
|
LOG_ERROR("flash memory write protected");
|
|
|
|
|
|
|
|
if (error != 0) {
|
|
|
|
LOG_ERROR("flash write failed = %08" PRIx32, error);
|
|
|
|
/* Clear but report errors */
|
2020-11-02 18:58:59 -06:00
|
|
|
stm32l4_write_flash_reg_by_index(bank, STM32_FLASH_SR_INDEX, error);
|
2015-08-22 11:36:52 -05:00
|
|
|
retval = ERROR_FAIL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
target_free_working_area(target, source);
|
|
|
|
target_free_working_area(target, write_algorithm);
|
|
|
|
|
|
|
|
destroy_reg_param(®_params[0]);
|
|
|
|
destroy_reg_param(®_params[1]);
|
|
|
|
destroy_reg_param(®_params[2]);
|
|
|
|
destroy_reg_param(®_params[3]);
|
|
|
|
destroy_reg_param(®_params[4]);
|
2018-12-16 10:30:41 -06:00
|
|
|
destroy_reg_param(®_params[5]);
|
2015-08-22 11:36:52 -05:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int stm32l4_write(struct flash_bank *bank, const uint8_t *buffer,
|
2018-12-16 10:30:41 -06:00
|
|
|
uint32_t offset, uint32_t count)
|
2015-08-22 11:36:52 -05:00
|
|
|
{
|
2018-12-16 10:30:41 -06:00
|
|
|
int retval = ERROR_OK, retval2;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2020-03-22 14:39:44 -05:00
|
|
|
if (stm32l4_is_otp(bank) && !stm32l4_otp_is_enabled(bank)) {
|
|
|
|
LOG_ERROR("OTP memory is disabled for write commands");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
|
2015-08-22 11:36:52 -05:00
|
|
|
if (bank->target->state != TARGET_HALTED) {
|
|
|
|
LOG_ERROR("Target not halted");
|
|
|
|
return ERROR_TARGET_NOT_HALTED;
|
|
|
|
}
|
|
|
|
|
2019-12-14 09:08:32 -06:00
|
|
|
/* The flash write must be aligned to a double word (8-bytes) boundary.
|
|
|
|
* The flash infrastructure ensures it, do just a security check */
|
|
|
|
assert(offset % 8 == 0);
|
|
|
|
assert(count % 8 == 0);
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2018-12-16 10:30:41 -06:00
|
|
|
/* STM32G4xxx Cat. 3 devices may have gaps between banks, check whether
|
|
|
|
* data to be written does not go into a gap:
|
|
|
|
* suppose buffer is fully contained in bank from sector 0 to sector
|
|
|
|
* num->sectors - 1 and sectors are ordered according to offset
|
|
|
|
*/
|
|
|
|
struct flash_sector *head = &bank->sectors[0];
|
|
|
|
struct flash_sector *tail = &bank->sectors[bank->num_sectors - 1];
|
|
|
|
|
|
|
|
while ((head < tail) && (offset >= (head + 1)->offset)) {
|
|
|
|
/* buffer does not intersect head nor gap behind head */
|
|
|
|
head++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((head < tail) && (offset + count <= (tail - 1)->offset + (tail - 1)->size)) {
|
|
|
|
/* buffer does not intersect tail nor gap before tail */
|
|
|
|
--tail;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG_DEBUG("data: 0x%08" PRIx32 " - 0x%08" PRIx32 ", sectors: 0x%08" PRIx32 " - 0x%08" PRIx32,
|
|
|
|
offset, offset + count - 1, head->offset, tail->offset + tail->size - 1);
|
|
|
|
|
|
|
|
/* Now check that there is no gap from head to tail, this should work
|
|
|
|
* even for multiple or non-symmetric gaps
|
|
|
|
*/
|
|
|
|
while (head < tail) {
|
|
|
|
if (head->offset + head->size != (head + 1)->offset) {
|
|
|
|
LOG_ERROR("write into gap from " TARGET_ADDR_FMT " to " TARGET_ADDR_FMT,
|
|
|
|
bank->base + head->offset + head->size,
|
|
|
|
bank->base + (head + 1)->offset - 1);
|
|
|
|
retval = ERROR_FLASH_DST_OUT_OF_BANK;
|
|
|
|
}
|
|
|
|
head++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
retval = stm32l4_unlock_reg(bank);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
2019-12-14 12:37:41 -06:00
|
|
|
goto err_lock;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2019-12-14 11:55:01 -06:00
|
|
|
retval = stm32l4_write_block(bank, buffer, offset, count / 8);
|
|
|
|
|
2019-12-14 12:37:41 -06:00
|
|
|
err_lock:
|
2020-11-02 18:58:59 -06:00
|
|
|
retval2 = stm32l4_write_flash_reg_by_index(bank, STM32_FLASH_CR_INDEX, FLASH_LOCK);
|
2019-12-14 11:55:01 -06:00
|
|
|
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK) {
|
2019-12-14 11:55:01 -06:00
|
|
|
LOG_ERROR("block write failed");
|
2015-08-22 11:36:52 -05:00
|
|
|
return retval;
|
2020-01-05 16:19:41 -06:00
|
|
|
}
|
2019-12-14 11:55:01 -06:00
|
|
|
return retval2;
|
2020-01-05 16:19:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static int stm32l4_read_idcode(struct flash_bank *bank, uint32_t *id)
|
|
|
|
{
|
2018-12-16 10:30:41 -06:00
|
|
|
int retval;
|
|
|
|
|
2020-03-25 10:33:30 -05:00
|
|
|
/* try reading possible IDCODE registers, in the following order */
|
2021-04-28 17:31:29 -05:00
|
|
|
uint32_t dbgmcu_idcode[] = {DBGMCU_IDCODE_L4_G4, DBGMCU_IDCODE_G0, DBGMCU_IDCODE_L5};
|
2020-03-25 10:33:30 -05:00
|
|
|
|
2021-04-28 17:31:29 -05:00
|
|
|
for (unsigned int i = 0; i < ARRAY_SIZE(dbgmcu_idcode); i++) {
|
|
|
|
retval = target_read_u32(bank->target, dbgmcu_idcode[i], id);
|
2020-03-25 10:33:30 -05:00
|
|
|
if ((retval == ERROR_OK) && ((*id & 0xfff) != 0) && ((*id & 0xfff) != 0xfff))
|
|
|
|
return ERROR_OK;
|
2018-12-16 10:30:41 -06:00
|
|
|
}
|
2020-01-05 16:19:41 -06:00
|
|
|
|
2020-03-25 10:33:30 -05:00
|
|
|
LOG_ERROR("can't get the device id");
|
|
|
|
return (retval == ERROR_OK) ? ERROR_FAIL : retval;
|
2015-08-22 11:36:52 -05:00
|
|
|
}
|
|
|
|
|
2021-04-23 03:47:17 -05:00
|
|
|
static const char *get_stm32l4_rev_str(struct flash_bank *bank)
|
|
|
|
{
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
const struct stm32l4_part_info *part_info = stm32l4_info->part_info;
|
|
|
|
assert(part_info);
|
|
|
|
|
|
|
|
const uint16_t rev_id = stm32l4_info->idcode >> 16;
|
|
|
|
for (unsigned int i = 0; i < part_info->num_revs; i++) {
|
|
|
|
if (rev_id == part_info->revs[i].rev)
|
|
|
|
return part_info->revs[i].str;
|
|
|
|
}
|
|
|
|
return "'unknown'";
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *get_stm32l4_bank_type_str(struct flash_bank *bank)
|
|
|
|
{
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
assert(stm32l4_info->part_info);
|
|
|
|
return stm32l4_is_otp(bank) ? "OTP" :
|
|
|
|
stm32l4_info->dual_bank_mode ? "Flash dual" :
|
|
|
|
"Flash single";
|
|
|
|
}
|
|
|
|
|
2015-08-22 11:36:52 -05:00
|
|
|
static int stm32l4_probe(struct flash_bank *bank)
|
|
|
|
{
|
|
|
|
struct target *target = bank->target;
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
2020-01-05 16:19:41 -06:00
|
|
|
const struct stm32l4_part_info *part_info;
|
2018-12-16 10:30:41 -06:00
|
|
|
uint16_t flash_size_kb = 0xffff;
|
2015-08-22 11:36:52 -05:00
|
|
|
uint32_t options;
|
|
|
|
|
2020-02-10 08:37:45 -06:00
|
|
|
stm32l4_info->probed = false;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2018-12-16 10:30:41 -06:00
|
|
|
/* read stm32 device id registers */
|
2020-01-05 16:19:41 -06:00
|
|
|
int retval = stm32l4_read_idcode(bank, &stm32l4_info->idcode);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
2021-04-23 03:47:17 -05:00
|
|
|
const uint32_t device_id = stm32l4_info->idcode & 0xFFF;
|
2020-01-05 16:19:41 -06:00
|
|
|
|
|
|
|
for (unsigned int n = 0; n < ARRAY_SIZE(stm32l4_parts); n++) {
|
2021-05-13 11:44:14 -05:00
|
|
|
if (device_id == stm32l4_parts[n].id) {
|
2020-01-05 16:19:41 -06:00
|
|
|
stm32l4_info->part_info = &stm32l4_parts[n];
|
2021-05-13 11:44:14 -05:00
|
|
|
break;
|
|
|
|
}
|
2020-01-05 16:19:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!stm32l4_info->part_info) {
|
2018-12-16 10:30:41 -06:00
|
|
|
LOG_WARNING("Cannot identify target as an %s family device.", device_families);
|
2015-08-22 11:36:52 -05:00
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
part_info = stm32l4_info->part_info;
|
2021-06-21 09:18:38 -05:00
|
|
|
const char *rev_str = get_stm32l4_rev_str(bank);
|
|
|
|
const uint16_t rev_id = stm32l4_info->idcode >> 16;
|
2020-01-05 16:19:41 -06:00
|
|
|
|
2021-07-29 04:35:26 -05:00
|
|
|
LOG_INFO("device idcode = 0x%08" PRIx32 " (%s - Rev %s : 0x%04x)",
|
|
|
|
stm32l4_info->idcode, part_info->device_str, rev_str, rev_id);
|
2020-01-05 16:19:41 -06:00
|
|
|
|
2021-06-21 09:18:38 -05:00
|
|
|
stm32l4_info->flash_regs = stm32l4_info->part_info->default_flash_regs;
|
|
|
|
|
2020-11-02 18:22:53 -06:00
|
|
|
/* read flash option register */
|
|
|
|
retval = stm32l4_read_flash_reg_by_index(bank, STM32_FLASH_OPTR_INDEX, &options);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
stm32l4_sync_rdp_tzen(bank, options);
|
|
|
|
|
|
|
|
if (part_info->flags & F_HAS_TZ)
|
|
|
|
LOG_INFO("TZEN = %d : TrustZone %s by option bytes",
|
|
|
|
stm32l4_info->tzen,
|
|
|
|
stm32l4_info->tzen ? "enabled" : "disabled");
|
|
|
|
|
|
|
|
LOG_INFO("RDP level %s (0x%02X)",
|
|
|
|
stm32l4_info->rdp == RDP_LEVEL_0 ? "0" : stm32l4_info->rdp == RDP_LEVEL_0_5 ? "0.5" : "1",
|
|
|
|
stm32l4_info->rdp);
|
|
|
|
|
2020-03-22 14:39:44 -05:00
|
|
|
if (stm32l4_is_otp(bank)) {
|
|
|
|
bank->size = part_info->otp_size;
|
|
|
|
|
|
|
|
LOG_INFO("OTP size is %d bytes, base address is " TARGET_ADDR_FMT, bank->size, bank->base);
|
|
|
|
|
|
|
|
/* OTP memory is considered as one sector */
|
|
|
|
free(bank->sectors);
|
|
|
|
bank->num_sectors = 1;
|
|
|
|
bank->sectors = alloc_block_array(0, part_info->otp_size, 1);
|
|
|
|
|
|
|
|
if (!bank->sectors) {
|
|
|
|
LOG_ERROR("failed to allocate bank sectors");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
stm32l4_info->probed = true;
|
|
|
|
return ERROR_OK;
|
|
|
|
} else if (bank->base != STM32_FLASH_BANK_BASE) {
|
|
|
|
LOG_ERROR("invalid bank base address");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
|
2015-08-22 11:36:52 -05:00
|
|
|
/* get flash size from target. */
|
2018-12-16 10:30:41 -06:00
|
|
|
retval = target_read_u16(target, part_info->fsize_addr, &flash_size_kb);
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2016-05-22 09:51:34 -05:00
|
|
|
/* failed reading flash size or flash size invalid (early silicon),
|
|
|
|
* default to max target family */
|
2018-12-16 10:30:41 -06:00
|
|
|
if (retval != ERROR_OK || flash_size_kb == 0xffff || flash_size_kb == 0
|
|
|
|
|| flash_size_kb > part_info->max_flash_size_kb) {
|
2016-05-22 09:51:34 -05:00
|
|
|
LOG_WARNING("STM32 flash size failed, probe inaccurate - assuming %dk flash",
|
2020-01-05 16:19:41 -06:00
|
|
|
part_info->max_flash_size_kb);
|
2018-12-16 10:30:41 -06:00
|
|
|
flash_size_kb = part_info->max_flash_size_kb;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if the user sets the size manually then ignore the probed value
|
|
|
|
* this allows us to work around devices that have a invalid flash size register value */
|
|
|
|
if (stm32l4_info->user_bank_size) {
|
|
|
|
LOG_WARNING("overriding size register by configured bank size - MAY CAUSE TROUBLE");
|
|
|
|
flash_size_kb = stm32l4_info->user_bank_size / 1024;
|
2016-05-22 09:51:34 -05:00
|
|
|
}
|
|
|
|
|
2018-12-16 10:30:41 -06:00
|
|
|
LOG_INFO("flash size = %dkbytes", flash_size_kb);
|
2016-05-22 09:51:34 -05:00
|
|
|
|
2018-11-23 07:40:39 -06:00
|
|
|
/* did we assign a flash size? */
|
2018-12-16 10:30:41 -06:00
|
|
|
assert((flash_size_kb != 0xffff) && flash_size_kb);
|
2016-05-22 09:51:34 -05:00
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
stm32l4_info->bank1_sectors = 0;
|
|
|
|
stm32l4_info->hole_sectors = 0;
|
|
|
|
|
2018-11-23 07:40:39 -06:00
|
|
|
int num_pages = 0;
|
2018-12-16 10:30:41 -06:00
|
|
|
int page_size_kb = 0;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
stm32l4_info->dual_bank_mode = false;
|
2020-03-25 10:33:30 -05:00
|
|
|
bool use_dbank_bit = false;
|
2020-01-05 16:19:41 -06:00
|
|
|
|
|
|
|
switch (device_id) {
|
2018-12-16 10:30:41 -06:00
|
|
|
case 0x415: /* STM32L47/L48xx */
|
|
|
|
case 0x461: /* STM32L49/L4Axx */
|
2020-01-05 16:19:41 -06:00
|
|
|
/* if flash size is max (1M) the device is always dual bank
|
|
|
|
* 0x415: has variants with 512K
|
|
|
|
* 0x461: has variants with 512 and 256
|
|
|
|
* for these variants:
|
|
|
|
* if DUAL_BANK = 0 -> single bank
|
|
|
|
* else -> dual bank without gap
|
|
|
|
* note: the page size is invariant
|
|
|
|
*/
|
2018-12-16 10:30:41 -06:00
|
|
|
page_size_kb = 2;
|
|
|
|
num_pages = flash_size_kb / page_size_kb;
|
2020-01-05 16:19:41 -06:00
|
|
|
stm32l4_info->bank1_sectors = num_pages;
|
|
|
|
|
|
|
|
/* check DUAL_BANK bit[21] if the flash is less than 1M */
|
2018-12-16 10:30:41 -06:00
|
|
|
if (flash_size_kb == 1024 || (options & BIT(21))) {
|
2020-01-05 16:19:41 -06:00
|
|
|
stm32l4_info->dual_bank_mode = true;
|
|
|
|
stm32l4_info->bank1_sectors = num_pages / 2;
|
|
|
|
}
|
|
|
|
break;
|
2018-12-16 10:30:41 -06:00
|
|
|
case 0x435: /* STM32L43/L44xx */
|
|
|
|
case 0x460: /* STM32G07/G08xx */
|
|
|
|
case 0x462: /* STM32L45/L46xx */
|
|
|
|
case 0x464: /* STM32L41/L42xx */
|
|
|
|
case 0x466: /* STM32G03/G04xx */
|
|
|
|
case 0x468: /* STM32G43/G44xx */
|
2020-10-15 11:05:48 -05:00
|
|
|
case 0x479: /* STM32G49/G4Axx */
|
2020-03-09 09:10:17 -05:00
|
|
|
case 0x497: /* STM32WLEx */
|
2020-01-05 16:19:41 -06:00
|
|
|
/* single bank flash */
|
2018-12-16 10:30:41 -06:00
|
|
|
page_size_kb = 2;
|
|
|
|
num_pages = flash_size_kb / page_size_kb;
|
2020-01-05 16:19:41 -06:00
|
|
|
stm32l4_info->bank1_sectors = num_pages;
|
|
|
|
break;
|
2018-12-16 10:30:41 -06:00
|
|
|
case 0x469: /* STM32G47/G48xx */
|
|
|
|
/* STM32G47/8 can be single/dual bank:
|
|
|
|
* if DUAL_BANK = 0 -> single bank
|
|
|
|
* else -> dual bank WITH gap
|
|
|
|
*/
|
|
|
|
page_size_kb = 4;
|
|
|
|
num_pages = flash_size_kb / page_size_kb;
|
|
|
|
stm32l4_info->bank1_sectors = num_pages;
|
|
|
|
if (options & BIT(22)) {
|
|
|
|
stm32l4_info->dual_bank_mode = true;
|
|
|
|
page_size_kb = 2;
|
|
|
|
num_pages = flash_size_kb / page_size_kb;
|
|
|
|
stm32l4_info->bank1_sectors = num_pages / 2;
|
|
|
|
|
|
|
|
/* for devices with trimmed flash, there is a gap between both banks */
|
|
|
|
stm32l4_info->hole_sectors =
|
|
|
|
(part_info->max_flash_size_kb - flash_size_kb) / (2 * page_size_kb);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x470: /* STM32L4R/L4Sxx */
|
|
|
|
case 0x471: /* STM32L4P5/L4Q5x */
|
2020-01-05 16:19:41 -06:00
|
|
|
/* STM32L4R/S can be single/dual bank:
|
|
|
|
* if size = 2M check DBANK bit(22)
|
|
|
|
* if size = 1M check DB1M bit(21)
|
2020-01-06 11:33:42 -06:00
|
|
|
* STM32L4P/Q can be single/dual bank
|
|
|
|
* if size = 1M check DBANK bit(22)
|
|
|
|
* if size = 512K check DB512K bit(21)
|
2020-01-05 16:19:41 -06:00
|
|
|
*/
|
2018-12-16 10:30:41 -06:00
|
|
|
page_size_kb = 8;
|
|
|
|
num_pages = flash_size_kb / page_size_kb;
|
2020-01-05 16:19:41 -06:00
|
|
|
stm32l4_info->bank1_sectors = num_pages;
|
2020-03-25 10:33:30 -05:00
|
|
|
use_dbank_bit = flash_size_kb == part_info->max_flash_size_kb;
|
2020-01-06 11:33:42 -06:00
|
|
|
if ((use_dbank_bit && (options & BIT(22))) ||
|
|
|
|
(!use_dbank_bit && (options & BIT(21)))) {
|
2020-01-05 16:19:41 -06:00
|
|
|
stm32l4_info->dual_bank_mode = true;
|
2018-12-16 10:30:41 -06:00
|
|
|
page_size_kb = 4;
|
|
|
|
num_pages = flash_size_kb / page_size_kb;
|
2020-01-05 16:19:41 -06:00
|
|
|
stm32l4_info->bank1_sectors = num_pages / 2;
|
|
|
|
}
|
|
|
|
break;
|
2020-03-25 10:33:30 -05:00
|
|
|
case 0x472: /* STM32L55/L56xx */
|
|
|
|
/* STM32L55/L56xx can be single/dual bank:
|
|
|
|
* if size = 512K check DBANK bit(22)
|
|
|
|
* if size = 256K check DB256K bit(21)
|
|
|
|
*/
|
|
|
|
page_size_kb = 4;
|
|
|
|
num_pages = flash_size_kb / page_size_kb;
|
|
|
|
stm32l4_info->bank1_sectors = num_pages;
|
|
|
|
use_dbank_bit = flash_size_kb == part_info->max_flash_size_kb;
|
|
|
|
if ((use_dbank_bit && (options & BIT(22))) ||
|
|
|
|
(!use_dbank_bit && (options & BIT(21)))) {
|
|
|
|
stm32l4_info->dual_bank_mode = true;
|
|
|
|
page_size_kb = 2;
|
|
|
|
num_pages = flash_size_kb / page_size_kb;
|
|
|
|
stm32l4_info->bank1_sectors = num_pages / 2;
|
|
|
|
}
|
|
|
|
break;
|
2018-12-16 10:30:41 -06:00
|
|
|
case 0x495: /* STM32WB5x */
|
2020-03-09 07:33:08 -05:00
|
|
|
case 0x496: /* STM32WB3x */
|
2020-01-06 10:19:31 -06:00
|
|
|
/* single bank flash */
|
2018-12-16 10:30:41 -06:00
|
|
|
page_size_kb = 4;
|
|
|
|
num_pages = flash_size_kb / page_size_kb;
|
2020-01-06 10:19:31 -06:00
|
|
|
stm32l4_info->bank1_sectors = num_pages;
|
|
|
|
break;
|
2020-01-05 16:19:41 -06:00
|
|
|
default:
|
|
|
|
LOG_ERROR("unsupported device");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG_INFO("flash mode : %s-bank", stm32l4_info->dual_bank_mode ? "dual" : "single");
|
|
|
|
|
2018-12-16 10:30:41 -06:00
|
|
|
const int gap_size_kb = stm32l4_info->hole_sectors * page_size_kb;
|
2020-01-05 16:19:41 -06:00
|
|
|
|
2018-12-16 10:30:41 -06:00
|
|
|
if (gap_size_kb != 0) {
|
2020-08-18 11:56:03 -05:00
|
|
|
LOG_INFO("gap detected from 0x%08x to 0x%08x",
|
2018-12-16 10:30:41 -06:00
|
|
|
STM32_FLASH_BANK_BASE + stm32l4_info->bank1_sectors
|
|
|
|
* page_size_kb * 1024,
|
|
|
|
STM32_FLASH_BANK_BASE + (stm32l4_info->bank1_sectors
|
|
|
|
* page_size_kb + gap_size_kb) * 1024 - 1);
|
2018-11-23 07:40:39 -06:00
|
|
|
}
|
2018-08-02 11:59:24 -05:00
|
|
|
|
2018-12-16 10:30:41 -06:00
|
|
|
/* number of significant bits in WRPxxR differs per device,
|
|
|
|
* always right adjusted, on some devices non-implemented
|
|
|
|
* bits read as '0', on others as '1' ...
|
|
|
|
* notably G4 Cat. 2 implement only 6 bits, contradicting the RM
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* use *max_flash_size* instead of actual size as the trimmed versions
|
|
|
|
* certainly use the same number of bits
|
|
|
|
* max_flash_size is always power of two, so max_pages too
|
|
|
|
*/
|
|
|
|
uint32_t max_pages = stm32l4_info->part_info->max_flash_size_kb / page_size_kb;
|
2021-05-13 17:48:31 -05:00
|
|
|
assert(IS_PWR_OF_2(max_pages));
|
2018-12-16 10:30:41 -06:00
|
|
|
|
|
|
|
/* in dual bank mode number of pages is doubled, but extra bit is bank selection */
|
|
|
|
stm32l4_info->wrpxxr_mask = ((max_pages >> (stm32l4_info->dual_bank_mode ? 1 : 0)) - 1);
|
|
|
|
assert((stm32l4_info->wrpxxr_mask & 0xFFFF0000) == 0);
|
2020-04-15 18:21:30 -05:00
|
|
|
LOG_DEBUG("WRPxxR mask 0x%04" PRIx16, (uint16_t)stm32l4_info->wrpxxr_mask);
|
2018-12-16 10:30:41 -06:00
|
|
|
|
2020-08-17 03:08:35 -05:00
|
|
|
free(bank->sectors);
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2018-12-16 10:30:41 -06:00
|
|
|
bank->size = (flash_size_kb + gap_size_kb) * 1024;
|
2015-08-22 11:36:52 -05:00
|
|
|
bank->num_sectors = num_pages;
|
2020-01-05 16:19:41 -06:00
|
|
|
bank->sectors = malloc(sizeof(struct flash_sector) * bank->num_sectors);
|
2021-07-03 11:51:20 -05:00
|
|
|
if (!bank->sectors) {
|
2020-01-05 16:19:41 -06:00
|
|
|
LOG_ERROR("failed to allocate bank sectors");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2020-06-07 10:00:13 -05:00
|
|
|
for (unsigned int i = 0; i < bank->num_sectors; i++) {
|
2018-12-16 10:30:41 -06:00
|
|
|
bank->sectors[i].offset = i * page_size_kb * 1024;
|
2020-01-05 16:19:41 -06:00
|
|
|
/* in dual bank configuration, if there is a gap between banks
|
|
|
|
* we fix up the sector offset to consider this gap */
|
|
|
|
if (i >= stm32l4_info->bank1_sectors && stm32l4_info->hole_sectors)
|
2018-12-16 10:30:41 -06:00
|
|
|
bank->sectors[i].offset += gap_size_kb * 1024;
|
|
|
|
bank->sectors[i].size = page_size_kb * 1024;
|
2015-08-22 11:36:52 -05:00
|
|
|
bank->sectors[i].is_erased = -1;
|
|
|
|
bank->sectors[i].is_protected = 1;
|
|
|
|
}
|
|
|
|
|
2020-02-10 08:37:45 -06:00
|
|
|
stm32l4_info->probed = true;
|
2015-08-22 11:36:52 -05:00
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int stm32l4_auto_probe(struct flash_bank *bank)
|
|
|
|
{
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
if (stm32l4_info->probed)
|
|
|
|
return ERROR_OK;
|
2020-01-05 16:19:41 -06:00
|
|
|
|
2015-08-22 11:36:52 -05:00
|
|
|
return stm32l4_probe(bank);
|
|
|
|
}
|
|
|
|
|
2021-04-23 03:47:17 -05:00
|
|
|
static int get_stm32l4_info(struct flash_bank *bank, struct command_invocation *cmd)
|
2015-08-22 11:36:52 -05:00
|
|
|
{
|
2020-01-05 16:19:41 -06:00
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
const struct stm32l4_part_info *part_info = stm32l4_info->part_info;
|
|
|
|
|
|
|
|
if (part_info) {
|
2021-04-23 03:47:17 -05:00
|
|
|
const uint16_t rev_id = stm32l4_info->idcode >> 16;
|
|
|
|
command_print_sameline(cmd, "%s - Rev %s : 0x%04x", part_info->device_str,
|
|
|
|
get_stm32l4_rev_str(bank), rev_id);
|
2020-03-22 13:36:12 -05:00
|
|
|
if (stm32l4_info->probed)
|
2021-04-23 03:47:17 -05:00
|
|
|
command_print_sameline(cmd, " - %s-bank", get_stm32l4_bank_type_str(bank));
|
2020-01-05 16:19:41 -06:00
|
|
|
} else {
|
2021-04-23 03:47:17 -05:00
|
|
|
command_print_sameline(cmd, "Cannot identify target as an %s device", device_families);
|
2015-08-22 11:36:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
static int stm32l4_mass_erase(struct flash_bank *bank)
|
2015-08-22 11:36:52 -05:00
|
|
|
{
|
2019-12-14 12:37:41 -06:00
|
|
|
int retval, retval2;
|
2015-08-22 11:36:52 -05:00
|
|
|
struct target *target = bank->target;
|
2020-01-05 16:19:41 -06:00
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
|
2020-03-22 14:39:44 -05:00
|
|
|
if (stm32l4_is_otp(bank)) {
|
|
|
|
LOG_ERROR("cannot erase OTP memory");
|
|
|
|
return ERROR_FLASH_OPER_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
uint32_t action = FLASH_MER1;
|
|
|
|
|
2020-11-02 18:07:00 -06:00
|
|
|
if (stm32l4_info->part_info->flags & F_HAS_DUAL_BANK)
|
2020-01-05 16:19:41 -06:00
|
|
|
action |= FLASH_MER2;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
|
|
|
if (target->state != TARGET_HALTED) {
|
|
|
|
LOG_ERROR("Target not halted");
|
|
|
|
return ERROR_TARGET_NOT_HALTED;
|
|
|
|
}
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
retval = stm32l4_unlock_reg(bank);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
2019-12-14 12:37:41 -06:00
|
|
|
goto err_lock;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
|
|
|
/* mass erase flash memory */
|
2020-01-05 16:19:41 -06:00
|
|
|
retval = stm32l4_wait_status_busy(bank, FLASH_ERASE_TIMEOUT / 10);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
2019-12-14 12:37:41 -06:00
|
|
|
goto err_lock;
|
2020-01-05 16:19:41 -06:00
|
|
|
|
2020-11-02 18:58:59 -06:00
|
|
|
retval = stm32l4_write_flash_reg_by_index(bank, STM32_FLASH_CR_INDEX, action);
|
2020-01-05 16:19:41 -06:00
|
|
|
if (retval != ERROR_OK)
|
2019-12-14 12:37:41 -06:00
|
|
|
goto err_lock;
|
|
|
|
|
2020-11-02 18:58:59 -06:00
|
|
|
retval = stm32l4_write_flash_reg_by_index(bank, STM32_FLASH_CR_INDEX, action | FLASH_STRT);
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
2019-12-14 12:37:41 -06:00
|
|
|
goto err_lock;
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2020-03-09 13:10:56 -05:00
|
|
|
retval = stm32l4_wait_status_busy(bank, FLASH_ERASE_TIMEOUT);
|
2015-08-22 11:36:52 -05:00
|
|
|
|
2019-12-14 12:37:41 -06:00
|
|
|
err_lock:
|
2020-11-02 18:58:59 -06:00
|
|
|
retval2 = stm32l4_write_flash_reg_by_index(bank, STM32_FLASH_CR_INDEX, FLASH_LOCK);
|
2019-12-14 12:37:41 -06:00
|
|
|
|
2015-08-22 11:36:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
2019-12-14 12:37:41 -06:00
|
|
|
return retval2;
|
2015-08-22 11:36:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
COMMAND_HANDLER(stm32l4_handle_mass_erase_command)
|
|
|
|
{
|
|
|
|
if (CMD_ARGC < 1) {
|
helper/command: change prototype of command_print/command_print_sameline
To prepare for handling TCL return values consistently, all calls
to command_print/command_print_sameline should switch to CMD as
first parameter.
Change prototype of command_print() and command_print_sameline()
to pass CMD instead of CMD_CTX.
Since the first parameter is currently not used, the change can be
done though scripts without manual coding.
This patch is created using the command:
sed -i PATTERN $(find src/ doc/ -type f)
with all the following patters:
's/\(command_print(cmd\)->ctx,/\1,/'
's/\(command_print(CMD\)_CTX,/\1,/'
's/\(command_print(struct command_\)context \*context,/\1invocation *cmd,/'
's/\(command_print_sameline(cmd\)->ctx,/\1,/'
's/\(command_print_sameline(CMD\)_CTX,/\1,/'
's/\(command_print_sameline(struct command_\)context \*context,/\1invocation *cmd,/'
This change is inspired by http://openocd.zylin.com/1815 from Paul
Fertser but is now done through scripting.
Change-Id: I3386d8f96cdc477e7a2308dd18269de3bed04385
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Reviewed-on: http://openocd.zylin.com/5081
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2019-04-03 03:37:24 -05:00
|
|
|
command_print(CMD, "stm32l4x mass_erase <STM32L4 bank>");
|
2015-08-22 11:36:52 -05:00
|
|
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct flash_bank *bank;
|
|
|
|
int retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &bank);
|
2021-07-03 09:47:35 -05:00
|
|
|
if (retval != ERROR_OK)
|
2015-08-22 11:36:52 -05:00
|
|
|
return retval;
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
retval = stm32l4_mass_erase(bank);
|
2021-05-07 05:02:23 -05:00
|
|
|
if (retval == ERROR_OK)
|
helper/command: change prototype of command_print/command_print_sameline
To prepare for handling TCL return values consistently, all calls
to command_print/command_print_sameline should switch to CMD as
first parameter.
Change prototype of command_print() and command_print_sameline()
to pass CMD instead of CMD_CTX.
Since the first parameter is currently not used, the change can be
done though scripts without manual coding.
This patch is created using the command:
sed -i PATTERN $(find src/ doc/ -type f)
with all the following patters:
's/\(command_print(cmd\)->ctx,/\1,/'
's/\(command_print(CMD\)_CTX,/\1,/'
's/\(command_print(struct command_\)context \*context,/\1invocation *cmd,/'
's/\(command_print_sameline(cmd\)->ctx,/\1,/'
's/\(command_print_sameline(CMD\)_CTX,/\1,/'
's/\(command_print_sameline(struct command_\)context \*context,/\1invocation *cmd,/'
This change is inspired by http://openocd.zylin.com/1815 from Paul
Fertser but is now done through scripting.
Change-Id: I3386d8f96cdc477e7a2308dd18269de3bed04385
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Reviewed-on: http://openocd.zylin.com/5081
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2019-04-03 03:37:24 -05:00
|
|
|
command_print(CMD, "stm32l4x mass erase complete");
|
2021-05-07 05:02:23 -05:00
|
|
|
else
|
helper/command: change prototype of command_print/command_print_sameline
To prepare for handling TCL return values consistently, all calls
to command_print/command_print_sameline should switch to CMD as
first parameter.
Change prototype of command_print() and command_print_sameline()
to pass CMD instead of CMD_CTX.
Since the first parameter is currently not used, the change can be
done though scripts without manual coding.
This patch is created using the command:
sed -i PATTERN $(find src/ doc/ -type f)
with all the following patters:
's/\(command_print(cmd\)->ctx,/\1,/'
's/\(command_print(CMD\)_CTX,/\1,/'
's/\(command_print(struct command_\)context \*context,/\1invocation *cmd,/'
's/\(command_print_sameline(cmd\)->ctx,/\1,/'
's/\(command_print_sameline(CMD\)_CTX,/\1,/'
's/\(command_print_sameline(struct command_\)context \*context,/\1invocation *cmd,/'
This change is inspired by http://openocd.zylin.com/1815 from Paul
Fertser but is now done through scripting.
Change-Id: I3386d8f96cdc477e7a2308dd18269de3bed04385
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Reviewed-on: http://openocd.zylin.com/5081
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2019-04-03 03:37:24 -05:00
|
|
|
command_print(CMD, "stm32l4x mass erase failed");
|
2018-08-16 07:04:45 -05:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
COMMAND_HANDLER(stm32l4_handle_option_read_command)
|
|
|
|
{
|
|
|
|
if (CMD_ARGC < 2) {
|
helper/command: change prototype of command_print/command_print_sameline
To prepare for handling TCL return values consistently, all calls
to command_print/command_print_sameline should switch to CMD as
first parameter.
Change prototype of command_print() and command_print_sameline()
to pass CMD instead of CMD_CTX.
Since the first parameter is currently not used, the change can be
done though scripts without manual coding.
This patch is created using the command:
sed -i PATTERN $(find src/ doc/ -type f)
with all the following patters:
's/\(command_print(cmd\)->ctx,/\1,/'
's/\(command_print(CMD\)_CTX,/\1,/'
's/\(command_print(struct command_\)context \*context,/\1invocation *cmd,/'
's/\(command_print_sameline(cmd\)->ctx,/\1,/'
's/\(command_print_sameline(CMD\)_CTX,/\1,/'
's/\(command_print_sameline(struct command_\)context \*context,/\1invocation *cmd,/'
This change is inspired by http://openocd.zylin.com/1815 from Paul
Fertser but is now done through scripting.
Change-Id: I3386d8f96cdc477e7a2308dd18269de3bed04385
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Reviewed-on: http://openocd.zylin.com/5081
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2019-04-03 03:37:24 -05:00
|
|
|
command_print(CMD, "stm32l4x option_read <STM32L4 bank> <option_reg offset>");
|
2018-08-16 07:04:45 -05:00
|
|
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct flash_bank *bank;
|
|
|
|
int retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &bank);
|
2021-07-03 09:47:35 -05:00
|
|
|
if (retval != ERROR_OK)
|
2018-08-16 07:04:45 -05:00
|
|
|
return retval;
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
uint32_t reg_offset, reg_addr;
|
2018-08-16 07:04:45 -05:00
|
|
|
uint32_t value = 0;
|
|
|
|
|
2021-07-29 16:05:18 -05:00
|
|
|
COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], reg_offset);
|
2020-01-05 16:19:41 -06:00
|
|
|
reg_addr = stm32l4_get_flash_reg(bank, reg_offset);
|
2018-08-16 07:04:45 -05:00
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
retval = stm32l4_read_flash_reg(bank, reg_offset, &value);
|
2021-07-03 09:47:35 -05:00
|
|
|
if (retval != ERROR_OK)
|
2018-08-16 07:04:45 -05:00
|
|
|
return retval;
|
|
|
|
|
helper/command: change prototype of command_print/command_print_sameline
To prepare for handling TCL return values consistently, all calls
to command_print/command_print_sameline should switch to CMD as
first parameter.
Change prototype of command_print() and command_print_sameline()
to pass CMD instead of CMD_CTX.
Since the first parameter is currently not used, the change can be
done though scripts without manual coding.
This patch is created using the command:
sed -i PATTERN $(find src/ doc/ -type f)
with all the following patters:
's/\(command_print(cmd\)->ctx,/\1,/'
's/\(command_print(CMD\)_CTX,/\1,/'
's/\(command_print(struct command_\)context \*context,/\1invocation *cmd,/'
's/\(command_print_sameline(cmd\)->ctx,/\1,/'
's/\(command_print_sameline(CMD\)_CTX,/\1,/'
's/\(command_print_sameline(struct command_\)context \*context,/\1invocation *cmd,/'
This change is inspired by http://openocd.zylin.com/1815 from Paul
Fertser but is now done through scripting.
Change-Id: I3386d8f96cdc477e7a2308dd18269de3bed04385
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Reviewed-on: http://openocd.zylin.com/5081
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2019-04-03 03:37:24 -05:00
|
|
|
command_print(CMD, "Option Register: <0x%" PRIx32 "> = 0x%" PRIx32 "", reg_addr, value);
|
2018-08-16 07:04:45 -05:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
COMMAND_HANDLER(stm32l4_handle_option_write_command)
|
|
|
|
{
|
|
|
|
if (CMD_ARGC < 3) {
|
helper/command: change prototype of command_print/command_print_sameline
To prepare for handling TCL return values consistently, all calls
to command_print/command_print_sameline should switch to CMD as
first parameter.
Change prototype of command_print() and command_print_sameline()
to pass CMD instead of CMD_CTX.
Since the first parameter is currently not used, the change can be
done though scripts without manual coding.
This patch is created using the command:
sed -i PATTERN $(find src/ doc/ -type f)
with all the following patters:
's/\(command_print(cmd\)->ctx,/\1,/'
's/\(command_print(CMD\)_CTX,/\1,/'
's/\(command_print(struct command_\)context \*context,/\1invocation *cmd,/'
's/\(command_print_sameline(cmd\)->ctx,/\1,/'
's/\(command_print_sameline(CMD\)_CTX,/\1,/'
's/\(command_print_sameline(struct command_\)context \*context,/\1invocation *cmd,/'
This change is inspired by http://openocd.zylin.com/1815 from Paul
Fertser but is now done through scripting.
Change-Id: I3386d8f96cdc477e7a2308dd18269de3bed04385
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Reviewed-on: http://openocd.zylin.com/5081
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2019-04-03 03:37:24 -05:00
|
|
|
command_print(CMD, "stm32l4x option_write <STM32L4 bank> <option_reg offset> <value> [mask]");
|
2018-08-16 07:04:45 -05:00
|
|
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
2015-08-22 11:36:52 -05:00
|
|
|
}
|
|
|
|
|
2018-08-16 07:04:45 -05:00
|
|
|
struct flash_bank *bank;
|
|
|
|
int retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &bank);
|
2021-07-03 09:47:35 -05:00
|
|
|
if (retval != ERROR_OK)
|
2018-08-16 07:04:45 -05:00
|
|
|
return retval;
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
uint32_t reg_offset;
|
2018-08-16 07:04:45 -05:00
|
|
|
uint32_t value = 0;
|
|
|
|
uint32_t mask = 0xFFFFFFFF;
|
|
|
|
|
2021-07-29 16:05:18 -05:00
|
|
|
COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], reg_offset);
|
|
|
|
COMMAND_PARSE_NUMBER(u32, CMD_ARGV[2], value);
|
|
|
|
|
2018-08-16 07:04:45 -05:00
|
|
|
if (CMD_ARGC > 3)
|
2021-07-29 16:05:18 -05:00
|
|
|
COMMAND_PARSE_NUMBER(u32, CMD_ARGV[3], mask);
|
2018-08-16 07:04:45 -05:00
|
|
|
|
helper/command: change prototype of command_print/command_print_sameline
To prepare for handling TCL return values consistently, all calls
to command_print/command_print_sameline should switch to CMD as
first parameter.
Change prototype of command_print() and command_print_sameline()
to pass CMD instead of CMD_CTX.
Since the first parameter is currently not used, the change can be
done though scripts without manual coding.
This patch is created using the command:
sed -i PATTERN $(find src/ doc/ -type f)
with all the following patters:
's/\(command_print(cmd\)->ctx,/\1,/'
's/\(command_print(CMD\)_CTX,/\1,/'
's/\(command_print(struct command_\)context \*context,/\1invocation *cmd,/'
's/\(command_print_sameline(cmd\)->ctx,/\1,/'
's/\(command_print_sameline(CMD\)_CTX,/\1,/'
's/\(command_print_sameline(struct command_\)context \*context,/\1invocation *cmd,/'
This change is inspired by http://openocd.zylin.com/1815 from Paul
Fertser but is now done through scripting.
Change-Id: I3386d8f96cdc477e7a2308dd18269de3bed04385
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Reviewed-on: http://openocd.zylin.com/5081
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2019-04-03 03:37:24 -05:00
|
|
|
command_print(CMD, "%s Option written.\n"
|
2018-08-16 07:04:45 -05:00
|
|
|
"INFO: a reset or power cycle is required "
|
|
|
|
"for the new settings to take effect.", bank->driver->name);
|
|
|
|
|
2020-01-05 16:19:41 -06:00
|
|
|
retval = stm32l4_write_option(bank, reg_offset, value, mask);
|
2018-08-16 07:04:45 -05:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2020-03-25 16:47:08 -05:00
|
|
|
COMMAND_HANDLER(stm32l4_handle_trustzone_command)
|
2018-08-16 07:04:45 -05:00
|
|
|
{
|
2020-03-25 16:47:08 -05:00
|
|
|
if (CMD_ARGC < 1 || CMD_ARGC > 2)
|
2018-08-16 07:04:45 -05:00
|
|
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
|
|
|
|
|
|
|
struct flash_bank *bank;
|
|
|
|
int retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &bank);
|
2021-07-03 09:47:35 -05:00
|
|
|
if (retval != ERROR_OK)
|
2018-08-16 07:04:45 -05:00
|
|
|
return retval;
|
|
|
|
|
2020-03-25 16:47:08 -05:00
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
if (!(stm32l4_info->part_info->flags & F_HAS_TZ)) {
|
|
|
|
LOG_ERROR("This device does not have a TrustZone");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t optr;
|
|
|
|
retval = stm32l4_read_flash_reg_by_index(bank, STM32_FLASH_OPTR_INDEX, &optr);
|
2021-07-03 09:47:35 -05:00
|
|
|
if (retval != ERROR_OK)
|
2018-08-16 07:04:45 -05:00
|
|
|
return retval;
|
|
|
|
|
2020-03-25 16:47:08 -05:00
|
|
|
stm32l4_sync_rdp_tzen(bank, optr);
|
|
|
|
|
|
|
|
if (CMD_ARGC == 1) {
|
|
|
|
/* only display the TZEN value */
|
|
|
|
LOG_INFO("Global TrustZone Security is %s", stm32l4_info->tzen ? "enabled" : "disabled");
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool new_tzen;
|
|
|
|
COMMAND_PARSE_ENABLE(CMD_ARGV[1], new_tzen);
|
|
|
|
|
|
|
|
if (new_tzen == stm32l4_info->tzen) {
|
|
|
|
LOG_INFO("The requested TZEN is already programmed");
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (new_tzen) {
|
|
|
|
if (stm32l4_info->rdp != RDP_LEVEL_0) {
|
|
|
|
LOG_ERROR("TZEN can be set only when RDP level is 0");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
retval = stm32l4_write_option(bank, stm32l4_info->flash_regs[STM32_FLASH_OPTR_INDEX],
|
|
|
|
FLASH_TZEN, FLASH_TZEN);
|
|
|
|
} else {
|
|
|
|
/* Deactivation of TZEN (from 1 to 0) is only possible when the RDP is
|
|
|
|
* changing to level 0 (from level 1 to level 0 or from level 0.5 to level 0). */
|
|
|
|
if (stm32l4_info->rdp != RDP_LEVEL_1 && stm32l4_info->rdp != RDP_LEVEL_0_5) {
|
|
|
|
LOG_ERROR("Deactivation of TZEN is only possible when the RDP is changing to level 0");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
retval = stm32l4_write_option(bank, stm32l4_info->flash_regs[STM32_FLASH_OPTR_INDEX],
|
|
|
|
RDP_LEVEL_0, FLASH_RDP_MASK | FLASH_TZEN);
|
|
|
|
}
|
|
|
|
|
2021-07-03 09:47:35 -05:00
|
|
|
if (retval != ERROR_OK)
|
2018-08-16 07:04:45 -05:00
|
|
|
return retval;
|
|
|
|
|
2020-03-25 16:47:08 -05:00
|
|
|
return stm32l4_perform_obl_launch(bank);
|
|
|
|
}
|
2018-12-16 10:30:41 -06:00
|
|
|
|
2020-03-25 16:47:08 -05:00
|
|
|
COMMAND_HANDLER(stm32l4_handle_option_load_command)
|
|
|
|
{
|
|
|
|
if (CMD_ARGC != 1)
|
|
|
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
2018-12-16 10:30:41 -06:00
|
|
|
|
2020-03-25 16:47:08 -05:00
|
|
|
struct flash_bank *bank;
|
|
|
|
int retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &bank);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2018-08-16 07:04:45 -05:00
|
|
|
|
2020-03-25 16:47:08 -05:00
|
|
|
retval = stm32l4_perform_obl_launch(bank);
|
|
|
|
if (retval != ERROR_OK) {
|
|
|
|
command_print(CMD, "stm32l4x option load failed");
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
command_print(CMD, "stm32l4x option load completed. Power-on reset might be required");
|
|
|
|
|
|
|
|
return ERROR_OK;
|
2015-08-22 11:36:52 -05:00
|
|
|
}
|
|
|
|
|
2018-08-16 07:04:45 -05:00
|
|
|
COMMAND_HANDLER(stm32l4_handle_lock_command)
|
|
|
|
{
|
|
|
|
struct target *target = NULL;
|
|
|
|
|
|
|
|
if (CMD_ARGC < 1)
|
|
|
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
|
|
|
|
|
|
|
struct flash_bank *bank;
|
|
|
|
int retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &bank);
|
2021-07-03 09:47:35 -05:00
|
|
|
if (retval != ERROR_OK)
|
2018-08-16 07:04:45 -05:00
|
|
|
return retval;
|
|
|
|
|
2020-03-22 14:39:44 -05:00
|
|
|
if (stm32l4_is_otp(bank)) {
|
|
|
|
LOG_ERROR("cannot lock/unlock OTP memory");
|
|
|
|
return ERROR_FLASH_OPER_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
2018-08-16 07:04:45 -05:00
|
|
|
target = bank->target;
|
|
|
|
|
|
|
|
if (target->state != TARGET_HALTED) {
|
|
|
|
LOG_ERROR("Target not halted");
|
|
|
|
return ERROR_TARGET_NOT_HALTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set readout protection level 1 by erasing the RDP option byte */
|
2020-11-02 18:58:59 -06:00
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
2020-11-02 18:22:53 -06:00
|
|
|
if (stm32l4_write_option(bank, stm32l4_info->flash_regs[STM32_FLASH_OPTR_INDEX],
|
|
|
|
RDP_LEVEL_1, FLASH_RDP_MASK) != ERROR_OK) {
|
helper/command: change prototype of command_print/command_print_sameline
To prepare for handling TCL return values consistently, all calls
to command_print/command_print_sameline should switch to CMD as
first parameter.
Change prototype of command_print() and command_print_sameline()
to pass CMD instead of CMD_CTX.
Since the first parameter is currently not used, the change can be
done though scripts without manual coding.
This patch is created using the command:
sed -i PATTERN $(find src/ doc/ -type f)
with all the following patters:
's/\(command_print(cmd\)->ctx,/\1,/'
's/\(command_print(CMD\)_CTX,/\1,/'
's/\(command_print(struct command_\)context \*context,/\1invocation *cmd,/'
's/\(command_print_sameline(cmd\)->ctx,/\1,/'
's/\(command_print_sameline(CMD\)_CTX,/\1,/'
's/\(command_print_sameline(struct command_\)context \*context,/\1invocation *cmd,/'
This change is inspired by http://openocd.zylin.com/1815 from Paul
Fertser but is now done through scripting.
Change-Id: I3386d8f96cdc477e7a2308dd18269de3bed04385
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Reviewed-on: http://openocd.zylin.com/5081
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2019-04-03 03:37:24 -05:00
|
|
|
command_print(CMD, "%s failed to lock device", bank->driver->name);
|
2018-08-16 07:04:45 -05:00
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
COMMAND_HANDLER(stm32l4_handle_unlock_command)
|
|
|
|
{
|
|
|
|
struct target *target = NULL;
|
|
|
|
|
|
|
|
if (CMD_ARGC < 1)
|
|
|
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
|
|
|
|
|
|
|
struct flash_bank *bank;
|
|
|
|
int retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &bank);
|
2021-07-03 09:47:35 -05:00
|
|
|
if (retval != ERROR_OK)
|
2018-08-16 07:04:45 -05:00
|
|
|
return retval;
|
|
|
|
|
2020-03-22 14:39:44 -05:00
|
|
|
if (stm32l4_is_otp(bank)) {
|
|
|
|
LOG_ERROR("cannot lock/unlock OTP memory");
|
|
|
|
return ERROR_FLASH_OPER_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
2018-08-16 07:04:45 -05:00
|
|
|
target = bank->target;
|
|
|
|
|
|
|
|
if (target->state != TARGET_HALTED) {
|
|
|
|
LOG_ERROR("Target not halted");
|
|
|
|
return ERROR_TARGET_NOT_HALTED;
|
|
|
|
}
|
|
|
|
|
2020-11-02 18:58:59 -06:00
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
if (stm32l4_write_option(bank, stm32l4_info->flash_regs[STM32_FLASH_OPTR_INDEX],
|
2020-11-02 18:22:53 -06:00
|
|
|
RDP_LEVEL_0, FLASH_RDP_MASK) != ERROR_OK) {
|
helper/command: change prototype of command_print/command_print_sameline
To prepare for handling TCL return values consistently, all calls
to command_print/command_print_sameline should switch to CMD as
first parameter.
Change prototype of command_print() and command_print_sameline()
to pass CMD instead of CMD_CTX.
Since the first parameter is currently not used, the change can be
done though scripts without manual coding.
This patch is created using the command:
sed -i PATTERN $(find src/ doc/ -type f)
with all the following patters:
's/\(command_print(cmd\)->ctx,/\1,/'
's/\(command_print(CMD\)_CTX,/\1,/'
's/\(command_print(struct command_\)context \*context,/\1invocation *cmd,/'
's/\(command_print_sameline(cmd\)->ctx,/\1,/'
's/\(command_print_sameline(CMD\)_CTX,/\1,/'
's/\(command_print_sameline(struct command_\)context \*context,/\1invocation *cmd,/'
This change is inspired by http://openocd.zylin.com/1815 from Paul
Fertser but is now done through scripting.
Change-Id: I3386d8f96cdc477e7a2308dd18269de3bed04385
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Reviewed-on: http://openocd.zylin.com/5081
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2019-04-03 03:37:24 -05:00
|
|
|
command_print(CMD, "%s failed to unlock device", bank->driver->name);
|
2018-08-16 07:04:45 -05:00
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
COMMAND_HANDLER(stm32l4_handle_wrp_info_command)
|
|
|
|
{
|
|
|
|
if (CMD_ARGC < 1 || CMD_ARGC > 2)
|
|
|
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
|
|
|
|
|
|
|
struct flash_bank *bank;
|
|
|
|
int retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &bank);
|
2021-07-03 09:47:35 -05:00
|
|
|
if (retval != ERROR_OK)
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
return retval;
|
|
|
|
|
|
|
|
if (stm32l4_is_otp(bank)) {
|
|
|
|
LOG_ERROR("OTP memory does not have write protection areas");
|
|
|
|
return ERROR_FLASH_OPER_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct stm32l4_flash_bank *stm32l4_info = bank->driver_priv;
|
|
|
|
enum stm32_bank_id dev_bank_id = STM32_ALL_BANKS;
|
|
|
|
if (CMD_ARGC == 2) {
|
|
|
|
if (strcmp(CMD_ARGV[1], "bank1") == 0)
|
|
|
|
dev_bank_id = STM32_BANK1;
|
|
|
|
else if (strcmp(CMD_ARGV[1], "bank2") == 0)
|
|
|
|
dev_bank_id = STM32_BANK2;
|
|
|
|
else
|
|
|
|
return ERROR_COMMAND_ARGUMENT_INVALID;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dev_bank_id == STM32_BANK2) {
|
2020-11-02 18:07:00 -06:00
|
|
|
if (!(stm32l4_info->part_info->flags & F_HAS_DUAL_BANK)) {
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
LOG_ERROR("this device has no second bank");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
} else if (!stm32l4_info->dual_bank_mode) {
|
|
|
|
LOG_ERROR("this device is configured in single bank mode");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int ret;
|
|
|
|
unsigned int n_wrp, i;
|
|
|
|
struct stm32l4_wrp wrpxy[4];
|
|
|
|
|
|
|
|
ret = stm32l4_get_all_wrpxy(bank, dev_bank_id, wrpxy, &n_wrp);
|
|
|
|
if (ret != ERROR_OK)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* use bitmap and range helpers to better describe protected areas */
|
|
|
|
DECLARE_BITMAP(pages, bank->num_sectors);
|
|
|
|
bitmap_zero(pages, bank->num_sectors);
|
|
|
|
|
|
|
|
for (i = 0; i < n_wrp; i++) {
|
|
|
|
if (wrpxy[i].used) {
|
|
|
|
for (int p = wrpxy[i].first; p <= wrpxy[i].last; p++)
|
|
|
|
set_bit(p, pages);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we have at most 'n_wrp' WRP areas */
|
|
|
|
struct range ranges[n_wrp];
|
|
|
|
unsigned int ranges_count = 0;
|
|
|
|
|
|
|
|
bitmap_to_ranges(pages, bank->num_sectors, ranges, &ranges_count);
|
|
|
|
|
|
|
|
if (ranges_count > 0) {
|
|
|
|
/* pretty-print the protected ranges */
|
|
|
|
char *ranges_str = range_print_alloc(ranges, ranges_count);
|
|
|
|
command_print(CMD, "protected areas: %s", ranges_str);
|
|
|
|
free(ranges_str);
|
|
|
|
} else
|
|
|
|
command_print(CMD, "no protected areas");
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2020-03-22 14:39:44 -05:00
|
|
|
COMMAND_HANDLER(stm32l4_handle_otp_command)
|
|
|
|
{
|
|
|
|
if (CMD_ARGC < 2)
|
|
|
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
|
|
|
|
|
|
|
struct flash_bank *bank;
|
|
|
|
int retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &bank);
|
2021-07-03 09:47:35 -05:00
|
|
|
if (retval != ERROR_OK)
|
2020-03-22 14:39:44 -05:00
|
|
|
return retval;
|
|
|
|
|
|
|
|
if (!stm32l4_is_otp(bank)) {
|
|
|
|
command_print(CMD, "the specified bank is not an OTP memory");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
if (strcmp(CMD_ARGV[1], "enable") == 0)
|
|
|
|
stm32l4_otp_enable(bank, true);
|
|
|
|
else if (strcmp(CMD_ARGV[1], "disable") == 0)
|
|
|
|
stm32l4_otp_enable(bank, false);
|
|
|
|
else if (strcmp(CMD_ARGV[1], "show") == 0)
|
|
|
|
command_print(CMD, "OTP memory bank #%d is %s for write commands.",
|
|
|
|
bank->bank_number, stm32l4_otp_is_enabled(bank) ? "enabled" : "disabled");
|
|
|
|
else
|
|
|
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2015-08-22 11:36:52 -05:00
|
|
|
static const struct command_registration stm32l4_exec_command_handlers[] = {
|
|
|
|
{
|
|
|
|
.name = "lock",
|
|
|
|
.handler = stm32l4_handle_lock_command,
|
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.usage = "bank_id",
|
|
|
|
.help = "Lock entire flash device.",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "unlock",
|
|
|
|
.handler = stm32l4_handle_unlock_command,
|
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.usage = "bank_id",
|
|
|
|
.help = "Unlock entire protected flash device.",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "mass_erase",
|
|
|
|
.handler = stm32l4_handle_mass_erase_command,
|
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.usage = "bank_id",
|
|
|
|
.help = "Erase entire flash device.",
|
|
|
|
},
|
2018-08-16 07:04:45 -05:00
|
|
|
{
|
|
|
|
.name = "option_read",
|
|
|
|
.handler = stm32l4_handle_option_read_command,
|
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.usage = "bank_id reg_offset",
|
|
|
|
.help = "Read & Display device option bytes.",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "option_write",
|
|
|
|
.handler = stm32l4_handle_option_write_command,
|
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.usage = "bank_id reg_offset value mask",
|
|
|
|
.help = "Write device option bit fields with provided value.",
|
|
|
|
},
|
2020-03-25 16:47:08 -05:00
|
|
|
{
|
|
|
|
.name = "trustzone",
|
|
|
|
.handler = stm32l4_handle_trustzone_command,
|
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.usage = "<bank_id> [enable|disable]",
|
|
|
|
.help = "Configure TrustZone security",
|
|
|
|
},
|
flash/stm32l4x: enhance protect handler to use efficiently all WRP areas
stm32l4_protect: was using one WRP area per bank, without checking
if it is already protecting some sectors.
protection algo is more complicated than that, before using a WRP area
we should check if it is already used, then either reuse it for extension
(or reduction) or use a free area.
introduce a new command: stm32l4x wrp_info bank_num ['bank1'|'bank2']
this command lists the protected areas using WRP.
Note: for some devices like STM32L4R/S in single bank mode, all 4 WRP areas
are usable for that bank, to manage this case an attribute 'use_all_wrpxx'
was introduced into stm32l4_part_info and used later in protection handlers
example usage:
$ telnet localhost 4444
> flash probe 0
device idcode = 0x10036470 (STM32L4R/L4Sxx - Rev: Y)
flash size = 2048kbytes
flash mode : dual-bank
flash 'stm32l4x' found at 0x08000000
> stm32l4x wrp_info 0
no protected areas
> flash protect 0 0 4 on
set protection for sectors 0 through 4 on flash bank 0
> flash protect 0 8 9 on
set protection for sectors 8 through 9 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][8,9]
> flash protect 0 6 6 on
the device WRPxy are not enough to set the requested protection
failed setting protection for blocks 6 to 6
> flash protect 0 3 5 on
set protection for sectors 3 through 5 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,5][8,9]
> flash protect 0 6 7 on
set protection for sectors 6 through 7 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,9]
> flash protect 0 5 6 off
cleared protection for sectors 5 through 6 on flash bank 0
> stm32l4x wrp_info 0
protected areas: [0,4][7,9]
Change-Id: I42bd84fa66edd93406e18c6d89310faa5267ffa7
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/6107
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2020-11-02 17:50:24 -06:00
|
|
|
{
|
|
|
|
.name = "wrp_info",
|
|
|
|
.handler = stm32l4_handle_wrp_info_command,
|
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.usage = "bank_id [bank1|bank2]",
|
|
|
|
.help = "list the protected areas using WRP",
|
|
|
|
},
|
2018-08-16 07:04:45 -05:00
|
|
|
{
|
|
|
|
.name = "option_load",
|
|
|
|
.handler = stm32l4_handle_option_load_command,
|
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.usage = "bank_id",
|
|
|
|
.help = "Force re-load of device options (will cause device reset).",
|
|
|
|
},
|
2020-03-22 14:39:44 -05:00
|
|
|
{
|
|
|
|
.name = "otp",
|
|
|
|
.handler = stm32l4_handle_otp_command,
|
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.usage = "<bank_id> <enable|disable|show>",
|
|
|
|
.help = "OTP (One Time Programmable) memory write enable/disable",
|
|
|
|
},
|
2015-08-22 11:36:52 -05:00
|
|
|
COMMAND_REGISTRATION_DONE
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct command_registration stm32l4_command_handlers[] = {
|
|
|
|
{
|
|
|
|
.name = "stm32l4x",
|
|
|
|
.mode = COMMAND_ANY,
|
|
|
|
.help = "stm32l4x flash command group",
|
|
|
|
.usage = "",
|
|
|
|
.chain = stm32l4_exec_command_handlers,
|
|
|
|
},
|
|
|
|
COMMAND_REGISTRATION_DONE
|
|
|
|
};
|
|
|
|
|
2018-12-13 13:53:59 -06:00
|
|
|
const struct flash_driver stm32l4x_flash = {
|
2015-08-22 11:36:52 -05:00
|
|
|
.name = "stm32l4x",
|
|
|
|
.commands = stm32l4_command_handlers,
|
|
|
|
.flash_bank_command = stm32l4_flash_bank_command,
|
|
|
|
.erase = stm32l4_erase,
|
|
|
|
.protect = stm32l4_protect,
|
|
|
|
.write = stm32l4_write,
|
|
|
|
.read = default_flash_read,
|
|
|
|
.probe = stm32l4_probe,
|
|
|
|
.auto_probe = stm32l4_auto_probe,
|
|
|
|
.erase_check = default_flash_blank_check,
|
|
|
|
.protect_check = stm32l4_protect_check,
|
|
|
|
.info = get_stm32l4_info,
|
2018-02-15 03:25:50 -06:00
|
|
|
.free_driver_priv = default_flash_free_driver_priv,
|
2015-08-22 11:36:52 -05:00
|
|
|
};
|