diff options
author | Patrice Chotard <patrice.chotard@st.com> | 2018-01-12 09:23:50 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-01-19 15:49:32 -0500 |
commit | aea0af8993446505043687fe3751cb34a2b8dead (patch) | |
tree | 726b0b5e9f415bf1f08b89adad29e2fdadb78202 /arch/arm/mach-stm32 | |
parent | ae74de0dfd4543a18cf1aee68eb1daeb9c125fde (diff) | |
download | u-boot-aea0af8993446505043687fe3751cb34a2b8dead.tar.gz |
configs: stm32: move config flag from defconfig to Kconfig
Move system flags from defconfig to mach-stm32/Kconfig
Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
Reviewed-by: Vikas Manocha <vikas.manocha@st.com>
Diffstat (limited to 'arch/arm/mach-stm32')
-rw-r--r-- | arch/arm/mach-stm32/Kconfig | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/arm/mach-stm32/Kconfig b/arch/arm/mach-stm32/Kconfig index f4c93f1afb..5f7a2b5669 100644 --- a/arch/arm/mach-stm32/Kconfig +++ b/arch/arm/mach-stm32/Kconfig @@ -2,9 +2,31 @@ if STM32 config STM32F4 bool "stm32f4 family" + select CLK + select DM_GPIO + select DM_RESET + select MISC + select PINCTRL + select PINCTRL_STM32 + select RAM + select STM32_SDRAM + select STM32_RCC + select STM32_RESET + select STM32_SERIAL config STM32F7 bool "stm32f7 family" + select CLK + select DM_GPIO + select DM_RESET + select MISC + select PINCTRL + select PINCTRL_STM32 + select RAM + select STM32_SDRAM + select STM32_RCC + select STM32_RESET + select STM32_SERIAL select SUPPORT_SPL select SPL select SPL_CLK |