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