blob: 52b04976635449a15cb9bb0f73a0bd0dab3aadac [file] [log] [blame]
Simon Glass11bde1c2016-09-13 07:05:23 -06001menu "SPL / TPL"
2
Simon Glassc2ae7d82016-09-12 23:18:22 -06003config SUPPORT_SPL
4 bool
5
6config SUPPORT_TPL
7 bool
8
B, Ravi66928af2017-05-04 15:45:29 +05309config SPL_DFU_NO_RESET
10 bool
11
Simon Glassc2ae7d82016-09-12 23:18:22 -060012config SPL
13 bool
14 depends on SUPPORT_SPL
15 prompt "Enable SPL"
16 help
17 If you want to build SPL as well as the normal image, say Y.
18
Tom Rini75670c82018-02-06 12:15:38 -050019config SPL_FRAMEWORK
20 bool "Support SPL based upon the common SPL framework"
21 depends on SPL
22 default y
23 help
24 Enable the SPL framework under common/spl/. This framework
25 supports MMC, NAND and YMODEM and other methods loading of U-Boot
26 and the Linux Kernel. If unsure, say Y.
27
Simon Goldschmidt25770152019-05-24 22:07:04 +020028config SPL_SIZE_LIMIT
Tom Rini6d277fb2019-06-07 20:39:32 -040029 int "Maximum size of SPL image"
Simon Goldschmidt25770152019-05-24 22:07:04 +020030 depends on SPL
Fabio Estevam23612532019-06-08 14:56:44 -030031 default 69632 if ARCH_MX6
Simon Goldschmidt25770152019-05-24 22:07:04 +020032 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
37config 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
46config 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
55config 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
Simon Glassb0edea32018-11-15 18:44:09 -070065config HANDOFF
66 bool "Pass hand-off information from SPL to U-Boot proper"
67 depends on BLOBLIST
68 help
69 It is useful to be able to pass information from SPL to U-Boot
70 proper to preserve state that is known in SPL and is needed in U-Boot.
71 Enable this to locate the handoff information in U-Boot proper, early
72 in boot. It is available in gd->handoff. The state state is set up
73 in SPL (or TPL if that is being used).
74
Tom Rini226498b2017-05-22 19:21:57 +000075if SPL
76
Simon Glassb0edea32018-11-15 18:44:09 -070077config SPL_HANDOFF
78 bool "Pass hand-off information from SPL to U-Boot proper"
79 depends on HANDOFF
80 default y
81 help
82 This option enables SPL to write handoff information. This can be
83 used to pass information like the size of SDRAM from SPL to U-Boot
84 proper. Also SPL can receive information from TPL in the same place
85 if that is enabled.
86
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +020087config SPL_LDSCRIPT
88 string "Linker script for the SPL stage"
89 default "arch/$(ARCH)/cpu/u-boot-spl.lds"
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +020090 help
91 The SPL stage will usually require a different linker-script
92 (as it runs from a different memory region) than the regular
93 U-Boot stage. Set this to the path of the linker-script to
94 be used for SPL.
95
Simon Goldschmidtf89d6132018-09-30 14:31:53 +020096config SPL_TEXT_BASE
97 hex "SPL Text Base"
98 default ISW_ENTRY_ADDR if AM43XX || AM33XX || OMAP54XX || ARCH_KEYSTONE
99 default 0x0
100 help
101 The address in memory that SPL will be running from.
102
Ley Foon Tan0680f1b2017-05-03 17:13:32 +0800103config SPL_BOARD_INIT
Ley Foon Tan0680f1b2017-05-03 17:13:32 +0800104 bool "Call board-specific initialization in SPL"
105 help
106 If this option is enabled, U-Boot will call the function
107 spl_board_init() from board_init_r(). This function should be
108 provided by the board.
109
Philipp Tomsich225d30b2017-06-22 23:38:36 +0200110config SPL_BOOTROM_SUPPORT
111 bool "Support returning to the BOOTROM"
112 help
113 Some platforms (e.g. the Rockchip RK3368) provide support in their
114 ROM for loading the next boot-stage after performing basic setup
115 from the SPL stage.
116
117 Enable this option, to return to the BOOTROM through the
118 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
119 boot device list, if not implemented for a given board)
120
Lukasz Majewskiafa96092018-05-02 16:10:50 +0200121config SPL_BOOTCOUNT_LIMIT
122 bool "Support bootcount in SPL"
123 depends on SPL_ENV_SUPPORT
124 help
125 On some boards, which use 'falcon' mode, it is necessary to check
126 and increment the number of boot attempts. Such boards do not
127 use proper U-Boot for normal boot flow and hence needs those
128 adjustments to be done in the SPL.
129
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600130config SPL_RAW_IMAGE_SUPPORT
131 bool "Support SPL loading and booting of RAW images"
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600132 default n if (ARCH_MX6 && (SPL_MMC_SUPPORT || SPL_SATA_SUPPORT))
Andrew F. Davisae9b57b2017-02-16 11:18:40 -0600133 default y if !TI_SECURE_DEVICE
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600134 help
135 SPL will support loading and booting a RAW image when this option
136 is y. If this is not set, SPL will move on to other available
137 boot media to find a suitable image.
138
Andrew F. Davis722a6b12017-02-16 11:18:39 -0600139config SPL_LEGACY_IMAGE_SUPPORT
140 bool "Support SPL loading and booting of Legacy images"
Andrew F. Davisae9b57b2017-02-16 11:18:40 -0600141 default y if !TI_SECURE_DEVICE
Andrew F. Davis722a6b12017-02-16 11:18:39 -0600142 help
143 SPL will support loading and booting Legacy images when this option
144 is y. If this is not set, SPL will move on to other available
145 boot media to find a suitable image.
146
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100147config SPL_LEGACY_IMAGE_CRC_CHECK
148 bool "Check CRC of Legacy images"
149 depends on SPL_LEGACY_IMAGE_SUPPORT
150 select SPL_CRC32_SUPPORT
151 help
152 Enable this to check the CRC of Legacy images. While this increases
153 reliability, it affects both code size and boot duration.
154 If disabled, Legacy images are booted if the image magic and size
155 are correct, without further integrity checks.
156
Simon Glassc2ae7d82016-09-12 23:18:22 -0600157config SPL_SYS_MALLOC_SIMPLE
158 bool
Simon Glassc2ae7d82016-09-12 23:18:22 -0600159 prompt "Only use malloc_simple functions in the SPL"
160 help
161 Say Y here to only use the *_simple malloc functions from
162 malloc_simple.c, rather then using the versions from dlmalloc.c;
163 this will make the SPL binary smaller at the cost of more heap
164 usage as the *_simple malloc functions do not re-use free-ed mem.
165
Philipp Tomsichd60b5f72017-06-30 18:57:25 +0200166config TPL_SYS_MALLOC_SIMPLE
167 bool
168 prompt "Only use malloc_simple functions in the TPL"
169 help
170 Say Y here to only use the *_simple malloc functions from
171 malloc_simple.c, rather then using the versions from dlmalloc.c;
172 this will make the TPL binary smaller at the cost of more heap
173 usage as the *_simple malloc functions do not re-use free-ed mem.
174
Simon Glassc2ae7d82016-09-12 23:18:22 -0600175config SPL_STACK_R
Simon Glassc2ae7d82016-09-12 23:18:22 -0600176 bool "Enable SDRAM location for SPL stack"
177 help
178 SPL starts off execution in SRAM and thus typically has only a small
179 stack available. Since SPL sets up DRAM while in its board_init_f()
180 function, it is possible for the stack to move there before
181 board_init_r() is reached. This option enables a special SDRAM
182 location for the SPL stack. U-Boot SPL switches to this after
183 board_init_f() completes, and before board_init_r() starts.
184
185config SPL_STACK_R_ADDR
186 depends on SPL_STACK_R
187 hex "SDRAM location for SPL stack"
Tom Riniff6c3122017-09-17 11:44:49 -0400188 default 0x82000000 if ARCH_OMAP2PLUS
Simon Glassc2ae7d82016-09-12 23:18:22 -0600189 help
190 Specify the address in SDRAM for the SPL stack. This will be set up
191 before board_init_r() is called.
192
193config SPL_STACK_R_MALLOC_SIMPLE_LEN
194 depends on SPL_STACK_R && SPL_SYS_MALLOC_SIMPLE
195 hex "Size of malloc_simple heap after switching to DRAM SPL stack"
196 default 0x100000
197 help
198 Specify the amount of the stack to use as memory pool for
199 malloc_simple after switching the stack to DRAM. This may be set
200 to give board_init_r() a larger heap then the initial heap in
201 SRAM which is limited to SYS_MALLOC_F_LEN bytes.
202
203config SPL_SEPARATE_BSS
Simon Glassc2ae7d82016-09-12 23:18:22 -0600204 bool "BSS section is in a different memory region from text"
205 help
206 Some platforms need a large BSS region in SPL and can provide this
207 because RAM is already set up. In this case BSS can be moved to RAM.
208 This option should then be enabled so that the correct device tree
209 location is used. Normally we put the device tree at the end of BSS
210 but with this option enabled, it goes at _image_binary_end.
211
Simon Glassaedc08b2018-11-15 18:43:57 -0700212config SPL_BANNER_PRINT
213 bool "Enable output of the SPL banner 'U-Boot SPL ...'"
214 default y
215 help
216 If this option is enabled, SPL will print the banner with version
217 info. Disabling this option could be useful to reduce TPL boot time
218 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
219
220config TPL_BANNER_PRINT
221 bool "Enable output of the TPL banner 'U-Boot TPL ...'"
222 default y
Anatolij Gustschin0292bc02018-01-25 18:45:22 +0100223 help
224 If this option is enabled, SPL will not print the banner with version
Simon Glassaedc08b2018-11-15 18:43:57 -0700225 info. Disabling this option could be useful to reduce SPL boot time
226 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
Anatolij Gustschin0292bc02018-01-25 18:45:22 +0100227
Simon Glassa807ab32016-09-24 18:19:56 -0600228config SPL_DISPLAY_PRINT
Simon Glassa807ab32016-09-24 18:19:56 -0600229 bool "Display a board-specific message in SPL"
230 help
231 If this option is enabled, U-Boot will call the function
232 spl_display_print() immediately after displaying the SPL console
233 banner ("U-Boot SPL ..."). This function should be provided by
234 the board.
235
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200236config SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
237 bool "MMC raw mode: by sector"
Fabio Estevam1da19382018-06-11 15:08:05 -0300238 default y if ARCH_SUNXI || ARCH_DAVINCI || ARCH_UNIPHIER || \
239 ARCH_MX6 || ARCH_MX7 || \
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200240 ARCH_ROCKCHIP || ARCH_MVEBU || ARCH_SOCFPGA || \
241 ARCH_AT91 || ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || \
242 OMAP44XX || OMAP54XX || AM33XX || AM43XX
243 help
244 Use sector number for specifying U-Boot location on MMC/SD in
245 raw mode.
246
247config SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR
248 hex "Address on the MMC to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000249 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200250 default 0x50 if ARCH_SUNXI
251 default 0x75 if ARCH_DAVINCI
Fabio Estevam1da19382018-06-11 15:08:05 -0300252 default 0x8a if ARCH_MX6 || ARCH_MX7
Kever Yang8f4d62b2017-11-02 15:16:34 +0800253 default 0x100 if ARCH_UNIPHIER
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200254 default 0x140 if ARCH_MVEBU
255 default 0x200 if ARCH_SOCFPGA || ARCH_AT91
256 default 0x300 if ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || OMAP44XX || \
Lokesh Vutla586bde92018-08-27 15:57:08 +0530257 OMAP54XX || AM33XX || AM43XX || ARCH_K3
Kever Yang8f4d62b2017-11-02 15:16:34 +0800258 default 0x4000 if ARCH_ROCKCHIP
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200259 help
260 Address on the MMC to load U-Boot from, when the MMC is being used
261 in raw mode. Units: MMC sectors (1 sector = 512 bytes).
262
Dalon Westergreen949123e2017-02-10 17:15:35 -0800263config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
264 bool "MMC Raw mode: by partition"
Dalon Westergreen949123e2017-02-10 17:15:35 -0800265 help
266 Use a partition for loading U-Boot when using MMC/SD in raw mode.
267
268config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION
269 hex "Partition to use to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000270 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreen949123e2017-02-10 17:15:35 -0800271 default 1
272 help
273 Partition on the MMC to load U-Boot from when the MMC is being
274 used in raw mode
275
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800276config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
277 bool "MMC raw mode: by partition type"
Tom Rini226498b2017-05-22 19:21:57 +0000278 depends on DOS_PARTITION && SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800279 help
280 Use partition type for specifying U-Boot partition on MMC/SD in
281 raw mode. U-Boot will be loaded from the first partition of this
282 type to be found.
283
284config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_TYPE
285 hex "Partition Type on the MMC to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000286 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800287 help
288 Partition Type on the MMC to load U-Boot from, when the MMC is being
289 used in raw mode.
290
Simon Glass11bde1c2016-09-13 07:05:23 -0600291config SPL_CRC32_SUPPORT
292 bool "Support CRC32"
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100293 default y if SPL_LEGACY_IMAGE_SUPPORT
Simon Glass11bde1c2016-09-13 07:05:23 -0600294 help
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100295 Enable this to support CRC32 in uImages or FIT images within SPL.
296 This is a 32-bit checksum value that can be used to verify images.
297 For FIT images, this is the least secure type of checksum, suitable
298 for detected accidental image corruption. For secure applications you
299 should consider SHA1 or SHA256.
Simon Glass11bde1c2016-09-13 07:05:23 -0600300
301config SPL_MD5_SUPPORT
302 bool "Support MD5"
303 depends on SPL_FIT
304 help
305 Enable this to support MD5 in FIT images within SPL. An MD5
306 checksum is a 128-bit hash value used to check that the image
307 contents have not been corrupted. Note that MD5 is not considered
308 secure as it is possible (with a brute-force attack) to adjust the
309 image while still retaining the same MD5 hash value. For secure
310 applications where images may be changed maliciously, you should
311 consider SHA1 or SHA256.
312
313config SPL_SHA1_SUPPORT
314 bool "Support SHA1"
315 depends on SPL_FIT
Tom Rini089df182017-05-15 12:17:49 -0400316 select SHA1
Simon Glass11bde1c2016-09-13 07:05:23 -0600317 help
318 Enable this to support SHA1 in FIT images within SPL. A SHA1
319 checksum is a 160-bit (20-byte) hash value used to check that the
320 image contents have not been corrupted or maliciously altered.
321 While SHA1 is fairly secure it is coming to the end of its life
Vagrant Cascadian048a92e2019-05-03 14:28:37 -0800322 due to the expanding computing power available to brute-force
Simon Glass11bde1c2016-09-13 07:05:23 -0600323 attacks. For more security, consider SHA256.
324
325config SPL_SHA256_SUPPORT
326 bool "Support SHA256"
327 depends on SPL_FIT
Tom Rini089df182017-05-15 12:17:49 -0400328 select SHA256
Simon Glass11bde1c2016-09-13 07:05:23 -0600329 help
330 Enable this to support SHA256 in FIT images within SPL. A SHA256
331 checksum is a 256-bit (32-byte) hash value used to check that the
332 image contents have not been corrupted. SHA256 is recommended for
333 use in secure applications since (as at 2016) there is no known
334 feasible attack that could produce a 'collision' with differing
335 input data. Use this for the highest security. Note that only the
336 SHA256 variant is supported: SHA512 and others are not currently
337 supported in U-Boot.
338
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100339config SPL_FIT_IMAGE_TINY
340 bool "Remove functionality from SPL FIT loading to reduce size"
341 depends on SPL_FIT
Icenowy Zheng6f796a92018-07-21 16:20:31 +0800342 default y if MACH_SUN50I || MACH_SUN50I_H5 || MACH_SUN50I_H6
Ye Lif6282cd2018-11-20 10:19:15 +0000343 default y if ARCH_IMX8M
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100344 help
345 Enable this to reduce the size of the FIT image loading code
346 in SPL, if space for the SPL binary is very tight.
347
348 This removes the detection of image types (which forces the
349 first image to be treated as having a U-Boot style calling
350 convention) and skips the recording of each loaded payload
351 (i.e. loadable) into the FDT (modifying the loaded FDT to
352 ensure this information is available to the next image
353 invoked).
354
Simon Glass5e148df2017-01-16 07:03:29 -0700355config SPL_CPU_SUPPORT
356 bool "Support CPU drivers"
Simon Glass5e148df2017-01-16 07:03:29 -0700357 help
358 Enable this to support CPU drivers in SPL. These drivers can set
359 up CPUs and provide information about them such as the model and
360 name. This can be useful in SPL since setting up the CPUs earlier
361 may improve boot performance. Enable this option to build the
362 drivers in drivers/cpu as part of an SPL build.
363
Simon Glass11bde1c2016-09-13 07:05:23 -0600364config SPL_CRYPTO_SUPPORT
365 bool "Support crypto drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600366 help
367 Enable crypto drivers in SPL. These drivers can be used to
368 accelerate secure boot processing in secure applications. Enable
369 this option to build the drivers in drivers/crypto as part of an
370 SPL build.
371
372config SPL_HASH_SUPPORT
373 bool "Support hashing drivers"
Tom Rini089df182017-05-15 12:17:49 -0400374 select SHA1
375 select SHA256
Simon Glass11bde1c2016-09-13 07:05:23 -0600376 help
377 Enable hashing drivers in SPL. These drivers can be used to
378 accelerate secure boot processing in secure applications. Enable
379 this option to build system-specific drivers for hash acceleration
380 as part of an SPL build.
381
Simon Glass2d424eb2018-11-15 18:43:55 -0700382config TPL_HASH_SUPPORT
383 bool "Support hashing drivers in TPL"
384 select SHA1
385 select SHA256
386 help
387 Enable hashing drivers in SPL. These drivers can be used to
388 accelerate secure boot processing in secure applications. Enable
389 this option to build system-specific drivers for hash acceleration
390 as part of an SPL build.
391
Simon Glass11bde1c2016-09-13 07:05:23 -0600392config SPL_DMA_SUPPORT
393 bool "Support DMA drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600394 help
395 Enable DMA (direct-memory-access) drivers in SPL. These drivers
396 can be used to handle memory-to-peripheral data transfer without
397 the CPU moving the data. Enable this option to build the drivers
398 in drivers/dma as part of an SPL build.
399
400config SPL_DRIVERS_MISC_SUPPORT
401 bool "Support misc drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600402 help
403 Enable miscellaneous drivers in SPL. These drivers perform various
404 tasks that don't fall nicely into other categories, Enable this
405 option to build the drivers in drivers/misc as part of an SPL
406 build, for those that support building in SPL (not all drivers do).
407
408config SPL_ENV_SUPPORT
409 bool "Support an environment"
Simon Glass11bde1c2016-09-13 07:05:23 -0600410 help
411 Enable environment support in SPL. The U-Boot environment provides
412 a number of settings (essentially name/value pairs) which can
413 control many aspects of U-Boot's operation. Normally this is not
414 needed in SPL as it has a much simpler task with less
415 configuration. But some boards use this to support 'Falcon' boot
416 on EXT2 and FAT, where SPL boots directly into Linux without
Simon Glass00caae62017-08-03 12:22:12 -0600417 starting U-Boot first. Enabling this option will make env_get()
Simon Glass382bee52017-08-03 12:22:09 -0600418 and env_set() available in SPL.
Simon Glass11bde1c2016-09-13 07:05:23 -0600419
B, Ravid2d9bdf2016-09-28 14:46:18 +0530420config SPL_SAVEENV
421 bool "Support save environment"
Tom Rini226498b2017-05-22 19:21:57 +0000422 depends on SPL_ENV_SUPPORT
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100423 select SPL_MMC_WRITE if ENV_IS_IN_MMC
B, Ravid2d9bdf2016-09-28 14:46:18 +0530424 help
425 Enable save environment support in SPL after setenv. By default
426 the saveenv option is not provided in SPL, but some boards need
427 this support in 'Falcon' boot, where SPL need to boot from
428 different images based on environment variable set by OS. For
429 example OS may set "reboot_image" environment variable to
430 "recovery" inorder to boot recovery image by SPL. The SPL read
431 "reboot_image" and act accordingly and change the reboot_image
Shyam Saini919d25c2018-06-07 19:47:19 +0530432 to default mode using setenv and save the environment.
B, Ravid2d9bdf2016-09-28 14:46:18 +0530433
Simon Glass11bde1c2016-09-13 07:05:23 -0600434config SPL_ETH_SUPPORT
435 bool "Support Ethernet"
436 depends on SPL_ENV_SUPPORT
437 help
438 Enable access to the network subsystem and associated Ethernet
439 drivers in SPL. This permits SPL to load U-Boot over an Ethernet
440 link rather than from an on-board peripheral. Environment support
441 is required since the network stack uses a number of environment
442 variables. See also SPL_NET_SUPPORT.
443
Tien Fong Cheef4b40922019-01-23 14:20:05 +0800444config SPL_FS_EXT4
Simon Glass11bde1c2016-09-13 07:05:23 -0600445 bool "Support EXT filesystems"
Simon Glass11bde1c2016-09-13 07:05:23 -0600446 help
447 Enable support for EXT2/3/4 filesystems with SPL. This permits
448 U-Boot (or Linux in Falcon mode) to be loaded from an EXT
449 filesystem from within SPL. Support for the underlying block
450 device (e.g. MMC or USB) must be enabled separately.
451
Tien Fong Chee0c3a9ed2019-01-23 14:20:03 +0800452config SPL_FS_FAT
Simon Glass11bde1c2016-09-13 07:05:23 -0600453 bool "Support FAT filesystems"
Sekhar Norieedfb892017-06-02 17:53:59 +0530454 select FS_FAT
Simon Glass11bde1c2016-09-13 07:05:23 -0600455 help
456 Enable support for FAT and VFAT filesystems with SPL. This
457 permits U-Boot (or Linux in Falcon mode) to be loaded from a FAT
458 filesystem from within SPL. Support for the underlying block
459 device (e.g. MMC or USB) must be enabled separately.
460
Tien Fong Cheed8c3ea92019-01-23 14:20:04 +0800461config SPL_FAT_WRITE
462 bool "Support write for FAT filesystems"
463 help
464 Enable write support for FAT and VFAT filesystems with SPL.
465 Support for the underlying block device (e.g. MMC or USB) must be
466 enabled separately.
467
Simon Glass11bde1c2016-09-13 07:05:23 -0600468config SPL_FPGA_SUPPORT
469 bool "Support FPGAs"
Simon Glass11bde1c2016-09-13 07:05:23 -0600470 help
471 Enable support for FPGAs in SPL. Field-programmable Gate Arrays
472 provide software-configurable hardware which is typically used to
473 implement peripherals (such as UARTs, LCD displays, MMC) or
474 accelerate custom processing functions, such as image processing
475 or machine learning. Sometimes it is useful to program the FPGA
476 as early as possible during boot, and this option can enable that
477 within SPL.
478
479config SPL_GPIO_SUPPORT
Simon Glass2d424eb2018-11-15 18:43:55 -0700480 bool "Support GPIO in SPL"
Simon Glass11bde1c2016-09-13 07:05:23 -0600481 help
482 Enable support for GPIOs (General-purpose Input/Output) in SPL.
483 GPIOs allow U-Boot to read the state of an input line (high or
484 low) and set the state of an output line. This can be used to
485 drive LEDs, control power to various system parts and read user
486 input. GPIOs can be useful in SPL to enable a 'sign-of-life' LED,
487 for example. Enable this option to build the drivers in
488 drivers/gpio as part of an SPL build.
489
490config SPL_I2C_SUPPORT
491 bool "Support I2C"
Simon Glass11bde1c2016-09-13 07:05:23 -0600492 help
493 Enable support for the I2C (Inter-Integrated Circuit) bus in SPL.
494 I2C works with a clock and data line which can be driven by a
495 one or more masters or slaves. It is a fairly complex bus but is
496 widely used as it only needs two lines for communication. Speeds of
497 400kbps are typical but up to 3.4Mbps is supported by some
498 hardware. I2C can be useful in SPL to configure power management
499 ICs (PMICs) before raising the CPU clock speed, for example.
500 Enable this option to build the drivers in drivers/i2c as part of
501 an SPL build.
502
503config SPL_LIBCOMMON_SUPPORT
504 bool "Support common libraries"
Simon Glass11bde1c2016-09-13 07:05:23 -0600505 help
506 Enable support for common U-Boot libraries within SPL. These
507 libraries include common code to deal with U-Boot images,
508 environment and USB, for example. This option is enabled on many
509 boards. Enable this option to build the code in common/ as part of
510 an SPL build.
511
512config SPL_LIBDISK_SUPPORT
Simon Goldschmidt00416702018-08-16 09:44:55 +0200513 bool "Support disk partitions"
Tom Rini91ff6862018-12-05 08:23:38 -0500514 select PARTITIONS
Simon Glass11bde1c2016-09-13 07:05:23 -0600515 help
516 Enable support for disk partitions within SPL. 'Disk' is something
517 of a misnomer as it includes non-spinning media such as flash (as
518 used in MMC and USB sticks). Partitions provide a way for a disk
519 to be split up into separate regions, with a partition table placed
520 at the start or end which describes the location and size of each
521 'partition'. These partitions are typically uses as individual block
522 devices, typically with an EXT2 or FAT filesystem in each. This
523 option enables whatever partition support has been enabled in
524 U-Boot to also be used in SPL. It brings in the code in disk/.
525
526config SPL_LIBGENERIC_SUPPORT
527 bool "Support generic libraries"
Simon Glass11bde1c2016-09-13 07:05:23 -0600528 help
529 Enable support for generic U-Boot libraries within SPL. These
530 libraries include generic code to deal with device tree, hashing,
531 printf(), compression and the like. This option is enabled on many
532 boards. Enable this option to build the code in lib/ as part of an
533 SPL build.
534
Lokesh Vutla88027412018-08-27 15:57:49 +0530535config SPL_DM_MAILBOX
536 bool "Support Mailbox"
537 help
538 Enable support for Mailbox within SPL. This enable the inter
539 processor communication protocols tobe used within SPL. Enable
540 this option to build the drivers in drivers/mailbox as part of
541 SPL build.
542
Simon Glass11bde1c2016-09-13 07:05:23 -0600543config SPL_MMC_SUPPORT
544 bool "Support MMC"
Tom Rini226498b2017-05-22 19:21:57 +0000545 depends on MMC
Tom Rini91ff6862018-12-05 08:23:38 -0500546 select HAVE_BLOCK_DEVICE
Simon Glass11bde1c2016-09-13 07:05:23 -0600547 help
548 Enable support for MMC (Multimedia Card) within SPL. This enables
549 the MMC protocol implementation and allows any enabled drivers to
550 be used within SPL. MMC can be used with or without disk partition
551 support depending on the application (SPL_LIBDISK_SUPPORT). Enable
552 this option to build the drivers in drivers/mmc as part of an SPL
553 build.
554
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100555config SPL_MMC_WRITE
556 bool "MMC/SD/SDIO card support for write operations in SPL"
557 depends on SPL_MMC_SUPPORT
558 default n
559 help
560 Enable write access to MMC and SD Cards in SPL
561
562
Simon Glass11bde1c2016-09-13 07:05:23 -0600563config SPL_MPC8XXX_INIT_DDR_SUPPORT
564 bool "Support MPC8XXX DDR init"
Simon Glass11bde1c2016-09-13 07:05:23 -0600565 help
566 Enable support for DDR-SDRAM (double-data-rate synchronous dynamic
567 random-access memory) on the MPC8XXX family within SPL. This
568 allows DRAM to be set up before loading U-Boot into that DRAM,
569 where it can run.
570
571config SPL_MTD_SUPPORT
572 bool "Support MTD drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600573 help
574 Enable support for MTD (Memory Technology Device) within SPL. MTD
575 provides a block interface over raw NAND and can also be used with
576 SPI flash. This allows SPL to load U-Boot from supported MTD
577 devices. See SPL_NAND_SUPPORT and SPL_ONENAND_SUPPORT for how
578 to enable specific MTD drivers.
579
580config SPL_MUSB_NEW_SUPPORT
581 bool "Support new Mentor Graphics USB"
Simon Glass11bde1c2016-09-13 07:05:23 -0600582 help
583 Enable support for Mentor Graphics USB in SPL. This is a new
584 driver used by some boards. Enable this option to build
585 the drivers in drivers/usb/musb-new as part of an SPL build. The
586 old drivers are in drivers/usb/musb.
587
588config SPL_NAND_SUPPORT
589 bool "Support NAND flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600590 help
591 Enable support for NAND (Negative AND) flash in SPL. NAND flash
592 can be used to allow SPL to load U-Boot from supported devices.
Miquel Raynala430fa02018-08-16 17:30:07 +0200593 This enables the drivers in drivers/mtd/nand/raw as part of an SPL
Simon Glass11bde1c2016-09-13 07:05:23 -0600594 build.
595
596config SPL_NET_SUPPORT
597 bool "Support networking"
Simon Glass11bde1c2016-09-13 07:05:23 -0600598 help
599 Enable support for network devices (such as Ethernet) in SPL.
600 This permits SPL to load U-Boot over a network link rather than
601 from an on-board peripheral. Environment support is required since
602 the network stack uses a number of environment variables. See also
603 SPL_ETH_SUPPORT.
604
605if SPL_NET_SUPPORT
606config SPL_NET_VCI_STRING
607 string "BOOTP Vendor Class Identifier string sent by SPL"
608 help
609 As defined by RFC 2132 the vendor class identifier field can be
610 sent by the client to identify the vendor type and configuration
611 of a client. This is often used in practice to allow for the DHCP
612 server to specify different files to load depending on if the ROM,
613 SPL or U-Boot itself makes the request
614endif # if SPL_NET_SUPPORT
615
616config SPL_NO_CPU_SUPPORT
617 bool "Drop CPU code in SPL"
Simon Glass11bde1c2016-09-13 07:05:23 -0600618 help
619 This is specific to the ARM926EJ-S CPU. It disables the standard
620 start.S start-up code, presumably so that a replacement can be
621 used on that CPU. You should not enable it unless you know what
622 you are doing.
623
624config SPL_NOR_SUPPORT
625 bool "Support NOR flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600626 help
627 Enable support for loading U-Boot from memory-mapped NOR (Negative
628 OR) flash in SPL. NOR flash is slow to write but fast to read, and
629 a memory-mapped device makes it very easy to access. Loading from
630 NOR is typically achieved with just a memcpy().
631
Vikas Manochac6d9e9d2017-05-28 12:55:11 -0700632config SPL_XIP_SUPPORT
633 bool "Support XIP"
634 depends on SPL
635 help
636 Enable support for execute in place of U-Boot or kernel image. There
637 is no need to copy image from flash to ram if flash supports execute
638 in place. Its very useful in systems having enough flash but not
639 enough ram to load the image.
640
Simon Glass11bde1c2016-09-13 07:05:23 -0600641config SPL_ONENAND_SUPPORT
642 bool "Support OneNAND flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600643 help
644 Enable support for OneNAND (Negative AND) flash in SPL. OneNAND is
645 a type of NAND flash and therefore can be used to allow SPL to
646 load U-Boot from supported devices. This enables the drivers in
647 drivers/mtd/onenand as part of an SPL build.
648
Heiko Schocherc20ae2f2016-10-06 07:55:15 +0200649config SPL_OS_BOOT
650 bool "Activate Falcon Mode"
Tom Rini226498b2017-05-22 19:21:57 +0000651 depends on !TI_SECURE_DEVICE
Heiko Schocherc20ae2f2016-10-06 07:55:15 +0200652 default n
653 help
654 Enable booting directly to an OS from SPL.
655 for more info read doc/README.falcon
656
Heiko Schocher29d3bc72016-10-06 07:55:16 +0200657if SPL_OS_BOOT
658config SYS_OS_BASE
659 hex "addr, where OS is found"
Tom Rini226498b2017-05-22 19:21:57 +0000660 depends on SPL_NOR_SUPPORT
Heiko Schocher29d3bc72016-10-06 07:55:16 +0200661 help
662 Specify the address, where the OS image is found, which
663 gets booted.
664
665endif # SPL_OS_BOOT
666
York Sun7550dbe2018-06-14 14:38:48 -0700667config SPL_PAYLOAD
668 string "SPL payload"
669 default "tpl/u-boot-with-tpl.bin" if TPL
670 default "u-boot.bin"
671 help
Chris Packham2dcfa052019-01-13 22:13:20 +1300672 Payload for SPL boot. For backward compatibility, default to
York Sun7550dbe2018-06-14 14:38:48 -0700673 u-boot.bin, i.e. RAW image without any header. In case of
674 TPL, tpl/u-boot-with-tpl.bin. For new boards, suggest to
675 use u-boot.img.
676
Sekhar Norid50d6812018-12-06 15:40:08 +0530677config SPL_PCI
Simon Glass2446b6b2017-01-16 07:03:30 -0700678 bool "Support PCI drivers"
Simon Glass2446b6b2017-01-16 07:03:30 -0700679 help
680 Enable support for PCI in SPL. For platforms that need PCI to boot,
681 or must perform some init using PCI in SPL, this provides the
682 necessary driver support. This enables the drivers in drivers/pci
683 as part of an SPL build.
684
Simon Glassbbe41ab2017-01-16 07:03:33 -0700685config SPL_PCH_SUPPORT
686 bool "Support PCH drivers"
Simon Glassbbe41ab2017-01-16 07:03:33 -0700687 help
688 Enable support for PCH (Platform Controller Hub) devices in SPL.
689 These are used to set up GPIOs and the SPI peripheral early in
690 boot. This enables the drivers in drivers/pch as part of an SPL
691 build.
692
Simon Glass11bde1c2016-09-13 07:05:23 -0600693config SPL_POST_MEM_SUPPORT
694 bool "Support POST drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600695 help
696 Enable support for POST (Power-on Self Test) in SPL. POST is a
697 procedure that checks that the hardware (CPU or board) appears to
698 be functionally correctly. It is a sanity check that can be
699 performed before booting. This enables the drivers in post/drivers
700 as part of an SPL build.
701
Ley Foon Tanbfc6bae2018-06-14 18:45:19 +0800702config SPL_DM_RESET
Patrick Delaunay0e373c02018-03-12 10:46:05 +0100703 bool "Support reset drivers"
704 depends on SPL
705 help
706 Enable support for reset control in SPL.
707 That can be useful in SPL to handle IP reset in driver, as in U-Boot,
708 by using the generic reset API provided by driver model.
709 This enables the drivers in drivers/reset as part of an SPL build.
710
Simon Glass11bde1c2016-09-13 07:05:23 -0600711config SPL_POWER_SUPPORT
712 bool "Support power drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600713 help
714 Enable support for power control in SPL. This includes support
715 for PMICs (Power-management Integrated Circuits) and some of the
716 features provided by PMICs. In particular, voltage regulators can
717 be used to enable/disable power and vary its voltage. That can be
718 useful in SPL to turn on boot peripherals and adjust CPU voltage
719 so that the clock speed can be increased. This enables the drivers
720 in drivers/power, drivers/power/pmic and drivers/power/regulator
721 as part of an SPL build.
722
Peng Fane13278c2018-07-27 10:20:37 +0800723config SPL_POWER_DOMAIN
724 bool "Support power domain drivers"
725 help
726 Enable support for power domain control in SPL. Many SoCs allow
727 power to be applied to or removed from portions of the SoC (power
728 domains). This may be used to save power. This API provides the
729 means to control such power management hardware. This enables
730 the drivers in drivers/power/domain as part of a SPL build.
731
Stefan Agner22802f42016-12-23 07:51:53 +0100732config SPL_RAM_SUPPORT
733 bool "Support booting from RAM"
Stefan Agner22802f42016-12-23 07:51:53 +0100734 default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ
735 help
736 Enable booting of an image in RAM. The image can be preloaded or
737 it can be loaded by SPL directly into RAM (e.g. using USB).
738
Stefan Agnerf417d402016-12-23 07:51:52 +0100739config SPL_RAM_DEVICE
740 bool "Support booting from preloaded image in RAM"
Stefan Agner22802f42016-12-23 07:51:53 +0100741 depends on SPL_RAM_SUPPORT
Stefan Agnerf417d402016-12-23 07:51:52 +0100742 default y if MICROBLAZE || ARCH_SOCFPGA || TEGRA || ARCH_ZYNQ
743 help
744 Enable booting of an image already loaded in RAM. The image has to
745 be already in memory when SPL takes over, e.g. loaded by the boot
746 ROM.
747
Lokesh Vutla08c45312018-08-27 15:57:53 +0530748config SPL_REMOTEPROC
749 bool "Support REMOTEPROCS"
750 help
751 Enable support for REMOTEPROCs in SPL. This permits to load
752 a remote processor firmware in SPL.
753
Simon Glass30bf8a02017-01-16 07:03:31 -0700754config SPL_RTC_SUPPORT
755 bool "Support RTC drivers"
Simon Glass30bf8a02017-01-16 07:03:31 -0700756 help
757 Enable RTC (Real-time Clock) support in SPL. This includes support
758 for reading and setting the time. Some RTC devices also have some
759 non-volatile (battery-backed) memory which is accessible if
760 needed. This enables the drivers in drivers/rtc as part of an SPL
761 build.
762
Simon Glass11bde1c2016-09-13 07:05:23 -0600763config SPL_SATA_SUPPORT
764 bool "Support loading from SATA"
Simon Glass11bde1c2016-09-13 07:05:23 -0600765 help
766 Enable support for SATA (Serial AT attachment) in SPL. This allows
767 use of SATA devices such as hard drives and flash drivers for
768 loading U-Boot. SATA is used in higher-end embedded systems and
769 can provide higher performance than MMC , at somewhat higher
770 expense and power consumption. This enables loading from SATA
771 using a configured device.
772
773config SPL_SERIAL_SUPPORT
774 bool "Support serial"
Alex Kiernan14ad44a2018-04-19 04:32:54 +0000775 select SPL_PRINTF
776 select SPL_STRTO
Simon Glass11bde1c2016-09-13 07:05:23 -0600777 help
778 Enable support for serial in SPL. This allows use of a serial UART
779 for displaying messages while SPL is running. It also brings in
780 printf() and panic() functions. This should normally be enabled
781 unless there are space reasons not to. Even then, consider
782 enabling USE_TINY_PRINTF which is a small printf() version.
783
784config SPL_SPI_FLASH_SUPPORT
785 bool "Support SPI flash drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600786 help
787 Enable support for using SPI flash in SPL, and loading U-Boot from
788 SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
789 the SPI bus that is used to connect it to a system. It is a simple
790 but fast bidirectional 4-wire bus (clock, chip select and two data
791 lines). This enables the drivers in drivers/mtd/spi as part of an
792 SPL build. This normally requires SPL_SPI_SUPPORT.
793
Vignesh R0c6f1872019-02-05 11:29:20 +0530794if SPL_SPI_FLASH_SUPPORT
795
Vignesh R778572d2019-02-05 11:29:25 +0530796config SPL_SPI_FLASH_TINY
797 bool "Enable low footprint SPL SPI Flash support"
798 depends on !SPI_FLASH_BAR
Vignesh R72875972019-02-05 11:29:26 +0530799 default y if SPI_FLASH
Vignesh R778572d2019-02-05 11:29:25 +0530800 help
801 Enable lightweight SPL SPI Flash support that supports just reading
802 data/images from flash. No support to write/erase flash. Enable
803 this if you have SPL size limitations and don't need full
804 fledged SPI flash support.
805
Vignesh R0c6f1872019-02-05 11:29:20 +0530806config SPL_SPI_FLASH_SFDP_SUPPORT
807 bool "SFDP table parsing support for SPI NOR flashes"
Vignesh R778572d2019-02-05 11:29:25 +0530808 depends on !SPI_FLASH_BAR && !SPL_SPI_FLASH_TINY
Vignesh R0c6f1872019-02-05 11:29:20 +0530809 help
810 Enable support for parsing and auto discovery of parameters for
811 SPI NOR flashes using Serial Flash Discoverable Parameters (SFDP)
812 tables as per JESD216 standard in SPL.
813
Marek Vasut55500432018-04-07 16:05:27 +0200814config SPL_SPI_LOAD
815 bool "Support loading from SPI flash"
Marek Vasut55500432018-04-07 16:05:27 +0200816 help
817 Enable support for loading next stage, U-Boot or otherwise, from
818 SPI NOR in U-Boot SPL.
819
Vignesh R0c6f1872019-02-05 11:29:20 +0530820endif # SPL_SPI_FLASH_SUPPORT
821
Simon Glass11bde1c2016-09-13 07:05:23 -0600822config SPL_SPI_SUPPORT
823 bool "Support SPI drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600824 help
825 Enable support for using SPI in SPL. This is used for connecting
826 to SPI flash for loading U-Boot. See SPL_SPI_FLASH_SUPPORT for
827 more details on that. The SPI driver provides the transport for
828 data between the SPI flash and the CPU. This option can be used to
829 enable SPI drivers that are needed for other purposes also, such
830 as a SPI PMIC.
831
Faiz Abbas8502f9f2017-11-14 16:12:31 +0530832config SPL_THERMAL
833 bool "Driver support for thermal devices"
834 help
835 Enable support for temperature-sensing devices. Some SoCs have on-chip
836 temperature sensors to permit warnings, speed throttling or even
837 automatic power-off when the temperature gets too high or low. Other
838 devices may be discrete but connected on a suitable bus.
839
Simon Glass11bde1c2016-09-13 07:05:23 -0600840config SPL_USB_HOST_SUPPORT
841 bool "Support USB host drivers"
Tom Rini91ff6862018-12-05 08:23:38 -0500842 select HAVE_BLOCK_DEVICE
Simon Glass11bde1c2016-09-13 07:05:23 -0600843 help
844 Enable access to USB (Universal Serial Bus) host devices so that
845 SPL can load U-Boot from a connected USB peripheral, such as a USB
846 flash stick. While USB takes a little longer to start up than most
847 buses, it is very flexible since many different types of storage
848 device can be attached. This option enables the drivers in
849 drivers/usb/host as part of an SPL build.
850
Abel Vesa79536012019-02-01 16:40:07 +0000851config SPL_USB_STORAGE
Simon Glass11bde1c2016-09-13 07:05:23 -0600852 bool "Support loading from USB"
Abel Vesa79536012019-02-01 16:40:07 +0000853 depends on SPL_USB_HOST_SUPPORT && !(BLK && !DM_USB)
Simon Glass11bde1c2016-09-13 07:05:23 -0600854 help
855 Enable support for USB devices in SPL. This allows use of USB
856 devices such as hard drives and flash drivers for loading U-Boot.
857 The actual drivers are enabled separately using the normal U-Boot
858 config options. This enables loading from USB using a configured
859 device.
860
Jean-Jacques Hiblotf811e972019-01-10 15:44:13 +0100861config SPL_USB_GADGET
Stefan Agnere94793c2016-11-21 10:58:53 -0800862 bool "Suppport USB Gadget drivers"
Stefan Agnere94793c2016-11-21 10:58:53 -0800863 help
864 Enable USB Gadget API which allows to enable USB device functions
865 in SPL.
866
Jean-Jacques Hiblotf811e972019-01-10 15:44:13 +0100867if SPL_USB_GADGET
Stefan Agnere94793c2016-11-21 10:58:53 -0800868
Faiz Abbasb432b1e2018-02-16 21:17:44 +0530869config SPL_USB_ETHER
Stefan Agnere94793c2016-11-21 10:58:53 -0800870 bool "Support USB Ethernet drivers"
871 help
872 Enable access to the USB network subsystem and associated
873 drivers in SPL. This permits SPL to load U-Boot over a
874 USB-connected Ethernet link (such as a USB Ethernet dongle) rather
875 than from an onboard peripheral. Environment support is required
876 since the network stack uses a number of environment variables.
877 See also SPL_NET_SUPPORT and SPL_ETH_SUPPORT.
878
Andrew F. Davis6536ca42019-01-17 13:43:02 -0600879config SPL_DFU
Fabio Estevamc3c19c22018-08-31 10:02:28 -0300880 bool "Support DFU (Device Firmware Upgrade)"
Stefan Agner59917032016-11-21 10:58:52 -0800881 select SPL_HASH_SUPPORT
B, Ravi66928af2017-05-04 15:45:29 +0530882 select SPL_DFU_NO_RESET
B, Ravi1b19cbd2017-05-04 15:45:28 +0530883 depends on SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -0800884 help
Fabio Estevamc3c19c22018-08-31 10:02:28 -0300885 This feature enables the DFU (Device Firmware Upgrade) in SPL with
Stefan Agner59917032016-11-21 10:58:52 -0800886 RAM memory device support. The ROM code will load and execute
887 the SPL built with dfu. The user can load binaries (u-boot/kernel) to
888 selected device partition from host-pc using dfu-utils.
889 This feature is useful to flash the binaries to factory or bare-metal
890 boards using USB interface.
891
892choice
893 bool "DFU device selection"
Andrew F. Davis6536ca42019-01-17 13:43:02 -0600894 depends on SPL_DFU
Stefan Agner59917032016-11-21 10:58:52 -0800895
896config SPL_DFU_RAM
897 bool "RAM device"
Andrew F. Davis6536ca42019-01-17 13:43:02 -0600898 depends on SPL_DFU && SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -0800899 help
900 select RAM/DDR memory device for loading binary images
901 (u-boot/kernel) to the selected device partition using
902 DFU and execute the u-boot/kernel from RAM.
903
904endchoice
905
Stefan Agnera3774c12017-08-16 11:00:54 -0700906config SPL_USB_SDP_SUPPORT
907 bool "Support SDP (Serial Download Protocol)"
908 help
909 Enable Serial Download Protocol (SDP) device support in SPL. This
910 allows to download images into memory and execute (jump to) them
911 using the same protocol as implemented by the i.MX family's boot ROM.
Stefan Agnere94793c2016-11-21 10:58:53 -0800912endif
913
Simon Glass11bde1c2016-09-13 07:05:23 -0600914config SPL_WATCHDOG_SUPPORT
915 bool "Support watchdog drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600916 help
917 Enable support for watchdog drivers in SPL. A watchdog is
918 typically a hardware peripheral which can reset the system when it
919 detects no activity for a while (such as a software crash). This
920 enables the drivers in drivers/watchdog as part of an SPL build.
921
922config SPL_YMODEM_SUPPORT
923 bool "Support loading using Ymodem"
Alex Kiernan3bac19c2018-04-19 04:32:52 +0000924 depends on SPL_SERIAL_SUPPORT
Simon Glass11bde1c2016-09-13 07:05:23 -0600925 help
926 While loading from serial is slow it can be a useful backup when
927 there is no other option. The Ymodem protocol provides a reliable
928 means of transmitting U-Boot over a serial line for using in SPL,
929 with a checksum to ensure correctness.
930
Philipp Tomsichaa122f62017-09-13 21:29:36 +0200931config SPL_ATF
Kever Yangbcc17262017-05-05 11:47:45 +0800932 bool "Support ARM Trusted Firmware"
Tom Rini226498b2017-05-22 19:21:57 +0000933 depends on ARM64
Kever Yangbcc17262017-05-05 11:47:45 +0800934 help
Philipp Tomsichd21fb632018-01-02 21:16:43 +0100935 ATF(ARM Trusted Firmware) is a component for ARM AArch64 which
936 is loaded by SPL (which is considered as BL2 in ATF terminology).
Kever Yangbcc17262017-05-05 11:47:45 +0800937 More detail at: https://github.com/ARM-software/arm-trusted-firmware
938
Philipp Tomsichd21fb632018-01-02 21:16:43 +0100939config SPL_ATF_NO_PLATFORM_PARAM
940 bool "Pass no platform parameter"
941 depends on SPL_ATF
942 help
943 While we expect to call a pointer to a valid FDT (or NULL)
944 as the platform parameter to an ATF, some ATF versions are
945 not U-Boot aware and have an insufficiently robust parameter
946 validation to gracefully reject a FDT being passed.
947
948 If this option is enabled, the spl_atf os-type handler will
949 always pass NULL for the platform parameter.
950
951 If your ATF is affected, say Y.
952
Alex Kiernan3bf5f132018-03-15 22:11:46 +0000953config SPL_AM33XX_ENABLE_RTC32K_OSC
954 bool "Enable the RTC32K OSC on AM33xx based platforms"
955 default y if AM33XX
956 help
957 Enable access to the AM33xx RTC and select the external 32kHz clock
958 source.
959
Kever Yang70fe2872018-08-23 17:17:59 +0800960config SPL_OPTEE
961 bool "Support OP-TEE Trusted OS"
962 depends on ARM
963 help
964 OP-TEE is an open source Trusted OS which is loaded by SPL.
965 More detail at: https://github.com/OP-TEE/optee_os
966
Tom Rini226498b2017-05-22 19:21:57 +0000967config TPL
968 bool
969 depends on SUPPORT_TPL
970 prompt "Enable TPL"
971 help
972 If you want to build TPL as well as the normal image and SPL, say Y.
973
974if TPL
975
Simon Glassb0edea32018-11-15 18:44:09 -0700976config TPL_HANDOFF
977 bool "Pass hand-off information from TPL to SPL and U-Boot proper"
978 depends on HANDOFF
979 default y
980 help
981 This option enables TPL to write handoff information. This can be
982 used to pass information like the size of SDRAM from TPL to U-Boot
983 proper. The information is also available to SPL if it is useful
984 there.
985
Kever Yangaf2f4422018-01-20 18:00:26 +0800986config TPL_BOARD_INIT
987 bool "Call board-specific initialization in TPL"
988 help
989 If this option is enabled, U-Boot will call the function
990 spl_board_init() from board_init_r(). This function should be
991 provided by the board.
992
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +0200993config TPL_LDSCRIPT
994 string "Linker script for the TPL stage"
995 depends on TPL
Tom Rini2f41ade2019-01-22 17:09:26 -0500996 default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
997 default "arch/$(ARCH)/cpu/u-boot-spl.lds"
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +0200998 help
999 The TPL stage will usually require a different linker-script
1000 (as it runs from a different memory region) than the regular
1001 U-Boot stage. Set this to the path of the linker-script to
1002 be used for TPL.
1003
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001004 May be left empty to trigger the Makefile infrastructure to
1005 fall back to the linker-script used for the SPL stage.
1006
1007config TPL_NEEDS_SEPARATE_TEXT_BASE
1008 bool "TPL needs a separate text-base"
1009 default n
1010 depends on TPL
1011 help
1012 Enable, if the TPL stage should not inherit its text-base
1013 from the SPL stage. When enabled, a base address for the
1014 .text sections of the TPL stage has to be set below.
1015
1016config TPL_NEEDS_SEPARATE_STACK
1017 bool "TPL needs a separate initial stack-pointer"
1018 default n
1019 depends on TPL
1020 help
1021 Enable, if the TPL stage should not inherit its initial
1022 stack-pointer from the settings for the SPL stage.
1023
1024config TPL_TEXT_BASE
1025 hex "Base address for the .text section of the TPL stage"
1026 depends on TPL_NEEDS_SEPARATE_TEXT_BASE
1027 help
1028 The base address for the .text section of the TPL stage.
1029
1030config TPL_MAX_SIZE
1031 int "Maximum size (in bytes) for the TPL stage"
Philipp Tomsich5aa49af2017-07-28 20:20:41 +02001032 default 0
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001033 depends on TPL
1034 help
1035 The maximum size (in bytes) of the TPL stage.
1036
1037config TPL_STACK
1038 hex "Address of the initial stack-pointer for the TPL stage"
1039 depends on TPL_NEEDS_SEPARATE_STACK
1040 help
1041 The address of the initial stack-pointer for the TPL stage.
1042 Usually this will be the (aligned) top-of-stack.
1043
Philipp Tomsicha954fa32017-07-04 14:24:53 +02001044config TPL_BOOTROM_SUPPORT
1045 bool "Support returning to the BOOTROM (from TPL)"
1046 help
1047 Some platforms (e.g. the Rockchip RK3368) provide support in their
1048 ROM for loading the next boot-stage after performing basic setup
1049 from the TPL stage.
1050
1051 Enable this option, to return to the BOOTROM through the
1052 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
1053 boot device list, if not implemented for a given board)
1054
Philipp Tomsichc3916e72017-07-04 14:27:02 +02001055config TPL_DRIVERS_MISC_SUPPORT
1056 bool "Support misc drivers in TPL"
1057 help
1058 Enable miscellaneous drivers in TPL. These drivers perform various
1059 tasks that don't fall nicely into other categories, Enable this
1060 option to build the drivers in drivers/misc as part of an TPL
1061 build, for those that support building in TPL (not all drivers do).
1062
Simon Glassf73329e2016-09-12 23:18:27 -06001063config TPL_ENV_SUPPORT
1064 bool "Support an environment"
Simon Glassf73329e2016-09-12 23:18:27 -06001065 help
1066 Enable environment support in TPL. See SPL_ENV_SUPPORT for details.
1067
Simon Glass2d424eb2018-11-15 18:43:55 -07001068config TPL_GPIO_SUPPORT
1069 bool "Support GPIO in TPL"
1070 help
1071 Enable support for GPIOs (General-purpose Input/Output) in TPL.
1072 GPIOs allow U-Boot to read the state of an input line (high or
1073 low) and set the state of an output line. This can be used to
1074 drive LEDs, control power to various system parts and read user
1075 input. GPIOs can be useful in TPL to enable a 'sign-of-life' LED,
1076 for example. Enable this option to build the drivers in
1077 drivers/gpio as part of an TPL build.
1078
Simon Glassf73329e2016-09-12 23:18:27 -06001079config TPL_I2C_SUPPORT
1080 bool "Support I2C"
Simon Glassf73329e2016-09-12 23:18:27 -06001081 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001082 Enable support for the I2C bus in TPL. See SPL_I2C_SUPPORT for
Simon Glassf73329e2016-09-12 23:18:27 -06001083 details.
1084
1085config TPL_LIBCOMMON_SUPPORT
1086 bool "Support common libraries"
Simon Glassf73329e2016-09-12 23:18:27 -06001087 help
1088 Enable support for common U-Boot libraries within TPL. See
1089 SPL_LIBCOMMON_SUPPORT for details.
1090
1091config TPL_LIBGENERIC_SUPPORT
1092 bool "Support generic libraries"
Simon Glassf73329e2016-09-12 23:18:27 -06001093 help
1094 Enable support for generic U-Boot libraries within TPL. See
1095 SPL_LIBGENERIC_SUPPORT for details.
1096
1097config TPL_MPC8XXX_INIT_DDR_SUPPORT
1098 bool "Support MPC8XXX DDR init"
Simon Glassf73329e2016-09-12 23:18:27 -06001099 help
1100 Enable support for DDR-SDRAM on the MPC8XXX family within TPL. See
1101 SPL_MPC8XXX_INIT_DDR_SUPPORT for details.
1102
1103config TPL_MMC_SUPPORT
1104 bool "Support MMC"
Tom Rini226498b2017-05-22 19:21:57 +00001105 depends on MMC
Simon Glassf73329e2016-09-12 23:18:27 -06001106 help
1107 Enable support for MMC within TPL. See SPL_MMC_SUPPORT for details.
1108
1109config TPL_NAND_SUPPORT
1110 bool "Support NAND flash"
Simon Glassf73329e2016-09-12 23:18:27 -06001111 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001112 Enable support for NAND in TPL. See SPL_NAND_SUPPORT for details.
Simon Glassf73329e2016-09-12 23:18:27 -06001113
Sekhar Norid50d6812018-12-06 15:40:08 +05301114config TPL_PCI
Simon Glass2d424eb2018-11-15 18:43:55 -07001115 bool "Support PCI drivers"
1116 help
1117 Enable support for PCI in TPL. For platforms that need PCI to boot,
1118 or must perform some init using PCI in SPL, this provides the
1119 necessary driver support. This enables the drivers in drivers/pci
1120 as part of a TPL build.
1121
1122config TPL_PCH_SUPPORT
1123 bool "Support PCH drivers"
1124 help
1125 Enable support for PCH (Platform Controller Hub) devices in TPL.
1126 These are used to set up GPIOs and the SPI peripheral early in
1127 boot. This enables the drivers in drivers/pch as part of a TPL
1128 build.
1129
Marek Vasutd79dfd42018-04-07 17:03:45 +02001130config TPL_RAM_SUPPORT
1131 bool "Support booting from RAM"
1132 help
1133 Enable booting of an image in RAM. The image can be preloaded or
1134 it can be loaded by TPL directly into RAM (e.g. using USB).
1135
1136config TPL_RAM_DEVICE
1137 bool "Support booting from preloaded image in RAM"
1138 depends on TPL_RAM_SUPPORT
1139 help
1140 Enable booting of an image already loaded in RAM. The image has to
1141 be already in memory when TPL takes over, e.g. loaded by the boot
1142 ROM.
1143
Simon Glass2d424eb2018-11-15 18:43:55 -07001144config TPL_RTC_SUPPORT
1145 bool "Support RTC drivers"
1146 help
1147 Enable RTC (Real-time Clock) support in TPL. This includes support
1148 for reading and setting the time. Some RTC devices also have some
1149 non-volatile (battery-backed) memory which is accessible if
1150 needed. This enables the drivers in drivers/rtc as part of an TPL
1151 build.
1152
Simon Glassf73329e2016-09-12 23:18:27 -06001153config TPL_SERIAL_SUPPORT
1154 bool "Support serial"
Alex Kiernan14ad44a2018-04-19 04:32:54 +00001155 select TPL_PRINTF
1156 select TPL_STRTO
Simon Glassf73329e2016-09-12 23:18:27 -06001157 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001158 Enable support for serial in TPL. See SPL_SERIAL_SUPPORT for
Simon Glassf73329e2016-09-12 23:18:27 -06001159 details.
1160
1161config TPL_SPI_FLASH_SUPPORT
1162 bool "Support SPI flash drivers"
Simon Glassf73329e2016-09-12 23:18:27 -06001163 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001164 Enable support for using SPI flash in TPL. See SPL_SPI_FLASH_SUPPORT
Simon Glassf73329e2016-09-12 23:18:27 -06001165 for details.
1166
Marek Vasut1e725e22018-04-07 16:05:46 +02001167config TPL_SPI_LOAD
1168 bool "Support loading from SPI flash"
1169 depends on TPL_SPI_FLASH_SUPPORT
1170 help
1171 Enable support for loading next stage, U-Boot or otherwise, from
1172 SPI NOR in U-Boot TPL.
1173
Simon Glassf73329e2016-09-12 23:18:27 -06001174config TPL_SPI_SUPPORT
1175 bool "Support SPI drivers"
Simon Glassf73329e2016-09-12 23:18:27 -06001176 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001177 Enable support for using SPI in TPL. See SPL_SPI_SUPPORT for
Simon Glassf73329e2016-09-12 23:18:27 -06001178 details.
1179
Marek Vasut6ce3d672018-04-07 16:06:11 +02001180config TPL_YMODEM_SUPPORT
1181 bool "Support loading using Ymodem"
Alex Kiernan3bac19c2018-04-19 04:32:52 +00001182 depends on TPL_SERIAL_SUPPORT
Marek Vasut6ce3d672018-04-07 16:06:11 +02001183 help
1184 While loading from serial is slow it can be a useful backup when
1185 there is no other option. The Ymodem protocol provides a reliable
1186 means of transmitting U-Boot over a serial line for using in TPL,
1187 with a checksum to ensure correctness.
1188
Tom Rini226498b2017-05-22 19:21:57 +00001189endif # TPL
1190
Eugen Hristev0be07872019-05-24 09:38:10 +03001191config SPL_AT91_MCK_BYPASS
1192 bool "Use external clock signal as a source of main clock for AT91 platforms"
1193 depends on ARCH_AT91
1194 default n
1195 help
1196 Use external 8 to 24 Mhz clock signal as source of main clock instead
1197 of an external crystal oscillator.
1198 This option disables the internal driving on the XOUT pin.
1199 The external source has to provide a stable clock on the XIN pin.
1200 If this option is disabled, the SoC expects a crystal oscillator
1201 that needs driving on both XIN and XOUT lines.
1202
Tom Rini226498b2017-05-22 19:21:57 +00001203endif # SPL
Simon Glass11bde1c2016-09-13 07:05:23 -06001204endmenu