Skip to content

Commit 4677920

Browse files
djiatsaf-stfabiobaltieri
authored andcommitted
soc: st: stm32: add soc for stm32u073
select soc for stm32u073 and irq configuration Signed-off-by: Fabrice DJIATSA <fabrice.djiatsa-ext@st.com>
1 parent af7a690 commit 4677920

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

soc/st/stm32/soc.yml

+1
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ family:
184184
- name: stm32u0x
185185
socs:
186186
- name: stm32u031xx
187+
- name: stm32u073xx
187188
- name: stm32u083xx
188189
- name: stm32u5x
189190
socs:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# STMicroelectronics STM32U073XX MCU
2+
3+
# Copyright (c) 2024 STMicroelectronics
4+
# SPDX-License-Identifier: Apache-2.0
5+
6+
if SOC_STM32U073XX
7+
8+
config NUM_IRQS
9+
default 32
10+
11+
endif # SOC_STM32U073XX

soc/st/stm32/stm32u0x/Kconfig.soc

+5
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,15 @@ config SOC_STM32U031XX
1414
bool
1515
select SOC_SERIES_STM32U0X
1616

17+
config SOC_STM32U073XX
18+
bool
19+
select SOC_SERIES_STM32U0X
20+
1721
config SOC_STM32U083XX
1822
bool
1923
select SOC_SERIES_STM32U0X
2024

2125
config SOC
2226
default "stm32u031xx" if SOC_STM32U031XX
27+
default "stm32u073xx" if SOC_STM32U073XX
2328
default "stm32u083xx" if SOC_STM32U083XX

0 commit comments

Comments
 (0)