Vikas Manocha | 95c8919 | 2016-01-15 17:49:06 -0800 | [diff] [blame] | 1 | if STM32 |
| 2 | |
| 3 | config STM32F4 |
| 4 | bool "stm32f4 family" |
| 5 | |
Vikas Manocha | 1b51c93 | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 6 | config STM32F7 |
| 7 | bool "stm32f7 family" |
Vikas Manocha | 50218ae | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 8 | select SUPPORT_SPL |
| 9 | select SPL |
| 10 | select SPL_CLK |
| 11 | select SPL_DM |
| 12 | select SPL_DM_SEQ_ALIAS |
| 13 | select SPL_DRIVERS_MISC_SUPPORT |
| 14 | select SPL_GPIO_SUPPORT |
| 15 | select SPL_LIBCOMMON_SUPPORT |
| 16 | select SPL_LIBGENERIC_SUPPORT |
| 17 | select SPL_MTD_SUPPORT |
| 18 | select SPL_OF_CONTROL |
| 19 | select SPL_OF_LIBFDT |
| 20 | select SPL_OF_TRANSLATE |
Vikas Manocha | 7790668 | 2017-08-20 11:05:37 -0700 | [diff] [blame] | 21 | imply SPL_OS_BOOT |
Vikas Manocha | 50218ae | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 22 | select SPL_PINCTRL |
| 23 | select SPL_RAM |
| 24 | select SPL_SERIAL_SUPPORT |
| 25 | select SPL_SYS_MALLOC_SIMPLE |
Vikas Manocha | f0e32c0 | 2017-05-28 12:55:14 -0700 | [diff] [blame] | 26 | select SPL_XIP_SUPPORT |
Vikas Manocha | 1b51c93 | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 27 | |
Patrice Chotard | 1e1d02d | 2017-09-13 18:00:12 +0200 | [diff] [blame^] | 28 | config STM32H7 |
| 29 | bool "stm32h7 family" |
| 30 | select CLK |
| 31 | select DM_GPIO |
| 32 | select DM_RESET |
| 33 | select MISC |
| 34 | select PINCTRL |
| 35 | select PINCTRL_STM32 |
| 36 | select RAM |
| 37 | select REGMAP |
| 38 | select STM32_SDRAM |
| 39 | select STM32_RCC |
| 40 | select STM32_RESET |
| 41 | select STM32X7_SERIAL |
| 42 | select SYSCON |
| 43 | |
Vikas Manocha | 95c8919 | 2016-01-15 17:49:06 -0800 | [diff] [blame] | 44 | source "arch/arm/mach-stm32/stm32f4/Kconfig" |
Vikas Manocha | 1b51c93 | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 45 | source "arch/arm/mach-stm32/stm32f7/Kconfig" |
Patrice Chotard | 1e1d02d | 2017-09-13 18:00:12 +0200 | [diff] [blame^] | 46 | source "arch/arm/mach-stm32/stm32h7/Kconfig" |
Vikas Manocha | 95c8919 | 2016-01-15 17:49:06 -0800 | [diff] [blame] | 47 | |
| 48 | endif |