sniper: Various minor cleanups, missing Kconfig configs and reorganisation
[platform/kernel/u-boot.git] / arch / arm / cpu / armv7 / omap3 / Kconfig
1 if OMAP34XX
2
3 choice
4         prompt "OMAP3 board select"
5         optional
6
7 config TARGET_AM3517_EVM
8         bool "AM3517 EVM"
9         select SUPPORT_SPL
10
11 config TARGET_MT_VENTOUX
12         bool "TeeJet Mt.Ventoux"
13         select SUPPORT_SPL
14
15 config TARGET_OMAP3_BEAGLE
16         bool "TI OMAP3 BeagleBoard"
17         select SUPPORT_SPL
18         select DM
19         select DM_SERIAL
20         select DM_GPIO
21
22 config TARGET_CM_T35
23         bool "CompuLab CM-T3530 and CM-T3730 boards"
24         select SUPPORT_SPL
25
26 config TARGET_CM_T3517
27         bool "CompuLab CM-T3517 boards"
28
29 config TARGET_DEVKIT8000
30         bool "TimLL OMAP3 Devkit8000"
31         select SUPPORT_SPL
32         select DM
33         select DM_SERIAL
34         select DM_GPIO
35
36 config TARGET_OMAP3_EVM
37         bool "TI OMAP3 EVM"
38         select SUPPORT_SPL
39
40 config TARGET_OMAP3_EVM_QUICK_MMC
41         bool "TI OMAP3 EVM Quick MMC"
42         select SUPPORT_SPL
43
44 config TARGET_OMAP3_EVM_QUICK_NAND
45         bool "TI OMAP3 EVM Quick NAND"
46         select SUPPORT_SPL
47
48 config TARGET_OMAP3_IGEP00X0
49         bool "IGEP"
50         select SUPPORT_SPL
51         select DM
52         select DM_SERIAL
53         select DM_GPIO
54
55 config TARGET_OMAP3_OVERO
56         bool "OMAP35xx Gumstix Overo"
57         select SUPPORT_SPL
58         select DM
59         select DM_SERIAL
60         select DM_GPIO
61
62 config TARGET_OMAP3_ZOOM1
63         bool "TI Zoom1"
64         select DM
65         select DM_SERIAL
66         select DM_GPIO
67
68 config TARGET_AM3517_CRANE
69         bool "am3517_crane"
70         select SUPPORT_SPL
71
72 config TARGET_OMAP3_PANDORA
73         bool "OMAP3 Pandora"
74
75 config TARGET_ECO5PK
76         bool "ECO5PK"
77         select SUPPORT_SPL
78
79 config TARGET_TRICORDER
80         bool "Tricorder"
81         select SUPPORT_SPL
82
83 config TARGET_MCX
84         bool "MCX"
85         select SUPPORT_SPL
86
87 config TARGET_OMAP3_LOGIC
88         bool "OMAP3 Logic"
89         select DM
90         select DM_SERIAL
91         select DM_GPIO
92         select SUPPORT_SPL
93
94 config TARGET_NOKIA_RX51
95         bool "Nokia RX51"
96
97 config TARGET_TAO3530
98         bool "TAO3530"
99         select SUPPORT_SPL
100
101 config TARGET_TWISTER
102         bool "Twister"
103         select SUPPORT_SPL
104
105 config TARGET_OMAP3_CAIRO
106         bool "QUIPOS CAIRO"
107         select SUPPORT_SPL
108         select DM
109         select DM_SERIAL
110         select DM_GPIO
111
112 config TARGET_SNIPER
113         bool "LG Optimus Black"
114         select SUPPORT_SPL
115         select DM
116         select DM_SERIAL
117         select DM_GPIO
118
119 endchoice
120
121 config SYS_SOC
122         default "omap3"
123
124 source "board/logicpd/am3517evm/Kconfig"
125 source "board/teejet/mt_ventoux/Kconfig"
126 source "board/ti/beagle/Kconfig"
127 source "board/compulab/cm_t35/Kconfig"
128 source "board/compulab/cm_t3517/Kconfig"
129 source "board/timll/devkit8000/Kconfig"
130 source "board/ti/evm/Kconfig"
131 source "board/isee/igep00x0/Kconfig"
132 source "board/overo/Kconfig"
133 source "board/logicpd/zoom1/Kconfig"
134 source "board/ti/am3517crane/Kconfig"
135 source "board/pandora/Kconfig"
136 source "board/8dtech/eco5pk/Kconfig"
137 source "board/corscience/tricorder/Kconfig"
138 source "board/htkw/mcx/Kconfig"
139 source "board/logicpd/omap3som/Kconfig"
140 source "board/nokia/rx51/Kconfig"
141 source "board/technexion/tao3530/Kconfig"
142 source "board/technexion/twister/Kconfig"
143 source "board/quipos/cairo/Kconfig"
144 source "board/lge/sniper/Kconfig"
145
146 endif