blob: 84f2847c724b65463a271d0290a75a08b9131d17 [file] [log] [blame]
Simon Glassf86ca5a2022-04-30 00:56:52 -06001menu "SPL / TPL / VPL"
Simon Glass11bde1c2016-09-13 07:05:23 -06002
Simon Glassc2ae7d82016-09-12 23:18:22 -06003config SUPPORT_SPL
4 bool
5
6config SUPPORT_TPL
7 bool
8
Simon Glassf86ca5a2022-04-30 00:56:52 -06009config SUPPORT_VPL
10 bool
11
B, Ravi66928af2017-05-04 15:45:29 +053012config SPL_DFU_NO_RESET
13 bool
14
Simon Glassc2ae7d82016-09-12 23:18:22 -060015config SPL
16 bool
17 depends on SUPPORT_SPL
18 prompt "Enable SPL"
19 help
20 If you want to build SPL as well as the normal image, say Y.
21
Tom Rini75670c82018-02-06 12:15:38 -050022config SPL_FRAMEWORK
23 bool "Support SPL based upon the common SPL framework"
24 depends on SPL
25 default y
26 help
27 Enable the SPL framework under common/spl/. This framework
28 supports MMC, NAND and YMODEM and other methods loading of U-Boot
29 and the Linux Kernel. If unsure, say Y.
30
Philippe Reynesa9a3aad2019-09-19 16:18:39 +020031config SPL_FRAMEWORK_BOARD_INIT_F
32 bool "Define a generic function board_init_f"
33 depends on SPL_FRAMEWORK
34 help
35 Define a generic function board_init_f that:
36 - initialize the spl (spl_early_init)
37 - initialize the serial (preloader_console_init)
38 Unless you want to provide your own board_init_f, you should say Y.
39
Simon Goldschmidt25770152019-05-24 22:07:04 +020040config SPL_SIZE_LIMIT
Simon Glassb51882d2019-09-25 08:56:28 -060041 hex "Maximum size of SPL image"
Simon Goldschmidt25770152019-05-24 22:07:04 +020042 depends on SPL
Ovidiu Panait2dfdd0c2020-09-25 21:12:56 +030043 default 0x11000 if ARCH_MX6 && !MX6_OCRAM_256KB
44 default 0x31000 if ARCH_MX6 && MX6_OCRAM_256KB
45 default 0x0
Simon Goldschmidt25770152019-05-24 22:07:04 +020046 help
47 Specifies the maximum length of the U-Boot SPL image.
48 If this value is zero, it is ignored.
49
50config SPL_SIZE_LIMIT_SUBTRACT_GD
51 bool "SPL image size check: provide space for global data"
52 depends on SPL_SIZE_LIMIT > 0
53 help
54 If enabled, aligned size of global data is reserved in
55 SPL_SIZE_LIMIT check to ensure such an image does not overflow SRAM
56 if SPL_SIZE_LIMIT describes the size of SRAM available for SPL when
57 pre-reloc global data is put into this SRAM, too.
58
59config SPL_SIZE_LIMIT_SUBTRACT_MALLOC
60 bool "SPL image size check: provide space for malloc() pool before relocation"
61 depends on SPL_SIZE_LIMIT > 0
62 help
63 If enabled, SPL_SYS_MALLOC_F_LEN is reserved in SPL_SIZE_LIMIT check
64 to ensure such an image does not overflow SRAM if SPL_SIZE_LIMIT
65 describes the size of SRAM available for SPL when pre-reloc malloc
66 pool is put into this SRAM, too.
67
68config SPL_SIZE_LIMIT_PROVIDE_STACK
69 hex "SPL image size check: provide stack space before relocation"
70 depends on SPL_SIZE_LIMIT > 0
71 default 0
72 help
73 If set, this size is reserved in SPL_SIZE_LIMIT check to ensure such
74 an image does not overflow SRAM if SPL_SIZE_LIMIT describes the size
75 of SRAM available for SPL when the stack required before reolcation
76 uses this SRAM, too.
77
Simon Goldschmidtd8c03322019-07-16 22:30:36 +020078config SPL_SYS_STACK_F_CHECK_BYTE
79 hex
80 default 0xaa
81 help
82 Constant used to check the stack
83
84config SPL_SYS_REPORT_STACK_F_USAGE
85 depends on SPL_SIZE_LIMIT_PROVIDE_STACK != 0
86 bool "Check and report stack usage in SPL before relocation"
87 help
88 If this option is enabled, the initial SPL stack is filled with 0xaa
89 very early, up to the size configured with
90 SPL_SIZE_LIMIT_PROVIDE_STACK.
91 Later when SPL is done using this initial stack and switches to a
92 stack in DRAM, the actually used size of this initial stack is
93 reported by examining the memory and searching for the lowest
94 occurrence of non 0xaa bytes.
95 This default implementation works for stacks growing down only.
96
Simon Glass7d84fbb2021-07-05 16:32:57 -060097config SPL_SHOW_ERRORS
98 bool "Show more information when something goes wrong"
99 help
100 This enabled more verbose error messages and checking when something
101 goes wrong in SPL. For example, it shows the error code when U-Boot
102 cannot be located. This can help to diagnose the problem and figure
103 out a fix, particularly during development.
104
105 This adds a small amount to SPL code size, perhaps 100 bytes.
106
Simon Glass38c04d82022-02-08 11:49:48 -0700107config SPL_BINMAN_SYMBOLS
108 bool "Declare binman symbols in SPL"
109 depends on SPL_FRAMEWORK && BINMAN
110 default y
111 help
112 This enables use of symbols in SPL which refer to U-Boot, enabling SPL
113 to obtain the location of U-Boot simply by calling spl_get_image_pos()
114 and spl_get_image_size().
115
116 For this to work, you must have a U-Boot image in the binman image, so
117 binman can update SPL with the location of it.
118
Alison Wang5d168ad2019-12-04 06:21:55 +0000119menu "PowerPC and LayerScape SPL Boot options"
Tom Rinidb4080d2019-06-01 14:20:25 -0400120
121config SPL_NAND_BOOT
122 bool "Load SPL from NAND flash"
Alison Wang5d168ad2019-12-04 06:21:55 +0000123 depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK)
Tom Rinidb4080d2019-06-01 14:20:25 -0400124
125config SPL_MMC_BOOT
126 bool "Load SPL from SD Card / eMMC"
Alison Wang5d168ad2019-12-04 06:21:55 +0000127 depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK)
Tom Rinidb4080d2019-06-01 14:20:25 -0400128
129config SPL_SPI_BOOT
130 bool "Load SPL from SPI flash"
Alison Wang5d168ad2019-12-04 06:21:55 +0000131 depends on PPC && (SUPPORT_SPL && !SPL_FRAMEWORK)
Tom Rinidb4080d2019-06-01 14:20:25 -0400132
133config SPL_FSL_PBL
134 bool "Create SPL in Freescale PBI format"
Alison Wang5d168ad2019-12-04 06:21:55 +0000135 depends on (PPC || ARCH_LS1021A || ARCH_LS1043A || ARCH_LS1046A) && \
136 SUPPORT_SPL
Tom Rinidb4080d2019-06-01 14:20:25 -0400137 help
138 Create boot binary having SPL binary in PBI format concatenated with
139 u-boot binary.
140
141endmenu
142
Simon Glassb0edea32018-11-15 18:44:09 -0700143config HANDOFF
144 bool "Pass hand-off information from SPL to U-Boot proper"
Ovidiu Panait2a7c9ab2020-11-28 10:43:19 +0200145 depends on SPL && BLOBLIST
Simon Glassb0edea32018-11-15 18:44:09 -0700146 help
147 It is useful to be able to pass information from SPL to U-Boot
148 proper to preserve state that is known in SPL and is needed in U-Boot.
149 Enable this to locate the handoff information in U-Boot proper, early
150 in boot. It is available in gd->handoff. The state state is set up
151 in SPL (or TPL if that is being used).
152
Tom Rini226498b2017-05-22 19:21:57 +0000153if SPL
154
Simon Glassb0edea32018-11-15 18:44:09 -0700155config SPL_HANDOFF
156 bool "Pass hand-off information from SPL to U-Boot proper"
Simon Glassa7da3d92019-09-25 08:11:17 -0600157 depends on HANDOFF && SPL_BLOBLIST
Simon Glassb0edea32018-11-15 18:44:09 -0700158 default y
159 help
160 This option enables SPL to write handoff information. This can be
161 used to pass information like the size of SDRAM from SPL to U-Boot
162 proper. Also SPL can receive information from TPL in the same place
163 if that is enabled.
164
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +0200165config SPL_LDSCRIPT
166 string "Linker script for the SPL stage"
Tom Rinia356e7a2020-03-11 18:11:11 -0400167 default "arch/\$(ARCH)/cpu/u-boot-spl.lds"
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +0200168 help
169 The SPL stage will usually require a different linker-script
170 (as it runs from a different memory region) than the regular
171 U-Boot stage. Set this to the path of the linker-script to
172 be used for SPL.
173
Simon Goldschmidtf89d6132018-09-30 14:31:53 +0200174config SPL_TEXT_BASE
175 hex "SPL Text Base"
176 default ISW_ENTRY_ADDR if AM43XX || AM33XX || OMAP54XX || ARCH_KEYSTONE
Andre Przywara9340d8f2019-05-27 01:45:11 +0100177 default 0x10060 if MACH_SUN50I || MACH_SUN50I_H5 || MACH_SUN9I
Jernej Skrabec44726092021-01-11 21:11:34 +0100178 default 0x20060 if SUN50I_GEN_H6
Andre Przywara9340d8f2019-05-27 01:45:11 +0100179 default 0x00060 if ARCH_SUNXI
Michal Simek0413f9c2019-09-11 08:49:31 +0200180 default 0xfffc0000 if ARCH_ZYNQMP
Simon Goldschmidtf89d6132018-09-30 14:31:53 +0200181 default 0x0
182 help
183 The address in memory that SPL will be running from.
184
Ley Foon Tan0680f1b2017-05-03 17:13:32 +0800185config SPL_BOARD_INIT
Ley Foon Tan0680f1b2017-05-03 17:13:32 +0800186 bool "Call board-specific initialization in SPL"
187 help
188 If this option is enabled, U-Boot will call the function
189 spl_board_init() from board_init_r(). This function should be
190 provided by the board.
191
Simon Glass747093d2022-04-30 00:56:53 -0600192config VPL_BOARD_INIT
193 bool "Call board-specific initialization in VPL"
194 help
195 If this option is enabled, U-Boot will call the function
196 spl_board_init() from board_init_r(). This function should be
197 provided by the board.
198
Philipp Tomsich225d30b2017-06-22 23:38:36 +0200199config SPL_BOOTROM_SUPPORT
Michal Simekce869b52021-05-20 13:08:44 +0200200 bool "Support returning to the BOOTROM"
Philipp Tomsich225d30b2017-06-22 23:38:36 +0200201 help
202 Some platforms (e.g. the Rockchip RK3368) provide support in their
203 ROM for loading the next boot-stage after performing basic setup
204 from the SPL stage.
205
206 Enable this option, to return to the BOOTROM through the
207 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
208 boot device list, if not implemented for a given board)
209
Lukasz Majewskiafa96092018-05-02 16:10:50 +0200210config SPL_BOOTCOUNT_LIMIT
211 bool "Support bootcount in SPL"
Philippe Reynes4d145f22020-12-11 19:56:47 +0100212 depends on SPL_ENV_SUPPORT && !TPL_BOOTCOUNT_LIMIT
Lukasz Majewskiafa96092018-05-02 16:10:50 +0200213 help
214 On some boards, which use 'falcon' mode, it is necessary to check
215 and increment the number of boot attempts. Such boards do not
216 use proper U-Boot for normal boot flow and hence needs those
217 adjustments to be done in the SPL.
218
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600219config SPL_RAW_IMAGE_SUPPORT
220 bool "Support SPL loading and booting of RAW images"
Simon Glassf7560372021-08-08 12:20:17 -0600221 default n if (ARCH_MX6 && (SPL_MMC || SPL_SATA))
Andrew F. Davisae9b57b2017-02-16 11:18:40 -0600222 default y if !TI_SECURE_DEVICE
Andrew F. Davis24eb39b2017-02-16 11:18:38 -0600223 help
224 SPL will support loading and booting a RAW image when this option
225 is y. If this is not set, SPL will move on to other available
226 boot media to find a suitable image.
227
Andrew F. Davis722a6b12017-02-16 11:18:39 -0600228config SPL_LEGACY_IMAGE_SUPPORT
229 bool "Support SPL loading and booting of Legacy images"
Tom Rini11bd2fa2019-05-23 07:14:08 -0400230 default y if !TI_SECURE_DEVICE && !SPL_LOAD_FIT
Andrew F. Davis722a6b12017-02-16 11:18:39 -0600231 help
232 SPL will support loading and booting Legacy images when this option
233 is y. If this is not set, SPL will move on to other available
234 boot media to find a suitable image.
235
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100236config SPL_LEGACY_IMAGE_CRC_CHECK
237 bool "Check CRC of Legacy images"
238 depends on SPL_LEGACY_IMAGE_SUPPORT
Simon Glass1e52db62021-07-14 17:05:32 -0500239 select SPL_CRC32
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100240 help
241 Enable this to check the CRC of Legacy images. While this increases
242 reliability, it affects both code size and boot duration.
243 If disabled, Legacy images are booted if the image magic and size
244 are correct, without further integrity checks.
245
Simon Glassc2ae7d82016-09-12 23:18:22 -0600246config SPL_SYS_MALLOC_SIMPLE
247 bool
Simon Glassc2ae7d82016-09-12 23:18:22 -0600248 prompt "Only use malloc_simple functions in the SPL"
249 help
250 Say Y here to only use the *_simple malloc functions from
251 malloc_simple.c, rather then using the versions from dlmalloc.c;
252 this will make the SPL binary smaller at the cost of more heap
253 usage as the *_simple malloc functions do not re-use free-ed mem.
254
Philipp Tomsichd60b5f72017-06-30 18:57:25 +0200255config TPL_SYS_MALLOC_SIMPLE
256 bool
257 prompt "Only use malloc_simple functions in the TPL"
Adam Ford05705562019-08-13 14:32:30 -0500258 depends on TPL
Philipp Tomsichd60b5f72017-06-30 18:57:25 +0200259 help
260 Say Y here to only use the *_simple malloc functions from
261 malloc_simple.c, rather then using the versions from dlmalloc.c;
262 this will make the TPL binary smaller at the cost of more heap
263 usage as the *_simple malloc functions do not re-use free-ed mem.
264
Simon Glassc2ae7d82016-09-12 23:18:22 -0600265config SPL_STACK_R
Simon Glassc2ae7d82016-09-12 23:18:22 -0600266 bool "Enable SDRAM location for SPL stack"
267 help
268 SPL starts off execution in SRAM and thus typically has only a small
269 stack available. Since SPL sets up DRAM while in its board_init_f()
270 function, it is possible for the stack to move there before
271 board_init_r() is reached. This option enables a special SDRAM
272 location for the SPL stack. U-Boot SPL switches to this after
273 board_init_f() completes, and before board_init_r() starts.
274
275config SPL_STACK_R_ADDR
276 depends on SPL_STACK_R
277 hex "SDRAM location for SPL stack"
Tom Riniff6c3122017-09-17 11:44:49 -0400278 default 0x82000000 if ARCH_OMAP2PLUS
Simon Glassc2ae7d82016-09-12 23:18:22 -0600279 help
280 Specify the address in SDRAM for the SPL stack. This will be set up
281 before board_init_r() is called.
282
283config SPL_STACK_R_MALLOC_SIMPLE_LEN
284 depends on SPL_STACK_R && SPL_SYS_MALLOC_SIMPLE
285 hex "Size of malloc_simple heap after switching to DRAM SPL stack"
286 default 0x100000
287 help
288 Specify the amount of the stack to use as memory pool for
289 malloc_simple after switching the stack to DRAM. This may be set
290 to give board_init_r() a larger heap then the initial heap in
291 SRAM which is limited to SYS_MALLOC_F_LEN bytes.
292
293config SPL_SEPARATE_BSS
Simon Glassc2ae7d82016-09-12 23:18:22 -0600294 bool "BSS section is in a different memory region from text"
295 help
296 Some platforms need a large BSS region in SPL and can provide this
297 because RAM is already set up. In this case BSS can be moved to RAM.
298 This option should then be enabled so that the correct device tree
299 location is used. Normally we put the device tree at the end of BSS
300 but with this option enabled, it goes at _image_binary_end.
301
Simon Glass95a58252021-03-15 17:25:35 +1300302config SPL_READ_ONLY
303 bool
304 depends on SPL_OF_PLATDATA
305 # Bind cannot be supported because the udevice structs are in read-only
306 # memory so we cannot update the linked lists.
307 select SPL_OF_PLATDATA_NO_BIND
308 select SPL_OF_PLATDATA_RT
309 help
310 Some platforms (e.g. x86 Apollo Lake) load SPL into a read-only
311 section of memory. This means that of-platdata must make a copy (in
312 writeable memory) of anything it wants to modify, such as
313 device-private data.
314
Simon Glassf86ca5a2022-04-30 00:56:52 -0600315config TPL_SEPARATE_BSS
316 bool "BSS section is in a different memory region from text"
317 default y if SPL_SEPARATE_BSS
318 help
319 Some platforms need a large BSS region in TPL and can provide this
320 because RAM is already set up. In this case BSS can be moved to RAM.
321 This option should then be enabled so that the correct device tree
322 location is used. Normally we put the device tree at the end of BSS
323 but with this option enabled, it goes at _image_binary_end.
324
Simon Glassaedc08b2018-11-15 18:43:57 -0700325config SPL_BANNER_PRINT
326 bool "Enable output of the SPL banner 'U-Boot SPL ...'"
327 default y
328 help
329 If this option is enabled, SPL will print the banner with version
Thomas Hebb32f2ca22019-11-13 18:18:03 -0800330 info. Disabling this option could be useful to reduce SPL boot time
Simon Glassaedc08b2018-11-15 18:43:57 -0700331 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
332
333config TPL_BANNER_PRINT
334 bool "Enable output of the TPL banner 'U-Boot TPL ...'"
Adam Ford05705562019-08-13 14:32:30 -0500335 depends on TPL
Simon Glassaedc08b2018-11-15 18:43:57 -0700336 default y
Anatolij Gustschin0292bc02018-01-25 18:45:22 +0100337 help
Thomas Hebb32f2ca22019-11-13 18:18:03 -0800338 If this option is enabled, TPL will print the banner with version
339 info. Disabling this option could be useful to reduce TPL boot time
Simon Glassaedc08b2018-11-15 18:43:57 -0700340 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
Anatolij Gustschin0292bc02018-01-25 18:45:22 +0100341
Andreas Dannenberga5a5d992019-06-04 17:55:45 -0500342config SPL_EARLY_BSS
343 depends on ARM && !ARM64
344 bool "Allows initializing BSS early before entering board_init_f"
345 help
346 On some platform we have sufficient memory available early on to
347 allow setting up and using a basic BSS prior to entering
348 board_init_f. Activating this option will also de-activate the
349 clearing of BSS during the SPL relocation process, thus allowing
350 to carry state from board_init_f to board_init_r by way of BSS.
351
Simon Glassa807ab32016-09-24 18:19:56 -0600352config SPL_DISPLAY_PRINT
Simon Glassa807ab32016-09-24 18:19:56 -0600353 bool "Display a board-specific message in SPL"
354 help
355 If this option is enabled, U-Boot will call the function
356 spl_display_print() immediately after displaying the SPL console
357 banner ("U-Boot SPL ..."). This function should be provided by
358 the board.
359
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200360config SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
361 bool "MMC raw mode: by sector"
Fabio Estevam1da19382018-06-11 15:08:05 -0300362 default y if ARCH_SUNXI || ARCH_DAVINCI || ARCH_UNIPHIER || \
363 ARCH_MX6 || ARCH_MX7 || \
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200364 ARCH_ROCKCHIP || ARCH_MVEBU || ARCH_SOCFPGA || \
365 ARCH_AT91 || ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || \
Bin Mengae2d9502021-03-17 11:10:58 +0800366 OMAP44XX || OMAP54XX || AM33XX || AM43XX || \
Green Wan70415e12021-05-27 06:52:13 -0700367 TARGET_SIFIVE_UNLEASHED || TARGET_SIFIVE_UNMATCHED
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200368 help
369 Use sector number for specifying U-Boot location on MMC/SD in
370 raw mode.
371
372config SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR
373 hex "Address on the MMC to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000374 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
Andre Przywarac0b417b2021-01-11 21:11:39 +0100375 default 0x40 if ARCH_SUNXI
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200376 default 0x75 if ARCH_DAVINCI
Fabio Estevam1da19382018-06-11 15:08:05 -0300377 default 0x8a if ARCH_MX6 || ARCH_MX7
Kever Yang8f4d62b2017-11-02 15:16:34 +0800378 default 0x100 if ARCH_UNIPHIER
Pali Rohár2226ca12021-07-23 11:14:29 +0200379 default 0x0 if ARCH_MVEBU
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200380 default 0x200 if ARCH_SOCFPGA || ARCH_AT91
381 default 0x300 if ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || OMAP44XX || \
Lokesh Vutla586bde92018-08-27 15:57:08 +0530382 OMAP54XX || AM33XX || AM43XX || ARCH_K3
Kever Yang8f4d62b2017-11-02 15:16:34 +0800383 default 0x4000 if ARCH_ROCKCHIP
Green Wan70415e12021-05-27 06:52:13 -0700384 default 0x822 if TARGET_SIFIVE_UNLEASHED || TARGET_SIFIVE_UNMATCHED
Semen Protsenko38fed8a2016-11-16 19:19:05 +0200385 help
386 Address on the MMC to load U-Boot from, when the MMC is being used
387 in raw mode. Units: MMC sectors (1 sector = 512 bytes).
388
Baruch Siache42afd82020-01-15 09:08:08 +0200389config SYS_MMCSD_RAW_MODE_U_BOOT_DATA_PART_OFFSET
390 hex "U-Boot main hardware partition image offset"
391 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
Andre Przywarac0b417b2021-01-11 21:11:39 +0100392 default 0x10 if ARCH_SUNXI
Baruch Siache42afd82020-01-15 09:08:08 +0200393 default 0x0
394 help
395 On some platforms SPL location depends on hardware partition. The ROM
396 code skips the MBR sector when loading SPL from main hardware data
397 partition. This adds offset to the main U-Boot image. Set this symbol
398 to the number of skipped sectors.
399
400 If unsure, leave the default.
401
Dalon Westergreen949123e2017-02-10 17:15:35 -0800402config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
403 bool "MMC Raw mode: by partition"
Dalon Westergreen949123e2017-02-10 17:15:35 -0800404 help
405 Use a partition for loading U-Boot when using MMC/SD in raw mode.
406
407config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION
408 hex "Partition to use to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000409 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreen949123e2017-02-10 17:15:35 -0800410 default 1
411 help
412 Partition on the MMC to load U-Boot from when the MMC is being
413 used in raw mode
414
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800415config SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
416 bool "MMC raw mode: by partition type"
Tom Rini226498b2017-05-22 19:21:57 +0000417 depends on DOS_PARTITION && SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800418 help
419 Use partition type for specifying U-Boot partition on MMC/SD in
420 raw mode. U-Boot will be loaded from the first partition of this
421 type to be found.
422
423config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_TYPE
424 hex "Partition Type on the MMC to load U-Boot from"
Tom Rini226498b2017-05-22 19:21:57 +0000425 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800426 help
427 Partition Type on the MMC to load U-Boot from, when the MMC is being
428 used in raw mode.
429
Anatolij Gustschin32ded502019-10-18 21:38:33 +0200430config SUPPORT_EMMC_BOOT_OVERRIDE_PART_CONFIG
431 bool "Override eMMC EXT_CSC_PART_CONFIG by user defined partition"
432 depends on SUPPORT_EMMC_BOOT
433 help
434 eMMC boot partition is normally configured by the bits of the EXT_CSD
435 register (EXT_CSC_PART_CONFIG), BOOT_PARTITION_ENABLE field. In some
436 cases it might be required in SPL to load the image from different
437 partition than the partition selected by EXT_CSC_PART_CONFIG register.
438 Enable this option if you intend to use an eMMC boot partition other
439 then selected via EXT_CSC_PART_CONFIG register and specify the custom
440 partition number by the CONFIG_SYS_MMCSD_RAW_MODE_EMMC_BOOT_PARTITION
441 option.
442
443config SYS_MMCSD_RAW_MODE_EMMC_BOOT_PARTITION
444 int "Number of the eMMC boot partition to use"
445 depends on SUPPORT_EMMC_BOOT_OVERRIDE_PART_CONFIG
446 default 1
447 help
448 eMMC boot partition number to use when the eMMC in raw mode and
449 the eMMC EXT_CSC_PART_CONFIG selection should be overridden in SPL
450 by user defined partition number.
451
Simon Glass1e52db62021-07-14 17:05:32 -0500452config SPL_CRC32
Simon Glass11bde1c2016-09-13 07:05:23 -0600453 bool "Support CRC32"
Simon Glasse7d285b2021-09-25 19:43:24 -0600454 default y if SPL_LEGACY_IMAGE_SUPPORT || SPL_EFI_PARTITION
455 default y if SPL_ENV_SUPPORT || TPL_BLOBLIST
Simon Glass11bde1c2016-09-13 07:05:23 -0600456 help
Simon Goldschmidtdae5c2d2019-02-10 21:34:37 +0100457 Enable this to support CRC32 in uImages or FIT images within SPL.
458 This is a 32-bit checksum value that can be used to verify images.
459 For FIT images, this is the least secure type of checksum, suitable
460 for detected accidental image corruption. For secure applications you
461 should consider SHA1 or SHA256.
Simon Glass11bde1c2016-09-13 07:05:23 -0600462
Simon Glass4b00fd12021-07-14 17:05:33 -0500463config SPL_MD5
Simon Glass11bde1c2016-09-13 07:05:23 -0600464 bool "Support MD5"
465 depends on SPL_FIT
466 help
467 Enable this to support MD5 in FIT images within SPL. An MD5
468 checksum is a 128-bit hash value used to check that the image
469 contents have not been corrupted. Note that MD5 is not considered
470 secure as it is possible (with a brute-force attack) to adjust the
471 image while still retaining the same MD5 hash value. For secure
472 applications where images may be changed maliciously, you should
Reuben Dowled16b38f2020-04-16 17:36:52 +1200473 consider SHA256 or SHA384.
Simon Glass11bde1c2016-09-13 07:05:23 -0600474
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100475config SPL_FIT_IMAGE_TINY
476 bool "Remove functionality from SPL FIT loading to reduce size"
477 depends on SPL_FIT
Jernej Skrabec44726092021-01-11 21:11:34 +0100478 default y if MACH_SUN50I || MACH_SUN50I_H5 || SUN50I_GEN_H6
Ye Lif6282cd2018-11-20 10:19:15 +0000479 default y if ARCH_IMX8M
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100480 help
481 Enable this to reduce the size of the FIT image loading code
482 in SPL, if space for the SPL binary is very tight.
483
Samuel Hollandcf705532020-10-21 21:12:13 -0500484 This skips the recording of each loaded payload
Philipp Tomsich337bbb62017-11-24 13:26:03 +0100485 (i.e. loadable) into the FDT (modifying the loaded FDT to
486 ensure this information is available to the next image
487 invoked).
488
Simon Glassde213c72021-08-08 12:20:15 -0600489config SPL_CACHE
Rick Chen31dae222019-11-14 13:52:26 +0800490 bool "Support CACHE drivers"
491 help
492 Enable CACHE drivers in SPL. These drivers can keep data so that
493 future requests for that data can be served faster. Enable this option
494 to build the drivers in drivers/cache as part of an SPL build.
495
Simon Glass529d5f92021-03-15 18:11:18 +1300496config SPL_CPU
Simon Glass5e148df2017-01-16 07:03:29 -0700497 bool "Support CPU drivers"
Simon Glass5e148df2017-01-16 07:03:29 -0700498 help
499 Enable this to support CPU drivers in SPL. These drivers can set
500 up CPUs and provide information about them such as the model and
501 name. This can be useful in SPL since setting up the CPUs earlier
502 may improve boot performance. Enable this option to build the
503 drivers in drivers/cpu as part of an SPL build.
504
Simon Glass0c6bdbb2021-07-10 21:14:25 -0600505config SPL_CRYPTO
Simon Glass11bde1c2016-09-13 07:05:23 -0600506 bool "Support crypto drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600507 help
508 Enable crypto drivers in SPL. These drivers can be used to
509 accelerate secure boot processing in secure applications. Enable
510 this option to build the drivers in drivers/crypto as part of an
511 SPL build.
512
Vignesh Raghavendra74326a32019-11-15 17:00:41 +0530513config SPL_DMA
Simon Glass11bde1c2016-09-13 07:05:23 -0600514 bool "Support DMA drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600515 help
516 Enable DMA (direct-memory-access) drivers in SPL. These drivers
517 can be used to handle memory-to-peripheral data transfer without
518 the CPU moving the data. Enable this option to build the drivers
519 in drivers/dma as part of an SPL build.
520
Simon Glass9ca00682021-07-10 21:14:31 -0600521config SPL_DRIVERS_MISC
Simon Glass11bde1c2016-09-13 07:05:23 -0600522 bool "Support misc drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600523 help
524 Enable miscellaneous drivers in SPL. These drivers perform various
525 tasks that don't fall nicely into other categories, Enable this
526 option to build the drivers in drivers/misc as part of an SPL
527 build, for those that support building in SPL (not all drivers do).
528
529config SPL_ENV_SUPPORT
530 bool "Support an environment"
Simon Glass11bde1c2016-09-13 07:05:23 -0600531 help
532 Enable environment support in SPL. The U-Boot environment provides
533 a number of settings (essentially name/value pairs) which can
534 control many aspects of U-Boot's operation. Normally this is not
535 needed in SPL as it has a much simpler task with less
536 configuration. But some boards use this to support 'Falcon' boot
537 on EXT2 and FAT, where SPL boots directly into Linux without
Simon Glass00caae62017-08-03 12:22:12 -0600538 starting U-Boot first. Enabling this option will make env_get()
Simon Glass382bee52017-08-03 12:22:09 -0600539 and env_set() available in SPL.
Simon Glass11bde1c2016-09-13 07:05:23 -0600540
B, Ravid2d9bdf2016-09-28 14:46:18 +0530541config SPL_SAVEENV
542 bool "Support save environment"
Tom Rini226498b2017-05-22 19:21:57 +0000543 depends on SPL_ENV_SUPPORT
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100544 select SPL_MMC_WRITE if ENV_IS_IN_MMC
B, Ravid2d9bdf2016-09-28 14:46:18 +0530545 help
546 Enable save environment support in SPL after setenv. By default
547 the saveenv option is not provided in SPL, but some boards need
548 this support in 'Falcon' boot, where SPL need to boot from
549 different images based on environment variable set by OS. For
550 example OS may set "reboot_image" environment variable to
551 "recovery" inorder to boot recovery image by SPL. The SPL read
552 "reboot_image" and act accordingly and change the reboot_image
Shyam Saini919d25c2018-06-07 19:47:19 +0530553 to default mode using setenv and save the environment.
B, Ravid2d9bdf2016-09-28 14:46:18 +0530554
Simon Glassf2d7a362021-07-10 21:14:26 -0600555config SPL_ETH
Simon Glass11bde1c2016-09-13 07:05:23 -0600556 bool "Support Ethernet"
557 depends on SPL_ENV_SUPPORT
Simon Glass9f664922021-08-08 12:20:31 -0600558 depends on SPL_NET
Simon Glass11bde1c2016-09-13 07:05:23 -0600559 help
560 Enable access to the network subsystem and associated Ethernet
561 drivers in SPL. This permits SPL to load U-Boot over an Ethernet
562 link rather than from an on-board peripheral. Environment support
563 is required since the network stack uses a number of environment
Simon Glass5ed16a92021-08-08 12:20:30 -0600564 variables. See also SPL_NET.
Simon Glass11bde1c2016-09-13 07:05:23 -0600565
Tien Fong Cheef4b40922019-01-23 14:20:05 +0800566config SPL_FS_EXT4
Simon Glass11bde1c2016-09-13 07:05:23 -0600567 bool "Support EXT filesystems"
Simon Glass11bde1c2016-09-13 07:05:23 -0600568 help
569 Enable support for EXT2/3/4 filesystems with SPL. This permits
570 U-Boot (or Linux in Falcon mode) to be loaded from an EXT
571 filesystem from within SPL. Support for the underlying block
572 device (e.g. MMC or USB) must be enabled separately.
573
Joao Marcos Costac5100612020-07-30 15:33:47 +0200574config SPL_FS_SQUASHFS
575 bool "Support SquashFS filesystems"
576 select FS_SQUASHFS
577 help
578 Enable support for SquashFS filesystems with SPL. This permits
579 U-Boot (or Linux in Falcon mode) to be loaded from a SquashFS
580 filesystem from within SPL. Support for the underlying block
581 device (e.g. MMC or USB) must be enabled separately.
582
Tien Fong Chee0c3a9ed2019-01-23 14:20:03 +0800583config SPL_FS_FAT
Simon Glass11bde1c2016-09-13 07:05:23 -0600584 bool "Support FAT filesystems"
Sekhar Norieedfb892017-06-02 17:53:59 +0530585 select FS_FAT
Simon Glass11bde1c2016-09-13 07:05:23 -0600586 help
587 Enable support for FAT and VFAT filesystems with SPL. This
588 permits U-Boot (or Linux in Falcon mode) to be loaded from a FAT
589 filesystem from within SPL. Support for the underlying block
590 device (e.g. MMC or USB) must be enabled separately.
591
Tien Fong Cheed8c3ea92019-01-23 14:20:04 +0800592config SPL_FAT_WRITE
593 bool "Support write for FAT filesystems"
594 help
595 Enable write support for FAT and VFAT filesystems with SPL.
596 Support for the underlying block device (e.g. MMC or USB) must be
597 enabled separately.
598
Michal Simek29bd8ad2020-09-09 14:41:56 +0200599config SPL_FPGA
Simon Glass11bde1c2016-09-13 07:05:23 -0600600 bool "Support FPGAs"
Simon Glass11bde1c2016-09-13 07:05:23 -0600601 help
602 Enable support for FPGAs in SPL. Field-programmable Gate Arrays
603 provide software-configurable hardware which is typically used to
604 implement peripherals (such as UARTs, LCD displays, MMC) or
605 accelerate custom processing functions, such as image processing
606 or machine learning. Sometimes it is useful to program the FPGA
607 as early as possible during boot, and this option can enable that
608 within SPL.
609
Simon Glass83061db2021-07-10 21:14:30 -0600610config SPL_GPIO
Simon Glass2d424eb2018-11-15 18:43:55 -0700611 bool "Support GPIO in SPL"
Simon Glass11bde1c2016-09-13 07:05:23 -0600612 help
613 Enable support for GPIOs (General-purpose Input/Output) in SPL.
614 GPIOs allow U-Boot to read the state of an input line (high or
615 low) and set the state of an output line. This can be used to
616 drive LEDs, control power to various system parts and read user
617 input. GPIOs can be useful in SPL to enable a 'sign-of-life' LED,
618 for example. Enable this option to build the drivers in
619 drivers/gpio as part of an SPL build.
620
Simon Glass975e7cf2021-07-10 21:14:36 -0600621config SPL_I2C
Simon Glass11bde1c2016-09-13 07:05:23 -0600622 bool "Support I2C"
Simon Glass11bde1c2016-09-13 07:05:23 -0600623 help
624 Enable support for the I2C (Inter-Integrated Circuit) bus in SPL.
625 I2C works with a clock and data line which can be driven by a
626 one or more masters or slaves. It is a fairly complex bus but is
627 widely used as it only needs two lines for communication. Speeds of
628 400kbps are typical but up to 3.4Mbps is supported by some
629 hardware. I2C can be useful in SPL to configure power management
630 ICs (PMICs) before raising the CPU clock speed, for example.
631 Enable this option to build the drivers in drivers/i2c as part of
632 an SPL build.
633
634config SPL_LIBCOMMON_SUPPORT
635 bool "Support common libraries"
Simon Glass11bde1c2016-09-13 07:05:23 -0600636 help
637 Enable support for common U-Boot libraries within SPL. These
638 libraries include common code to deal with U-Boot images,
639 environment and USB, for example. This option is enabled on many
640 boards. Enable this option to build the code in common/ as part of
641 an SPL build.
642
643config SPL_LIBDISK_SUPPORT
Simon Goldschmidt00416702018-08-16 09:44:55 +0200644 bool "Support disk partitions"
Tom Rini91ff6862018-12-05 08:23:38 -0500645 select PARTITIONS
Simon Glass11bde1c2016-09-13 07:05:23 -0600646 help
647 Enable support for disk partitions within SPL. 'Disk' is something
648 of a misnomer as it includes non-spinning media such as flash (as
649 used in MMC and USB sticks). Partitions provide a way for a disk
650 to be split up into separate regions, with a partition table placed
651 at the start or end which describes the location and size of each
652 'partition'. These partitions are typically uses as individual block
653 devices, typically with an EXT2 or FAT filesystem in each. This
654 option enables whatever partition support has been enabled in
655 U-Boot to also be used in SPL. It brings in the code in disk/.
656
657config SPL_LIBGENERIC_SUPPORT
658 bool "Support generic libraries"
Simon Glass11bde1c2016-09-13 07:05:23 -0600659 help
660 Enable support for generic U-Boot libraries within SPL. These
661 libraries include generic code to deal with device tree, hashing,
662 printf(), compression and the like. This option is enabled on many
663 boards. Enable this option to build the code in lib/ as part of an
664 SPL build.
665
Lokesh Vutla88027412018-08-27 15:57:49 +0530666config SPL_DM_MAILBOX
667 bool "Support Mailbox"
668 help
669 Enable support for Mailbox within SPL. This enable the inter
670 processor communication protocols tobe used within SPL. Enable
671 this option to build the drivers in drivers/mailbox as part of
672 SPL build.
673
Simon Glass103c5f12021-08-08 12:20:09 -0600674config SPL_MMC
Simon Glass11bde1c2016-09-13 07:05:23 -0600675 bool "Support MMC"
Tom Rini226498b2017-05-22 19:21:57 +0000676 depends on MMC
Tom Rini91ff6862018-12-05 08:23:38 -0500677 select HAVE_BLOCK_DEVICE
Simon Glass11bde1c2016-09-13 07:05:23 -0600678 help
679 Enable support for MMC (Multimedia Card) within SPL. This enables
680 the MMC protocol implementation and allows any enabled drivers to
681 be used within SPL. MMC can be used with or without disk partition
682 support depending on the application (SPL_LIBDISK_SUPPORT). Enable
683 this option to build the drivers in drivers/mmc as part of an SPL
684 build.
685
Adam Fordacc415a2020-07-03 10:17:30 -0500686config SYS_MMCSD_FS_BOOT_PARTITION
687 int "MMC Boot Partition"
688 default 1
689 help
690 Partition on the MMC to load U-Boot from when the MMC is being
Jérôme Carretero5fa973e2022-03-15 16:34:51 -0400691 used in fs mode.
692 Use -1 as a special value to use the first bootable partition.
Adam Fordacc415a2020-07-03 10:17:30 -0500693
Ezequiel Garciabf7c01d2019-05-25 19:25:21 -0300694config SPL_MMC_TINY
695 bool "Tiny MMC framework in SPL"
Simon Glass103c5f12021-08-08 12:20:09 -0600696 depends on SPL_MMC
Ezequiel Garciabf7c01d2019-05-25 19:25:21 -0300697 help
698 Enable MMC framework tinification support. This option is useful if
699 if your SPL is extremely size constrained. Heed the warning, enable
700 this option if and only if you know exactly what you are doing, if
701 you are reading this help text, you most likely have no idea :-)
702
703 The MMC framework is reduced to bare minimum to be useful. No malloc
704 support is needed for the MMC framework operation with this option
705 enabled. The framework supports exactly one MMC device and exactly
706 one MMC driver. The MMC driver can be adjusted to avoid any malloc
707 operations too, which can remove the need for malloc support in SPL
708 and thus further reduce footprint.
709
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100710config SPL_MMC_WRITE
711 bool "MMC/SD/SDIO card support for write operations in SPL"
Simon Glass103c5f12021-08-08 12:20:09 -0600712 depends on SPL_MMC
Jean-Jacques Hiblotd6400c32018-01-04 15:23:32 +0100713 help
714 Enable write access to MMC and SD Cards in SPL
715
716
Simon Glass6f004ad2021-08-08 12:20:16 -0600717config SPL_MPC8XXX_INIT_DDR
Simon Glass11bde1c2016-09-13 07:05:23 -0600718 bool "Support MPC8XXX DDR init"
Simon Glass11bde1c2016-09-13 07:05:23 -0600719 help
720 Enable support for DDR-SDRAM (double-data-rate synchronous dynamic
721 random-access memory) on the MPC8XXX family within SPL. This
722 allows DRAM to be set up before loading U-Boot into that DRAM,
723 where it can run.
724
725config SPL_MTD_SUPPORT
726 bool "Support MTD drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600727 help
728 Enable support for MTD (Memory Technology Device) within SPL. MTD
729 provides a block interface over raw NAND and can also be used with
730 SPI flash. This allows SPL to load U-Boot from supported MTD
731 devices. See SPL_NAND_SUPPORT and SPL_ONENAND_SUPPORT for how
732 to enable specific MTD drivers.
733
Simon Glass89ddb0b2021-07-10 21:14:27 -0600734config SPL_MUSB_NEW
Simon Glass11bde1c2016-09-13 07:05:23 -0600735 bool "Support new Mentor Graphics USB"
Simon Glass11bde1c2016-09-13 07:05:23 -0600736 help
737 Enable support for Mentor Graphics USB in SPL. This is a new
738 driver used by some boards. Enable this option to build
739 the drivers in drivers/usb/musb-new as part of an SPL build. The
740 old drivers are in drivers/usb/musb.
741
742config SPL_NAND_SUPPORT
743 bool "Support NAND flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600744 help
745 Enable support for NAND (Negative AND) flash in SPL. NAND flash
746 can be used to allow SPL to load U-Boot from supported devices.
Miquel Raynala430fa02018-08-16 17:30:07 +0200747 This enables the drivers in drivers/mtd/nand/raw as part of an SPL
Simon Glass11bde1c2016-09-13 07:05:23 -0600748 build.
749
Adam Ford0c4a6342020-07-03 08:09:44 -0500750config SPL_NAND_DRIVERS
751 bool "Use standard NAND driver"
752 help
753 SPL uses normal NAND drivers, not minimal drivers.
754
755config SPL_NAND_ECC
756 bool "Include standard software ECC in the SPL"
757
758config SPL_NAND_SIMPLE
759 bool "Support simple NAND drivers in SPL"
760 help
761 Support for NAND boot using simple NAND drivers that
762 expose the cmd_ctrl() interface.
763
Adam Ford38791062020-07-03 08:09:45 -0500764config SPL_NAND_BASE
765 depends on SPL_NAND_DRIVERS
766 bool "Use Base NAND Driver"
Michal Simekce869b52021-05-20 13:08:44 +0200767 help
768 Include nand_base.c in the SPL.
Adam Ford38791062020-07-03 08:09:45 -0500769
770config SPL_NAND_IDENT
771 depends on SPL_NAND_BASE
772 bool "Use chip ID to identify NAND flash"
773 help
774 SPL uses the chip ID list to identify the NAND flash.
775
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200776config SPL_UBI
777 bool "Support UBI"
778 help
779 Enable support for loading payloads from UBI. See
780 README.ubispl for more info.
781
Lukasz Majewskif18845c2019-09-09 12:06:46 +0200782if SPL_DM
783config SPL_DM_SPI
784 bool "Support SPI DM drivers in SPL"
785 help
786 Enable support for SPI DM drivers in SPL.
787
Lukasz Majewski56c40462020-06-04 23:11:53 +0800788config SPL_DM_SPI_FLASH
789 bool "Support SPI DM FLASH drivers in SPL"
790 help
791 Enable support for SPI DM flash drivers in SPL.
792
Lukasz Majewskif18845c2019-09-09 12:06:46 +0200793endif
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200794if SPL_UBI
Hamish Guthrie6ea31cc2019-05-15 15:15:59 +0200795config SPL_UBI_LOAD_BY_VOLNAME
796 bool "Support loading volumes by name"
797 help
798 This enables support for loading UBI volumes by name. When this
799 is set, CONFIG_SPL_UBI_LOAD_MONITOR_VOLNAME can be used to
800 configure the volume name from which to load U-Boot.
801
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200802config SPL_UBI_MAX_VOL_LEBS
803 int "Maximum number of LEBs per volume"
804 depends on SPL_UBI
805 help
806 The maximum number of logical eraseblocks which a static volume
807 to load can contain. Used for sizing the scan data structure.
808
809config SPL_UBI_MAX_PEB_SIZE
810 int "Maximum PEB size"
811 depends on SPL_UBI
812 help
813 The maximum physical erase block size.
814
815config SPL_UBI_MAX_PEBS
816 int "Maximum number of PEBs"
817 depends on SPL_UBI
818 help
819 The maximum physical erase block size. If not overridden by
820 board code, this value will be used as the actual number of PEBs.
821
822config SPL_UBI_PEB_OFFSET
823 int "Offset to first UBI PEB"
824 depends on SPL_UBI
825 help
826 The offset in number of PEBs from the start of flash to the first
827 PEB part of the UBI image.
828
829config SPL_UBI_VID_OFFSET
830 int "Offset to VID header"
831 depends on SPL_UBI
832
833config SPL_UBI_LEB_START
834 int "Offset to LEB in PEB"
835 depends on SPL_UBI
836 help
837 The offset in bytes to the LEB within a PEB.
838
839config SPL_UBI_INFO_ADDR
840 hex "Address to place UBI scan info"
841 depends on SPL_UBI
842 help
843 Address for ubispl to place the scan info. Read README.ubispl to
844 determine the required size
845
846config SPL_UBI_VOL_IDS
847 int "Maximum volume id"
848 depends on SPL_UBI
849 help
850 The maximum volume id which can be loaded. Used for sizing the
851 scan data structure.
852
853config SPL_UBI_LOAD_MONITOR_ID
854 int "id of U-Boot volume"
855 depends on SPL_UBI
856 help
857 The UBI volume id from which to load U-Boot
858
Hamish Guthrie6ea31cc2019-05-15 15:15:59 +0200859config SPL_UBI_LOAD_MONITOR_VOLNAME
860 string "volume name of U-Boot volume"
861 depends on SPL_UBI_LOAD_BY_VOLNAME
862 help
863 The UBI volume name from which to load U-Boot
864
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200865config SPL_UBI_LOAD_KERNEL_ID
866 int "id of kernel volume"
867 depends on SPL_OS_BOOT && SPL_UBI
868 help
869 The UBI volume id from which to load the kernel
870
871config SPL_UBI_LOAD_ARGS_ID
872 int "id of kernel args volume"
873 depends on SPL_OS_BOOT && SPL_UBI
874 help
875 The UBI volume id from which to load the device tree
876
Markus Klotzbuechera2257d32019-05-15 15:16:00 +0200877config UBI_SPL_SILENCE_MSG
878 bool "silence UBI SPL messages"
Markus Klotzbuechera2257d32019-05-15 15:16:00 +0200879 help
880 Disable messages from UBI SPL. This leaves warnings
881 and errors enabled.
Markus Klotzbuecherc67c3492019-05-15 15:15:57 +0200882
883endif # if SPL_UBI
884
Simon Glass5ed16a92021-08-08 12:20:30 -0600885config SPL_NET
Simon Glass11bde1c2016-09-13 07:05:23 -0600886 bool "Support networking"
Simon Glass11bde1c2016-09-13 07:05:23 -0600887 help
888 Enable support for network devices (such as Ethernet) in SPL.
889 This permits SPL to load U-Boot over a network link rather than
890 from an on-board peripheral. Environment support is required since
891 the network stack uses a number of environment variables. See also
Simon Glassf2d7a362021-07-10 21:14:26 -0600892 SPL_ETH.
Simon Glass11bde1c2016-09-13 07:05:23 -0600893
Simon Glass5ed16a92021-08-08 12:20:30 -0600894if SPL_NET
Simon Glass11bde1c2016-09-13 07:05:23 -0600895config SPL_NET_VCI_STRING
896 string "BOOTP Vendor Class Identifier string sent by SPL"
897 help
898 As defined by RFC 2132 the vendor class identifier field can be
899 sent by the client to identify the vendor type and configuration
900 of a client. This is often used in practice to allow for the DHCP
901 server to specify different files to load depending on if the ROM,
902 SPL or U-Boot itself makes the request
Simon Glass5ed16a92021-08-08 12:20:30 -0600903endif # if SPL_NET
Simon Glass11bde1c2016-09-13 07:05:23 -0600904
905config SPL_NO_CPU_SUPPORT
906 bool "Drop CPU code in SPL"
Simon Glass11bde1c2016-09-13 07:05:23 -0600907 help
908 This is specific to the ARM926EJ-S CPU. It disables the standard
909 start.S start-up code, presumably so that a replacement can be
910 used on that CPU. You should not enable it unless you know what
911 you are doing.
912
913config SPL_NOR_SUPPORT
914 bool "Support NOR flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600915 help
916 Enable support for loading U-Boot from memory-mapped NOR (Negative
917 OR) flash in SPL. NOR flash is slow to write but fast to read, and
918 a memory-mapped device makes it very easy to access. Loading from
919 NOR is typically achieved with just a memcpy().
920
Vikas Manochac6d9e9d2017-05-28 12:55:11 -0700921config SPL_XIP_SUPPORT
922 bool "Support XIP"
923 depends on SPL
924 help
925 Enable support for execute in place of U-Boot or kernel image. There
926 is no need to copy image from flash to ram if flash supports execute
927 in place. Its very useful in systems having enough flash but not
928 enough ram to load the image.
929
Simon Glass11bde1c2016-09-13 07:05:23 -0600930config SPL_ONENAND_SUPPORT
931 bool "Support OneNAND flash"
Simon Glass11bde1c2016-09-13 07:05:23 -0600932 help
933 Enable support for OneNAND (Negative AND) flash in SPL. OneNAND is
934 a type of NAND flash and therefore can be used to allow SPL to
935 load U-Boot from supported devices. This enables the drivers in
936 drivers/mtd/onenand as part of an SPL build.
937
Heiko Schocherc20ae2f2016-10-06 07:55:15 +0200938config SPL_OS_BOOT
939 bool "Activate Falcon Mode"
Tom Rini226498b2017-05-22 19:21:57 +0000940 depends on !TI_SECURE_DEVICE
Heiko Schocherc20ae2f2016-10-06 07:55:15 +0200941 help
942 Enable booting directly to an OS from SPL.
943 for more info read doc/README.falcon
944
Heiko Schocher29d3bc72016-10-06 07:55:16 +0200945if SPL_OS_BOOT
946config SYS_OS_BASE
947 hex "addr, where OS is found"
Tom Rini226498b2017-05-22 19:21:57 +0000948 depends on SPL_NOR_SUPPORT
Heiko Schocher29d3bc72016-10-06 07:55:16 +0200949 help
950 Specify the address, where the OS image is found, which
951 gets booted.
952
953endif # SPL_OS_BOOT
954
Alexandru Gagniuc22eb1522021-12-30 10:39:59 -0600955config SPL_FALCON_BOOT_MMCSD
956 bool "Enable Falcon boot from MMC or SD media"
957 depends on SPL_OS_BOOT && SPL_MMC
958 help
959 Select this if the Falcon mode OS image mode is on MMC or SD media.
960
961config SYS_MMCSD_RAW_MODE_KERNEL_SECTOR
962 hex "Falcon mode: Sector to load kernel uImage from MMC"
963 depends on SPL_FALCON_BOOT_MMCSD
964 help
965 When Falcon mode is used with an MMC or SD media, SPL needs to know
966 where to look for the kernel uImage. The image is expected to begin
967 at the raw MMC specified in this config.
968 Note that the Falcon mode image can also be a FIT, if FIT support is
969 enabled.
970
York Sun7550dbe2018-06-14 14:38:48 -0700971config SPL_PAYLOAD
972 string "SPL payload"
973 default "tpl/u-boot-with-tpl.bin" if TPL
974 default "u-boot.bin"
975 help
Chris Packham2dcfa052019-01-13 22:13:20 +1300976 Payload for SPL boot. For backward compatibility, default to
York Sun7550dbe2018-06-14 14:38:48 -0700977 u-boot.bin, i.e. RAW image without any header. In case of
978 TPL, tpl/u-boot-with-tpl.bin. For new boards, suggest to
979 use u-boot.img.
980
Sekhar Norid50d6812018-12-06 15:40:08 +0530981config SPL_PCI
Simon Glass2446b6b2017-01-16 07:03:30 -0700982 bool "Support PCI drivers"
Simon Glass2446b6b2017-01-16 07:03:30 -0700983 help
984 Enable support for PCI in SPL. For platforms that need PCI to boot,
985 or must perform some init using PCI in SPL, this provides the
986 necessary driver support. This enables the drivers in drivers/pci
987 as part of an SPL build.
988
Simon Glass15042e72021-08-08 12:20:10 -0600989config SPL_PCH
Simon Glassbbe41ab2017-01-16 07:03:33 -0700990 bool "Support PCH drivers"
Simon Glassbbe41ab2017-01-16 07:03:33 -0700991 help
992 Enable support for PCH (Platform Controller Hub) devices in SPL.
993 These are used to set up GPIOs and the SPI peripheral early in
994 boot. This enables the drivers in drivers/pch as part of an SPL
995 build.
996
Simon Glass11bde1c2016-09-13 07:05:23 -0600997config SPL_POST_MEM_SUPPORT
998 bool "Support POST drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -0600999 help
1000 Enable support for POST (Power-on Self Test) in SPL. POST is a
1001 procedure that checks that the hardware (CPU or board) appears to
1002 be functionally correctly. It is a sanity check that can be
1003 performed before booting. This enables the drivers in post/drivers
1004 as part of an SPL build.
1005
Ley Foon Tanbfc6bae2018-06-14 18:45:19 +08001006config SPL_DM_RESET
Patrick Delaunay0e373c02018-03-12 10:46:05 +01001007 bool "Support reset drivers"
1008 depends on SPL
1009 help
1010 Enable support for reset control in SPL.
1011 That can be useful in SPL to handle IP reset in driver, as in U-Boot,
1012 by using the generic reset API provided by driver model.
1013 This enables the drivers in drivers/reset as part of an SPL build.
1014
Simon Glass933b2f02021-07-10 21:14:24 -06001015config SPL_POWER
Simon Glass11bde1c2016-09-13 07:05:23 -06001016 bool "Support power drivers"
Simon Glass11bde1c2016-09-13 07:05:23 -06001017 help
1018 Enable support for power control in SPL. This includes support
1019 for PMICs (Power-management Integrated Circuits) and some of the
1020 features provided by PMICs. In particular, voltage regulators can
1021 be used to enable/disable power and vary its voltage. That can be
1022 useful in SPL to turn on boot peripherals and adjust CPU voltage
1023 so that the clock speed can be increased. This enables the drivers
1024 in drivers/power, drivers/power/pmic and drivers/power/regulator
1025 as part of an SPL build.
1026
Peng Fane13278c2018-07-27 10:20:37 +08001027config SPL_POWER_DOMAIN
1028 bool "Support power domain drivers"
Simon Glassa4faf1f2021-08-08 12:20:29 -06001029 select SPL_POWER
Peng Fane13278c2018-07-27 10:20:37 +08001030 help
1031 Enable support for power domain control in SPL. Many SoCs allow
1032 power to be applied to or removed from portions of the SoC (power
1033 domains). This may be used to save power. This API provides the
1034 means to control such power management hardware. This enables
1035 the drivers in drivers/power/domain as part of a SPL build.
1036
Stefan Agner22802f42016-12-23 07:51:53 +01001037config SPL_RAM_SUPPORT
1038 bool "Support booting from RAM"
Trevor Woerner18138ab2020-05-06 08:02:41 -04001039 default y if MICROBLAZE || ARCH_SOCFPGA || ARCH_TEGRA || ARCH_ZYNQ
Stefan Agner22802f42016-12-23 07:51:53 +01001040 help
1041 Enable booting of an image in RAM. The image can be preloaded or
1042 it can be loaded by SPL directly into RAM (e.g. using USB).
1043
Stefan Agnerf417d402016-12-23 07:51:52 +01001044config SPL_RAM_DEVICE
1045 bool "Support booting from preloaded image in RAM"
Stefan Agner22802f42016-12-23 07:51:53 +01001046 depends on SPL_RAM_SUPPORT
Trevor Woerner18138ab2020-05-06 08:02:41 -04001047 default y if MICROBLAZE || ARCH_SOCFPGA || ARCH_TEGRA || ARCH_ZYNQ
Stefan Agnerf417d402016-12-23 07:51:52 +01001048 help
1049 Enable booting of an image already loaded in RAM. The image has to
1050 be already in memory when SPL takes over, e.g. loaded by the boot
1051 ROM.
1052
Lokesh Vutla08c45312018-08-27 15:57:53 +05301053config SPL_REMOTEPROC
1054 bool "Support REMOTEPROCS"
1055 help
1056 Enable support for REMOTEPROCs in SPL. This permits to load
1057 a remote processor firmware in SPL.
1058
Simon Glass73c6ff62021-08-08 12:20:11 -06001059config SPL_RTC
Simon Glass30bf8a02017-01-16 07:03:31 -07001060 bool "Support RTC drivers"
Simon Glass30bf8a02017-01-16 07:03:31 -07001061 help
1062 Enable RTC (Real-time Clock) support in SPL. This includes support
1063 for reading and setting the time. Some RTC devices also have some
1064 non-volatile (battery-backed) memory which is accessible if
1065 needed. This enables the drivers in drivers/rtc as part of an SPL
1066 build.
1067
Simon Glassf7560372021-08-08 12:20:17 -06001068config SPL_SATA
Simon Glass11bde1c2016-09-13 07:05:23 -06001069 bool "Support loading from SATA"
Simon Glass11bde1c2016-09-13 07:05:23 -06001070 help
1071 Enable support for SATA (Serial AT attachment) in SPL. This allows
1072 use of SATA devices such as hard drives and flash drivers for
1073 loading U-Boot. SATA is used in higher-end embedded systems and
1074 can provide higher performance than MMC , at somewhat higher
1075 expense and power consumption. This enables loading from SATA
1076 using a configured device.
1077
Baruch Siach60ca9692019-07-14 17:54:21 +03001078config SPL_SATA_RAW_U_BOOT_USE_SECTOR
1079 bool "SATA raw mode: by sector"
Simon Glassf7560372021-08-08 12:20:17 -06001080 depends on SPL_SATA
Pali Rohár2226ca12021-07-23 11:14:29 +02001081 default y if ARCH_MVEBU
Baruch Siach60ca9692019-07-14 17:54:21 +03001082 help
1083 Use sector number for specifying U-Boot location on SATA disk in
1084 raw mode.
1085
1086config SPL_SATA_RAW_U_BOOT_SECTOR
1087 hex "Sector on the SATA disk to load U-Boot from"
1088 depends on SPL_SATA_RAW_U_BOOT_USE_SECTOR
Pali Rohár2226ca12021-07-23 11:14:29 +02001089 default 0x1 if ARCH_MVEBU
Baruch Siach60ca9692019-07-14 17:54:21 +03001090 help
1091 Sector on the SATA disk to load U-Boot from, when the SATA disk is being
1092 used in raw mode. Units: SATA disk sectors (1 sector = 512 bytes).
1093
Simon Glass2a736062021-08-08 12:20:12 -06001094config SPL_SERIAL
Simon Glass11bde1c2016-09-13 07:05:23 -06001095 bool "Support serial"
Alex Kiernan14ad44a2018-04-19 04:32:54 +00001096 select SPL_PRINTF
1097 select SPL_STRTO
Simon Glass11bde1c2016-09-13 07:05:23 -06001098 help
1099 Enable support for serial in SPL. This allows use of a serial UART
1100 for displaying messages while SPL is running. It also brings in
1101 printf() and panic() functions. This should normally be enabled
1102 unless there are space reasons not to. Even then, consider
Simon Glass27084c02019-09-25 08:56:27 -06001103 enabling SPL_USE_TINY_PRINTF which is a small printf() version.
Simon Glass11bde1c2016-09-13 07:05:23 -06001104
Simon Glassea2ca7e2021-08-08 12:20:14 -06001105config SPL_SPI
Simon Goldschmidtd024e992019-10-25 16:22:09 +02001106 bool "Support SPI drivers"
1107 help
1108 Enable support for using SPI in SPL. This is used for connecting
1109 to SPI flash for loading U-Boot. See SPL_SPI_FLASH_SUPPORT for
1110 more details on that. The SPI driver provides the transport for
1111 data between the SPI flash and the CPU. This option can be used to
1112 enable SPI drivers that are needed for other purposes also, such
1113 as a SPI PMIC.
1114
Simon Glass11bde1c2016-09-13 07:05:23 -06001115config SPL_SPI_FLASH_SUPPORT
1116 bool "Support SPI flash drivers"
Simon Glassea2ca7e2021-08-08 12:20:14 -06001117 depends on SPL_SPI
Simon Glass11bde1c2016-09-13 07:05:23 -06001118 help
1119 Enable support for using SPI flash in SPL, and loading U-Boot from
1120 SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
1121 the SPI bus that is used to connect it to a system. It is a simple
1122 but fast bidirectional 4-wire bus (clock, chip select and two data
1123 lines). This enables the drivers in drivers/mtd/spi as part of an
Simon Glassea2ca7e2021-08-08 12:20:14 -06001124 SPL build. This normally requires SPL_SPI.
Simon Glass11bde1c2016-09-13 07:05:23 -06001125
Vignesh R0c6f1872019-02-05 11:29:20 +05301126if SPL_SPI_FLASH_SUPPORT
1127
Vignesh R778572d2019-02-05 11:29:25 +05301128config SPL_SPI_FLASH_TINY
1129 bool "Enable low footprint SPL SPI Flash support"
1130 depends on !SPI_FLASH_BAR
Vignesh R72875972019-02-05 11:29:26 +05301131 default y if SPI_FLASH
Vignesh R778572d2019-02-05 11:29:25 +05301132 help
1133 Enable lightweight SPL SPI Flash support that supports just reading
1134 data/images from flash. No support to write/erase flash. Enable
1135 this if you have SPL size limitations and don't need full
1136 fledged SPI flash support.
1137
Vignesh R0c6f1872019-02-05 11:29:20 +05301138config SPL_SPI_FLASH_SFDP_SUPPORT
1139 bool "SFDP table parsing support for SPI NOR flashes"
Vignesh R778572d2019-02-05 11:29:25 +05301140 depends on !SPI_FLASH_BAR && !SPL_SPI_FLASH_TINY
Vignesh R0c6f1872019-02-05 11:29:20 +05301141 help
1142 Enable support for parsing and auto discovery of parameters for
1143 SPI NOR flashes using Serial Flash Discoverable Parameters (SFDP)
1144 tables as per JESD216 standard in SPL.
1145
Lukasz Majewski56c40462020-06-04 23:11:53 +08001146config SPL_SPI_FLASH_MTD
1147 bool "Support for SPI flash MTD drivers in SPL"
1148 help
1149 Enable support for SPI flash MTD drivers in SPL.
1150
Marek Vasut55500432018-04-07 16:05:27 +02001151config SPL_SPI_LOAD
1152 bool "Support loading from SPI flash"
Marek Vasut55500432018-04-07 16:05:27 +02001153 help
1154 Enable support for loading next stage, U-Boot or otherwise, from
1155 SPI NOR in U-Boot SPL.
1156
Vignesh R0c6f1872019-02-05 11:29:20 +05301157endif # SPL_SPI_FLASH_SUPPORT
1158
Hannes Schmelzer1ee774d2019-08-22 15:41:46 +02001159config SYS_SPI_U_BOOT_OFFS
1160 hex "address of u-boot payload in SPI flash"
Andre Przywara671d64f2020-01-06 01:29:10 +00001161 default 0x8000 if ARCH_SUNXI
Hannes Schmelzer1ee774d2019-08-22 15:41:46 +02001162 default 0x0
1163 depends on SPL_SPI_LOAD || SPL_SPI_SUNXI
1164 help
1165 Address within SPI-Flash from where the u-boot payload is fetched
1166 from.
1167
Faiz Abbas8502f9f2017-11-14 16:12:31 +05301168config SPL_THERMAL
1169 bool "Driver support for thermal devices"
1170 help
1171 Enable support for temperature-sensing devices. Some SoCs have on-chip
1172 temperature sensors to permit warnings, speed throttling or even
1173 automatic power-off when the temperature gets too high or low. Other
1174 devices may be discrete but connected on a suitable bus.
1175
Simon Glass333e4a62021-07-10 21:14:29 -06001176config SPL_USB_HOST
Simon Glass11bde1c2016-09-13 07:05:23 -06001177 bool "Support USB host drivers"
Tom Rini91ff6862018-12-05 08:23:38 -05001178 select HAVE_BLOCK_DEVICE
Simon Glass11bde1c2016-09-13 07:05:23 -06001179 help
1180 Enable access to USB (Universal Serial Bus) host devices so that
1181 SPL can load U-Boot from a connected USB peripheral, such as a USB
1182 flash stick. While USB takes a little longer to start up than most
1183 buses, it is very flexible since many different types of storage
1184 device can be attached. This option enables the drivers in
1185 drivers/usb/host as part of an SPL build.
1186
Abel Vesa79536012019-02-01 16:40:07 +00001187config SPL_USB_STORAGE
Simon Glass11bde1c2016-09-13 07:05:23 -06001188 bool "Support loading from USB"
Simon Glass333e4a62021-07-10 21:14:29 -06001189 depends on SPL_USB_HOST && !(BLK && !DM_USB)
Simon Glass11bde1c2016-09-13 07:05:23 -06001190 help
1191 Enable support for USB devices in SPL. This allows use of USB
1192 devices such as hard drives and flash drivers for loading U-Boot.
1193 The actual drivers are enabled separately using the normal U-Boot
1194 config options. This enables loading from USB using a configured
1195 device.
1196
Jean-Jacques Hiblotf811e972019-01-10 15:44:13 +01001197config SPL_USB_GADGET
Stefan Agnere94793c2016-11-21 10:58:53 -08001198 bool "Suppport USB Gadget drivers"
Stefan Agnere94793c2016-11-21 10:58:53 -08001199 help
1200 Enable USB Gadget API which allows to enable USB device functions
1201 in SPL.
1202
Jean-Jacques Hiblotf811e972019-01-10 15:44:13 +01001203if SPL_USB_GADGET
Stefan Agnere94793c2016-11-21 10:58:53 -08001204
Faiz Abbasb432b1e2018-02-16 21:17:44 +05301205config SPL_USB_ETHER
Stefan Agnere94793c2016-11-21 10:58:53 -08001206 bool "Support USB Ethernet drivers"
Simon Glass9f664922021-08-08 12:20:31 -06001207 depends on SPL_NET
Stefan Agnere94793c2016-11-21 10:58:53 -08001208 help
1209 Enable access to the USB network subsystem and associated
1210 drivers in SPL. This permits SPL to load U-Boot over a
1211 USB-connected Ethernet link (such as a USB Ethernet dongle) rather
1212 than from an onboard peripheral. Environment support is required
1213 since the network stack uses a number of environment variables.
Simon Glass5ed16a92021-08-08 12:20:30 -06001214 See also SPL_NET and SPL_ETH.
Stefan Agnere94793c2016-11-21 10:58:53 -08001215
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001216config SPL_DFU
Fabio Estevamc3c19c22018-08-31 10:02:28 -03001217 bool "Support DFU (Device Firmware Upgrade)"
Alexandru Gagniuc07212092021-09-02 19:54:19 -05001218 select SPL_HASH
B, Ravi66928af2017-05-04 15:45:29 +05301219 select SPL_DFU_NO_RESET
B, Ravi1b19cbd2017-05-04 15:45:28 +05301220 depends on SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -08001221 help
Fabio Estevamc3c19c22018-08-31 10:02:28 -03001222 This feature enables the DFU (Device Firmware Upgrade) in SPL with
Stefan Agner59917032016-11-21 10:58:52 -08001223 RAM memory device support. The ROM code will load and execute
1224 the SPL built with dfu. The user can load binaries (u-boot/kernel) to
1225 selected device partition from host-pc using dfu-utils.
1226 This feature is useful to flash the binaries to factory or bare-metal
1227 boards using USB interface.
1228
1229choice
1230 bool "DFU device selection"
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001231 depends on SPL_DFU
Stefan Agner59917032016-11-21 10:58:52 -08001232
1233config SPL_DFU_RAM
1234 bool "RAM device"
Andrew F. Davis6536ca42019-01-17 13:43:02 -06001235 depends on SPL_DFU && SPL_RAM_SUPPORT
Stefan Agner59917032016-11-21 10:58:52 -08001236 help
1237 select RAM/DDR memory device for loading binary images
1238 (u-boot/kernel) to the selected device partition using
1239 DFU and execute the u-boot/kernel from RAM.
1240
1241endchoice
1242
Stefan Agnera3774c12017-08-16 11:00:54 -07001243config SPL_USB_SDP_SUPPORT
1244 bool "Support SDP (Serial Download Protocol)"
Simon Glass2a736062021-08-08 12:20:12 -06001245 depends on SPL_SERIAL
Stefan Agnera3774c12017-08-16 11:00:54 -07001246 help
1247 Enable Serial Download Protocol (SDP) device support in SPL. This
1248 allows to download images into memory and execute (jump to) them
1249 using the same protocol as implemented by the i.MX family's boot ROM.
Ye Li407e3842020-04-29 10:35:12 +08001250
1251config SPL_SDP_USB_DEV
1252 int "SDP USB controller index"
1253 default 0
1254 depends on SPL_USB_SDP_SUPPORT
1255 help
1256 Some boards have USB controller other than 0. Define this option
1257 so it can be used in compiled environment.
Stefan Agnere94793c2016-11-21 10:58:53 -08001258endif
1259
Simon Glass078111b2021-07-10 21:14:28 -06001260config SPL_WATCHDOG
Simon Glass11bde1c2016-09-13 07:05:23 -06001261 bool "Support watchdog drivers"
Marek Vasut6874cb72019-06-09 03:46:21 +02001262 imply SPL_WDT if !HW_WATCHDOG
Simon Glass11bde1c2016-09-13 07:05:23 -06001263 help
1264 Enable support for watchdog drivers in SPL. A watchdog is
1265 typically a hardware peripheral which can reset the system when it
1266 detects no activity for a while (such as a software crash). This
1267 enables the drivers in drivers/watchdog as part of an SPL build.
1268
1269config SPL_YMODEM_SUPPORT
1270 bool "Support loading using Ymodem"
Simon Glass2a736062021-08-08 12:20:12 -06001271 depends on SPL_SERIAL
Simon Glass11bde1c2016-09-13 07:05:23 -06001272 help
1273 While loading from serial is slow it can be a useful backup when
1274 there is no other option. The Ymodem protocol provides a reliable
1275 means of transmitting U-Boot over a serial line for using in SPL,
1276 with a checksum to ensure correctness.
1277
Philipp Tomsichaa122f62017-09-13 21:29:36 +02001278config SPL_ATF
Kever Yangbcc17262017-05-05 11:47:45 +08001279 bool "Support ARM Trusted Firmware"
Michal Simek975bacc2020-09-03 11:23:39 +02001280 depends on ARM64 && SPL_FIT
Kever Yangbcc17262017-05-05 11:47:45 +08001281 help
Philipp Tomsichd21fb632018-01-02 21:16:43 +01001282 ATF(ARM Trusted Firmware) is a component for ARM AArch64 which
1283 is loaded by SPL (which is considered as BL2 in ATF terminology).
Kever Yangbcc17262017-05-05 11:47:45 +08001284 More detail at: https://github.com/ARM-software/arm-trusted-firmware
1285
Michael Walle7b866822020-11-18 17:45:58 +01001286config SPL_ATF_LOAD_IMAGE_V2
1287 bool "Use the new LOAD_IMAGE_V2 parameter passing"
1288 depends on SPL_ATF
1289 help
1290 Some platforms use the newer LOAD_IMAGE_V2 parameter passing.
1291
1292 If you want to load a bl31 image from the SPL and need the new
1293 method, say Y.
1294
Philipp Tomsichd21fb632018-01-02 21:16:43 +01001295config SPL_ATF_NO_PLATFORM_PARAM
Michal Simekce869b52021-05-20 13:08:44 +02001296 bool "Pass no platform parameter"
Philipp Tomsichd21fb632018-01-02 21:16:43 +01001297 depends on SPL_ATF
1298 help
1299 While we expect to call a pointer to a valid FDT (or NULL)
1300 as the platform parameter to an ATF, some ATF versions are
1301 not U-Boot aware and have an insufficiently robust parameter
1302 validation to gracefully reject a FDT being passed.
1303
1304 If this option is enabled, the spl_atf os-type handler will
1305 always pass NULL for the platform parameter.
1306
1307 If your ATF is affected, say Y.
1308
Alex Kiernan3bf5f132018-03-15 22:11:46 +00001309config SPL_AM33XX_ENABLE_RTC32K_OSC
1310 bool "Enable the RTC32K OSC on AM33xx based platforms"
1311 default y if AM33XX
1312 help
1313 Enable access to the AM33xx RTC and select the external 32kHz clock
1314 source.
1315
Patrick Delaunay51827f92021-09-02 11:56:16 +02001316config SPL_OPTEE_IMAGE
1317 bool "Support OP-TEE Trusted OS image in SPL"
Kever Yang70fe2872018-08-23 17:17:59 +08001318 depends on ARM
1319 help
Patrick Delaunay51827f92021-09-02 11:56:16 +02001320 OP-TEE is an open source Trusted OS which is loaded by SPL.
Kever Yang70fe2872018-08-23 17:17:59 +08001321 More detail at: https://github.com/OP-TEE/optee_os
1322
Lukas Auer5e30e452019-08-21 21:14:44 +02001323config SPL_OPENSBI
1324 bool "Support RISC-V OpenSBI"
1325 depends on RISCV && SPL_RISCV_MMODE && RISCV_SMODE
1326 help
1327 OpenSBI is an open-source implementation of the RISC-V Supervisor Binary
1328 Interface (SBI) specification. U-Boot supports the OpenSBI FW_DYNAMIC
1329 firmware. It is loaded and started by U-Boot SPL.
1330
1331 More details are available at https://github.com/riscv/opensbi and
1332 https://github.com/riscv/riscv-sbi-doc
1333
1334config SPL_OPENSBI_LOAD_ADDR
1335 hex "OpenSBI load address"
1336 depends on SPL_OPENSBI
1337 help
1338 Load address of the OpenSBI binary.
1339
Tom Rini226498b2017-05-22 19:21:57 +00001340config TPL
1341 bool
1342 depends on SUPPORT_TPL
1343 prompt "Enable TPL"
1344 help
1345 If you want to build TPL as well as the normal image and SPL, say Y.
1346
1347if TPL
1348
Simon Glassc52b5e82019-10-20 21:31:52 -06001349config TPL_SIZE_LIMIT
1350 hex "Maximum size of TPL image"
1351 depends on TPL
Ovidiu Panait2dfdd0c2020-09-25 21:12:56 +03001352 default 0x0
Simon Glassc52b5e82019-10-20 21:31:52 -06001353 help
1354 Specifies the maximum length of the U-Boot TPL image.
1355 If this value is zero, it is ignored.
1356
Simon Glass38c04d82022-02-08 11:49:48 -07001357config TPL_BINMAN_SYMBOLS
Simon Glassb13114c2022-03-05 20:18:55 -07001358 bool "Declare binman symbols in TPL"
Simon Glass38c04d82022-02-08 11:49:48 -07001359 depends on SPL_FRAMEWORK && BINMAN
1360 default y
1361 help
Simon Glassb13114c2022-03-05 20:18:55 -07001362 This enables use of symbols in TPL which refer to U-Boot, enabling TPL
Simon Glass38c04d82022-02-08 11:49:48 -07001363 to obtain the location of U-Boot simply by calling spl_get_image_pos()
1364 and spl_get_image_size().
1365
1366 For this to work, you must have a U-Boot image in the binman image, so
Simon Glassb13114c2022-03-05 20:18:55 -07001367 binman can update TPL with the location of it.
Simon Glass38c04d82022-02-08 11:49:48 -07001368
Heiko Stuebner22b7b862019-07-16 10:12:02 +02001369config TPL_FRAMEWORK
1370 bool "Support TPL based upon the common SPL framework"
1371 default y if SPL_FRAMEWORK
1372 help
1373 Enable the SPL framework under common/spl/ for TPL builds.
1374 This framework supports MMC, NAND and YMODEM and other methods
1375 loading of U-Boot's SPL stage. If unsure, say Y.
1376
Simon Glassb0edea32018-11-15 18:44:09 -07001377config TPL_HANDOFF
1378 bool "Pass hand-off information from TPL to SPL and U-Boot proper"
Simon Glassa7da3d92019-09-25 08:11:17 -06001379 depends on HANDOFF && TPL_BLOBLIST
Simon Glassb0edea32018-11-15 18:44:09 -07001380 default y
1381 help
1382 This option enables TPL to write handoff information. This can be
1383 used to pass information like the size of SDRAM from TPL to U-Boot
1384 proper. The information is also available to SPL if it is useful
1385 there.
1386
Kever Yangaf2f4422018-01-20 18:00:26 +08001387config TPL_BOARD_INIT
1388 bool "Call board-specific initialization in TPL"
1389 help
1390 If this option is enabled, U-Boot will call the function
1391 spl_board_init() from board_init_r(). This function should be
1392 provided by the board.
1393
Philippe Reynes4d145f22020-12-11 19:56:47 +01001394config TPL_BOOTCOUNT_LIMIT
1395 bool "Support bootcount in TPL"
1396 depends on TPL_ENV_SUPPORT
1397 help
1398 If this option is enabled, the TPL will support bootcount.
1399 For example, it may be useful to choose the device to boot.
1400
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +02001401config TPL_LDSCRIPT
Michal Simekce869b52021-05-20 13:08:44 +02001402 string "Linker script for the TPL stage"
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +02001403 depends on TPL
Tom Rini2f41ade2019-01-22 17:09:26 -05001404 default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
Tom Rinia356e7a2020-03-11 18:11:11 -04001405 default "arch/\$(ARCH)/cpu/u-boot-spl.lds"
Philipp Tomsichdd6fbcb2017-07-28 19:20:49 +02001406 help
1407 The TPL stage will usually require a different linker-script
1408 (as it runs from a different memory region) than the regular
1409 U-Boot stage. Set this to the path of the linker-script to
1410 be used for TPL.
1411
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001412 May be left empty to trigger the Makefile infrastructure to
1413 fall back to the linker-script used for the SPL stage.
1414
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001415config TPL_NEEDS_SEPARATE_STACK
Michal Simekce869b52021-05-20 13:08:44 +02001416 bool "TPL needs a separate initial stack-pointer"
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001417 depends on TPL
1418 help
1419 Enable, if the TPL stage should not inherit its initial
1420 stack-pointer from the settings for the SPL stage.
1421
Simon Glassa4faf1f2021-08-08 12:20:29 -06001422config TPL_POWER
1423 bool "Support power drivers"
1424 help
1425 Enable support for power control in TPL. This includes support
1426 for PMICs (Power-management Integrated Circuits) and some of the
1427 features provided by PMICs. In particular, voltage regulators can
1428 be used to enable/disable power and vary its voltage. That can be
1429 useful in TPL to turn on boot peripherals and adjust CPU voltage
1430 so that the clock speed can be increased. This enables the drivers
1431 in drivers/power, drivers/power/pmic and drivers/power/regulator
1432 as part of an TPL build.
1433
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001434config TPL_TEXT_BASE
Michal Simekce869b52021-05-20 13:08:44 +02001435 hex "Base address for the .text section of the TPL stage"
Simon Glass8e6c1292022-02-28 12:08:30 -07001436 default 0
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001437 help
1438 The base address for the .text section of the TPL stage.
1439
1440config TPL_MAX_SIZE
Michal Simekce869b52021-05-20 13:08:44 +02001441 int "Maximum size (in bytes) for the TPL stage"
Philipp Tomsich5aa49af2017-07-28 20:20:41 +02001442 default 0
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001443 depends on TPL
1444 help
1445 The maximum size (in bytes) of the TPL stage.
1446
1447config TPL_STACK
Michal Simekce869b52021-05-20 13:08:44 +02001448 hex "Address of the initial stack-pointer for the TPL stage"
Philipp Tomsichb3ed6ce2017-07-28 20:02:34 +02001449 depends on TPL_NEEDS_SEPARATE_STACK
1450 help
1451 The address of the initial stack-pointer for the TPL stage.
1452 Usually this will be the (aligned) top-of-stack.
1453
Simon Glass95a58252021-03-15 17:25:35 +13001454config TPL_READ_ONLY
1455 bool
1456 depends on TPL_OF_PLATDATA
1457 select TPL_OF_PLATDATA_NO_BIND
1458 select TPL_OF_PLATDATA_RT
1459 help
1460 Some platforms (e.g. x86 Apollo Lake) load SPL into a read-only
1461 section of memory. This means that of-platdata must make a copy (in
1462 writeable memory) of anything it wants to modify, such as
1463 device-private data.
1464
Philipp Tomsicha954fa32017-07-04 14:24:53 +02001465config TPL_BOOTROM_SUPPORT
Michal Simekce869b52021-05-20 13:08:44 +02001466 bool "Support returning to the BOOTROM (from TPL)"
Philipp Tomsicha954fa32017-07-04 14:24:53 +02001467 help
1468 Some platforms (e.g. the Rockchip RK3368) provide support in their
1469 ROM for loading the next boot-stage after performing basic setup
1470 from the TPL stage.
1471
1472 Enable this option, to return to the BOOTROM through the
1473 BOOT_DEVICE_BOOTROM (or fall-through to the next boot device in the
1474 boot device list, if not implemented for a given board)
1475
Simon Glasse7d285b2021-09-25 19:43:24 -06001476config TPL_CRC32
1477 bool "Support CRC32 in TPL"
1478 default y if TPL_ENV_SUPPORT || TPL_BLOBLIST
1479 help
1480 Enable this to support CRC32 in uImages or FIT images within SPL.
1481 This is a 32-bit checksum value that can be used to verify images.
1482 For FIT images, this is the least secure type of checksum, suitable
1483 for detected accidental image corruption. For secure applications you
1484 should consider SHA1 or SHA256.
1485
Simon Glass9ca00682021-07-10 21:14:31 -06001486config TPL_DRIVERS_MISC
Philipp Tomsichc3916e72017-07-04 14:27:02 +02001487 bool "Support misc drivers in TPL"
1488 help
1489 Enable miscellaneous drivers in TPL. These drivers perform various
1490 tasks that don't fall nicely into other categories, Enable this
1491 option to build the drivers in drivers/misc as part of an TPL
1492 build, for those that support building in TPL (not all drivers do).
1493
Simon Glassf73329e2016-09-12 23:18:27 -06001494config TPL_ENV_SUPPORT
1495 bool "Support an environment"
Simon Glassf73329e2016-09-12 23:18:27 -06001496 help
1497 Enable environment support in TPL. See SPL_ENV_SUPPORT for details.
1498
Simon Glass83061db2021-07-10 21:14:30 -06001499config TPL_GPIO
Simon Glass2d424eb2018-11-15 18:43:55 -07001500 bool "Support GPIO in TPL"
1501 help
1502 Enable support for GPIOs (General-purpose Input/Output) in TPL.
1503 GPIOs allow U-Boot to read the state of an input line (high or
1504 low) and set the state of an output line. This can be used to
1505 drive LEDs, control power to various system parts and read user
1506 input. GPIOs can be useful in TPL to enable a 'sign-of-life' LED,
1507 for example. Enable this option to build the drivers in
1508 drivers/gpio as part of an TPL build.
1509
Simon Glass975e7cf2021-07-10 21:14:36 -06001510config TPL_I2C
Simon Glassf73329e2016-09-12 23:18:27 -06001511 bool "Support I2C"
Simon Glassf73329e2016-09-12 23:18:27 -06001512 help
Simon Glass975e7cf2021-07-10 21:14:36 -06001513 Enable support for the I2C bus in TPL. See SPL_I2C for
Simon Glassf73329e2016-09-12 23:18:27 -06001514 details.
1515
1516config TPL_LIBCOMMON_SUPPORT
1517 bool "Support common libraries"
Simon Glassf73329e2016-09-12 23:18:27 -06001518 help
1519 Enable support for common U-Boot libraries within TPL. See
1520 SPL_LIBCOMMON_SUPPORT for details.
1521
1522config TPL_LIBGENERIC_SUPPORT
1523 bool "Support generic libraries"
Simon Glassf73329e2016-09-12 23:18:27 -06001524 help
1525 Enable support for generic U-Boot libraries within TPL. See
1526 SPL_LIBGENERIC_SUPPORT for details.
1527
Simon Glass6f004ad2021-08-08 12:20:16 -06001528config TPL_MPC8XXX_INIT_DDR
Simon Glassf73329e2016-09-12 23:18:27 -06001529 bool "Support MPC8XXX DDR init"
Simon Glassf73329e2016-09-12 23:18:27 -06001530 help
1531 Enable support for DDR-SDRAM on the MPC8XXX family within TPL. See
Simon Glass6f004ad2021-08-08 12:20:16 -06001532 SPL_MPC8XXX_INIT_DDR for details.
Simon Glassf73329e2016-09-12 23:18:27 -06001533
Simon Glass103c5f12021-08-08 12:20:09 -06001534config TPL_MMC
Simon Glassf73329e2016-09-12 23:18:27 -06001535 bool "Support MMC"
Tom Rini226498b2017-05-22 19:21:57 +00001536 depends on MMC
Simon Glassf73329e2016-09-12 23:18:27 -06001537 help
Simon Glass103c5f12021-08-08 12:20:09 -06001538 Enable support for MMC within TPL. See SPL_MMC for details.
Simon Glassf73329e2016-09-12 23:18:27 -06001539
1540config TPL_NAND_SUPPORT
1541 bool "Support NAND flash"
Simon Glassf73329e2016-09-12 23:18:27 -06001542 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001543 Enable support for NAND in TPL. See SPL_NAND_SUPPORT for details.
Simon Glassf73329e2016-09-12 23:18:27 -06001544
Sekhar Norid50d6812018-12-06 15:40:08 +05301545config TPL_PCI
Simon Glass2d424eb2018-11-15 18:43:55 -07001546 bool "Support PCI drivers"
1547 help
1548 Enable support for PCI in TPL. For platforms that need PCI to boot,
1549 or must perform some init using PCI in SPL, this provides the
1550 necessary driver support. This enables the drivers in drivers/pci
1551 as part of a TPL build.
1552
Simon Glass15042e72021-08-08 12:20:10 -06001553config TPL_PCH
Simon Glass2d424eb2018-11-15 18:43:55 -07001554 bool "Support PCH drivers"
1555 help
1556 Enable support for PCH (Platform Controller Hub) devices in TPL.
1557 These are used to set up GPIOs and the SPI peripheral early in
1558 boot. This enables the drivers in drivers/pch as part of a TPL
1559 build.
1560
Marek Vasutd79dfd42018-04-07 17:03:45 +02001561config TPL_RAM_SUPPORT
1562 bool "Support booting from RAM"
1563 help
1564 Enable booting of an image in RAM. The image can be preloaded or
1565 it can be loaded by TPL directly into RAM (e.g. using USB).
1566
1567config TPL_RAM_DEVICE
1568 bool "Support booting from preloaded image in RAM"
1569 depends on TPL_RAM_SUPPORT
1570 help
1571 Enable booting of an image already loaded in RAM. The image has to
1572 be already in memory when TPL takes over, e.g. loaded by the boot
1573 ROM.
1574
Simon Glass73c6ff62021-08-08 12:20:11 -06001575config TPL_RTC
Simon Glass2d424eb2018-11-15 18:43:55 -07001576 bool "Support RTC drivers"
1577 help
1578 Enable RTC (Real-time Clock) support in TPL. This includes support
1579 for reading and setting the time. Some RTC devices also have some
1580 non-volatile (battery-backed) memory which is accessible if
1581 needed. This enables the drivers in drivers/rtc as part of an TPL
1582 build.
1583
Simon Glass2a736062021-08-08 12:20:12 -06001584config TPL_SERIAL
Simon Glassf73329e2016-09-12 23:18:27 -06001585 bool "Support serial"
Alex Kiernan14ad44a2018-04-19 04:32:54 +00001586 select TPL_PRINTF
1587 select TPL_STRTO
Simon Glassf73329e2016-09-12 23:18:27 -06001588 help
Simon Glass2a736062021-08-08 12:20:12 -06001589 Enable support for serial in TPL. See SPL_SERIAL for
Simon Glassf73329e2016-09-12 23:18:27 -06001590 details.
1591
1592config TPL_SPI_FLASH_SUPPORT
1593 bool "Support SPI flash drivers"
Simon Glassf73329e2016-09-12 23:18:27 -06001594 help
Philipp Tomsich616bd092017-07-28 17:03:03 +02001595 Enable support for using SPI flash in TPL. See SPL_SPI_FLASH_SUPPORT
Simon Glassf73329e2016-09-12 23:18:27 -06001596 for details.
1597
Simon Glassf38a2992020-07-19 10:15:31 -06001598config TPL_SPI_FLASH_TINY
1599 bool "Enable low footprint TPL SPI Flash support"
1600 depends on TPL_SPI_FLASH_SUPPORT && !SPI_FLASH_BAR
1601 default y if SPI_FLASH
1602 help
1603 Enable lightweight TPL SPI Flash support that supports just reading
1604 data/images from flash. No support to write/erase flash. Enable
1605 this if you have TPL size limitations and don't need full-fledged
1606 SPI flash support.
1607
Marek Vasut1e725e22018-04-07 16:05:46 +02001608config TPL_SPI_LOAD
1609 bool "Support loading from SPI flash"
1610 depends on TPL_SPI_FLASH_SUPPORT
1611 help
1612 Enable support for loading next stage, U-Boot or otherwise, from
1613 SPI NOR in U-Boot TPL.
1614
Simon Glassea2ca7e2021-08-08 12:20:14 -06001615config TPL_SPI
Simon Glassf73329e2016-09-12 23:18:27 -06001616 bool "Support SPI drivers"
Simon Glassf73329e2016-09-12 23:18:27 -06001617 help
Simon Glassea2ca7e2021-08-08 12:20:14 -06001618 Enable support for using SPI in TPL. See SPL_SPI for
Simon Glassf73329e2016-09-12 23:18:27 -06001619 details.
1620
Lukasz Majewski56c40462020-06-04 23:11:53 +08001621config TPL_DM_SPI
1622 bool "Support SPI DM drivers in TPL"
1623 help
1624 Enable support for SPI DM drivers in TPL.
1625
1626config TPL_DM_SPI_FLASH
1627 bool "Support SPI DM FLASH drivers in TPL"
1628 help
1629 Enable support for SPI DM flash drivers in TPL.
1630
Marek Vasut6ce3d672018-04-07 16:06:11 +02001631config TPL_YMODEM_SUPPORT
1632 bool "Support loading using Ymodem"
Simon Glass2a736062021-08-08 12:20:12 -06001633 depends on TPL_SERIAL
Marek Vasut6ce3d672018-04-07 16:06:11 +02001634 help
1635 While loading from serial is slow it can be a useful backup when
1636 there is no other option. The Ymodem protocol provides a reliable
1637 means of transmitting U-Boot over a serial line for using in TPL,
1638 with a checksum to ensure correctness.
1639
Tom Rini226498b2017-05-22 19:21:57 +00001640endif # TPL
1641
Simon Glass747093d2022-04-30 00:56:53 -06001642config VPL
1643 bool
1644 depends on SUPPORT_SPL
1645 prompt "Enable VPL"
1646 help
1647 If you want to build VPL as well as the normal image, TPL and SPL,
1648 say Y.
1649
1650if VPL
1651
1652config VPL_BANNER_PRINT
1653 bool "Enable output of the VPL banner 'U-Boot VPL ...'"
1654 depends on VPL
1655 default y
1656 help
1657 If this option is enabled, VPL will print the banner with version
1658 info. Disabling this option could be useful to reduce VPL boot time
1659 (e.g. approx. 6 ms faster, when output on i.MX6 with 115200 baud).
1660
1661config VPL_BOARD_INIT
1662 bool "Call board-specific initialization in VPL"
1663 help
1664 If this option is enabled, U-Boot will call the function
1665 spl_board_init() from board_init_r(). This function should be
1666 provided by the board.
1667
1668config VPL_CACHE
1669 depends on CACHE
1670 bool "Support cache drivers in VPL"
1671 help
1672 Enable support for cache drivers in VPL.
1673
1674config VPL_CRC32
1675 bool "Support CRC32 in VPL"
1676 default y if VPL_ENV_SUPPORT || VPL_BLOBLIST
1677 help
1678 Enable this to support CRC32 in uImages or FIT images within VPL.
1679 This is a 32-bit checksum value that can be used to verify images.
1680 For FIT images, this is the least secure type of checksum, suitable
1681 for detected accidental image corruption. For secure applications you
1682 should consider SHA1 or SHA256.
1683
1684config VPL_DM_SPI
1685 bool "Support SPI DM drivers in VPL"
1686 help
1687 Enable support for SPI DM drivers in VPL.
1688
1689config VPL_DM_SPI_FLASH
1690 bool "Support SPI DM FLASH drivers in VPL"
1691 help
1692 Enable support for SPI DM flash drivers in VPL.
1693
1694config VPL_FRAMEWORK
1695 bool "Support VPL based upon the common SPL framework"
1696 default y
1697 help
1698 Enable the SPL framework under common/spl/ for VPL builds.
1699 This framework supports MMC, NAND and YMODEM and other methods
1700 loading of U-Boot's next stage. If unsure, say Y.
1701
1702config VPL_HANDOFF
1703 bool "Pass hand-off information from VPL to SPL"
1704 depends on HANDOFF && VPL_BLOBLIST
1705 default y
1706 help
1707 This option enables VPL to write handoff information. This can be
1708 used to pass information like the size of SDRAM from VPL to SPL. Also
1709 VPL can receive information from TPL in the same place if that is
1710 enabled.
1711
1712config VPL_LIBCOMMON_SUPPORT
1713 bool "Support common libraries"
1714 default y if SPL_LIBCOMMON_SUPPORT
1715 help
1716 Enable support for common U-Boot libraries within VPL. See
1717 SPL_LIBCOMMON_SUPPORT for details.
1718
1719config VPL_LIBGENERIC_SUPPORT
1720 bool "Support generic libraries"
1721 default y if SPL_LIBGENERIC_SUPPORT
1722 help
1723 Enable support for generic U-Boot libraries within VPL. These
1724 libraries include generic code to deal with device tree, hashing,
1725 printf(), compression and the like. This option is enabled on many
1726 boards. Enable this option to build the code in lib/ as part of a
1727 VPL build.
1728
1729config VPL_DRIVERS_MISC
1730 bool "Support misc drivers"
1731 default y if TPL_DRIVERS_MISC
1732 help
1733 Enable miscellaneous drivers in VPL. These drivers perform various
1734 tasks that don't fall nicely into other categories, Enable this
1735 option to build the drivers in drivers/misc as part of a VPL
1736 build, for those that support building in VPL (not all drivers do).
1737
1738config VPL_ENV_SUPPORT
1739 bool "Support an environment"
1740 help
1741 Enable environment support in VPL. The U-Boot environment provides
1742 a number of settings (essentially name/value pairs) which can
1743 control many aspects of U-Boot's operation. Enabling this option will
1744 make env_get() and env_set() available in VSPL.
1745
1746config VPL_GPIO
1747 bool "Support GPIO in VPL"
1748 default y if SPL_GPIO
1749 help
1750 Enable support for GPIOs (General-purpose Input/Output) in VPL.
1751 GPIOs allow U-Boot to read the state of an input line (high or
1752 low) and set the state of an output line. This can be used to
1753 drive LEDs, control power to various system parts and read user
1754 input. GPIOs can be useful in VPL to enable a 'sign-of-life' LED,
1755 for example. Enable this option to build the drivers in
1756 drivers/gpio as part of a VPL build.
1757
1758config VPL_HANDOFF
1759 bool "Pass hand-off information from VPL to SPL and U-Boot proper"
1760 depends on HANDOFF && VPL_BLOBLIST
1761 default y
1762 help
1763 This option enables VPL to write handoff information. This can be
1764 used to pass information like the size of SDRAM from VPL to U-Boot
1765 proper. The information is also available to VPL if it is useful
1766 there.
1767
1768config VPL_HASH
1769 bool "Support hashing drivers in VPL"
1770 depends on VPL
1771 select SHA1
1772 select SHA256
1773 help
1774 Enable hashing drivers in VPL. These drivers can be used to
1775 accelerate secure boot processing in secure applications. Enable
1776 this option to build system-specific drivers for hash acceleration
1777 as part of a VPL build.
1778
1779config VPL_I2C_SUPPORT
1780 bool "Support I2C in VPL"
1781 default y if SPL_I2C_SUPPORT
1782 help
1783 Enable support for the I2C bus in VPL. Vee SPL_I2C_SUPPORT for
1784 details.
1785
1786config VPL_PCH_SUPPORT
1787 bool "Support PCH drivers"
1788 default y if TPL_PCH_SUPPORT
1789 help
1790 Enable support for PCH (Platform Controller Hub) devices in VPL.
1791 These are used to set up GPIOs and the SPI peripheral early in
1792 boot. This enables the drivers in drivers/pch as part of a VPL
1793 build.
1794
1795config VPL_PCI
1796 bool "Support PCI drivers"
1797 default y if SPL_PCI
1798 help
1799 Enable support for PCI in VPL. For platforms that need PCI to boot,
1800 or must perform some init using PCI in VPL, this provides the
1801 necessary driver support. This enables the drivers in drivers/pci
1802 as part of a VPL build.
1803
1804config VPL_RTC
1805 bool "Support RTC drivers"
1806 help
1807 Enable RTC (Real-time Clock) support in VPL. This includes support
1808 for reading and setting the time. Some RTC devices also have some
1809 non-volatile (battery-backed) memory which is accessible if
1810 needed. This enables the drivers in drivers/rtc as part of a VPL
1811 build.
1812
1813config VPL_SERIAL
1814 bool "Support serial"
1815 default y if TPL_SERIAL
1816 select VPL_PRINTF
1817 select VPL_STRTO
1818 help
1819 Enable support for serial in VPL. See SPL_SERIAL_SUPPORT for
1820 details.
1821
1822config VPL_SIZE_LIMIT
1823 hex "Maximum size of VPL image"
1824 depends on VPL
1825 default 0x0
1826 help
1827 Specifies the maximum length of the U-Boot VPL image.
1828 If this value is zero, it is ignored.
1829
1830config VPL_SPI
1831 bool "Support SPI drivers"
1832 help
1833 Enable support for using SPI in VPL. See SPL_SPI_SUPPORT for
1834 details.
1835
1836config VPL_SPI_FLASH_SUPPORT
1837 bool "Support SPI flash drivers"
1838 help
1839 Enable support for using SPI flash in VPL, and loading U-Boot from
1840 SPI flash. SPI flash (Serial Peripheral Bus flash) is named after
1841 the SPI bus that is used to connect it to a system. It is a simple
1842 but fast bidirectional 4-wire bus (clock, chip select and two data
1843 lines). This enables the drivers in drivers/mtd/spi as part of a
1844 VPL build. This normally requires VPL_SPI_SUPPORT.
1845
1846config VPL_TEXT_BASE
1847 hex "VPL Text Base"
1848 default 0x0
1849 help
1850 The address in memory that VPL will be running from.
1851
1852endif # VPL
1853
Eugen Hristev0be07872019-05-24 09:38:10 +03001854config SPL_AT91_MCK_BYPASS
1855 bool "Use external clock signal as a source of main clock for AT91 platforms"
1856 depends on ARCH_AT91
Eugen Hristev0be07872019-05-24 09:38:10 +03001857 help
1858 Use external 8 to 24 Mhz clock signal as source of main clock instead
1859 of an external crystal oscillator.
1860 This option disables the internal driving on the XOUT pin.
1861 The external source has to provide a stable clock on the XIN pin.
1862 If this option is disabled, the SoC expects a crystal oscillator
1863 that needs driving on both XIN and XOUT lines.
1864
Tom Rini226498b2017-05-22 19:21:57 +00001865endif # SPL
Simon Glass11bde1c2016-09-13 07:05:23 -06001866endmenu