xref: /openbmc/u-boot/arch/arm/mach-omap2/omap4/Kconfig (revision 17fa0326)
1if OMAP44XX
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
36config SPL_DISPLAY_PRINT
37	default y
38
39choice
40	prompt "OMAP4 board select"
41	optional
42
43config TARGET_DUOVERO
44	bool "OMAP4430 Gumstix Duovero"
45
46config TARGET_OMAP4_PANDA
47	bool "TI OMAP4 PandaBoard"
48
49config TARGET_OMAP4_SDP4430
50	bool "TI OMAP4 SDP4430"
51
52config TARGET_KC1
53	bool "Amazon Kindle Fire (first generation)"
54
55endchoice
56
57config SYS_SOC
58	default "omap4"
59
60source "board/gumstix/duovero/Kconfig"
61source "board/ti/panda/Kconfig"
62source "board/ti/sdp4430/Kconfig"
63source "board/amazon/kc1/Kconfig"
64
65endif
66