ubispl: introduce separate CONFIG_UBI_SPL_SILENCE_MSG
[platform/kernel/u-boot.git] / common / spl / Kconfig
1 menu "SPL / TPL"
2
3 config SUPPORT_SPL
4         bool
5
6 config SUPPORT_TPL
7         bool
8
9 config SPL_DFU_NO_RESET
10         bool
11
12 config SPL
13         bool
14         depends on SUPPORT_SPL
15         prompt "Enable SPL"
16         help
17           If you want to build SPL as well as the normal image, say Y.
18
19 config SPL_FRAMEWORK
20         bool "Support SPL based upon the common SPL framework"
21         depends on SPL
22         default y
23         help
24           Enable the SPL framework under common/spl/.  This framework
25           supports MMC, NAND and YMODEM and other methods loading of U-Boot
26           and the Linux Kernel.  If unsure, say Y.
27
28 config SPL_SIZE_LIMIT
29         int "Maximum size of SPL image"
30         depends on SPL
31         default 69632 if ARCH_MX6
32         default 0
33         help
34           Specifies the maximum length of the U-Boot SPL image.
35           If this value is zero, it is ignored.
36
37 config SPL_SIZE_LIMIT_SUBTRACT_GD
38         bool "SPL image size check: provide space for global data"
39         depends on SPL_SIZE_LIMIT > 0
40         help
41           If enabled, aligned size of global data is reserved in
42           SPL_SIZE_LIMIT check to ensure such an image does not overflow SRAM
43           if SPL_SIZE_LIMIT describes the size of SRAM available for SPL when
44           pre-reloc global data is put into this SRAM, too.
45
46 config SPL_SIZE_LIMIT_SUBTRACT_MALLOC
47         bool "SPL image size check: provide space for malloc() pool before relocation"
48         depends on SPL_SIZE_LIMIT > 0
49         help
50           If enabled, SPL_SYS_MALLOC_F_LEN is reserved in SPL_SIZE_LIMIT check
51           to ensure such an image does not overflow SRAM if SPL_SIZE_LIMIT
52           describes the size of SRAM available for SPL when pre-reloc malloc
53           pool is put into this SRAM, too.
54
55 config SPL_SIZE_LIMIT_PROVIDE_STACK
56         hex "SPL image size check: provide stack space before relocation"
57         depends on SPL_SIZE_LIMIT > 0
58         default 0
59         help
60           If set, this size is reserved in SPL_SIZE_LIMIT check to ensure such
61           an image does not overflow SRAM if SPL_SIZE_LIMIT describes the size
62           of SRAM available for SPL when the stack required before reolcation
63           uses this SRAM, too.
64
65 menu "PowerPC SPL Boot options"
66         depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK)
67
68 config SPL_NAND_BOOT
69         bool "Load SPL from NAND flash"
70
71 config SPL_MMC_BOOT
72         bool "Load SPL from SD Card / eMMC"
73
74 config SPL_SPI_BOOT
75         bool "Load SPL from SPI flash"
76
77 config SPL_FSL_PBL
78         bool "Create SPL in Freescale PBI format"
79         help
80           Create boot binary having SPL binary in PBI format concatenated with
81           u-boot binary.
82
83 endmenu
84
85 config HANDOFF
86         bool "Pass hand-off information from SPL to U-Boot proper"
87         depends on BLOBLIST
88         help
89           It is useful to be able to pass information from SPL to U-Boot
90           proper to preserve state that is known in SPL and is needed in U-Boot.
91           Enable this to locate the handoff information in U-Boot proper, early
92           in boot. It is available in gd->handoff. The state state is set up
93           in SPL (or TPL if that is being used).
94
95 if SPL
96
97 config SPL_HANDOFF
98         bool "Pass hand-off information from SPL to U-Boot proper"
99         depends on HANDOFF
100         default y
101         help
102           This option enables SPL to write handoff information. This can be
103           used to pass information like the size of SDRAM from SPL to U-Boot
104           proper. Also SPL can receive information from TPL in the same place
105           if that is enabled.
106
107 config SPL_LDSCRIPT
108         string "Linker script for the SPL stage"
109         default "arch/$(ARCH)/cpu/u-boot-spl.lds"
110         help
111           The SPL stage will usually require a different linker-script
112           (as it runs from a different memory region) than the regular
113           U-Boot stage.  Set this to the path of the linker-script to
114           be used for SPL.
115
116 config SPL_TEXT_BASE
117         hex "SPL Text Base"
118         default ISW_ENTRY_ADDR if AM43XX || AM33XX || OMAP54XX || ARCH_KEYSTONE
119         default 0x0
120         help
121           The address in memory that SPL will be running from.
122
123 config SPL_BOARD_INIT
124         bool "Call board-specific initialization in SPL"
125         help
126           If this option is enabled, U-Boot will call the function
127           spl_board_init() from board_init_r(). This function should be
128           provided by the board.
129
130 config SPL_BOOTROM_SUPPORT
131         bool "Support returning to the BOOTROM"
132         help
133           Some platforms (e.g. the Rockchip RK3368) provide support in their
134           ROM for loading the next boot-stage after performing basic setup
135           from the SPL stage.
136
137           Enable this option, to return to the BOOTROM through the
138           BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
139           boot device list, if not implemented for a given board)
140
141 config SPL_BOOTCOUNT_LIMIT
142         bool "Support bootcount in SPL"
143         depends on SPL_ENV_SUPPORT
144         help
145           On some boards, which use 'falcon' mode, it is necessary to check
146           and increment the number of boot attempts. Such boards do not
147           use proper U-Boot for normal boot flow and hence needs those
148           adjustments to be done in the SPL.
149
150 config SPL_RAW_IMAGE_SUPPORT
151         bool "Support SPL loading and booting of RAW images"
152         default n if (ARCH_MX6 && (SPL_MMC_SUPPORT || SPL_SATA_SUPPORT))
153         default y if !TI_SECURE_DEVICE
154         help
155           SPL will support loading and booting a RAW image when this option
156           is y. If this is not set, SPL will move on to other available
157           boot media to find a suitable image.
158
159 config SPL_LEGACY_IMAGE_SUPPORT
160         bool "Support SPL loading and booting of Legacy images"
161         default y if !TI_SECURE_DEVICE
162         help
163           SPL will support loading and booting Legacy images when this option
164           is y. If this is not set, SPL will move on to other available
165           boot media to find a suitable image.
166
167 config SPL_LEGACY_IMAGE_CRC_CHECK
168         bool "Check CRC of Legacy images"
169         depends on SPL_LEGACY_IMAGE_SUPPORT
170         select SPL_CRC32_SUPPORT
171         help
172           Enable this to check the CRC of Legacy images. While this increases
173           reliability, it affects both code size and boot duration.
174           If disabled, Legacy images are booted if the image magic and size
175           are correct, without further integrity checks.
176
177 config SPL_SYS_MALLOC_SIMPLE
178         bool
179         prompt "Only use malloc_simple functions in the SPL"
180         help
181           Say Y here to only use the *_simple malloc functions from
182           malloc_simple.c, rather then using the versions from dlmalloc.c;
183           this will make the SPL binary smaller at the cost of more heap
184           usage as the *_simple malloc functions do not re-use free-ed mem.
185
186 config TPL_SYS_MALLOC_SIMPLE
187         bool
188         prompt "Only use malloc_simple functions in the TPL"
189         help
190           Say Y here to only use the *_simple malloc functions from
191           malloc_simple.c, rather then using the versions from dlmalloc.c;
192           this will make the TPL binary smaller at the cost of more heap
193           usage as the *_simple malloc functions do not re-use free-ed mem.
194
195 config SPL_STACK_R
196         bool "Enable SDRAM location for SPL stack"
197         help
198           SPL starts off execution in SRAM and thus typically has only a small
199           stack available. Since SPL sets up DRAM while in its board_init_f()
200           function, it is possible for the stack to move there before
201           board_init_r() is reached. This option enables a special SDRAM
202           location for the SPL stack. U-Boot SPL switches to this after
203           board_init_f() completes, and before board_init_r() starts.
204
205 config SPL_STACK_R_ADDR
206         depends on SPL_STACK_R
207         hex "SDRAM location for SPL stack"
208         default 0x82000000 if ARCH_OMAP2PLUS
209         help
210           Specify the address in SDRAM for the SPL stack. This will be set up
211           before board_init_r() is called.
212
213 config SPL_STACK_R_MALLOC_SIMPLE_LEN
214         depends on SPL_STACK_R && SPL_SYS_MALLOC_SIMPLE
215         hex "Size of malloc_simple heap after switching to DRAM SPL stack"
216         default 0x100000
217         help
218           Specify the amount of the stack to use as memory pool for
219           malloc_simple after switching the stack to DRAM. This may be set
220           to give board_init_r() a larger heap then the initial heap in
221           SRAM which is limited to SYS_MALLOC_F_LEN bytes.
222
223 config SPL_SEPARATE_BSS
224         bool "BSS section is in a different memory region from text"
225         help
226           Some platforms need a large BSS region in SPL and can provide this
227           because RAM is already set up. In this case BSS can be moved to RAM.
228           This option should then be enabled so that the correct device tree
229           location is used. Normally we put the device tree at the end of BSS
230           but with this option enabled, it goes at _image_binary_end.
231
232 config SPL_BANNER_PRINT
233         bool "Enable output of the SPL banner 'U-Boot SPL ...'"
234         default y
235         help
236           If this option is enabled, SPL will print the banner with version
237           info. Disabling this option could be useful to reduce TPL boot time
238           (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
239
240 config TPL_BANNER_PRINT
241         bool "Enable output of the TPL banner 'U-Boot TPL ...'"
242         default y
243         help
244           If this option is enabled, SPL will not print the banner with version
245           info. Disabling this option could be useful to reduce SPL boot time
246           (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
247
248 config SPL_DISPLAY_PRINT
249         bool "Display a board-specific message in SPL"
250         help
251           If this option is enabled, U-Boot will call the function
252           spl_display_print() immediately after displaying the SPL console
253           banner ("U-Boot SPL ..."). This function should be provided by
254           the board.
255
256 config SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
257         bool "MMC raw mode: by sector"
258         default y if ARCH_SUNXI || ARCH_DAVINCI || ARCH_UNIPHIER || \
259                      ARCH_MX6 || ARCH_MX7 || \
260                      ARCH_ROCKCHIP || ARCH_MVEBU ||  ARCH_SOCFPGA || \
261                      ARCH_AT91 || ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || \
262                      OMAP44XX || OMAP54XX || AM33XX || AM43XX
263         help
264           Use sector number for specifying U-Boot location on MMC/SD in
265           raw mode.
266
267 config SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR
268         hex "Address on the MMC to load U-Boot from"
269         depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
270         default 0x50 if ARCH_SUNXI
271         default 0x75 if ARCH_DAVINCI
272         default 0x8a if ARCH_MX6 || ARCH_MX7
273         default 0x100 if ARCH_UNIPHIER
274         default 0x140 if ARCH_MVEBU
275         default 0x200 if ARCH_SOCFPGA || ARCH_AT91
276         default 0x300 if ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || OMAP44XX || \
277                          OMAP54XX || AM33XX || AM43XX || ARCH_K3
278         default 0x4000 if ARCH_ROCKCHIP
279         help
280           Address on the MMC to load U-Boot from, when the MMC is being used
281           in raw mode. Units: MMC sectors (1 sector = 512 bytes).
282
283 config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
284         bool "MMC Raw mode: by partition"
285         help
286           Use a partition for loading U-Boot when using MMC/SD in raw mode.
287
288 config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION
289         hex "Partition to use to load U-Boot from"
290         depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
291         default 1
292         help
293           Partition on the MMC to load U-Boot from when the MMC is being
294           used in raw mode
295
296 config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
297         bool "MMC raw mode: by partition type"
298         depends on DOS_PARTITION && SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
299         help
300           Use partition type for specifying U-Boot partition on MMC/SD in
301           raw mode. U-Boot will be loaded from the first partition of this
302           type to be found.
303
304 config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_TYPE
305         hex "Partition Type on the MMC to load U-Boot from"
306         depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
307         help
308           Partition Type on the MMC to load U-Boot from, when the MMC is being
309           used in raw mode.
310
311 config SPL_CRC32_SUPPORT
312         bool "Support CRC32"
313         default y if SPL_LEGACY_IMAGE_SUPPORT
314         help
315           Enable this to support CRC32 in uImages or FIT images within SPL.
316           This is a 32-bit checksum value that can be used to verify images.
317           For FIT images, this is the least secure type of checksum, suitable
318           for detected accidental image corruption. For secure applications you
319           should consider SHA1 or SHA256.
320
321 config SPL_MD5_SUPPORT
322         bool "Support MD5"
323         depends on SPL_FIT
324         help
325           Enable this to support MD5 in FIT images within SPL. An MD5
326           checksum is a 128-bit hash value used to check that the image
327           contents have not been corrupted. Note that MD5 is not considered
328           secure as it is possible (with a brute-force attack) to adjust the
329           image while still retaining the same MD5 hash value. For secure
330           applications where images may be changed maliciously, you should
331           consider SHA1 or SHA256.
332
333 config SPL_SHA1_SUPPORT
334         bool "Support SHA1"
335         depends on SPL_FIT
336         select SHA1
337         help
338           Enable this to support SHA1 in FIT images within SPL. A SHA1
339           checksum is a 160-bit (20-byte) hash value used to check that the
340           image contents have not been corrupted or maliciously altered.
341           While SHA1 is fairly secure it is coming to the end of its life
342           due to the expanding computing power available to brute-force
343           attacks. For more security, consider SHA256.
344
345 config SPL_SHA256_SUPPORT
346         bool "Support SHA256"
347         depends on SPL_FIT
348         select SHA256
349         help
350           Enable this to support SHA256 in FIT images within SPL. A SHA256
351           checksum is a 256-bit (32-byte) hash value used to check that the
352           image contents have not been corrupted. SHA256 is recommended for
353           use in secure applications since (as at 2016) there is no known
354           feasible attack that could produce a 'collision' with differing
355           input data. Use this for the highest security. Note that only the
356           SHA256 variant is supported: SHA512 and others are not currently
357           supported in U-Boot.
358
359 config SPL_FIT_IMAGE_TINY
360         bool "Remove functionality from SPL FIT loading to reduce size"
361         depends on SPL_FIT
362         default y if MACH_SUN50I || MACH_SUN50I_H5 || MACH_SUN50I_H6
363         default y if ARCH_IMX8M
364         help
365           Enable this to reduce the size of the FIT image loading code
366           in SPL, if space for the SPL binary is very tight.
367
368           This removes the detection of image types (which forces the
369           first image to be treated as having a U-Boot style calling
370           convention) and skips the recording of each loaded payload
371           (i.e. loadable) into the FDT (modifying the loaded FDT to
372           ensure this information is available to the next image
373           invoked).
374
375 config SPL_CPU_SUPPORT
376         bool "Support CPU drivers"
377         help
378           Enable this to support CPU drivers in SPL. These drivers can set
379           up CPUs and provide information about them such as the model and
380           name. This can be useful in SPL since setting up the CPUs earlier
381           may improve boot performance. Enable this option to build the
382           drivers in drivers/cpu as part of an SPL build.
383
384 config SPL_CRYPTO_SUPPORT
385         bool "Support crypto drivers"
386         help
387           Enable crypto drivers in SPL. These drivers can be used to
388           accelerate secure boot processing in secure applications. Enable
389           this option to build the drivers in drivers/crypto as part of an
390           SPL build.
391
392 config SPL_HASH_SUPPORT
393         bool "Support hashing drivers"
394         select SHA1
395         select SHA256
396         help
397           Enable hashing drivers in SPL. These drivers can be used to
398           accelerate secure boot processing in secure applications. Enable
399           this option to build system-specific drivers for hash acceleration
400           as part of an SPL build.
401
402 config TPL_HASH_SUPPORT
403         bool "Support hashing drivers in TPL"
404         select SHA1
405         select SHA256
406         help
407           Enable hashing drivers in SPL. These drivers can be used to
408           accelerate secure boot processing in secure applications. Enable
409           this option to build system-specific drivers for hash acceleration
410           as part of an SPL build.
411
412 config SPL_DMA_SUPPORT
413         bool "Support DMA drivers"
414         help
415           Enable DMA (direct-memory-access) drivers in SPL. These drivers
416           can be used to handle memory-to-peripheral data transfer without
417           the CPU moving the data. Enable this option to build the drivers
418           in drivers/dma as part of an SPL build.
419
420 config SPL_DRIVERS_MISC_SUPPORT
421         bool "Support misc drivers"
422         help
423           Enable miscellaneous drivers in SPL. These drivers perform various
424           tasks that don't fall nicely into other categories, Enable this
425           option to build the drivers in drivers/misc as part of an SPL
426           build, for those that support building in SPL (not all drivers do).
427
428 config SPL_ENV_SUPPORT
429         bool "Support an environment"
430         help
431           Enable environment support in SPL. The U-Boot environment provides
432           a number of settings (essentially name/value pairs) which can
433           control many aspects of U-Boot's operation. Normally this is not
434           needed in SPL as it has a much simpler task with less
435           configuration. But some boards use this to support 'Falcon' boot
436           on EXT2 and FAT, where SPL boots directly into Linux without
437           starting U-Boot first. Enabling this option will make env_get()
438           and env_set() available in SPL.
439
440 config SPL_SAVEENV
441         bool "Support save environment"
442         depends on SPL_ENV_SUPPORT
443         select SPL_MMC_WRITE if ENV_IS_IN_MMC
444         help
445           Enable save environment support in SPL after setenv. By default
446           the saveenv option is not provided in SPL, but some boards need
447           this support in 'Falcon' boot, where SPL need to boot from
448           different images based on environment variable set by OS. For
449           example OS may set "reboot_image" environment variable to
450           "recovery" inorder to boot recovery image by SPL. The SPL read
451           "reboot_image" and act accordingly and change the reboot_image
452           to default mode using setenv and save the environment.
453
454 config SPL_ETH_SUPPORT
455         bool "Support Ethernet"
456         depends on SPL_ENV_SUPPORT
457         help
458           Enable access to the network subsystem and associated Ethernet
459           drivers in SPL. This permits SPL to load U-Boot over an Ethernet
460           link rather than from an on-board peripheral. Environment support
461           is required since the network stack uses a number of environment
462           variables. See also SPL_NET_SUPPORT.
463
464 config SPL_FS_EXT4
465         bool "Support EXT filesystems"
466         help
467           Enable support for EXT2/3/4 filesystems with SPL. This permits
468           U-Boot (or Linux in Falcon mode) to be loaded from an EXT
469           filesystem from within SPL. Support for the underlying block
470           device (e.g. MMC or USB) must be enabled separately.
471
472 config SPL_FS_FAT
473         bool "Support FAT filesystems"
474         select FS_FAT
475         help
476           Enable support for FAT and VFAT filesystems with SPL. This
477           permits U-Boot (or Linux in Falcon mode) to be loaded from a FAT
478           filesystem from within SPL. Support for the underlying block
479           device (e.g. MMC or USB) must be enabled separately.
480
481 config SPL_FAT_WRITE
482         bool "Support write for FAT filesystems"
483         help
484           Enable write support for FAT and VFAT filesystems with SPL.
485           Support for the underlying block device (e.g. MMC or USB) must be
486           enabled separately.
487
488 config SPL_FPGA_SUPPORT
489         bool "Support FPGAs"
490         help
491           Enable support for FPGAs in SPL. Field-programmable Gate Arrays
492           provide software-configurable hardware which is typically used to
493           implement peripherals (such as UARTs, LCD displays, MMC) or
494           accelerate custom processing functions, such as image processing
495           or machine learning. Sometimes it is useful to program the FPGA
496           as early as possible during boot, and this option can enable that
497           within SPL.
498
499 config SPL_GPIO_SUPPORT
500         bool "Support GPIO in SPL"
501         help
502           Enable support for GPIOs (General-purpose Input/Output) in SPL.
503           GPIOs allow U-Boot to read the state of an input line (high or
504           low) and set the state of an output line. This can be used to
505           drive LEDs, control power to various system parts and read user
506           input. GPIOs can be useful in SPL to enable a 'sign-of-life' LED,
507           for example. Enable this option to build the drivers in
508           drivers/gpio as part of an SPL build.
509
510 config SPL_I2C_SUPPORT
511         bool "Support I2C"
512         help
513           Enable support for the I2C (Inter-Integrated Circuit) bus in SPL.
514           I2C works with a clock and data line which can be driven by a
515           one or more masters or slaves. It is a fairly complex bus but is
516           widely used as it only needs two lines for communication. Speeds of
517           400kbps are typical but up to 3.4Mbps is supported by some
518           hardware. I2C can be useful in SPL to configure power management
519           ICs (PMICs) before raising the CPU clock speed, for example.
520           Enable this option to build the drivers in drivers/i2c as part of
521           an SPL build.
522
523 config SPL_LIBCOMMON_SUPPORT
524         bool "Support common libraries"
525         help
526           Enable support for common U-Boot libraries within SPL. These
527           libraries include common code to deal with U-Boot images,
528           environment and USB, for example. This option is enabled on many
529           boards. Enable this option to build the code in common/ as part of
530           an SPL build.
531
532 config SPL_LIBDISK_SUPPORT
533         bool "Support disk partitions"
534         select PARTITIONS
535         help
536           Enable support for disk partitions within SPL. 'Disk' is something
537           of a misnomer as it includes non-spinning media such as flash (as
538           used in MMC and USB sticks). Partitions provide a way for a disk
539           to be split up into separate regions, with a partition table placed
540           at the start or end which describes the location and size of each
541           'partition'. These partitions are typically uses as individual block
542           devices, typically with an EXT2 or FAT filesystem in each. This
543           option enables whatever partition support has been enabled in
544           U-Boot to also be used in SPL. It brings in the code in disk/.
545
546 config SPL_LIBGENERIC_SUPPORT
547         bool "Support generic libraries"
548         help
549           Enable support for generic U-Boot libraries within SPL. These
550           libraries include generic code to deal with device tree, hashing,
551           printf(), compression and the like. This option is enabled on many
552           boards. Enable this option to build the code in lib/ as part of an
553           SPL build.
554
555 config SPL_DM_MAILBOX
556         bool "Support Mailbox"
557         help
558           Enable support for Mailbox within SPL. This enable the inter
559           processor communication protocols tobe used within SPL. Enable
560           this option to build the drivers in drivers/mailbox as part of
561           SPL build.
562
563 config SPL_MMC_SUPPORT
564         bool "Support MMC"
565         depends on MMC
566         select HAVE_BLOCK_DEVICE
567         help
568           Enable support for MMC (Multimedia Card) within SPL. This enables
569           the MMC protocol implementation and allows any enabled drivers to
570           be used within SPL. MMC can be used with or without disk partition
571           support depending on the application (SPL_LIBDISK_SUPPORT). Enable
572           this option to build the drivers in drivers/mmc as part of an SPL
573           build.
574
575 config SPL_MMC_WRITE
576         bool "MMC/SD/SDIO card support for write operations in SPL"
577         depends on SPL_MMC_SUPPORT
578         default n
579         help
580           Enable write access to MMC and SD Cards in SPL
581
582
583 config SPL_MPC8XXX_INIT_DDR_SUPPORT
584         bool "Support MPC8XXX DDR init"
585         help
586           Enable support for DDR-SDRAM (double-data-rate synchronous dynamic
587           random-access memory) on the MPC8XXX family within SPL. This
588           allows DRAM to be set up before loading U-Boot into that DRAM,
589           where it can run.
590
591 config SPL_MTD_SUPPORT
592         bool "Support MTD drivers"
593         help
594           Enable support for MTD (Memory Technology Device) within SPL. MTD
595           provides a block interface over raw NAND and can also be used with
596           SPI flash. This allows SPL to load U-Boot from supported MTD
597           devices. See SPL_NAND_SUPPORT and SPL_ONENAND_SUPPORT for how
598           to enable specific MTD drivers.
599
600 config SPL_MUSB_NEW_SUPPORT
601         bool "Support new Mentor Graphics USB"
602         help
603           Enable support for Mentor Graphics USB in SPL. This is a new
604           driver used by some boards. Enable this option to build
605           the drivers in drivers/usb/musb-new as part of an SPL build. The
606           old drivers are in drivers/usb/musb.
607
608 config SPL_NAND_SUPPORT
609         bool "Support NAND flash"
610         help
611           Enable support for NAND (Negative AND) flash in SPL. NAND flash
612           can be used to allow SPL to load U-Boot from supported devices.
613           This enables the drivers in drivers/mtd/nand/raw as part of an SPL
614           build.
615
616 config SPL_UBI
617         bool "Support UBI"
618         help
619           Enable support for loading payloads from UBI. See
620           README.ubispl for more info.
621
622 if SPL_UBI
623 config SPL_UBI_LOAD_BY_VOLNAME
624         bool "Support loading volumes by name"
625         help
626           This enables support for loading UBI volumes by name. When this
627           is set, CONFIG_SPL_UBI_LOAD_MONITOR_VOLNAME can be used to
628           configure the volume name from which to load U-Boot.
629
630 config SPL_UBI_MAX_VOL_LEBS
631         int "Maximum number of LEBs per volume"
632         depends on SPL_UBI
633         help
634           The maximum number of logical eraseblocks which a static volume
635           to load can contain. Used for sizing the scan data structure.
636
637 config SPL_UBI_MAX_PEB_SIZE
638         int "Maximum PEB size"
639         depends on SPL_UBI
640         help
641           The maximum physical erase block size.
642
643 config SPL_UBI_MAX_PEBS
644         int "Maximum number of PEBs"
645         depends on SPL_UBI
646         help
647           The maximum physical erase block size. If not overridden by
648           board code, this value will be used as the actual number of PEBs.
649
650 config SPL_UBI_PEB_OFFSET
651         int "Offset to first UBI PEB"
652         depends on SPL_UBI
653         help
654           The offset in number of PEBs from the start of flash to the first
655           PEB part of the UBI image.
656
657 config SPL_UBI_VID_OFFSET
658         int "Offset to VID header"
659         depends on SPL_UBI
660
661 config SPL_UBI_LEB_START
662         int "Offset to LEB in PEB"
663         depends on SPL_UBI
664         help
665           The offset in bytes to the LEB within a PEB.
666
667 config SPL_UBI_INFO_ADDR
668         hex "Address to place UBI scan info"
669         depends on SPL_UBI
670         help
671           Address for ubispl to place the scan info. Read README.ubispl to
672           determine the required size
673
674 config SPL_UBI_VOL_IDS
675         int "Maximum volume id"
676         depends on SPL_UBI
677         help
678           The maximum volume id which can be loaded. Used for sizing the
679           scan data structure.
680
681 config SPL_UBI_LOAD_MONITOR_ID
682         int "id of U-Boot volume"
683         depends on SPL_UBI
684         help
685           The UBI volume id from which to load U-Boot
686
687 config SPL_UBI_LOAD_MONITOR_VOLNAME
688         string "volume name of U-Boot volume"
689         depends on SPL_UBI_LOAD_BY_VOLNAME
690         help
691           The UBI volume name from which to load U-Boot
692
693 config SPL_UBI_LOAD_KERNEL_ID
694         int "id of kernel volume"
695         depends on SPL_OS_BOOT && SPL_UBI
696         help
697           The UBI volume id from which to load the kernel
698
699 config SPL_UBI_LOAD_ARGS_ID
700         int "id of kernel args volume"
701         depends on SPL_OS_BOOT && SPL_UBI
702         help
703           The UBI volume id from which to load the device tree
704
705 config UBI_SPL_SILENCE_MSG
706         bool "silence UBI SPL messages"
707         default n
708         help
709           Disable messages from UBI SPL. This leaves warnings
710           and errors enabled.
711
712 endif   # if SPL_UBI
713
714 config SPL_NET_SUPPORT
715         bool "Support networking"
716         help
717           Enable support for network devices (such as Ethernet) in SPL.
718           This permits SPL to load U-Boot over a network link rather than
719           from an on-board peripheral. Environment support is required since
720           the network stack uses a number of environment variables. See also
721           SPL_ETH_SUPPORT.
722
723 if SPL_NET_SUPPORT
724 config SPL_NET_VCI_STRING
725         string "BOOTP Vendor Class Identifier string sent by SPL"
726         help
727           As defined by RFC 2132 the vendor class identifier field can be
728           sent by the client to identify the vendor type and configuration
729           of a client.  This is often used in practice to allow for the DHCP
730           server to specify different files to load depending on if the ROM,
731           SPL or U-Boot itself makes the request
732 endif   # if SPL_NET_SUPPORT
733
734 config SPL_NO_CPU_SUPPORT
735         bool "Drop CPU code in SPL"
736         help
737           This is specific to the ARM926EJ-S CPU. It disables the standard
738           start.S start-up code, presumably so that a replacement can be
739           used on that CPU. You should not enable it unless you know what
740           you are doing.
741
742 config SPL_NOR_SUPPORT
743         bool "Support NOR flash"
744         help
745           Enable support for loading U-Boot from memory-mapped NOR (Negative
746           OR) flash in SPL. NOR flash is slow to write but fast to read, and
747           a memory-mapped device makes it very easy to access. Loading from
748           NOR is typically achieved with just a memcpy().
749
750 config SPL_XIP_SUPPORT
751         bool "Support XIP"
752         depends on SPL
753         help
754           Enable support for execute in place of U-Boot or kernel image. There
755           is no need to copy image from flash to ram if flash supports execute
756           in place. Its very useful in systems having enough flash but not
757           enough ram to load the image.
758
759 config SPL_ONENAND_SUPPORT
760         bool "Support OneNAND flash"
761         help
762           Enable support for OneNAND (Negative AND) flash in SPL. OneNAND is
763           a type of NAND flash and therefore can be used to allow SPL to
764           load U-Boot from supported devices. This enables the drivers in
765           drivers/mtd/onenand as part of an SPL build.
766
767 config SPL_OS_BOOT
768         bool "Activate Falcon Mode"
769         depends on !TI_SECURE_DEVICE
770         default n
771         help
772           Enable booting directly to an OS from SPL.
773           for more info read doc/README.falcon
774
775 if SPL_OS_BOOT
776 config SYS_OS_BASE
777         hex "addr, where OS is found"
778         depends on SPL_NOR_SUPPORT
779         help
780           Specify the address, where the OS image is found, which
781           gets booted.
782
783 endif # SPL_OS_BOOT
784
785 config SPL_PAYLOAD
786         string "SPL payload"
787         default "tpl/u-boot-with-tpl.bin" if TPL
788         default "u-boot.bin"
789         help
790           Payload for SPL boot. For backward compatibility, default to
791           u-boot.bin, i.e. RAW image without any header. In case of
792           TPL, tpl/u-boot-with-tpl.bin. For new boards, suggest to
793           use u-boot.img.
794
795 config SPL_PCI
796         bool "Support PCI drivers"
797         help
798           Enable support for PCI in SPL. For platforms that need PCI to boot,
799           or must perform some init using PCI in SPL, this provides the
800           necessary driver support. This enables the drivers in drivers/pci
801           as part of an SPL build.
802
803 config SPL_PCH_SUPPORT
804         bool "Support PCH drivers"
805         help
806           Enable support for PCH (Platform Controller Hub) devices in SPL.
807           These are used to set up GPIOs and the SPI peripheral early in
808           boot. This enables the drivers in drivers/pch as part of an SPL
809           build.
810
811 config SPL_POST_MEM_SUPPORT
812         bool "Support POST drivers"
813         help
814           Enable support for POST (Power-on Self Test) in SPL. POST is a
815           procedure that checks that the hardware (CPU or board) appears to
816           be functionally correctly. It is a sanity check that can be
817           performed before booting. This enables the drivers in post/drivers
818           as part of an SPL build.
819
820 config SPL_DM_RESET
821         bool "Support reset drivers"
822         depends on SPL
823         help
824           Enable support for reset control in SPL.
825           That can be useful in SPL to handle IP reset in driver, as in U-Boot,
826           by using the generic reset API provided by driver model.
827           This enables the drivers in drivers/reset as part of an SPL build.
828
829 config SPL_POWER_SUPPORT
830         bool "Support power drivers"
831         help
832           Enable support for power control in SPL. This includes support
833           for PMICs (Power-management Integrated Circuits) and some of the
834           features provided by PMICs. In particular, voltage regulators can
835           be used to enable/disable power and vary its voltage. That can be
836           useful in SPL to turn on boot peripherals and adjust CPU voltage
837           so that the clock speed can be increased. This enables the drivers
838           in drivers/power, drivers/power/pmic and drivers/power/regulator
839           as part of an SPL build.
840
841 config SPL_POWER_DOMAIN
842         bool "Support power domain drivers"
843         help
844           Enable support for power domain control in SPL. Many SoCs allow
845           power to be applied to or removed from portions of the SoC (power
846           domains). This may be used to save power. This API provides the
847           means to control such power management hardware. This enables
848           the drivers in drivers/power/domain as part of a SPL build.
849
850 config SPL_RAM_SUPPORT
851         bool "Support booting from RAM"
852         default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ
853         help
854           Enable booting of an image in RAM. The image can be preloaded or
855           it can be loaded by SPL directly into RAM (e.g. using USB).
856
857 config SPL_RAM_DEVICE
858         bool "Support booting from preloaded image in RAM"
859         depends on SPL_RAM_SUPPORT
860         default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ
861         help
862           Enable booting of an image already loaded in RAM. The image has to
863           be already in memory when SPL takes over, e.g. loaded by the boot
864           ROM.
865
866 config SPL_REMOTEPROC
867         bool "Support REMOTEPROCS"
868         help
869           Enable support for REMOTEPROCs in SPL. This permits to load
870           a remote processor firmware in SPL.
871
872 config SPL_RTC_SUPPORT
873         bool "Support RTC drivers"
874         help
875           Enable RTC (Real-time Clock) support in SPL. This includes support
876           for reading and setting the time. Some RTC devices also have some
877           non-volatile (battery-backed) memory which is accessible if
878           needed. This enables the drivers in drivers/rtc as part of an SPL
879           build.
880
881 config SPL_SATA_SUPPORT
882         bool "Support loading from SATA"
883         help
884           Enable support for SATA (Serial AT attachment) in SPL. This allows
885           use of SATA devices such as hard drives and flash drivers for
886           loading U-Boot. SATA is used in higher-end embedded systems and
887           can provide higher performance than MMC , at somewhat higher
888           expense and power consumption. This enables loading from SATA
889           using a configured device.
890
891 config SPL_SERIAL_SUPPORT
892         bool "Support serial"
893         select SPL_PRINTF
894         select SPL_STRTO
895         help
896           Enable support for serial in SPL. This allows use of a serial UART
897           for displaying messages while SPL is running. It also brings in
898           printf() and panic() functions. This should normally be enabled
899           unless there are space reasons not to. Even then, consider
900           enabling USE_TINY_PRINTF which is a small printf() version.
901
902 config SPL_SPI_FLASH_SUPPORT
903         bool "Support SPI flash drivers"
904         help
905           Enable support for using SPI flash in SPL, and loading U-Boot from
906           SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
907           the SPI bus that is used to connect it to a system. It is a simple
908           but fast bidirectional 4-wire bus (clock, chip select and two data
909           lines). This enables the drivers in drivers/mtd/spi as part of an
910           SPL build. This normally requires SPL_SPI_SUPPORT.
911
912 if SPL_SPI_FLASH_SUPPORT
913
914 config SPL_SPI_FLASH_TINY
915         bool "Enable low footprint SPL SPI Flash support"
916         depends on !SPI_FLASH_BAR
917         default y if SPI_FLASH
918         help
919          Enable lightweight SPL SPI Flash support that supports just reading
920          data/images from flash. No support to write/erase flash. Enable
921          this if you have SPL size limitations and don't need full
922          fledged SPI flash support.
923
924 config SPL_SPI_FLASH_SFDP_SUPPORT
925         bool "SFDP table parsing support for SPI NOR flashes"
926         depends on !SPI_FLASH_BAR && !SPL_SPI_FLASH_TINY
927         help
928          Enable support for parsing and auto discovery of parameters for
929          SPI NOR flashes using Serial Flash Discoverable Parameters (SFDP)
930          tables as per JESD216 standard in SPL.
931
932 config SPL_SPI_LOAD
933         bool "Support loading from SPI flash"
934         help
935           Enable support for loading next stage, U-Boot or otherwise, from
936           SPI NOR in U-Boot SPL.
937
938 endif # SPL_SPI_FLASH_SUPPORT
939
940 config SPL_SPI_SUPPORT
941         bool "Support SPI drivers"
942         help
943           Enable support for using SPI in SPL. This is used for connecting
944           to SPI flash for loading U-Boot. See SPL_SPI_FLASH_SUPPORT for
945           more details on that. The SPI driver provides the transport for
946           data between the SPI flash and the CPU. This option can be used to
947           enable SPI drivers that are needed for other purposes also, such
948           as a SPI PMIC.
949
950 config SPL_THERMAL
951         bool "Driver support for thermal devices"
952         help
953           Enable support for temperature-sensing devices. Some SoCs have on-chip
954           temperature sensors to permit warnings, speed throttling or even
955           automatic power-off when the temperature gets too high or low. Other
956           devices may be discrete but connected on a suitable bus.
957
958 config SPL_USB_HOST_SUPPORT
959         bool "Support USB host drivers"
960         select HAVE_BLOCK_DEVICE
961         help
962           Enable access to USB (Universal Serial Bus) host devices so that
963           SPL can load U-Boot from a connected USB peripheral, such as a USB
964           flash stick. While USB takes a little longer to start up than most
965           buses, it is very flexible since many different types of storage
966           device can be attached. This option enables the drivers in
967           drivers/usb/host as part of an SPL build.
968
969 config SPL_USB_STORAGE
970         bool "Support loading from USB"
971         depends on SPL_USB_HOST_SUPPORT && !(BLK && !DM_USB)
972         help
973           Enable support for USB devices in SPL. This allows use of USB
974           devices such as hard drives and flash drivers for loading U-Boot.
975           The actual drivers are enabled separately using the normal U-Boot
976           config options. This enables loading from USB using a configured
977           device.
978
979 config SPL_USB_GADGET
980         bool "Suppport USB Gadget drivers"
981         help
982           Enable USB Gadget API which allows to enable USB device functions
983           in SPL.
984
985 if SPL_USB_GADGET
986
987 config SPL_USB_ETHER
988         bool "Support USB Ethernet drivers"
989         help
990           Enable access to the USB network subsystem and associated
991           drivers in SPL. This permits SPL to load U-Boot over a
992           USB-connected Ethernet link (such as a USB Ethernet dongle) rather
993           than from an onboard peripheral. Environment support is required
994           since the network stack uses a number of environment variables.
995           See also SPL_NET_SUPPORT and SPL_ETH_SUPPORT.
996
997 config SPL_DFU
998         bool "Support DFU (Device Firmware Upgrade)"
999         select SPL_HASH_SUPPORT
1000         select SPL_DFU_NO_RESET
1001         depends on SPL_RAM_SUPPORT
1002         help
1003           This feature enables the DFU (Device Firmware Upgrade) in SPL with
1004           RAM memory device support. The ROM code will load and execute
1005           the SPL built with dfu. The user can load binaries (u-boot/kernel) to
1006           selected device partition from host-pc using dfu-utils.
1007           This feature is useful to flash the binaries to factory or bare-metal
1008           boards using USB interface.
1009
1010 choice
1011         bool "DFU device selection"
1012         depends on SPL_DFU
1013
1014 config SPL_DFU_RAM
1015         bool "RAM device"
1016         depends on SPL_DFU && SPL_RAM_SUPPORT
1017         help
1018          select RAM/DDR memory device for loading binary images
1019          (u-boot/kernel) to the selected device partition using
1020          DFU and execute the u-boot/kernel from RAM.
1021
1022 endchoice
1023
1024 config SPL_USB_SDP_SUPPORT
1025         bool "Support SDP (Serial Download Protocol)"
1026         help
1027           Enable Serial Download Protocol (SDP) device support in SPL. This
1028           allows to download images into memory and execute (jump to) them
1029           using the same protocol as implemented by the i.MX family's boot ROM.
1030 endif
1031
1032 config SPL_WATCHDOG_SUPPORT
1033         bool "Support watchdog drivers"
1034         help
1035           Enable support for watchdog drivers in SPL. A watchdog is
1036           typically a hardware peripheral which can reset the system when it
1037           detects no activity for a while (such as a software crash). This
1038           enables the drivers in drivers/watchdog as part of an SPL build.
1039
1040 config SPL_YMODEM_SUPPORT
1041         bool "Support loading using Ymodem"
1042         depends on SPL_SERIAL_SUPPORT
1043         help
1044           While loading from serial is slow it can be a useful backup when
1045           there is no other option. The Ymodem protocol provides a reliable
1046           means of transmitting U-Boot over a serial line for using in SPL,
1047           with a checksum to ensure correctness.
1048
1049 config SPL_ATF
1050         bool "Support ARM Trusted Firmware"
1051         depends on ARM64
1052         help
1053           ATF(ARM Trusted Firmware) is a component for ARM AArch64 which
1054           is loaded by SPL (which is considered as BL2 in ATF terminology).
1055           More detail at: https://github.com/ARM-software/arm-trusted-firmware
1056
1057 config SPL_ATF_NO_PLATFORM_PARAM
1058         bool "Pass no platform parameter"
1059         depends on SPL_ATF
1060         help
1061           While we expect to call a pointer to a valid FDT (or NULL)
1062           as the platform parameter to an ATF, some ATF versions are
1063           not U-Boot aware and have an insufficiently robust parameter
1064           validation to gracefully reject a FDT being passed.
1065
1066           If this option is enabled, the spl_atf os-type handler will
1067           always pass NULL for the platform parameter.
1068
1069           If your ATF is affected, say Y.
1070
1071 config SPL_AM33XX_ENABLE_RTC32K_OSC
1072         bool "Enable the RTC32K OSC on AM33xx based platforms"
1073         default y if AM33XX
1074         help
1075           Enable access to the AM33xx RTC and select the external 32kHz clock
1076           source.
1077
1078 config SPL_OPTEE
1079         bool "Support OP-TEE Trusted OS"
1080         depends on ARM
1081         help
1082           OP-TEE is an open source Trusted OS  which is loaded by SPL.
1083           More detail at: https://github.com/OP-TEE/optee_os
1084
1085 config TPL
1086         bool
1087         depends on SUPPORT_TPL
1088         prompt "Enable TPL"
1089         help
1090           If you want to build TPL as well as the normal image and SPL, say Y.
1091
1092 if TPL
1093
1094 config TPL_HANDOFF
1095         bool "Pass hand-off information from TPL to SPL and U-Boot proper"
1096         depends on HANDOFF
1097         default y
1098         help
1099           This option enables TPL to write handoff information. This can be
1100           used to pass information like the size of SDRAM from TPL to U-Boot
1101           proper. The information is also available to SPL if it is useful
1102           there.
1103
1104 config TPL_BOARD_INIT
1105         bool "Call board-specific initialization in TPL"
1106         help
1107           If this option is enabled, U-Boot will call the function
1108           spl_board_init() from board_init_r(). This function should be
1109           provided by the board.
1110
1111 config TPL_LDSCRIPT
1112         string "Linker script for the TPL stage"
1113         depends on TPL
1114         default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
1115         default "arch/$(ARCH)/cpu/u-boot-spl.lds"
1116         help
1117           The TPL stage will usually require a different linker-script
1118           (as it runs from a different memory region) than the regular
1119           U-Boot stage.  Set this to the path of the linker-script to
1120           be used for TPL.
1121
1122           May be left empty to trigger the Makefile infrastructure to
1123           fall back to the linker-script used for the SPL stage.
1124
1125 config TPL_NEEDS_SEPARATE_TEXT_BASE
1126         bool "TPL needs a separate text-base"
1127         default n
1128         depends on TPL
1129         help
1130           Enable, if the TPL stage should not inherit its text-base
1131           from the SPL stage.  When enabled, a base address for the
1132           .text sections of the TPL stage has to be set below.
1133
1134 config TPL_NEEDS_SEPARATE_STACK
1135         bool "TPL needs a separate initial stack-pointer"
1136         default n
1137         depends on TPL
1138         help
1139           Enable, if the TPL stage should not inherit its initial
1140           stack-pointer from the settings for the SPL stage.
1141
1142 config TPL_TEXT_BASE
1143         hex "Base address for the .text section of the TPL stage"
1144         depends on TPL_NEEDS_SEPARATE_TEXT_BASE
1145         help
1146           The base address for the .text section of the TPL stage.
1147
1148 config TPL_MAX_SIZE
1149         int "Maximum size (in bytes) for the TPL stage"
1150         default 0
1151         depends on TPL
1152         help
1153           The maximum size (in bytes) of the TPL stage.
1154
1155 config TPL_STACK
1156         hex "Address of the initial stack-pointer for the TPL stage"
1157         depends on TPL_NEEDS_SEPARATE_STACK
1158         help
1159           The address of the initial stack-pointer for the TPL stage.
1160           Usually this will be the (aligned) top-of-stack.
1161
1162 config TPL_BOOTROM_SUPPORT
1163         bool "Support returning to the BOOTROM (from TPL)"
1164         help
1165           Some platforms (e.g. the Rockchip RK3368) provide support in their
1166           ROM for loading the next boot-stage after performing basic setup
1167           from the TPL stage.
1168
1169           Enable this option, to return to the BOOTROM through the
1170           BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
1171           boot device list, if not implemented for a given board)
1172
1173 config TPL_DRIVERS_MISC_SUPPORT
1174         bool "Support misc drivers in TPL"
1175         help
1176           Enable miscellaneous drivers in TPL. These drivers perform various
1177           tasks that don't fall nicely into other categories, Enable this
1178           option to build the drivers in drivers/misc as part of an TPL
1179           build, for those that support building in TPL (not all drivers do).
1180
1181 config TPL_ENV_SUPPORT
1182         bool "Support an environment"
1183         help
1184           Enable environment support in TPL. See SPL_ENV_SUPPORT for details.
1185
1186 config TPL_GPIO_SUPPORT
1187         bool "Support GPIO in TPL"
1188         help
1189           Enable support for GPIOs (General-purpose Input/Output) in TPL.
1190           GPIOs allow U-Boot to read the state of an input line (high or
1191           low) and set the state of an output line. This can be used to
1192           drive LEDs, control power to various system parts and read user
1193           input. GPIOs can be useful in TPL to enable a 'sign-of-life' LED,
1194           for example. Enable this option to build the drivers in
1195           drivers/gpio as part of an TPL build.
1196
1197 config TPL_I2C_SUPPORT
1198         bool "Support I2C"
1199         help
1200           Enable support for the I2C bus in TPL. See SPL_I2C_SUPPORT for
1201           details.
1202
1203 config TPL_LIBCOMMON_SUPPORT
1204         bool "Support common libraries"
1205         help
1206           Enable support for common U-Boot libraries within TPL. See
1207           SPL_LIBCOMMON_SUPPORT for details.
1208
1209 config TPL_LIBGENERIC_SUPPORT
1210         bool "Support generic libraries"
1211         help
1212           Enable support for generic U-Boot libraries within TPL. See
1213           SPL_LIBGENERIC_SUPPORT for details.
1214
1215 config TPL_MPC8XXX_INIT_DDR_SUPPORT
1216         bool "Support MPC8XXX DDR init"
1217         help
1218           Enable support for DDR-SDRAM on the MPC8XXX family within TPL. See
1219           SPL_MPC8XXX_INIT_DDR_SUPPORT for details.
1220
1221 config TPL_MMC_SUPPORT
1222         bool "Support MMC"
1223         depends on MMC
1224         help
1225           Enable support for MMC within TPL. See SPL_MMC_SUPPORT for details.
1226
1227 config TPL_NAND_SUPPORT
1228         bool "Support NAND flash"
1229         help
1230           Enable support for NAND in TPL. See SPL_NAND_SUPPORT for details.
1231
1232 config TPL_PCI
1233         bool "Support PCI drivers"
1234         help
1235           Enable support for PCI in TPL. For platforms that need PCI to boot,
1236           or must perform some init using PCI in SPL, this provides the
1237           necessary driver support. This enables the drivers in drivers/pci
1238           as part of a TPL build.
1239
1240 config TPL_PCH_SUPPORT
1241         bool "Support PCH drivers"
1242         help
1243           Enable support for PCH (Platform Controller Hub) devices in TPL.
1244           These are used to set up GPIOs and the SPI peripheral early in
1245           boot. This enables the drivers in drivers/pch as part of a TPL
1246           build.
1247
1248 config TPL_RAM_SUPPORT
1249         bool "Support booting from RAM"
1250         help
1251           Enable booting of an image in RAM. The image can be preloaded or
1252           it can be loaded by TPL directly into RAM (e.g. using USB).
1253
1254 config TPL_RAM_DEVICE
1255         bool "Support booting from preloaded image in RAM"
1256         depends on TPL_RAM_SUPPORT
1257         help
1258           Enable booting of an image already loaded in RAM. The image has to
1259           be already in memory when TPL takes over, e.g. loaded by the boot
1260           ROM.
1261
1262 config TPL_RTC_SUPPORT
1263         bool "Support RTC drivers"
1264         help
1265           Enable RTC (Real-time Clock) support in TPL. This includes support
1266           for reading and setting the time. Some RTC devices also have some
1267           non-volatile (battery-backed) memory which is accessible if
1268           needed. This enables the drivers in drivers/rtc as part of an TPL
1269           build.
1270
1271 config TPL_SERIAL_SUPPORT
1272         bool "Support serial"
1273         select TPL_PRINTF
1274         select TPL_STRTO
1275         help
1276           Enable support for serial in TPL. See SPL_SERIAL_SUPPORT for
1277           details.
1278
1279 config TPL_SPI_FLASH_SUPPORT
1280         bool "Support SPI flash drivers"
1281         help
1282           Enable support for using SPI flash in TPL. See SPL_SPI_FLASH_SUPPORT
1283           for details.
1284
1285 config TPL_SPI_LOAD
1286         bool "Support loading from SPI flash"
1287         depends on TPL_SPI_FLASH_SUPPORT
1288         help
1289           Enable support for loading next stage, U-Boot or otherwise, from
1290           SPI NOR in U-Boot TPL.
1291
1292 config TPL_SPI_SUPPORT
1293         bool "Support SPI drivers"
1294         help
1295           Enable support for using SPI in TPL. See SPL_SPI_SUPPORT for
1296           details.
1297
1298 config TPL_YMODEM_SUPPORT
1299         bool "Support loading using Ymodem"
1300         depends on TPL_SERIAL_SUPPORT
1301         help
1302           While loading from serial is slow it can be a useful backup when
1303           there is no other option. The Ymodem protocol provides a reliable
1304           means of transmitting U-Boot over a serial line for using in TPL,
1305           with a checksum to ensure correctness.
1306
1307 endif # TPL
1308
1309 config SPL_AT91_MCK_BYPASS
1310         bool "Use external clock signal as a source of main clock for AT91 platforms"
1311         depends on ARCH_AT91
1312         default n
1313         help
1314           Use external 8 to 24 Mhz clock signal as source of main clock instead
1315           of an external crystal oscillator.
1316           This option disables the internal driving on the XOUT pin.
1317           The external source has to provide a stable clock on the XIN pin.
1318           If this option is disabled, the SoC expects a crystal oscillator
1319           that needs driving on both XIN and XOUT lines.
1320
1321 endif # SPL
1322 endmenu