Blame view

arch/arm/mach-stm32/Kconfig 1.43 KB
0a61ee880   Vikas Manocha   stm32: move stm32...
1
2
3
4
  if STM32
  
  config STM32F4
  	bool "stm32f4 family"
aea0af899   Patrice Chotard   configs: stm32: m...
5
6
7
8
9
10
11
  	select CLK
  	select DM_GPIO
  	select DM_RESET
  	select MISC
  	select PINCTRL
  	select PINCTRL_STM32
  	select RAM
aea0af899   Patrice Chotard   configs: stm32: m...
12
13
  	select STM32_RCC
  	select STM32_RESET
58008cbab   Michal Simek   Kconfig: Sort boo...
14
  	select STM32_SDRAM
aea0af899   Patrice Chotard   configs: stm32: m...
15
  	select STM32_SERIAL
aa5e3e22f   Patrice Chotard   board: stm32: swi...
16
17
  	select STM32_TIMER
  	select TIMER
0a61ee880   Vikas Manocha   stm32: move stm32...
18

e66c49fa9   Vikas Manocha   stm32: add suppor...
19
20
  config STM32F7
  	bool "stm32f7 family"
aea0af899   Patrice Chotard   configs: stm32: m...
21
22
23
24
25
26
27
  	select CLK
  	select DM_GPIO
  	select DM_RESET
  	select MISC
  	select PINCTRL
  	select PINCTRL_STM32
  	select RAM
b97476965   Vikas Manocha   stm32: stm32f7: a...
28
  	select SPL
a70c05f10   Patrice Chotard   board: stm32: Fix...
29
  	select SPL_BOARD_INIT
b97476965   Vikas Manocha   stm32: stm32f7: a...
30
31
  	select SPL_CLK
  	select SPL_DM
5e9a96458   Ley Foon Tan   mach-stm32: Renam...
32
  	select SPL_DM_RESET
b97476965   Vikas Manocha   stm32: stm32f7: a...
33
34
35
36
37
38
39
40
41
42
43
44
45
  	select SPL_DM_SEQ_ALIAS
  	select SPL_DRIVERS_MISC_SUPPORT
  	select SPL_GPIO_SUPPORT
  	select SPL_LIBCOMMON_SUPPORT
  	select SPL_LIBGENERIC_SUPPORT
  	select SPL_MTD_SUPPORT
  	select SPL_OF_CONTROL
  	select SPL_OF_LIBFDT
  	select SPL_OF_TRANSLATE
  	select SPL_PINCTRL
  	select SPL_RAM
  	select SPL_SERIAL_SUPPORT
  	select SPL_SYS_MALLOC_SIMPLE
aa5e3e22f   Patrice Chotard   board: stm32: swi...
46
  	select SPL_TIMER
1a73bd842   Vikas Manocha   spl: stm32f7: con...
47
  	select SPL_XIP_SUPPORT
58008cbab   Michal Simek   Kconfig: Sort boo...
48
49
50
51
52
53
54
55
  	select STM32_RCC
  	select STM32_RESET
  	select STM32_SDRAM
  	select STM32_SERIAL
  	select STM32_TIMER
  	select SUPPORT_SPL
  	select TIMER
  	imply SPL_OS_BOOT
e66c49fa9   Vikas Manocha   stm32: add suppor...
56

246771b18   Patrice Chotard   board: Add stm32h...
57
58
59
60
61
62
63
64
65
66
  config STM32H7
  	bool "stm32h7 family"
  	select CLK
  	select DM_GPIO
  	select DM_RESET
  	select MISC
  	select PINCTRL
  	select PINCTRL_STM32
  	select RAM
  	select REGMAP
246771b18   Patrice Chotard   board: Add stm32h...
67
68
  	select STM32_RCC
  	select STM32_RESET
58008cbab   Michal Simek   Kconfig: Sort boo...
69
  	select STM32_SDRAM
ae74de0df   Patrice Chotard   serial: stm32: Re...
70
  	select STM32_SERIAL
aa5e3e22f   Patrice Chotard   board: stm32: swi...
71
  	select STM32_TIMER
246771b18   Patrice Chotard   board: Add stm32h...
72
  	select SYSCON
aa5e3e22f   Patrice Chotard   board: stm32: swi...
73
  	select TIMER
246771b18   Patrice Chotard   board: Add stm32h...
74

0a61ee880   Vikas Manocha   stm32: move stm32...
75
  source "arch/arm/mach-stm32/stm32f4/Kconfig"
e66c49fa9   Vikas Manocha   stm32: add suppor...
76
  source "arch/arm/mach-stm32/stm32f7/Kconfig"
246771b18   Patrice Chotard   board: Add stm32h...
77
  source "arch/arm/mach-stm32/stm32h7/Kconfig"
0a61ee880   Vikas Manocha   stm32: move stm32...
78
79
  
  endif