blob: f79b1a2c700e4c51d17ed3c6877e7fe863abfbfb [file] [log] [blame]
Vikas Manocha0a61ee82016-01-15 17:49:06 -08001if STM32
2
3config STM32F4
4 bool "stm32f4 family"
Patrice Chotardaea0af82018-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
Vikas Manocha0a61ee82016-01-15 17:49:06 -080016
Vikas Manochae66c49f2016-02-11 15:47:20 -080017config STM32F7
18 bool "stm32f7 family"
Patrice Chotardaea0af82018-01-12 09:23:50 +010019 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 Manochab9747692017-05-28 12:55:10 -070030 select SUPPORT_SPL
31 select SPL
Patrice Chotarda70c05f2018-01-29 13:44:20 +010032 select SPL_BOARD_INIT
Vikas Manochab9747692017-05-28 12:55:10 -070033 select SPL_CLK
34 select SPL_DM
35 select SPL_DM_SEQ_ALIAS
36 select SPL_DRIVERS_MISC_SUPPORT
37 select SPL_GPIO_SUPPORT
38 select SPL_LIBCOMMON_SUPPORT
39 select SPL_LIBGENERIC_SUPPORT
40 select SPL_MTD_SUPPORT
41 select SPL_OF_CONTROL
42 select SPL_OF_LIBFDT
43 select SPL_OF_TRANSLATE
Vikas Manocha1e87f9c2017-08-20 11:05:37 -070044 imply SPL_OS_BOOT
Vikas Manochab9747692017-05-28 12:55:10 -070045 select SPL_PINCTRL
46 select SPL_RAM
47 select SPL_SERIAL_SUPPORT
48 select SPL_SYS_MALLOC_SIMPLE
Vikas Manocha1a73bd82017-05-28 12:55:14 -070049 select SPL_XIP_SUPPORT
Vikas Manochae66c49f2016-02-11 15:47:20 -080050
Patrice Chotard246771b2017-09-13 18:00:12 +020051config STM32H7
52 bool "stm32h7 family"
53 select CLK
54 select DM_GPIO
55 select DM_RESET
56 select MISC
57 select PINCTRL
58 select PINCTRL_STM32
59 select RAM
60 select REGMAP
61 select STM32_SDRAM
62 select STM32_RCC
63 select STM32_RESET
Patrice Chotardae74de02018-01-12 09:23:49 +010064 select STM32_SERIAL
Patrice Chotard246771b2017-09-13 18:00:12 +020065 select SYSCON
66
Vikas Manocha0a61ee82016-01-15 17:49:06 -080067source "arch/arm/mach-stm32/stm32f4/Kconfig"
Vikas Manochae66c49f2016-02-11 15:47:20 -080068source "arch/arm/mach-stm32/stm32f7/Kconfig"
Patrice Chotard246771b2017-09-13 18:00:12 +020069source "arch/arm/mach-stm32/stm32h7/Kconfig"
Vikas Manocha0a61ee82016-01-15 17:49:06 -080070
71endif