arm: exynos: realign the code to allow support for newer 64-bit platforms
[platform/kernel/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 endchoice
24
25 if ARCH_EXYNOS4
26
27 choice
28         prompt "EXYNOS4 board select"
29
30 config TARGET_SMDKV310
31         select SUPPORT_SPL
32         bool "Exynos4210 SMDKV310 board"
33         select OF_CONTROL
34
35 config TARGET_TRATS
36         bool "Exynos4210 Trats board"
37
38 config TARGET_S5PC210_UNIVERSAL
39         bool "EXYNOS4210 Universal C210 board"
40
41 config TARGET_ORIGEN
42         bool "Exynos4412 Origen board"
43         select SUPPORT_SPL
44
45 config TARGET_TRATS2
46         bool "Exynos4412 Trat2 board"
47
48 config TARGET_ODROID
49         bool "Exynos4412 Odroid board"
50
51 endchoice
52 endif
53
54 if ARCH_EXYNOS5
55
56 choice
57         prompt "EXYNOS5 board select"
58
59 config TARGET_ODROID_XU3
60         bool "Exynos5422 Odroid board"
61         select OF_CONTROL
62
63 config TARGET_ARNDALE
64         bool "Exynos5250 Arndale board"
65         select CPU_V7_HAS_NONSEC
66         select CPU_V7_HAS_VIRT
67         select SUPPORT_SPL
68         select OF_CONTROL
69
70 config TARGET_SMDK5250
71         bool "SMDK5250 board"
72         select SUPPORT_SPL
73         select OF_CONTROL
74
75 config TARGET_SNOW
76         bool "Snow board"
77         select SUPPORT_SPL
78         select OF_CONTROL
79
80 config TARGET_SPRING
81         bool "Spring board"
82         select SUPPORT_SPL
83         select OF_CONTROL
84         select SPL_DISABLE_OF_CONTROL
85
86 config TARGET_SMDK5420
87         bool "SMDK5420 board"
88         select SUPPORT_SPL
89         select OF_CONTROL
90
91 config TARGET_PEACH_PI
92         bool "Peach Pi board"
93         select SUPPORT_SPL
94         select OF_CONTROL
95
96 config TARGET_PEACH_PIT
97         bool "Peach Pit board"
98         select SUPPORT_SPL
99         select OF_CONTROL
100
101 endchoice
102 endif
103
104 config SYS_SOC
105         default "exynos"
106
107 source "board/samsung/smdkv310/Kconfig"
108 source "board/samsung/trats/Kconfig"
109 source "board/samsung/universal_c210/Kconfig"
110 source "board/samsung/origen/Kconfig"
111 source "board/samsung/trats2/Kconfig"
112 source "board/samsung/odroid/Kconfig"
113 source "board/samsung/arndale/Kconfig"
114 source "board/samsung/smdk5250/Kconfig"
115 source "board/samsung/smdk5420/Kconfig"
116
117 endif