soc/arm: add support for additonal stm32wl socs
This commit adds support for stm32wle4xx, stm32wle5xx single core socs, as well as stm32wl54 dual core soc. Signed-off-by: Thomas Stranger <thomas.stranger@outlook.com>
This commit is contained in:
parent
f05a6ba7f5
commit
e804f5a5c6
5 changed files with 51 additions and 0 deletions
14
soc/arm/st_stm32/stm32wl/Kconfig.defconfig.stm32wl54xx
Normal file
14
soc/arm/st_stm32/stm32wl/Kconfig.defconfig.stm32wl54xx
Normal file
|
@ -0,0 +1,14 @@
|
|||
# STMicroelectronics STM32WL54 MCU
|
||||
|
||||
# Copyright (c) 2021 Thomas Stranger
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if SOC_STM32WL54XX
|
||||
|
||||
config SOC
|
||||
default "stm32wl54xx"
|
||||
|
||||
config NUM_IRQS
|
||||
default 62
|
||||
|
||||
endif # SOC_STM32WL54XX
|
14
soc/arm/st_stm32/stm32wl/Kconfig.defconfig.stm32wle4xx
Normal file
14
soc/arm/st_stm32/stm32wl/Kconfig.defconfig.stm32wle4xx
Normal file
|
@ -0,0 +1,14 @@
|
|||
# STMicroelectronics STM32WLE4 MCU
|
||||
|
||||
# Copyright (c) 2021 Thomas Stranger
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if SOC_STM32WLE4XX
|
||||
|
||||
config SOC
|
||||
default "stm32wle4xx"
|
||||
|
||||
config NUM_IRQS
|
||||
default 62
|
||||
|
||||
endif # SOC_STM32WLE4XX
|
14
soc/arm/st_stm32/stm32wl/Kconfig.defconfig.stm32wle5xx
Normal file
14
soc/arm/st_stm32/stm32wl/Kconfig.defconfig.stm32wle5xx
Normal file
|
@ -0,0 +1,14 @@
|
|||
# STMicroelectronics STM32WLE5 MCU
|
||||
|
||||
# Copyright (c) 2021 Thomas Stranger
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if SOC_STM32WLE5XX
|
||||
|
||||
config SOC
|
||||
default "stm32wle5xx"
|
||||
|
||||
config NUM_IRQS
|
||||
default 62
|
||||
|
||||
endif # SOC_STM32WLE5XX
|
|
@ -7,6 +7,15 @@ choice
|
|||
prompt "STM32WLx MCU Selection"
|
||||
depends on SOC_SERIES_STM32WLX
|
||||
|
||||
config SOC_STM32WLE4XX
|
||||
bool "STM32WLE4XX"
|
||||
|
||||
config SOC_STM32WLE5XX
|
||||
bool "STM32WLE5XX"
|
||||
|
||||
config SOC_STM32WL54XX
|
||||
bool "STM32WL54XX"
|
||||
|
||||
config SOC_STM32WL55XX
|
||||
bool "STM32WL55XX"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue