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