aboutsummaryrefslogtreecommitdiff
path: root/src/flash
diff options
context:
space:
mode:
authorPeter Kuhar <peter@pkuhar.com>2016-10-04 09:32:25 +0100
committerSpencer Oliver <spen@spen-soft.co.uk>2016-10-04 10:30:49 +0100
commit5108fb591b845ba066430ded56ca9c17e26d3f3f (patch)
treeead208ca8ca32bc2c4da49c554c8f6a285d6f3b6 /src/flash
parent56e60b0982b5f7fc00e3ca8c43887f2221d7ad76 (diff)
STM32L433 Flash support
Added new chip id based flash size. Change-Id: I5b5e71074af0e50352443f66f88adfc6e14280bf Signed-off-by: Peter Kuhar <peter@pkuhar.com> Reviewed-on: http://openocd.zylin.com/3732 Tested-by: jenkins Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
Diffstat (limited to 'src/flash')
-rw-r--r--src/flash/nor/stm32l4x.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/flash/nor/stm32l4x.c b/src/flash/nor/stm32l4x.c
index 7a75c523..762df74d 100644
--- a/src/flash/nor/stm32l4x.c
+++ b/src/flash/nor/stm32l4x.c
@@ -617,6 +617,9 @@ static int stm32l4_probe(struct flash_bank *bank)
case 0x415:
max_flash_size_in_kb = 1024;
break;
+ case 0x435:
+ max_flash_size_in_kb = 256;
+ break;
default:
LOG_WARNING("Cannot identify target as a STM32L4 family.");
return ERROR_FAIL;
@@ -717,6 +720,10 @@ static int get_stm32l4_info(struct flash_bank *bank, char *buf, int buf_size)
device_str = "STM32L4xx";
break;
+ case 0x435:
+ device_str = "STM32L43x";
+ break;
+
default:
snprintf(buf, buf_size, "Cannot identify target as a STM32L4\n");
return ERROR_FAIL;