blob: 48b596a89883b50619d26e7d11c9108dafa872d2 [file] [log] [blame]
Masahiro Yamadadd678432014-08-31 07:11:02 +09001if OMAP34XX
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
Masahiro Yamadadd678432014-08-31 07:11:02 +090027choice
28 prompt "OMAP3 board select"
Joe Hershbergerf0699602015-05-12 14:46:23 -050029 optional
Masahiro Yamadadd678432014-08-31 07:11:02 +090030
31config TARGET_AM3517_EVM
32 bool "AM3517 EVM"
33
34config TARGET_MT_VENTOUX
35 bool "TeeJet Mt.Ventoux"
36
Masahiro Yamadadd678432014-08-31 07:11:02 +090037config TARGET_OMAP3_BEAGLE
38 bool "TI OMAP3 BeagleBoard"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +090039 select DM
40 select DM_SERIAL
41 select DM_GPIO
Masahiro Yamadadd678432014-08-31 07:11:02 +090042
43config TARGET_CM_T35
Igor Grinberg07cf9a52014-10-21 16:39:45 +030044 bool "CompuLab CM-T3530 and CM-T3730 boards"
Masahiro Yamadadd678432014-08-31 07:11:02 +090045
Igor Grinbergc3373ee2014-11-05 14:25:35 +020046config TARGET_CM_T3517
47 bool "CompuLab CM-T3517 boards"
48
Masahiro Yamadadd678432014-08-31 07:11:02 +090049config TARGET_DEVKIT8000
50 bool "TimLL OMAP3 Devkit8000"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +090051 select DM
52 select DM_SERIAL
53 select DM_GPIO
Masahiro Yamadadd678432014-08-31 07:11:02 +090054
55config TARGET_OMAP3_EVM
56 bool "TI OMAP3 EVM"
57
Masahiro Yamadadd678432014-08-31 07:11:02 +090058config TARGET_OMAP3_IGEP00X0
59 bool "IGEP"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +090060 select DM
61 select DM_SERIAL
62 select DM_GPIO
Masahiro Yamadadd678432014-08-31 07:11:02 +090063
64config TARGET_OMAP3_OVERO
65 bool "OMAP35xx Gumstix Overo"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +090066 select DM
67 select DM_SERIAL
68 select DM_GPIO
Masahiro Yamadadd678432014-08-31 07:11:02 +090069
70config TARGET_OMAP3_ZOOM1
71 bool "TI Zoom1"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +090072 select DM
73 select DM_SERIAL
74 select DM_GPIO
Masahiro Yamadadd678432014-08-31 07:11:02 +090075
76config TARGET_AM3517_CRANE
77 bool "am3517_crane"
78
79config TARGET_OMAP3_PANDORA
80 bool "OMAP3 Pandora"
81
82config TARGET_ECO5PK
83 bool "ECO5PK"
84
Masahiro Yamadadd678432014-08-31 07:11:02 +090085config TARGET_TRICORDER
86 bool "Tricorder"
87
88config TARGET_MCX
89 bool "MCX"
90
91config TARGET_OMAP3_LOGIC
92 bool "OMAP3 Logic"
Adam Ford04c848a2015-09-02 09:18:20 -050093 select DM
94 select DM_SERIAL
95 select DM_GPIO
Masahiro Yamadadd678432014-08-31 07:11:02 +090096
Masahiro Yamadadd678432014-08-31 07:11:02 +090097config TARGET_NOKIA_RX51
98 bool "Nokia RX51"
99
100config TARGET_TAO3530
101 bool "TAO3530"
102
103config TARGET_TWISTER
104 bool "Twister"
105
Albert ARIBAUD \(3ADEV\)05e86332015-02-03 18:13:14 +0100106config TARGET_OMAP3_CAIRO
107 bool "QUIPOS CAIRO"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900108 select DM
109 select DM_SERIAL
110 select DM_GPIO
Albert ARIBAUD \(3ADEV\)05e86332015-02-03 18:13:14 +0100111
Paul Kocialkowski3dee0002015-07-20 15:17:11 +0200112config TARGET_SNIPER
Paul Kocialkowskid90f8832016-02-26 13:18:47 +0100113 bool "LG Optimus Black"
Paul Kocialkowski3dee0002015-07-20 15:17:11 +0200114 select DM
115 select DM_SERIAL
116 select DM_GPIO
117
Masahiro Yamadadd678432014-08-31 07:11:02 +0900118endchoice
119
Masahiro Yamadadd678432014-08-31 07:11:02 +0900120config SYS_SOC
Masahiro Yamadadd678432014-08-31 07:11:02 +0900121 default "omap3"
122
123source "board/logicpd/am3517evm/Kconfig"
124source "board/teejet/mt_ventoux/Kconfig"
Masahiro Yamadadd678432014-08-31 07:11:02 +0900125source "board/ti/beagle/Kconfig"
126source "board/compulab/cm_t35/Kconfig"
Igor Grinbergc3373ee2014-11-05 14:25:35 +0200127source "board/compulab/cm_t3517/Kconfig"
Masahiro Yamadadd678432014-08-31 07:11:02 +0900128source "board/timll/devkit8000/Kconfig"
129source "board/ti/evm/Kconfig"
130source "board/isee/igep00x0/Kconfig"
131source "board/overo/Kconfig"
132source "board/logicpd/zoom1/Kconfig"
133source "board/ti/am3517crane/Kconfig"
134source "board/pandora/Kconfig"
135source "board/8dtech/eco5pk/Kconfig"
Masahiro Yamadadd678432014-08-31 07:11:02 +0900136source "board/corscience/tricorder/Kconfig"
137source "board/htkw/mcx/Kconfig"
138source "board/logicpd/omap3som/Kconfig"
Masahiro Yamadadd678432014-08-31 07:11:02 +0900139source "board/nokia/rx51/Kconfig"
140source "board/technexion/tao3530/Kconfig"
141source "board/technexion/twister/Kconfig"
Albert ARIBAUD \(3ADEV\)05e86332015-02-03 18:13:14 +0100142source "board/quipos/cairo/Kconfig"
Paul Kocialkowskiea817692016-03-29 14:16:27 +0200143source "board/lg/sniper/Kconfig"
Masahiro Yamadadd678432014-08-31 07:11:02 +0900144
145endif