b45607b3f758a4a02ac0f4ab6343fab2d3d962c8
[platform/kernel/u-boot.git] / common / spl / Kconfig
1 menu "SPL / TPL / VPL"
2
3 config SUPPORT_SPL
4         bool
5
6 config SUPPORT_TPL
7         bool
8
9 config SUPPORT_VPL
10         bool
11
12 config SPL_DFU_NO_RESET
13         bool
14
15 config SPL
16         bool
17         depends on SUPPORT_SPL
18         prompt "Enable SPL"
19         help
20           If you want to build SPL as well as the normal image, say Y.
21
22 config SPL_FRAMEWORK
23         bool "Support SPL based upon the common SPL framework"
24         depends on SPL
25         default y
26         help
27           Enable the SPL framework under common/spl/.  This framework
28           supports MMC, NAND and YMODEM and other methods loading of U-Boot
29           and the Linux Kernel.  If unsure, say Y.
30
31 config SPL_FRAMEWORK_BOARD_INIT_F
32         bool "Define a generic function board_init_f"
33         depends on SPL_FRAMEWORK
34         help
35           Define a generic function board_init_f that:
36           - initialize the spl (spl_early_init)
37           - initialize the serial (preloader_console_init)
38           Unless you want to provide your own board_init_f, you should say Y.
39
40 config SPL_SIZE_LIMIT
41         hex "Maximum size of SPL image"
42         depends on SPL
43         default 0x11000 if ARCH_MX6 && !MX6_OCRAM_256KB
44         default 0x31000 if ARCH_MX6 && MX6_OCRAM_256KB
45         default 0x0
46         help
47           Specifies the maximum length of the U-Boot SPL image.
48           If this value is zero, it is ignored.
49
50 config SPL_SIZE_LIMIT_SUBTRACT_GD
51         bool "SPL image size check: provide space for global data"
52         depends on SPL_SIZE_LIMIT > 0
53         help
54           If enabled, aligned size of global data is reserved in
55           SPL_SIZE_LIMIT check to ensure such an image does not overflow SRAM
56           if SPL_SIZE_LIMIT describes the size of SRAM available for SPL when
57           pre-reloc global data is put into this SRAM, too.
58
59 config SPL_SIZE_LIMIT_SUBTRACT_MALLOC
60         bool "SPL image size check: provide space for malloc() pool before relocation"
61         depends on SPL_SIZE_LIMIT > 0
62         help
63           If enabled, SPL_SYS_MALLOC_F_LEN is reserved in SPL_SIZE_LIMIT check
64           to ensure such an image does not overflow SRAM if SPL_SIZE_LIMIT
65           describes the size of SRAM available for SPL when pre-reloc malloc
66           pool is put into this SRAM, too.
67
68 config SPL_SIZE_LIMIT_PROVIDE_STACK
69         hex "SPL image size check: provide stack space before relocation"
70         depends on SPL_SIZE_LIMIT > 0
71         default 0
72         help
73           If set, this size is reserved in SPL_SIZE_LIMIT check to ensure such
74           an image does not overflow SRAM if SPL_SIZE_LIMIT describes the size
75           of SRAM available for SPL when the stack required before reolcation
76           uses this SRAM, too.
77
78 config SPL_SYS_STACK_F_CHECK_BYTE
79         hex
80         default 0xaa
81         help
82           Constant used to check the stack
83
84 config SPL_SYS_REPORT_STACK_F_USAGE
85         depends on SPL_SIZE_LIMIT_PROVIDE_STACK != 0
86         bool "Check and report stack usage in SPL before relocation"
87         help
88           If this option is enabled, the initial SPL stack is filled with 0xaa
89           very early, up to the size configured with
90           SPL_SIZE_LIMIT_PROVIDE_STACK.
91           Later when SPL is done using this initial stack and switches to a
92           stack in DRAM, the actually used size of this initial stack is
93           reported by examining the memory and searching for the lowest
94           occurrence of non 0xaa bytes.
95           This default implementation works for stacks growing down only.
96
97 config SPL_SHOW_ERRORS
98         bool "Show more information when something goes wrong"
99         help
100           This enabled more verbose error messages and checking when something
101           goes wrong in SPL. For example, it shows the error code when U-Boot
102           cannot be located. This can help to diagnose the problem and figure
103           out a fix, particularly during development.
104
105           This adds a small amount to SPL code size, perhaps 100 bytes.
106
107 config SPL_BINMAN_SYMBOLS
108         bool "Declare binman symbols in SPL"
109         depends on SPL_FRAMEWORK && BINMAN
110         default y
111         help
112           This enables use of symbols in SPL which refer to U-Boot, enabling SPL
113           to obtain the location of U-Boot simply by calling spl_get_image_pos()
114           and spl_get_image_size().
115
116           For this to work, you must have a U-Boot image in the binman image, so
117           binman can update SPL with the location of it.
118
119 menu "PowerPC and LayerScape SPL Boot options"
120
121 config SPL_NAND_BOOT
122         bool "Load SPL from NAND flash"
123         depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK)
124
125 config SPL_MMC_BOOT
126         bool "Load SPL from SD Card / eMMC"
127         depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK)
128
129 config SPL_SPI_BOOT
130         bool "Load SPL from SPI flash"
131         depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK)
132
133 config SPL_FSL_PBL
134         bool "Create SPL in Freescale PBI format"
135         depends on (PPC || ARCH_LS1021A || ARCH_LS1043A || ARCH_LS1046A) && \
136                     SUPPORT_SPL
137         help
138           Create boot binary having SPL binary in PBI format concatenated with
139           u-boot binary.
140
141 endmenu
142
143 menu "PowerPC SPL specific options"
144         depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK)
145
146 config SPL_INIT_MINIMAL
147         bool "Arch init code will be built for a very small image"
148
149 config SPL_FLUSH_IMAGE
150         bool "Clean dcache and invalidate icache after loading the image"
151
152 config SPL_SKIP_RELOCATE
153         bool "Skip relocating SPL"
154
155 endmenu
156
157 config HANDOFF
158         bool "Pass hand-off information from SPL to U-Boot proper"
159         depends on SPL && BLOBLIST
160         help
161           It is useful to be able to pass information from SPL to U-Boot
162           proper to preserve state that is known in SPL and is needed in U-Boot.
163           Enable this to locate the handoff information in U-Boot proper, early
164           in boot. It is available in gd->handoff. The state state is set up
165           in SPL (or TPL if that is being used).
166
167 if SPL
168
169 config SPL_HANDOFF
170         bool "Pass hand-off information from SPL to U-Boot proper"
171         depends on HANDOFF && SPL_BLOBLIST
172         default y
173         help
174           This option enables SPL to write handoff information. This can be
175           used to pass information like the size of SDRAM from SPL to U-Boot
176           proper. Also SPL can receive information from TPL in the same place
177           if that is enabled.
178
179 config SPL_LDSCRIPT
180         string "Linker script for the SPL stage"
181         default "arch/\$(ARCH)/cpu/u-boot-spl.lds"
182         help
183           The SPL stage will usually require a different linker-script
184           (as it runs from a different memory region) than the regular
185           U-Boot stage.  Set this to the path of the linker-script to
186           be used for SPL.
187
188 config SPL_TEXT_BASE
189         hex "SPL Text Base"
190         default ISW_ENTRY_ADDR if AM43XX || AM33XX || OMAP54XX || ARCH_KEYSTONE
191         default 0x10060 if MACH_SUN50I || MACH_SUN50I_H5 || MACH_SUN9I
192         default 0x20060 if SUN50I_GEN_H6
193         default 0x00060 if ARCH_SUNXI
194         default 0xfffc0000 if ARCH_ZYNQMP
195         default 0x0
196         help
197           The address in memory that SPL will be running from.
198
199 config SPL_BOARD_INIT
200         bool "Call board-specific initialization in SPL"
201         help
202           If this option is enabled, U-Boot will call the function
203           spl_board_init() from board_init_r(). This function should be
204           provided by the board.
205
206 config VPL_BOARD_INIT
207         bool "Call board-specific initialization in VPL"
208         help
209           If this option is enabled, U-Boot will call the function
210           spl_board_init() from board_init_r(). This function should be
211           provided by the board.
212
213 config SPL_BOOTROM_SUPPORT
214         bool "Support returning to the BOOTROM"
215         help
216           Some platforms (e.g. the Rockchip RK3368) provide support in their
217           ROM for loading the next boot-stage after performing basic setup
218           from the SPL stage.
219
220           Enable this option, to return to the BOOTROM through the
221           BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
222           boot device list, if not implemented for a given board)
223
224 config SPL_BOOTCOUNT_LIMIT
225         bool "Support bootcount in SPL"
226         depends on SPL_ENV_SUPPORT && !TPL_BOOTCOUNT_LIMIT
227         help
228           On some boards, which use 'falcon' mode, it is necessary to check
229           and increment the number of boot attempts. Such boards do not
230           use proper U-Boot for normal boot flow and hence needs those
231           adjustments to be done in the SPL.
232
233 config SPL_RAW_IMAGE_SUPPORT
234         bool "Support SPL loading and booting of RAW images"
235         default n if (ARCH_MX6 && (SPL_MMC || SPL_SATA))
236         default y
237         depends on !TI_SECURE_DEVICE
238         help
239           SPL will support loading and booting a RAW image when this option
240           is y. If this is not set, SPL will move on to other available
241           boot media to find a suitable image.
242
243 config SPL_LEGACY_IMAGE_FORMAT
244         bool "Support SPL loading and booting of Legacy images"
245         default y if !SPL_LOAD_FIT
246         depends on !TI_SECURE_DEVICE
247         help
248           SPL will support loading and booting Legacy images when this option
249           is y. If this is not set, SPL will move on to other available
250           boot media to find a suitable image.
251
252 config SPL_LEGACY_IMAGE_CRC_CHECK
253         bool "Check CRC of Legacy images"
254         depends on SPL_LEGACY_IMAGE_FORMAT
255         select SPL_CRC32
256         help
257           Enable this to check the CRC of Legacy images. While this increases
258           reliability, it affects both code size and boot duration.
259           If disabled, Legacy images are booted if the image magic and size
260           are correct, without further integrity checks.
261
262 config SPL_SYS_MALLOC_SIMPLE
263         bool
264         prompt "Only use malloc_simple functions in the SPL"
265         help
266           Say Y here to only use the *_simple malloc functions from
267           malloc_simple.c, rather then using the versions from dlmalloc.c;
268           this will make the SPL binary smaller at the cost of more heap
269           usage as the *_simple malloc functions do not re-use free-ed mem.
270
271 config TPL_SYS_MALLOC_SIMPLE
272         bool
273         prompt "Only use malloc_simple functions in the TPL"
274         depends on TPL
275         help
276           Say Y here to only use the *_simple malloc functions from
277           malloc_simple.c, rather then using the versions from dlmalloc.c;
278           this will make the TPL binary smaller at the cost of more heap
279           usage as the *_simple malloc functions do not re-use free-ed mem.
280
281 config SPL_STACK_R
282         bool "Enable SDRAM location for SPL stack"
283         help
284           SPL starts off execution in SRAM and thus typically has only a small
285           stack available. Since SPL sets up DRAM while in its board_init_f()
286           function, it is possible for the stack to move there before
287           board_init_r() is reached. This option enables a special SDRAM
288           location for the SPL stack. U-Boot SPL switches to this after
289           board_init_f() completes, and before board_init_r() starts.
290
291 config SPL_STACK_R_ADDR
292         depends on SPL_STACK_R
293         hex "SDRAM location for SPL stack"
294         default 0x82000000 if ARCH_OMAP2PLUS
295         help
296           Specify the address in SDRAM for the SPL stack. This will be set up
297           before board_init_r() is called.
298
299 config SPL_STACK_R_MALLOC_SIMPLE_LEN
300         depends on SPL_STACK_R && SPL_SYS_MALLOC_SIMPLE
301         hex "Size of malloc_simple heap after switching to DRAM SPL stack"
302         default 0x100000
303         help
304           Specify the amount of the stack to use as memory pool for
305           malloc_simple after switching the stack to DRAM. This may be set
306           to give board_init_r() a larger heap then the initial heap in
307           SRAM which is limited to SYS_MALLOC_F_LEN bytes.
308
309 config SPL_SEPARATE_BSS
310         bool "BSS section is in a different memory region from text"
311         help
312           Some platforms need a large BSS region in SPL and can provide this
313           because RAM is already set up. In this case BSS can be moved to RAM.
314           This option should then be enabled so that the correct device tree
315           location is used. Normally we put the device tree at the end of BSS
316           but with this option enabled, it goes at _image_binary_end.
317
318 config SPL_READ_ONLY
319         bool
320         depends on SPL_OF_PLATDATA
321         # Bind cannot be supported because the udevice structs are in read-only
322         # memory so we cannot update the linked lists.
323         select SPL_OF_PLATDATA_NO_BIND
324         select SPL_OF_PLATDATA_RT
325         help
326           Some platforms (e.g. x86 Apollo Lake) load SPL into a read-only
327           section of memory. This means that of-platdata must make a copy (in
328           writeable memory) of anything it wants to modify, such as
329           device-private data.
330
331 config TPL_SEPARATE_BSS
332         bool "BSS section is in a different memory region from text"
333         default y if SPL_SEPARATE_BSS
334         help
335           Some platforms need a large BSS region in TPL and can provide this
336           because RAM is already set up. In this case BSS can be moved to RAM.
337           This option should then be enabled so that the correct device tree
338           location is used. Normally we put the device tree at the end of BSS
339           but with this option enabled, it goes at _image_binary_end.
340
341 config SPL_BANNER_PRINT
342         bool "Enable output of the SPL banner 'U-Boot SPL ...'"
343         default y
344         help
345           If this option is enabled, SPL will print the banner with version
346           info. Disabling this option could be useful to reduce SPL boot time
347           (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
348
349 config TPL_BANNER_PRINT
350         bool "Enable output of the TPL banner 'U-Boot TPL ...'"
351         depends on TPL
352         default y
353         help
354           If this option is enabled, TPL will print the banner with version
355           info. Disabling this option could be useful to reduce TPL boot time
356           (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
357
358 config SPL_EARLY_BSS
359         depends on ARM && !ARM64
360         bool "Allows initializing BSS early before entering board_init_f"
361         help
362           On some platform we have sufficient memory available early on to
363           allow setting up and using a basic BSS prior to entering
364           board_init_f. Activating this option will also de-activate the
365           clearing of BSS during the SPL relocation process, thus allowing
366           to carry state from board_init_f to board_init_r by way of BSS.
367
368 config SPL_DISPLAY_PRINT
369         bool "Display a board-specific message in SPL"
370         help
371           If this option is enabled, U-Boot will call the function
372           spl_display_print() immediately after displaying the SPL console
373           banner ("U-Boot SPL ..."). This function should be provided by
374           the board.
375
376 config SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
377         bool "MMC raw mode: by sector"
378         default y if ARCH_SUNXI || ARCH_DAVINCI || ARCH_UNIPHIER || \
379                      ARCH_MX6 || ARCH_MX7 || \
380                      ARCH_ROCKCHIP || ARCH_MVEBU ||  ARCH_SOCFPGA || \
381                      ARCH_AT91 || ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || \
382                      OMAP44XX || OMAP54XX || AM33XX || AM43XX || \
383                      TARGET_SIFIVE_UNLEASHED || TARGET_SIFIVE_UNMATCHED
384         help
385           Use sector number for specifying U-Boot location on MMC/SD in
386           raw mode.
387
388 config SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR
389         hex "Address on the MMC to load U-Boot from"
390         depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
391         default 0x40 if ARCH_SUNXI
392         default 0x75 if ARCH_DAVINCI
393         default 0x8a if ARCH_MX6 || ARCH_MX7
394         default 0x100 if ARCH_UNIPHIER
395         default 0x0 if ARCH_MVEBU
396         default 0x200 if ARCH_SOCFPGA || ARCH_AT91
397         default 0x300 if ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || OMAP44XX || \
398                          OMAP54XX || AM33XX || AM43XX || ARCH_K3
399         default 0x4000 if ARCH_ROCKCHIP
400         default 0x822 if TARGET_SIFIVE_UNLEASHED || TARGET_SIFIVE_UNMATCHED
401         help
402           Address on the MMC to load U-Boot from, when the MMC is being used
403           in raw mode. Units: MMC sectors (1 sector = 512 bytes).
404
405 config SYS_MMCSD_RAW_MODE_U_BOOT_DATA_PART_OFFSET
406         hex "U-Boot main hardware partition image offset"
407         depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
408         default 0x10 if ARCH_SUNXI
409         default 0x0
410         help
411           On some platforms SPL location depends on hardware partition. The ROM
412           code skips the MBR sector when loading SPL from main hardware data
413           partition. This adds offset to the main U-Boot image. Set this symbol
414           to the number of skipped sectors.
415
416           If unsure, leave the default.
417
418 config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
419         bool "MMC Raw mode: by partition"
420         help
421           Use a partition for loading U-Boot when using MMC/SD in raw mode.
422
423 config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION
424         hex "Partition to use to load U-Boot from"
425         depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
426         default 1
427         help
428           Partition on the MMC to load U-Boot from when the MMC is being
429           used in raw mode
430
431 config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
432         bool "MMC raw mode: by partition type"
433         depends on DOS_PARTITION && SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
434         help
435           Use partition type for specifying U-Boot partition on MMC/SD in
436           raw mode. U-Boot will be loaded from the first partition of this
437           type to be found.
438
439 config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_TYPE
440         hex "Partition Type on the MMC to load U-Boot from"
441         depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
442         help
443           Partition Type on the MMC to load U-Boot from, when the MMC is being
444           used in raw mode.
445
446 config SUPPORT_EMMC_BOOT_OVERRIDE_PART_CONFIG
447         bool "Override eMMC EXT_CSC_PART_CONFIG by user defined partition"
448         depends on SUPPORT_EMMC_BOOT
449         help
450           eMMC boot partition is normally configured by the bits of the EXT_CSD
451           register (EXT_CSC_PART_CONFIG), BOOT_PARTITION_ENABLE field. In some
452           cases it might be required in SPL to load the image from different
453           partition than the partition selected by EXT_CSC_PART_CONFIG register.
454           Enable this option if you intend to use an eMMC boot partition other
455           then selected via EXT_CSC_PART_CONFIG register and specify the custom
456           partition number by the CONFIG_SYS_MMCSD_RAW_MODE_EMMC_BOOT_PARTITION
457           option.
458
459 config SYS_MMCSD_RAW_MODE_EMMC_BOOT_PARTITION
460         int "Number of the eMMC boot partition to use"
461         depends on SUPPORT_EMMC_BOOT_OVERRIDE_PART_CONFIG
462         default 1
463         help
464           eMMC boot partition number to use when the eMMC in raw mode and
465           the eMMC EXT_CSC_PART_CONFIG selection should be overridden in SPL
466           by user defined partition number.
467
468 config SPL_CRC32
469         bool "Support CRC32"
470         default y if SPL_LEGACY_IMAGE_FORMAT || SPL_EFI_PARTITION
471         default y if SPL_ENV_SUPPORT || TPL_BLOBLIST
472         help
473           Enable this to support CRC32 in uImages or FIT images within SPL.
474           This is a 32-bit checksum value that can be used to verify images.
475           For FIT images, this is the least secure type of checksum, suitable
476           for detected accidental image corruption. For secure applications you
477           should consider SHA1 or SHA256.
478
479 config SPL_MD5
480         bool "Support MD5"
481         depends on SPL_FIT
482         help
483           Enable this to support MD5 in FIT images within SPL. An MD5
484           checksum is a 128-bit hash value used to check that the image
485           contents have not been corrupted. Note that MD5 is not considered
486           secure as it is possible (with a brute-force attack) to adjust the
487           image while still retaining the same MD5 hash value. For secure
488           applications where images may be changed maliciously, you should
489           consider SHA256 or SHA384.
490
491 config SPL_FIT_IMAGE_TINY
492         bool "Remove functionality from SPL FIT loading to reduce size"
493         depends on SPL_FIT
494         default y if MACH_SUN50I || MACH_SUN50I_H5 || SUN50I_GEN_H6
495         default y if ARCH_IMX8M
496         help
497           Enable this to reduce the size of the FIT image loading code
498           in SPL, if space for the SPL binary is very tight.
499
500           This skips the recording of each loaded payload
501           (i.e. loadable) into the FDT (modifying the loaded FDT to
502           ensure this information is available to the next image
503           invoked).
504
505 config SPL_CACHE
506         bool "Support CACHE drivers"
507         help
508           Enable CACHE drivers in SPL. These drivers can keep data so that
509           future requests for that data can be served faster. Enable this option
510           to build the drivers in drivers/cache as part of an SPL build.
511
512 config SPL_CPU
513         bool "Support CPU drivers"
514         help
515           Enable this to support CPU drivers in SPL. These drivers can set
516           up CPUs and provide information about them such as the model and
517           name. This can be useful in SPL since setting up the CPUs earlier
518           may improve boot performance. Enable this option to build the
519           drivers in drivers/cpu as part of an SPL build.
520
521 config SPL_CRYPTO
522         bool "Support crypto drivers"
523         help
524           Enable crypto drivers in SPL. These drivers can be used to
525           accelerate secure boot processing in secure applications. Enable
526           this option to build the drivers in drivers/crypto as part of an
527           SPL build.
528
529 config SPL_DMA
530         bool "Support DMA drivers"
531         help
532           Enable DMA (direct-memory-access) drivers in SPL. These drivers
533           can be used to handle memory-to-peripheral data transfer without
534           the CPU moving the data. Enable this option to build the drivers
535           in drivers/dma as part of an SPL build.
536
537 config SPL_DRIVERS_MISC
538         bool "Support misc drivers"
539         help
540           Enable miscellaneous drivers in SPL. These drivers perform various
541           tasks that don't fall nicely into other categories, Enable this
542           option to build the drivers in drivers/misc as part of an SPL
543           build, for those that support building in SPL (not all drivers do).
544
545 config SPL_ENV_SUPPORT
546         bool "Support an environment"
547         help
548           Enable environment support in SPL. The U-Boot environment provides
549           a number of settings (essentially name/value pairs) which can
550           control many aspects of U-Boot's operation. Normally this is not
551           needed in SPL as it has a much simpler task with less
552           configuration. But some boards use this to support 'Falcon' boot
553           on EXT2 and FAT, where SPL boots directly into Linux without
554           starting U-Boot first. Enabling this option will make env_get()
555           and env_set() available in SPL.
556
557 config SPL_SAVEENV
558         bool "Support save environment"
559         depends on SPL_ENV_SUPPORT
560         select SPL_MMC_WRITE if ENV_IS_IN_MMC
561         help
562           Enable save environment support in SPL after setenv. By default
563           the saveenv option is not provided in SPL, but some boards need
564           this support in 'Falcon' boot, where SPL need to boot from
565           different images based on environment variable set by OS. For
566           example OS may set "reboot_image" environment variable to
567           "recovery" inorder to boot recovery image by SPL. The SPL read
568           "reboot_image" and act accordingly and change the reboot_image
569           to default mode using setenv and save the environment.
570
571 config SPL_ETH
572         bool "Support Ethernet"
573         depends on SPL_ENV_SUPPORT
574         depends on SPL_NET
575         help
576           Enable access to the network subsystem and associated Ethernet
577           drivers in SPL. This permits SPL to load U-Boot over an Ethernet
578           link rather than from an on-board peripheral. Environment support
579           is required since the network stack uses a number of environment
580           variables. See also SPL_NET.
581
582 config SPL_FS_EXT4
583         bool "Support EXT filesystems"
584         help
585           Enable support for EXT2/3/4 filesystems with SPL. This permits
586           U-Boot (or Linux in Falcon mode) to be loaded from an EXT
587           filesystem from within SPL. Support for the underlying block
588           device (e.g. MMC or USB) must be enabled separately.
589
590 config SPL_FS_SQUASHFS
591         bool "Support SquashFS filesystems"
592         select FS_SQUASHFS
593         help
594           Enable support for SquashFS filesystems with SPL. This permits
595           U-Boot (or Linux in Falcon mode) to be loaded from a SquashFS
596           filesystem from within SPL. Support for the underlying block
597           device (e.g. MMC or USB) must be enabled separately.
598
599 config SPL_FS_FAT
600         bool "Support FAT filesystems"
601         select FS_FAT
602         help
603           Enable support for FAT and VFAT filesystems with SPL. This
604           permits U-Boot (or Linux in Falcon mode) to be loaded from a FAT
605           filesystem from within SPL. Support for the underlying block
606           device (e.g. MMC or USB) must be enabled separately.
607
608 config SPL_FAT_WRITE
609         bool "Support write for FAT filesystems"
610         help
611           Enable write support for FAT and VFAT filesystems with SPL.
612           Support for the underlying block device (e.g. MMC or USB) must be
613           enabled separately.
614
615 config SPL_FPGA
616         bool "Support FPGAs"
617         help
618           Enable support for FPGAs in SPL. Field-programmable Gate Arrays
619           provide software-configurable hardware which is typically used to
620           implement peripherals (such as UARTs, LCD displays, MMC) or
621           accelerate custom processing functions, such as image processing
622           or machine learning. Sometimes it is useful to program the FPGA
623           as early as possible during boot, and this option can enable that
624           within SPL.
625
626 config SPL_GPIO
627         bool "Support GPIO in SPL"
628         help
629           Enable support for GPIOs (General-purpose Input/Output) in SPL.
630           GPIOs allow U-Boot to read the state of an input line (high or
631           low) and set the state of an output line. This can be used to
632           drive LEDs, control power to various system parts and read user
633           input. GPIOs can be useful in SPL to enable a 'sign-of-life' LED,
634           for example. Enable this option to build the drivers in
635           drivers/gpio as part of an SPL build.
636
637 config SPL_I2C
638         bool "Support I2C"
639         help
640           Enable support for the I2C (Inter-Integrated Circuit) bus in SPL.
641           I2C works with a clock and data line which can be driven by a
642           one or more masters or slaves. It is a fairly complex bus but is
643           widely used as it only needs two lines for communication. Speeds of
644           400kbps are typical but up to 3.4Mbps is supported by some
645           hardware. I2C can be useful in SPL to configure power management
646           ICs (PMICs) before raising the CPU clock speed, for example.
647           Enable this option to build the drivers in drivers/i2c as part of
648           an SPL build.
649
650 config SPL_LIBCOMMON_SUPPORT
651         bool "Support common libraries"
652         help
653           Enable support for common U-Boot libraries within SPL. These
654           libraries include common code to deal with U-Boot images,
655           environment and USB, for example. This option is enabled on many
656           boards. Enable this option to build the code in common/ as part of
657           an SPL build.
658
659 config SPL_LIBDISK_SUPPORT
660         bool "Support disk partitions"
661         select PARTITIONS
662         help
663           Enable support for disk partitions within SPL. 'Disk' is something
664           of a misnomer as it includes non-spinning media such as flash (as
665           used in MMC and USB sticks). Partitions provide a way for a disk
666           to be split up into separate regions, with a partition table placed
667           at the start or end which describes the location and size of each
668           'partition'. These partitions are typically uses as individual block
669           devices, typically with an EXT2 or FAT filesystem in each. This
670           option enables whatever partition support has been enabled in
671           U-Boot to also be used in SPL. It brings in the code in disk/.
672
673 config SPL_LIBGENERIC_SUPPORT
674         bool "Support generic libraries"
675         help
676           Enable support for generic U-Boot libraries within SPL. These
677           libraries include generic code to deal with device tree, hashing,
678           printf(), compression and the like. This option is enabled on many
679           boards. Enable this option to build the code in lib/ as part of an
680           SPL build.
681
682 config SPL_DM_MAILBOX
683         bool "Support Mailbox"
684         help
685           Enable support for Mailbox within SPL. This enable the inter
686           processor communication protocols tobe used within SPL. Enable
687           this option to build the drivers in drivers/mailbox as part of
688           SPL build.
689
690 config SPL_MMC
691         bool "Support MMC"
692         depends on MMC
693         select HAVE_BLOCK_DEVICE
694         help
695           Enable support for MMC (Multimedia Card) within SPL. This enables
696           the MMC protocol implementation and allows any enabled drivers to
697           be used within SPL. MMC can be used with or without disk partition
698           support depending on the application (SPL_LIBDISK_SUPPORT). Enable
699           this option to build the drivers in drivers/mmc as part of an SPL
700           build.
701
702 config SYS_MMCSD_FS_BOOT_PARTITION
703         int "MMC Boot Partition"
704         default 1
705         help
706           Partition on the MMC to load U-Boot from when the MMC is being
707           used in fs mode.
708           Use -1 as a special value to use the first bootable partition.
709
710 config SPL_MMC_TINY
711         bool "Tiny MMC framework in SPL"
712         depends on SPL_MMC
713         help
714           Enable MMC framework tinification support. This option is useful if
715           if your SPL is extremely size constrained. Heed the warning, enable
716           this option if and only if you know exactly what you are doing, if
717           you are reading this help text, you most likely have no idea :-)
718
719           The MMC framework is reduced to bare minimum to be useful. No malloc
720           support is needed for the MMC framework operation with this option
721           enabled. The framework supports exactly one MMC device and exactly
722           one MMC driver. The MMC driver can be adjusted to avoid any malloc
723           operations too, which can remove the need for malloc support in SPL
724           and thus further reduce footprint.
725
726 config SPL_MMC_WRITE
727         bool "MMC/SD/SDIO card support for write operations in SPL"
728         depends on SPL_MMC
729         help
730           Enable write access to MMC and SD Cards in SPL
731
732
733 config SPL_MPC8XXX_INIT_DDR
734         bool "Support MPC8XXX DDR init"
735         help
736           Enable support for DDR-SDRAM (double-data-rate synchronous dynamic
737           random-access memory) on the MPC8XXX family within SPL. This
738           allows DRAM to be set up before loading U-Boot into that DRAM,
739           where it can run.
740
741 config SPL_MTD_SUPPORT
742         bool "Support MTD drivers"
743         help
744           Enable support for MTD (Memory Technology Device) within SPL. MTD
745           provides a block interface over raw NAND and can also be used with
746           SPI flash. This allows SPL to load U-Boot from supported MTD
747           devices. See SPL_NAND_SUPPORT and SPL_ONENAND_SUPPORT for how
748           to enable specific MTD drivers.
749
750 config SPL_MUSB_NEW
751         bool "Support new Mentor Graphics USB"
752         help
753           Enable support for Mentor Graphics USB in SPL. This is a new
754           driver used by some boards. Enable this option to build
755           the drivers in drivers/usb/musb-new as part of an SPL build. The
756           old drivers are in drivers/usb/musb.
757
758 config SPL_NAND_SUPPORT
759         bool "Support NAND flash"
760         help
761           Enable support for NAND (Negative AND) flash in SPL. NAND flash
762           can be used to allow SPL to load U-Boot from supported devices.
763           This enables the drivers in drivers/mtd/nand/raw as part of an SPL
764           build.
765
766 config SPL_NAND_RAW_ONLY
767         bool "Support to boot only raw u-boot.bin images"
768         depends on SPL_NAND_SUPPORT
769         help
770           Use this only if you need to save space.
771
772 config SPL_NAND_DRIVERS
773         bool "Use standard NAND driver"
774         help
775           SPL uses normal NAND drivers, not minimal drivers.
776
777 config SPL_NAND_ECC
778         bool "Include standard ECC in SPL"
779
780 config SPL_NAND_SOFTECC
781         bool "Use software ECC in SPL"
782         depends on SPL_NAND_ECC
783
784 config SPL_NAND_SIMPLE
785         bool "Support simple NAND drivers in SPL"
786         help
787           Support for NAND boot using simple NAND drivers that
788           expose the cmd_ctrl() interface.
789
790 config SPL_NAND_BASE
791         depends on SPL_NAND_DRIVERS
792         bool "Use Base NAND Driver"
793         help
794           Include nand_base.c in the SPL.
795
796 config SPL_NAND_IDENT
797         depends on SPL_NAND_BASE
798         bool "Use chip ID to identify NAND flash"
799         help
800           SPL uses the chip ID list to identify the NAND flash.
801
802 config SPL_UBI
803         bool "Support UBI"
804         help
805           Enable support for loading payloads from UBI. See
806           README.ubispl for more info.
807
808 if SPL_DM
809 config SPL_DM_SPI
810         bool "Support SPI DM drivers in SPL"
811         help
812           Enable support for SPI DM drivers in SPL.
813
814 config SPL_DM_SPI_FLASH
815         bool "Support SPI DM FLASH drivers in SPL"
816         help
817           Enable support for SPI DM flash drivers in SPL.
818
819 endif
820 if SPL_UBI
821 config SPL_UBI_LOAD_BY_VOLNAME
822         bool "Support loading volumes by name"
823         help
824           This enables support for loading UBI volumes by name. When this
825           is set, CONFIG_SPL_UBI_LOAD_MONITOR_VOLNAME can be used to
826           configure the volume name from which to load U-Boot.
827
828 config SPL_UBI_MAX_VOL_LEBS
829         int "Maximum number of LEBs per volume"
830         depends on SPL_UBI
831         help
832           The maximum number of logical eraseblocks which a static volume
833           to load can contain. Used for sizing the scan data structure.
834
835 config SPL_UBI_MAX_PEB_SIZE
836         int "Maximum PEB size"
837         depends on SPL_UBI
838         help
839           The maximum physical erase block size.
840
841 config SPL_UBI_MAX_PEBS
842         int "Maximum number of PEBs"
843         depends on SPL_UBI
844         help
845           The maximum physical erase block size. If not overridden by
846           board code, this value will be used as the actual number of PEBs.
847
848 config SPL_UBI_PEB_OFFSET
849         int "Offset to first UBI PEB"
850         depends on SPL_UBI
851         help
852           The offset in number of PEBs from the start of flash to the first
853           PEB part of the UBI image.
854
855 config SPL_UBI_VID_OFFSET
856         int "Offset to VID header"
857         depends on SPL_UBI
858
859 config SPL_UBI_LEB_START
860         int "Offset to LEB in PEB"
861         depends on SPL_UBI
862         help
863           The offset in bytes to the LEB within a PEB.
864
865 config SPL_UBI_INFO_ADDR
866         hex "Address to place UBI scan info"
867         depends on SPL_UBI
868         help
869           Address for ubispl to place the scan info. Read README.ubispl to
870           determine the required size
871
872 config SPL_UBI_VOL_IDS
873         int "Maximum volume id"
874         depends on SPL_UBI
875         help
876           The maximum volume id which can be loaded. Used for sizing the
877           scan data structure.
878
879 config SPL_UBI_LOAD_MONITOR_ID
880         int "id of U-Boot volume"
881         depends on SPL_UBI
882         help
883           The UBI volume id from which to load U-Boot
884
885 config SPL_UBI_LOAD_MONITOR_VOLNAME
886         string "volume name of U-Boot volume"
887         depends on SPL_UBI_LOAD_BY_VOLNAME
888         help
889           The UBI volume name from which to load U-Boot
890
891 config SPL_UBI_LOAD_KERNEL_ID
892         int "id of kernel volume"
893         depends on SPL_OS_BOOT && SPL_UBI
894         help
895           The UBI volume id from which to load the kernel
896
897 config SPL_UBI_LOAD_ARGS_ID
898         int "id of kernel args volume"
899         depends on SPL_OS_BOOT && SPL_UBI
900         help
901           The UBI volume id from which to load the device tree
902
903 config UBI_SPL_SILENCE_MSG
904         bool "silence UBI SPL messages"
905         help
906           Disable messages from UBI SPL. This leaves warnings
907           and errors enabled.
908
909 endif   # if SPL_UBI
910
911 config SPL_NET
912         bool "Support networking"
913         help
914           Enable support for network devices (such as Ethernet) in SPL.
915           This permits SPL to load U-Boot over a network link rather than
916           from an on-board peripheral. Environment support is required since
917           the network stack uses a number of environment variables. See also
918           SPL_ETH.
919
920 if SPL_NET
921 config SPL_NET_VCI_STRING
922         string "BOOTP Vendor Class Identifier string sent by SPL"
923         help
924           As defined by RFC 2132 the vendor class identifier field can be
925           sent by the client to identify the vendor type and configuration
926           of a client.  This is often used in practice to allow for the DHCP
927           server to specify different files to load depending on if the ROM,
928           SPL or U-Boot itself makes the request
929 endif   # if SPL_NET
930
931 config SPL_NO_CPU_SUPPORT
932         bool "Drop CPU code in SPL"
933         help
934           This is specific to the ARM926EJ-S CPU. It disables the standard
935           start.S start-up code, presumably so that a replacement can be
936           used on that CPU. You should not enable it unless you know what
937           you are doing.
938
939 config SPL_NOR_SUPPORT
940         bool "Support NOR flash"
941         help
942           Enable support for loading U-Boot from memory-mapped NOR (Negative
943           OR) flash in SPL. NOR flash is slow to write but fast to read, and
944           a memory-mapped device makes it very easy to access. Loading from
945           NOR is typically achieved with just a memcpy().
946
947 config SPL_XIP_SUPPORT
948         bool "Support XIP"
949         depends on SPL
950         help
951           Enable support for execute in place of U-Boot or kernel image. There
952           is no need to copy image from flash to ram if flash supports execute
953           in place. Its very useful in systems having enough flash but not
954           enough ram to load the image.
955
956 config SPL_ONENAND_SUPPORT
957         bool "Support OneNAND flash"
958         help
959           Enable support for OneNAND (Negative AND) flash in SPL. OneNAND is
960           a type of NAND flash and therefore can be used to allow SPL to
961           load U-Boot from supported devices. This enables the drivers in
962           drivers/mtd/onenand as part of an SPL build.
963
964 config SPL_OS_BOOT
965         bool "Activate Falcon Mode"
966         depends on !TI_SECURE_DEVICE
967         help
968           Enable booting directly to an OS from SPL.
969           for more info read doc/README.falcon
970
971 if SPL_OS_BOOT
972 config SYS_OS_BASE
973         hex "addr, where OS is found"
974         depends on SPL_NOR_SUPPORT
975         help
976           Specify the address, where the OS image is found, which
977           gets booted.
978
979 endif # SPL_OS_BOOT
980
981 config SPL_FALCON_BOOT_MMCSD
982         bool "Enable Falcon boot from MMC or SD media"
983         depends on SPL_OS_BOOT && SPL_MMC
984         help
985           Select this if the Falcon mode OS image mode is on MMC or SD media.
986
987 config SYS_MMCSD_RAW_MODE_KERNEL_SECTOR
988         hex "Falcon mode: Sector to load kernel uImage from MMC"
989         depends on SPL_FALCON_BOOT_MMCSD
990         help
991           When Falcon mode is used with an MMC or SD media, SPL needs to know
992           where to look for the kernel uImage. The image is expected to begin
993           at the raw MMC specified in this config.
994           Note that the Falcon mode image can also be a FIT, if FIT support is
995           enabled.
996
997 config SPL_PAYLOAD
998         string "SPL payload"
999         default "tpl/u-boot-with-tpl.bin" if TPL
1000         default "u-boot.bin"
1001         help
1002           Payload for SPL boot. For backward compatibility, default to
1003           u-boot.bin, i.e. RAW image without any header. In case of
1004           TPL, tpl/u-boot-with-tpl.bin. For new boards, suggest to
1005           use u-boot.img.
1006
1007 config SPL_PCI
1008         bool "Support PCI drivers"
1009         help
1010           Enable support for PCI in SPL. For platforms that need PCI to boot,
1011           or must perform some init using PCI in SPL, this provides the
1012           necessary driver support. This enables the drivers in drivers/pci
1013           as part of an SPL build.
1014
1015 config SPL_PCH
1016         bool "Support PCH drivers"
1017         help
1018           Enable support for PCH (Platform Controller Hub) devices in SPL.
1019           These are used to set up GPIOs and the SPI peripheral early in
1020           boot. This enables the drivers in drivers/pch as part of an SPL
1021           build.
1022
1023 config SPL_POST_MEM_SUPPORT
1024         bool "Support POST drivers"
1025         help
1026           Enable support for POST (Power-on Self Test) in SPL. POST is a
1027           procedure that checks that the hardware (CPU or board) appears to
1028           be functionally correctly. It is a sanity check that can be
1029           performed before booting. This enables the drivers in post/drivers
1030           as part of an SPL build.
1031
1032 config SPL_DM_RESET
1033         bool "Support reset drivers"
1034         depends on SPL
1035         help
1036           Enable support for reset control in SPL.
1037           That can be useful in SPL to handle IP reset in driver, as in U-Boot,
1038           by using the generic reset API provided by driver model.
1039           This enables the drivers in drivers/reset as part of an SPL build.
1040
1041 config SPL_POWER
1042         bool "Support power drivers"
1043         help
1044           Enable support for power control in SPL. This includes support
1045           for PMICs (Power-management Integrated Circuits) and some of the
1046           features provided by PMICs. In particular, voltage regulators can
1047           be used to enable/disable power and vary its voltage. That can be
1048           useful in SPL to turn on boot peripherals and adjust CPU voltage
1049           so that the clock speed can be increased. This enables the drivers
1050           in drivers/power, drivers/power/pmic and drivers/power/regulator
1051           as part of an SPL build.
1052
1053 config SPL_POWER_DOMAIN
1054         bool "Support power domain drivers"
1055         select SPL_POWER
1056         help
1057           Enable support for power domain control in SPL. Many SoCs allow
1058           power to be applied to or removed from portions of the SoC (power
1059           domains). This may be used to save power. This API provides the
1060           means to control such power management hardware. This enables
1061           the drivers in drivers/power/domain as part of a SPL build.
1062
1063 config SPL_RAM_SUPPORT
1064         bool "Support booting from RAM"
1065         default y if MICROBLAZE || ARCH_SOCFPGA || ARCH_TEGRA || ARCH_ZYNQ
1066         help
1067           Enable booting of an image in RAM. The image can be preloaded or
1068           it can be loaded by SPL directly into RAM (e.g. using USB).
1069
1070 config SPL_RAM_DEVICE
1071         bool "Support booting from preloaded image in RAM"
1072         depends on SPL_RAM_SUPPORT
1073         default y if MICROBLAZE || ARCH_SOCFPGA || ARCH_TEGRA || ARCH_ZYNQ
1074         help
1075           Enable booting of an image already loaded in RAM. The image has to
1076           be already in memory when SPL takes over, e.g. loaded by the boot
1077           ROM.
1078
1079 config SPL_REMOTEPROC
1080         bool "Support REMOTEPROCS"
1081         help
1082           Enable support for REMOTEPROCs in SPL. This permits to load
1083           a remote processor firmware in SPL.
1084
1085 config SPL_RTC
1086         bool "Support RTC drivers"
1087         help
1088           Enable RTC (Real-time Clock) support in SPL. This includes support
1089           for reading and setting the time. Some RTC devices also have some
1090           non-volatile (battery-backed) memory which is accessible if
1091           needed. This enables the drivers in drivers/rtc as part of an SPL
1092           build.
1093
1094 config SPL_SATA
1095         bool "Support loading from SATA"
1096         help
1097           Enable support for SATA (Serial AT attachment) in SPL. This allows
1098           use of SATA devices such as hard drives and flash drivers for
1099           loading U-Boot. SATA is used in higher-end embedded systems and
1100           can provide higher performance than MMC , at somewhat higher
1101           expense and power consumption. This enables loading from SATA
1102           using a configured device.
1103
1104 config SPL_SATA_RAW_U_BOOT_USE_SECTOR
1105         bool "SATA raw mode: by sector"
1106         depends on SPL_SATA
1107         default y if ARCH_MVEBU
1108         help
1109           Use sector number for specifying U-Boot location on SATA disk in
1110           raw mode.
1111
1112 config SPL_SATA_RAW_U_BOOT_SECTOR
1113         hex "Sector on the SATA disk to load U-Boot from"
1114         depends on SPL_SATA_RAW_U_BOOT_USE_SECTOR
1115         default 0x1 if ARCH_MVEBU
1116         help
1117           Sector on the SATA disk to load U-Boot from, when the SATA disk is being
1118           used in raw mode. Units: SATA disk sectors (1 sector = 512 bytes).
1119
1120 config SPL_SERIAL
1121         bool "Support serial"
1122         select SPL_PRINTF
1123         select SPL_STRTO
1124         help
1125           Enable support for serial in SPL. This allows use of a serial UART
1126           for displaying messages while SPL is running. It also brings in
1127           printf() and panic() functions. This should normally be enabled
1128           unless there are space reasons not to. Even then, consider
1129           enabling SPL_USE_TINY_PRINTF which is a small printf() version.
1130
1131 config SPL_SPI
1132         bool "Support SPI drivers"
1133         help
1134           Enable support for using SPI in SPL. This is used for connecting
1135           to SPI flash for loading U-Boot. See SPL_SPI_FLASH_SUPPORT for
1136           more details on that. The SPI driver provides the transport for
1137           data between the SPI flash and the CPU. This option can be used to
1138           enable SPI drivers that are needed for other purposes also, such
1139           as a SPI PMIC.
1140
1141 config SPL_SPI_FLASH_SUPPORT
1142         bool "Support SPI flash drivers"
1143         depends on SPL_SPI
1144         help
1145           Enable support for using SPI flash in SPL, and loading U-Boot from
1146           SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
1147           the SPI bus that is used to connect it to a system. It is a simple
1148           but fast bidirectional 4-wire bus (clock, chip select and two data
1149           lines). This enables the drivers in drivers/mtd/spi as part of an
1150           SPL build. This normally requires SPL_SPI.
1151
1152 if SPL_SPI_FLASH_SUPPORT
1153
1154 config SPL_SPI_FLASH_TINY
1155         bool "Enable low footprint SPL SPI Flash support"
1156         depends on !SPI_FLASH_BAR
1157         default y if SPI_FLASH
1158         help
1159          Enable lightweight SPL SPI Flash support that supports just reading
1160          data/images from flash. No support to write/erase flash. Enable
1161          this if you have SPL size limitations and don't need full
1162          fledged SPI flash support.
1163
1164 config SPL_SPI_FLASH_SFDP_SUPPORT
1165         bool "SFDP table parsing support for SPI NOR flashes"
1166         depends on !SPI_FLASH_BAR && !SPL_SPI_FLASH_TINY
1167         help
1168          Enable support for parsing and auto discovery of parameters for
1169          SPI NOR flashes using Serial Flash Discoverable Parameters (SFDP)
1170          tables as per JESD216 standard in SPL.
1171
1172 config SPL_SPI_FLASH_MTD
1173         bool "Support for SPI flash MTD drivers in SPL"
1174         help
1175           Enable support for SPI flash MTD drivers in SPL.
1176
1177 config SPL_SPI_LOAD
1178         bool "Support loading from SPI flash"
1179         help
1180           Enable support for loading next stage, U-Boot or otherwise, from
1181           SPI NOR in U-Boot SPL.
1182
1183 endif # SPL_SPI_FLASH_SUPPORT
1184
1185 config SYS_SPI_U_BOOT_OFFS
1186         hex "address of u-boot payload in SPI flash"
1187         default 0x8000 if ARCH_SUNXI
1188         default 0x0
1189         depends on SPL_SPI_LOAD || SPL_SPI_SUNXI
1190         help
1191          Address within SPI-Flash from where the u-boot payload is fetched
1192          from.
1193
1194 config SPL_THERMAL
1195         bool "Driver support for thermal devices"
1196         help
1197           Enable support for temperature-sensing devices. Some SoCs have on-chip
1198           temperature sensors to permit warnings, speed throttling or even
1199           automatic power-off when the temperature gets too high or low. Other
1200           devices may be discrete but connected on a suitable bus.
1201
1202 config SPL_USB_HOST
1203         bool "Support USB host drivers"
1204         select HAVE_BLOCK_DEVICE
1205         help
1206           Enable access to USB (Universal Serial Bus) host devices so that
1207           SPL can load U-Boot from a connected USB peripheral, such as a USB
1208           flash stick. While USB takes a little longer to start up than most
1209           buses, it is very flexible since many different types of storage
1210           device can be attached. This option enables the drivers in
1211           drivers/usb/host as part of an SPL build.
1212
1213 config SPL_USB_STORAGE
1214         bool "Support loading from USB"
1215         depends on SPL_USB_HOST && !(BLK && !DM_USB)
1216         help
1217           Enable support for USB devices in SPL. This allows use of USB
1218           devices such as hard drives and flash drivers for loading U-Boot.
1219           The actual drivers are enabled separately using the normal U-Boot
1220           config options. This enables loading from USB using a configured
1221           device.
1222
1223 config SPL_USB_GADGET
1224         bool "Suppport USB Gadget drivers"
1225         help
1226           Enable USB Gadget API which allows to enable USB device functions
1227           in SPL.
1228
1229 if SPL_USB_GADGET
1230
1231 config SPL_USB_ETHER
1232         bool "Support USB Ethernet drivers"
1233         depends on SPL_NET
1234         help
1235           Enable access to the USB network subsystem and associated
1236           drivers in SPL. This permits SPL to load U-Boot over a
1237           USB-connected Ethernet link (such as a USB Ethernet dongle) rather
1238           than from an onboard peripheral. Environment support is required
1239           since the network stack uses a number of environment variables.
1240           See also SPL_NET and SPL_ETH.
1241
1242 config SPL_DFU
1243         bool "Support DFU (Device Firmware Upgrade)"
1244         select SPL_HASH
1245         select SPL_DFU_NO_RESET
1246         depends on SPL_RAM_SUPPORT
1247         help
1248           This feature enables the DFU (Device Firmware Upgrade) in SPL with
1249           RAM memory device support. The ROM code will load and execute
1250           the SPL built with dfu. The user can load binaries (u-boot/kernel) to
1251           selected device partition from host-pc using dfu-utils.
1252           This feature is useful to flash the binaries to factory or bare-metal
1253           boards using USB interface.
1254
1255 choice
1256         bool "DFU device selection"
1257         depends on SPL_DFU
1258
1259 config SPL_DFU_RAM
1260         bool "RAM device"
1261         depends on SPL_DFU && SPL_RAM_SUPPORT
1262         help
1263          select RAM/DDR memory device for loading binary images
1264          (u-boot/kernel) to the selected device partition using
1265          DFU and execute the u-boot/kernel from RAM.
1266
1267 endchoice
1268
1269 config SPL_USB_SDP_SUPPORT
1270         bool "Support SDP (Serial Download Protocol)"
1271         depends on SPL_SERIAL
1272         help
1273           Enable Serial Download Protocol (SDP) device support in SPL. This
1274           allows to download images into memory and execute (jump to) them
1275           using the same protocol as implemented by the i.MX family's boot ROM.
1276
1277 config SPL_SDP_USB_DEV
1278         int "SDP USB controller index"
1279         default 0
1280         depends on SPL_USB_SDP_SUPPORT
1281         help
1282           Some boards have USB controller other than 0. Define this option
1283           so it can be used in compiled environment.
1284 endif
1285
1286 config SPL_WATCHDOG
1287         bool "Support watchdog drivers"
1288         imply SPL_WDT if !HW_WATCHDOG
1289         help
1290           Enable support for watchdog drivers in SPL. A watchdog is
1291           typically a hardware peripheral which can reset the system when it
1292           detects no activity for a while (such as a software crash). This
1293           enables the drivers in drivers/watchdog as part of an SPL build.
1294
1295 config SPL_YMODEM_SUPPORT
1296         bool "Support loading using Ymodem"
1297         depends on SPL_SERIAL
1298         help
1299           While loading from serial is slow it can be a useful backup when
1300           there is no other option. The Ymodem protocol provides a reliable
1301           means of transmitting U-Boot over a serial line for using in SPL,
1302           with a checksum to ensure correctness.
1303
1304 config SPL_ATF
1305         bool "Support ARM Trusted Firmware"
1306         depends on ARM64 && SPL_FIT
1307         help
1308           ATF(ARM Trusted Firmware) is a component for ARM AArch64 which
1309           is loaded by SPL (which is considered as BL2 in ATF terminology).
1310           More detail at: https://github.com/ARM-software/arm-trusted-firmware
1311
1312 config SPL_ATF_LOAD_IMAGE_V2
1313         bool "Use the new LOAD_IMAGE_V2 parameter passing"
1314         depends on SPL_ATF
1315         help
1316           Some platforms use the newer LOAD_IMAGE_V2 parameter passing.
1317
1318           If you want to load a bl31 image from the SPL and need the new
1319           method, say Y.
1320
1321 config SPL_ATF_NO_PLATFORM_PARAM
1322         bool "Pass no platform parameter"
1323         depends on SPL_ATF
1324         help
1325           While we expect to call a pointer to a valid FDT (or NULL)
1326           as the platform parameter to an ATF, some ATF versions are
1327           not U-Boot aware and have an insufficiently robust parameter
1328           validation to gracefully reject a FDT being passed.
1329
1330           If this option is enabled, the spl_atf os-type handler will
1331           always pass NULL for the platform parameter.
1332
1333           If your ATF is affected, say Y.
1334
1335 config SPL_AM33XX_ENABLE_RTC32K_OSC
1336         bool "Enable the RTC32K OSC on AM33xx based platforms"
1337         default y if AM33XX
1338         help
1339           Enable access to the AM33xx RTC and select the external 32kHz clock
1340           source.
1341
1342 config SPL_OPTEE_IMAGE
1343         bool "Support OP-TEE Trusted OS image in SPL"
1344         depends on ARM
1345         help
1346           OP-TEE is an open source Trusted OS which is loaded by SPL.
1347           More detail at: https://github.com/OP-TEE/optee_os
1348
1349 config SPL_OPENSBI
1350         bool "Support RISC-V OpenSBI"
1351         depends on RISCV && SPL_RISCV_MMODE && RISCV_SMODE
1352         help
1353           OpenSBI is an open-source implementation of the RISC-V Supervisor Binary
1354           Interface (SBI) specification. U-Boot supports the OpenSBI FW_DYNAMIC
1355           firmware. It is loaded and started by U-Boot SPL.
1356
1357           More details are available at https://github.com/riscv/opensbi and
1358           https://github.com/riscv/riscv-sbi-doc
1359
1360 config SPL_OPENSBI_LOAD_ADDR
1361         hex "OpenSBI load address"
1362         depends on SPL_OPENSBI
1363         help
1364           Load address of the OpenSBI binary.
1365
1366 config TPL
1367         bool
1368         depends on SUPPORT_TPL
1369         prompt "Enable TPL"
1370         help
1371           If you want to build TPL as well as the normal image and SPL, say Y.
1372
1373 if TPL
1374
1375 config TPL_SIZE_LIMIT
1376         hex "Maximum size of TPL image"
1377         depends on TPL
1378         default 0x0
1379         help
1380           Specifies the maximum length of the U-Boot TPL image.
1381           If this value is zero, it is ignored.
1382
1383 config TPL_BINMAN_SYMBOLS
1384         bool "Declare binman symbols in TPL"
1385         depends on SPL_FRAMEWORK && BINMAN
1386         default y
1387         help
1388           This enables use of symbols in TPL which refer to U-Boot, enabling TPL
1389           to obtain the location of U-Boot simply by calling spl_get_image_pos()
1390           and spl_get_image_size().
1391
1392           For this to work, you must have a U-Boot image in the binman image, so
1393           binman can update TPL with the location of it.
1394
1395 config TPL_FRAMEWORK
1396         bool "Support TPL based upon the common SPL framework"
1397         default y if SPL_FRAMEWORK
1398         help
1399           Enable the SPL framework under common/spl/ for TPL builds.
1400           This framework supports MMC, NAND and YMODEM and other methods
1401           loading of U-Boot's SPL stage. If unsure, say Y.
1402
1403 config TPL_HANDOFF
1404         bool "Pass hand-off information from TPL to SPL and U-Boot proper"
1405         depends on HANDOFF && TPL_BLOBLIST
1406         default y
1407         help
1408           This option enables TPL to write handoff information. This can be
1409           used to pass information like the size of SDRAM from TPL to U-Boot
1410           proper. The information is also available to SPL if it is useful
1411           there.
1412
1413 config TPL_BOARD_INIT
1414         bool "Call board-specific initialization in TPL"
1415         help
1416           If this option is enabled, U-Boot will call the function
1417           spl_board_init() from board_init_r(). This function should be
1418           provided by the board.
1419
1420 config TPL_BOOTCOUNT_LIMIT
1421         bool "Support bootcount in TPL"
1422         depends on TPL_ENV_SUPPORT
1423         help
1424           If this option is enabled, the TPL will support bootcount.
1425           For example, it may be useful to choose the device to boot.
1426
1427 config TPL_LDSCRIPT
1428         string "Linker script for the TPL stage"
1429         depends on TPL
1430         default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
1431         default "arch/\$(ARCH)/cpu/u-boot-spl.lds"
1432         help
1433           The TPL stage will usually require a different linker-script
1434           (as it runs from a different memory region) than the regular
1435           U-Boot stage.  Set this to the path of the linker-script to
1436           be used for TPL.
1437
1438           May be left empty to trigger the Makefile infrastructure to
1439           fall back to the linker-script used for the SPL stage.
1440
1441 config TPL_NEEDS_SEPARATE_STACK
1442         bool "TPL needs a separate initial stack-pointer"
1443         depends on TPL
1444         help
1445           Enable, if the TPL stage should not inherit its initial
1446           stack-pointer from the settings for the SPL stage.
1447
1448 config TPL_POWER
1449         bool "Support power drivers"
1450         help
1451           Enable support for power control in TPL. This includes support
1452           for PMICs (Power-management Integrated Circuits) and some of the
1453           features provided by PMICs. In particular, voltage regulators can
1454           be used to enable/disable power and vary its voltage. That can be
1455           useful in TPL to turn on boot peripherals and adjust CPU voltage
1456           so that the clock speed can be increased. This enables the drivers
1457           in drivers/power, drivers/power/pmic and drivers/power/regulator
1458           as part of an TPL build.
1459
1460 config TPL_TEXT_BASE
1461         hex "Base address for the .text section of the TPL stage"
1462         default 0
1463         help
1464           The base address for the .text section of the TPL stage.
1465
1466 config TPL_MAX_SIZE
1467         int "Maximum size (in bytes) for the TPL stage"
1468         default 0
1469         depends on TPL
1470         help
1471           The maximum size (in bytes) of the TPL stage.
1472
1473 config TPL_STACK
1474         hex "Address of the initial stack-pointer for the TPL stage"
1475         depends on TPL_NEEDS_SEPARATE_STACK
1476         help
1477           The address of the initial stack-pointer for the TPL stage.
1478           Usually this will be the (aligned) top-of-stack.
1479
1480 config TPL_READ_ONLY
1481         bool
1482         depends on TPL_OF_PLATDATA
1483         select TPL_OF_PLATDATA_NO_BIND
1484         select TPL_OF_PLATDATA_RT
1485         help
1486           Some platforms (e.g. x86 Apollo Lake) load SPL into a read-only
1487           section of memory. This means that of-platdata must make a copy (in
1488           writeable memory) of anything it wants to modify, such as
1489           device-private data.
1490
1491 config TPL_BOOTROM_SUPPORT
1492         bool "Support returning to the BOOTROM (from TPL)"
1493         help
1494           Some platforms (e.g. the Rockchip RK3368) provide support in their
1495           ROM for loading the next boot-stage after performing basic setup
1496           from the TPL stage.
1497
1498           Enable this option, to return to the BOOTROM through the
1499           BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
1500           boot device list, if not implemented for a given board)
1501
1502 config TPL_CRC32
1503         bool "Support CRC32 in TPL"
1504         default y if TPL_ENV_SUPPORT || TPL_BLOBLIST
1505         help
1506           Enable this to support CRC32 in uImages or FIT images within SPL.
1507           This is a 32-bit checksum value that can be used to verify images.
1508           For FIT images, this is the least secure type of checksum, suitable
1509           for detected accidental image corruption. For secure applications you
1510           should consider SHA1 or SHA256.
1511
1512 config TPL_DRIVERS_MISC
1513         bool "Support misc drivers in TPL"
1514         help
1515           Enable miscellaneous drivers in TPL. These drivers perform various
1516           tasks that don't fall nicely into other categories, Enable this
1517           option to build the drivers in drivers/misc as part of an TPL
1518           build, for those that support building in TPL (not all drivers do).
1519
1520 config TPL_ENV_SUPPORT
1521         bool "Support an environment"
1522         help
1523           Enable environment support in TPL. See SPL_ENV_SUPPORT for details.
1524
1525 config TPL_GPIO
1526         bool "Support GPIO in TPL"
1527         help
1528           Enable support for GPIOs (General-purpose Input/Output) in TPL.
1529           GPIOs allow U-Boot to read the state of an input line (high or
1530           low) and set the state of an output line. This can be used to
1531           drive LEDs, control power to various system parts and read user
1532           input. GPIOs can be useful in TPL to enable a 'sign-of-life' LED,
1533           for example. Enable this option to build the drivers in
1534           drivers/gpio as part of an TPL build.
1535
1536 config TPL_I2C
1537         bool "Support I2C"
1538         help
1539           Enable support for the I2C bus in TPL. See SPL_I2C for
1540           details.
1541
1542 config TPL_LIBCOMMON_SUPPORT
1543         bool "Support common libraries"
1544         help
1545           Enable support for common U-Boot libraries within TPL. See
1546           SPL_LIBCOMMON_SUPPORT for details.
1547
1548 config TPL_LIBGENERIC_SUPPORT
1549         bool "Support generic libraries"
1550         help
1551           Enable support for generic U-Boot libraries within TPL. See
1552           SPL_LIBGENERIC_SUPPORT for details.
1553
1554 config TPL_MPC8XXX_INIT_DDR
1555         bool "Support MPC8XXX DDR init"
1556         help
1557           Enable support for DDR-SDRAM on the MPC8XXX family within TPL. See
1558           SPL_MPC8XXX_INIT_DDR for details.
1559
1560 config TPL_MMC
1561         bool "Support MMC"
1562         depends on MMC
1563         help
1564           Enable support for MMC within TPL. See SPL_MMC for details.
1565
1566 config TPL_NAND_SUPPORT
1567         bool "Support NAND flash"
1568         help
1569           Enable support for NAND in TPL. See SPL_NAND_SUPPORT for details.
1570
1571 config TPL_PCI
1572         bool "Support PCI drivers"
1573         help
1574           Enable support for PCI in TPL. For platforms that need PCI to boot,
1575           or must perform some init using PCI in SPL, this provides the
1576           necessary driver support. This enables the drivers in drivers/pci
1577           as part of a TPL build.
1578
1579 config TPL_PCH
1580         bool "Support PCH drivers"
1581         help
1582           Enable support for PCH (Platform Controller Hub) devices in TPL.
1583           These are used to set up GPIOs and the SPI peripheral early in
1584           boot. This enables the drivers in drivers/pch as part of a TPL
1585           build.
1586
1587 config TPL_RAM_SUPPORT
1588         bool "Support booting from RAM"
1589         help
1590           Enable booting of an image in RAM. The image can be preloaded or
1591           it can be loaded by TPL directly into RAM (e.g. using USB).
1592
1593 config TPL_RAM_DEVICE
1594         bool "Support booting from preloaded image in RAM"
1595         depends on TPL_RAM_SUPPORT
1596         help
1597           Enable booting of an image already loaded in RAM. The image has to
1598           be already in memory when TPL takes over, e.g. loaded by the boot
1599           ROM.
1600
1601 config TPL_RTC
1602         bool "Support RTC drivers"
1603         help
1604           Enable RTC (Real-time Clock) support in TPL. This includes support
1605           for reading and setting the time. Some RTC devices also have some
1606           non-volatile (battery-backed) memory which is accessible if
1607           needed. This enables the drivers in drivers/rtc as part of an TPL
1608           build.
1609
1610 config TPL_SERIAL
1611         bool "Support serial"
1612         select TPL_PRINTF
1613         select TPL_STRTO
1614         help
1615           Enable support for serial in TPL. See SPL_SERIAL for
1616           details.
1617
1618 config TPL_SPI_FLASH_SUPPORT
1619         bool "Support SPI flash drivers"
1620         help
1621           Enable support for using SPI flash in TPL. See SPL_SPI_FLASH_SUPPORT
1622           for details.
1623
1624 config TPL_SPI_FLASH_TINY
1625         bool "Enable low footprint TPL SPI Flash support"
1626         depends on TPL_SPI_FLASH_SUPPORT && !SPI_FLASH_BAR
1627         default y if SPI_FLASH
1628         help
1629          Enable lightweight TPL SPI Flash support that supports just reading
1630          data/images from flash. No support to write/erase flash. Enable
1631          this if you have TPL size limitations and don't need full-fledged
1632          SPI flash support.
1633
1634 config TPL_SPI_LOAD
1635         bool "Support loading from SPI flash"
1636         depends on TPL_SPI_FLASH_SUPPORT
1637         help
1638           Enable support for loading next stage, U-Boot or otherwise, from
1639           SPI NOR in U-Boot TPL.
1640
1641 config TPL_SPI
1642         bool "Support SPI drivers"
1643         help
1644           Enable support for using SPI in TPL. See SPL_SPI for
1645           details.
1646
1647 config TPL_DM_SPI
1648         bool "Support SPI DM drivers in TPL"
1649         help
1650           Enable support for SPI DM drivers in TPL.
1651
1652 config TPL_DM_SPI_FLASH
1653         bool "Support SPI DM FLASH drivers in TPL"
1654         help
1655           Enable support for SPI DM flash drivers in TPL.
1656
1657 config TPL_YMODEM_SUPPORT
1658         bool "Support loading using Ymodem"
1659         depends on TPL_SERIAL
1660         help
1661           While loading from serial is slow it can be a useful backup when
1662           there is no other option. The Ymodem protocol provides a reliable
1663           means of transmitting U-Boot over a serial line for using in TPL,
1664           with a checksum to ensure correctness.
1665
1666 endif # TPL
1667
1668 config VPL
1669         bool
1670         depends on SUPPORT_SPL
1671         prompt "Enable VPL"
1672         help
1673           If you want to build VPL as well as the normal image, TPL and SPL,
1674           say Y.
1675
1676 if VPL
1677
1678 config VPL_BANNER_PRINT
1679         bool "Enable output of the VPL banner 'U-Boot VPL ...'"
1680         depends on VPL
1681         default y
1682         help
1683           If this option is enabled, VPL will print the banner with version
1684           info. Disabling this option could be useful to reduce VPL boot time
1685           (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
1686
1687 config VPL_BOARD_INIT
1688         bool "Call board-specific initialization in VPL"
1689         help
1690           If this option is enabled, U-Boot will call the function
1691           spl_board_init() from board_init_r(). This function should be
1692           provided by the board.
1693
1694 config VPL_CACHE
1695         depends on CACHE
1696         bool "Support cache drivers in VPL"
1697         help
1698           Enable support for cache drivers in VPL.
1699
1700 config VPL_CRC32
1701         bool "Support CRC32 in VPL"
1702         default y if VPL_ENV_SUPPORT || VPL_BLOBLIST
1703         help
1704           Enable this to support CRC32 in uImages or FIT images within VPL.
1705           This is a 32-bit checksum value that can be used to verify images.
1706           For FIT images, this is the least secure type of checksum, suitable
1707           for detected accidental image corruption. For secure applications you
1708           should consider SHA1 or SHA256.
1709
1710 config VPL_DM_SPI
1711         bool "Support SPI DM drivers in VPL"
1712         help
1713           Enable support for SPI DM drivers in VPL.
1714
1715 config VPL_DM_SPI_FLASH
1716         bool "Support SPI DM FLASH drivers in VPL"
1717         help
1718           Enable support for SPI DM flash drivers in VPL.
1719
1720 config VPL_FRAMEWORK
1721         bool "Support VPL based upon the common SPL framework"
1722         default y
1723         help
1724           Enable the SPL framework under common/spl/ for VPL builds.
1725           This framework supports MMC, NAND and YMODEM and other methods
1726           loading of U-Boot's next stage. If unsure, say Y.
1727
1728 config VPL_HANDOFF
1729         bool "Pass hand-off information from VPL to SPL"
1730         depends on HANDOFF && VPL_BLOBLIST
1731         default y
1732         help
1733           This option enables VPL to write handoff information. This can be
1734           used to pass information like the size of SDRAM from VPL to SPL. Also
1735           VPL can receive information from TPL in the same place if that is
1736           enabled.
1737
1738 config VPL_LIBCOMMON_SUPPORT
1739         bool "Support common libraries"
1740         default y if SPL_LIBCOMMON_SUPPORT
1741         help
1742           Enable support for common U-Boot libraries within VPL. See
1743           SPL_LIBCOMMON_SUPPORT for details.
1744
1745 config VPL_LIBGENERIC_SUPPORT
1746         bool "Support generic libraries"
1747         default y if SPL_LIBGENERIC_SUPPORT
1748         help
1749           Enable support for generic U-Boot libraries within VPL. These
1750           libraries include generic code to deal with device tree, hashing,
1751           printf(), compression and the like. This option is enabled on many
1752           boards. Enable this option to build the code in lib/ as part of a
1753           VPL build.
1754
1755 config VPL_DRIVERS_MISC
1756         bool "Support misc drivers"
1757         default y if TPL_DRIVERS_MISC
1758         help
1759           Enable miscellaneous drivers in VPL. These drivers perform various
1760           tasks that don't fall nicely into other categories, Enable this
1761           option to build the drivers in drivers/misc as part of a VPL
1762           build, for those that support building in VPL (not all drivers do).
1763
1764 config VPL_ENV_SUPPORT
1765         bool "Support an environment"
1766         help
1767           Enable environment support in VPL. The U-Boot environment provides
1768           a number of settings (essentially name/value pairs) which can
1769           control many aspects of U-Boot's operation. Enabling this option will
1770           make env_get() and env_set() available in VSPL.
1771
1772 config VPL_GPIO
1773         bool "Support GPIO in VPL"
1774         default y if SPL_GPIO
1775         help
1776           Enable support for GPIOs (General-purpose Input/Output) in VPL.
1777           GPIOs allow U-Boot to read the state of an input line (high or
1778           low) and set the state of an output line. This can be used to
1779           drive LEDs, control power to various system parts and read user
1780           input. GPIOs can be useful in VPL to enable a 'sign-of-life' LED,
1781           for example. Enable this option to build the drivers in
1782           drivers/gpio as part of a VPL build.
1783
1784 config VPL_HANDOFF
1785         bool "Pass hand-off information from VPL to SPL and U-Boot proper"
1786         depends on HANDOFF && VPL_BLOBLIST
1787         default y
1788         help
1789           This option enables VPL to write handoff information. This can be
1790           used to pass information like the size of SDRAM from VPL to U-Boot
1791           proper. The information is also available to VPL if it is useful
1792           there.
1793
1794 config VPL_HASH
1795         bool "Support hashing drivers in VPL"
1796         depends on VPL
1797         select SHA1
1798         select SHA256
1799         help
1800           Enable hashing drivers in VPL. These drivers can be used to
1801           accelerate secure boot processing in secure applications. Enable
1802           this option to build system-specific drivers for hash acceleration
1803           as part of a VPL build.
1804
1805 config VPL_I2C_SUPPORT
1806         bool "Support I2C in VPL"
1807         default y if SPL_I2C_SUPPORT
1808         help
1809           Enable support for the I2C bus in VPL. Vee SPL_I2C_SUPPORT for
1810           details.
1811
1812 config VPL_PCH_SUPPORT
1813         bool "Support PCH drivers"
1814         default y if TPL_PCH_SUPPORT
1815         help
1816           Enable support for PCH (Platform Controller Hub) devices in VPL.
1817           These are used to set up GPIOs and the SPI peripheral early in
1818           boot. This enables the drivers in drivers/pch as part of a VPL
1819           build.
1820
1821 config VPL_PCI
1822         bool "Support PCI drivers"
1823         default y if SPL_PCI
1824         help
1825           Enable support for PCI in VPL. For platforms that need PCI to boot,
1826           or must perform some init using PCI in VPL, this provides the
1827           necessary driver support. This enables the drivers in drivers/pci
1828           as part of a VPL build.
1829
1830 config VPL_RTC
1831         bool "Support RTC drivers"
1832         help
1833           Enable RTC (Real-time Clock) support in VPL. This includes support
1834           for reading and setting the time. Some RTC devices also have some
1835           non-volatile (battery-backed) memory which is accessible if
1836           needed. This enables the drivers in drivers/rtc as part of a VPL
1837           build.
1838
1839 config VPL_SERIAL
1840         bool "Support serial"
1841         default y if TPL_SERIAL
1842         select VPL_PRINTF
1843         select VPL_STRTO
1844         help
1845           Enable support for serial in VPL. See SPL_SERIAL_SUPPORT for
1846           details.
1847
1848 config VPL_SIZE_LIMIT
1849         hex "Maximum size of VPL image"
1850         depends on VPL
1851         default 0x0
1852         help
1853           Specifies the maximum length of the U-Boot VPL image.
1854           If this value is zero, it is ignored.
1855
1856 config VPL_SPI
1857         bool "Support SPI drivers"
1858         help
1859           Enable support for using SPI in VPL. See SPL_SPI_SUPPORT for
1860           details.
1861
1862 config VPL_SPI_FLASH_SUPPORT
1863         bool "Support SPI flash drivers"
1864         help
1865           Enable support for using SPI flash in VPL, and loading U-Boot from
1866           SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
1867           the SPI bus that is used to connect it to a system. It is a simple
1868           but fast bidirectional 4-wire bus (clock, chip select and two data
1869           lines). This enables the drivers in drivers/mtd/spi as part of a
1870           VPL build. This normally requires VPL_SPI_SUPPORT.
1871
1872 config VPL_TEXT_BASE
1873         hex "VPL Text Base"
1874         default 0x0
1875         help
1876           The address in memory that VPL will be running from.
1877
1878 endif # VPL
1879
1880 config SPL_AT91_MCK_BYPASS
1881         bool "Use external clock signal as a source of main clock for AT91 platforms"
1882         depends on ARCH_AT91
1883         help
1884           Use external 8 to 24 Mhz clock signal as source of main clock instead
1885           of an external crystal oscillator.
1886           This option disables the internal driving on the XOUT pin.
1887           The external source has to provide a stable clock on the XIN pin.
1888           If this option is disabled, the SoC expects a crystal oscillator
1889           that needs driving on both XIN and XOUT lines.
1890
1891 endif # SPL
1892 endmenu