soc: arm: st_stm32: stm32l4: add support for L486 and L4A6
Add support for STM32L486 and STM32L4A6 families Signed-off-by: Tomislav Milkovic <tomislav.milkovic95@gmail.com>
This commit is contained in:
parent
4088f6c40d
commit
c79ac5152b
16
soc/arm/st_stm32/stm32l4/Kconfig.defconfig.stm32l486xx
Normal file
16
soc/arm/st_stm32/stm32l4/Kconfig.defconfig.stm32l486xx
Normal file
|
@ -0,0 +1,16 @@
|
|||
# ST Microelectronics STM32L486xx MCU
|
||||
|
||||
# Copyright (c) 2016 Open-RnD Sp. z o.o.
|
||||
# Copyright (c) 2016 BayLibre, SAS
|
||||
# Copyright (c) 2022 Tomislav Milkovic
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if SOC_STM32L486XX
|
||||
|
||||
config SOC
|
||||
default "stm32l486xx"
|
||||
|
||||
config NUM_IRQS
|
||||
default 82
|
||||
|
||||
endif # SOC_STM32L486XX
|
17
soc/arm/st_stm32/stm32l4/Kconfig.defconfig.stm32l4a6xx
Normal file
17
soc/arm/st_stm32/stm32l4/Kconfig.defconfig.stm32l4a6xx
Normal file
|
@ -0,0 +1,17 @@
|
|||
# ST Microelectronics STM32L4A6xx MCU
|
||||
|
||||
# Copyright (c) 2016 Open-RnD Sp. z o.o.
|
||||
# Copyright (c) 2016 BayLibre, SAS
|
||||
# Copyright (c) 2019 Centaur Analytics, Inc
|
||||
# Copyright (c) 2022 Tomislav Milkovic
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if SOC_STM32L4A6XX
|
||||
|
||||
config SOC
|
||||
default "stm32l4a6xx"
|
||||
|
||||
config NUM_IRQS
|
||||
default 91
|
||||
|
||||
endif # SOC_STM32L4A6XX
|
|
@ -11,11 +11,17 @@ choice
|
|||
depends on SOC_SERIES_STM32L4X
|
||||
|
||||
config SOC_STM32L476XX
|
||||
bool "STM32L476X"
|
||||
bool "STM32L476XX"
|
||||
|
||||
config SOC_STM32L486XX
|
||||
bool "STM32L486XX"
|
||||
|
||||
config SOC_STM32L496XX
|
||||
bool "STM32L496XX"
|
||||
|
||||
config SOC_STM32L4A6XX
|
||||
bool "STM32L4A6XX"
|
||||
|
||||
config SOC_STM32L412XX
|
||||
bool "STM32L412XX"
|
||||
|
||||
|
|
Loading…
Reference in a new issue