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:
Evan Perry Grove 2023-12-08 14:51:37 -06:00 committed by Carles Cufí
commit a54a52b085
5 changed files with 91 additions and 40 deletions

View 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

View file

@ -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"