df2075c7cf28a0fadc439d27ac71542efa450238
[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_FS_LOAD_PAYLOAD_NAME
609         string "File to load for U-Boot from the filesystem"
610         depends on SPL_FS_EXT4 || SPL_FS_FAT || SPL_FS_SQUASHFS
611         default "tispl.bin" if SYS_K3_SPL_ATF
612         default "u-boot.itb" if SPL_LOAD_FIT
613         default "u-boot.img"
614         help
615           Filename to read to load U-Boot when reading from filesystem.
616
617 config SPL_FS_LOAD_KERNEL_NAME
618         string "File to load for the OS kernel from the filesystem"
619         depends on (SPL_FS_EXT4 || SPL_FS_FAT || SPL_FS_SQUASHFS) && SPL_OS_BOOT
620         default "uImage"
621         help
622           Filename to read to load for the OS kernel when reading from the
623           filesystem.
624
625 config SPL_FS_LOAD_ARGS_NAME
626         string "File to load for the OS kernel argument parameters from the filesystem"
627         depends on (SPL_FS_EXT4 || SPL_FS_FAT || SPL_FS_SQUASHFS) && SPL_OS_BOOT
628         default "args"
629         help
630           Filename to read to load for the OS kernel argument parameters from
631           the filesystem.
632
633 config SPL_FAT_WRITE
634         bool "Support write for FAT filesystems"
635         help
636           Enable write support for FAT and VFAT filesystems with SPL.
637           Support for the underlying block device (e.g. MMC or USB) must be
638           enabled separately.
639
640 config SPL_FPGA
641         bool "Support FPGAs"
642         help
643           Enable support for FPGAs in SPL. Field-programmable Gate Arrays
644           provide software-configurable hardware which is typically used to
645           implement peripherals (such as UARTs, LCD displays, MMC) or
646           accelerate custom processing functions, such as image processing
647           or machine learning. Sometimes it is useful to program the FPGA
648           as early as possible during boot, and this option can enable that
649           within SPL.
650
651 config SPL_GPIO
652         bool "Support GPIO in SPL"
653         help
654           Enable support for GPIOs (General-purpose Input/Output) in SPL.
655           GPIOs allow U-Boot to read the state of an input line (high or
656           low) and set the state of an output line. This can be used to
657           drive LEDs, control power to various system parts and read user
658           input. GPIOs can be useful in SPL to enable a 'sign-of-life' LED,
659           for example. Enable this option to build the drivers in
660           drivers/gpio as part of an SPL build.
661
662 config SPL_I2C
663         bool "Support I2C"
664         help
665           Enable support for the I2C (Inter-Integrated Circuit) bus in SPL.
666           I2C works with a clock and data line which can be driven by a
667           one or more masters or slaves. It is a fairly complex bus but is
668           widely used as it only needs two lines for communication. Speeds of
669           400kbps are typical but up to 3.4Mbps is supported by some
670           hardware. I2C can be useful in SPL to configure power management
671           ICs (PMICs) before raising the CPU clock speed, for example.
672           Enable this option to build the drivers in drivers/i2c as part of
673           an SPL build.
674
675 config SPL_LIBCOMMON_SUPPORT
676         bool "Support common libraries"
677         help
678           Enable support for common U-Boot libraries within SPL. These
679           libraries include common code to deal with U-Boot images,
680           environment and USB, for example. This option is enabled on many
681           boards. Enable this option to build the code in common/ as part of
682           an SPL build.
683
684 config SPL_LIBDISK_SUPPORT
685         bool "Support disk partitions"
686         select PARTITIONS
687         help
688           Enable support for disk partitions within SPL. 'Disk' is something
689           of a misnomer as it includes non-spinning media such as flash (as
690           used in MMC and USB sticks). Partitions provide a way for a disk
691           to be split up into separate regions, with a partition table placed
692           at the start or end which describes the location and size of each
693           'partition'. These partitions are typically uses as individual block
694           devices, typically with an EXT2 or FAT filesystem in each. This
695           option enables whatever partition support has been enabled in
696           U-Boot to also be used in SPL. It brings in the code in disk/.
697
698 config SPL_LIBGENERIC_SUPPORT
699         bool "Support generic libraries"
700         help
701           Enable support for generic U-Boot libraries within SPL. These
702           libraries include generic code to deal with device tree, hashing,
703           printf(), compression and the like. This option is enabled on many
704           boards. Enable this option to build the code in lib/ as part of an
705           SPL build.
706
707 config SPL_DM_MAILBOX
708         bool "Support Mailbox"
709         help
710           Enable support for Mailbox within SPL. This enable the inter
711           processor communication protocols tobe used within SPL. Enable
712           this option to build the drivers in drivers/mailbox as part of
713           SPL build.
714
715 config SPL_MMC
716         bool "Support MMC"
717         depends on MMC
718         select HAVE_BLOCK_DEVICE
719         help
720           Enable support for MMC (Multimedia Card) within SPL. This enables
721           the MMC protocol implementation and allows any enabled drivers to
722           be used within SPL. MMC can be used with or without disk partition
723           support depending on the application (SPL_LIBDISK_SUPPORT). Enable
724           this option to build the drivers in drivers/mmc as part of an SPL
725           build.
726
727 config SYS_MMCSD_FS_BOOT_PARTITION
728         int "MMC Boot Partition"
729         default 1
730         help
731           Partition on the MMC to load U-Boot from when the MMC is being
732           used in fs mode.
733           Use -1 as a special value to use the first bootable partition.
734
735 config SPL_MMC_TINY
736         bool "Tiny MMC framework in SPL"
737         depends on SPL_MMC
738         help
739           Enable MMC framework tinification support. This option is useful if
740           if your SPL is extremely size constrained. Heed the warning, enable
741           this option if and only if you know exactly what you are doing, if
742           you are reading this help text, you most likely have no idea :-)
743
744           The MMC framework is reduced to bare minimum to be useful. No malloc
745           support is needed for the MMC framework operation with this option
746           enabled. The framework supports exactly one MMC device and exactly
747           one MMC driver. The MMC driver can be adjusted to avoid any malloc
748           operations too, which can remove the need for malloc support in SPL
749           and thus further reduce footprint.
750
751 config SPL_MMC_WRITE
752         bool "MMC/SD/SDIO card support for write operations in SPL"
753         depends on SPL_MMC
754         help
755           Enable write access to MMC and SD Cards in SPL
756
757
758 config SPL_MPC8XXX_INIT_DDR
759         bool "Support MPC8XXX DDR init"
760         help
761           Enable support for DDR-SDRAM (double-data-rate synchronous dynamic
762           random-access memory) on the MPC8XXX family within SPL. This
763           allows DRAM to be set up before loading U-Boot into that DRAM,
764           where it can run.
765
766 config SPL_MTD_SUPPORT
767         bool "Support MTD drivers"
768         help
769           Enable support for MTD (Memory Technology Device) within SPL. MTD
770           provides a block interface over raw NAND and can also be used with
771           SPI flash. This allows SPL to load U-Boot from supported MTD
772           devices. See SPL_NAND_SUPPORT and SPL_ONENAND_SUPPORT for how
773           to enable specific MTD drivers.
774
775 config SPL_MUSB_NEW
776         bool "Support new Mentor Graphics USB"
777         help
778           Enable support for Mentor Graphics USB in SPL. This is a new
779           driver used by some boards. Enable this option to build
780           the drivers in drivers/usb/musb-new as part of an SPL build. The
781           old drivers are in drivers/usb/musb.
782
783 config SPL_NAND_SUPPORT
784         bool "Support NAND flash"
785         help
786           Enable support for NAND (Negative AND) flash in SPL. NAND flash
787           can be used to allow SPL to load U-Boot from supported devices.
788           This enables the drivers in drivers/mtd/nand/raw as part of an SPL
789           build.
790
791 config SPL_NAND_RAW_ONLY
792         bool "Support to boot only raw u-boot.bin images"
793         depends on SPL_NAND_SUPPORT
794         help
795           Use this only if you need to save space.
796
797 config SPL_NAND_DRIVERS
798         bool "Use standard NAND driver"
799         help
800           SPL uses normal NAND drivers, not minimal drivers.
801
802 config SPL_NAND_ECC
803         bool "Include standard ECC in SPL"
804
805 config SPL_NAND_SOFTECC
806         bool "Use software ECC in SPL"
807         depends on SPL_NAND_ECC
808
809 config SPL_NAND_SIMPLE
810         bool "Support simple NAND drivers in SPL"
811         help
812           Support for NAND boot using simple NAND drivers that
813           expose the cmd_ctrl() interface.
814
815 config SPL_NAND_BASE
816         depends on SPL_NAND_DRIVERS
817         bool "Use Base NAND Driver"
818         help
819           Include nand_base.c in the SPL.
820
821 config SPL_NAND_IDENT
822         depends on SPL_NAND_BASE
823         bool "Use chip ID to identify NAND flash"
824         help
825           SPL uses the chip ID list to identify the NAND flash.
826
827 config SPL_UBI
828         bool "Support UBI"
829         help
830           Enable support for loading payloads from UBI. See
831           README.ubispl for more info.
832
833 if SPL_DM
834 config SPL_DM_SPI
835         bool "Support SPI DM drivers in SPL"
836         help
837           Enable support for SPI DM drivers in SPL.
838
839 config SPL_DM_SPI_FLASH
840         bool "Support SPI DM FLASH drivers in SPL"
841         help
842           Enable support for SPI DM flash drivers in SPL.
843
844 endif
845 if SPL_UBI
846 config SPL_UBI_LOAD_BY_VOLNAME
847         bool "Support loading volumes by name"
848         help
849           This enables support for loading UBI volumes by name. When this
850           is set, CONFIG_SPL_UBI_LOAD_MONITOR_VOLNAME can be used to
851           configure the volume name from which to load U-Boot.
852
853 config SPL_UBI_MAX_VOL_LEBS
854         int "Maximum number of LEBs per volume"
855         depends on SPL_UBI
856         help
857           The maximum number of logical eraseblocks which a static volume
858           to load can contain. Used for sizing the scan data structure.
859
860 config SPL_UBI_MAX_PEB_SIZE
861         int "Maximum PEB size"
862         depends on SPL_UBI
863         help
864           The maximum physical erase block size.
865
866 config SPL_UBI_MAX_PEBS
867         int "Maximum number of PEBs"
868         depends on SPL_UBI
869         help
870           The maximum physical erase block size. If not overridden by
871           board code, this value will be used as the actual number of PEBs.
872
873 config SPL_UBI_PEB_OFFSET
874         int "Offset to first UBI PEB"
875         depends on SPL_UBI
876         help
877           The offset in number of PEBs from the start of flash to the first
878           PEB part of the UBI image.
879
880 config SPL_UBI_VID_OFFSET
881         int "Offset to VID header"
882         depends on SPL_UBI
883
884 config SPL_UBI_LEB_START
885         int "Offset to LEB in PEB"
886         depends on SPL_UBI
887         help
888           The offset in bytes to the LEB within a PEB.
889
890 config SPL_UBI_INFO_ADDR
891         hex "Address to place UBI scan info"
892         depends on SPL_UBI
893         help
894           Address for ubispl to place the scan info. Read README.ubispl to
895           determine the required size
896
897 config SPL_UBI_VOL_IDS
898         int "Maximum volume id"
899         depends on SPL_UBI
900         help
901           The maximum volume id which can be loaded. Used for sizing the
902           scan data structure.
903
904 config SPL_UBI_LOAD_MONITOR_ID
905         int "id of U-Boot volume"
906         depends on SPL_UBI
907         help
908           The UBI volume id from which to load U-Boot
909
910 config SPL_UBI_LOAD_MONITOR_VOLNAME
911         string "volume name of U-Boot volume"
912         depends on SPL_UBI_LOAD_BY_VOLNAME
913         help
914           The UBI volume name from which to load U-Boot
915
916 config SPL_UBI_LOAD_KERNEL_ID
917         int "id of kernel volume"
918         depends on SPL_OS_BOOT && SPL_UBI
919         help
920           The UBI volume id from which to load the kernel
921
922 config SPL_UBI_LOAD_ARGS_ID
923         int "id of kernel args volume"
924         depends on SPL_OS_BOOT && SPL_UBI
925         help
926           The UBI volume id from which to load the device tree
927
928 config UBI_SPL_SILENCE_MSG
929         bool "silence UBI SPL messages"
930         help
931           Disable messages from UBI SPL. This leaves warnings
932           and errors enabled.
933
934 endif   # if SPL_UBI
935
936 config SPL_NET
937         bool "Support networking"
938         help
939           Enable support for network devices (such as Ethernet) in SPL.
940           This permits SPL to load U-Boot over a network link rather than
941           from an on-board peripheral. Environment support is required since
942           the network stack uses a number of environment variables. See also
943           SPL_ETH.
944
945 if SPL_NET
946 config SPL_NET_VCI_STRING
947         string "BOOTP Vendor Class Identifier string sent by SPL"
948         help
949           As defined by RFC 2132 the vendor class identifier field can be
950           sent by the client to identify the vendor type and configuration
951           of a client.  This is often used in practice to allow for the DHCP
952           server to specify different files to load depending on if the ROM,
953           SPL or U-Boot itself makes the request
954 endif   # if SPL_NET
955
956 config SPL_NO_CPU_SUPPORT
957         bool "Drop CPU code in SPL"
958         help
959           This is specific to the ARM926EJ-S CPU. It disables the standard
960           start.S start-up code, presumably so that a replacement can be
961           used on that CPU. You should not enable it unless you know what
962           you are doing.
963
964 config SPL_NOR_SUPPORT
965         bool "Support NOR flash"
966         help
967           Enable support for loading U-Boot from memory-mapped NOR (Negative
968           OR) flash in SPL. NOR flash is slow to write but fast to read, and
969           a memory-mapped device makes it very easy to access. Loading from
970           NOR is typically achieved with just a memcpy().
971
972 config SPL_XIP_SUPPORT
973         bool "Support XIP"
974         depends on SPL
975         help
976           Enable support for execute in place of U-Boot or kernel image. There
977           is no need to copy image from flash to ram if flash supports execute
978           in place. Its very useful in systems having enough flash but not
979           enough ram to load the image.
980
981 config SPL_ONENAND_SUPPORT
982         bool "Support OneNAND flash"
983         help
984           Enable support for OneNAND (Negative AND) flash in SPL. OneNAND is
985           a type of NAND flash and therefore can be used to allow SPL to
986           load U-Boot from supported devices. This enables the drivers in
987           drivers/mtd/onenand as part of an SPL build.
988
989 config SPL_OS_BOOT
990         bool "Activate Falcon Mode"
991         depends on !TI_SECURE_DEVICE
992         help
993           Enable booting directly to an OS from SPL.
994           for more info read doc/README.falcon
995
996 if SPL_OS_BOOT
997 config SYS_OS_BASE
998         hex "addr, where OS is found"
999         depends on SPL_NOR_SUPPORT
1000         help
1001           Specify the address, where the OS image is found, which
1002           gets booted.
1003
1004 endif # SPL_OS_BOOT
1005
1006 config SPL_FALCON_BOOT_MMCSD
1007         bool "Enable Falcon boot from MMC or SD media"
1008         depends on SPL_OS_BOOT && SPL_MMC
1009         help
1010           Select this if the Falcon mode OS image mode is on MMC or SD media.
1011
1012 config SYS_MMCSD_RAW_MODE_KERNEL_SECTOR
1013         hex "Falcon mode: Sector to load kernel uImage from MMC"
1014         depends on SPL_FALCON_BOOT_MMCSD
1015         help
1016           When Falcon mode is used with an MMC or SD media, SPL needs to know
1017           where to look for the kernel uImage. The image is expected to begin
1018           at the raw MMC specified in this config.
1019           Note that the Falcon mode image can also be a FIT, if FIT support is
1020           enabled.
1021
1022 config SPL_PAYLOAD
1023         string "SPL payload"
1024         default "tpl/u-boot-with-tpl.bin" if TPL
1025         default "u-boot.bin"
1026         help
1027           Payload for SPL boot. For backward compatibility, default to
1028           u-boot.bin, i.e. RAW image without any header. In case of
1029           TPL, tpl/u-boot-with-tpl.bin. For new boards, suggest to
1030           use u-boot.img.
1031
1032 config SPL_PCI
1033         bool "Support PCI drivers"
1034         help
1035           Enable support for PCI in SPL. For platforms that need PCI to boot,
1036           or must perform some init using PCI in SPL, this provides the
1037           necessary driver support. This enables the drivers in drivers/pci
1038           as part of an SPL build.
1039
1040 config SPL_PCH
1041         bool "Support PCH drivers"
1042         help
1043           Enable support for PCH (Platform Controller Hub) devices in SPL.
1044           These are used to set up GPIOs and the SPI peripheral early in
1045           boot. This enables the drivers in drivers/pch as part of an SPL
1046           build.
1047
1048 config SPL_POST_MEM_SUPPORT
1049         bool "Support POST drivers"
1050         help
1051           Enable support for POST (Power-on Self Test) in SPL. POST is a
1052           procedure that checks that the hardware (CPU or board) appears to
1053           be functionally correctly. It is a sanity check that can be
1054           performed before booting. This enables the drivers in post/drivers
1055           as part of an SPL build.
1056
1057 config SPL_DM_RESET
1058         bool "Support reset drivers"
1059         depends on SPL
1060         help
1061           Enable support for reset control in SPL.
1062           That can be useful in SPL to handle IP reset in driver, as in U-Boot,
1063           by using the generic reset API provided by driver model.
1064           This enables the drivers in drivers/reset as part of an SPL build.
1065
1066 config SPL_POWER
1067         bool "Support power drivers"
1068         help
1069           Enable support for power control in SPL. This includes support
1070           for PMICs (Power-management Integrated Circuits) and some of the
1071           features provided by PMICs. In particular, voltage regulators can
1072           be used to enable/disable power and vary its voltage. That can be
1073           useful in SPL to turn on boot peripherals and adjust CPU voltage
1074           so that the clock speed can be increased. This enables the drivers
1075           in drivers/power, drivers/power/pmic and drivers/power/regulator
1076           as part of an SPL build.
1077
1078 config SPL_POWER_DOMAIN
1079         bool "Support power domain drivers"
1080         select SPL_POWER
1081         help
1082           Enable support for power domain control in SPL. Many SoCs allow
1083           power to be applied to or removed from portions of the SoC (power
1084           domains). This may be used to save power. This API provides the
1085           means to control such power management hardware. This enables
1086           the drivers in drivers/power/domain as part of a SPL build.
1087
1088 config SPL_RAM_SUPPORT
1089         bool "Support booting from RAM"
1090         default y if MICROBLAZE || ARCH_SOCFPGA || ARCH_TEGRA || ARCH_ZYNQ
1091         help
1092           Enable booting of an image in RAM. The image can be preloaded or
1093           it can be loaded by SPL directly into RAM (e.g. using USB).
1094
1095 config SPL_RAM_DEVICE
1096         bool "Support booting from preloaded image in RAM"
1097         depends on SPL_RAM_SUPPORT
1098         default y if MICROBLAZE || ARCH_SOCFPGA || ARCH_TEGRA || ARCH_ZYNQ
1099         help
1100           Enable booting of an image already loaded in RAM. The image has to
1101           be already in memory when SPL takes over, e.g. loaded by the boot
1102           ROM.
1103
1104 config SPL_REMOTEPROC
1105         bool "Support REMOTEPROCS"
1106         help
1107           Enable support for REMOTEPROCs in SPL. This permits to load
1108           a remote processor firmware in SPL.
1109
1110 config SPL_RTC
1111         bool "Support RTC drivers"
1112         help
1113           Enable RTC (Real-time Clock) support in SPL. This includes support
1114           for reading and setting the time. Some RTC devices also have some
1115           non-volatile (battery-backed) memory which is accessible if
1116           needed. This enables the drivers in drivers/rtc as part of an SPL
1117           build.
1118
1119 config SPL_SATA
1120         bool "Support loading from SATA"
1121         help
1122           Enable support for SATA (Serial AT attachment) in SPL. This allows
1123           use of SATA devices such as hard drives and flash drivers for
1124           loading U-Boot. SATA is used in higher-end embedded systems and
1125           can provide higher performance than MMC , at somewhat higher
1126           expense and power consumption. This enables loading from SATA
1127           using a configured device.
1128
1129 config SPL_SATA_RAW_U_BOOT_USE_SECTOR
1130         bool "SATA raw mode: by sector"
1131         depends on SPL_SATA
1132         default y if ARCH_MVEBU
1133         help
1134           Use sector number for specifying U-Boot location on SATA disk in
1135           raw mode.
1136
1137 config SPL_SATA_RAW_U_BOOT_SECTOR
1138         hex "Sector on the SATA disk to load U-Boot from"
1139         depends on SPL_SATA_RAW_U_BOOT_USE_SECTOR
1140         default 0x1 if ARCH_MVEBU
1141         help
1142           Sector on the SATA disk to load U-Boot from, when the SATA disk is being
1143           used in raw mode. Units: SATA disk sectors (1 sector = 512 bytes).
1144
1145 config SPL_SERIAL
1146         bool "Support serial"
1147         select SPL_PRINTF
1148         select SPL_STRTO
1149         help
1150           Enable support for serial in SPL. This allows use of a serial UART
1151           for displaying messages while SPL is running. It also brings in
1152           printf() and panic() functions. This should normally be enabled
1153           unless there are space reasons not to. Even then, consider
1154           enabling SPL_USE_TINY_PRINTF which is a small printf() version.
1155
1156 config SPL_SPI
1157         bool "Support SPI drivers"
1158         help
1159           Enable support for using SPI in SPL. This is used for connecting
1160           to SPI flash for loading U-Boot. See SPL_SPI_FLASH_SUPPORT for
1161           more details on that. The SPI driver provides the transport for
1162           data between the SPI flash and the CPU. This option can be used to
1163           enable SPI drivers that are needed for other purposes also, such
1164           as a SPI PMIC.
1165
1166 config SPL_SPI_FLASH_SUPPORT
1167         bool "Support SPI flash drivers"
1168         depends on SPL_SPI
1169         help
1170           Enable support for using SPI flash in SPL, and loading U-Boot from
1171           SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
1172           the SPI bus that is used to connect it to a system. It is a simple
1173           but fast bidirectional 4-wire bus (clock, chip select and two data
1174           lines). This enables the drivers in drivers/mtd/spi as part of an
1175           SPL build. This normally requires SPL_SPI.
1176
1177 if SPL_SPI_FLASH_SUPPORT
1178
1179 config SPL_SPI_FLASH_TINY
1180         bool "Enable low footprint SPL SPI Flash support"
1181         depends on !SPI_FLASH_BAR
1182         default y if SPI_FLASH
1183         help
1184          Enable lightweight SPL SPI Flash support that supports just reading
1185          data/images from flash. No support to write/erase flash. Enable
1186          this if you have SPL size limitations and don't need full
1187          fledged SPI flash support.
1188
1189 config SPL_SPI_FLASH_SFDP_SUPPORT
1190         bool "SFDP table parsing support for SPI NOR flashes"
1191         depends on !SPI_FLASH_BAR && !SPL_SPI_FLASH_TINY
1192         help
1193          Enable support for parsing and auto discovery of parameters for
1194          SPI NOR flashes using Serial Flash Discoverable Parameters (SFDP)
1195          tables as per JESD216 standard in SPL.
1196
1197 config SPL_SPI_FLASH_MTD
1198         bool "Support for SPI flash MTD drivers in SPL"
1199         help
1200           Enable support for SPI flash MTD drivers in SPL.
1201
1202 config SPL_SPI_LOAD
1203         bool "Support loading from SPI flash"
1204         help
1205           Enable support for loading next stage, U-Boot or otherwise, from
1206           SPI NOR in U-Boot SPL.
1207
1208 endif # SPL_SPI_FLASH_SUPPORT
1209
1210 config SYS_SPI_U_BOOT_OFFS
1211         hex "address of u-boot payload in SPI flash"
1212         default 0x8000 if ARCH_SUNXI
1213         default 0x0
1214         depends on SPL_SPI_LOAD || SPL_SPI_SUNXI
1215         help
1216          Address within SPI-Flash from where the u-boot payload is fetched
1217          from.
1218
1219 config SPL_THERMAL
1220         bool "Driver support for thermal devices"
1221         help
1222           Enable support for temperature-sensing devices. Some SoCs have on-chip
1223           temperature sensors to permit warnings, speed throttling or even
1224           automatic power-off when the temperature gets too high or low. Other
1225           devices may be discrete but connected on a suitable bus.
1226
1227 config SPL_USB_HOST
1228         bool "Support USB host drivers"
1229         select HAVE_BLOCK_DEVICE
1230         help
1231           Enable access to USB (Universal Serial Bus) host devices so that
1232           SPL can load U-Boot from a connected USB peripheral, such as a USB
1233           flash stick. While USB takes a little longer to start up than most
1234           buses, it is very flexible since many different types of storage
1235           device can be attached. This option enables the drivers in
1236           drivers/usb/host as part of an SPL build.
1237
1238 config SPL_USB_STORAGE
1239         bool "Support loading from USB"
1240         depends on SPL_USB_HOST && !(BLK && !DM_USB)
1241         help
1242           Enable support for USB devices in SPL. This allows use of USB
1243           devices such as hard drives and flash drivers for loading U-Boot.
1244           The actual drivers are enabled separately using the normal U-Boot
1245           config options. This enables loading from USB using a configured
1246           device.
1247
1248 config SPL_USB_GADGET
1249         bool "Suppport USB Gadget drivers"
1250         help
1251           Enable USB Gadget API which allows to enable USB device functions
1252           in SPL.
1253
1254 if SPL_USB_GADGET
1255
1256 config SPL_USB_ETHER
1257         bool "Support USB Ethernet drivers"
1258         depends on SPL_NET
1259         help
1260           Enable access to the USB network subsystem and associated
1261           drivers in SPL. This permits SPL to load U-Boot over a
1262           USB-connected Ethernet link (such as a USB Ethernet dongle) rather
1263           than from an onboard peripheral. Environment support is required
1264           since the network stack uses a number of environment variables.
1265           See also SPL_NET and SPL_ETH.
1266
1267 config SPL_DFU
1268         bool "Support DFU (Device Firmware Upgrade)"
1269         select SPL_HASH
1270         select SPL_DFU_NO_RESET
1271         depends on SPL_RAM_SUPPORT
1272         help
1273           This feature enables the DFU (Device Firmware Upgrade) in SPL with
1274           RAM memory device support. The ROM code will load and execute
1275           the SPL built with dfu. The user can load binaries (u-boot/kernel) to
1276           selected device partition from host-pc using dfu-utils.
1277           This feature is useful to flash the binaries to factory or bare-metal
1278           boards using USB interface.
1279
1280 choice
1281         bool "DFU device selection"
1282         depends on SPL_DFU
1283
1284 config SPL_DFU_RAM
1285         bool "RAM device"
1286         depends on SPL_DFU && SPL_RAM_SUPPORT
1287         help
1288          select RAM/DDR memory device for loading binary images
1289          (u-boot/kernel) to the selected device partition using
1290          DFU and execute the u-boot/kernel from RAM.
1291
1292 endchoice
1293
1294 config SPL_USB_SDP_SUPPORT
1295         bool "Support SDP (Serial Download Protocol)"
1296         depends on SPL_SERIAL
1297         help
1298           Enable Serial Download Protocol (SDP) device support in SPL. This
1299           allows to download images into memory and execute (jump to) them
1300           using the same protocol as implemented by the i.MX family's boot ROM.
1301
1302 config SPL_SDP_USB_DEV
1303         int "SDP USB controller index"
1304         default 0
1305         depends on SPL_USB_SDP_SUPPORT
1306         help
1307           Some boards have USB controller other than 0. Define this option
1308           so it can be used in compiled environment.
1309 endif
1310
1311 config SPL_WATCHDOG
1312         bool "Support watchdog drivers"
1313         imply SPL_WDT if !HW_WATCHDOG
1314         help
1315           Enable support for watchdog drivers in SPL. A watchdog is
1316           typically a hardware peripheral which can reset the system when it
1317           detects no activity for a while (such as a software crash). This
1318           enables the drivers in drivers/watchdog as part of an SPL build.
1319
1320 config SPL_YMODEM_SUPPORT
1321         bool "Support loading using Ymodem"
1322         depends on SPL_SERIAL
1323         help
1324           While loading from serial is slow it can be a useful backup when
1325           there is no other option. The Ymodem protocol provides a reliable
1326           means of transmitting U-Boot over a serial line for using in SPL,
1327           with a checksum to ensure correctness.
1328
1329 config SPL_ATF
1330         bool "Support ARM Trusted Firmware"
1331         depends on ARM64 && SPL_FIT
1332         help
1333           ATF(ARM Trusted Firmware) is a component for ARM AArch64 which
1334           is loaded by SPL (which is considered as BL2 in ATF terminology).
1335           More detail at: https://github.com/ARM-software/arm-trusted-firmware
1336
1337 config SPL_ATF_LOAD_IMAGE_V2
1338         bool "Use the new LOAD_IMAGE_V2 parameter passing"
1339         depends on SPL_ATF
1340         help
1341           Some platforms use the newer LOAD_IMAGE_V2 parameter passing.
1342
1343           If you want to load a bl31 image from the SPL and need the new
1344           method, say Y.
1345
1346 config SPL_ATF_NO_PLATFORM_PARAM
1347         bool "Pass no platform parameter"
1348         depends on SPL_ATF
1349         help
1350           While we expect to call a pointer to a valid FDT (or NULL)
1351           as the platform parameter to an ATF, some ATF versions are
1352           not U-Boot aware and have an insufficiently robust parameter
1353           validation to gracefully reject a FDT being passed.
1354
1355           If this option is enabled, the spl_atf os-type handler will
1356           always pass NULL for the platform parameter.
1357
1358           If your ATF is affected, say Y.
1359
1360 config SPL_AM33XX_ENABLE_RTC32K_OSC
1361         bool "Enable the RTC32K OSC on AM33xx based platforms"
1362         default y if AM33XX
1363         help
1364           Enable access to the AM33xx RTC and select the external 32kHz clock
1365           source.
1366
1367 config SPL_OPTEE_IMAGE
1368         bool "Support OP-TEE Trusted OS image in SPL"
1369         depends on ARM
1370         help
1371           OP-TEE is an open source Trusted OS which is loaded by SPL.
1372           More detail at: https://github.com/OP-TEE/optee_os
1373
1374 config SPL_OPENSBI
1375         bool "Support RISC-V OpenSBI"
1376         depends on RISCV && SPL_RISCV_MMODE && RISCV_SMODE
1377         help
1378           OpenSBI is an open-source implementation of the RISC-V Supervisor Binary
1379           Interface (SBI) specification. U-Boot supports the OpenSBI FW_DYNAMIC
1380           firmware. It is loaded and started by U-Boot SPL.
1381
1382           More details are available at https://github.com/riscv/opensbi and
1383           https://github.com/riscv/riscv-sbi-doc
1384
1385 config SPL_OPENSBI_LOAD_ADDR
1386         hex "OpenSBI load address"
1387         depends on SPL_OPENSBI
1388         help
1389           Load address of the OpenSBI binary.
1390
1391 config TPL
1392         bool
1393         depends on SUPPORT_TPL
1394         prompt "Enable TPL"
1395         help
1396           If you want to build TPL as well as the normal image and SPL, say Y.
1397
1398 if TPL
1399
1400 config TPL_SIZE_LIMIT
1401         hex "Maximum size of TPL image"
1402         depends on TPL
1403         default 0x0
1404         help
1405           Specifies the maximum length of the U-Boot TPL image.
1406           If this value is zero, it is ignored.
1407
1408 config TPL_BINMAN_SYMBOLS
1409         bool "Declare binman symbols in TPL"
1410         depends on SPL_FRAMEWORK && BINMAN
1411         default y
1412         help
1413           This enables use of symbols in TPL which refer to U-Boot, enabling TPL
1414           to obtain the location of U-Boot simply by calling spl_get_image_pos()
1415           and spl_get_image_size().
1416
1417           For this to work, you must have a U-Boot image in the binman image, so
1418           binman can update TPL with the location of it.
1419
1420 config TPL_FRAMEWORK
1421         bool "Support TPL based upon the common SPL framework"
1422         default y if SPL_FRAMEWORK
1423         help
1424           Enable the SPL framework under common/spl/ for TPL builds.
1425           This framework supports MMC, NAND and YMODEM and other methods
1426           loading of U-Boot's SPL stage. If unsure, say Y.
1427
1428 config TPL_HANDOFF
1429         bool "Pass hand-off information from TPL to SPL and U-Boot proper"
1430         depends on HANDOFF && TPL_BLOBLIST
1431         default y
1432         help
1433           This option enables TPL to write handoff information. This can be
1434           used to pass information like the size of SDRAM from TPL to U-Boot
1435           proper. The information is also available to SPL if it is useful
1436           there.
1437
1438 config TPL_BOARD_INIT
1439         bool "Call board-specific initialization in TPL"
1440         help
1441           If this option is enabled, U-Boot will call the function
1442           spl_board_init() from board_init_r(). This function should be
1443           provided by the board.
1444
1445 config TPL_BOOTCOUNT_LIMIT
1446         bool "Support bootcount in TPL"
1447         depends on TPL_ENV_SUPPORT
1448         help
1449           If this option is enabled, the TPL will support bootcount.
1450           For example, it may be useful to choose the device to boot.
1451
1452 config TPL_LDSCRIPT
1453         string "Linker script for the TPL stage"
1454         depends on TPL
1455         default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
1456         default "arch/\$(ARCH)/cpu/u-boot-spl.lds"
1457         help
1458           The TPL stage will usually require a different linker-script
1459           (as it runs from a different memory region) than the regular
1460           U-Boot stage.  Set this to the path of the linker-script to
1461           be used for TPL.
1462
1463           May be left empty to trigger the Makefile infrastructure to
1464           fall back to the linker-script used for the SPL stage.
1465
1466 config TPL_NEEDS_SEPARATE_STACK
1467         bool "TPL needs a separate initial stack-pointer"
1468         depends on TPL
1469         help
1470           Enable, if the TPL stage should not inherit its initial
1471           stack-pointer from the settings for the SPL stage.
1472
1473 config TPL_POWER
1474         bool "Support power drivers"
1475         help
1476           Enable support for power control in TPL. This includes support
1477           for PMICs (Power-management Integrated Circuits) and some of the
1478           features provided by PMICs. In particular, voltage regulators can
1479           be used to enable/disable power and vary its voltage. That can be
1480           useful in TPL to turn on boot peripherals and adjust CPU voltage
1481           so that the clock speed can be increased. This enables the drivers
1482           in drivers/power, drivers/power/pmic and drivers/power/regulator
1483           as part of an TPL build.
1484
1485 config TPL_TEXT_BASE
1486         hex "Base address for the .text section of the TPL stage"
1487         default 0
1488         help
1489           The base address for the .text section of the TPL stage.
1490
1491 config TPL_MAX_SIZE
1492         int "Maximum size (in bytes) for the TPL stage"
1493         default 0
1494         depends on TPL
1495         help
1496           The maximum size (in bytes) of the TPL stage.
1497
1498 config TPL_STACK
1499         hex "Address of the initial stack-pointer for the TPL stage"
1500         depends on TPL_NEEDS_SEPARATE_STACK
1501         help
1502           The address of the initial stack-pointer for the TPL stage.
1503           Usually this will be the (aligned) top-of-stack.
1504
1505 config TPL_READ_ONLY
1506         bool
1507         depends on TPL_OF_PLATDATA
1508         select TPL_OF_PLATDATA_NO_BIND
1509         select TPL_OF_PLATDATA_RT
1510         help
1511           Some platforms (e.g. x86 Apollo Lake) load SPL into a read-only
1512           section of memory. This means that of-platdata must make a copy (in
1513           writeable memory) of anything it wants to modify, such as
1514           device-private data.
1515
1516 config TPL_BOOTROM_SUPPORT
1517         bool "Support returning to the BOOTROM (from TPL)"
1518         help
1519           Some platforms (e.g. the Rockchip RK3368) provide support in their
1520           ROM for loading the next boot-stage after performing basic setup
1521           from the TPL stage.
1522
1523           Enable this option, to return to the BOOTROM through the
1524           BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
1525           boot device list, if not implemented for a given board)
1526
1527 config TPL_CRC32
1528         bool "Support CRC32 in TPL"
1529         default y if TPL_ENV_SUPPORT || TPL_BLOBLIST
1530         help
1531           Enable this to support CRC32 in uImages or FIT images within SPL.
1532           This is a 32-bit checksum value that can be used to verify images.
1533           For FIT images, this is the least secure type of checksum, suitable
1534           for detected accidental image corruption. For secure applications you
1535           should consider SHA1 or SHA256.
1536
1537 config TPL_DRIVERS_MISC
1538         bool "Support misc drivers in TPL"
1539         help
1540           Enable miscellaneous drivers in TPL. These drivers perform various
1541           tasks that don't fall nicely into other categories, Enable this
1542           option to build the drivers in drivers/misc as part of an TPL
1543           build, for those that support building in TPL (not all drivers do).
1544
1545 config TPL_ENV_SUPPORT
1546         bool "Support an environment"
1547         help
1548           Enable environment support in TPL. See SPL_ENV_SUPPORT for details.
1549
1550 config TPL_GPIO
1551         bool "Support GPIO in TPL"
1552         help
1553           Enable support for GPIOs (General-purpose Input/Output) in TPL.
1554           GPIOs allow U-Boot to read the state of an input line (high or
1555           low) and set the state of an output line. This can be used to
1556           drive LEDs, control power to various system parts and read user
1557           input. GPIOs can be useful in TPL to enable a 'sign-of-life' LED,
1558           for example. Enable this option to build the drivers in
1559           drivers/gpio as part of an TPL build.
1560
1561 config TPL_I2C
1562         bool "Support I2C"
1563         help
1564           Enable support for the I2C bus in TPL. See SPL_I2C for
1565           details.
1566
1567 config TPL_LIBCOMMON_SUPPORT
1568         bool "Support common libraries"
1569         help
1570           Enable support for common U-Boot libraries within TPL. See
1571           SPL_LIBCOMMON_SUPPORT for details.
1572
1573 config TPL_LIBGENERIC_SUPPORT
1574         bool "Support generic libraries"
1575         help
1576           Enable support for generic U-Boot libraries within TPL. See
1577           SPL_LIBGENERIC_SUPPORT for details.
1578
1579 config TPL_MPC8XXX_INIT_DDR
1580         bool "Support MPC8XXX DDR init"
1581         help
1582           Enable support for DDR-SDRAM on the MPC8XXX family within TPL. See
1583           SPL_MPC8XXX_INIT_DDR for details.
1584
1585 config TPL_MMC
1586         bool "Support MMC"
1587         depends on MMC
1588         help
1589           Enable support for MMC within TPL. See SPL_MMC for details.
1590
1591 config TPL_NAND_SUPPORT
1592         bool "Support NAND flash"
1593         help
1594           Enable support for NAND in TPL. See SPL_NAND_SUPPORT for details.
1595
1596 config TPL_PCI
1597         bool "Support PCI drivers"
1598         help
1599           Enable support for PCI in TPL. For platforms that need PCI to boot,
1600           or must perform some init using PCI in SPL, this provides the
1601           necessary driver support. This enables the drivers in drivers/pci
1602           as part of a TPL build.
1603
1604 config TPL_PCH
1605         bool "Support PCH drivers"
1606         help
1607           Enable support for PCH (Platform Controller Hub) devices in TPL.
1608           These are used to set up GPIOs and the SPI peripheral early in
1609           boot. This enables the drivers in drivers/pch as part of a TPL
1610           build.
1611
1612 config TPL_RAM_SUPPORT
1613         bool "Support booting from RAM"
1614         help
1615           Enable booting of an image in RAM. The image can be preloaded or
1616           it can be loaded by TPL directly into RAM (e.g. using USB).
1617
1618 config TPL_RAM_DEVICE
1619         bool "Support booting from preloaded image in RAM"
1620         depends on TPL_RAM_SUPPORT
1621         help
1622           Enable booting of an image already loaded in RAM. The image has to
1623           be already in memory when TPL takes over, e.g. loaded by the boot
1624           ROM.
1625
1626 config TPL_RTC
1627         bool "Support RTC drivers"
1628         help
1629           Enable RTC (Real-time Clock) support in TPL. This includes support
1630           for reading and setting the time. Some RTC devices also have some
1631           non-volatile (battery-backed) memory which is accessible if
1632           needed. This enables the drivers in drivers/rtc as part of an TPL
1633           build.
1634
1635 config TPL_SERIAL
1636         bool "Support serial"
1637         select TPL_PRINTF
1638         select TPL_STRTO
1639         help
1640           Enable support for serial in TPL. See SPL_SERIAL for
1641           details.
1642
1643 config TPL_SPI_FLASH_SUPPORT
1644         bool "Support SPI flash drivers"
1645         help
1646           Enable support for using SPI flash in TPL. See SPL_SPI_FLASH_SUPPORT
1647           for details.
1648
1649 config TPL_SPI_FLASH_TINY
1650         bool "Enable low footprint TPL SPI Flash support"
1651         depends on TPL_SPI_FLASH_SUPPORT && !SPI_FLASH_BAR
1652         default y if SPI_FLASH
1653         help
1654          Enable lightweight TPL SPI Flash support that supports just reading
1655          data/images from flash. No support to write/erase flash. Enable
1656          this if you have TPL size limitations and don't need full-fledged
1657          SPI flash support.
1658
1659 config TPL_SPI_LOAD
1660         bool "Support loading from SPI flash"
1661         depends on TPL_SPI_FLASH_SUPPORT
1662         help
1663           Enable support for loading next stage, U-Boot or otherwise, from
1664           SPI NOR in U-Boot TPL.
1665
1666 config TPL_SPI
1667         bool "Support SPI drivers"
1668         help
1669           Enable support for using SPI in TPL. See SPL_SPI for
1670           details.
1671
1672 config TPL_DM_SPI
1673         bool "Support SPI DM drivers in TPL"
1674         help
1675           Enable support for SPI DM drivers in TPL.
1676
1677 config TPL_DM_SPI_FLASH
1678         bool "Support SPI DM FLASH drivers in TPL"
1679         help
1680           Enable support for SPI DM flash drivers in TPL.
1681
1682 config TPL_YMODEM_SUPPORT
1683         bool "Support loading using Ymodem"
1684         depends on TPL_SERIAL
1685         help
1686           While loading from serial is slow it can be a useful backup when
1687           there is no other option. The Ymodem protocol provides a reliable
1688           means of transmitting U-Boot over a serial line for using in TPL,
1689           with a checksum to ensure correctness.
1690
1691 endif # TPL
1692
1693 config VPL
1694         bool
1695         depends on SUPPORT_SPL
1696         prompt "Enable VPL"
1697         help
1698           If you want to build VPL as well as the normal image, TPL and SPL,
1699           say Y.
1700
1701 if VPL
1702
1703 config VPL_BANNER_PRINT
1704         bool "Enable output of the VPL banner 'U-Boot VPL ...'"
1705         depends on VPL
1706         default y
1707         help
1708           If this option is enabled, VPL will print the banner with version
1709           info. Disabling this option could be useful to reduce VPL boot time
1710           (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
1711
1712 config VPL_BOARD_INIT
1713         bool "Call board-specific initialization in VPL"
1714         help
1715           If this option is enabled, U-Boot will call the function
1716           spl_board_init() from board_init_r(). This function should be
1717           provided by the board.
1718
1719 config VPL_CACHE
1720         depends on CACHE
1721         bool "Support cache drivers in VPL"
1722         help
1723           Enable support for cache drivers in VPL.
1724
1725 config VPL_CRC32
1726         bool "Support CRC32 in VPL"
1727         default y if VPL_ENV_SUPPORT || VPL_BLOBLIST
1728         help
1729           Enable this to support CRC32 in uImages or FIT images within VPL.
1730           This is a 32-bit checksum value that can be used to verify images.
1731           For FIT images, this is the least secure type of checksum, suitable
1732           for detected accidental image corruption. For secure applications you
1733           should consider SHA1 or SHA256.
1734
1735 config VPL_DM_SPI
1736         bool "Support SPI DM drivers in VPL"
1737         help
1738           Enable support for SPI DM drivers in VPL.
1739
1740 config VPL_DM_SPI_FLASH
1741         bool "Support SPI DM FLASH drivers in VPL"
1742         help
1743           Enable support for SPI DM flash drivers in VPL.
1744
1745 config VPL_FRAMEWORK
1746         bool "Support VPL based upon the common SPL framework"
1747         default y
1748         help
1749           Enable the SPL framework under common/spl/ for VPL builds.
1750           This framework supports MMC, NAND and YMODEM and other methods
1751           loading of U-Boot's next stage. If unsure, say Y.
1752
1753 config VPL_HANDOFF
1754         bool "Pass hand-off information from VPL to SPL"
1755         depends on HANDOFF && VPL_BLOBLIST
1756         default y
1757         help
1758           This option enables VPL to write handoff information. This can be
1759           used to pass information like the size of SDRAM from VPL to SPL. Also
1760           VPL can receive information from TPL in the same place if that is
1761           enabled.
1762
1763 config VPL_LIBCOMMON_SUPPORT
1764         bool "Support common libraries"
1765         default y if SPL_LIBCOMMON_SUPPORT
1766         help
1767           Enable support for common U-Boot libraries within VPL. See
1768           SPL_LIBCOMMON_SUPPORT for details.
1769
1770 config VPL_LIBGENERIC_SUPPORT
1771         bool "Support generic libraries"
1772         default y if SPL_LIBGENERIC_SUPPORT
1773         help
1774           Enable support for generic U-Boot libraries within VPL. These
1775           libraries include generic code to deal with device tree, hashing,
1776           printf(), compression and the like. This option is enabled on many
1777           boards. Enable this option to build the code in lib/ as part of a
1778           VPL build.
1779
1780 config VPL_DRIVERS_MISC
1781         bool "Support misc drivers"
1782         default y if TPL_DRIVERS_MISC
1783         help
1784           Enable miscellaneous drivers in VPL. These drivers perform various
1785           tasks that don't fall nicely into other categories, Enable this
1786           option to build the drivers in drivers/misc as part of a VPL
1787           build, for those that support building in VPL (not all drivers do).
1788
1789 config VPL_ENV_SUPPORT
1790         bool "Support an environment"
1791         help
1792           Enable environment support in VPL. The U-Boot environment provides
1793           a number of settings (essentially name/value pairs) which can
1794           control many aspects of U-Boot's operation. Enabling this option will
1795           make env_get() and env_set() available in VSPL.
1796
1797 config VPL_GPIO
1798         bool "Support GPIO in VPL"
1799         default y if SPL_GPIO
1800         help
1801           Enable support for GPIOs (General-purpose Input/Output) in VPL.
1802           GPIOs allow U-Boot to read the state of an input line (high or
1803           low) and set the state of an output line. This can be used to
1804           drive LEDs, control power to various system parts and read user
1805           input. GPIOs can be useful in VPL to enable a 'sign-of-life' LED,
1806           for example. Enable this option to build the drivers in
1807           drivers/gpio as part of a VPL build.
1808
1809 config VPL_HANDOFF
1810         bool "Pass hand-off information from VPL to SPL and U-Boot proper"
1811         depends on HANDOFF && VPL_BLOBLIST
1812         default y
1813         help
1814           This option enables VPL to write handoff information. This can be
1815           used to pass information like the size of SDRAM from VPL to U-Boot
1816           proper. The information is also available to VPL if it is useful
1817           there.
1818
1819 config VPL_HASH
1820         bool "Support hashing drivers in VPL"
1821         depends on VPL
1822         select SHA1
1823         select SHA256
1824         help
1825           Enable hashing drivers in VPL. These drivers can be used to
1826           accelerate secure boot processing in secure applications. Enable
1827           this option to build system-specific drivers for hash acceleration
1828           as part of a VPL build.
1829
1830 config VPL_I2C_SUPPORT
1831         bool "Support I2C in VPL"
1832         default y if SPL_I2C_SUPPORT
1833         help
1834           Enable support for the I2C bus in VPL. Vee SPL_I2C_SUPPORT for
1835           details.
1836
1837 config VPL_PCH_SUPPORT
1838         bool "Support PCH drivers"
1839         default y if TPL_PCH_SUPPORT
1840         help
1841           Enable support for PCH (Platform Controller Hub) devices in VPL.
1842           These are used to set up GPIOs and the SPI peripheral early in
1843           boot. This enables the drivers in drivers/pch as part of a VPL
1844           build.
1845
1846 config VPL_PCI
1847         bool "Support PCI drivers"
1848         default y if SPL_PCI
1849         help
1850           Enable support for PCI in VPL. For platforms that need PCI to boot,
1851           or must perform some init using PCI in VPL, this provides the
1852           necessary driver support. This enables the drivers in drivers/pci
1853           as part of a VPL build.
1854
1855 config VPL_RTC
1856         bool "Support RTC drivers"
1857         help
1858           Enable RTC (Real-time Clock) support in VPL. This includes support
1859           for reading and setting the time. Some RTC devices also have some
1860           non-volatile (battery-backed) memory which is accessible if
1861           needed. This enables the drivers in drivers/rtc as part of a VPL
1862           build.
1863
1864 config VPL_SERIAL
1865         bool "Support serial"
1866         default y if TPL_SERIAL
1867         select VPL_PRINTF
1868         select VPL_STRTO
1869         help
1870           Enable support for serial in VPL. See SPL_SERIAL_SUPPORT for
1871           details.
1872
1873 config VPL_SIZE_LIMIT
1874         hex "Maximum size of VPL image"
1875         depends on VPL
1876         default 0x0
1877         help
1878           Specifies the maximum length of the U-Boot VPL image.
1879           If this value is zero, it is ignored.
1880
1881 config VPL_SPI
1882         bool "Support SPI drivers"
1883         help
1884           Enable support for using SPI in VPL. See SPL_SPI_SUPPORT for
1885           details.
1886
1887 config VPL_SPI_FLASH_SUPPORT
1888         bool "Support SPI flash drivers"
1889         help
1890           Enable support for using SPI flash in VPL, and loading U-Boot from
1891           SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
1892           the SPI bus that is used to connect it to a system. It is a simple
1893           but fast bidirectional 4-wire bus (clock, chip select and two data
1894           lines). This enables the drivers in drivers/mtd/spi as part of a
1895           VPL build. This normally requires VPL_SPI_SUPPORT.
1896
1897 config VPL_TEXT_BASE
1898         hex "VPL Text Base"
1899         default 0x0
1900         help
1901           The address in memory that VPL will be running from.
1902
1903 endif # VPL
1904
1905 config SPL_AT91_MCK_BYPASS
1906         bool "Use external clock signal as a source of main clock for AT91 platforms"
1907         depends on ARCH_AT91
1908         help
1909           Use external 8 to 24 Mhz clock signal as source of main clock instead
1910           of an external crystal oscillator.
1911           This option disables the internal driving on the XOUT pin.
1912           The external source has to provide a stable clock on the XIN pin.
1913           If this option is disabled, the SoC expects a crystal oscillator
1914           that needs driving on both XIN and XOUT lines.
1915
1916 endif # SPL
1917 endmenu