xref: /openbmc/u-boot/arch/arm/mach-omap2/omap3/Kconfig (revision 919ccb9f)
1if OMAP34XX
2
3# We only enable the clocks for the GPIO banks that a given board requies.
4config OMAP3_GPIO_2
5	bool
6
7config OMAP3_GPIO_3
8	bool
9
10config OMAP3_GPIO_4
11	bool
12
13config OMAP3_GPIO_5
14	bool
15
16config OMAP3_GPIO_6
17	bool
18
19choice
20	prompt "OMAP3 board select"
21	optional
22
23config TARGET_AM3517_EVM
24	bool "AM3517 EVM"
25
26config TARGET_MT_VENTOUX
27	bool "TeeJet Mt.Ventoux"
28	select OMAP3_GPIO_4
29	select OMAP3_GPIO_5 if USB_EHCI_HCD
30
31config 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
39config 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
45config 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
51config TARGET_DEVKIT8000
52	bool "TimLL OMAP3 Devkit8000"
53	select DM
54	select DM_SERIAL
55	select DM_GPIO
56
57config TARGET_OMAP3_EVM
58	bool "TI OMAP3 EVM"
59
60config 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
69config 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
80config TARGET_OMAP3_ZOOM1
81	bool "TI Zoom1"
82	select DM
83	select DM_SERIAL
84	select DM_GPIO
85
86config TARGET_AM3517_CRANE
87	bool "am3517_crane"
88
89config TARGET_OMAP3_PANDORA
90	bool "OMAP3 Pandora"
91	select OMAP3_GPIO_4
92	select OMAP3_GPIO_6
93
94config TARGET_ECO5PK
95	bool "ECO5PK"
96	select OMAP3_GPIO_5 if USB_EHCI_HCD
97
98config TARGET_TRICORDER
99	bool "Tricorder"
100	select OMAP3_GPIO_2
101
102config 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
108config 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_3
115	select OMAP3_GPIO_4
116	select OMAP3_GPIO_6
117
118config TARGET_NOKIA_RX51
119	bool "Nokia RX51"
120
121config TARGET_TAO3530
122	bool "TAO3530"
123	select OMAP3_GPIO_2
124	select OMAP3_GPIO_3
125	select OMAP3_GPIO_4
126	select OMAP3_GPIO_5
127	select OMAP3_GPIO_6
128
129config TARGET_TWISTER
130	bool "Twister"
131	select OMAP3_GPIO_2
132	select OMAP3_GPIO_5 if USB_EHCI_HCD
133
134config TARGET_OMAP3_CAIRO
135	bool "QUIPOS CAIRO"
136	select DM
137	select DM_SERIAL
138	select DM_GPIO
139
140config TARGET_SNIPER
141	bool "LG Optimus Black"
142	select DM
143	select DM_SERIAL
144	select DM_GPIO
145	select OMAP3_GPIO_2
146	select OMAP3_GPIO_3
147	select OMAP3_GPIO_4
148	select OMAP3_GPIO_5
149	select OMAP3_GPIO_6
150
151endchoice
152
153config SPL_OMAP3_ID_NAND
154	bool "Support OMAP3-specific ID and MFR function"
155	help
156	  Support for an OMAP3-specific set of functions to return the
157	  ID and MFR of the first attached NAND chip, if present.
158
159config SYS_SOC
160	default "omap3"
161
162source "board/logicpd/am3517evm/Kconfig"
163source "board/teejet/mt_ventoux/Kconfig"
164source "board/ti/beagle/Kconfig"
165source "board/compulab/cm_t35/Kconfig"
166source "board/compulab/cm_t3517/Kconfig"
167source "board/timll/devkit8000/Kconfig"
168source "board/ti/evm/Kconfig"
169source "board/isee/igep00x0/Kconfig"
170source "board/overo/Kconfig"
171source "board/logicpd/zoom1/Kconfig"
172source "board/ti/am3517crane/Kconfig"
173source "board/pandora/Kconfig"
174source "board/8dtech/eco5pk/Kconfig"
175source "board/corscience/tricorder/Kconfig"
176source "board/htkw/mcx/Kconfig"
177source "board/logicpd/omap3som/Kconfig"
178source "board/nokia/rx51/Kconfig"
179source "board/technexion/tao3530/Kconfig"
180source "board/technexion/twister/Kconfig"
181source "board/quipos/cairo/Kconfig"
182source "board/lg/sniper/Kconfig"
183
184endif
185