blob: 1f1479718e9dc77527fd00b0b6db13ff7ffa0e2c [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
Tom Rini226498b2017-05-22 19:21:57 +000028if SPL
29
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +020030config SPL_LDSCRIPT
31 string "Linker script for the SPL stage"
32 default "arch/$(ARCH)/cpu/u-boot-spl.lds"
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +020033 help
34 The SPL stage will usually require a different linker-script
35 (as it runs from a different memory region) than the regular
36 U-Boot stage. Set this to the path of the linker-script to
37 be used for SPL.
38
Ley Foon Tan0680f1b2017-05-03 17:13:32 +080039config SPL_BOARD_INIT
Ley Foon Tan0680f1b2017-05-03 17:13:32 +080040 bool "Call board-specific initialization in SPL"
41 help
42 If this option is enabled, U-Boot will call the function
43 spl_board_init() from board_init_r(). This function should be
44 provided by the board.
45
Philipp Tomsich225d30b2017-06-22 23:38:36 +020046config SPL_BOOTROM_SUPPORT
47 bool "Support returning to the BOOTROM"
48 help
49 Some platforms (e.g. the Rockchip RK3368) provide support in their
50 ROM for loading the next boot-stage after performing basic setup
51 from the SPL stage.
52
53 Enable this option, to return to the BOOTROM through the
54 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
55 boot device list, if not implemented for a given board)
56
Lukasz Majewskiafa96092018-05-02 16:10:50 +020057config SPL_BOOTCOUNT_LIMIT
58 bool "Support bootcount in SPL"
59 depends on SPL_ENV_SUPPORT
60 help
61 On some boards, which use 'falcon' mode, it is necessary to check
62 and increment the number of boot attempts. Such boards do not
63 use proper U-Boot for normal boot flow and hence needs those
64 adjustments to be done in the SPL.
65
Andrew F. Davis24eb39b2017-02-16 11:18:38 -060066config SPL_RAW_IMAGE_SUPPORT
67 bool "Support SPL loading and booting of RAW images"
Andrew F. Davis24eb39b2017-02-16 11:18:38 -060068 default n if (ARCH_MX6 && (SPL_MMC_SUPPORT || SPL_SATA_SUPPORT))
Andrew F. Davisae9b57b2017-02-16 11:18:40 -060069 default y if !TI_SECURE_DEVICE
Andrew F. Davis24eb39b2017-02-16 11:18:38 -060070 help
71 SPL will support loading and booting a RAW image when this option
72 is y. If this is not set, SPL will move on to other available
73 boot media to find a suitable image.
74
Andrew F. Davis722a6b12017-02-16 11:18:39 -060075config SPL_LEGACY_IMAGE_SUPPORT
76 bool "Support SPL loading and booting of Legacy images"
Andrew F. Davisae9b57b2017-02-16 11:18:40 -060077 default y if !TI_SECURE_DEVICE
Andrew F. Davis722a6b12017-02-16 11:18:39 -060078 help
79 SPL will support loading and booting Legacy images when this option
80 is y. If this is not set, SPL will move on to other available
81 boot media to find a suitable image.
82
Simon Glassc2ae7d82016-09-12 23:18:22 -060083config SPL_SYS_MALLOC_SIMPLE
84 bool
Simon Glassc2ae7d82016-09-12 23:18:22 -060085 prompt "Only use malloc_simple functions in the SPL"
86 help
87 Say Y here to only use the *_simple malloc functions from
88 malloc_simple.c, rather then using the versions from dlmalloc.c;
89 this will make the SPL binary smaller at the cost of more heap
90 usage as the *_simple malloc functions do not re-use free-ed mem.
91
Philipp Tomsichd60b5f72017-06-30 18:57:25 +020092config TPL_SYS_MALLOC_SIMPLE
93 bool
94 prompt "Only use malloc_simple functions in the TPL"
95 help
96 Say Y here to only use the *_simple malloc functions from
97 malloc_simple.c, rather then using the versions from dlmalloc.c;
98 this will make the TPL binary smaller at the cost of more heap
99 usage as the *_simple malloc functions do not re-use free-ed mem.
100
Simon Glassc2ae7d82016-09-12 23:18:22 -0600101config SPL_STACK_R
Simon Glassc2ae7d82016-09-12 23:18:22 -0600102 bool "Enable SDRAM location for SPL stack"
103 help
104 SPL starts off execution in SRAM and thus typically has only a small
105 stack available. Since SPL sets up DRAM while in its board_init_f()
106 function, it is possible for the stack to move there before
107 board_init_r() is reached. This option enables a special SDRAM
108 location for the SPL stack. U-Boot SPL switches to this after
109 board_init_f() completes, and before board_init_r() starts.
110
111config SPL_STACK_R_ADDR
112 depends on SPL_STACK_R
113 hex "SDRAM location for SPL stack"
Tom Riniff6c3122017-09-17 11:44:49 -0400114 default 0x82000000 if ARCH_OMAP2PLUS
Simon Glassc2ae7d82016-09-12 23:18:22 -0600115 help
116 Specify the address in SDRAM for the SPL stack. This will be set up
117 before board_init_r() is called.
118
119config SPL_STACK_R_MALLOC_SIMPLE_LEN
120 depends on SPL_STACK_R && SPL_SYS_MALLOC_SIMPLE
121 hex "Size of malloc_simple heap after switching to DRAM SPL stack"
122 default 0x100000
123 help
124 Specify the amount of the stack to use as memory pool for
125 malloc_simple after switching the stack to DRAM. This may be set
126 to give board_init_r() a larger heap then the initial heap in
127 SRAM which is limited to SYS_MALLOC_F_LEN bytes.
128
129config SPL_SEPARATE_BSS
Simon Glassc2ae7d82016-09-12 23:18:22 -0600130 bool "BSS section is in a different memory region from text"
131 help
132 Some platforms need a large BSS region in SPL and can provide this
133 because RAM is already set up. In this case BSS can be moved to RAM.
134 This option should then be enabled so that the correct device tree
135 location is used. Normally we put the device tree at the end of BSS
136 but with this option enabled, it goes at _image_binary_end.
137
Anatolij Gustschin0292bc02018-01-25 18:45:22 +0100138config SPL_DISABLE_BANNER_PRINT
139 bool "Disable output of the SPL banner 'U-Boot SPL ...'"
140 help
141 If this option is enabled, SPL will not print the banner with version
142 info. Selecting this option could be useful to reduce SPL boot time
143 (e.g. approx. 6 ms slower, when output on i.MX6 with 115200 baud).
144
Simon Glassa807ab32016-09-24 18:19:56 -0600145config SPL_DISPLAY_PRINT
Simon Glassa807ab32016-09-24 18:19:56 -0600146 bool "Display a board-specific message in SPL"
147 help
148 If this option is enabled, U-Boot will call the function
149 spl_display_print() immediately after displaying the SPL console
150 banner ("U-Boot SPL ..."). This function should be provided by
151 the board.
152
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200153config SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
154 bool "MMC raw mode: by sector"
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200155 default y if ARCH_SUNXI || ARCH_DAVINCI || ARCH_UNIPHIER ||ARCH_MX6 || \
156 ARCH_ROCKCHIP || ARCH_MVEBU || ARCH_SOCFPGA || \
157 ARCH_AT91 || ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || \
158 OMAP44XX || OMAP54XX || AM33XX || AM43XX
159 help
160 Use sector number for specifying U-Boot location on MMC/SD in
161 raw mode.
162
163config SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR
164 hex "Address on the MMC to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000165 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200166 default 0x50 if ARCH_SUNXI
167 default 0x75 if ARCH_DAVINCI
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200168 default 0x8a if ARCH_MX6
Kever Yang8f4d62b2017-11-02 15:16:34 +0800169 default 0x100 if ARCH_UNIPHIER
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200170 default 0x140 if ARCH_MVEBU
171 default 0x200 if ARCH_SOCFPGA || ARCH_AT91
172 default 0x300 if ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || OMAP44XX || \
173 OMAP54XX || AM33XX || AM43XX
Kever Yang8f4d62b2017-11-02 15:16:34 +0800174 default 0x4000 if ARCH_ROCKCHIP
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200175 help
176 Address on the MMC to load U-Boot from, when the MMC is being used
177 in raw mode. Units: MMC sectors (1 sector = 512 bytes).
178
Dalon Westergreen949123e2017-02-10 17:15:35 -0800179config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
180 bool "MMC Raw mode: by partition"
Dalon Westergreen949123e2017-02-10 17:15:35 -0800181 help
182 Use a partition for loading U-Boot when using MMC/SD in raw mode.
183
184config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION
185 hex "Partition to use to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000186 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreen949123e2017-02-10 17:15:35 -0800187 default 1
188 help
189 Partition on the MMC to load U-Boot from when the MMC is being
190 used in raw mode
191
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800192config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
193 bool "MMC raw mode: by partition type"
Tom Rini226498b2017-05-22 19:21:57 +0000194 depends on DOS_PARTITION && SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800195 help
196 Use partition type for specifying U-Boot partition on MMC/SD in
197 raw mode. U-Boot will be loaded from the first partition of this
198 type to be found.
199
200config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_TYPE
201 hex "Partition Type on the MMC to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000202 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800203 help
204 Partition Type on the MMC to load U-Boot from, when the MMC is being
205 used in raw mode.
206
Simon Glass11bde1c2016-09-13 07:05:23 -0600207config SPL_CRC32_SUPPORT
208 bool "Support CRC32"
209 depends on SPL_FIT
210 help
211 Enable this to support CRC32 in FIT images within SPL. This is a
212 32-bit checksum value that can be used to verify images. This is
213 the least secure type of checksum, suitable for detected
214 accidental image corruption. For secure applications you should
215 consider SHA1 or SHA256.
216
217config SPL_MD5_SUPPORT
218 bool "Support MD5"
219 depends on SPL_FIT
220 help
221 Enable this to support MD5 in FIT images within SPL. An MD5
222 checksum is a 128-bit hash value used to check that the image
223 contents have not been corrupted. Note that MD5 is not considered
224 secure as it is possible (with a brute-force attack) to adjust the
225 image while still retaining the same MD5 hash value. For secure
226 applications where images may be changed maliciously, you should
227 consider SHA1 or SHA256.
228
229config SPL_SHA1_SUPPORT
230 bool "Support SHA1"
231 depends on SPL_FIT
Tom Rini089df182017-05-15 12:17:49 -0400232 select SHA1
Simon Glass11bde1c2016-09-13 07:05:23 -0600233 help
234 Enable this to support SHA1 in FIT images within SPL. A SHA1
235 checksum is a 160-bit (20-byte) hash value used to check that the
236 image contents have not been corrupted or maliciously altered.
237 While SHA1 is fairly secure it is coming to the end of its life
238 due to the expanding computing power avaiable to brute-force
239 attacks. For more security, consider SHA256.
240
241config SPL_SHA256_SUPPORT
242 bool "Support SHA256"
243 depends on SPL_FIT
Tom Rini089df182017-05-15 12:17:49 -0400244 select SHA256
Simon Glass11bde1c2016-09-13 07:05:23 -0600245 help
246 Enable this to support SHA256 in FIT images within SPL. A SHA256
247 checksum is a 256-bit (32-byte) hash value used to check that the
248 image contents have not been corrupted. SHA256 is recommended for
249 use in secure applications since (as at 2016) there is no known
250 feasible attack that could produce a 'collision' with differing
251 input data. Use this for the highest security. Note that only the
252 SHA256 variant is supported: SHA512 and others are not currently
253 supported in U-Boot.
254
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100255config SPL_FIT_IMAGE_TINY
256 bool "Remove functionality from SPL FIT loading to reduce size"
257 depends on SPL_FIT
258 default y if MACH_SUN50I || MACH_SUN50I_H5
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100259 help
260 Enable this to reduce the size of the FIT image loading code
261 in SPL, if space for the SPL binary is very tight.
262
263 This removes the detection of image types (which forces the
264 first image to be treated as having a U-Boot style calling
265 convention) and skips the recording of each loaded payload
266 (i.e. loadable) into the FDT (modifying the loaded FDT to
267 ensure this information is available to the next image
268 invoked).
269
Simon Glass5e148df2017-01-16 07:03:29 -0700270config SPL_CPU_SUPPORT
271 bool "Support CPU drivers"
Simon Glass5e148df2017-01-16 07:03:29 -0700272 help
273 Enable this to support CPU drivers in SPL. These drivers can set
274 up CPUs and provide information about them such as the model and
275 name. This can be useful in SPL since setting up the CPUs earlier
276 may improve boot performance. Enable this option to build the
277 drivers in drivers/cpu as part of an SPL build.
278
Simon Glass11bde1c2016-09-13 07:05:23 -0600279config SPL_CRYPTO_SUPPORT
280 bool "Support crypto drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600281 help
282 Enable crypto drivers in SPL. These drivers can be used to
283 accelerate secure boot processing in secure applications. Enable
284 this option to build the drivers in drivers/crypto as part of an
285 SPL build.
286
287config SPL_HASH_SUPPORT
288 bool "Support hashing drivers"
Tom Rini089df182017-05-15 12:17:49 -0400289 select SHA1
290 select SHA256
Simon Glass11bde1c2016-09-13 07:05:23 -0600291 help
292 Enable hashing drivers in SPL. These drivers can be used to
293 accelerate secure boot processing in secure applications. Enable
294 this option to build system-specific drivers for hash acceleration
295 as part of an SPL build.
296
297config SPL_DMA_SUPPORT
298 bool "Support DMA drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600299 help
300 Enable DMA (direct-memory-access) drivers in SPL. These drivers
301 can be used to handle memory-to-peripheral data transfer without
302 the CPU moving the data. Enable this option to build the drivers
303 in drivers/dma as part of an SPL build.
304
305config SPL_DRIVERS_MISC_SUPPORT
306 bool "Support misc drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600307 help
308 Enable miscellaneous drivers in SPL. These drivers perform various
309 tasks that don't fall nicely into other categories, Enable this
310 option to build the drivers in drivers/misc as part of an SPL
311 build, for those that support building in SPL (not all drivers do).
312
313config SPL_ENV_SUPPORT
314 bool "Support an environment"
Simon Glass11bde1c2016-09-13 07:05:23 -0600315 help
316 Enable environment support in SPL. The U-Boot environment provides
317 a number of settings (essentially name/value pairs) which can
318 control many aspects of U-Boot's operation. Normally this is not
319 needed in SPL as it has a much simpler task with less
320 configuration. But some boards use this to support 'Falcon' boot
321 on EXT2 and FAT, where SPL boots directly into Linux without
Simon Glass00caae62017-08-03 12:22:12 -0600322 starting U-Boot first. Enabling this option will make env_get()
Simon Glass382bee52017-08-03 12:22:09 -0600323 and env_set() available in SPL.
Simon Glass11bde1c2016-09-13 07:05:23 -0600324
B, Ravid2d9bdf2016-09-28 14:46:18 +0530325config SPL_SAVEENV
326 bool "Support save environment"
Tom Rini226498b2017-05-22 19:21:57 +0000327 depends on SPL_ENV_SUPPORT
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100328 select SPL_MMC_WRITE if ENV_IS_IN_MMC
B, Ravid2d9bdf2016-09-28 14:46:18 +0530329 help
330 Enable save environment support in SPL after setenv. By default
331 the saveenv option is not provided in SPL, but some boards need
332 this support in 'Falcon' boot, where SPL need to boot from
333 different images based on environment variable set by OS. For
334 example OS may set "reboot_image" environment variable to
335 "recovery" inorder to boot recovery image by SPL. The SPL read
336 "reboot_image" and act accordingly and change the reboot_image
Shyam Saini919d25c2018-06-07 19:47:19 +0530337 to default mode using setenv and save the environment.
B, Ravid2d9bdf2016-09-28 14:46:18 +0530338
Simon Glass11bde1c2016-09-13 07:05:23 -0600339config SPL_ETH_SUPPORT
340 bool "Support Ethernet"
341 depends on SPL_ENV_SUPPORT
342 help
343 Enable access to the network subsystem and associated Ethernet
344 drivers in SPL. This permits SPL to load U-Boot over an Ethernet
345 link rather than from an on-board peripheral. Environment support
346 is required since the network stack uses a number of environment
347 variables. See also SPL_NET_SUPPORT.
348
349config SPL_EXT_SUPPORT
350 bool "Support EXT filesystems"
Simon Glass11bde1c2016-09-13 07:05:23 -0600351 help
352 Enable support for EXT2/3/4 filesystems with SPL. This permits
353 U-Boot (or Linux in Falcon mode) to be loaded from an EXT
354 filesystem from within SPL. Support for the underlying block
355 device (e.g. MMC or USB) must be enabled separately.
356
357config SPL_FAT_SUPPORT
358 bool "Support FAT filesystems"
Sekhar Norieedfb892017-06-02 17:53:59 +0530359 select FS_FAT
Simon Glass11bde1c2016-09-13 07:05:23 -0600360 help
361 Enable support for FAT and VFAT filesystems with SPL. This
362 permits U-Boot (or Linux in Falcon mode) to be loaded from a FAT
363 filesystem from within SPL. Support for the underlying block
364 device (e.g. MMC or USB) must be enabled separately.
365
366config SPL_FPGA_SUPPORT
367 bool "Support FPGAs"
Simon Glass11bde1c2016-09-13 07:05:23 -0600368 help
369 Enable support for FPGAs in SPL. Field-programmable Gate Arrays
370 provide software-configurable hardware which is typically used to
371 implement peripherals (such as UARTs, LCD displays, MMC) or
372 accelerate custom processing functions, such as image processing
373 or machine learning. Sometimes it is useful to program the FPGA
374 as early as possible during boot, and this option can enable that
375 within SPL.
376
377config SPL_GPIO_SUPPORT
378 bool "Support GPIO"
Simon Glass11bde1c2016-09-13 07:05:23 -0600379 help
380 Enable support for GPIOs (General-purpose Input/Output) in SPL.
381 GPIOs allow U-Boot to read the state of an input line (high or
382 low) and set the state of an output line. This can be used to
383 drive LEDs, control power to various system parts and read user
384 input. GPIOs can be useful in SPL to enable a 'sign-of-life' LED,
385 for example. Enable this option to build the drivers in
386 drivers/gpio as part of an SPL build.
387
388config SPL_I2C_SUPPORT
389 bool "Support I2C"
Simon Glass11bde1c2016-09-13 07:05:23 -0600390 help
391 Enable support for the I2C (Inter-Integrated Circuit) bus in SPL.
392 I2C works with a clock and data line which can be driven by a
393 one or more masters or slaves. It is a fairly complex bus but is
394 widely used as it only needs two lines for communication. Speeds of
395 400kbps are typical but up to 3.4Mbps is supported by some
396 hardware. I2C can be useful in SPL to configure power management
397 ICs (PMICs) before raising the CPU clock speed, for example.
398 Enable this option to build the drivers in drivers/i2c as part of
399 an SPL build.
400
401config SPL_LIBCOMMON_SUPPORT
402 bool "Support common libraries"
Simon Glass11bde1c2016-09-13 07:05:23 -0600403 help
404 Enable support for common U-Boot libraries within SPL. These
405 libraries include common code to deal with U-Boot images,
406 environment and USB, for example. This option is enabled on many
407 boards. Enable this option to build the code in common/ as part of
408 an SPL build.
409
410config SPL_LIBDISK_SUPPORT
411 bool "Support disk paritions"
Simon Glass11bde1c2016-09-13 07:05:23 -0600412 help
413 Enable support for disk partitions within SPL. 'Disk' is something
414 of a misnomer as it includes non-spinning media such as flash (as
415 used in MMC and USB sticks). Partitions provide a way for a disk
416 to be split up into separate regions, with a partition table placed
417 at the start or end which describes the location and size of each
418 'partition'. These partitions are typically uses as individual block
419 devices, typically with an EXT2 or FAT filesystem in each. This
420 option enables whatever partition support has been enabled in
421 U-Boot to also be used in SPL. It brings in the code in disk/.
422
423config SPL_LIBGENERIC_SUPPORT
424 bool "Support generic libraries"
Simon Glass11bde1c2016-09-13 07:05:23 -0600425 help
426 Enable support for generic U-Boot libraries within SPL. These
427 libraries include generic code to deal with device tree, hashing,
428 printf(), compression and the like. This option is enabled on many
429 boards. Enable this option to build the code in lib/ as part of an
430 SPL build.
431
432config SPL_MMC_SUPPORT
433 bool "Support MMC"
Tom Rini226498b2017-05-22 19:21:57 +0000434 depends on MMC
Simon Glass11bde1c2016-09-13 07:05:23 -0600435 help
436 Enable support for MMC (Multimedia Card) within SPL. This enables
437 the MMC protocol implementation and allows any enabled drivers to
438 be used within SPL. MMC can be used with or without disk partition
439 support depending on the application (SPL_LIBDISK_SUPPORT). Enable
440 this option to build the drivers in drivers/mmc as part of an SPL
441 build.
442
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100443config SPL_MMC_WRITE
444 bool "MMC/SD/SDIO card support for write operations in SPL"
445 depends on SPL_MMC_SUPPORT
446 default n
447 help
448 Enable write access to MMC and SD Cards in SPL
449
450
Simon Glass11bde1c2016-09-13 07:05:23 -0600451config SPL_MPC8XXX_INIT_DDR_SUPPORT
452 bool "Support MPC8XXX DDR init"
Simon Glass11bde1c2016-09-13 07:05:23 -0600453 help
454 Enable support for DDR-SDRAM (double-data-rate synchronous dynamic
455 random-access memory) on the MPC8XXX family within SPL. This
456 allows DRAM to be set up before loading U-Boot into that DRAM,
457 where it can run.
458
459config SPL_MTD_SUPPORT
460 bool "Support MTD drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600461 help
462 Enable support for MTD (Memory Technology Device) within SPL. MTD
463 provides a block interface over raw NAND and can also be used with
464 SPI flash. This allows SPL to load U-Boot from supported MTD
465 devices. See SPL_NAND_SUPPORT and SPL_ONENAND_SUPPORT for how
466 to enable specific MTD drivers.
467
468config SPL_MUSB_NEW_SUPPORT
469 bool "Support new Mentor Graphics USB"
Simon Glass11bde1c2016-09-13 07:05:23 -0600470 help
471 Enable support for Mentor Graphics USB in SPL. This is a new
472 driver used by some boards. Enable this option to build
473 the drivers in drivers/usb/musb-new as part of an SPL build. The
474 old drivers are in drivers/usb/musb.
475
476config SPL_NAND_SUPPORT
477 bool "Support NAND flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600478 help
479 Enable support for NAND (Negative AND) flash in SPL. NAND flash
480 can be used to allow SPL to load U-Boot from supported devices.
481 This enables the drivers in drivers/mtd/nand as part of an SPL
482 build.
483
484config SPL_NET_SUPPORT
485 bool "Support networking"
Simon Glass11bde1c2016-09-13 07:05:23 -0600486 help
487 Enable support for network devices (such as Ethernet) in SPL.
488 This permits SPL to load U-Boot over a network link rather than
489 from an on-board peripheral. Environment support is required since
490 the network stack uses a number of environment variables. See also
491 SPL_ETH_SUPPORT.
492
493if SPL_NET_SUPPORT
494config SPL_NET_VCI_STRING
495 string "BOOTP Vendor Class Identifier string sent by SPL"
496 help
497 As defined by RFC 2132 the vendor class identifier field can be
498 sent by the client to identify the vendor type and configuration
499 of a client. This is often used in practice to allow for the DHCP
500 server to specify different files to load depending on if the ROM,
501 SPL or U-Boot itself makes the request
502endif # if SPL_NET_SUPPORT
503
504config SPL_NO_CPU_SUPPORT
505 bool "Drop CPU code in SPL"
Simon Glass11bde1c2016-09-13 07:05:23 -0600506 help
507 This is specific to the ARM926EJ-S CPU. It disables the standard
508 start.S start-up code, presumably so that a replacement can be
509 used on that CPU. You should not enable it unless you know what
510 you are doing.
511
512config SPL_NOR_SUPPORT
513 bool "Support NOR flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600514 help
515 Enable support for loading U-Boot from memory-mapped NOR (Negative
516 OR) flash in SPL. NOR flash is slow to write but fast to read, and
517 a memory-mapped device makes it very easy to access. Loading from
518 NOR is typically achieved with just a memcpy().
519
Vikas Manochac6d9e9d2017-05-28 12:55:11 -0700520config SPL_XIP_SUPPORT
521 bool "Support XIP"
522 depends on SPL
523 help
524 Enable support for execute in place of U-Boot or kernel image. There
525 is no need to copy image from flash to ram if flash supports execute
526 in place. Its very useful in systems having enough flash but not
527 enough ram to load the image.
528
Simon Glass11bde1c2016-09-13 07:05:23 -0600529config SPL_ONENAND_SUPPORT
530 bool "Support OneNAND flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600531 help
532 Enable support for OneNAND (Negative AND) flash in SPL. OneNAND is
533 a type of NAND flash and therefore can be used to allow SPL to
534 load U-Boot from supported devices. This enables the drivers in
535 drivers/mtd/onenand as part of an SPL build.
536
Heiko Schocherc20ae2f2016-10-06 07:55:15 +0200537config SPL_OS_BOOT
538 bool "Activate Falcon Mode"
Tom Rini226498b2017-05-22 19:21:57 +0000539 depends on !TI_SECURE_DEVICE
Heiko Schocherc20ae2f2016-10-06 07:55:15 +0200540 default n
541 help
542 Enable booting directly to an OS from SPL.
543 for more info read doc/README.falcon
544
Heiko Schocher29d3bc72016-10-06 07:55:16 +0200545if SPL_OS_BOOT
546config SYS_OS_BASE
547 hex "addr, where OS is found"
Tom Rini226498b2017-05-22 19:21:57 +0000548 depends on SPL_NOR_SUPPORT
Heiko Schocher29d3bc72016-10-06 07:55:16 +0200549 help
550 Specify the address, where the OS image is found, which
551 gets booted.
552
553endif # SPL_OS_BOOT
554
Simon Glass2446b6b2017-01-16 07:03:30 -0700555config SPL_PCI_SUPPORT
556 bool "Support PCI drivers"
Simon Glass2446b6b2017-01-16 07:03:30 -0700557 help
558 Enable support for PCI in SPL. For platforms that need PCI to boot,
559 or must perform some init using PCI in SPL, this provides the
560 necessary driver support. This enables the drivers in drivers/pci
561 as part of an SPL build.
562
Simon Glassbbe41ab2017-01-16 07:03:33 -0700563config SPL_PCH_SUPPORT
564 bool "Support PCH drivers"
Simon Glassbbe41ab2017-01-16 07:03:33 -0700565 help
566 Enable support for PCH (Platform Controller Hub) devices in SPL.
567 These are used to set up GPIOs and the SPI peripheral early in
568 boot. This enables the drivers in drivers/pch as part of an SPL
569 build.
570
Simon Glass11bde1c2016-09-13 07:05:23 -0600571config SPL_POST_MEM_SUPPORT
572 bool "Support POST drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600573 help
574 Enable support for POST (Power-on Self Test) in SPL. POST is a
575 procedure that checks that the hardware (CPU or board) appears to
576 be functionally correctly. It is a sanity check that can be
577 performed before booting. This enables the drivers in post/drivers
578 as part of an SPL build.
579
Patrick Delaunay0e373c02018-03-12 10:46:05 +0100580config SPL_RESET_SUPPORT
581 bool "Support reset drivers"
582 depends on SPL
583 help
584 Enable support for reset control in SPL.
585 That can be useful in SPL to handle IP reset in driver, as in U-Boot,
586 by using the generic reset API provided by driver model.
587 This enables the drivers in drivers/reset as part of an SPL build.
588
Simon Glass11bde1c2016-09-13 07:05:23 -0600589config SPL_POWER_SUPPORT
590 bool "Support power drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600591 help
592 Enable support for power control in SPL. This includes support
593 for PMICs (Power-management Integrated Circuits) and some of the
594 features provided by PMICs. In particular, voltage regulators can
595 be used to enable/disable power and vary its voltage. That can be
596 useful in SPL to turn on boot peripherals and adjust CPU voltage
597 so that the clock speed can be increased. This enables the drivers
598 in drivers/power, drivers/power/pmic and drivers/power/regulator
599 as part of an SPL build.
600
Stefan Agner22802f42016-12-23 07:51:53 +0100601config SPL_RAM_SUPPORT
602 bool "Support booting from RAM"
Stefan Agner22802f42016-12-23 07:51:53 +0100603 default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ
604 help
605 Enable booting of an image in RAM. The image can be preloaded or
606 it can be loaded by SPL directly into RAM (e.g. using USB).
607
Stefan Agnerf417d402016-12-23 07:51:52 +0100608config SPL_RAM_DEVICE
609 bool "Support booting from preloaded image in RAM"
Stefan Agner22802f42016-12-23 07:51:53 +0100610 depends on SPL_RAM_SUPPORT
Stefan Agnerf417d402016-12-23 07:51:52 +0100611 default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ
612 help
613 Enable booting of an image already loaded in RAM. The image has to
614 be already in memory when SPL takes over, e.g. loaded by the boot
615 ROM.
616
Simon Glass30bf8a02017-01-16 07:03:31 -0700617config SPL_RTC_SUPPORT
618 bool "Support RTC drivers"
Simon Glass30bf8a02017-01-16 07:03:31 -0700619 help
620 Enable RTC (Real-time Clock) support in SPL. This includes support
621 for reading and setting the time. Some RTC devices also have some
622 non-volatile (battery-backed) memory which is accessible if
623 needed. This enables the drivers in drivers/rtc as part of an SPL
624 build.
625
Simon Glass11bde1c2016-09-13 07:05:23 -0600626config SPL_SATA_SUPPORT
627 bool "Support loading from SATA"
Simon Glass11bde1c2016-09-13 07:05:23 -0600628 help
629 Enable support for SATA (Serial AT attachment) in SPL. This allows
630 use of SATA devices such as hard drives and flash drivers for
631 loading U-Boot. SATA is used in higher-end embedded systems and
632 can provide higher performance than MMC , at somewhat higher
633 expense and power consumption. This enables loading from SATA
634 using a configured device.
635
636config SPL_SERIAL_SUPPORT
637 bool "Support serial"
Alex Kiernan14ad44a2018-04-19 04:32:54 +0000638 select SPL_PRINTF
639 select SPL_STRTO
Simon Glass11bde1c2016-09-13 07:05:23 -0600640 help
641 Enable support for serial in SPL. This allows use of a serial UART
642 for displaying messages while SPL is running. It also brings in
643 printf() and panic() functions. This should normally be enabled
644 unless there are space reasons not to. Even then, consider
645 enabling USE_TINY_PRINTF which is a small printf() version.
646
647config SPL_SPI_FLASH_SUPPORT
648 bool "Support SPI flash drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600649 help
650 Enable support for using SPI flash in SPL, and loading U-Boot from
651 SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
652 the SPI bus that is used to connect it to a system. It is a simple
653 but fast bidirectional 4-wire bus (clock, chip select and two data
654 lines). This enables the drivers in drivers/mtd/spi as part of an
655 SPL build. This normally requires SPL_SPI_SUPPORT.
656
Marek Vasut55500432018-04-07 16:05:27 +0200657config SPL_SPI_LOAD
658 bool "Support loading from SPI flash"
659 depends on SPL_SPI_FLASH_SUPPORT
660 help
661 Enable support for loading next stage, U-Boot or otherwise, from
662 SPI NOR in U-Boot SPL.
663
Simon Glass11bde1c2016-09-13 07:05:23 -0600664config SPL_SPI_SUPPORT
665 bool "Support SPI drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600666 help
667 Enable support for using SPI in SPL. This is used for connecting
668 to SPI flash for loading U-Boot. See SPL_SPI_FLASH_SUPPORT for
669 more details on that. The SPI driver provides the transport for
670 data between the SPI flash and the CPU. This option can be used to
671 enable SPI drivers that are needed for other purposes also, such
672 as a SPI PMIC.
673
Faiz Abbas8502f9f2017-11-14 16:12:31 +0530674config SPL_THERMAL
675 bool "Driver support for thermal devices"
676 help
677 Enable support for temperature-sensing devices. Some SoCs have on-chip
678 temperature sensors to permit warnings, speed throttling or even
679 automatic power-off when the temperature gets too high or low. Other
680 devices may be discrete but connected on a suitable bus.
681
Simon Glass11bde1c2016-09-13 07:05:23 -0600682config SPL_USB_HOST_SUPPORT
683 bool "Support USB host drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600684 help
685 Enable access to USB (Universal Serial Bus) host devices so that
686 SPL can load U-Boot from a connected USB peripheral, such as a USB
687 flash stick. While USB takes a little longer to start up than most
688 buses, it is very flexible since many different types of storage
689 device can be attached. This option enables the drivers in
690 drivers/usb/host as part of an SPL build.
691
692config SPL_USB_SUPPORT
693 bool "Support loading from USB"
694 depends on SPL_USB_HOST_SUPPORT
695 help
696 Enable support for USB devices in SPL. This allows use of USB
697 devices such as hard drives and flash drivers for loading U-Boot.
698 The actual drivers are enabled separately using the normal U-Boot
699 config options. This enables loading from USB using a configured
700 device.
701
Stefan Agnere94793c2016-11-21 10:58:53 -0800702config SPL_USB_GADGET_SUPPORT
703 bool "Suppport USB Gadget drivers"
Stefan Agnere94793c2016-11-21 10:58:53 -0800704 help
705 Enable USB Gadget API which allows to enable USB device functions
706 in SPL.
707
708if SPL_USB_GADGET_SUPPORT
709
Faiz Abbasb432b1e2018-02-16 21:17:44 +0530710config SPL_USB_ETHER
Stefan Agnere94793c2016-11-21 10:58:53 -0800711 bool "Support USB Ethernet drivers"
712 help
713 Enable access to the USB network subsystem and associated
714 drivers in SPL. This permits SPL to load U-Boot over a
715 USB-connected Ethernet link (such as a USB Ethernet dongle) rather
716 than from an onboard peripheral. Environment support is required
717 since the network stack uses a number of environment variables.
718 See also SPL_NET_SUPPORT and SPL_ETH_SUPPORT.
719
Stefan Agner59917032016-11-21 10:58:52 -0800720config SPL_DFU_SUPPORT
721 bool "Support DFU (Device Firmware Upgarde)"
Stefan Agner59917032016-11-21 10:58:52 -0800722 select SPL_HASH_SUPPORT
B, Ravi66928af2017-05-04 15:45:29 +0530723 select SPL_DFU_NO_RESET
B, Ravi1b19cbd2017-05-04 15:45:28 +0530724 depends on SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -0800725 help
726 This feature enables the DFU (Device Firmware Upgarde) in SPL with
727 RAM memory device support. The ROM code will load and execute
728 the SPL built with dfu. The user can load binaries (u-boot/kernel) to
729 selected device partition from host-pc using dfu-utils.
730 This feature is useful to flash the binaries to factory or bare-metal
731 boards using USB interface.
732
733choice
734 bool "DFU device selection"
735 depends on SPL_DFU_SUPPORT
736
737config SPL_DFU_RAM
738 bool "RAM device"
Stefan Agner22802f42016-12-23 07:51:53 +0100739 depends on SPL_DFU_SUPPORT && SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -0800740 help
741 select RAM/DDR memory device for loading binary images
742 (u-boot/kernel) to the selected device partition using
743 DFU and execute the u-boot/kernel from RAM.
744
745endchoice
746
Stefan Agnera3774c12017-08-16 11:00:54 -0700747config SPL_USB_SDP_SUPPORT
748 bool "Support SDP (Serial Download Protocol)"
749 help
750 Enable Serial Download Protocol (SDP) device support in SPL. This
751 allows to download images into memory and execute (jump to) them
752 using the same protocol as implemented by the i.MX family's boot ROM.
Stefan Agnere94793c2016-11-21 10:58:53 -0800753endif
754
Simon Glass11bde1c2016-09-13 07:05:23 -0600755config SPL_WATCHDOG_SUPPORT
756 bool "Support watchdog drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600757 help
758 Enable support for watchdog drivers in SPL. A watchdog is
759 typically a hardware peripheral which can reset the system when it
760 detects no activity for a while (such as a software crash). This
761 enables the drivers in drivers/watchdog as part of an SPL build.
762
763config SPL_YMODEM_SUPPORT
764 bool "Support loading using Ymodem"
Alex Kiernan3bac19c2018-04-19 04:32:52 +0000765 depends on SPL_SERIAL_SUPPORT
Simon Glass11bde1c2016-09-13 07:05:23 -0600766 help
767 While loading from serial is slow it can be a useful backup when
768 there is no other option. The Ymodem protocol provides a reliable
769 means of transmitting U-Boot over a serial line for using in SPL,
770 with a checksum to ensure correctness.
771
Philipp Tomsichaa122f62017-09-13 21:29:36 +0200772config SPL_ATF
Kever Yangbcc17262017-05-05 11:47:45 +0800773 bool "Support ARM Trusted Firmware"
Tom Rini226498b2017-05-22 19:21:57 +0000774 depends on ARM64
Kever Yangbcc17262017-05-05 11:47:45 +0800775 help
Philipp Tomsichd21fb632018-01-02 21:16:43 +0100776 ATF(ARM Trusted Firmware) is a component for ARM AArch64 which
777 is loaded by SPL (which is considered as BL2 in ATF terminology).
Kever Yangbcc17262017-05-05 11:47:45 +0800778 More detail at: https://github.com/ARM-software/arm-trusted-firmware
779
Philipp Tomsichd21fb632018-01-02 21:16:43 +0100780config SPL_ATF_NO_PLATFORM_PARAM
781 bool "Pass no platform parameter"
782 depends on SPL_ATF
783 help
784 While we expect to call a pointer to a valid FDT (or NULL)
785 as the platform parameter to an ATF, some ATF versions are
786 not U-Boot aware and have an insufficiently robust parameter
787 validation to gracefully reject a FDT being passed.
788
789 If this option is enabled, the spl_atf os-type handler will
790 always pass NULL for the platform parameter.
791
792 If your ATF is affected, say Y.
793
Alex Kiernan3bf5f132018-03-15 22:11:46 +0000794config SPL_AM33XX_ENABLE_RTC32K_OSC
795 bool "Enable the RTC32K OSC on AM33xx based platforms"
796 default y if AM33XX
797 help
798 Enable access to the AM33xx RTC and select the external 32kHz clock
799 source.
800
Tom Rini226498b2017-05-22 19:21:57 +0000801config TPL
802 bool
803 depends on SUPPORT_TPL
804 prompt "Enable TPL"
805 help
806 If you want to build TPL as well as the normal image and SPL, say Y.
807
808if TPL
809
Kever Yangaf2f4422018-01-20 18:00:26 +0800810config TPL_BOARD_INIT
811 bool "Call board-specific initialization in TPL"
812 help
813 If this option is enabled, U-Boot will call the function
814 spl_board_init() from board_init_r(). This function should be
815 provided by the board.
816
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +0200817config TPL_LDSCRIPT
818 string "Linker script for the TPL stage"
819 depends on TPL
820 help
821 The TPL stage will usually require a different linker-script
822 (as it runs from a different memory region) than the regular
823 U-Boot stage. Set this to the path of the linker-script to
824 be used for TPL.
825
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +0200826 May be left empty to trigger the Makefile infrastructure to
827 fall back to the linker-script used for the SPL stage.
828
829config TPL_NEEDS_SEPARATE_TEXT_BASE
830 bool "TPL needs a separate text-base"
831 default n
832 depends on TPL
833 help
834 Enable, if the TPL stage should not inherit its text-base
835 from the SPL stage. When enabled, a base address for the
836 .text sections of the TPL stage has to be set below.
837
838config TPL_NEEDS_SEPARATE_STACK
839 bool "TPL needs a separate initial stack-pointer"
840 default n
841 depends on TPL
842 help
843 Enable, if the TPL stage should not inherit its initial
844 stack-pointer from the settings for the SPL stage.
845
846config TPL_TEXT_BASE
847 hex "Base address for the .text section of the TPL stage"
848 depends on TPL_NEEDS_SEPARATE_TEXT_BASE
849 help
850 The base address for the .text section of the TPL stage.
851
852config TPL_MAX_SIZE
853 int "Maximum size (in bytes) for the TPL stage"
Philipp Tomsich5aa49af2017-07-28 20:20:41 +0200854 default 0
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +0200855 depends on TPL
856 help
857 The maximum size (in bytes) of the TPL stage.
858
859config TPL_STACK
860 hex "Address of the initial stack-pointer for the TPL stage"
861 depends on TPL_NEEDS_SEPARATE_STACK
862 help
863 The address of the initial stack-pointer for the TPL stage.
864 Usually this will be the (aligned) top-of-stack.
865
Philipp Tomsicha954fa32017-07-04 14:24:53 +0200866config TPL_BOOTROM_SUPPORT
867 bool "Support returning to the BOOTROM (from TPL)"
868 help
869 Some platforms (e.g. the Rockchip RK3368) provide support in their
870 ROM for loading the next boot-stage after performing basic setup
871 from the TPL stage.
872
873 Enable this option, to return to the BOOTROM through the
874 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
875 boot device list, if not implemented for a given board)
876
Philipp Tomsichc3916e72017-07-04 14:27:02 +0200877config TPL_DRIVERS_MISC_SUPPORT
878 bool "Support misc drivers in TPL"
879 help
880 Enable miscellaneous drivers in TPL. These drivers perform various
881 tasks that don't fall nicely into other categories, Enable this
882 option to build the drivers in drivers/misc as part of an TPL
883 build, for those that support building in TPL (not all drivers do).
884
Simon Glassf73329e2016-09-12 23:18:27 -0600885config TPL_ENV_SUPPORT
886 bool "Support an environment"
Simon Glassf73329e2016-09-12 23:18:27 -0600887 help
888 Enable environment support in TPL. See SPL_ENV_SUPPORT for details.
889
890config TPL_I2C_SUPPORT
891 bool "Support I2C"
Simon Glassf73329e2016-09-12 23:18:27 -0600892 help
Philipp Tomsich616bd092017-07-28 17:03:03 +0200893 Enable support for the I2C bus in TPL. See SPL_I2C_SUPPORT for
Simon Glassf73329e2016-09-12 23:18:27 -0600894 details.
895
896config TPL_LIBCOMMON_SUPPORT
897 bool "Support common libraries"
Simon Glassf73329e2016-09-12 23:18:27 -0600898 help
899 Enable support for common U-Boot libraries within TPL. See
900 SPL_LIBCOMMON_SUPPORT for details.
901
902config TPL_LIBGENERIC_SUPPORT
903 bool "Support generic libraries"
Simon Glassf73329e2016-09-12 23:18:27 -0600904 help
905 Enable support for generic U-Boot libraries within TPL. See
906 SPL_LIBGENERIC_SUPPORT for details.
907
908config TPL_MPC8XXX_INIT_DDR_SUPPORT
909 bool "Support MPC8XXX DDR init"
Simon Glassf73329e2016-09-12 23:18:27 -0600910 help
911 Enable support for DDR-SDRAM on the MPC8XXX family within TPL. See
912 SPL_MPC8XXX_INIT_DDR_SUPPORT for details.
913
914config TPL_MMC_SUPPORT
915 bool "Support MMC"
Tom Rini226498b2017-05-22 19:21:57 +0000916 depends on MMC
Simon Glassf73329e2016-09-12 23:18:27 -0600917 help
918 Enable support for MMC within TPL. See SPL_MMC_SUPPORT for details.
919
920config TPL_NAND_SUPPORT
921 bool "Support NAND flash"
Simon Glassf73329e2016-09-12 23:18:27 -0600922 help
Philipp Tomsich616bd092017-07-28 17:03:03 +0200923 Enable support for NAND in TPL. See SPL_NAND_SUPPORT for details.
Simon Glassf73329e2016-09-12 23:18:27 -0600924
Marek Vasutd79dfd42018-04-07 17:03:45 +0200925config TPL_RAM_SUPPORT
926 bool "Support booting from RAM"
927 help
928 Enable booting of an image in RAM. The image can be preloaded or
929 it can be loaded by TPL directly into RAM (e.g. using USB).
930
931config TPL_RAM_DEVICE
932 bool "Support booting from preloaded image in RAM"
933 depends on TPL_RAM_SUPPORT
934 help
935 Enable booting of an image already loaded in RAM. The image has to
936 be already in memory when TPL takes over, e.g. loaded by the boot
937 ROM.
938
Simon Glassf73329e2016-09-12 23:18:27 -0600939config TPL_SERIAL_SUPPORT
940 bool "Support serial"
Alex Kiernan14ad44a2018-04-19 04:32:54 +0000941 select TPL_PRINTF
942 select TPL_STRTO
Simon Glassf73329e2016-09-12 23:18:27 -0600943 help
Philipp Tomsich616bd092017-07-28 17:03:03 +0200944 Enable support for serial in TPL. See SPL_SERIAL_SUPPORT for
Simon Glassf73329e2016-09-12 23:18:27 -0600945 details.
946
947config TPL_SPI_FLASH_SUPPORT
948 bool "Support SPI flash drivers"
Simon Glassf73329e2016-09-12 23:18:27 -0600949 help
Philipp Tomsich616bd092017-07-28 17:03:03 +0200950 Enable support for using SPI flash in TPL. See SPL_SPI_FLASH_SUPPORT
Simon Glassf73329e2016-09-12 23:18:27 -0600951 for details.
952
Marek Vasut1e725e22018-04-07 16:05:46 +0200953config TPL_SPI_LOAD
954 bool "Support loading from SPI flash"
955 depends on TPL_SPI_FLASH_SUPPORT
956 help
957 Enable support for loading next stage, U-Boot or otherwise, from
958 SPI NOR in U-Boot TPL.
959
Simon Glassf73329e2016-09-12 23:18:27 -0600960config TPL_SPI_SUPPORT
961 bool "Support SPI drivers"
Simon Glassf73329e2016-09-12 23:18:27 -0600962 help
Philipp Tomsich616bd092017-07-28 17:03:03 +0200963 Enable support for using SPI in TPL. See SPL_SPI_SUPPORT for
Simon Glassf73329e2016-09-12 23:18:27 -0600964 details.
965
Marek Vasut6ce3d672018-04-07 16:06:11 +0200966config TPL_YMODEM_SUPPORT
967 bool "Support loading using Ymodem"
Alex Kiernan3bac19c2018-04-19 04:32:52 +0000968 depends on TPL_SERIAL_SUPPORT
Marek Vasut6ce3d672018-04-07 16:06:11 +0200969 help
970 While loading from serial is slow it can be a useful backup when
971 there is no other option. The Ymodem protocol provides a reliable
972 means of transmitting U-Boot over a serial line for using in TPL,
973 with a checksum to ensure correctness.
974
Tom Rini226498b2017-05-22 19:21:57 +0000975endif # TPL
976
977endif # SPL
Simon Glass11bde1c2016-09-13 07:05:23 -0600978endmenu