blob: 7f6b344c82b1a74e9265730d64318b9cd6488885 [file] [log] [blame]
Tom Rini2a84b012017-05-16 14:46:40 -04001if TI816X
2
3config TARGET_TI816X_EVM
4 bool "Support ti816x_evm"
5 help
6 This option specifies support for the TI8168 EVM development platform
7 with PG2.0 silicon and DDR3 DRAM.
8
9endif
10
11if TI814X
12
13config TARGET_TI814X_EVM
14 bool "Support ti814x_evm"
15 help
16 This option specifies support for the TI8148
17 EVM development platform.
18
19endif
20
Andrew F. Davis817bbee2016-08-30 14:06:20 -050021if AM33XX
22
Marcin Niestroj07623922017-01-25 09:53:07 +010023config AM33XX_CHILISOM
24 bool
25 select SUPPORT_SPL
26
Andrew F. Davis817bbee2016-08-30 14:06:20 -050027choice
28 prompt "AM33xx board select"
Andrew F. Davis817bbee2016-08-30 14:06:20 -050029
30config TARGET_AM335X_EVM
31 bool "Support am335x_evm"
Tom Rini22d567e2017-01-22 19:43:11 -050032 select BOARD_LATE_INIT
Andrew F. Davis817bbee2016-08-30 14:06:20 -050033 select DM
Andrew F. Davis817bbee2016-08-30 14:06:20 -050034 select DM_GPIO
Michal Simek84f3dec2018-07-23 15:55:13 +020035 select DM_SERIAL
Andrew F. Davis817bbee2016-08-30 14:06:20 -050036 select TI_I2C_BOARD_DETECT
Michal Simek2e7c8192018-07-23 15:55:14 +020037 imply CMD_DM
Michal Simek84f3dec2018-07-23 15:55:13 +020038 imply SPL_DM
39 imply SPL_DM_SEQ_ALIAS
Tom Rini60adb2f2017-03-03 15:33:30 -050040 imply SPL_ENV_SUPPORT
Tien Fong Chee6091dd12019-01-23 14:20:05 +080041 imply SPL_FS_EXT4
Tien Fong Chee6fd0a712019-01-23 14:20:03 +080042 imply SPL_FS_FAT
Tom Rini3b235102017-03-03 15:33:31 -050043 imply SPL_GPIO_SUPPORT
44 imply SPL_I2C_SUPPORT
45 imply SPL_LIBCOMMON_SUPPORT
46 imply SPL_LIBDISK_SUPPORT
47 imply SPL_LIBGENERIC_SUPPORT
48 imply SPL_MMC_SUPPORT
49 imply SPL_NAND_SUPPORT
Michal Simek84f3dec2018-07-23 15:55:13 +020050 imply SPL_OF_LIBFDT
Tom Rini3b235102017-03-03 15:33:31 -050051 imply SPL_POWER_SUPPORT
Michal Simek84f3dec2018-07-23 15:55:13 +020052 imply SPL_SEPARATE_BSS
Tom Rini3b235102017-03-03 15:33:31 -050053 imply SPL_SERIAL_SUPPORT
Michal Simek84f3dec2018-07-23 15:55:13 +020054 imply SPL_SYS_MALLOC_SIMPLE
Tom Rini60adb2f2017-03-03 15:33:30 -050055 imply SPL_WATCHDOG_SUPPORT
Tom Rini3b235102017-03-03 15:33:31 -050056 imply SPL_YMODEM_SUPPORT
Andrew F. Davis817bbee2016-08-30 14:06:20 -050057 help
58 This option specifies support for the AM335x
59 GP and HS EVM development platforms. The AM335x
60 GP EVM is a standalone test, development, and
61 evaluation module system that enables developers
62 to write software and develop hardware around
63 an AM335x processor subsystem.
64
65config TARGET_AM335X_BALTOS
66 bool "Support am335x_baltos"
Tom Rini22d567e2017-01-22 19:43:11 -050067 select BOARD_LATE_INIT
Andrew F. Davis817bbee2016-08-30 14:06:20 -050068 select DM
Andrew F. Davis817bbee2016-08-30 14:06:20 -050069 select DM_GPIO
Michal Simek84f3dec2018-07-23 15:55:13 +020070 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +020071 imply CMD_DM
Andrew F. Davis817bbee2016-08-30 14:06:20 -050072
Ladislav Michl10bdc712017-04-01 17:17:16 +020073config TARGET_AM335X_IGEP003X
74 bool "Support am335x_igep003x"
Pau Pajuelob2310f12017-04-01 17:18:40 +020075 select BOARD_LATE_INIT
Andrew F. Davis817bbee2016-08-30 14:06:20 -050076 select DM
Andrew F. Davis817bbee2016-08-30 14:06:20 -050077 select DM_GPIO
Michal Simek84f3dec2018-07-23 15:55:13 +020078 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +020079 imply CMD_DM
Andrew F. Davis817bbee2016-08-30 14:06:20 -050080
81config TARGET_AM335X_SHC
82 bool "Support am335x based shc board from bosch"
Tom Rini22d567e2017-01-22 19:43:11 -050083 select BOARD_LATE_INIT
Andrew F. Davis817bbee2016-08-30 14:06:20 -050084 select DM
Andrew F. Davis817bbee2016-08-30 14:06:20 -050085 select DM_GPIO
Michal Simek84f3dec2018-07-23 15:55:13 +020086 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +020087 imply CMD_DM
Simon Glassc6567fa2017-08-04 16:34:48 -060088 imply CMD_SPL
Andrew F. Davis817bbee2016-08-30 14:06:20 -050089
Sjoerd Simonsf93564c2019-02-25 15:33:00 +000090config TARGET_AM335X_GUARDIAN
91 bool "Support am335x based guardian board from bosch"
92 select DM
93 select DM_SERIAL
94 select DM_GPIO
95 select DM_USB
96
Andrew F. Davis817bbee2016-08-30 14:06:20 -050097config TARGET_AM335X_SL50
98 bool "Support am335x_sl50"
Tom Rini22d567e2017-01-22 19:43:11 -050099 select BOARD_LATE_INIT
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500100 select DM
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500101 select DM_GPIO
Michal Simek84f3dec2018-07-23 15:55:13 +0200102 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +0200103 imply CMD_DM
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500104
105config TARGET_BAV335X
106 bool "Support bav335x"
Tom Rini22d567e2017-01-22 19:43:11 -0500107 select BOARD_LATE_INIT
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500108 select DM
109 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +0200110 imply CMD_DM
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500111 help
112 The BAV335x OEM Network Processor integrates all the functions of an
113 embedded network computer in a small, easy to use SODIMM module which
114 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
115 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
116 ethernet with simple connection to external connectors.
117
118 For more information, visit: http://birdland.com/oem
119
Tom Rini3d46f242017-06-09 16:59:17 -0400120config TARGET_BRXRE1
121 bool "Support BRXRE1"
122 select BOARD_LATE_INIT
123
Hannes Schmelzer82088482019-08-01 07:04:46 +0200124config TARGET_BRSMARC1
125 bool "Support BRSMARC1"
126 select BOARD_LATE_INIT
127
Tom Rini3d46f242017-06-09 16:59:17 -0400128config TARGET_BRPPT1
129 bool "Support BRPPT1"
130 select BOARD_LATE_INIT
131
Marcin Niestroj20315d22017-01-25 09:53:08 +0100132config TARGET_CHILIBOARD
133 bool "Grinn chiliBoard"
134 select AM33XX_CHILISOM
135 select BOARD_LATE_INIT
136 select DM
137 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +0200138 imply CMD_DM
Marcin Niestroj20315d22017-01-25 09:53:08 +0100139
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500140config TARGET_CM_T335
141 bool "Support cm_t335"
142 select DM
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500143 select DM_GPIO
Michal Simek84f3dec2018-07-23 15:55:13 +0200144 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +0200145 imply CMD_DM
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500146
Tom Rini3d46f242017-06-09 16:59:17 -0400147config TARGET_DRACO
148 bool "Support draco"
149 select BOARD_LATE_INIT
150 select DM
Tom Rini3d46f242017-06-09 16:59:17 -0400151 select DM_GPIO
Michal Simek84f3dec2018-07-23 15:55:13 +0200152 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +0200153 imply CMD_DM
Tom Rini3d46f242017-06-09 16:59:17 -0400154
155config TARGET_ETAMIN
156 bool "Support etamin"
157 select BOARD_LATE_INIT
158 select DM
Tom Rini3d46f242017-06-09 16:59:17 -0400159 select DM_GPIO
Michal Simek84f3dec2018-07-23 15:55:13 +0200160 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +0200161 imply CMD_DM
Tom Rini3d46f242017-06-09 16:59:17 -0400162
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500163config TARGET_PCM051
164 bool "Support pcm051"
165 select DM
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500166 select DM_GPIO
Michal Simek84f3dec2018-07-23 15:55:13 +0200167 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +0200168 imply CMD_DM
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500169
170config TARGET_PENGWYN
171 bool "Support pengwyn"
172 select DM
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500173 select DM_GPIO
Michal Simek84f3dec2018-07-23 15:55:13 +0200174 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +0200175 imply CMD_DM
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500176
177config TARGET_PEPPER
178 bool "Support pepper"
179 select DM
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500180 select DM_GPIO
Michal Simek84f3dec2018-07-23 15:55:13 +0200181 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +0200182 imply CMD_DM
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500183
Niel Fouried3951852019-06-03 15:31:17 +0200184config TARGET_PHYCORE_AM335X_R2
185 bool "Support phyCORE AM335X R2"
186 select DM
187 select DM_GPIO
188 select DM_SERIAL
189 imply CMD_DM
190
Tom Rini3d46f242017-06-09 16:59:17 -0400191config TARGET_PXM2
192 bool "Support pxm2"
193 select BOARD_LATE_INIT
194 select DM
Tom Rini3d46f242017-06-09 16:59:17 -0400195 select DM_GPIO
Michal Simek84f3dec2018-07-23 15:55:13 +0200196 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +0200197 imply CMD_DM
Tom Rini3d46f242017-06-09 16:59:17 -0400198
199config TARGET_RASTABAN
200 bool "Support rastaban"
201 select BOARD_LATE_INIT
202 select DM
Tom Rini3d46f242017-06-09 16:59:17 -0400203 select DM_GPIO
Michal Simek84f3dec2018-07-23 15:55:13 +0200204 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +0200205 imply CMD_DM
Tom Rini3d46f242017-06-09 16:59:17 -0400206
207config TARGET_RUT
208 bool "Support rut"
209 select BOARD_LATE_INIT
210 select DM
Tom Rini3d46f242017-06-09 16:59:17 -0400211 select DM_GPIO
Michal Simek84f3dec2018-07-23 15:55:13 +0200212 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +0200213 imply CMD_DM
Tom Rini3d46f242017-06-09 16:59:17 -0400214
215config TARGET_THUBAN
216 bool "Support thuban"
217 select BOARD_LATE_INIT
218 select DM
Tom Rini3d46f242017-06-09 16:59:17 -0400219 select DM_GPIO
Michal Simek84f3dec2018-07-23 15:55:13 +0200220 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +0200221 imply CMD_DM
Tom Rini3d46f242017-06-09 16:59:17 -0400222
Felix Brack1ba8c9e2018-01-23 18:27:22 +0100223config TARGET_PDU001
224 bool "Support PDU001"
225 select DM
226 select DM_SERIAL
Felix Brack813742e2018-12-07 15:01:55 +0100227 imply SPL_SEPARATE_BSS
Michal Simek2e7c8192018-07-23 15:55:14 +0200228 imply CMD_DM
Felix Brack1ba8c9e2018-01-23 18:27:22 +0100229 help
230 Support for PDU001 platform developed by EETS GmbH.
231 The PDU001 is a processor and display unit developed around
232 the Computing-Module m2 from bytes at work AG.
233
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500234endchoice
235
236endif
237
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500238if AM43XX
Simon Glassc5ec6362016-09-12 23:18:37 -0600239
Tom Rini3d46f242017-06-09 16:59:17 -0400240choice
241 prompt "AM43xx board select"
242
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500243config TARGET_AM43XX_EVM
244 bool "Support am43xx_evm"
Tom Rini22d567e2017-01-22 19:43:11 -0500245 select BOARD_LATE_INIT
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500246 select TI_I2C_BOARD_DETECT
Lokesh Vutla493368d2017-02-21 11:40:43 +0530247 imply DM_ETH
248 imply DM_I2C
249 imply DM_SPI
250 imply DM_SPI_FLASH
Tom Rini3b235102017-03-03 15:33:31 -0500251 imply SPL_ENV_SUPPORT
Tien Fong Chee6091dd12019-01-23 14:20:05 +0800252 imply SPL_FS_EXT4
Tien Fong Chee6fd0a712019-01-23 14:20:03 +0800253 imply SPL_FS_FAT
Tom Rini3b235102017-03-03 15:33:31 -0500254 imply SPL_GPIO_SUPPORT
255 imply SPL_I2C_SUPPORT
256 imply SPL_LIBCOMMON_SUPPORT
257 imply SPL_LIBDISK_SUPPORT
258 imply SPL_LIBGENERIC_SUPPORT
259 imply SPL_MMC_SUPPORT
260 imply SPL_NAND_SUPPORT
261 imply SPL_POWER_SUPPORT
262 imply SPL_SERIAL_SUPPORT
263 imply SPL_WATCHDOG_SUPPORT
264 imply SPL_YMODEM_SUPPORT
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500265 help
266 This option specifies support for the AM43xx
267 GP and HS EVM development platforms.The AM437x
268 GP EVM is a standalone test, development, and
269 evaluation module system that enables developers
270 to write software and develop hardware around
271 an AM43xx processor subsystem.
Tom Rini3d46f242017-06-09 16:59:17 -0400272
273config TARGET_CM_T43
274 bool "Support cm_t43"
275
276endchoice
277
Tero Kristo5d6acae2018-03-17 13:32:52 +0530278config SPL_RTC_DDR_SUPPORT
279 bool
280 depends on SPL
281 prompt "Enable RTC-DDR ONLY Support"
282 help
283 If you want RTC-DDR ONLY Support, say Y. RTC Only with DDR in
284 self-refresh mode is a special power saving mode where in all
285 the other voltages are turned off apart from the RTC domain and DDR.
286 So only RTC is alive and ticking and one can program it to wake
287 up after a predetermined period. Once RTC alarm fires, the PMIC
288 powers up all the voltage domains. U-Boot takes a special path
289 as the DDR has contents is in self-refresh and restore path is
290 followed.
291
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500292endif
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500293
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500294if AM43XX || AM33XX
Madan Srinivasfb59e8e2016-05-19 19:10:42 -0500295config PUB_ROM_DATA_SIZE
296 hex "Size in bytes of the L3 SRAM reserved by ROM to store data"
Michal Simek84f3dec2018-07-23 15:55:13 +0200297 default 0x8400
Madan Srinivasfb59e8e2016-05-19 19:10:42 -0500298 help
299 During the device boot, the public ROM uses the top of
300 the public L3 OCMC RAM to store r/w data like stack,
301 heap, globals etc. When the ROM is copying the boot
302 image from the boot media into memory, the image must
303 not spill over into this area. This value can be used
304 during compile time to determine the maximum size of a
305 boot image. Once the ROM transfers control to the boot
306 image, this area is no longer used, and can be reclaimed
307 for run time use by the boot image.
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500308endif