]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/exynos/Kconfig
dm: select CONFIG_DM* options
[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
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_ODROID_XU3
28         bool "Exynos5422 Odroid board"
29         select OF_CONTROL
30
31 config TARGET_ARNDALE
32         bool "Exynos5250 Arndale board"
33         select CPU_V7_HAS_NONSEC
34         select CPU_V7_HAS_VIRT
35         select SUPPORT_SPL
36         select OF_CONTROL
37
38 config TARGET_SMDK5250
39         bool "SMDK5250 board"
40         select SUPPORT_SPL
41         select OF_CONTROL
42
43 config TARGET_SNOW
44         bool "Snow board"
45         select SUPPORT_SPL
46         select OF_CONTROL
47
48 config TARGET_SMDK5420
49         bool "SMDK5420 board"
50         select SUPPORT_SPL
51         select OF_CONTROL
52
53 config TARGET_PEACH_PI
54         bool "Peach Pi board"
55         select SUPPORT_SPL
56         select OF_CONTROL
57
58 config TARGET_PEACH_PIT
59         bool "Peach Pit board"
60         select SUPPORT_SPL
61         select OF_CONTROL
62
63 endchoice
64
65 config SYS_SOC
66         default "exynos"
67
68 config DM_USB
69         default y
70
71 source "board/samsung/smdkv310/Kconfig"
72 source "board/samsung/trats/Kconfig"
73 source "board/samsung/universal_c210/Kconfig"
74 source "board/samsung/origen/Kconfig"
75 source "board/samsung/trats2/Kconfig"
76 source "board/samsung/odroid/Kconfig"
77 source "board/samsung/arndale/Kconfig"
78 source "board/samsung/smdk5250/Kconfig"
79 source "board/samsung/smdk5420/Kconfig"
80
81 endif