blob: aa24b6653ff263bc0a97de45b9047369894d9f43 [file] [log] [blame]
Simon Glass11bde1c2016-09-13 07:05:23 -06001menu "SPL / TPL"
2
Simon Glassc2ae7d82016-09-12 23:18:22 -06003config SUPPORT_SPL
4 bool
5
6config SUPPORT_TPL
7 bool
8
B, Ravi66928af2017-05-04 15:45:29 +05309config SPL_DFU_NO_RESET
10 bool
11
Simon Glassc2ae7d82016-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 Rini75670c82018-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 Glassb0edea32018-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 Rini226498b2017-05-22 19:21:57 +000038if SPL
39
Simon Glassb0edea32018-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 Tomsichdd6fbcb2017-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 Tomsichdd6fbcb2017-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 Tan0680f1b2017-05-03 17:13:32 +080059config SPL_BOARD_INIT
Ley Foon Tan0680f1b2017-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 Tomsich225d30b2017-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 Majewskiafa96092018-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. Davis24eb39b2017-02-16 11:18:38 -060086config SPL_RAW_IMAGE_SUPPORT
87 bool "Support SPL loading and booting of RAW images"
Andrew F. Davis24eb39b2017-02-16 11:18:38 -060088 default n if (ARCH_MX6 && (SPL_MMC_SUPPORT || SPL_SATA_SUPPORT))
Andrew F. Davisae9b57b2017-02-16 11:18:40 -060089 default y if !TI_SECURE_DEVICE
Andrew F. Davis24eb39b2017-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. Davis722a6b12017-02-16 11:18:39 -060095config SPL_LEGACY_IMAGE_SUPPORT
96 bool "Support SPL loading and booting of Legacy images"
Andrew F. Davisae9b57b2017-02-16 11:18:40 -060097 default y if !TI_SECURE_DEVICE
Andrew F. Davis722a6b12017-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 Glassc2ae7d82016-09-12 23:18:22 -0600103config SPL_SYS_MALLOC_SIMPLE
104 bool
Simon Glassc2ae7d82016-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 Tomsichd60b5f72017-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 Glassc2ae7d82016-09-12 23:18:22 -0600121config SPL_STACK_R
Simon Glassc2ae7d82016-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 Riniff6c3122017-09-17 11:44:49 -0400134 default 0x82000000 if ARCH_OMAP2PLUS
Simon Glassc2ae7d82016-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 Glassc2ae7d82016-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 Glassaedc08b2018-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 Gustschin0292bc02018-01-25 18:45:22 +0100169 help
170 If this option is enabled, SPL will not print the banner with version
Simon Glassaedc08b2018-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 Gustschin0292bc02018-01-25 18:45:22 +0100173
Simon Glassa807ab32016-09-24 18:19:56 -0600174config SPL_DISPLAY_PRINT
Simon Glassa807ab32016-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 Protsenko38fed8a2016-11-16 19:19:05 +0200182config SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
183 bool "MMC raw mode: by sector"
Fabio Estevam1da19382018-06-11 15:08:05 -0300184 default y if ARCH_SUNXI || ARCH_DAVINCI || ARCH_UNIPHIER || \
185 ARCH_MX6 || ARCH_MX7 || \
Semen Protsenko38fed8a2016-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 Rini226498b2017-05-22 19:21:57 +0000195 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200196 default 0x50 if ARCH_SUNXI
197 default 0x75 if ARCH_DAVINCI
Fabio Estevam1da19382018-06-11 15:08:05 -0300198 default 0x8a if ARCH_MX6 || ARCH_MX7
Kever Yang8f4d62b2017-11-02 15:16:34 +0800199 default 0x100 if ARCH_UNIPHIER
Semen Protsenko38fed8a2016-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 Vutla586bde92018-08-27 15:57:08 +0530203 OMAP54XX || AM33XX || AM43XX || ARCH_K3
Kever Yang8f4d62b2017-11-02 15:16:34 +0800204 default 0x4000 if ARCH_ROCKCHIP
Semen Protsenko38fed8a2016-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 Westergreen949123e2017-02-10 17:15:35 -0800209config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
210 bool "MMC Raw mode: by partition"
Dalon Westergreen949123e2017-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 Rini226498b2017-05-22 19:21:57 +0000216 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreen949123e2017-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 Westergreenf0fb4fa2017-02-10 17:15:34 -0800222config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
223 bool "MMC raw mode: by partition type"
Tom Rini226498b2017-05-22 19:21:57 +0000224 depends on DOS_PARTITION && SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreenf0fb4fa2017-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 Rini226498b2017-05-22 19:21:57 +0000232 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
Dalon Westergreenf0fb4fa2017-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 Glass11bde1c2016-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 Rini089df182017-05-15 12:17:49 -0400262 select SHA1
Simon Glass11bde1c2016-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 Rini089df182017-05-15 12:17:49 -0400274 select SHA256
Simon Glass11bde1c2016-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 Tomsich337bbb62017-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 Zheng6f796a92018-07-21 16:20:31 +0800288 default y if MACH_SUN50I || MACH_SUN50I_H5 || MACH_SUN50I_H6
Ye Lif6282cd2018-11-20 10:19:15 +0000289 default y if ARCH_IMX8M
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100290 help
291 Enable this to reduce the size of the FIT image loading code
292 in SPL, if space for the SPL binary is very tight.
293
294 This removes the detection of image types (which forces the
295 first image to be treated as having a U-Boot style calling
296 convention) and skips the recording of each loaded payload
297 (i.e. loadable) into the FDT (modifying the loaded FDT to
298 ensure this information is available to the next image
299 invoked).
300
Simon Glass5e148df2017-01-16 07:03:29 -0700301config SPL_CPU_SUPPORT
302 bool "Support CPU drivers"
Simon Glass5e148df2017-01-16 07:03:29 -0700303 help
304 Enable this to support CPU drivers in SPL. These drivers can set
305 up CPUs and provide information about them such as the model and
306 name. This can be useful in SPL since setting up the CPUs earlier
307 may improve boot performance. Enable this option to build the
308 drivers in drivers/cpu as part of an SPL build.
309
Simon Glass11bde1c2016-09-13 07:05:23 -0600310config SPL_CRYPTO_SUPPORT
311 bool "Support crypto drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600312 help
313 Enable crypto drivers in SPL. These drivers can be used to
314 accelerate secure boot processing in secure applications. Enable
315 this option to build the drivers in drivers/crypto as part of an
316 SPL build.
317
318config SPL_HASH_SUPPORT
319 bool "Support hashing drivers"
Tom Rini089df182017-05-15 12:17:49 -0400320 select SHA1
321 select SHA256
Simon Glass11bde1c2016-09-13 07:05:23 -0600322 help
323 Enable hashing drivers in SPL. These drivers can be used to
324 accelerate secure boot processing in secure applications. Enable
325 this option to build system-specific drivers for hash acceleration
326 as part of an SPL build.
327
Simon Glass2d424eb2018-11-15 18:43:55 -0700328config TPL_HASH_SUPPORT
329 bool "Support hashing drivers in TPL"
330 select SHA1
331 select SHA256
332 help
333 Enable hashing drivers in SPL. These drivers can be used to
334 accelerate secure boot processing in secure applications. Enable
335 this option to build system-specific drivers for hash acceleration
336 as part of an SPL build.
337
Simon Glass11bde1c2016-09-13 07:05:23 -0600338config SPL_DMA_SUPPORT
339 bool "Support DMA drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600340 help
341 Enable DMA (direct-memory-access) drivers in SPL. These drivers
342 can be used to handle memory-to-peripheral data transfer without
343 the CPU moving the data. Enable this option to build the drivers
344 in drivers/dma as part of an SPL build.
345
346config SPL_DRIVERS_MISC_SUPPORT
347 bool "Support misc drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600348 help
349 Enable miscellaneous drivers in SPL. These drivers perform various
350 tasks that don't fall nicely into other categories, Enable this
351 option to build the drivers in drivers/misc as part of an SPL
352 build, for those that support building in SPL (not all drivers do).
353
354config SPL_ENV_SUPPORT
355 bool "Support an environment"
Simon Glass11bde1c2016-09-13 07:05:23 -0600356 help
357 Enable environment support in SPL. The U-Boot environment provides
358 a number of settings (essentially name/value pairs) which can
359 control many aspects of U-Boot's operation. Normally this is not
360 needed in SPL as it has a much simpler task with less
361 configuration. But some boards use this to support 'Falcon' boot
362 on EXT2 and FAT, where SPL boots directly into Linux without
Simon Glass00caae62017-08-03 12:22:12 -0600363 starting U-Boot first. Enabling this option will make env_get()
Simon Glass382bee52017-08-03 12:22:09 -0600364 and env_set() available in SPL.
Simon Glass11bde1c2016-09-13 07:05:23 -0600365
B, Ravid2d9bdf2016-09-28 14:46:18 +0530366config SPL_SAVEENV
367 bool "Support save environment"
Tom Rini226498b2017-05-22 19:21:57 +0000368 depends on SPL_ENV_SUPPORT
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100369 select SPL_MMC_WRITE if ENV_IS_IN_MMC
B, Ravid2d9bdf2016-09-28 14:46:18 +0530370 help
371 Enable save environment support in SPL after setenv. By default
372 the saveenv option is not provided in SPL, but some boards need
373 this support in 'Falcon' boot, where SPL need to boot from
374 different images based on environment variable set by OS. For
375 example OS may set "reboot_image" environment variable to
376 "recovery" inorder to boot recovery image by SPL. The SPL read
377 "reboot_image" and act accordingly and change the reboot_image
Shyam Saini919d25c2018-06-07 19:47:19 +0530378 to default mode using setenv and save the environment.
B, Ravid2d9bdf2016-09-28 14:46:18 +0530379
Simon Glass11bde1c2016-09-13 07:05:23 -0600380config SPL_ETH_SUPPORT
381 bool "Support Ethernet"
382 depends on SPL_ENV_SUPPORT
383 help
384 Enable access to the network subsystem and associated Ethernet
385 drivers in SPL. This permits SPL to load U-Boot over an Ethernet
386 link rather than from an on-board peripheral. Environment support
387 is required since the network stack uses a number of environment
388 variables. See also SPL_NET_SUPPORT.
389
390config SPL_EXT_SUPPORT
391 bool "Support EXT filesystems"
Simon Glass11bde1c2016-09-13 07:05:23 -0600392 help
393 Enable support for EXT2/3/4 filesystems with SPL. This permits
394 U-Boot (or Linux in Falcon mode) to be loaded from an EXT
395 filesystem from within SPL. Support for the underlying block
396 device (e.g. MMC or USB) must be enabled separately.
397
398config SPL_FAT_SUPPORT
399 bool "Support FAT filesystems"
Sekhar Norieedfb892017-06-02 17:53:59 +0530400 select FS_FAT
Simon Glass11bde1c2016-09-13 07:05:23 -0600401 help
402 Enable support for FAT and VFAT filesystems with SPL. This
403 permits U-Boot (or Linux in Falcon mode) to be loaded from a FAT
404 filesystem from within SPL. Support for the underlying block
405 device (e.g. MMC or USB) must be enabled separately.
406
407config SPL_FPGA_SUPPORT
408 bool "Support FPGAs"
Simon Glass11bde1c2016-09-13 07:05:23 -0600409 help
410 Enable support for FPGAs in SPL. Field-programmable Gate Arrays
411 provide software-configurable hardware which is typically used to
412 implement peripherals (such as UARTs, LCD displays, MMC) or
413 accelerate custom processing functions, such as image processing
414 or machine learning. Sometimes it is useful to program the FPGA
415 as early as possible during boot, and this option can enable that
416 within SPL.
417
418config SPL_GPIO_SUPPORT
Simon Glass2d424eb2018-11-15 18:43:55 -0700419 bool "Support GPIO in SPL"
Simon Glass11bde1c2016-09-13 07:05:23 -0600420 help
421 Enable support for GPIOs (General-purpose Input/Output) in SPL.
422 GPIOs allow U-Boot to read the state of an input line (high or
423 low) and set the state of an output line. This can be used to
424 drive LEDs, control power to various system parts and read user
425 input. GPIOs can be useful in SPL to enable a 'sign-of-life' LED,
426 for example. Enable this option to build the drivers in
427 drivers/gpio as part of an SPL build.
428
429config SPL_I2C_SUPPORT
430 bool "Support I2C"
Simon Glass11bde1c2016-09-13 07:05:23 -0600431 help
432 Enable support for the I2C (Inter-Integrated Circuit) bus in SPL.
433 I2C works with a clock and data line which can be driven by a
434 one or more masters or slaves. It is a fairly complex bus but is
435 widely used as it only needs two lines for communication. Speeds of
436 400kbps are typical but up to 3.4Mbps is supported by some
437 hardware. I2C can be useful in SPL to configure power management
438 ICs (PMICs) before raising the CPU clock speed, for example.
439 Enable this option to build the drivers in drivers/i2c as part of
440 an SPL build.
441
442config SPL_LIBCOMMON_SUPPORT
443 bool "Support common libraries"
Simon Glass11bde1c2016-09-13 07:05:23 -0600444 help
445 Enable support for common U-Boot libraries within SPL. These
446 libraries include common code to deal with U-Boot images,
447 environment and USB, for example. This option is enabled on many
448 boards. Enable this option to build the code in common/ as part of
449 an SPL build.
450
451config SPL_LIBDISK_SUPPORT
Simon Goldschmidt00416702018-08-16 09:44:55 +0200452 bool "Support disk partitions"
Tom Rini91ff6862018-12-05 08:23:38 -0500453 select PARTITIONS
Simon Glass11bde1c2016-09-13 07:05:23 -0600454 help
455 Enable support for disk partitions within SPL. 'Disk' is something
456 of a misnomer as it includes non-spinning media such as flash (as
457 used in MMC and USB sticks). Partitions provide a way for a disk
458 to be split up into separate regions, with a partition table placed
459 at the start or end which describes the location and size of each
460 'partition'. These partitions are typically uses as individual block
461 devices, typically with an EXT2 or FAT filesystem in each. This
462 option enables whatever partition support has been enabled in
463 U-Boot to also be used in SPL. It brings in the code in disk/.
464
465config SPL_LIBGENERIC_SUPPORT
466 bool "Support generic libraries"
Simon Glass11bde1c2016-09-13 07:05:23 -0600467 help
468 Enable support for generic U-Boot libraries within SPL. These
469 libraries include generic code to deal with device tree, hashing,
470 printf(), compression and the like. This option is enabled on many
471 boards. Enable this option to build the code in lib/ as part of an
472 SPL build.
473
Lokesh Vutla88027412018-08-27 15:57:49 +0530474config SPL_DM_MAILBOX
475 bool "Support Mailbox"
476 help
477 Enable support for Mailbox within SPL. This enable the inter
478 processor communication protocols tobe used within SPL. Enable
479 this option to build the drivers in drivers/mailbox as part of
480 SPL build.
481
Simon Glass11bde1c2016-09-13 07:05:23 -0600482config SPL_MMC_SUPPORT
483 bool "Support MMC"
Tom Rini226498b2017-05-22 19:21:57 +0000484 depends on MMC
Tom Rini91ff6862018-12-05 08:23:38 -0500485 select HAVE_BLOCK_DEVICE
Simon Glass11bde1c2016-09-13 07:05:23 -0600486 help
487 Enable support for MMC (Multimedia Card) within SPL. This enables
488 the MMC protocol implementation and allows any enabled drivers to
489 be used within SPL. MMC can be used with or without disk partition
490 support depending on the application (SPL_LIBDISK_SUPPORT). Enable
491 this option to build the drivers in drivers/mmc as part of an SPL
492 build.
493
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100494config SPL_MMC_WRITE
495 bool "MMC/SD/SDIO card support for write operations in SPL"
496 depends on SPL_MMC_SUPPORT
497 default n
498 help
499 Enable write access to MMC and SD Cards in SPL
500
501
Simon Glass11bde1c2016-09-13 07:05:23 -0600502config SPL_MPC8XXX_INIT_DDR_SUPPORT
503 bool "Support MPC8XXX DDR init"
Simon Glass11bde1c2016-09-13 07:05:23 -0600504 help
505 Enable support for DDR-SDRAM (double-data-rate synchronous dynamic
506 random-access memory) on the MPC8XXX family within SPL. This
507 allows DRAM to be set up before loading U-Boot into that DRAM,
508 where it can run.
509
510config SPL_MTD_SUPPORT
511 bool "Support MTD drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600512 help
513 Enable support for MTD (Memory Technology Device) within SPL. MTD
514 provides a block interface over raw NAND and can also be used with
515 SPI flash. This allows SPL to load U-Boot from supported MTD
516 devices. See SPL_NAND_SUPPORT and SPL_ONENAND_SUPPORT for how
517 to enable specific MTD drivers.
518
519config SPL_MUSB_NEW_SUPPORT
520 bool "Support new Mentor Graphics USB"
Simon Glass11bde1c2016-09-13 07:05:23 -0600521 help
522 Enable support for Mentor Graphics USB in SPL. This is a new
523 driver used by some boards. Enable this option to build
524 the drivers in drivers/usb/musb-new as part of an SPL build. The
525 old drivers are in drivers/usb/musb.
526
527config SPL_NAND_SUPPORT
528 bool "Support NAND flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600529 help
530 Enable support for NAND (Negative AND) flash in SPL. NAND flash
531 can be used to allow SPL to load U-Boot from supported devices.
Miquel Raynala430fa02018-08-16 17:30:07 +0200532 This enables the drivers in drivers/mtd/nand/raw as part of an SPL
Simon Glass11bde1c2016-09-13 07:05:23 -0600533 build.
534
535config SPL_NET_SUPPORT
536 bool "Support networking"
Simon Glass11bde1c2016-09-13 07:05:23 -0600537 help
538 Enable support for network devices (such as Ethernet) in SPL.
539 This permits SPL to load U-Boot over a network link rather than
540 from an on-board peripheral. Environment support is required since
541 the network stack uses a number of environment variables. See also
542 SPL_ETH_SUPPORT.
543
544if SPL_NET_SUPPORT
545config SPL_NET_VCI_STRING
546 string "BOOTP Vendor Class Identifier string sent by SPL"
547 help
548 As defined by RFC 2132 the vendor class identifier field can be
549 sent by the client to identify the vendor type and configuration
550 of a client. This is often used in practice to allow for the DHCP
551 server to specify different files to load depending on if the ROM,
552 SPL or U-Boot itself makes the request
553endif # if SPL_NET_SUPPORT
554
555config SPL_NO_CPU_SUPPORT
556 bool "Drop CPU code in SPL"
Simon Glass11bde1c2016-09-13 07:05:23 -0600557 help
558 This is specific to the ARM926EJ-S CPU. It disables the standard
559 start.S start-up code, presumably so that a replacement can be
560 used on that CPU. You should not enable it unless you know what
561 you are doing.
562
563config SPL_NOR_SUPPORT
564 bool "Support NOR flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600565 help
566 Enable support for loading U-Boot from memory-mapped NOR (Negative
567 OR) flash in SPL. NOR flash is slow to write but fast to read, and
568 a memory-mapped device makes it very easy to access. Loading from
569 NOR is typically achieved with just a memcpy().
570
Vikas Manochac6d9e9d2017-05-28 12:55:11 -0700571config SPL_XIP_SUPPORT
572 bool "Support XIP"
573 depends on SPL
574 help
575 Enable support for execute in place of U-Boot or kernel image. There
576 is no need to copy image from flash to ram if flash supports execute
577 in place. Its very useful in systems having enough flash but not
578 enough ram to load the image.
579
Simon Glass11bde1c2016-09-13 07:05:23 -0600580config SPL_ONENAND_SUPPORT
581 bool "Support OneNAND flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600582 help
583 Enable support for OneNAND (Negative AND) flash in SPL. OneNAND is
584 a type of NAND flash and therefore can be used to allow SPL to
585 load U-Boot from supported devices. This enables the drivers in
586 drivers/mtd/onenand as part of an SPL build.
587
Heiko Schocherc20ae2f2016-10-06 07:55:15 +0200588config SPL_OS_BOOT
589 bool "Activate Falcon Mode"
Tom Rini226498b2017-05-22 19:21:57 +0000590 depends on !TI_SECURE_DEVICE
Heiko Schocherc20ae2f2016-10-06 07:55:15 +0200591 default n
592 help
593 Enable booting directly to an OS from SPL.
594 for more info read doc/README.falcon
595
Heiko Schocher29d3bc72016-10-06 07:55:16 +0200596if SPL_OS_BOOT
597config SYS_OS_BASE
598 hex "addr, where OS is found"
Tom Rini226498b2017-05-22 19:21:57 +0000599 depends on SPL_NOR_SUPPORT
Heiko Schocher29d3bc72016-10-06 07:55:16 +0200600 help
601 Specify the address, where the OS image is found, which
602 gets booted.
603
604endif # SPL_OS_BOOT
605
York Sun7550dbe2018-06-14 14:38:48 -0700606config SPL_PAYLOAD
607 string "SPL payload"
608 default "tpl/u-boot-with-tpl.bin" if TPL
609 default "u-boot.bin"
610 help
Chris Packham2dcfa052019-01-13 22:13:20 +1300611 Payload for SPL boot. For backward compatibility, default to
York Sun7550dbe2018-06-14 14:38:48 -0700612 u-boot.bin, i.e. RAW image without any header. In case of
613 TPL, tpl/u-boot-with-tpl.bin. For new boards, suggest to
614 use u-boot.img.
615
Sekhar Norid50d6812018-12-06 15:40:08 +0530616config SPL_PCI
Simon Glass2446b6b2017-01-16 07:03:30 -0700617 bool "Support PCI drivers"
Simon Glass2446b6b2017-01-16 07:03:30 -0700618 help
619 Enable support for PCI in SPL. For platforms that need PCI to boot,
620 or must perform some init using PCI in SPL, this provides the
621 necessary driver support. This enables the drivers in drivers/pci
622 as part of an SPL build.
623
Simon Glassbbe41ab2017-01-16 07:03:33 -0700624config SPL_PCH_SUPPORT
625 bool "Support PCH drivers"
Simon Glassbbe41ab2017-01-16 07:03:33 -0700626 help
627 Enable support for PCH (Platform Controller Hub) devices in SPL.
628 These are used to set up GPIOs and the SPI peripheral early in
629 boot. This enables the drivers in drivers/pch as part of an SPL
630 build.
631
Simon Glass11bde1c2016-09-13 07:05:23 -0600632config SPL_POST_MEM_SUPPORT
633 bool "Support POST drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600634 help
635 Enable support for POST (Power-on Self Test) in SPL. POST is a
636 procedure that checks that the hardware (CPU or board) appears to
637 be functionally correctly. It is a sanity check that can be
638 performed before booting. This enables the drivers in post/drivers
639 as part of an SPL build.
640
Ley Foon Tanbfc6bae2018-06-14 18:45:19 +0800641config SPL_DM_RESET
Patrick Delaunay0e373c02018-03-12 10:46:05 +0100642 bool "Support reset drivers"
643 depends on SPL
644 help
645 Enable support for reset control in SPL.
646 That can be useful in SPL to handle IP reset in driver, as in U-Boot,
647 by using the generic reset API provided by driver model.
648 This enables the drivers in drivers/reset as part of an SPL build.
649
Simon Glass11bde1c2016-09-13 07:05:23 -0600650config SPL_POWER_SUPPORT
651 bool "Support power drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600652 help
653 Enable support for power control in SPL. This includes support
654 for PMICs (Power-management Integrated Circuits) and some of the
655 features provided by PMICs. In particular, voltage regulators can
656 be used to enable/disable power and vary its voltage. That can be
657 useful in SPL to turn on boot peripherals and adjust CPU voltage
658 so that the clock speed can be increased. This enables the drivers
659 in drivers/power, drivers/power/pmic and drivers/power/regulator
660 as part of an SPL build.
661
Peng Fane13278c2018-07-27 10:20:37 +0800662config SPL_POWER_DOMAIN
663 bool "Support power domain drivers"
664 help
665 Enable support for power domain control in SPL. Many SoCs allow
666 power to be applied to or removed from portions of the SoC (power
667 domains). This may be used to save power. This API provides the
668 means to control such power management hardware. This enables
669 the drivers in drivers/power/domain as part of a SPL build.
670
Stefan Agner22802f42016-12-23 07:51:53 +0100671config SPL_RAM_SUPPORT
672 bool "Support booting from RAM"
Stefan Agner22802f42016-12-23 07:51:53 +0100673 default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ
674 help
675 Enable booting of an image in RAM. The image can be preloaded or
676 it can be loaded by SPL directly into RAM (e.g. using USB).
677
Stefan Agnerf417d402016-12-23 07:51:52 +0100678config SPL_RAM_DEVICE
679 bool "Support booting from preloaded image in RAM"
Stefan Agner22802f42016-12-23 07:51:53 +0100680 depends on SPL_RAM_SUPPORT
Stefan Agnerf417d402016-12-23 07:51:52 +0100681 default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ
682 help
683 Enable booting of an image already loaded in RAM. The image has to
684 be already in memory when SPL takes over, e.g. loaded by the boot
685 ROM.
686
Lokesh Vutla08c45312018-08-27 15:57:53 +0530687config SPL_REMOTEPROC
688 bool "Support REMOTEPROCS"
689 help
690 Enable support for REMOTEPROCs in SPL. This permits to load
691 a remote processor firmware in SPL.
692
Simon Glass30bf8a02017-01-16 07:03:31 -0700693config SPL_RTC_SUPPORT
694 bool "Support RTC drivers"
Simon Glass30bf8a02017-01-16 07:03:31 -0700695 help
696 Enable RTC (Real-time Clock) support in SPL. This includes support
697 for reading and setting the time. Some RTC devices also have some
698 non-volatile (battery-backed) memory which is accessible if
699 needed. This enables the drivers in drivers/rtc as part of an SPL
700 build.
701
Simon Glass11bde1c2016-09-13 07:05:23 -0600702config SPL_SATA_SUPPORT
703 bool "Support loading from SATA"
Simon Glass11bde1c2016-09-13 07:05:23 -0600704 help
705 Enable support for SATA (Serial AT attachment) in SPL. This allows
706 use of SATA devices such as hard drives and flash drivers for
707 loading U-Boot. SATA is used in higher-end embedded systems and
708 can provide higher performance than MMC , at somewhat higher
709 expense and power consumption. This enables loading from SATA
710 using a configured device.
711
712config SPL_SERIAL_SUPPORT
713 bool "Support serial"
Alex Kiernan14ad44a2018-04-19 04:32:54 +0000714 select SPL_PRINTF
715 select SPL_STRTO
Simon Glass11bde1c2016-09-13 07:05:23 -0600716 help
717 Enable support for serial in SPL. This allows use of a serial UART
718 for displaying messages while SPL is running. It also brings in
719 printf() and panic() functions. This should normally be enabled
720 unless there are space reasons not to. Even then, consider
721 enabling USE_TINY_PRINTF which is a small printf() version.
722
723config SPL_SPI_FLASH_SUPPORT
724 bool "Support SPI flash drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600725 help
726 Enable support for using SPI flash in SPL, and loading U-Boot from
727 SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
728 the SPI bus that is used to connect it to a system. It is a simple
729 but fast bidirectional 4-wire bus (clock, chip select and two data
730 lines). This enables the drivers in drivers/mtd/spi as part of an
731 SPL build. This normally requires SPL_SPI_SUPPORT.
732
Marek Vasut55500432018-04-07 16:05:27 +0200733config SPL_SPI_LOAD
734 bool "Support loading from SPI flash"
735 depends on SPL_SPI_FLASH_SUPPORT
736 help
737 Enable support for loading next stage, U-Boot or otherwise, from
738 SPI NOR in U-Boot SPL.
739
Simon Glass11bde1c2016-09-13 07:05:23 -0600740config SPL_SPI_SUPPORT
741 bool "Support SPI drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600742 help
743 Enable support for using SPI in SPL. This is used for connecting
744 to SPI flash for loading U-Boot. See SPL_SPI_FLASH_SUPPORT for
745 more details on that. The SPI driver provides the transport for
746 data between the SPI flash and the CPU. This option can be used to
747 enable SPI drivers that are needed for other purposes also, such
748 as a SPI PMIC.
749
Faiz Abbas8502f9f2017-11-14 16:12:31 +0530750config SPL_THERMAL
751 bool "Driver support for thermal devices"
752 help
753 Enable support for temperature-sensing devices. Some SoCs have on-chip
754 temperature sensors to permit warnings, speed throttling or even
755 automatic power-off when the temperature gets too high or low. Other
756 devices may be discrete but connected on a suitable bus.
757
Simon Glass11bde1c2016-09-13 07:05:23 -0600758config SPL_USB_HOST_SUPPORT
759 bool "Support USB host drivers"
Tom Rini91ff6862018-12-05 08:23:38 -0500760 select HAVE_BLOCK_DEVICE
Simon Glass11bde1c2016-09-13 07:05:23 -0600761 help
762 Enable access to USB (Universal Serial Bus) host devices so that
763 SPL can load U-Boot from a connected USB peripheral, such as a USB
764 flash stick. While USB takes a little longer to start up than most
765 buses, it is very flexible since many different types of storage
766 device can be attached. This option enables the drivers in
767 drivers/usb/host as part of an SPL build.
768
769config SPL_USB_SUPPORT
770 bool "Support loading from USB"
771 depends on SPL_USB_HOST_SUPPORT
772 help
773 Enable support for USB devices in SPL. This allows use of USB
774 devices such as hard drives and flash drivers for loading U-Boot.
775 The actual drivers are enabled separately using the normal U-Boot
776 config options. This enables loading from USB using a configured
777 device.
778
Jean-Jacques Hiblotf811e972019-01-10 15:44:13 +0100779config SPL_USB_GADGET
Stefan Agnere94793c2016-11-21 10:58:53 -0800780 bool "Suppport USB Gadget drivers"
Stefan Agnere94793c2016-11-21 10:58:53 -0800781 help
782 Enable USB Gadget API which allows to enable USB device functions
783 in SPL.
784
Jean-Jacques Hiblotf811e972019-01-10 15:44:13 +0100785if SPL_USB_GADGET
Stefan Agnere94793c2016-11-21 10:58:53 -0800786
Faiz Abbasb432b1e2018-02-16 21:17:44 +0530787config SPL_USB_ETHER
Stefan Agnere94793c2016-11-21 10:58:53 -0800788 bool "Support USB Ethernet drivers"
789 help
790 Enable access to the USB network subsystem and associated
791 drivers in SPL. This permits SPL to load U-Boot over a
792 USB-connected Ethernet link (such as a USB Ethernet dongle) rather
793 than from an onboard peripheral. Environment support is required
794 since the network stack uses a number of environment variables.
795 See also SPL_NET_SUPPORT and SPL_ETH_SUPPORT.
796
Andrew F. Davis6536ca42019-01-17 13:43:02 -0600797config SPL_DFU
Fabio Estevamc3c19c22018-08-31 10:02:28 -0300798 bool "Support DFU (Device Firmware Upgrade)"
Stefan Agner59917032016-11-21 10:58:52 -0800799 select SPL_HASH_SUPPORT
B, Ravi66928af2017-05-04 15:45:29 +0530800 select SPL_DFU_NO_RESET
B, Ravi1b19cbd2017-05-04 15:45:28 +0530801 depends on SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -0800802 help
Fabio Estevamc3c19c22018-08-31 10:02:28 -0300803 This feature enables the DFU (Device Firmware Upgrade) in SPL with
Stefan Agner59917032016-11-21 10:58:52 -0800804 RAM memory device support. The ROM code will load and execute
805 the SPL built with dfu. The user can load binaries (u-boot/kernel) to
806 selected device partition from host-pc using dfu-utils.
807 This feature is useful to flash the binaries to factory or bare-metal
808 boards using USB interface.
809
810choice
811 bool "DFU device selection"
Andrew F. Davis6536ca42019-01-17 13:43:02 -0600812 depends on SPL_DFU
Stefan Agner59917032016-11-21 10:58:52 -0800813
814config SPL_DFU_RAM
815 bool "RAM device"
Andrew F. Davis6536ca42019-01-17 13:43:02 -0600816 depends on SPL_DFU && SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -0800817 help
818 select RAM/DDR memory device for loading binary images
819 (u-boot/kernel) to the selected device partition using
820 DFU and execute the u-boot/kernel from RAM.
821
822endchoice
823
Stefan Agnera3774c12017-08-16 11:00:54 -0700824config SPL_USB_SDP_SUPPORT
825 bool "Support SDP (Serial Download Protocol)"
826 help
827 Enable Serial Download Protocol (SDP) device support in SPL. This
828 allows to download images into memory and execute (jump to) them
829 using the same protocol as implemented by the i.MX family's boot ROM.
Stefan Agnere94793c2016-11-21 10:58:53 -0800830endif
831
Simon Glass11bde1c2016-09-13 07:05:23 -0600832config SPL_WATCHDOG_SUPPORT
833 bool "Support watchdog drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600834 help
835 Enable support for watchdog drivers in SPL. A watchdog is
836 typically a hardware peripheral which can reset the system when it
837 detects no activity for a while (such as a software crash). This
838 enables the drivers in drivers/watchdog as part of an SPL build.
839
840config SPL_YMODEM_SUPPORT
841 bool "Support loading using Ymodem"
Alex Kiernan3bac19c2018-04-19 04:32:52 +0000842 depends on SPL_SERIAL_SUPPORT
Simon Glass11bde1c2016-09-13 07:05:23 -0600843 help
844 While loading from serial is slow it can be a useful backup when
845 there is no other option. The Ymodem protocol provides a reliable
846 means of transmitting U-Boot over a serial line for using in SPL,
847 with a checksum to ensure correctness.
848
Philipp Tomsichaa122f62017-09-13 21:29:36 +0200849config SPL_ATF
Kever Yangbcc17262017-05-05 11:47:45 +0800850 bool "Support ARM Trusted Firmware"
Tom Rini226498b2017-05-22 19:21:57 +0000851 depends on ARM64
Kever Yangbcc17262017-05-05 11:47:45 +0800852 help
Philipp Tomsichd21fb632018-01-02 21:16:43 +0100853 ATF(ARM Trusted Firmware) is a component for ARM AArch64 which
854 is loaded by SPL (which is considered as BL2 in ATF terminology).
Kever Yangbcc17262017-05-05 11:47:45 +0800855 More detail at: https://github.com/ARM-software/arm-trusted-firmware
856
Philipp Tomsichd21fb632018-01-02 21:16:43 +0100857config SPL_ATF_NO_PLATFORM_PARAM
858 bool "Pass no platform parameter"
859 depends on SPL_ATF
860 help
861 While we expect to call a pointer to a valid FDT (or NULL)
862 as the platform parameter to an ATF, some ATF versions are
863 not U-Boot aware and have an insufficiently robust parameter
864 validation to gracefully reject a FDT being passed.
865
866 If this option is enabled, the spl_atf os-type handler will
867 always pass NULL for the platform parameter.
868
869 If your ATF is affected, say Y.
870
Alex Kiernan3bf5f132018-03-15 22:11:46 +0000871config SPL_AM33XX_ENABLE_RTC32K_OSC
872 bool "Enable the RTC32K OSC on AM33xx based platforms"
873 default y if AM33XX
874 help
875 Enable access to the AM33xx RTC and select the external 32kHz clock
876 source.
877
Kever Yang70fe2872018-08-23 17:17:59 +0800878config SPL_OPTEE
879 bool "Support OP-TEE Trusted OS"
880 depends on ARM
881 help
882 OP-TEE is an open source Trusted OS which is loaded by SPL.
883 More detail at: https://github.com/OP-TEE/optee_os
884
Tom Rini226498b2017-05-22 19:21:57 +0000885config TPL
886 bool
887 depends on SUPPORT_TPL
888 prompt "Enable TPL"
889 help
890 If you want to build TPL as well as the normal image and SPL, say Y.
891
892if TPL
893
Simon Glassb0edea32018-11-15 18:44:09 -0700894config TPL_HANDOFF
895 bool "Pass hand-off information from TPL to SPL and U-Boot proper"
896 depends on HANDOFF
897 default y
898 help
899 This option enables TPL to write handoff information. This can be
900 used to pass information like the size of SDRAM from TPL to U-Boot
901 proper. The information is also available to SPL if it is useful
902 there.
903
Kever Yangaf2f4422018-01-20 18:00:26 +0800904config TPL_BOARD_INIT
905 bool "Call board-specific initialization in TPL"
906 help
907 If this option is enabled, U-Boot will call the function
908 spl_board_init() from board_init_r(). This function should be
909 provided by the board.
910
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +0200911config TPL_LDSCRIPT
912 string "Linker script for the TPL stage"
913 depends on TPL
914 help
915 The TPL stage will usually require a different linker-script
916 (as it runs from a different memory region) than the regular
917 U-Boot stage. Set this to the path of the linker-script to
918 be used for TPL.
919
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +0200920 May be left empty to trigger the Makefile infrastructure to
921 fall back to the linker-script used for the SPL stage.
922
923config TPL_NEEDS_SEPARATE_TEXT_BASE
924 bool "TPL needs a separate text-base"
925 default n
926 depends on TPL
927 help
928 Enable, if the TPL stage should not inherit its text-base
929 from the SPL stage. When enabled, a base address for the
930 .text sections of the TPL stage has to be set below.
931
932config TPL_NEEDS_SEPARATE_STACK
933 bool "TPL needs a separate initial stack-pointer"
934 default n
935 depends on TPL
936 help
937 Enable, if the TPL stage should not inherit its initial
938 stack-pointer from the settings for the SPL stage.
939
940config TPL_TEXT_BASE
941 hex "Base address for the .text section of the TPL stage"
942 depends on TPL_NEEDS_SEPARATE_TEXT_BASE
943 help
944 The base address for the .text section of the TPL stage.
945
946config TPL_MAX_SIZE
947 int "Maximum size (in bytes) for the TPL stage"
Philipp Tomsich5aa49af2017-07-28 20:20:41 +0200948 default 0
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +0200949 depends on TPL
950 help
951 The maximum size (in bytes) of the TPL stage.
952
953config TPL_STACK
954 hex "Address of the initial stack-pointer for the TPL stage"
955 depends on TPL_NEEDS_SEPARATE_STACK
956 help
957 The address of the initial stack-pointer for the TPL stage.
958 Usually this will be the (aligned) top-of-stack.
959
Philipp Tomsicha954fa32017-07-04 14:24:53 +0200960config TPL_BOOTROM_SUPPORT
961 bool "Support returning to the BOOTROM (from TPL)"
962 help
963 Some platforms (e.g. the Rockchip RK3368) provide support in their
964 ROM for loading the next boot-stage after performing basic setup
965 from the TPL stage.
966
967 Enable this option, to return to the BOOTROM through the
968 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
969 boot device list, if not implemented for a given board)
970
Philipp Tomsichc3916e72017-07-04 14:27:02 +0200971config TPL_DRIVERS_MISC_SUPPORT
972 bool "Support misc drivers in TPL"
973 help
974 Enable miscellaneous drivers in TPL. These drivers perform various
975 tasks that don't fall nicely into other categories, Enable this
976 option to build the drivers in drivers/misc as part of an TPL
977 build, for those that support building in TPL (not all drivers do).
978
Simon Glassf73329e2016-09-12 23:18:27 -0600979config TPL_ENV_SUPPORT
980 bool "Support an environment"
Simon Glassf73329e2016-09-12 23:18:27 -0600981 help
982 Enable environment support in TPL. See SPL_ENV_SUPPORT for details.
983
Simon Glass2d424eb2018-11-15 18:43:55 -0700984config TPL_GPIO_SUPPORT
985 bool "Support GPIO in TPL"
986 help
987 Enable support for GPIOs (General-purpose Input/Output) in TPL.
988 GPIOs allow U-Boot to read the state of an input line (high or
989 low) and set the state of an output line. This can be used to
990 drive LEDs, control power to various system parts and read user
991 input. GPIOs can be useful in TPL to enable a 'sign-of-life' LED,
992 for example. Enable this option to build the drivers in
993 drivers/gpio as part of an TPL build.
994
Simon Glassf73329e2016-09-12 23:18:27 -0600995config TPL_I2C_SUPPORT
996 bool "Support I2C"
Simon Glassf73329e2016-09-12 23:18:27 -0600997 help
Philipp Tomsich616bd092017-07-28 17:03:03 +0200998 Enable support for the I2C bus in TPL. See SPL_I2C_SUPPORT for
Simon Glassf73329e2016-09-12 23:18:27 -0600999 details.
1000
1001config TPL_LIBCOMMON_SUPPORT
1002 bool "Support common libraries"
Simon Glassf73329e2016-09-12 23:18:27 -06001003 help
1004 Enable support for common U-Boot libraries within TPL. See
1005 SPL_LIBCOMMON_SUPPORT for details.
1006
1007config TPL_LIBGENERIC_SUPPORT
1008 bool "Support generic libraries"
Simon Glassf73329e2016-09-12 23:18:27 -06001009 help
1010 Enable support for generic U-Boot libraries within TPL. See
1011 SPL_LIBGENERIC_SUPPORT for details.
1012
1013config TPL_MPC8XXX_INIT_DDR_SUPPORT
1014 bool "Support MPC8XXX DDR init"
Simon Glassf73329e2016-09-12 23:18:27 -06001015 help
1016 Enable support for DDR-SDRAM on the MPC8XXX family within TPL. See
1017 SPL_MPC8XXX_INIT_DDR_SUPPORT for details.
1018
1019config TPL_MMC_SUPPORT
1020 bool "Support MMC"
Tom Rini226498b2017-05-22 19:21:57 +00001021 depends on MMC
Simon Glassf73329e2016-09-12 23:18:27 -06001022 help
1023 Enable support for MMC within TPL. See SPL_MMC_SUPPORT for details.
1024
1025config TPL_NAND_SUPPORT
1026 bool "Support NAND flash"
Simon Glassf73329e2016-09-12 23:18:27 -06001027 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001028 Enable support for NAND in TPL. See SPL_NAND_SUPPORT for details.
Simon Glassf73329e2016-09-12 23:18:27 -06001029
Sekhar Norid50d6812018-12-06 15:40:08 +05301030config TPL_PCI
Simon Glass2d424eb2018-11-15 18:43:55 -07001031 bool "Support PCI drivers"
1032 help
1033 Enable support for PCI in TPL. For platforms that need PCI to boot,
1034 or must perform some init using PCI in SPL, this provides the
1035 necessary driver support. This enables the drivers in drivers/pci
1036 as part of a TPL build.
1037
1038config TPL_PCH_SUPPORT
1039 bool "Support PCH drivers"
1040 help
1041 Enable support for PCH (Platform Controller Hub) devices in TPL.
1042 These are used to set up GPIOs and the SPI peripheral early in
1043 boot. This enables the drivers in drivers/pch as part of a TPL
1044 build.
1045
Marek Vasutd79dfd42018-04-07 17:03:45 +02001046config TPL_RAM_SUPPORT
1047 bool "Support booting from RAM"
1048 help
1049 Enable booting of an image in RAM. The image can be preloaded or
1050 it can be loaded by TPL directly into RAM (e.g. using USB).
1051
1052config TPL_RAM_DEVICE
1053 bool "Support booting from preloaded image in RAM"
1054 depends on TPL_RAM_SUPPORT
1055 help
1056 Enable booting of an image already loaded in RAM. The image has to
1057 be already in memory when TPL takes over, e.g. loaded by the boot
1058 ROM.
1059
Simon Glass2d424eb2018-11-15 18:43:55 -07001060config TPL_RTC_SUPPORT
1061 bool "Support RTC drivers"
1062 help
1063 Enable RTC (Real-time Clock) support in TPL. This includes support
1064 for reading and setting the time. Some RTC devices also have some
1065 non-volatile (battery-backed) memory which is accessible if
1066 needed. This enables the drivers in drivers/rtc as part of an TPL
1067 build.
1068
Simon Glassf73329e2016-09-12 23:18:27 -06001069config TPL_SERIAL_SUPPORT
1070 bool "Support serial"
Alex Kiernan14ad44a2018-04-19 04:32:54 +00001071 select TPL_PRINTF
1072 select TPL_STRTO
Simon Glassf73329e2016-09-12 23:18:27 -06001073 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001074 Enable support for serial in TPL. See SPL_SERIAL_SUPPORT for
Simon Glassf73329e2016-09-12 23:18:27 -06001075 details.
1076
1077config TPL_SPI_FLASH_SUPPORT
1078 bool "Support SPI flash drivers"
Simon Glassf73329e2016-09-12 23:18:27 -06001079 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001080 Enable support for using SPI flash in TPL. See SPL_SPI_FLASH_SUPPORT
Simon Glassf73329e2016-09-12 23:18:27 -06001081 for details.
1082
Marek Vasut1e725e22018-04-07 16:05:46 +02001083config TPL_SPI_LOAD
1084 bool "Support loading from SPI flash"
1085 depends on TPL_SPI_FLASH_SUPPORT
1086 help
1087 Enable support for loading next stage, U-Boot or otherwise, from
1088 SPI NOR in U-Boot TPL.
1089
Simon Glassf73329e2016-09-12 23:18:27 -06001090config TPL_SPI_SUPPORT
1091 bool "Support SPI drivers"
Simon Glassf73329e2016-09-12 23:18:27 -06001092 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001093 Enable support for using SPI in TPL. See SPL_SPI_SUPPORT for
Simon Glassf73329e2016-09-12 23:18:27 -06001094 details.
1095
Marek Vasut6ce3d672018-04-07 16:06:11 +02001096config TPL_YMODEM_SUPPORT
1097 bool "Support loading using Ymodem"
Alex Kiernan3bac19c2018-04-19 04:32:52 +00001098 depends on TPL_SERIAL_SUPPORT
Marek Vasut6ce3d672018-04-07 16:06:11 +02001099 help
1100 While loading from serial is slow it can be a useful backup when
1101 there is no other option. The Ymodem protocol provides a reliable
1102 means of transmitting U-Boot over a serial line for using in TPL,
1103 with a checksum to ensure correctness.
1104
Tom Rini226498b2017-05-22 19:21:57 +00001105endif # TPL
1106
1107endif # SPL
Simon Glass11bde1c2016-09-13 07:05:23 -06001108endmenu