soc: stm32: add support for stm32h750xx

Add support for STM32H750XX SoC.

Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
This commit is contained in:
Gerard Marull-Paretas 2020-03-06 03:59:17 -08:00 committed by Johan Hedberg
commit 244ebb85bd
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,14 @@
# ST STM32H750XX MCU configuration options
# Copyright (c) 2020 Teslabs Engineering S.L.
# SPDX-License-Identifier: Apache-2.0
if SOC_STM32H750XX
config SOC
default "stm32h750xx"
config NUM_IRQS
default 150
endif # SOC_STM32H750XX

View file

@ -1,6 +1,7 @@
# ST Microelectronics STM32H7 MCU line
# Copyright (c) 2019 Linaro Limited
# Copyright (c) 2020 Teslabs Engineering S.L.
# SPDX-License-Identifier: Apache-2.0
choice
@ -11,4 +12,9 @@ config SOC_STM32H747XX
bool "STM32H747XX"
select CPU_HAS_FPU_DOUBLE_PRECISION if CPU_CORTEX_M7
config SOC_STM32H750XX
bool "STM32H750XX"
select CPU_CORTEX_M7
select CPU_HAS_FPU_DOUBLE_PRECISION
endchoice