1# ST Microelectronics STM32H7 MCU line
2
3# Copyright (c) 2019 Linaro  Limited
4# Copyright (c) 2022 SILA Embedded Solutions GmbH <office@embedded-solutions.at>
5# SPDX-License-Identifier: Apache-2.0
6
7# Kconfig symbols common to STM32H7 series
8
9if SOC_SERIES_STM32H7X
10
11source "soc/arm/st_stm32/stm32h7/Kconfig.defconfig.stm32h7*"
12
13config SOC_SERIES
14	default "stm32h7"
15
16config ROM_START_OFFSET
17	default 0x400 if BOOTLOADER_MCUBOOT
18	default 0x0   if !BOOTLOADER_MCUBOOT
19
20endif # SOC_SERIES_STM32H7X
21