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