Merge branch 'master' of git://git.denx.de/u-boot-mmc
[platform/kernel/u-boot.git] / arch / arm / mach-omap2 / omap3 / Kconfig
1 if OMAP34XX
2
3 # We only enable the clocks for the GPIO banks that a given board requies.
4 config OMAP3_GPIO_2
5         bool
6
7 config OMAP3_GPIO_3
8         bool
9
10 config OMAP3_GPIO_4
11         bool
12
13 config OMAP3_GPIO_5
14         bool
15
16 config OMAP3_GPIO_6
17         bool
18
19 choice
20         prompt "OMAP3 board select"
21         optional
22
23 config TARGET_AM3517_EVM
24         bool "AM3517 EVM"
25
26 config TARGET_MT_VENTOUX
27         bool "TeeJet Mt.Ventoux"
28         select OMAP3_GPIO_4
29         select OMAP3_GPIO_5 if USB_EHCI_HCD
30
31 config TARGET_OMAP3_BEAGLE
32         bool "TI OMAP3 BeagleBoard"
33         select DM
34         select DM_SERIAL
35         select DM_GPIO
36         select OMAP3_GPIO_5
37         select OMAP3_GPIO_6
38
39 config TARGET_CM_T35
40         bool "CompuLab CM-T3530 and CM-T3730 boards"
41         select OMAP3_GPIO_2
42         select OMAP3_GPIO_5
43         select OMAP3_GPIO_6 if LED_STATUS
44
45 config TARGET_CM_T3517
46         bool "CompuLab CM-T3517 boards"
47         select OMAP3_GPIO_2
48         select OMAP3_GPIO_5
49         select OMAP3_GPIO_6 if LED_STATUS
50
51 config TARGET_DEVKIT8000
52         bool "TimLL OMAP3 Devkit8000"
53         select DM
54         select DM_SERIAL
55         select DM_GPIO
56
57 config TARGET_OMAP3_EVM
58         bool "TI OMAP3 EVM"
59
60 config TARGET_OMAP3_IGEP00X0
61         bool "IGEP"
62         select DM
63         select DM_SERIAL
64         select DM_GPIO
65         select OMAP3_GPIO_3
66         select OMAP3_GPIO_5
67         select OMAP3_GPIO_6
68
69 config TARGET_OMAP3_OVERO
70         bool "OMAP35xx Gumstix Overo"
71         select DM
72         select DM_SERIAL
73         select DM_GPIO
74         select OMAP3_GPIO_2
75         select OMAP3_GPIO_3
76         select OMAP3_GPIO_4
77         select OMAP3_GPIO_5
78         select OMAP3_GPIO_6
79
80 config TARGET_OMAP3_ZOOM1
81         bool "TI Zoom1"
82         select DM
83         select DM_SERIAL
84         select DM_GPIO
85
86 config TARGET_AM3517_CRANE
87         bool "am3517_crane"
88
89 config TARGET_OMAP3_PANDORA
90         bool "OMAP3 Pandora"
91         select OMAP3_GPIO_4
92         select OMAP3_GPIO_6
93
94 config TARGET_ECO5PK
95         bool "ECO5PK"
96         select OMAP3_GPIO_5 if USB_EHCI_HCD
97
98 config TARGET_TRICORDER
99         bool "Tricorder"
100         select OMAP3_GPIO_2
101
102 config TARGET_MCX
103         bool "MCX"
104         select BOARD_LATE_INIT
105         select OMAP3_GPIO_2 if USB_EHCI_HCD
106         select OMAP3_GPIO_5 if USB_EHCI_HCD
107
108 config TARGET_OMAP3_LOGIC
109         bool "OMAP3 Logic"
110         select BOARD_LATE_INIT
111         select DM
112         select DM_SERIAL
113         select DM_GPIO
114         select OMAP3_GPIO_4
115         select OMAP3_GPIO_6
116
117 config TARGET_NOKIA_RX51
118         bool "Nokia RX51"
119
120 config TARGET_TAO3530
121         bool "TAO3530"
122         select OMAP3_GPIO_2
123         select OMAP3_GPIO_3
124         select OMAP3_GPIO_4
125         select OMAP3_GPIO_5
126         select OMAP3_GPIO_6
127
128 config TARGET_TWISTER
129         bool "Twister"
130         select OMAP3_GPIO_2
131         select OMAP3_GPIO_5 if USB_EHCI_HCD
132
133 config TARGET_OMAP3_CAIRO
134         bool "QUIPOS CAIRO"
135         select DM
136         select DM_SERIAL
137         select DM_GPIO
138
139 config TARGET_SNIPER
140         bool "LG Optimus Black"
141         select DM
142         select DM_SERIAL
143         select DM_GPIO
144         select OMAP3_GPIO_2
145         select OMAP3_GPIO_3
146         select OMAP3_GPIO_4
147         select OMAP3_GPIO_5
148         select OMAP3_GPIO_6
149
150 endchoice
151
152 config SYS_SOC
153         default "omap3"
154
155 source "board/logicpd/am3517evm/Kconfig"
156 source "board/teejet/mt_ventoux/Kconfig"
157 source "board/ti/beagle/Kconfig"
158 source "board/compulab/cm_t35/Kconfig"
159 source "board/compulab/cm_t3517/Kconfig"
160 source "board/timll/devkit8000/Kconfig"
161 source "board/ti/evm/Kconfig"
162 source "board/isee/igep00x0/Kconfig"
163 source "board/overo/Kconfig"
164 source "board/logicpd/zoom1/Kconfig"
165 source "board/ti/am3517crane/Kconfig"
166 source "board/pandora/Kconfig"
167 source "board/8dtech/eco5pk/Kconfig"
168 source "board/corscience/tricorder/Kconfig"
169 source "board/htkw/mcx/Kconfig"
170 source "board/logicpd/omap3som/Kconfig"
171 source "board/nokia/rx51/Kconfig"
172 source "board/technexion/tao3530/Kconfig"
173 source "board/technexion/twister/Kconfig"
174 source "board/quipos/cairo/Kconfig"
175 source "board/lg/sniper/Kconfig"
176
177 endif