From 6f76e0dcf8a9b4a107971d3f2d00ef8a8009f298 Mon Sep 17 00:00:00 2001 From: Guillaume Gautier Date: Fri, 22 Sep 2023 15:03:04 +0200 Subject: [PATCH] soc: arm: st_stm32: stm32u5: add stm32u5a5 soc Add STM32U5A5 SOC Signed-off-by: Guillaume Gautier --- .../st_stm32/stm32u5/Kconfig.defconfig.stm32u5a5xx | 14 ++++++++++++++ soc/arm/st_stm32/stm32u5/Kconfig.soc | 3 +++ 2 files changed, 17 insertions(+) create mode 100644 soc/arm/st_stm32/stm32u5/Kconfig.defconfig.stm32u5a5xx diff --git a/soc/arm/st_stm32/stm32u5/Kconfig.defconfig.stm32u5a5xx b/soc/arm/st_stm32/stm32u5/Kconfig.defconfig.stm32u5a5xx new file mode 100644 index 00000000000..1759406a580 --- /dev/null +++ b/soc/arm/st_stm32/stm32u5/Kconfig.defconfig.stm32u5a5xx @@ -0,0 +1,14 @@ +# STMicroelectronics STM32U5A5XX MCU + +# Copyright (c) 2023 STMicroelectronics +# SPDX-License-Identifier: Apache-2.0 + +if SOC_STM32U5A5XX + +config SOC + default "stm32u5a5xx" + +config NUM_IRQS + default 139 + +endif # SOC_STM32U5A5XX diff --git a/soc/arm/st_stm32/stm32u5/Kconfig.soc b/soc/arm/st_stm32/stm32u5/Kconfig.soc index cceb506f55e..8308c64372f 100644 --- a/soc/arm/st_stm32/stm32u5/Kconfig.soc +++ b/soc/arm/st_stm32/stm32u5/Kconfig.soc @@ -20,4 +20,7 @@ config SOC_STM32U595XX config SOC_STM32U599XX bool "STM32U599XX" +config SOC_STM32U5A5XX + bool "STM32U5A5XX" + endchoice