]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - arch/arm/mach-exynos/Kconfig
of: flip CONFIG_SPL_DISABLE_OF_CONTROL into CONFIG_SPL_OF_CONTROL
[karo-tx-uboot.git] / arch / arm / mach-exynos / Kconfig
1 if ARCH_EXYNOS
2
3 choice
4         prompt "EXYNOS board select"
5         optional
6
7 config TARGET_SMDKV310
8         select SUPPORT_SPL
9         bool "Exynos4210 SMDKV310 board"
10         select OF_CONTROL
11
12 config TARGET_TRATS
13         bool "Exynos4210 Trats board"
14
15 config TARGET_S5PC210_UNIVERSAL
16         bool "EXYNOS4210 Universal C210 board"
17
18 config TARGET_ORIGEN
19         bool "Exynos4412 Origen board"
20         select SUPPORT_SPL
21
22 config TARGET_TRATS2
23         bool "Exynos4412 Trat2 board"
24
25 config TARGET_ODROID
26         bool "Exynos4412 Odroid board"
27
28 config TARGET_ODROID_XU3
29         bool "Exynos5422 Odroid board"
30         select OF_CONTROL
31
32 config TARGET_ARNDALE
33         bool "Exynos5250 Arndale board"
34         select CPU_V7_HAS_NONSEC
35         select CPU_V7_HAS_VIRT
36         select SUPPORT_SPL
37         select OF_CONTROL
38
39 config TARGET_SMDK5250
40         bool "SMDK5250 board"
41         select SUPPORT_SPL
42         select OF_CONTROL
43
44 config TARGET_SNOW
45         bool "Snow board"
46         select SUPPORT_SPL
47         select OF_CONTROL
48
49 config TARGET_SPRING
50         bool "Spring board"
51         select SUPPORT_SPL
52         select OF_CONTROL
53         select SPL_DISABLE_OF_CONTROL
54
55 config TARGET_SMDK5420
56         bool "SMDK5420 board"
57         select SUPPORT_SPL
58         select OF_CONTROL
59
60 config TARGET_PEACH_PI
61         bool "Peach Pi board"
62         select SUPPORT_SPL
63         select OF_CONTROL
64
65 config TARGET_PEACH_PIT
66         bool "Peach Pit board"
67         select SUPPORT_SPL
68         select OF_CONTROL
69
70 endchoice
71
72 config SYS_SOC
73         default "exynos"
74
75 source "board/samsung/smdkv310/Kconfig"
76 source "board/samsung/trats/Kconfig"
77 source "board/samsung/universal_c210/Kconfig"
78 source "board/samsung/origen/Kconfig"
79 source "board/samsung/trats2/Kconfig"
80 source "board/samsung/odroid/Kconfig"
81 source "board/samsung/arndale/Kconfig"
82 source "board/samsung/smdk5250/Kconfig"
83 source "board/samsung/smdk5420/Kconfig"
84
85 endif