Vikas Manocha | 0a61ee8 | 2016-01-15 17:49:06 -0800 | [diff] [blame] | 1 | if STM32 |
| 2 | |
| 3 | config STM32F4 |
| 4 | bool "stm32f4 family" |
Patrice Chotard | aea0af8 | 2018-01-12 09:23:50 +0100 | [diff] [blame] | 5 | select CLK |
| 6 | select DM_GPIO |
| 7 | select DM_RESET |
| 8 | select MISC |
| 9 | select PINCTRL |
| 10 | select PINCTRL_STM32 |
| 11 | select RAM |
| 12 | select STM32_SDRAM |
| 13 | select STM32_RCC |
| 14 | select STM32_RESET |
| 15 | select STM32_SERIAL |
Vikas Manocha | 0a61ee8 | 2016-01-15 17:49:06 -0800 | [diff] [blame] | 16 | |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 17 | config STM32F7 |
| 18 | bool "stm32f7 family" |
Patrice Chotard | aea0af8 | 2018-01-12 09:23:50 +0100 | [diff] [blame] | 19 | select CLK |
| 20 | select DM_GPIO |
| 21 | select DM_RESET |
| 22 | select MISC |
| 23 | select PINCTRL |
| 24 | select PINCTRL_STM32 |
| 25 | select RAM |
| 26 | select STM32_SDRAM |
| 27 | select STM32_RCC |
| 28 | select STM32_RESET |
| 29 | select STM32_SERIAL |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 30 | select SUPPORT_SPL |
| 31 | select SPL |
| 32 | select SPL_CLK |
| 33 | select SPL_DM |
| 34 | select SPL_DM_SEQ_ALIAS |
| 35 | select SPL_DRIVERS_MISC_SUPPORT |
| 36 | select SPL_GPIO_SUPPORT |
| 37 | select SPL_LIBCOMMON_SUPPORT |
| 38 | select SPL_LIBGENERIC_SUPPORT |
| 39 | select SPL_MTD_SUPPORT |
| 40 | select SPL_OF_CONTROL |
| 41 | select SPL_OF_LIBFDT |
| 42 | select SPL_OF_TRANSLATE |
Vikas Manocha | 1e87f9c | 2017-08-20 11:05:37 -0700 | [diff] [blame] | 43 | imply SPL_OS_BOOT |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 44 | select SPL_PINCTRL |
| 45 | select SPL_RAM |
| 46 | select SPL_SERIAL_SUPPORT |
| 47 | select SPL_SYS_MALLOC_SIMPLE |
Vikas Manocha | 1a73bd8 | 2017-05-28 12:55:14 -0700 | [diff] [blame] | 48 | select SPL_XIP_SUPPORT |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 49 | |
Patrice Chotard | 246771b | 2017-09-13 18:00:12 +0200 | [diff] [blame] | 50 | config STM32H7 |
| 51 | bool "stm32h7 family" |
| 52 | select CLK |
| 53 | select DM_GPIO |
| 54 | select DM_RESET |
| 55 | select MISC |
| 56 | select PINCTRL |
| 57 | select PINCTRL_STM32 |
| 58 | select RAM |
| 59 | select REGMAP |
| 60 | select STM32_SDRAM |
| 61 | select STM32_RCC |
| 62 | select STM32_RESET |
Patrice Chotard | ae74de0 | 2018-01-12 09:23:49 +0100 | [diff] [blame] | 63 | select STM32_SERIAL |
Patrice Chotard | 246771b | 2017-09-13 18:00:12 +0200 | [diff] [blame] | 64 | select SYSCON |
| 65 | |
Vikas Manocha | 0a61ee8 | 2016-01-15 17:49:06 -0800 | [diff] [blame] | 66 | source "arch/arm/mach-stm32/stm32f4/Kconfig" |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 67 | source "arch/arm/mach-stm32/stm32f7/Kconfig" |
Patrice Chotard | 246771b | 2017-09-13 18:00:12 +0200 | [diff] [blame] | 68 | source "arch/arm/mach-stm32/stm32h7/Kconfig" |
Vikas Manocha | 0a61ee8 | 2016-01-15 17:49:06 -0800 | [diff] [blame] | 69 | |
| 70 | endif |