blob: 6ad079a1284303d737e9db0f10b053551dde7b22 [file] [log] [blame]
Masahiro Yamadaf3e12b72014-09-16 16:32:58 +09001menu "Library routines"
2
Marek Szyprowski795dc7d2020-06-03 14:43:40 +02003config ADDR_MAP
4 bool "Enable support for non-identity virtual-physical mappings"
5 help
6 Enables helper code for implementing non-identity virtual-physical
7 memory mappings for 32bit CPUs.
8
Bin Meng0a5fee52021-02-25 17:22:36 +08009 This library only works in the post-relocation phase.
10
Marek Szyprowski795dc7d2020-06-03 14:43:40 +020011config SYS_NUM_ADDR_MAP
12 int "Size of the address-map table"
13 depends on ADDR_MAP
14 default 16
15 help
16 Sets the number of entries in the virtual-physical mapping table.
17
Tom Rini1f173632022-11-16 13:10:38 -050018config SYS_TIMER_COUNTS_DOWN
Marek Vasut88e5a202023-03-19 04:13:02 +010019 bool "System timer counts down rather than up"
Tom Rini1f173632022-11-16 13:10:38 -050020
Simon Glassef9e7622021-11-24 09:26:42 -070021config PHYSMEM
22 bool "Access to physical memory region (> 4G)"
23 help
24 Some basic support is provided for operations on memory not
25 normally accessible to 32-bit U-Boot - e.g. some architectures
26 support access to more than 4G of memory on 32-bit
27 machines using physical address extension or similar.
28 Enable this to access this basic support, which only supports clearing
29 the memory.
30
Adam Ford02bf5362017-08-11 09:46:05 -050031config BCH
32 bool "Enable Software based BCH ECC"
33 help
34 Enables software based BCH ECC algorithm present in lib/bch.c
35 This is used by SoC platforms which do not have built-in ELM
36 hardware engine required for BCH ECC correction.
37
Simon Glassdd7fb9b2019-12-06 21:41:34 -070038config BINMAN_FDT
39 bool "Allow access to binman information in the device tree"
Bin Mengc5e8b312021-02-03 21:20:02 +080040 depends on BINMAN && DM && OF_CONTROL
Bin Mengc9155f12021-05-10 20:23:36 +080041 default y if OF_SEPARATE || OF_EMBED
Simon Glassdd7fb9b2019-12-06 21:41:34 -070042 help
43 This enables U-Boot to access information about binman entries,
44 stored in the device tree in a binman node. Typical uses are to
45 locate entries in the firmware image. See binman.h for the available
46 functionality.
47
Masahiro Yamada3f053fe2014-09-16 16:32:59 +090048config CC_OPTIMIZE_LIBS_FOR_SPEED
49 bool "Optimize libraries for speed"
50 help
51 Enabling this option will pass "-O2" to gcc when compiling
52 under "lib" directory.
53
54 If unsure, say N.
55
Simon Glassc17db992021-07-02 12:36:17 -060056config CHARSET
57 bool
Simon Glassc17db992021-07-02 12:36:17 -060058
Faiz Abbas6199fb12018-02-06 19:15:58 +053059config DYNAMIC_CRC_TABLE
60 bool "Enable Dynamic tables for CRC"
61 help
62 Enable this option to calculate entries for CRC tables at runtime.
63 This can be helpful when reducing the size of the build image
64
Bin Mengb95e9db2018-10-15 02:21:15 -070065config HAVE_ARCH_IOMAP
66 bool
67 help
68 Enable this option if architecture provides io{read,write}{8,16,32}
69 I/O accessor functions.
70
Masahiro Yamada9520b712014-10-24 01:30:43 +090071config HAVE_PRIVATE_LIBGCC
72 bool
73
Adam Ford70c8f052018-02-06 12:14:28 -060074config LIB_UUID
75 bool
Caleb Connolly2f4f0be2024-08-30 13:34:32 +010076 select SHA1
Adam Ford70c8f052018-02-06 12:14:28 -060077
AKASHI Takahirod1e31582023-10-26 14:31:31 -040078config RANDOM_UUID
79 bool "GPT Random UUID generation"
80 select LIB_UUID
81 help
82 Enable the generation of partitions with random UUIDs if none
83 are provided.
84
Simon Glass8090d8d2023-02-22 09:34:11 -070085config SPL_LIB_UUID
86 depends on SPL
87 bool
88
Kautuk Consula51bb742022-12-07 17:12:34 +053089config SEMIHOSTING
90 bool "Support semihosting"
Kautuk Consulc86cb4a2022-12-07 17:12:35 +053091 depends on ARM || RISCV
Kautuk Consula51bb742022-12-07 17:12:34 +053092 help
93 Semihosting is a method for a target to communicate with a host
94 debugger. It uses special instructions which the debugger will trap
95 on and interpret. This allows U-Boot to read/write files, print to
96 the console, and execute arbitrary commands on the host system.
97
98 Enabling this option will add support for reading and writing files
99 on the host system. If you don't have a debugger attached then trying
100 to do this will likely cause U-Boot to hang. Say 'n' if you are unsure.
101
102config SEMIHOSTING_FALLBACK
103 bool "Recover gracefully when semihosting fails"
Sean Andersonbf641f22023-10-27 16:40:15 -0400104 depends on SEMIHOSTING
Kautuk Consula51bb742022-12-07 17:12:34 +0530105 default y
106 help
107 Normally, if U-Boot makes a semihosting call and no debugger is
108 attached, then it will panic due to a synchronous abort
109 exception. This config adds an exception handler which will allow
110 U-Boot to recover. Say 'y' if unsure.
111
112config SPL_SEMIHOSTING
113 bool "Support semihosting in SPL"
Kautuk Consulc86cb4a2022-12-07 17:12:35 +0530114 depends on SPL && (ARM || RISCV)
Kautuk Consula51bb742022-12-07 17:12:34 +0530115 help
116 Semihosting is a method for a target to communicate with a host
117 debugger. It uses special instructions which the debugger will trap
118 on and interpret. This allows U-Boot to read/write files, print to
119 the console, and execute arbitrary commands on the host system.
120
121 Enabling this option will add support for reading and writing files
122 on the host system. If you don't have a debugger attached then trying
123 to do this will likely cause U-Boot to hang. Say 'n' if you are unsure.
124
125config SPL_SEMIHOSTING_FALLBACK
126 bool "Recover gracefully when semihosting fails in SPL"
Sean Andersonbf641f22023-10-27 16:40:15 -0400127 depends on SPL_SEMIHOSTING
Kautuk Consulc86cb4a2022-12-07 17:12:35 +0530128 select ARMV8_SPL_EXCEPTION_VECTORS if ARM64
Kautuk Consula51bb742022-12-07 17:12:34 +0530129 default y
130 help
131 Normally, if U-Boot makes a semihosting call and no debugger is
132 attached, then it will panic due to a synchronous abort
133 exception. This config adds an exception handler which will allow
134 U-Boot to recover. Say 'y' if unsure.
135
Alex Kiernan5b404282018-04-19 04:32:54 +0000136config PRINTF
137 bool
138 default y
139
140config SPL_PRINTF
141 bool
142 select SPL_SPRINTF
Simon Glass7611ac62019-09-25 08:56:27 -0600143 select SPL_STRTO if !SPL_USE_TINY_PRINTF
Alex Kiernan5b404282018-04-19 04:32:54 +0000144
145config TPL_PRINTF
146 bool
147 select TPL_SPRINTF
Simon Glass7611ac62019-09-25 08:56:27 -0600148 select TPL_STRTO if !TPL_USE_TINY_PRINTF
Alex Kiernan5b404282018-04-19 04:32:54 +0000149
Simon Glasse7ca7da2022-04-30 00:56:53 -0600150config VPL_PRINTF
151 bool
152 select VPL_SPRINTF
153 select VPL_STRTO if !VPL_USE_TINY_PRINTF
154
Alex Kiernan5b404282018-04-19 04:32:54 +0000155config SPRINTF
156 bool
157 default y
158
159config SPL_SPRINTF
160 bool
161
162config TPL_SPRINTF
163 bool
164
Simon Glasse7ca7da2022-04-30 00:56:53 -0600165config VPL_SPRINTF
166 bool
167
Andrii Anisov6e29ac42020-08-06 12:42:52 +0300168config SSCANF
169 bool
Andrii Anisov6e29ac42020-08-06 12:42:52 +0300170
Alex Kiernan5b404282018-04-19 04:32:54 +0000171config STRTO
172 bool
173 default y
174
175config SPL_STRTO
176 bool
177
178config TPL_STRTO
179 bool
180
Simon Glasse7ca7da2022-04-30 00:56:53 -0600181config VPL_STRTO
182 bool
183
Alex Kiernanc568bcb2018-05-29 15:30:52 +0000184config IMAGE_SPARSE
185 bool
186
187config IMAGE_SPARSE_FILLBUF_SIZE
188 hex "Android sparse image CHUNK_TYPE_FILL buffer size"
189 default 0x80000
190 depends on IMAGE_SPARSE
191 help
192 Set the size of the fill buffer used when processing CHUNK_TYPE_FILL
193 chunks.
194
Masahiro Yamada9520b712014-10-24 01:30:43 +0900195config USE_PRIVATE_LIBGCC
196 bool "Use private libgcc"
197 depends on HAVE_PRIVATE_LIBGCC
Marek Vasut4e0126e2016-05-26 18:01:47 +0200198 default y if HAVE_PRIVATE_LIBGCC && ((ARM && !ARM64) || MIPS)
Masahiro Yamada9520b712014-10-24 01:30:43 +0900199 help
200 This option allows you to use the built-in libgcc implementation
Masahiro Yamada1c6a5e42016-03-30 20:17:42 +0900201 of U-Boot instead of the one provided by the compiler.
Masahiro Yamada9520b712014-10-24 01:30:43 +0900202 If unsure, say N.
203
Masahiro Yamadae301fa02014-10-24 01:30:40 +0900204config SYS_HZ
205 int
206 default 1000
207 help
208 The frequency of the timer returned by get_timer().
209 get_timer() must operate in milliseconds and this option must be
210 set to 1000.
211
Simon Glass7611ac62019-09-25 08:56:27 -0600212config SPL_USE_TINY_PRINTF
Thomas Hebb0c12fb52019-11-10 08:23:53 -0800213 bool "Enable tiny printf() version in SPL"
Simon Glass7611ac62019-09-25 08:56:27 -0600214 depends on SPL
Tom Rinid0502b72019-06-08 12:46:18 -0400215 default y
Stefan Roese363ab7b2015-11-23 07:00:22 +0100216 help
217 This option enables a tiny, stripped down printf version.
218 This should only be used in space limited environments,
219 like SPL versions with hard memory limits. This version
220 reduces the code size by about 2.5KiB on armv7.
221
222 The supported format specifiers are %c, %s, %u/%d and %x.
223
Simon Glass7611ac62019-09-25 08:56:27 -0600224config TPL_USE_TINY_PRINTF
Thomas Hebb0c12fb52019-11-10 08:23:53 -0800225 bool "Enable tiny printf() version in TPL"
Simon Glass7611ac62019-09-25 08:56:27 -0600226 depends on TPL
227 default y if SPL_USE_TINY_PRINTF
228 help
229 This option enables a tiny, stripped down printf version.
230 This should only be used in space limited environments,
231 like SPL versions with hard memory limits. This version
232 reduces the code size by about 2.5KiB on armv7.
233
234 The supported format specifiers are %c, %s, %u/%d and %x.
235
Simon Glasse7ca7da2022-04-30 00:56:53 -0600236config VPL_USE_TINY_PRINTF
237 bool "Enable tiny printf() version for VPL"
238 depends on VPL
239 help
240 This option enables a tiny, stripped down printf version.
241 This should only be used in space limited environments,
242 like SPL versions with hard memory limits. This version
243 reduces the code size by about 2.5KiB on armv7.
244
245 The supported format specifiers are %c, %s, %u/%d and %x.
246
Masahiro Yamadaacede7a2017-12-04 12:37:00 +0900247config PANIC_HANG
248 bool "Do not reset the system on fatal error"
249 help
250 Define this option to stop the system in case of a fatal error,
251 so that you have to reset it manually. This is probably NOT a good
252 idea for an embedded system where you want the system to reboot
253 automatically as fast as possible, but it may be useful during
254 development since you can try to debug the conditions that lead to
255 the situation.
256
Joe Hershberger937d3e82015-04-21 17:02:42 -0500257config REGEX
258 bool "Enable regular expression support"
Joe Hershberger8ab8b722015-06-22 17:57:36 -0500259 default y if NET
Joe Hershberger937d3e82015-04-21 17:02:42 -0500260 help
261 If this variable is defined, U-Boot is linked against the
262 SLRE (Super Light Regular Expression) library, which adds
263 regex support to some commands, for example "env grep" and
264 "setexpr".
265
Adam Ford38003a62018-02-06 10:18:18 -0600266choice
267 prompt "Pseudo-random library support type"
Heinrich Schuchardtb2e67a22020-01-19 19:28:12 +0100268 depends on NET_RANDOM_ETHADDR || RANDOM_UUID || CMD_UUID || \
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +0100269 RNG_SANDBOX || UT_LIB && AES || FAT_WRITE
Adam Ford38003a62018-02-06 10:18:18 -0600270 default LIB_RAND
Masahiro Yamada2743c072015-06-11 19:16:43 +0900271 help
Adam Ford38003a62018-02-06 10:18:18 -0600272 Select the library to provide pseudo-random number generator
273 functions. LIB_HW_RAND supports certain hardware engines that
274 provide this functionality. If in doubt, select LIB_RAND.
275
276config LIB_RAND
277 bool "Pseudo-random library support"
278
279config LIB_HW_RAND
Marcin Juszkiewicza360c2c2020-05-26 19:07:15 +0200280 bool "HW Engine for random library support"
Adam Ford38003a62018-02-06 10:18:18 -0600281
282endchoice
Michal Simek2c1b1db2015-05-25 11:37:22 +0200283
Simon Glassa6cee932021-12-01 09:02:36 -0700284config SUPPORT_ACPI
285 bool
286 help
287 Enable this if your arch or board can support generating ACPI
288 (Advanced Configuration and Power Interface) tables. In this case
289 U-Boot can generate these tables and pass them to the Operating
290 System.
291
Simon Glasse264be42023-05-04 16:54:57 -0600292config ACPI
293 bool "Enable support for ACPI libraries"
294 depends on SUPPORT_ACPI
295 help
296 Provides library functions for dealing with ACPI tables. This does
297 not necessarily include generation of tables
298 (see GENERATE_ACPI_TABLE), but allows for tables to be located.
299
Simon Glass1a2fcc22023-09-19 21:00:06 -0600300config SPL_ACPI
301 bool "Enable support for ACPI libraries in SPL"
302 depends on SPL && SUPPORT_ACPI
303 help
304 Provides library functions for dealing with ACPI tables in SPL. This
305 does not necessarily include generation of tables
306 (see GENERATE_ACPI_TABLE), but allows for tables to be located.
307
Simon Glassa6cee932021-12-01 09:02:36 -0700308config GENERATE_ACPI_TABLE
309 bool "Generate an ACPI (Advanced Configuration and Power Interface) table"
Simon Glasse264be42023-05-04 16:54:57 -0600310 depends on ACPI
Simon Glassa6cee932021-12-01 09:02:36 -0700311 select QFW if QEMU
312 help
313 The Advanced Configuration and Power Interface (ACPI) specification
314 provides an open standard for device configuration and management
315 by the operating system. It defines platform-independent interfaces
316 for configuration and power management monitoring.
317
Patrick Rudolph2f6f8d92024-10-23 15:20:13 +0200318config ACPI_PARKING_PROTOCOL
319 bool "Support ACPI parking protocol method"
320 depends on GENERATE_ACPI_TABLE
321 depends on ARMV8_MULTIENTRY
322 depends on BLOBLIST_TABLES
323 default y if !SEC_FIRMWARE_ARMV8_PSCI && !ARMV8_PSCI
324 help
325 Say Y here to support "ACPI parking protocol" enable method
326 for booting Linux.
327
328 To use this feature, you must do:
329 - Bring secondary CPUs into U-Boot proper in a board-specific
330 manner. This must be done *after* relocation. Otherwise, the
331 secondary CPUs will spin in unprotected memory-area because the
332 master CPU protects the relocated spin code.
333
Simon Glasse2f94ae2017-04-02 09:50:28 -0600334config SPL_TINY_MEMSET
335 bool "Use a very small memset() in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -0400336 depends on SPL
Simon Glasse2f94ae2017-04-02 09:50:28 -0600337 help
338 The faster memset() is the arch-specific one (if available) enabled
339 by CONFIG_USE_ARCH_MEMSET. If that is not enabled, we can still get
340 better performance by writing a word at a time. But in very
Chris Packham1c3b7ba2019-01-13 22:13:28 +1300341 size-constrained environments even this may be too big. Enable this
Simon Glasse2f94ae2017-04-02 09:50:28 -0600342 option to reduce code size slightly at the cost of some speed.
343
Philipp Tomsichfefc4ec2017-08-03 22:52:04 +0200344config TPL_TINY_MEMSET
345 bool "Use a very small memset() in TPL"
Tom Rini36a4ca02022-06-08 08:24:39 -0400346 depends on TPL
Philipp Tomsichfefc4ec2017-08-03 22:52:04 +0200347 help
348 The faster memset() is the arch-specific one (if available) enabled
349 by CONFIG_USE_ARCH_MEMSET. If that is not enabled, we can still get
350 better performance by writing a word at a time. But in very
Chris Packham1c3b7ba2019-01-13 22:13:28 +1300351 size-constrained environments even this may be too big. Enable this
Philipp Tomsichfefc4ec2017-08-03 22:52:04 +0200352 option to reduce code size slightly at the cost of some speed.
353
Boris Brezillon627dc182017-02-27 18:22:05 +0100354config RBTREE
355 bool
356
Nandor Hand5ea84a2017-11-08 15:35:14 +0000357config BITREVERSE
358 bool "Bit reverse library from Linux"
359
Simon Glassbfce7fc2019-04-08 13:20:51 -0600360config TRACE
361 bool "Support for tracing of function calls and timing"
362 imply CMD_TRACE
Simon Glass6b5424a2022-12-21 16:08:26 -0700363 imply TIMER_EARLY
Simon Glassbfce7fc2019-04-08 13:20:51 -0600364 help
365 Enables function tracing within U-Boot. This allows recording of call
366 traces including timing information. The command can write data to
367 memory for exporting for analysis (e.g. using bootchart).
Vincent Stehlé28c23622024-04-11 18:44:02 +0200368 See doc/develop/trace.rst for full details.
Simon Glassbfce7fc2019-04-08 13:20:51 -0600369
Simon Glass445078e2019-04-08 13:20:52 -0600370config TRACE_BUFFER_SIZE
371 hex "Size of trace buffer in U-Boot"
372 depends on TRACE
373 default 0x01000000
374 help
375 Sets the size of the trace buffer in U-Boot. This is allocated from
376 memory during relocation. If this buffer is too small, the trace
377 history will be truncated, with later records omitted.
378
379 If early trace is enabled (i.e. before relocation), this buffer must
380 be large enough to include all the data from the early trace buffer as
381 well, since this is copied over to the main buffer during relocation.
382
383 A trace record is emitted for each function call and each record is
384 12 bytes (see struct trace_call). A suggested minimum size is 1MB. If
385 the size is too small then 'trace stats' will show a message saying
386 how many records were dropped due to buffer overflow.
387
Heinrich Schuchardtc1a73792019-06-02 13:30:09 +0200388config TRACE_CALL_DEPTH_LIMIT
389 int "Trace call depth limit"
390 depends on TRACE
391 default 15
392 help
393 Sets the maximum call depth up to which function calls are recorded.
394
Simon Glass445078e2019-04-08 13:20:52 -0600395config TRACE_EARLY
396 bool "Enable tracing before relocation"
397 depends on TRACE
398 help
399 Sometimes it is helpful to trace execution of U-Boot before
400 relocation. This is possible by using a arch-specific, fixed buffer
401 position in memory. Enable this option to start tracing as early as
402 possible after U-Boot starts.
403
404config TRACE_EARLY_SIZE
405 hex "Size of early trace buffer in U-Boot"
406 depends on TRACE_EARLY
407 default 0x00100000
408 help
409 Sets the size of the early trace buffer in bytes. This is used to hold
410 tracing information before relocation.
411
Heinrich Schuchardtc1a73792019-06-02 13:30:09 +0200412config TRACE_EARLY_CALL_DEPTH_LIMIT
413 int "Early trace call depth limit"
414 depends on TRACE_EARLY
Simon Glass971574d2023-01-15 14:15:44 -0700415 default 15
Heinrich Schuchardtc1a73792019-06-02 13:30:09 +0200416 help
417 Sets the maximum call depth up to which function calls are recorded
418 during early tracing.
419
Simon Glass445078e2019-04-08 13:20:52 -0600420config TRACE_EARLY_ADDR
421 hex "Address of early trace buffer in U-Boot"
422 depends on TRACE_EARLY
Sughosh Ganu3f768682024-08-26 17:29:32 +0530423 default 0x00200000
Simon Glass445078e2019-04-08 13:20:52 -0600424 help
425 Sets the address of the early trace buffer in U-Boot. This memory
426 must be accessible before relocation.
427
428 A trace record is emitted for each function call and each record is
429 12 bytes (see struct trace_call). A suggested minimum size is 1MB. If
430 the size is too small then the message which says the amount of early
431 data being coped will the the same as the
432
Loic Poulain12797e62021-11-25 18:16:14 +0100433config CIRCBUF
434 bool "Enable circular buffer support"
435
Michal Simekdd5000ef2024-04-16 08:55:16 +0200436source "lib/dhry/Kconfig"
Simon Glass99dbe4b2015-06-23 15:38:23 -0600437
Simon Glass528fdd12017-04-26 22:27:49 -0600438menu "Security support"
439
440config AES
441 bool "Support the AES algorithm"
442 help
443 This provides a means to encrypt and decrypt data using the AES
444 (Advanced Encryption Standard). This algorithm uses a symetric key
445 and is widely used as a streaming cipher. Different key lengths are
446 supported by the algorithm but only a 128-bit key is supported at
447 present.
448
Michal Simekdd5000ef2024-04-16 08:55:16 +0200449source "lib/ecdsa/Kconfig"
450source "lib/rsa/Kconfig"
451source "lib/crypto/Kconfig"
452source "lib/crypt/Kconfig"
Ruchika Gupta2c3822e2015-01-23 16:01:51 +0530453
Simon Glass350497c2015-08-22 18:31:19 -0600454config TPM
455 bool "Trusted Platform Module (TPM) Support"
Simon Glasscf294b02015-10-03 06:39:36 -0600456 depends on DM
Sughosh Ganu9737fab2022-07-22 21:32:04 +0530457 imply DM_RNG
Eddie James8ed7bb32023-10-24 10:43:49 -0500458 select SHA1
Simon Glass350497c2015-08-22 18:31:19 -0600459 help
460 This enables support for TPMs which can be used to provide security
461 features for your board. The TPM can be connected via LPC or I2C
462 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
463 command to interactive the TPM. Driver model support is provided
464 for the low-level TPM interface, but only one TPM is supported at
465 a time by the TPM library.
Ilias Apalodimas1e665f92024-06-23 14:48:18 +0300466 For size reasons only SHA1 is selected which is supported on TPM1.2.
467 If you want a fully functional TPM enable all hashing algorithms.
468 If you enabled measured boot all hashing algorithms are selected.
Simon Glass350497c2015-08-22 18:31:19 -0600469
Simon Glass93a45b12018-10-01 12:22:19 -0600470config SPL_TPM
471 bool "Trusted Platform Module (TPM) Support in SPL"
472 depends on SPL_DM
Simon Glass2b95b492023-01-07 14:57:20 -0700473 imply SPL_CRC8
Simon Glass93a45b12018-10-01 12:22:19 -0600474 help
475 This enables support for TPMs which can be used to provide security
476 features for your board. The TPM can be connected via LPC or I2C
477 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
478 command to interactive the TPM. Driver model support is provided
479 for the low-level TPM interface, but only one TPM is supported at
480 a time by the TPM library.
481
482config TPL_TPM
483 bool "Trusted Platform Module (TPM) Support in TPL"
484 depends on TPL_DM
485 help
486 This enables support for TPMs which can be used to provide security
487 features for your board. The TPM can be connected via LPC or I2C
488 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
489 command to interactive the TPM. Driver model support is provided
490 for the low-level TPM interface, but only one TPM is supported at
491 a time by the TPM library.
492
Simon Glasse7ca7da2022-04-30 00:56:53 -0600493config VPL_TPM
494 bool "Trusted Platform Module (TPM) Support in VPL"
495 depends on VPL_DM
496 help
497 This enables support for TPMs which can be used to provide security
498 features for your board. The TPM can be connected via LPC or I2C
499 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
500 command to interactive the TPM. Driver model support is provided
501 for the low-level TPM interface, but only one TPM is supported at
502 a time by the TPM library.
503
Simon Glass528fdd12017-04-26 22:27:49 -0600504endmenu
505
Igor Opaniuk525d1d82018-06-03 21:56:37 +0300506menu "Android Verified Boot"
507
508config LIBAVB
509 bool "Android Verified Boot 2.0 support"
510 depends on ANDROID_BOOT_IMAGE
Igor Opaniuk525d1d82018-06-03 21:56:37 +0300511 help
512 This enables support of Android Verified Boot 2.0 which can be used
513 to assure the end user of the integrity of the software running on a
514 device. Introduces such features as boot chain of trust, rollback
515 protection etc.
516
517endmenu
518
gaurav ranaef201592015-02-20 12:51:46 +0530519menu "Hashing Support"
520
Qu Wenruob98e8a22021-12-27 14:12:07 +0800521config BLAKE2
522 bool "Enable BLAKE2 support"
523 help
524 This option enables support of hashing using BLAKE2B algorithm.
525 The hash is calculated in software.
526 The BLAKE2 algorithm produces a hash value (digest) between 1 and
527 64 bytes.
528
gaurav ranaef201592015-02-20 12:51:46 +0530529config SHA1
530 bool "Enable SHA1 support"
531 help
532 This option enables support of hashing using SHA1 algorithm.
533 The hash is calculated in software.
534 The SHA1 algorithm produces a 160-bit (20-byte) hash value
535 (digest).
536
537config SHA256
538 bool "Enable SHA256 support"
539 help
540 This option enables support of hashing using SHA256 algorithm.
541 The hash is calculated in software.
542 The SHA256 algorithm produces a 256-bit (32-byte) hash value
543 (digest).
544
Reuben Dowle1908fd92020-04-16 17:36:52 +1200545config SHA512
546 bool "Enable SHA512 support"
Manorit Chawdhrya58132a2023-07-14 11:22:39 +0530547 default y if TI_SECURE_DEVICE && FIT_SIGNATURE
Reuben Dowle1908fd92020-04-16 17:36:52 +1200548 help
549 This option enables support of hashing using SHA512 algorithm.
550 The hash is calculated in software.
551 The SHA512 algorithm produces a 512-bit (64-byte) hash value
552 (digest).
553
554config SHA384
555 bool "Enable SHA384 support"
Alexandru Gagniuc5df5d692021-09-02 19:54:18 -0500556 select SHA512
Reuben Dowle1908fd92020-04-16 17:36:52 +1200557 help
558 This option enables support of hashing using SHA384 algorithm.
Alexandru Gagniuc5df5d692021-09-02 19:54:18 -0500559 The hash is calculated in software. This is also selects SHA512,
560 because these implementations share the bulk of the code..
Reuben Dowle1908fd92020-04-16 17:36:52 +1200561 The SHA384 algorithm produces a 384-bit (48-byte) hash value
562 (digest).
563
gaurav ranaef201592015-02-20 12:51:46 +0530564config SHA_HW_ACCEL
Heinrich Schuchardtd42f81f2021-05-14 07:08:27 +0200565 bool "Enable hardware acceleration for SHA hash functions"
gaurav ranaef201592015-02-20 12:51:46 +0530566 help
Heinrich Schuchardtd42f81f2021-05-14 07:08:27 +0200567 This option enables hardware acceleration for the SHA1 and SHA256
568 hashing algorithms. This affects the 'hash' command and also the
569 hash_lookup_algo() function.
570
Simon Glassf7b37c22021-09-25 19:43:17 -0600571if SPL
572
Oleksandr Suvorov15a23ca2023-08-03 19:05:40 +0300573config SPL_CRC32
574 bool "Enable CRC32 support in SPL"
575 default y if SPL_LEGACY_IMAGE_SUPPORT || SPL_EFI_PARTITION
576 default y if SPL_ENV_SUPPORT || TPL_BLOBLIST
577 help
578 This option enables support of hashing using CRC32 algorithm.
579 The CRC32 algorithm produces 32-bit checksum value. For FIT
580 images, this is the least secure type of checksum, suitable for
581 detected accidental image corruption. For secure applications you
582 should consider SHA256 or SHA384.
583
Simon Glassf7b37c22021-09-25 19:43:17 -0600584config SPL_SHA1
585 bool "Enable SHA1 support in SPL"
586 default y if SHA1
587 help
588 This option enables support of hashing using SHA1 algorithm.
589 The hash is calculated in software.
590 The SHA1 algorithm produces a 160-bit (20-byte) hash value
591 (digest).
592
593config SPL_SHA256
594 bool "Enable SHA256 support in SPL"
595 default y if SHA256
596 help
597 This option enables support of hashing using SHA256 algorithm.
598 The hash is calculated in software.
599 The SHA256 algorithm produces a 256-bit (32-byte) hash value
600 (digest).
601
602config SPL_SHA512
603 bool "Enable SHA512 support in SPL"
604 default y if SHA512
605 help
606 This option enables support of hashing using SHA512 algorithm.
607 The hash is calculated in software.
608 The SHA512 algorithm produces a 512-bit (64-byte) hash value
609 (digest).
610
611config SPL_SHA384
612 bool "Enable SHA384 support in SPL"
613 default y if SHA384
614 select SPL_SHA512
615 help
616 This option enables support of hashing using SHA384 algorithm.
617 The hash is calculated in software. This is also selects SHA512,
618 because these implementations share the bulk of the code..
619 The SHA384 algorithm produces a 384-bit (48-byte) hash value
620 (digest).
621
Simon Glass383dd572021-09-25 19:43:18 -0600622config SPL_SHA_HW_ACCEL
623 bool "Enable hardware acceleration for SHA hash functions"
624 default y if SHA_HW_ACCEL
625 help
626 This option enables hardware acceleration for the SHA1 and SHA256
627 hashing algorithms. This affects the 'hash' command and also the
628 hash_lookup_algo() function.
629
630config SPL_SHA_PROG_HW_ACCEL
631 bool "Enable Progressive hashing support using hardware in SPL"
632 depends on SHA_PROG_HW_ACCEL
633 default y
634 help
635 This option enables hardware-acceleration for SHA progressive
636 hashing.
637 Data can be streamed in a block at a time and the hashing is
638 performed in hardware.
639
Simon Glassf7b37c22021-09-25 19:43:17 -0600640endif
641
Simon Glass540883b2023-02-22 09:34:01 -0700642config VPL_SHA1
643 bool "Enable SHA1 support in VPL"
644 depends on VPL
645 default y if SHA1
646 help
647 This option enables support of hashing using SHA1 algorithm.
648 The hash is calculated in software.
649 The SHA1 algorithm produces a 160-bit (20-byte) hash value
650 (digest).
651
652config VPL_SHA256
653 bool "Enable SHA256 support in VPL"
654 depends on VPL
655 default y if SHA256
656 help
657 This option enables support of hashing using SHA256 algorithm.
658 The hash is calculated in software.
659 The SHA256 algorithm produces a 256-bit (32-byte) hash value
660 (digest).
661
Heinrich Schuchardtd42f81f2021-05-14 07:08:27 +0200662if SHA_HW_ACCEL
663
664config SHA512_HW_ACCEL
665 bool "Enable hardware acceleration for SHA512"
Alexandru Gagniuc5df5d692021-09-02 19:54:18 -0500666 depends on SHA512
Heinrich Schuchardtd42f81f2021-05-14 07:08:27 +0200667 help
668 This option enables hardware acceleration for the SHA384 and SHA512
669 hashing algorithms. This affects the 'hash' command and also the
670 hash_lookup_algo() function.
gaurav ranaef201592015-02-20 12:51:46 +0530671
672config SHA_PROG_HW_ACCEL
673 bool "Enable Progressive hashing support using hardware"
gaurav ranaef201592015-02-20 12:51:46 +0530674 help
Joel Stanley92efc1f2021-02-17 13:50:42 +1030675 This option enables hardware-acceleration for SHA progressive
676 hashing.
677 Data can be streamed in a block at a time and the hashing is
678 performed in hardware.
Andre Przywaraf0fa1132017-03-15 01:19:05 +0000679
Heinrich Schuchardtd42f81f2021-05-14 07:08:27 +0200680endif
681
Andre Przywaraf0fa1132017-03-15 01:19:05 +0000682config MD5
Simon Glassd33d0db2020-05-06 08:03:56 -0600683 bool "Support MD5 algorithm"
684 help
685 This option enables MD5 support. MD5 is an algorithm designed
686 in 1991 that produces a 16-byte digest (or checksum) from its input
687 data. It has a number of vulnerabilities which preclude its use in
688 security applications, but it can be useful for providing a quick
689 checksum of a block of data.
690
691config SPL_MD5
692 bool "Support MD5 algorithm in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -0400693 depends on SPL
Simon Glassd33d0db2020-05-06 08:03:56 -0600694 help
695 This option enables MD5 support in SPL. MD5 is an algorithm designed
696 in 1991 that produces a 16-byte digest (or checksum) from its input
697 data. It has a number of vulnerabilities which preclude its use in
698 security applications, but it can be useful for providing a quick
699 checksum of a block of data.
Andre Przywaraf0fa1132017-03-15 01:19:05 +0000700
Simon Glass2b95b492023-01-07 14:57:20 -0700701config CRC8
702 def_bool y
703 help
704 Enables CRC8 support in U-Boot. This is normally required. CRC8 is
705 a simple and fast checksumming algorithm which does a bytewise
706 checksum with feedback to produce an 8-bit result. The code is small
707 and it does not require a lookup table (unlike CRC32).
708
709config SPL_CRC8
710 bool "Support CRC8 in SPL"
711 depends on SPL
712 help
713 Enables CRC8 support in SPL. This is not normally required. CRC8 is
714 a simple and fast checksumming algorithm which does a bytewise
715 checksum with feedback to produce an 8-bit result. The code is small
716 and it does not require a lookup table (unlike CRC32).
717
Sean Anderson01349c12023-10-14 16:47:49 -0400718config SPL_CRC16
719 bool "Support CRC16 in SPL"
720 depends on SPL
721 help
722 Enables CRC16 support in SPL. This is not normally required.
723
Simon Glass577226c2021-09-25 19:43:24 -0600724config CRC32
725 def_bool y
726 help
727 Enables CRC32 support in U-Boot. This is normally required.
728
Marek Behúncdccc032017-09-03 17:00:23 +0200729config CRC32C
730 bool
731
Marek Behúnb139a7f2019-04-29 22:40:43 +0200732config XXHASH
733 bool
734
gaurav ranaef201592015-02-20 12:51:46 +0530735endmenu
736
Julius Wernerf41a3ca2015-10-06 20:03:53 -0700737menu "Compression Support"
738
739config LZ4
740 bool "Enable LZ4 decompression support"
741 help
742 If this option is set, support for LZ4 compressed images
743 is included. The LZ4 algorithm can run in-place as long as the
744 compressed image is loaded to the end of the output buffer, and
745 trades lower compression ratios for much faster decompression.
Patrick Delaunaycd831af2021-03-10 10:16:28 +0100746
Julius Wernerf41a3ca2015-10-06 20:03:53 -0700747 NOTE: This implements the release version of the LZ4 frame
748 format as generated by default by the 'lz4' command line tool.
749 This is not the same as the outdated, less efficient legacy
750 frame format currently (2015) implemented in the Linux kernel
751 (generated by 'lz4 -l'). The two formats are incompatible.
752
Simon Glass264aa5f2017-05-17 03:25:42 -0600753config LZMA
754 bool "Enable LZMA decompression support"
755 help
756 This enables support for LZMA (Lempel-Ziv-Markov chain algorithm),
757 a dictionary compression algorithm that provides a high compression
758 ratio and fairly fast decompression speed. See also
759 CONFIG_CMD_LZMADEC which provides a decode command.
760
Boris Brezillonaa57d0f2017-02-27 18:22:06 +0100761config LZO
Tom Rinic20bb732017-07-22 18:36:16 -0400762 bool "Enable LZO decompression support"
763 help
Oleksandr Suvorov30a4c312021-09-01 16:05:08 +0300764 This enables support for the LZO compression algorithm.
York Suna6945fe2017-08-15 11:14:43 -0700765
Marek Vasutaeaa29d2019-03-08 16:06:55 +0100766config GZIP
Heiko Schocherb93cc602019-04-29 08:59:38 +0200767 bool "Enable gzip decompression support"
Marek Vasutaeaa29d2019-03-08 16:06:55 +0100768 select ZLIB
769 default y
770 help
771 This enables support for GZIP compression algorithm.
772
Joao Marcos Costaae8abb12020-07-30 15:33:49 +0200773config ZLIB_UNCOMPRESS
774 bool "Enables zlib's uncompress() functionality"
775 help
776 This enables an extra zlib functionality: the uncompress() function,
777 which decompresses data from a buffer into another, knowing their
778 sizes. Unlike gunzip(), there is no header parsing.
779
Michael Walle3a6e3512020-05-22 14:07:36 +0200780config GZIP_COMPRESSED
781 bool
782 select ZLIB
783
Atish Patra1fa79622020-03-05 16:24:21 -0800784config BZIP2
785 bool "Enable bzip2 decompression support"
786 help
787 This enables support for BZIP2 compression algorithm.
788
Marek Vasutaeaa29d2019-03-08 16:06:55 +0100789config ZLIB
790 bool
791 default y
792 help
793 This enables ZLIB compression lib.
794
Marek Behúne87e2002019-04-29 22:40:44 +0200795config ZSTD
796 bool "Enable Zstandard decompression support"
797 select XXHASH
798 help
799 This enables Zstandard decompression library.
800
Brandon Maierdbe88da2023-01-12 10:27:45 -0600801if ZSTD
802
803config ZSTD_LIB_MINIFY
804 bool "Minify Zstandard code"
805 default y
806 help
807 This disables various optional components and changes the
808 compilation flags to prioritize space-saving.
809
810 For detailed info, see zstd's lib/README.md
811
812 https://github.com/facebook/zstd/blob/dev/lib/README.md
813
814endif
815
Simon Glass1af8b152023-02-22 09:33:54 -0700816config SPL_BZIP2
817 bool "Enable bzip2 decompression support for SPL build"
818 depends on SPL
819 help
820 This enables support for bzip2 compression algorithm for SPL boot.
821
Simon Glasse107bcd2018-11-06 15:21:30 -0700822config SPL_LZ4
823 bool "Enable LZ4 decompression support in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -0400824 depends on SPL
Simon Glasse107bcd2018-11-06 15:21:30 -0700825 help
Marcin Juszkiewicza360c2c2020-05-26 19:07:15 +0200826 This enables support for the LZ4 decompression algorithm in SPL. LZ4
Simon Glasse107bcd2018-11-06 15:21:30 -0700827 is a lossless data compression algorithm that is focused on
828 fast compression and decompression speed. It belongs to the LZ77
829 family of byte-oriented compression schemes.
830
developer6a4e1d32020-04-21 09:28:38 +0200831config SPL_LZMA
832 bool "Enable LZMA decompression support for SPL build"
Tom Rini0a83cc22022-06-10 23:03:09 -0400833 depends on SPL
developer6a4e1d32020-04-21 09:28:38 +0200834 help
Marcin Juszkiewicza360c2c2020-05-26 19:07:15 +0200835 This enables support for LZMA compression algorithm for SPL boot.
developer6a4e1d32020-04-21 09:28:38 +0200836
Simon Glasse7ca7da2022-04-30 00:56:53 -0600837config VPL_LZMA
838 bool "Enable LZMA decompression support for VPL build"
839 default y if LZMA
840 help
841 This enables support for LZMA compression algorithm for VPL boot.
842
Jean-Jacques Hiblotdbde2882017-09-15 12:57:30 +0200843config SPL_LZO
844 bool "Enable LZO decompression support in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -0400845 depends on SPL
Jean-Jacques Hiblotdbde2882017-09-15 12:57:30 +0200846 help
847 This enables support for LZO compression algorithm in the SPL.
848
York Suna6945fe2017-08-15 11:14:43 -0700849config SPL_GZIP
850 bool "Enable gzip decompression support for SPL build"
851 select SPL_ZLIB
852 help
Oleksandr Suvorov30a4c312021-09-01 16:05:08 +0300853 This enables support for the GZIP compression algorithm for SPL boot.
York Suna6945fe2017-08-15 11:14:43 -0700854
855config SPL_ZLIB
856 bool
857 help
858 This enables compression lib for SPL boot.
859
Marek Behúne87e2002019-04-29 22:40:44 +0200860config SPL_ZSTD
861 bool "Enable Zstandard decompression support in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -0400862 depends on SPL
Marek Behúne87e2002019-04-29 22:40:44 +0200863 select XXHASH
864 help
865 This enables Zstandard decompression library in the SPL.
866
Julius Wernerf41a3ca2015-10-06 20:03:53 -0700867endmenu
868
Przemyslaw Marczak37550132015-04-20 20:07:40 +0200869config ERRNO_STR
870 bool "Enable function for getting errno-related string message"
871 help
872 The function errno_str(int errno), returns a pointer to the errno
873 corresponding text message:
874 - if errno is null or positive number - a pointer to "Success" message
875 - if errno is negative - a pointer to errno related message
876
Alexey Brodkin2d2fa492018-06-05 17:17:57 +0300877config HEXDUMP
878 bool "Enable hexdump"
879 help
880 This enables functions for printing dumps of binary data.
881
Simon Glassa37fd4d2020-09-12 11:13:35 -0600882config SPL_HEXDUMP
883 bool "Enable hexdump in SPL"
Heinrich Schuchardt11df0722021-07-24 17:35:46 +0200884 depends on SPL && HEXDUMP
Simon Glassa37fd4d2020-09-12 11:13:35 -0600885 help
886 This enables functions for printing dumps of binary data in
887 SPL.
888
Sean Anderson3b4a6f52020-10-27 19:55:36 -0400889config GETOPT
890 bool "Enable getopt"
891 help
892 This enables functions for parsing command-line options.
893
Simon Glassa66c5412016-02-22 22:55:42 -0700894config OF_LIBFDT
895 bool "Enable the FDT library"
896 default y if OF_CONTROL
897 help
898 This enables the FDT library (libfdt). It provides functions for
899 accessing binary device tree images in memory, such as adding and
Anatolij Gustschinda707d42017-08-18 17:58:51 +0200900 removing nodes and properties, scanning through the tree and finding
Simon Glassa66c5412016-02-22 22:55:42 -0700901 particular compatible nodes. The library operates on a flattened
902 version of the device tree.
903
Simon Glassc48044d2019-10-27 09:47:40 -0600904config OF_LIBFDT_ASSUME_MASK
905 hex "Mask of conditions to assume for libfdt"
906 depends on OF_LIBFDT || FIT
Tom Rinif18679c2023-08-02 11:09:43 -0400907 default 0x0
Simon Glassc48044d2019-10-27 09:47:40 -0600908 help
909 Use this to change the assumptions made by libfdt about the
910 device tree it is working with. A value of 0 means that no assumptions
911 are made, and libfdt is able to deal with malicious data. A value of
912 0xff means all assumptions are made and any invalid data may cause
913 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
914
Maxime Ripard9e901ce2016-07-05 10:26:44 +0200915config OF_LIBFDT_OVERLAY
916 bool "Enable the FDT library overlay support"
Tom Rinic1e49ba2018-05-08 08:52:17 -0400917 depends on OF_LIBFDT
Praneeth Bajjuri7b71a012018-04-25 16:03:23 -0500918 default y if ARCH_OMAP2PLUS || ARCH_KEYSTONE
Maxime Ripard9e901ce2016-07-05 10:26:44 +0200919 help
920 This enables the FDT library (libfdt) overlay support.
921
Tom Rinid2cd4312022-08-02 07:33:27 -0400922config SYS_FDT_PAD
923 hex "Maximum size of the FDT memory area passeed to the OS"
924 depends on OF_LIBFDT
925 default 0x13000 if FMAN_ENET || QE || U_QE
926 default 0x3000
927 help
928 During OS boot, we allocate a region of memory within the bootmap
929 for the FDT. This is the size that we will expand the FDT that we
930 are using will be extended to be, in bytes.
931
Simon Glass8b426922016-02-22 22:55:45 -0700932config SPL_OF_LIBFDT
933 bool "Enable the FDT library for SPL"
Simon Glasse7ca7da2022-04-30 00:56:53 -0600934 depends on SPL_LIBGENERIC_SUPPORT
Simon Glass8b426922016-02-22 22:55:45 -0700935 default y if SPL_OF_CONTROL
936 help
937 This enables the FDT library (libfdt). It provides functions for
938 accessing binary device tree images in memory, such as adding and
Anatolij Gustschinda707d42017-08-18 17:58:51 +0200939 removing nodes and properties, scanning through the tree and finding
Simon Glass8b426922016-02-22 22:55:45 -0700940 particular compatible nodes. The library operates on a flattened
941 version of the device tree.
942
Simon Glassc48044d2019-10-27 09:47:40 -0600943config SPL_OF_LIBFDT_ASSUME_MASK
944 hex "Mask of conditions to assume for libfdt"
Tom Rini0a83cc22022-06-10 23:03:09 -0400945 depends on SPL_OF_LIBFDT || (FIT && SPL)
Simon Glassc48044d2019-10-27 09:47:40 -0600946 default 0xff
947 help
948 Use this to change the assumptions made by libfdt in SPL about the
949 device tree it is working with. A value of 0 means that no assumptions
950 are made, and libfdt is able to deal with malicious data. A value of
951 0xff means all assumptions are made and any invalid data may cause
952 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
953
Simon Glassca8ec4b2018-10-01 12:22:21 -0600954config TPL_OF_LIBFDT
955 bool "Enable the FDT library for TPL"
Simon Glasse7ca7da2022-04-30 00:56:53 -0600956 depends on TPL_LIBGENERIC_SUPPORT
Simon Glassca8ec4b2018-10-01 12:22:21 -0600957 default y if TPL_OF_CONTROL
958 help
959 This enables the FDT library (libfdt). It provides functions for
960 accessing binary device tree images in memory, such as adding and
961 removing nodes and properties, scanning through the tree and finding
962 particular compatible nodes. The library operates on a flattened
963 version of the device tree.
964
Simon Glassc48044d2019-10-27 09:47:40 -0600965config TPL_OF_LIBFDT_ASSUME_MASK
966 hex "Mask of conditions to assume for libfdt"
Tom Rini36a4ca02022-06-08 08:24:39 -0400967 depends on TPL_OF_LIBFDT || (FIT && TPL)
Simon Glassc48044d2019-10-27 09:47:40 -0600968 default 0xff
969 help
970 Use this to change the assumptions made by libfdt in TPL about the
971 device tree it is working with. A value of 0 means that no assumptions
972 are made, and libfdt is able to deal with malicious data. A value of
973 0xff means all assumptions are made and any invalid data may cause
974 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
975
Simon Glasse7ca7da2022-04-30 00:56:53 -0600976config VPL_OF_LIBFDT
977 bool "Enable the FDT library for VPL"
Tom Rini7fb323b2022-06-08 08:24:40 -0400978 depends on VPL
Simon Glasse7ca7da2022-04-30 00:56:53 -0600979 default y if VPL_OF_CONTROL && !VPL_OF_PLATDATA
980 help
981 This enables the FDT library (libfdt). It provides functions for
982 accessing binary device tree images in memory, such as adding and
983 removing nodes and properties, scanning through the tree and finding
984 particular compatible nodes. The library operates on a flattened
985 version of the device tree.
986
987config VPL_OF_LIBFDT_ASSUME_MASK
988 hex "Mask of conditions to assume for libfdt"
Tom Rini7fb323b2022-06-08 08:24:40 -0400989 depends on VPL_OF_LIBFDT || (FIT && VPL)
Simon Glasse7ca7da2022-04-30 00:56:53 -0600990 default 0xff
991 help
992 Use this to change the assumptions made by libfdt in SPL about the
993 device tree it is working with. A value of 0 means that no assumptions
994 are made, and libfdt is able to deal with malicious data. A value of
995 0xff means all assumptions are made and any invalid data may cause
996 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
997
Alexander Graffb228082016-08-19 01:23:23 +0200998menu "System tables"
Alexander Graf66f96e12016-08-19 01:23:29 +0200999 depends on (!EFI && !SYS_COREBOOT) || (ARM && EFI_LOADER)
Alexander Graffb228082016-08-19 01:23:23 +02001000
Simon Glass5d093f32020-11-04 09:57:25 -07001001config BLOBLIST_TABLES
1002 bool "Put tables in a bloblist"
Patrick Rudolphad392d52024-10-23 15:20:07 +02001003 depends on BLOBLIST
1004 default y if (ARM && EFI_LOADER && GENERATE_ACPI_TABLE)
1005 default n
Simon Glass5d093f32020-11-04 09:57:25 -07001006 help
Patrick Rudolphad392d52024-10-23 15:20:07 +02001007 On x86 normally tables are placed at address 0xf0000 and can be up
1008 to 64KB long. With this option, tables are instead placed in the
1009 bloblist with a pointer from 0xf0000. The size can then be larger
1010 and the tables can be placed high in memory.
1011 On other architectures the tables are always placed in high memory.
Simon Glass5d093f32020-11-04 09:57:25 -07001012
Alexander Graffb228082016-08-19 01:23:23 +02001013config GENERATE_SMBIOS_TABLE
1014 bool "Generate an SMBIOS (System Management BIOS) table"
Simon Glass5059dbe2023-09-19 21:00:13 -06001015 depends on SMBIOS
Alexander Graffb228082016-08-19 01:23:23 +02001016 default y
Alexander Graffb228082016-08-19 01:23:23 +02001017 help
1018 The System Management BIOS (SMBIOS) specification addresses how
1019 motherboard and system vendors present management information about
1020 their products in a standard format by extending the BIOS interface
1021 on Intel architecture systems.
1022
1023 Check http://www.dmtf.org/standards/smbios for details.
1024
Tom Rinid0dca222023-11-20 15:17:23 -05001025 See also SYSINFO_SMBIOS which allows SMBIOS values to be provided in
Simon Glass052a03e2020-11-05 06:32:11 -07001026 the devicetree.
1027
Simon Glasse70648e2023-09-14 10:55:39 -06001028endmenu
1029
Tero Kristocfbe15c2021-06-11 11:45:02 +03001030config LIB_RATIONAL
1031 bool "enable continued fraction calculation routines"
1032
1033config SPL_LIB_RATIONAL
1034 bool "enable continued fraction calculation routines for SPL"
1035 depends on SPL
1036
AKASHI Takahirof7025262019-11-13 09:44:53 +09001037config ASN1_COMPILER
1038 bool
Philippe Reynes2aba9442022-03-28 22:56:54 +02001039 help
1040 ASN.1 (Abstract Syntax Notation One) is a standard interface
1041 description language for defining data structures that can be
1042 serialized and deserialized in a cross-platform way. It is
1043 broadly used in telecommunications and computer networking,
1044 and especially in cryptography (https://en.wikipedia.org/wiki/ASN.1).
1045 This option enables the support of the asn1 compiler.
AKASHI Takahirof7025262019-11-13 09:44:53 +09001046
AKASHI Takahiro3a888712019-11-13 09:44:55 +09001047config ASN1_DECODER
1048 bool
1049 help
Philippe Reynes2aba9442022-03-28 22:56:54 +02001050 ASN.1 (Abstract Syntax Notation One) is a standard interface
1051 description language for defining data structures that can be
1052 serialized and deserialized in a cross-platform way. It is
1053 broadly used in telecommunications and computer networking,
1054 and especially in cryptography (https://en.wikipedia.org/wiki/ASN.1).
1055 This option enables the support of the asn1 decoder.
AKASHI Takahiro3a888712019-11-13 09:44:55 +09001056
Philippe Reynescf538b52022-03-28 22:56:56 +02001057config SPL_ASN1_DECODER
1058 bool
1059 help
1060 ASN.1 (Abstract Syntax Notation One) is a standard interface
1061 description language for defining data structures that can be
1062 serialized and deserialized in a cross-platform way. It is
1063 broadly used in telecommunications and computer networking,
1064 and especially in cryptography (https://en.wikipedia.org/wiki/ASN.1).
1065 This option enables the support of the asn1 decoder in the SPL.
1066
AKASHI Takahiro54923642019-11-13 09:44:57 +09001067config OID_REGISTRY
1068 bool
1069 help
Philippe Reynese35c3a22022-03-28 22:56:55 +02001070 In computing, object identifiers or OIDs are an identifier mechanism
1071 standardized by the International Telecommunication Union (ITU) and
1072 ISO/IEC for naming any object, concept, or "thing" with a globally
1073 unambiguous persistent name (https://en.wikipedia.org/wiki/Object_identifier).
AKASHI Takahiro54923642019-11-13 09:44:57 +09001074 Enable fast lookup object identifier registry.
1075
Philippe Reynescf538b52022-03-28 22:56:56 +02001076config SPL_OID_REGISTRY
1077 bool
1078 help
1079 In computing, object identifiers or OIDs are an identifier mechanism
1080 standardized by the International Telecommunication Union (ITU) and
1081 ISO/IEC for naming any object, concept, or "thing" with a globally
1082 unambiguous persistent name (https://en.wikipedia.org/wiki/Object_identifier).
1083 Enable fast lookup object identifier registry in the SPL.
1084
Simon Glass5059dbe2023-09-19 21:00:13 -06001085config SMBIOS
1086 bool "SMBIOS support"
1087 depends on X86 || EFI_LOADER
1088 default y
Simon Glassaadec122023-09-20 07:29:51 -06001089 select LAST_STAGE_INIT
Simon Glass5059dbe2023-09-19 21:00:13 -06001090 help
1091 Indicates that this platform can support System Management BIOS
1092 (SMBIOS) tables. These provide various pieces of information about
1093 the board, such as the manufacturer and the model name.
1094
1095 See GENERATE_SMBIOS_TABLE which controls whether U-Boot actually
1096 creates these tables, rather than them coming from a previous firmware
1097 stage.
1098
Christian Gmeiner19859982020-11-03 15:34:51 +01001099config SMBIOS_PARSER
1100 bool "SMBIOS parser"
1101 help
1102 A simple parser for SMBIOS data.
1103
Michal Simekdd5000ef2024-04-16 08:55:16 +02001104source "lib/optee/Kconfig"
Simon Glass9539e692015-07-31 09:31:36 -06001105
Thierry Reding52c7f1f32019-03-21 19:10:04 +01001106config TEST_FDTDEC
1107 bool "enable fdtdec test"
1108 depends on OF_LIBFDT
1109
AKASHI Takahiro51ba5222019-11-13 09:44:49 +09001110config LIB_DATE
1111 bool
1112
Keerthy76f361a2020-02-12 13:55:03 +05301113config LIB_ELF
1114 bool
1115 help
Patrick Delaunayfb67df82021-01-04 15:33:28 +01001116 Support basic elf loading/validating functions.
1117 This supports for 32 bit and 64 bit versions.
Keerthy76f361a2020-02-12 13:55:03 +05301118
Patrick Delaunayd62063d2021-03-10 10:16:25 +01001119config LMB
1120 bool "Enable the logical memory blocks library (lmb)"
Tom Rini53320122022-04-06 09:21:25 -04001121 default y if ARC || ARM || M68K || MICROBLAZE || MIPS || \
Patrick Delaunayd62063d2021-03-10 10:16:25 +01001122 NIOS2 || PPC || RISCV || SANDBOX || SH || X86 || XTENSA
Sughosh Ganuad3b6e92024-08-26 17:29:29 +05301123 select ARCH_MISC_INIT if PPC
Patrick Delaunayd62063d2021-03-10 10:16:25 +01001124 help
Sughosh Ganu69db78f2024-08-26 17:29:21 +05301125 Support the library logical memory blocks. This will require
1126 a malloc() implementation for defining the data structures
1127 needed for maintaining the LMB memory map.
1128
1129config SPL_LMB
1130 bool "Enable LMB module for SPL"
1131 depends on SPL && SPL_FRAMEWORK && SPL_SYS_MALLOC
1132 help
1133 Enable support for Logical Memory Block library routines in
1134 SPL. This will require a malloc() implementation for defining
1135 the data structures needed for maintaining the LMB memory map.
Patrick Delaunayd62063d2021-03-10 10:16:25 +01001136
Simon Glass42d97e52022-12-21 16:08:28 -07001137config PHANDLE_CHECK_SEQ
1138 bool "Enable phandle check while getting sequence number"
1139 help
1140 When there are multiple device tree nodes with same name,
Anand Moon6c368f42024-06-23 23:10:21 +05301141 enable this config option to distinguish them using
Simon Glass42d97e52022-12-21 16:08:28 -07001142 phandles in fdtdec_get_alias_seq() function.
1143
Eugen Hristevdb6bbcb2022-01-04 18:20:19 +02001144endmenu
Sughosh Ganu1cadae22022-10-21 18:16:03 +05301145
Michal Simekdd5000ef2024-04-16 08:55:16 +02001146source "lib/fwu_updates/Kconfig"