dts: arm: Add support for STM32F722 SoC
The STM32F722 is similar to the STM32F723, but lacks the latter's more advanced USB PHY. Otherwise, they are virtually identical. Signed-off-by: Evan Perry Grove <evan@4grove.com>
This commit is contained in:
parent
25d44a828d
commit
a54a52b085
5 changed files with 91 additions and 40 deletions
15
soc/arm/st_stm32/stm32f7/Kconfig.defconfig.stm32f722xx
Normal file
15
soc/arm/st_stm32/stm32f7/Kconfig.defconfig.stm32f722xx
Normal file
|
@ -0,0 +1,15 @@
|
|||
# ST STM32F722XE Configuration options
|
||||
#
|
||||
# Copyright (c) 2023 Evan Perry Grove
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if SOC_STM32F722XX
|
||||
|
||||
config SOC
|
||||
default "stm32f722xx"
|
||||
|
||||
config NUM_IRQS
|
||||
default 104
|
||||
|
||||
endif # SOC_STM32F722XX
|
|
@ -3,12 +3,16 @@
|
|||
# Copyright (c) 2018 Yurii Hamann
|
||||
# Copyright (c) 2022, Rtone.
|
||||
# Copyright (c) 2023, Rahul Arasikere.
|
||||
# Copyright (c) 2023 Evan Perry Grove
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
choice
|
||||
prompt "STM32F7x MCU Selection"
|
||||
depends on SOC_SERIES_STM32F7X
|
||||
|
||||
config SOC_STM32F722XX
|
||||
bool "STM32F722XX"
|
||||
|
||||
config SOC_STM32F723XX
|
||||
bool "STM32F723XX"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue