blob: a45f3fd77a7586724269876ccc59fc4109257db2 [file] [log] [blame]
Vikas Manocha95c89192016-01-15 17:49:06 -08001if STM32
2
3config STM32F4
4 bool "stm32f4 family"
Patrice Chotard1226eaf2018-01-12 09:23:50 +01005 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
Patrice Chotard0c156762018-02-07 10:44:50 +010016 select STM32_TIMER
17 select TIMER
Vikas Manocha95c89192016-01-15 17:49:06 -080018
Vikas Manocha1b51c932016-02-11 15:47:20 -080019config STM32F7
20 bool "stm32f7 family"
Patrice Chotard1226eaf2018-01-12 09:23:50 +010021 select CLK
22 select DM_GPIO
23 select DM_RESET
24 select MISC
25 select PINCTRL
26 select PINCTRL_STM32
27 select RAM
28 select STM32_SDRAM
29 select STM32_RCC
30 select STM32_RESET
31 select STM32_SERIAL
Patrice Chotard0c156762018-02-07 10:44:50 +010032 select STM32_TIMER
33 select TIMER
Vikas Manocha50218ae2017-05-28 12:55:10 -070034 select SUPPORT_SPL
35 select SPL
Patrice Chotard6b1c3002018-01-29 13:44:20 +010036 select SPL_BOARD_INIT
Vikas Manocha50218ae2017-05-28 12:55:10 -070037 select SPL_CLK
38 select SPL_DM
Ley Foon Tanc3c5e352018-07-11 17:56:57 +080039 select SPL_DM_RESET
Vikas Manocha50218ae2017-05-28 12:55:10 -070040 select SPL_DM_SEQ_ALIAS
41 select SPL_DRIVERS_MISC_SUPPORT
42 select SPL_GPIO_SUPPORT
43 select SPL_LIBCOMMON_SUPPORT
44 select SPL_LIBGENERIC_SUPPORT
45 select SPL_MTD_SUPPORT
46 select SPL_OF_CONTROL
47 select SPL_OF_LIBFDT
48 select SPL_OF_TRANSLATE
Vikas Manocha77906682017-08-20 11:05:37 -070049 imply SPL_OS_BOOT
Vikas Manocha50218ae2017-05-28 12:55:10 -070050 select SPL_PINCTRL
51 select SPL_RAM
52 select SPL_SERIAL_SUPPORT
53 select SPL_SYS_MALLOC_SIMPLE
Patrice Chotard0c156762018-02-07 10:44:50 +010054 select SPL_TIMER
Vikas Manochaf0e32c02017-05-28 12:55:14 -070055 select SPL_XIP_SUPPORT
Vikas Manocha1b51c932016-02-11 15:47:20 -080056
Patrice Chotard1e1d02d2017-09-13 18:00:12 +020057config 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
67 select STM32_SDRAM
68 select STM32_RCC
69 select STM32_RESET
Patrice Chotard9e276502018-01-12 09:23:49 +010070 select STM32_SERIAL
Patrice Chotard0c156762018-02-07 10:44:50 +010071 select STM32_TIMER
Patrice Chotard1e1d02d2017-09-13 18:00:12 +020072 select SYSCON
Patrice Chotard0c156762018-02-07 10:44:50 +010073 select TIMER
Patrice Chotard1e1d02d2017-09-13 18:00:12 +020074
Vikas Manocha95c89192016-01-15 17:49:06 -080075source "arch/arm/mach-stm32/stm32f4/Kconfig"
Vikas Manocha1b51c932016-02-11 15:47:20 -080076source "arch/arm/mach-stm32/stm32f7/Kconfig"
Patrice Chotard1e1d02d2017-09-13 18:00:12 +020077source "arch/arm/mach-stm32/stm32h7/Kconfig"
Vikas Manocha95c89192016-01-15 17:49:06 -080078
79endif