]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/mach-exynos/Kconfig
Convert CONFIG_BOARD_EARLY_INIT_F to Kconfig
[people/ms/u-boot.git] / arch / arm / mach-exynos / Kconfig
CommitLineData
72df68cc
MY
1if ARCH_EXYNOS
2
3choice
36aa8937 4 prompt "EXYNOS architecture type select"
a26cd049 5 optional
72df68cc 6
36aa8937
TA
7config ARCH_EXYNOS4
8 bool "Exynos4 SoC family"
9 select CPU_V7
a5d67547 10 select BOARD_EARLY_INIT_F
36aa8937
TA
11 help
12 Samsung Exynos4 SoC family are based on ARM Cortex-A9 CPU. There
13 are multiple SoCs in this family including Exynos4210, Exynos4412,
14 and Exynos4212.
15
16config ARCH_EXYNOS5
17 bool "Exynos5 SoC family"
18 select CPU_V7
a5d67547 19 select BOARD_EARLY_INIT_F
36aa8937
TA
20 help
21 Samsung Exynos5 SoC family are based on ARM Cortex-A15 CPU (and
22 Cortex-A7 CPU in big.LITTLE configuration). There are multiple SoCs
23 in this family including Exynos5250, Exynos5420 and Exynos5800.
24
e39448e8
TA
25config ARCH_EXYNOS7
26 bool "Exynos7 SoC family"
27 select ARM64
a5d67547 28 select BOARD_EARLY_INIT_F
e39448e8
TA
29 help
30 Samsung Exynos7 SoC family are based on ARM Cortex-A57 CPU or
31 Cortex-A53 CPU (and some in a big.LITTLE configuration). There are
32 multiple SoCs in this family including Exynos7420.
33
36aa8937
TA
34endchoice
35
36if ARCH_EXYNOS4
37
38choice
39 prompt "EXYNOS4 board select"
40
72df68cc 41config TARGET_SMDKV310
02627356 42 select SUPPORT_SPL
72df68cc 43 bool "Exynos4210 SMDKV310 board"
d648964f 44 select OF_CONTROL
72df68cc
MY
45
46config TARGET_TRATS
47 bool "Exynos4210 Trats board"
48
49config TARGET_S5PC210_UNIVERSAL
50 bool "EXYNOS4210 Universal C210 board"
51
52config TARGET_ORIGEN
53 bool "Exynos4412 Origen board"
02627356 54 select SUPPORT_SPL
72df68cc
MY
55
56config TARGET_TRATS2
57 bool "Exynos4412 Trat2 board"
58
73eca211
PM
59config TARGET_ODROID
60 bool "Exynos4412 Odroid board"
61
36aa8937
TA
62endchoice
63endif
64
65if ARCH_EXYNOS5
66
53b5bf3c
SG
67config SPL_GPIO_SUPPORT
68 default y
69
77d2f7f5
SG
70config SPL_LIBCOMMON_SUPPORT
71 default y
72
cc4288ef
SG
73config SPL_LIBGENERIC_SUPPORT
74 default y
75
36aa8937
TA
76choice
77 prompt "EXYNOS5 board select"
78
6207604f
HH
79config TARGET_ODROID_XU3
80 bool "Exynos5422 Odroid board"
81 select OF_CONTROL
82
72df68cc
MY
83config TARGET_ARNDALE
84 bool "Exynos5250 Arndale board"
ea624e19
HG
85 select CPU_V7_HAS_NONSEC
86 select CPU_V7_HAS_VIRT
02627356 87 select SUPPORT_SPL
d648964f 88 select OF_CONTROL
72df68cc
MY
89
90config TARGET_SMDK5250
91 bool "SMDK5250 board"
02627356 92 select SUPPORT_SPL
d648964f 93 select OF_CONTROL
72df68cc
MY
94
95config TARGET_SNOW
96 bool "Snow board"
02627356 97 select SUPPORT_SPL
d648964f 98 select OF_CONTROL
72df68cc 99
d1de41d7
SG
100config TARGET_SPRING
101 bool "Spring board"
102 select SUPPORT_SPL
103 select OF_CONTROL
104 select SPL_DISABLE_OF_CONTROL
105
72df68cc
MY
106config TARGET_SMDK5420
107 bool "SMDK5420 board"
02627356 108 select SUPPORT_SPL
d648964f 109 select OF_CONTROL
72df68cc 110
79043d84 111config TARGET_PEACH_PI
72df68cc 112 bool "Peach Pi board"
02627356 113 select SUPPORT_SPL
d648964f 114 select OF_CONTROL
72df68cc 115
79043d84
AS
116config TARGET_PEACH_PIT
117 bool "Peach Pit board"
118 select SUPPORT_SPL
d648964f 119 select OF_CONTROL
79043d84 120
72df68cc 121endchoice
36aa8937 122endif
72df68cc 123
6c15a2a9
TA
124if ARCH_EXYNOS7
125
126choice
127 prompt "EXYNOS7 board select"
128
129config TARGET_ESPRESSO7420
130 bool "ESPRESSO7420 board"
131 select ARM64
95e74a3d 132 select ARMV8_MULTIENTRY
6c15a2a9
TA
133 select SUPPORT_SPL
134 select OF_CONTROL
135 select SPL_DISABLE_OF_CONTROL
136 select PINCTRL
137 select PINCTRL_EXYNOS7420
138 select CLK_EXYNOS
139
140endchoice
141endif
142
72df68cc 143config SYS_SOC
72df68cc
MY
144 default "exynos"
145
146source "board/samsung/smdkv310/Kconfig"
147source "board/samsung/trats/Kconfig"
148source "board/samsung/universal_c210/Kconfig"
149source "board/samsung/origen/Kconfig"
150source "board/samsung/trats2/Kconfig"
73eca211 151source "board/samsung/odroid/Kconfig"
72df68cc
MY
152source "board/samsung/arndale/Kconfig"
153source "board/samsung/smdk5250/Kconfig"
154source "board/samsung/smdk5420/Kconfig"
6c15a2a9 155source "board/samsung/espresso7420/Kconfig"
72df68cc
MY
156
157endif