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 |
Patrice Chotard | aea0af8 | 2018-01-12 09:23:50 +0100 | [diff] [blame] | 12 | select STM32_RCC |
| 13 | select STM32_RESET |
Michal Simek | 58008cb | 2018-07-23 15:55:15 +0200 | [diff] [blame] | 14 | select STM32_SDRAM |
Patrice Chotard | aea0af8 | 2018-01-12 09:23:50 +0100 | [diff] [blame] | 15 | select STM32_SERIAL |
Patrice Chotard | aa5e3e2 | 2018-02-07 10:44:50 +0100 | [diff] [blame] | 16 | select STM32_TIMER |
| 17 | select TIMER |
Vikas Manocha | 0a61ee8 | 2016-01-15 17:49:06 -0800 | [diff] [blame] | 18 | |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 19 | config STM32F7 |
| 20 | bool "stm32f7 family" |
Patrice Chotard | aea0af8 | 2018-01-12 09:23:50 +0100 | [diff] [blame] | 21 | select CLK |
| 22 | select DM_GPIO |
| 23 | select DM_RESET |
| 24 | select MISC |
| 25 | select PINCTRL |
| 26 | select PINCTRL_STM32 |
| 27 | select RAM |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 28 | select SPL |
Patrice Chotard | a70c05f | 2018-01-29 13:44:20 +0100 | [diff] [blame] | 29 | select SPL_BOARD_INIT |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 30 | select SPL_CLK |
| 31 | select SPL_DM |
Ley Foon Tan | 5e9a964 | 2018-07-11 17:56:57 +0800 | [diff] [blame] | 32 | select SPL_DM_RESET |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 33 | select SPL_DM_SEQ_ALIAS |
| 34 | select SPL_DRIVERS_MISC_SUPPORT |
| 35 | select SPL_GPIO_SUPPORT |
| 36 | select SPL_LIBCOMMON_SUPPORT |
| 37 | select SPL_LIBGENERIC_SUPPORT |
| 38 | select SPL_MTD_SUPPORT |
| 39 | select SPL_OF_CONTROL |
| 40 | select SPL_OF_LIBFDT |
| 41 | select SPL_OF_TRANSLATE |
| 42 | select SPL_PINCTRL |
| 43 | select SPL_RAM |
| 44 | select SPL_SERIAL_SUPPORT |
| 45 | select SPL_SYS_MALLOC_SIMPLE |
Patrice Chotard | aa5e3e2 | 2018-02-07 10:44:50 +0100 | [diff] [blame] | 46 | select SPL_TIMER |
Vikas Manocha | 1a73bd8 | 2017-05-28 12:55:14 -0700 | [diff] [blame] | 47 | select SPL_XIP_SUPPORT |
Michal Simek | 58008cb | 2018-07-23 15:55:15 +0200 | [diff] [blame] | 48 | select STM32_RCC |
| 49 | select STM32_RESET |
| 50 | select STM32_SDRAM |
| 51 | select STM32_SERIAL |
| 52 | select STM32_TIMER |
| 53 | select SUPPORT_SPL |
| 54 | select TIMER |
| 55 | imply SPL_OS_BOOT |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 56 | |
Patrice Chotard | 246771b | 2017-09-13 18:00:12 +0200 | [diff] [blame] | 57 | config STM32H7 |
| 58 | bool "stm32h7 family" |
| 59 | select CLK |
| 60 | select DM_GPIO |
| 61 | select DM_RESET |
| 62 | select MISC |
| 63 | select PINCTRL |
| 64 | select PINCTRL_STM32 |
| 65 | select RAM |
| 66 | select REGMAP |
Patrice Chotard | 246771b | 2017-09-13 18:00:12 +0200 | [diff] [blame] | 67 | select STM32_RCC |
| 68 | select STM32_RESET |
Michal Simek | 58008cb | 2018-07-23 15:55:15 +0200 | [diff] [blame] | 69 | select STM32_SDRAM |
Patrice Chotard | ae74de0 | 2018-01-12 09:23:49 +0100 | [diff] [blame] | 70 | select STM32_SERIAL |
Patrice Chotard | aa5e3e2 | 2018-02-07 10:44:50 +0100 | [diff] [blame] | 71 | select STM32_TIMER |
Patrice Chotard | 246771b | 2017-09-13 18:00:12 +0200 | [diff] [blame] | 72 | select SYSCON |
Patrice Chotard | aa5e3e2 | 2018-02-07 10:44:50 +0100 | [diff] [blame] | 73 | select TIMER |
Patrice Chotard | 246771b | 2017-09-13 18:00:12 +0200 | [diff] [blame] | 74 | |
Vikas Manocha | 0a61ee8 | 2016-01-15 17:49:06 -0800 | [diff] [blame] | 75 | source "arch/arm/mach-stm32/stm32f4/Kconfig" |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 76 | source "arch/arm/mach-stm32/stm32f7/Kconfig" |
Patrice Chotard | 246771b | 2017-09-13 18:00:12 +0200 | [diff] [blame] | 77 | source "arch/arm/mach-stm32/stm32h7/Kconfig" |
Vikas Manocha | 0a61ee8 | 2016-01-15 17:49:06 -0800 | [diff] [blame] | 78 | |
| 79 | endif |