blob: 0ddbffc7d1c6a2d8cec87d7b63e8913c6dacf8ac [file] [log] [blame]
Simon Glass1e3911a2016-09-13 07:05:23 -06001menu "SPL / TPL"
2
Simon Glassffe19762016-09-12 23:18:22 -06003config SUPPORT_SPL
4 bool
5
6config SUPPORT_TPL
7 bool
8
B, Ravi4cca5cf2017-05-04 15:45:29 +05309config SPL_DFU_NO_RESET
10 bool
11
Simon Glassffe19762016-09-12 23:18:22 -060012config SPL
13 bool
14 depends on SUPPORT_SPL
15 prompt "Enable SPL"
16 help
17 If you want to build SPL as well as the normal image, say Y.
18
Tom Rini623d67e2018-02-06 12:15:38 -050019config SPL_FRAMEWORK
20 bool "Support SPL based upon the common SPL framework"
21 depends on SPL
22 default y
23 help
24 Enable the SPL framework under common/spl/. This framework
25 supports MMC, NAND and YMODEM and other methods loading of U-Boot
26 and the Linux Kernel. If unsure, say Y.
27
Simon Glasse14f1a22018-11-15 18:44:09 -070028config HANDOFF
29 bool "Pass hand-off information from SPL to U-Boot proper"
30 depends on BLOBLIST
31 help
32 It is useful to be able to pass information from SPL to U-Boot
33 proper to preserve state that is known in SPL and is needed in U-Boot.
34 Enable this to locate the handoff information in U-Boot proper, early
35 in boot. It is available in gd->handoff. The state state is set up
36 in SPL (or TPL if that is being used).
37
Tom Rini3c82f982017-05-22 19:21:57 +000038if SPL
39
Simon Glasse14f1a22018-11-15 18:44:09 -070040config SPL_HANDOFF
41 bool "Pass hand-off information from SPL to U-Boot proper"
42 depends on HANDOFF
43 default y
44 help
45 This option enables SPL to write handoff information. This can be
46 used to pass information like the size of SDRAM from SPL to U-Boot
47 proper. Also SPL can receive information from TPL in the same place
48 if that is enabled.
49
Philipp Tomsichbe1c53a2017-07-28 19:20:49 +020050config SPL_LDSCRIPT
51 string "Linker script for the SPL stage"
52 default "arch/$(ARCH)/cpu/u-boot-spl.lds"
Philipp Tomsichbe1c53a2017-07-28 19:20:49 +020053 help
54 The SPL stage will usually require a different linker-script
55 (as it runs from a different memory region) than the regular
56 U-Boot stage. Set this to the path of the linker-script to
57 be used for SPL.
58
Ley Foon Tan48fcc4a2017-05-03 17:13:32 +080059config SPL_BOARD_INIT
Ley Foon Tan48fcc4a2017-05-03 17:13:32 +080060 bool "Call board-specific initialization in SPL"
61 help
62 If this option is enabled, U-Boot will call the function
63 spl_board_init() from board_init_r(). This function should be
64 provided by the board.
65
Philipp Tomsich83ad7022017-06-22 23:38:36 +020066config SPL_BOOTROM_SUPPORT
67 bool "Support returning to the BOOTROM"
68 help
69 Some platforms (e.g. the Rockchip RK3368) provide support in their
70 ROM for loading the next boot-stage after performing basic setup
71 from the SPL stage.
72
73 Enable this option, to return to the BOOTROM through the
74 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
75 boot device list, if not implemented for a given board)
76
Lukasz Majewski97c995d2018-05-02 16:10:50 +020077config SPL_BOOTCOUNT_LIMIT
78 bool "Support bootcount in SPL"
79 depends on SPL_ENV_SUPPORT
80 help
81 On some boards, which use 'falcon' mode, it is necessary to check
82 and increment the number of boot attempts. Such boards do not
83 use proper U-Boot for normal boot flow and hence needs those
84 adjustments to be done in the SPL.
85
Andrew F. Davisb4be3c32017-02-16 11:18:38 -060086config SPL_RAW_IMAGE_SUPPORT
87 bool "Support SPL loading and booting of RAW images"
Andrew F. Davisb4be3c32017-02-16 11:18:38 -060088 default n if (ARCH_MX6 && (SPL_MMC_SUPPORT || SPL_SATA_SUPPORT))
Andrew F. Davis1c97f1e2017-02-16 11:18:40 -060089 default y if !TI_SECURE_DEVICE
Andrew F. Davisb4be3c32017-02-16 11:18:38 -060090 help
91 SPL will support loading and booting a RAW image when this option
92 is y. If this is not set, SPL will move on to other available
93 boot media to find a suitable image.
94
Andrew F. Davis74630342017-02-16 11:18:39 -060095config SPL_LEGACY_IMAGE_SUPPORT
96 bool "Support SPL loading and booting of Legacy images"
Andrew F. Davis1c97f1e2017-02-16 11:18:40 -060097 default y if !TI_SECURE_DEVICE
Andrew F. Davis74630342017-02-16 11:18:39 -060098 help
99 SPL will support loading and booting Legacy images when this option
100 is y. If this is not set, SPL will move on to other available
101 boot media to find a suitable image.
102
Simon Glassffe19762016-09-12 23:18:22 -0600103config SPL_SYS_MALLOC_SIMPLE
104 bool
Simon Glassffe19762016-09-12 23:18:22 -0600105 prompt "Only use malloc_simple functions in the SPL"
106 help
107 Say Y here to only use the *_simple malloc functions from
108 malloc_simple.c, rather then using the versions from dlmalloc.c;
109 this will make the SPL binary smaller at the cost of more heap
110 usage as the *_simple malloc functions do not re-use free-ed mem.
111
Philipp Tomsich0c8e75c2017-06-30 18:57:25 +0200112config TPL_SYS_MALLOC_SIMPLE
113 bool
114 prompt "Only use malloc_simple functions in the TPL"
115 help
116 Say Y here to only use the *_simple malloc functions from
117 malloc_simple.c, rather then using the versions from dlmalloc.c;
118 this will make the TPL binary smaller at the cost of more heap
119 usage as the *_simple malloc functions do not re-use free-ed mem.
120
Simon Glassffe19762016-09-12 23:18:22 -0600121config SPL_STACK_R
Simon Glassffe19762016-09-12 23:18:22 -0600122 bool "Enable SDRAM location for SPL stack"
123 help
124 SPL starts off execution in SRAM and thus typically has only a small
125 stack available. Since SPL sets up DRAM while in its board_init_f()
126 function, it is possible for the stack to move there before
127 board_init_r() is reached. This option enables a special SDRAM
128 location for the SPL stack. U-Boot SPL switches to this after
129 board_init_f() completes, and before board_init_r() starts.
130
131config SPL_STACK_R_ADDR
132 depends on SPL_STACK_R
133 hex "SDRAM location for SPL stack"
Tom Rinic37e0cf2017-09-17 11:44:49 -0400134 default 0x82000000 if ARCH_OMAP2PLUS
Simon Glassffe19762016-09-12 23:18:22 -0600135 help
136 Specify the address in SDRAM for the SPL stack. This will be set up
137 before board_init_r() is called.
138
139config SPL_STACK_R_MALLOC_SIMPLE_LEN
140 depends on SPL_STACK_R && SPL_SYS_MALLOC_SIMPLE
141 hex "Size of malloc_simple heap after switching to DRAM SPL stack"
142 default 0x100000
143 help
144 Specify the amount of the stack to use as memory pool for
145 malloc_simple after switching the stack to DRAM. This may be set
146 to give board_init_r() a larger heap then the initial heap in
147 SRAM which is limited to SYS_MALLOC_F_LEN bytes.
148
149config SPL_SEPARATE_BSS
Simon Glassffe19762016-09-12 23:18:22 -0600150 bool "BSS section is in a different memory region from text"
151 help
152 Some platforms need a large BSS region in SPL and can provide this
153 because RAM is already set up. In this case BSS can be moved to RAM.
154 This option should then be enabled so that the correct device tree
155 location is used. Normally we put the device tree at the end of BSS
156 but with this option enabled, it goes at _image_binary_end.
157
Simon Glass6324cce2018-11-15 18:43:57 -0700158config SPL_BANNER_PRINT
159 bool "Enable output of the SPL banner 'U-Boot SPL ...'"
160 default y
161 help
162 If this option is enabled, SPL will print the banner with version
163 info. Disabling this option could be useful to reduce TPL boot time
164 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
165
166config TPL_BANNER_PRINT
167 bool "Enable output of the TPL banner 'U-Boot TPL ...'"
168 default y
Anatolij Gustschin6fe74d22018-01-25 18:45:22 +0100169 help
170 If this option is enabled, SPL will not print the banner with version
Simon Glass6324cce2018-11-15 18:43:57 -0700171 info. Disabling this option could be useful to reduce SPL boot time
172 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
Anatolij Gustschin6fe74d22018-01-25 18:45:22 +0100173
Simon Glassf481ab12016-09-24 18:19:56 -0600174config SPL_DISPLAY_PRINT
Simon Glassf481ab12016-09-24 18:19:56 -0600175 bool "Display a board-specific message in SPL"
176 help
177 If this option is enabled, U-Boot will call the function
178 spl_display_print() immediately after displaying the SPL console
179 banner ("U-Boot SPL ..."). This function should be provided by
180 the board.
181
Semen Protsenko7e3ba482016-11-16 19:19:05 +0200182config SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
183 bool "MMC raw mode: by sector"
Fabio Estevam22a1fab2018-06-11 15:08:05 -0300184 default y if ARCH_SUNXI || ARCH_DAVINCI || ARCH_UNIPHIER || \
185 ARCH_MX6 || ARCH_MX7 || \
Semen Protsenko7e3ba482016-11-16 19:19:05 +0200186 ARCH_ROCKCHIP || ARCH_MVEBU || ARCH_SOCFPGA || \
187 ARCH_AT91 || ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || \
188 OMAP44XX || OMAP54XX || AM33XX || AM43XX
189 help
190 Use sector number for specifying U-Boot location on MMC/SD in
191 raw mode.
192
193config SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR
194 hex "Address on the MMC to load U-Boot from"
Tom Rini3c82f982017-05-22 19:21:57 +0000195 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
Semen Protsenko7e3ba482016-11-16 19:19:05 +0200196 default 0x50 if ARCH_SUNXI
197 default 0x75 if ARCH_DAVINCI
Fabio Estevam22a1fab2018-06-11 15:08:05 -0300198 default 0x8a if ARCH_MX6 || ARCH_MX7
Kever Yang6cc131d2017-11-02 15:16:34 +0800199 default 0x100 if ARCH_UNIPHIER
Semen Protsenko7e3ba482016-11-16 19:19:05 +0200200 default 0x140 if ARCH_MVEBU
201 default 0x200 if ARCH_SOCFPGA || ARCH_AT91
202 default 0x300 if ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || OMAP44XX || \
Lokesh Vutla9bdec002018-08-27 15:57:08 +0530203 OMAP54XX || AM33XX || AM43XX || ARCH_K3
Kever Yang6cc131d2017-11-02 15:16:34 +0800204 default 0x4000 if ARCH_ROCKCHIP
Semen Protsenko7e3ba482016-11-16 19:19:05 +0200205 help
206 Address on the MMC to load U-Boot from, when the MMC is being used
207 in raw mode. Units: MMC sectors (1 sector = 512 bytes).
208
Dalon Westergreenf5ba9852017-02-10 17:15:35 -0800209config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
210 bool "MMC Raw mode: by partition"
Dalon Westergreenf5ba9852017-02-10 17:15:35 -0800211 help
212 Use a partition for loading U-Boot when using MMC/SD in raw mode.
213
214config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION
215 hex "Partition to use to load U-Boot from"
Tom Rini3c82f982017-05-22 19:21:57 +0000216 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreenf5ba9852017-02-10 17:15:35 -0800217 default 1
218 help
219 Partition on the MMC to load U-Boot from when the MMC is being
220 used in raw mode
221
Dalon Westergreen8d770f42017-02-10 17:15:34 -0800222config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
223 bool "MMC raw mode: by partition type"
Tom Rini3c82f982017-05-22 19:21:57 +0000224 depends on DOS_PARTITION && SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreen8d770f42017-02-10 17:15:34 -0800225 help
226 Use partition type for specifying U-Boot partition on MMC/SD in
227 raw mode. U-Boot will be loaded from the first partition of this
228 type to be found.
229
230config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_TYPE
231 hex "Partition Type on the MMC to load U-Boot from"
Tom Rini3c82f982017-05-22 19:21:57 +0000232 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
Dalon Westergreen8d770f42017-02-10 17:15:34 -0800233 help
234 Partition Type on the MMC to load U-Boot from, when the MMC is being
235 used in raw mode.
236
Simon Glass1e3911a2016-09-13 07:05:23 -0600237config SPL_CRC32_SUPPORT
238 bool "Support CRC32"
239 depends on SPL_FIT
240 help
241 Enable this to support CRC32 in FIT images within SPL. This is a
242 32-bit checksum value that can be used to verify images. This is
243 the least secure type of checksum, suitable for detected
244 accidental image corruption. For secure applications you should
245 consider SHA1 or SHA256.
246
247config SPL_MD5_SUPPORT
248 bool "Support MD5"
249 depends on SPL_FIT
250 help
251 Enable this to support MD5 in FIT images within SPL. An MD5
252 checksum is a 128-bit hash value used to check that the image
253 contents have not been corrupted. Note that MD5 is not considered
254 secure as it is possible (with a brute-force attack) to adjust the
255 image while still retaining the same MD5 hash value. For secure
256 applications where images may be changed maliciously, you should
257 consider SHA1 or SHA256.
258
259config SPL_SHA1_SUPPORT
260 bool "Support SHA1"
261 depends on SPL_FIT
Tom Rini5bdd9192017-05-15 12:17:49 -0400262 select SHA1
Simon Glass1e3911a2016-09-13 07:05:23 -0600263 help
264 Enable this to support SHA1 in FIT images within SPL. A SHA1
265 checksum is a 160-bit (20-byte) hash value used to check that the
266 image contents have not been corrupted or maliciously altered.
267 While SHA1 is fairly secure it is coming to the end of its life
268 due to the expanding computing power avaiable to brute-force
269 attacks. For more security, consider SHA256.
270
271config SPL_SHA256_SUPPORT
272 bool "Support SHA256"
273 depends on SPL_FIT
Tom Rini5bdd9192017-05-15 12:17:49 -0400274 select SHA256
Simon Glass1e3911a2016-09-13 07:05:23 -0600275 help
276 Enable this to support SHA256 in FIT images within SPL. A SHA256
277 checksum is a 256-bit (32-byte) hash value used to check that the
278 image contents have not been corrupted. SHA256 is recommended for
279 use in secure applications since (as at 2016) there is no known
280 feasible attack that could produce a 'collision' with differing
281 input data. Use this for the highest security. Note that only the
282 SHA256 variant is supported: SHA512 and others are not currently
283 supported in U-Boot.
284
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100285config SPL_FIT_IMAGE_TINY
286 bool "Remove functionality from SPL FIT loading to reduce size"
287 depends on SPL_FIT
Icenowy Zheng0c01b962018-07-21 16:20:31 +0800288 default y if MACH_SUN50I || MACH_SUN50I_H5 || MACH_SUN50I_H6
Philipp Tomsich4faa0112017-11-24 13:26:03 +0100289 help
290 Enable this to reduce the size of the FIT image loading code
291 in SPL, if space for the SPL binary is very tight.
292
293 This removes the detection of image types (which forces the
294 first image to be treated as having a U-Boot style calling
295 convention) and skips the recording of each loaded payload
296 (i.e. loadable) into the FDT (modifying the loaded FDT to
297 ensure this information is available to the next image
298 invoked).
299
Simon Glasseca677f2017-01-16 07:03:29 -0700300config SPL_CPU_SUPPORT
301 bool "Support CPU drivers"
Simon Glasseca677f2017-01-16 07:03:29 -0700302 help
303 Enable this to support CPU drivers in SPL. These drivers can set
304 up CPUs and provide information about them such as the model and
305 name. This can be useful in SPL since setting up the CPUs earlier
306 may improve boot performance. Enable this option to build the
307 drivers in drivers/cpu as part of an SPL build.
308
Simon Glass1e3911a2016-09-13 07:05:23 -0600309config SPL_CRYPTO_SUPPORT
310 bool "Support crypto drivers"
Simon Glass1e3911a2016-09-13 07:05:23 -0600311 help
312 Enable crypto drivers in SPL. These drivers can be used to
313 accelerate secure boot processing in secure applications. Enable
314 this option to build the drivers in drivers/crypto as part of an
315 SPL build.
316
317config SPL_HASH_SUPPORT
318 bool "Support hashing drivers"
Tom Rini5bdd9192017-05-15 12:17:49 -0400319 select SHA1
320 select SHA256
Simon Glass1e3911a2016-09-13 07:05:23 -0600321 help
322 Enable hashing drivers in SPL. These drivers can be used to
323 accelerate secure boot processing in secure applications. Enable
324 this option to build system-specific drivers for hash acceleration
325 as part of an SPL build.
326
Simon Glass592d5b92018-11-15 18:43:55 -0700327config TPL_HASH_SUPPORT
328 bool "Support hashing drivers in TPL"
329 select SHA1
330 select SHA256
331 help
332 Enable hashing drivers in SPL. These drivers can be used to
333 accelerate secure boot processing in secure applications. Enable
334 this option to build system-specific drivers for hash acceleration
335 as part of an SPL build.
336
Simon Glass1e3911a2016-09-13 07:05:23 -0600337config SPL_DMA_SUPPORT
338 bool "Support DMA drivers"
Simon Glass1e3911a2016-09-13 07:05:23 -0600339 help
340 Enable DMA (direct-memory-access) drivers in SPL. These drivers
341 can be used to handle memory-to-peripheral data transfer without
342 the CPU moving the data. Enable this option to build the drivers
343 in drivers/dma as part of an SPL build.
344
345config SPL_DRIVERS_MISC_SUPPORT
346 bool "Support misc drivers"
Simon Glass1e3911a2016-09-13 07:05:23 -0600347 help
348 Enable miscellaneous drivers in SPL. These drivers perform various
349 tasks that don't fall nicely into other categories, Enable this
350 option to build the drivers in drivers/misc as part of an SPL
351 build, for those that support building in SPL (not all drivers do).
352
353config SPL_ENV_SUPPORT
354 bool "Support an environment"
Simon Glass1e3911a2016-09-13 07:05:23 -0600355 help
356 Enable environment support in SPL. The U-Boot environment provides
357 a number of settings (essentially name/value pairs) which can
358 control many aspects of U-Boot's operation. Normally this is not
359 needed in SPL as it has a much simpler task with less
360 configuration. But some boards use this to support 'Falcon' boot
361 on EXT2 and FAT, where SPL boots directly into Linux without
Simon Glass64b723f2017-08-03 12:22:12 -0600362 starting U-Boot first. Enabling this option will make env_get()
Simon Glass6a38e412017-08-03 12:22:09 -0600363 and env_set() available in SPL.
Simon Glass1e3911a2016-09-13 07:05:23 -0600364
B, Ravie94b0242016-09-28 14:46:18 +0530365config SPL_SAVEENV
366 bool "Support save environment"
Tom Rini3c82f982017-05-22 19:21:57 +0000367 depends on SPL_ENV_SUPPORT
Jean-Jacques Hiblotd0531672018-01-04 15:23:32 +0100368 select SPL_MMC_WRITE if ENV_IS_IN_MMC
B, Ravie94b0242016-09-28 14:46:18 +0530369 help
370 Enable save environment support in SPL after setenv. By default
371 the saveenv option is not provided in SPL, but some boards need
372 this support in 'Falcon' boot, where SPL need to boot from
373 different images based on environment variable set by OS. For
374 example OS may set "reboot_image" environment variable to
375 "recovery" inorder to boot recovery image by SPL. The SPL read
376 "reboot_image" and act accordingly and change the reboot_image
Shyam Sainiefe757c2018-06-07 19:47:19 +0530377 to default mode using setenv and save the environment.
B, Ravie94b0242016-09-28 14:46:18 +0530378
Simon Glass1e3911a2016-09-13 07:05:23 -0600379config SPL_ETH_SUPPORT
380 bool "Support Ethernet"
381 depends on SPL_ENV_SUPPORT
382 help
383 Enable access to the network subsystem and associated Ethernet
384 drivers in SPL. This permits SPL to load U-Boot over an Ethernet
385 link rather than from an on-board peripheral. Environment support
386 is required since the network stack uses a number of environment
387 variables. See also SPL_NET_SUPPORT.
388
389config SPL_EXT_SUPPORT
390 bool "Support EXT filesystems"
Simon Glass1e3911a2016-09-13 07:05:23 -0600391 help
392 Enable support for EXT2/3/4 filesystems with SPL. This permits
393 U-Boot (or Linux in Falcon mode) to be loaded from an EXT
394 filesystem from within SPL. Support for the underlying block
395 device (e.g. MMC or USB) must be enabled separately.
396
397config SPL_FAT_SUPPORT
398 bool "Support FAT filesystems"
Sekhar Nori1909a7b2017-06-02 17:53:59 +0530399 select FS_FAT
Simon Glass1e3911a2016-09-13 07:05:23 -0600400 help
401 Enable support for FAT and VFAT filesystems with SPL. This
402 permits U-Boot (or Linux in Falcon mode) to be loaded from a FAT
403 filesystem from within SPL. Support for the underlying block
404 device (e.g. MMC or USB) must be enabled separately.
405
406config SPL_FPGA_SUPPORT
407 bool "Support FPGAs"
Simon Glass1e3911a2016-09-13 07:05:23 -0600408 help
409 Enable support for FPGAs in SPL. Field-programmable Gate Arrays
410 provide software-configurable hardware which is typically used to
411 implement peripherals (such as UARTs, LCD displays, MMC) or
412 accelerate custom processing functions, such as image processing
413 or machine learning. Sometimes it is useful to program the FPGA
414 as early as possible during boot, and this option can enable that
415 within SPL.
416
417config SPL_GPIO_SUPPORT
Simon Glass592d5b92018-11-15 18:43:55 -0700418 bool "Support GPIO in SPL"
Simon Glass1e3911a2016-09-13 07:05:23 -0600419 help
420 Enable support for GPIOs (General-purpose Input/Output) in SPL.
421 GPIOs allow U-Boot to read the state of an input line (high or
422 low) and set the state of an output line. This can be used to
423 drive LEDs, control power to various system parts and read user
424 input. GPIOs can be useful in SPL to enable a 'sign-of-life' LED,
425 for example. Enable this option to build the drivers in
426 drivers/gpio as part of an SPL build.
427
428config SPL_I2C_SUPPORT
429 bool "Support I2C"
Simon Glass1e3911a2016-09-13 07:05:23 -0600430 help
431 Enable support for the I2C (Inter-Integrated Circuit) bus in SPL.
432 I2C works with a clock and data line which can be driven by a
433 one or more masters or slaves. It is a fairly complex bus but is
434 widely used as it only needs two lines for communication. Speeds of
435 400kbps are typical but up to 3.4Mbps is supported by some
436 hardware. I2C can be useful in SPL to configure power management
437 ICs (PMICs) before raising the CPU clock speed, for example.
438 Enable this option to build the drivers in drivers/i2c as part of
439 an SPL build.
440
441config SPL_LIBCOMMON_SUPPORT
442 bool "Support common libraries"
Simon Glass1e3911a2016-09-13 07:05:23 -0600443 help
444 Enable support for common U-Boot libraries within SPL. These
445 libraries include common code to deal with U-Boot images,
446 environment and USB, for example. This option is enabled on many
447 boards. Enable this option to build the code in common/ as part of
448 an SPL build.
449
450config SPL_LIBDISK_SUPPORT
Simon Goldschmidt62067052018-08-16 09:44:55 +0200451 bool "Support disk partitions"
Simon Glass1e3911a2016-09-13 07:05:23 -0600452 help
453 Enable support for disk partitions within SPL. 'Disk' is something
454 of a misnomer as it includes non-spinning media such as flash (as
455 used in MMC and USB sticks). Partitions provide a way for a disk
456 to be split up into separate regions, with a partition table placed
457 at the start or end which describes the location and size of each
458 'partition'. These partitions are typically uses as individual block
459 devices, typically with an EXT2 or FAT filesystem in each. This
460 option enables whatever partition support has been enabled in
461 U-Boot to also be used in SPL. It brings in the code in disk/.
462
463config SPL_LIBGENERIC_SUPPORT
464 bool "Support generic libraries"
Simon Glass1e3911a2016-09-13 07:05:23 -0600465 help
466 Enable support for generic U-Boot libraries within SPL. These
467 libraries include generic code to deal with device tree, hashing,
468 printf(), compression and the like. This option is enabled on many
469 boards. Enable this option to build the code in lib/ as part of an
470 SPL build.
471
Lokesh Vutla2aeb9342018-08-27 15:57:49 +0530472config SPL_DM_MAILBOX
473 bool "Support Mailbox"
474 help
475 Enable support for Mailbox within SPL. This enable the inter
476 processor communication protocols tobe used within SPL. Enable
477 this option to build the drivers in drivers/mailbox as part of
478 SPL build.
479
Simon Glass1e3911a2016-09-13 07:05:23 -0600480config SPL_MMC_SUPPORT
481 bool "Support MMC"
Tom Rini3c82f982017-05-22 19:21:57 +0000482 depends on MMC
Simon Glass1e3911a2016-09-13 07:05:23 -0600483 help
484 Enable support for MMC (Multimedia Card) within SPL. This enables
485 the MMC protocol implementation and allows any enabled drivers to
486 be used within SPL. MMC can be used with or without disk partition
487 support depending on the application (SPL_LIBDISK_SUPPORT). Enable
488 this option to build the drivers in drivers/mmc as part of an SPL
489 build.
490
Jean-Jacques Hiblotd0531672018-01-04 15:23:32 +0100491config SPL_MMC_WRITE
492 bool "MMC/SD/SDIO card support for write operations in SPL"
493 depends on SPL_MMC_SUPPORT
494 default n
495 help
496 Enable write access to MMC and SD Cards in SPL
497
498
Simon Glass1e3911a2016-09-13 07:05:23 -0600499config SPL_MPC8XXX_INIT_DDR_SUPPORT
500 bool "Support MPC8XXX DDR init"
Simon Glass1e3911a2016-09-13 07:05:23 -0600501 help
502 Enable support for DDR-SDRAM (double-data-rate synchronous dynamic
503 random-access memory) on the MPC8XXX family within SPL. This
504 allows DRAM to be set up before loading U-Boot into that DRAM,
505 where it can run.
506
507config SPL_MTD_SUPPORT
508 bool "Support MTD drivers"
Simon Glass1e3911a2016-09-13 07:05:23 -0600509 help
510 Enable support for MTD (Memory Technology Device) within SPL. MTD
511 provides a block interface over raw NAND and can also be used with
512 SPI flash. This allows SPL to load U-Boot from supported MTD
513 devices. See SPL_NAND_SUPPORT and SPL_ONENAND_SUPPORT for how
514 to enable specific MTD drivers.
515
516config SPL_MUSB_NEW_SUPPORT
517 bool "Support new Mentor Graphics USB"
Simon Glass1e3911a2016-09-13 07:05:23 -0600518 help
519 Enable support for Mentor Graphics USB in SPL. This is a new
520 driver used by some boards. Enable this option to build
521 the drivers in drivers/usb/musb-new as part of an SPL build. The
522 old drivers are in drivers/usb/musb.
523
524config SPL_NAND_SUPPORT
525 bool "Support NAND flash"
Simon Glass1e3911a2016-09-13 07:05:23 -0600526 help
527 Enable support for NAND (Negative AND) flash in SPL. NAND flash
528 can be used to allow SPL to load U-Boot from supported devices.
Miquel Raynal1f1ae152018-08-16 17:30:07 +0200529 This enables the drivers in drivers/mtd/nand/raw as part of an SPL
Simon Glass1e3911a2016-09-13 07:05:23 -0600530 build.
531
532config SPL_NET_SUPPORT
533 bool "Support networking"
Simon Glass1e3911a2016-09-13 07:05:23 -0600534 help
535 Enable support for network devices (such as Ethernet) in SPL.
536 This permits SPL to load U-Boot over a network link rather than
537 from an on-board peripheral. Environment support is required since
538 the network stack uses a number of environment variables. See also
539 SPL_ETH_SUPPORT.
540
541if SPL_NET_SUPPORT
542config SPL_NET_VCI_STRING
543 string "BOOTP Vendor Class Identifier string sent by SPL"
544 help
545 As defined by RFC 2132 the vendor class identifier field can be
546 sent by the client to identify the vendor type and configuration
547 of a client. This is often used in practice to allow for the DHCP
548 server to specify different files to load depending on if the ROM,
549 SPL or U-Boot itself makes the request
550endif # if SPL_NET_SUPPORT
551
552config SPL_NO_CPU_SUPPORT
553 bool "Drop CPU code in SPL"
Simon Glass1e3911a2016-09-13 07:05:23 -0600554 help
555 This is specific to the ARM926EJ-S CPU. It disables the standard
556 start.S start-up code, presumably so that a replacement can be
557 used on that CPU. You should not enable it unless you know what
558 you are doing.
559
560config SPL_NOR_SUPPORT
561 bool "Support NOR flash"
Simon Glass1e3911a2016-09-13 07:05:23 -0600562 help
563 Enable support for loading U-Boot from memory-mapped NOR (Negative
564 OR) flash in SPL. NOR flash is slow to write but fast to read, and
565 a memory-mapped device makes it very easy to access. Loading from
566 NOR is typically achieved with just a memcpy().
567
Vikas Manocha9e582652017-05-28 12:55:11 -0700568config SPL_XIP_SUPPORT
569 bool "Support XIP"
570 depends on SPL
571 help
572 Enable support for execute in place of U-Boot or kernel image. There
573 is no need to copy image from flash to ram if flash supports execute
574 in place. Its very useful in systems having enough flash but not
575 enough ram to load the image.
576
Simon Glass1e3911a2016-09-13 07:05:23 -0600577config SPL_ONENAND_SUPPORT
578 bool "Support OneNAND flash"
Simon Glass1e3911a2016-09-13 07:05:23 -0600579 help
580 Enable support for OneNAND (Negative AND) flash in SPL. OneNAND is
581 a type of NAND flash and therefore can be used to allow SPL to
582 load U-Boot from supported devices. This enables the drivers in
583 drivers/mtd/onenand as part of an SPL build.
584
Heiko Schocher1d12ba22016-10-06 07:55:15 +0200585config SPL_OS_BOOT
586 bool "Activate Falcon Mode"
Tom Rini3c82f982017-05-22 19:21:57 +0000587 depends on !TI_SECURE_DEVICE
Heiko Schocher1d12ba22016-10-06 07:55:15 +0200588 default n
589 help
590 Enable booting directly to an OS from SPL.
591 for more info read doc/README.falcon
592
Heiko Schocher65928932016-10-06 07:55:16 +0200593if SPL_OS_BOOT
594config SYS_OS_BASE
595 hex "addr, where OS is found"
Tom Rini3c82f982017-05-22 19:21:57 +0000596 depends on SPL_NOR_SUPPORT
Heiko Schocher65928932016-10-06 07:55:16 +0200597 help
598 Specify the address, where the OS image is found, which
599 gets booted.
600
601endif # SPL_OS_BOOT
602
York Sun53492672018-06-14 14:38:48 -0700603config SPL_PAYLOAD
604 string "SPL payload"
605 default "tpl/u-boot-with-tpl.bin" if TPL
606 default "u-boot.bin"
607 help
608 Payload for SPL boot. For backward compability, default to
609 u-boot.bin, i.e. RAW image without any header. In case of
610 TPL, tpl/u-boot-with-tpl.bin. For new boards, suggest to
611 use u-boot.img.
612
Simon Glass6569f3a2017-01-16 07:03:30 -0700613config SPL_PCI_SUPPORT
614 bool "Support PCI drivers"
Simon Glass6569f3a2017-01-16 07:03:30 -0700615 help
616 Enable support for PCI in SPL. For platforms that need PCI to boot,
617 or must perform some init using PCI in SPL, this provides the
618 necessary driver support. This enables the drivers in drivers/pci
619 as part of an SPL build.
620
Simon Glass36258a52017-01-16 07:03:33 -0700621config SPL_PCH_SUPPORT
622 bool "Support PCH drivers"
Simon Glass36258a52017-01-16 07:03:33 -0700623 help
624 Enable support for PCH (Platform Controller Hub) devices in SPL.
625 These are used to set up GPIOs and the SPI peripheral early in
626 boot. This enables the drivers in drivers/pch as part of an SPL
627 build.
628
Simon Glass1e3911a2016-09-13 07:05:23 -0600629config SPL_POST_MEM_SUPPORT
630 bool "Support POST drivers"
Simon Glass1e3911a2016-09-13 07:05:23 -0600631 help
632 Enable support for POST (Power-on Self Test) in SPL. POST is a
633 procedure that checks that the hardware (CPU or board) appears to
634 be functionally correctly. It is a sanity check that can be
635 performed before booting. This enables the drivers in post/drivers
636 as part of an SPL build.
637
Ley Foon Tan9caf7122018-06-14 18:45:19 +0800638config SPL_DM_RESET
Patrick Delaunay329827a2018-03-12 10:46:05 +0100639 bool "Support reset drivers"
640 depends on SPL
641 help
642 Enable support for reset control in SPL.
643 That can be useful in SPL to handle IP reset in driver, as in U-Boot,
644 by using the generic reset API provided by driver model.
645 This enables the drivers in drivers/reset as part of an SPL build.
646
Simon Glass1e3911a2016-09-13 07:05:23 -0600647config SPL_POWER_SUPPORT
648 bool "Support power drivers"
Simon Glass1e3911a2016-09-13 07:05:23 -0600649 help
650 Enable support for power control in SPL. This includes support
651 for PMICs (Power-management Integrated Circuits) and some of the
652 features provided by PMICs. In particular, voltage regulators can
653 be used to enable/disable power and vary its voltage. That can be
654 useful in SPL to turn on boot peripherals and adjust CPU voltage
655 so that the clock speed can be increased. This enables the drivers
656 in drivers/power, drivers/power/pmic and drivers/power/regulator
657 as part of an SPL build.
658
Peng Fan3775fed2018-07-27 10:20:37 +0800659config SPL_POWER_DOMAIN
660 bool "Support power domain drivers"
661 help
662 Enable support for power domain control in SPL. Many SoCs allow
663 power to be applied to or removed from portions of the SoC (power
664 domains). This may be used to save power. This API provides the
665 means to control such power management hardware. This enables
666 the drivers in drivers/power/domain as part of a SPL build.
667
Stefan Agnercd01e642016-12-23 07:51:53 +0100668config SPL_RAM_SUPPORT
669 bool "Support booting from RAM"
Stefan Agnercd01e642016-12-23 07:51:53 +0100670 default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ
671 help
672 Enable booting of an image in RAM. The image can be preloaded or
673 it can be loaded by SPL directly into RAM (e.g. using USB).
674
Stefan Agnere2eaac12016-12-23 07:51:52 +0100675config SPL_RAM_DEVICE
676 bool "Support booting from preloaded image in RAM"
Stefan Agnercd01e642016-12-23 07:51:53 +0100677 depends on SPL_RAM_SUPPORT
Stefan Agnere2eaac12016-12-23 07:51:52 +0100678 default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ
679 help
680 Enable booting of an image already loaded in RAM. The image has to
681 be already in memory when SPL takes over, e.g. loaded by the boot
682 ROM.
683
Lokesh Vutla1a6f8e02018-08-27 15:57:53 +0530684config SPL_REMOTEPROC
685 bool "Support REMOTEPROCS"
686 help
687 Enable support for REMOTEPROCs in SPL. This permits to load
688 a remote processor firmware in SPL.
689
Simon Glassb69691b2017-01-16 07:03:31 -0700690config SPL_RTC_SUPPORT
691 bool "Support RTC drivers"
Simon Glassb69691b2017-01-16 07:03:31 -0700692 help
693 Enable RTC (Real-time Clock) support in SPL. This includes support
694 for reading and setting the time. Some RTC devices also have some
695 non-volatile (battery-backed) memory which is accessible if
696 needed. This enables the drivers in drivers/rtc as part of an SPL
697 build.
698
Simon Glass1e3911a2016-09-13 07:05:23 -0600699config SPL_SATA_SUPPORT
700 bool "Support loading from SATA"
Simon Glass1e3911a2016-09-13 07:05:23 -0600701 help
702 Enable support for SATA (Serial AT attachment) in SPL. This allows
703 use of SATA devices such as hard drives and flash drivers for
704 loading U-Boot. SATA is used in higher-end embedded systems and
705 can provide higher performance than MMC , at somewhat higher
706 expense and power consumption. This enables loading from SATA
707 using a configured device.
708
709config SPL_SERIAL_SUPPORT
710 bool "Support serial"
Alex Kiernan5b404282018-04-19 04:32:54 +0000711 select SPL_PRINTF
712 select SPL_STRTO
Simon Glass1e3911a2016-09-13 07:05:23 -0600713 help
714 Enable support for serial in SPL. This allows use of a serial UART
715 for displaying messages while SPL is running. It also brings in
716 printf() and panic() functions. This should normally be enabled
717 unless there are space reasons not to. Even then, consider
718 enabling USE_TINY_PRINTF which is a small printf() version.
719
720config SPL_SPI_FLASH_SUPPORT
721 bool "Support SPI flash drivers"
Simon Glass1e3911a2016-09-13 07:05:23 -0600722 help
723 Enable support for using SPI flash in SPL, and loading U-Boot from
724 SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
725 the SPI bus that is used to connect it to a system. It is a simple
726 but fast bidirectional 4-wire bus (clock, chip select and two data
727 lines). This enables the drivers in drivers/mtd/spi as part of an
728 SPL build. This normally requires SPL_SPI_SUPPORT.
729
Marek Vasute2542252018-04-07 16:05:27 +0200730config SPL_SPI_LOAD
731 bool "Support loading from SPI flash"
732 depends on SPL_SPI_FLASH_SUPPORT
733 help
734 Enable support for loading next stage, U-Boot or otherwise, from
735 SPI NOR in U-Boot SPL.
736
Simon Glass1e3911a2016-09-13 07:05:23 -0600737config SPL_SPI_SUPPORT
738 bool "Support SPI drivers"
Simon Glass1e3911a2016-09-13 07:05:23 -0600739 help
740 Enable support for using SPI in SPL. This is used for connecting
741 to SPI flash for loading U-Boot. See SPL_SPI_FLASH_SUPPORT for
742 more details on that. The SPI driver provides the transport for
743 data between the SPI flash and the CPU. This option can be used to
744 enable SPI drivers that are needed for other purposes also, such
745 as a SPI PMIC.
746
Faiz Abbasae1627c2017-11-14 16:12:31 +0530747config SPL_THERMAL
748 bool "Driver support for thermal devices"
749 help
750 Enable support for temperature-sensing devices. Some SoCs have on-chip
751 temperature sensors to permit warnings, speed throttling or even
752 automatic power-off when the temperature gets too high or low. Other
753 devices may be discrete but connected on a suitable bus.
754
Simon Glass1e3911a2016-09-13 07:05:23 -0600755config SPL_USB_HOST_SUPPORT
756 bool "Support USB host drivers"
Simon Glass1e3911a2016-09-13 07:05:23 -0600757 help
758 Enable access to USB (Universal Serial Bus) host devices so that
759 SPL can load U-Boot from a connected USB peripheral, such as a USB
760 flash stick. While USB takes a little longer to start up than most
761 buses, it is very flexible since many different types of storage
762 device can be attached. This option enables the drivers in
763 drivers/usb/host as part of an SPL build.
764
765config SPL_USB_SUPPORT
766 bool "Support loading from USB"
767 depends on SPL_USB_HOST_SUPPORT
768 help
769 Enable support for USB devices in SPL. This allows use of USB
770 devices such as hard drives and flash drivers for loading U-Boot.
771 The actual drivers are enabled separately using the normal U-Boot
772 config options. This enables loading from USB using a configured
773 device.
774
Stefan Agner0489c3b2016-11-21 10:58:53 -0800775config SPL_USB_GADGET_SUPPORT
776 bool "Suppport USB Gadget drivers"
Stefan Agner0489c3b2016-11-21 10:58:53 -0800777 help
778 Enable USB Gadget API which allows to enable USB device functions
779 in SPL.
780
781if SPL_USB_GADGET_SUPPORT
782
Faiz Abbasc01553b2018-02-16 21:17:44 +0530783config SPL_USB_ETHER
Stefan Agner0489c3b2016-11-21 10:58:53 -0800784 bool "Support USB Ethernet drivers"
785 help
786 Enable access to the USB network subsystem and associated
787 drivers in SPL. This permits SPL to load U-Boot over a
788 USB-connected Ethernet link (such as a USB Ethernet dongle) rather
789 than from an onboard peripheral. Environment support is required
790 since the network stack uses a number of environment variables.
791 See also SPL_NET_SUPPORT and SPL_ETH_SUPPORT.
792
Stefan Agnere542edd2016-11-21 10:58:52 -0800793config SPL_DFU_SUPPORT
Fabio Estevam96bdff52018-08-31 10:02:28 -0300794 bool "Support DFU (Device Firmware Upgrade)"
Stefan Agnere542edd2016-11-21 10:58:52 -0800795 select SPL_HASH_SUPPORT
B, Ravi4cca5cf2017-05-04 15:45:29 +0530796 select SPL_DFU_NO_RESET
B, Ravi7e0c0ea2017-05-04 15:45:28 +0530797 depends on SPL_RAM_SUPPORT
Stefan Agnere542edd2016-11-21 10:58:52 -0800798 help
Fabio Estevam96bdff52018-08-31 10:02:28 -0300799 This feature enables the DFU (Device Firmware Upgrade) in SPL with
Stefan Agnere542edd2016-11-21 10:58:52 -0800800 RAM memory device support. The ROM code will load and execute
801 the SPL built with dfu. The user can load binaries (u-boot/kernel) to
802 selected device partition from host-pc using dfu-utils.
803 This feature is useful to flash the binaries to factory or bare-metal
804 boards using USB interface.
805
806choice
807 bool "DFU device selection"
808 depends on SPL_DFU_SUPPORT
809
810config SPL_DFU_RAM
811 bool "RAM device"
Stefan Agnercd01e642016-12-23 07:51:53 +0100812 depends on SPL_DFU_SUPPORT && SPL_RAM_SUPPORT
Stefan Agnere542edd2016-11-21 10:58:52 -0800813 help
814 select RAM/DDR memory device for loading binary images
815 (u-boot/kernel) to the selected device partition using
816 DFU and execute the u-boot/kernel from RAM.
817
818endchoice
819
Stefan Agnerd0d9d212017-08-16 11:00:54 -0700820config SPL_USB_SDP_SUPPORT
821 bool "Support SDP (Serial Download Protocol)"
822 help
823 Enable Serial Download Protocol (SDP) device support in SPL. This
824 allows to download images into memory and execute (jump to) them
825 using the same protocol as implemented by the i.MX family's boot ROM.
Stefan Agner0489c3b2016-11-21 10:58:53 -0800826endif
827
Simon Glass1e3911a2016-09-13 07:05:23 -0600828config SPL_WATCHDOG_SUPPORT
829 bool "Support watchdog drivers"
Simon Glass1e3911a2016-09-13 07:05:23 -0600830 help
831 Enable support for watchdog drivers in SPL. A watchdog is
832 typically a hardware peripheral which can reset the system when it
833 detects no activity for a while (such as a software crash). This
834 enables the drivers in drivers/watchdog as part of an SPL build.
835
836config SPL_YMODEM_SUPPORT
837 bool "Support loading using Ymodem"
Alex Kiernan44ad5502018-04-19 04:32:52 +0000838 depends on SPL_SERIAL_SUPPORT
Simon Glass1e3911a2016-09-13 07:05:23 -0600839 help
840 While loading from serial is slow it can be a useful backup when
841 there is no other option. The Ymodem protocol provides a reliable
842 means of transmitting U-Boot over a serial line for using in SPL,
843 with a checksum to ensure correctness.
844
Philipp Tomsichf6618812017-09-13 21:29:36 +0200845config SPL_ATF
Kever Yang6e79a912017-05-05 11:47:45 +0800846 bool "Support ARM Trusted Firmware"
Tom Rini3c82f982017-05-22 19:21:57 +0000847 depends on ARM64
Kever Yang6e79a912017-05-05 11:47:45 +0800848 help
Philipp Tomsichc4078af2018-01-02 21:16:43 +0100849 ATF(ARM Trusted Firmware) is a component for ARM AArch64 which
850 is loaded by SPL (which is considered as BL2 in ATF terminology).
Kever Yang6e79a912017-05-05 11:47:45 +0800851 More detail at: https://github.com/ARM-software/arm-trusted-firmware
852
Philipp Tomsichc4078af2018-01-02 21:16:43 +0100853config SPL_ATF_NO_PLATFORM_PARAM
854 bool "Pass no platform parameter"
855 depends on SPL_ATF
856 help
857 While we expect to call a pointer to a valid FDT (or NULL)
858 as the platform parameter to an ATF, some ATF versions are
859 not U-Boot aware and have an insufficiently robust parameter
860 validation to gracefully reject a FDT being passed.
861
862 If this option is enabled, the spl_atf os-type handler will
863 always pass NULL for the platform parameter.
864
865 If your ATF is affected, say Y.
866
Alex Kiernan10238ef2018-03-15 22:11:46 +0000867config SPL_AM33XX_ENABLE_RTC32K_OSC
868 bool "Enable the RTC32K OSC on AM33xx based platforms"
869 default y if AM33XX
870 help
871 Enable access to the AM33xx RTC and select the external 32kHz clock
872 source.
873
Kever Yanga28d42c2018-08-23 17:17:59 +0800874config SPL_OPTEE
875 bool "Support OP-TEE Trusted OS"
876 depends on ARM
877 help
878 OP-TEE is an open source Trusted OS which is loaded by SPL.
879 More detail at: https://github.com/OP-TEE/optee_os
880
Tom Rini3c82f982017-05-22 19:21:57 +0000881config TPL
882 bool
883 depends on SUPPORT_TPL
884 prompt "Enable TPL"
885 help
886 If you want to build TPL as well as the normal image and SPL, say Y.
887
888if TPL
889
Simon Glasse14f1a22018-11-15 18:44:09 -0700890config TPL_HANDOFF
891 bool "Pass hand-off information from TPL to SPL and U-Boot proper"
892 depends on HANDOFF
893 default y
894 help
895 This option enables TPL to write handoff information. This can be
896 used to pass information like the size of SDRAM from TPL to U-Boot
897 proper. The information is also available to SPL if it is useful
898 there.
899
Kever Yang2b5994b2018-01-20 18:00:26 +0800900config TPL_BOARD_INIT
901 bool "Call board-specific initialization in TPL"
902 help
903 If this option is enabled, U-Boot will call the function
904 spl_board_init() from board_init_r(). This function should be
905 provided by the board.
906
Philipp Tomsichbe1c53a2017-07-28 19:20:49 +0200907config TPL_LDSCRIPT
908 string "Linker script for the TPL stage"
909 depends on TPL
910 help
911 The TPL stage will usually require a different linker-script
912 (as it runs from a different memory region) than the regular
913 U-Boot stage. Set this to the path of the linker-script to
914 be used for TPL.
915
Philipp Tomsichdeff59a2017-07-28 20:02:34 +0200916 May be left empty to trigger the Makefile infrastructure to
917 fall back to the linker-script used for the SPL stage.
918
919config TPL_NEEDS_SEPARATE_TEXT_BASE
920 bool "TPL needs a separate text-base"
921 default n
922 depends on TPL
923 help
924 Enable, if the TPL stage should not inherit its text-base
925 from the SPL stage. When enabled, a base address for the
926 .text sections of the TPL stage has to be set below.
927
928config TPL_NEEDS_SEPARATE_STACK
929 bool "TPL needs a separate initial stack-pointer"
930 default n
931 depends on TPL
932 help
933 Enable, if the TPL stage should not inherit its initial
934 stack-pointer from the settings for the SPL stage.
935
936config TPL_TEXT_BASE
937 hex "Base address for the .text section of the TPL stage"
938 depends on TPL_NEEDS_SEPARATE_TEXT_BASE
939 help
940 The base address for the .text section of the TPL stage.
941
942config TPL_MAX_SIZE
943 int "Maximum size (in bytes) for the TPL stage"
Philipp Tomsich7d1319b2017-07-28 20:20:41 +0200944 default 0
Philipp Tomsichdeff59a2017-07-28 20:02:34 +0200945 depends on TPL
946 help
947 The maximum size (in bytes) of the TPL stage.
948
949config TPL_STACK
950 hex "Address of the initial stack-pointer for the TPL stage"
951 depends on TPL_NEEDS_SEPARATE_STACK
952 help
953 The address of the initial stack-pointer for the TPL stage.
954 Usually this will be the (aligned) top-of-stack.
955
Philipp Tomsich2706fb12017-07-04 14:24:53 +0200956config TPL_BOOTROM_SUPPORT
957 bool "Support returning to the BOOTROM (from TPL)"
958 help
959 Some platforms (e.g. the Rockchip RK3368) provide support in their
960 ROM for loading the next boot-stage after performing basic setup
961 from the TPL stage.
962
963 Enable this option, to return to the BOOTROM through the
964 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
965 boot device list, if not implemented for a given board)
966
Philipp Tomsich0e221882017-07-04 14:27:02 +0200967config TPL_DRIVERS_MISC_SUPPORT
968 bool "Support misc drivers in TPL"
969 help
970 Enable miscellaneous drivers in TPL. These drivers perform various
971 tasks that don't fall nicely into other categories, Enable this
972 option to build the drivers in drivers/misc as part of an TPL
973 build, for those that support building in TPL (not all drivers do).
974
Simon Glass688be332016-09-12 23:18:27 -0600975config TPL_ENV_SUPPORT
976 bool "Support an environment"
Simon Glass688be332016-09-12 23:18:27 -0600977 help
978 Enable environment support in TPL. See SPL_ENV_SUPPORT for details.
979
Simon Glass592d5b92018-11-15 18:43:55 -0700980config TPL_GPIO_SUPPORT
981 bool "Support GPIO in TPL"
982 help
983 Enable support for GPIOs (General-purpose Input/Output) in TPL.
984 GPIOs allow U-Boot to read the state of an input line (high or
985 low) and set the state of an output line. This can be used to
986 drive LEDs, control power to various system parts and read user
987 input. GPIOs can be useful in TPL to enable a 'sign-of-life' LED,
988 for example. Enable this option to build the drivers in
989 drivers/gpio as part of an TPL build.
990
Simon Glass688be332016-09-12 23:18:27 -0600991config TPL_I2C_SUPPORT
992 bool "Support I2C"
Simon Glass688be332016-09-12 23:18:27 -0600993 help
Philipp Tomsich6c7a88e2017-07-28 17:03:03 +0200994 Enable support for the I2C bus in TPL. See SPL_I2C_SUPPORT for
Simon Glass688be332016-09-12 23:18:27 -0600995 details.
996
997config TPL_LIBCOMMON_SUPPORT
998 bool "Support common libraries"
Simon Glass688be332016-09-12 23:18:27 -0600999 help
1000 Enable support for common U-Boot libraries within TPL. See
1001 SPL_LIBCOMMON_SUPPORT for details.
1002
1003config TPL_LIBGENERIC_SUPPORT
1004 bool "Support generic libraries"
Simon Glass688be332016-09-12 23:18:27 -06001005 help
1006 Enable support for generic U-Boot libraries within TPL. See
1007 SPL_LIBGENERIC_SUPPORT for details.
1008
1009config TPL_MPC8XXX_INIT_DDR_SUPPORT
1010 bool "Support MPC8XXX DDR init"
Simon Glass688be332016-09-12 23:18:27 -06001011 help
1012 Enable support for DDR-SDRAM on the MPC8XXX family within TPL. See
1013 SPL_MPC8XXX_INIT_DDR_SUPPORT for details.
1014
1015config TPL_MMC_SUPPORT
1016 bool "Support MMC"
Tom Rini3c82f982017-05-22 19:21:57 +00001017 depends on MMC
Simon Glass688be332016-09-12 23:18:27 -06001018 help
1019 Enable support for MMC within TPL. See SPL_MMC_SUPPORT for details.
1020
1021config TPL_NAND_SUPPORT
1022 bool "Support NAND flash"
Simon Glass688be332016-09-12 23:18:27 -06001023 help
Philipp Tomsich6c7a88e2017-07-28 17:03:03 +02001024 Enable support for NAND in TPL. See SPL_NAND_SUPPORT for details.
Simon Glass688be332016-09-12 23:18:27 -06001025
Simon Glass592d5b92018-11-15 18:43:55 -07001026config TPL_PCI_SUPPORT
1027 bool "Support PCI drivers"
1028 help
1029 Enable support for PCI in TPL. For platforms that need PCI to boot,
1030 or must perform some init using PCI in SPL, this provides the
1031 necessary driver support. This enables the drivers in drivers/pci
1032 as part of a TPL build.
1033
1034config TPL_PCH_SUPPORT
1035 bool "Support PCH drivers"
1036 help
1037 Enable support for PCH (Platform Controller Hub) devices in TPL.
1038 These are used to set up GPIOs and the SPI peripheral early in
1039 boot. This enables the drivers in drivers/pch as part of a TPL
1040 build.
1041
Marek Vasut84493722018-04-07 17:03:45 +02001042config TPL_RAM_SUPPORT
1043 bool "Support booting from RAM"
1044 help
1045 Enable booting of an image in RAM. The image can be preloaded or
1046 it can be loaded by TPL directly into RAM (e.g. using USB).
1047
1048config TPL_RAM_DEVICE
1049 bool "Support booting from preloaded image in RAM"
1050 depends on TPL_RAM_SUPPORT
1051 help
1052 Enable booting of an image already loaded in RAM. The image has to
1053 be already in memory when TPL takes over, e.g. loaded by the boot
1054 ROM.
1055
Simon Glass592d5b92018-11-15 18:43:55 -07001056config TPL_RTC_SUPPORT
1057 bool "Support RTC drivers"
1058 help
1059 Enable RTC (Real-time Clock) support in TPL. This includes support
1060 for reading and setting the time. Some RTC devices also have some
1061 non-volatile (battery-backed) memory which is accessible if
1062 needed. This enables the drivers in drivers/rtc as part of an TPL
1063 build.
1064
Simon Glass688be332016-09-12 23:18:27 -06001065config TPL_SERIAL_SUPPORT
1066 bool "Support serial"
Alex Kiernan5b404282018-04-19 04:32:54 +00001067 select TPL_PRINTF
1068 select TPL_STRTO
Simon Glass688be332016-09-12 23:18:27 -06001069 help
Philipp Tomsich6c7a88e2017-07-28 17:03:03 +02001070 Enable support for serial in TPL. See SPL_SERIAL_SUPPORT for
Simon Glass688be332016-09-12 23:18:27 -06001071 details.
1072
1073config TPL_SPI_FLASH_SUPPORT
1074 bool "Support SPI flash drivers"
Simon Glass688be332016-09-12 23:18:27 -06001075 help
Philipp Tomsich6c7a88e2017-07-28 17:03:03 +02001076 Enable support for using SPI flash in TPL. See SPL_SPI_FLASH_SUPPORT
Simon Glass688be332016-09-12 23:18:27 -06001077 for details.
1078
Marek Vasute6b94da2018-04-07 16:05:46 +02001079config TPL_SPI_LOAD
1080 bool "Support loading from SPI flash"
1081 depends on TPL_SPI_FLASH_SUPPORT
1082 help
1083 Enable support for loading next stage, U-Boot or otherwise, from
1084 SPI NOR in U-Boot TPL.
1085
Simon Glass688be332016-09-12 23:18:27 -06001086config TPL_SPI_SUPPORT
1087 bool "Support SPI drivers"
Simon Glass688be332016-09-12 23:18:27 -06001088 help
Philipp Tomsich6c7a88e2017-07-28 17:03:03 +02001089 Enable support for using SPI in TPL. See SPL_SPI_SUPPORT for
Simon Glass688be332016-09-12 23:18:27 -06001090 details.
1091
Marek Vasut04774242018-04-07 16:06:11 +02001092config TPL_YMODEM_SUPPORT
1093 bool "Support loading using Ymodem"
Alex Kiernan44ad5502018-04-19 04:32:52 +00001094 depends on TPL_SERIAL_SUPPORT
Marek Vasut04774242018-04-07 16:06:11 +02001095 help
1096 While loading from serial is slow it can be a useful backup when
1097 there is no other option. The Ymodem protocol provides a reliable
1098 means of transmitting U-Boot over a serial line for using in TPL,
1099 with a checksum to ensure correctness.
1100
Tom Rini3c82f982017-05-22 19:21:57 +00001101endif # TPL
1102
1103endif # SPL
Simon Glass1e3911a2016-09-13 07:05:23 -06001104endmenu