blob: c3dc95fab0d5aaf176c0e0c2dae80ad54ca97bca [file] [log] [blame]
Masahiro Yamadad7f47082014-08-31 07:11:03 +09001if OMAP44XX
2
Simon Glassc5ec6362016-09-12 23:18:37 -06003config SPL_EXT_SUPPORT
4 default y
5
Simon Glass6172e2e2016-09-12 23:18:38 -06006config SPL_FAT_SUPPORT
7 default y
8
Simon Glass0bdfc3e2016-09-12 23:18:39 -06009config SPL_GPIO_SUPPORT
10 default y
11
Simon Glass9b538332016-09-12 23:18:40 -060012config SPL_I2C_SUPPORT
13 default y
14
Simon Glassf2a89462016-09-12 23:18:41 -060015config SPL_LIBCOMMON_SUPPORT
16 default y
17
Simon Glassf6de2572016-09-12 23:18:42 -060018config SPL_LIBDISK_SUPPORT
19 default y
20
Simon Glassb16c92c2016-09-12 23:18:43 -060021config SPL_LIBGENERIC_SUPPORT
22 default y
23
Simon Glassbd58f1d2016-09-12 23:18:44 -060024config SPL_MMC_SUPPORT
25 default y
26
Simon Glassd5a307a2016-09-12 23:18:48 -060027config SPL_NAND_SUPPORT
28 default y
29
Simon Glass0d7c7e02016-09-12 23:18:54 -060030config SPL_POWER_SUPPORT
31 default y
32
Simon Glasse076d6f2016-09-12 23:18:56 -060033config SPL_SERIAL_SUPPORT
34 default y
35
Masahiro Yamadad7f47082014-08-31 07:11:03 +090036choice
37 prompt "OMAP4 board select"
Joe Hershbergerf0699602015-05-12 14:46:23 -050038 optional
Masahiro Yamadad7f47082014-08-31 07:11:03 +090039
40config TARGET_DUOVERO
41 bool "OMAP4430 Gumstix Duovero"
42
43config TARGET_OMAP4_PANDA
44 bool "TI OMAP4 PandaBoard"
45
46config TARGET_OMAP4_SDP4430
47 bool "TI OMAP4 SDP4430"
48
Paul Kocialkowski3e3b8bc2016-02-27 19:19:00 +010049config TARGET_KC1
50 bool "Amazon Kindle Fire (first generation)"
51
Masahiro Yamadad7f47082014-08-31 07:11:03 +090052endchoice
53
Masahiro Yamadad7f47082014-08-31 07:11:03 +090054config SYS_SOC
Masahiro Yamadad7f47082014-08-31 07:11:03 +090055 default "omap4"
56
57source "board/gumstix/duovero/Kconfig"
58source "board/ti/panda/Kconfig"
59source "board/ti/sdp4430/Kconfig"
Paul Kocialkowski3e3b8bc2016-02-27 19:19:00 +010060source "board/amazon/kc1/Kconfig"
Masahiro Yamadad7f47082014-08-31 07:11:03 +090061
62endif