blob: 7dd777b56a7921175d69223d50a05704f53fb3e5 [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
Simon Glassef9e7622021-11-24 09:26:42 -070018config PHYSMEM
19 bool "Access to physical memory region (> 4G)"
20 help
21 Some basic support is provided for operations on memory not
22 normally accessible to 32-bit U-Boot - e.g. some architectures
23 support access to more than 4G of memory on 32-bit
24 machines using physical address extension or similar.
25 Enable this to access this basic support, which only supports clearing
26 the memory.
27
Adam Ford02bf5362017-08-11 09:46:05 -050028config BCH
29 bool "Enable Software based BCH ECC"
30 help
31 Enables software based BCH ECC algorithm present in lib/bch.c
32 This is used by SoC platforms which do not have built-in ELM
33 hardware engine required for BCH ECC correction.
34
Simon Glassdd7fb9b2019-12-06 21:41:34 -070035config BINMAN_FDT
36 bool "Allow access to binman information in the device tree"
Bin Mengc5e8b312021-02-03 21:20:02 +080037 depends on BINMAN && DM && OF_CONTROL
Bin Mengc9155f12021-05-10 20:23:36 +080038 default y if OF_SEPARATE || OF_EMBED
Simon Glassdd7fb9b2019-12-06 21:41:34 -070039 help
40 This enables U-Boot to access information about binman entries,
41 stored in the device tree in a binman node. Typical uses are to
42 locate entries in the firmware image. See binman.h for the available
43 functionality.
44
Masahiro Yamada3f053fe2014-09-16 16:32:59 +090045config CC_OPTIMIZE_LIBS_FOR_SPEED
46 bool "Optimize libraries for speed"
47 help
48 Enabling this option will pass "-O2" to gcc when compiling
49 under "lib" directory.
50
51 If unsure, say N.
52
Simon Glassc17db992021-07-02 12:36:17 -060053config CHARSET
54 bool
Simon Glassc17db992021-07-02 12:36:17 -060055
Faiz Abbas6199fb12018-02-06 19:15:58 +053056config DYNAMIC_CRC_TABLE
57 bool "Enable Dynamic tables for CRC"
58 help
59 Enable this option to calculate entries for CRC tables at runtime.
60 This can be helpful when reducing the size of the build image
61
Bin Mengb95e9db2018-10-15 02:21:15 -070062config HAVE_ARCH_IOMAP
63 bool
64 help
65 Enable this option if architecture provides io{read,write}{8,16,32}
66 I/O accessor functions.
67
Masahiro Yamada9520b712014-10-24 01:30:43 +090068config HAVE_PRIVATE_LIBGCC
69 bool
70
Adam Ford70c8f052018-02-06 12:14:28 -060071config LIB_UUID
72 bool
73
Alex Kiernan5b404282018-04-19 04:32:54 +000074config PRINTF
75 bool
76 default y
77
78config SPL_PRINTF
79 bool
80 select SPL_SPRINTF
Simon Glass7611ac62019-09-25 08:56:27 -060081 select SPL_STRTO if !SPL_USE_TINY_PRINTF
Alex Kiernan5b404282018-04-19 04:32:54 +000082
83config TPL_PRINTF
84 bool
85 select TPL_SPRINTF
Simon Glass7611ac62019-09-25 08:56:27 -060086 select TPL_STRTO if !TPL_USE_TINY_PRINTF
Alex Kiernan5b404282018-04-19 04:32:54 +000087
Simon Glasse7ca7da2022-04-30 00:56:53 -060088config VPL_PRINTF
89 bool
90 select VPL_SPRINTF
91 select VPL_STRTO if !VPL_USE_TINY_PRINTF
92
Alex Kiernan5b404282018-04-19 04:32:54 +000093config SPRINTF
94 bool
95 default y
96
97config SPL_SPRINTF
98 bool
99
100config TPL_SPRINTF
101 bool
102
Simon Glasse7ca7da2022-04-30 00:56:53 -0600103config VPL_SPRINTF
104 bool
105
Andrii Anisov6e29ac42020-08-06 12:42:52 +0300106config SSCANF
107 bool
Andrii Anisov6e29ac42020-08-06 12:42:52 +0300108
Alex Kiernan5b404282018-04-19 04:32:54 +0000109config STRTO
110 bool
111 default y
112
113config SPL_STRTO
114 bool
115
116config TPL_STRTO
117 bool
118
Simon Glasse7ca7da2022-04-30 00:56:53 -0600119config VPL_STRTO
120 bool
121
Alex Kiernanc568bcb2018-05-29 15:30:52 +0000122config IMAGE_SPARSE
123 bool
124
125config IMAGE_SPARSE_FILLBUF_SIZE
126 hex "Android sparse image CHUNK_TYPE_FILL buffer size"
127 default 0x80000
128 depends on IMAGE_SPARSE
129 help
130 Set the size of the fill buffer used when processing CHUNK_TYPE_FILL
131 chunks.
132
Masahiro Yamada9520b712014-10-24 01:30:43 +0900133config USE_PRIVATE_LIBGCC
134 bool "Use private libgcc"
135 depends on HAVE_PRIVATE_LIBGCC
Marek Vasut4e0126e2016-05-26 18:01:47 +0200136 default y if HAVE_PRIVATE_LIBGCC && ((ARM && !ARM64) || MIPS)
Masahiro Yamada9520b712014-10-24 01:30:43 +0900137 help
138 This option allows you to use the built-in libgcc implementation
Masahiro Yamada1c6a5e42016-03-30 20:17:42 +0900139 of U-Boot instead of the one provided by the compiler.
Masahiro Yamada9520b712014-10-24 01:30:43 +0900140 If unsure, say N.
141
Masahiro Yamadae301fa02014-10-24 01:30:40 +0900142config SYS_HZ
143 int
144 default 1000
145 help
146 The frequency of the timer returned by get_timer().
147 get_timer() must operate in milliseconds and this option must be
148 set to 1000.
149
Simon Glass7611ac62019-09-25 08:56:27 -0600150config SPL_USE_TINY_PRINTF
Thomas Hebb0c12fb52019-11-10 08:23:53 -0800151 bool "Enable tiny printf() version in SPL"
Simon Glass7611ac62019-09-25 08:56:27 -0600152 depends on SPL
Tom Rinid0502b72019-06-08 12:46:18 -0400153 default y
Stefan Roese363ab7b2015-11-23 07:00:22 +0100154 help
155 This option enables a tiny, stripped down printf version.
156 This should only be used in space limited environments,
157 like SPL versions with hard memory limits. This version
158 reduces the code size by about 2.5KiB on armv7.
159
160 The supported format specifiers are %c, %s, %u/%d and %x.
161
Simon Glass7611ac62019-09-25 08:56:27 -0600162config TPL_USE_TINY_PRINTF
Thomas Hebb0c12fb52019-11-10 08:23:53 -0800163 bool "Enable tiny printf() version in TPL"
Simon Glass7611ac62019-09-25 08:56:27 -0600164 depends on TPL
165 default y if SPL_USE_TINY_PRINTF
166 help
167 This option enables a tiny, stripped down printf version.
168 This should only be used in space limited environments,
169 like SPL versions with hard memory limits. This version
170 reduces the code size by about 2.5KiB on armv7.
171
172 The supported format specifiers are %c, %s, %u/%d and %x.
173
Simon Glasse7ca7da2022-04-30 00:56:53 -0600174config VPL_USE_TINY_PRINTF
175 bool "Enable tiny printf() version for VPL"
176 depends on VPL
177 help
178 This option enables a tiny, stripped down printf version.
179 This should only be used in space limited environments,
180 like SPL versions with hard memory limits. This version
181 reduces the code size by about 2.5KiB on armv7.
182
183 The supported format specifiers are %c, %s, %u/%d and %x.
184
Masahiro Yamadaacede7a2017-12-04 12:37:00 +0900185config PANIC_HANG
186 bool "Do not reset the system on fatal error"
187 help
188 Define this option to stop the system in case of a fatal error,
189 so that you have to reset it manually. This is probably NOT a good
190 idea for an embedded system where you want the system to reboot
191 automatically as fast as possible, but it may be useful during
192 development since you can try to debug the conditions that lead to
193 the situation.
194
Joe Hershberger937d3e82015-04-21 17:02:42 -0500195config REGEX
196 bool "Enable regular expression support"
Joe Hershberger8ab8b722015-06-22 17:57:36 -0500197 default y if NET
Joe Hershberger937d3e82015-04-21 17:02:42 -0500198 help
199 If this variable is defined, U-Boot is linked against the
200 SLRE (Super Light Regular Expression) library, which adds
201 regex support to some commands, for example "env grep" and
202 "setexpr".
203
Adam Ford38003a62018-02-06 10:18:18 -0600204choice
205 prompt "Pseudo-random library support type"
Heinrich Schuchardtb2e67a22020-01-19 19:28:12 +0100206 depends on NET_RANDOM_ETHADDR || RANDOM_UUID || CMD_UUID || \
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +0100207 RNG_SANDBOX || UT_LIB && AES || FAT_WRITE
Adam Ford38003a62018-02-06 10:18:18 -0600208 default LIB_RAND
Masahiro Yamada2743c072015-06-11 19:16:43 +0900209 help
Adam Ford38003a62018-02-06 10:18:18 -0600210 Select the library to provide pseudo-random number generator
211 functions. LIB_HW_RAND supports certain hardware engines that
212 provide this functionality. If in doubt, select LIB_RAND.
213
214config LIB_RAND
215 bool "Pseudo-random library support"
216
217config LIB_HW_RAND
Marcin Juszkiewicza360c2c2020-05-26 19:07:15 +0200218 bool "HW Engine for random library support"
Adam Ford38003a62018-02-06 10:18:18 -0600219
220endchoice
Michal Simek2c1b1db2015-05-25 11:37:22 +0200221
Simon Glassa6cee932021-12-01 09:02:36 -0700222config SUPPORT_ACPI
223 bool
224 help
225 Enable this if your arch or board can support generating ACPI
226 (Advanced Configuration and Power Interface) tables. In this case
227 U-Boot can generate these tables and pass them to the Operating
228 System.
229
230config GENERATE_ACPI_TABLE
231 bool "Generate an ACPI (Advanced Configuration and Power Interface) table"
232 depends on SUPPORT_ACPI
233 select QFW if QEMU
234 help
235 The Advanced Configuration and Power Interface (ACPI) specification
236 provides an open standard for device configuration and management
237 by the operating system. It defines platform-independent interfaces
238 for configuration and power management monitoring.
239
Simon Glasse2f94ae2017-04-02 09:50:28 -0600240config SPL_TINY_MEMSET
241 bool "Use a very small memset() in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -0400242 depends on SPL
Simon Glasse2f94ae2017-04-02 09:50:28 -0600243 help
244 The faster memset() is the arch-specific one (if available) enabled
245 by CONFIG_USE_ARCH_MEMSET. If that is not enabled, we can still get
246 better performance by writing a word at a time. But in very
Chris Packham1c3b7ba2019-01-13 22:13:28 +1300247 size-constrained environments even this may be too big. Enable this
Simon Glasse2f94ae2017-04-02 09:50:28 -0600248 option to reduce code size slightly at the cost of some speed.
249
Philipp Tomsichfefc4ec2017-08-03 22:52:04 +0200250config TPL_TINY_MEMSET
251 bool "Use a very small memset() in TPL"
Tom Rini36a4ca02022-06-08 08:24:39 -0400252 depends on TPL
Philipp Tomsichfefc4ec2017-08-03 22:52:04 +0200253 help
254 The faster memset() is the arch-specific one (if available) enabled
255 by CONFIG_USE_ARCH_MEMSET. If that is not enabled, we can still get
256 better performance by writing a word at a time. But in very
Chris Packham1c3b7ba2019-01-13 22:13:28 +1300257 size-constrained environments even this may be too big. Enable this
Philipp Tomsichfefc4ec2017-08-03 22:52:04 +0200258 option to reduce code size slightly at the cost of some speed.
259
Boris Brezillon627dc182017-02-27 18:22:05 +0100260config RBTREE
261 bool
262
Nandor Hand5ea84a2017-11-08 15:35:14 +0000263config BITREVERSE
264 bool "Bit reverse library from Linux"
265
Simon Glassbfce7fc2019-04-08 13:20:51 -0600266config TRACE
267 bool "Support for tracing of function calls and timing"
268 imply CMD_TRACE
Pragnesh Patel0dd501a2021-01-17 18:11:24 +0530269 select TIMER_EARLY
Simon Glassbfce7fc2019-04-08 13:20:51 -0600270 help
271 Enables function tracing within U-Boot. This allows recording of call
272 traces including timing information. The command can write data to
273 memory for exporting for analysis (e.g. using bootchart).
274 See doc/README.trace for full details.
275
Simon Glass445078e2019-04-08 13:20:52 -0600276config TRACE_BUFFER_SIZE
277 hex "Size of trace buffer in U-Boot"
278 depends on TRACE
279 default 0x01000000
280 help
281 Sets the size of the trace buffer in U-Boot. This is allocated from
282 memory during relocation. If this buffer is too small, the trace
283 history will be truncated, with later records omitted.
284
285 If early trace is enabled (i.e. before relocation), this buffer must
286 be large enough to include all the data from the early trace buffer as
287 well, since this is copied over to the main buffer during relocation.
288
289 A trace record is emitted for each function call and each record is
290 12 bytes (see struct trace_call). A suggested minimum size is 1MB. If
291 the size is too small then 'trace stats' will show a message saying
292 how many records were dropped due to buffer overflow.
293
Heinrich Schuchardtc1a73792019-06-02 13:30:09 +0200294config TRACE_CALL_DEPTH_LIMIT
295 int "Trace call depth limit"
296 depends on TRACE
297 default 15
298 help
299 Sets the maximum call depth up to which function calls are recorded.
300
Simon Glass445078e2019-04-08 13:20:52 -0600301config TRACE_EARLY
302 bool "Enable tracing before relocation"
303 depends on TRACE
304 help
305 Sometimes it is helpful to trace execution of U-Boot before
306 relocation. This is possible by using a arch-specific, fixed buffer
307 position in memory. Enable this option to start tracing as early as
308 possible after U-Boot starts.
309
310config TRACE_EARLY_SIZE
311 hex "Size of early trace buffer in U-Boot"
312 depends on TRACE_EARLY
313 default 0x00100000
314 help
315 Sets the size of the early trace buffer in bytes. This is used to hold
316 tracing information before relocation.
317
Heinrich Schuchardtc1a73792019-06-02 13:30:09 +0200318config TRACE_EARLY_CALL_DEPTH_LIMIT
319 int "Early trace call depth limit"
320 depends on TRACE_EARLY
321 default 200
322 help
323 Sets the maximum call depth up to which function calls are recorded
324 during early tracing.
325
Simon Glass445078e2019-04-08 13:20:52 -0600326config TRACE_EARLY_ADDR
327 hex "Address of early trace buffer in U-Boot"
328 depends on TRACE_EARLY
329 default 0x00100000
330 help
331 Sets the address of the early trace buffer in U-Boot. This memory
332 must be accessible before relocation.
333
334 A trace record is emitted for each function call and each record is
335 12 bytes (see struct trace_call). A suggested minimum size is 1MB. If
336 the size is too small then the message which says the amount of early
337 data being coped will the the same as the
338
Loic Poulain12797e62021-11-25 18:16:14 +0100339config CIRCBUF
340 bool "Enable circular buffer support"
341
Simon Glass99dbe4b2015-06-23 15:38:23 -0600342source lib/dhry/Kconfig
343
Simon Glass528fdd12017-04-26 22:27:49 -0600344menu "Security support"
345
346config AES
347 bool "Support the AES algorithm"
348 help
349 This provides a means to encrypt and decrypt data using the AES
350 (Advanced Encryption Standard). This algorithm uses a symetric key
351 and is widely used as a streaming cipher. Different key lengths are
352 supported by the algorithm but only a 128-bit key is supported at
353 present.
354
Alexandru Gagniuc48cb9b82021-07-29 11:47:16 -0500355source lib/ecdsa/Kconfig
Ruchika Gupta4acd8c42015-01-23 16:01:56 +0530356source lib/rsa/Kconfig
AKASHI Takahiro591535c2019-11-13 09:45:00 +0900357source lib/crypto/Kconfig
Steffen Jaeckel229bd512021-07-08 15:57:33 +0200358source lib/crypt/Kconfig
Ruchika Gupta2c3822e2015-01-23 16:01:51 +0530359
Simon Glass350497c2015-08-22 18:31:19 -0600360config TPM
361 bool "Trusted Platform Module (TPM) Support"
Simon Glasscf294b02015-10-03 06:39:36 -0600362 depends on DM
Simon Glass350497c2015-08-22 18:31:19 -0600363 help
364 This enables support for TPMs which can be used to provide security
365 features for your board. The TPM can be connected via LPC or I2C
366 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
367 command to interactive the TPM. Driver model support is provided
368 for the low-level TPM interface, but only one TPM is supported at
369 a time by the TPM library.
370
Simon Glass93a45b12018-10-01 12:22:19 -0600371config SPL_TPM
372 bool "Trusted Platform Module (TPM) Support in SPL"
373 depends on SPL_DM
374 help
375 This enables support for TPMs which can be used to provide security
376 features for your board. The TPM can be connected via LPC or I2C
377 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
378 command to interactive the TPM. Driver model support is provided
379 for the low-level TPM interface, but only one TPM is supported at
380 a time by the TPM library.
381
382config TPL_TPM
383 bool "Trusted Platform Module (TPM) Support in TPL"
384 depends on TPL_DM
385 help
386 This enables support for TPMs which can be used to provide security
387 features for your board. The TPM can be connected via LPC or I2C
388 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
389 command to interactive the TPM. Driver model support is provided
390 for the low-level TPM interface, but only one TPM is supported at
391 a time by the TPM library.
392
Simon Glasse7ca7da2022-04-30 00:56:53 -0600393config VPL_TPM
394 bool "Trusted Platform Module (TPM) Support in VPL"
395 depends on VPL_DM
396 help
397 This enables support for TPMs which can be used to provide security
398 features for your board. The TPM can be connected via LPC or I2C
399 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
400 command to interactive the TPM. Driver model support is provided
401 for the low-level TPM interface, but only one TPM is supported at
402 a time by the TPM library.
403
Simon Glass528fdd12017-04-26 22:27:49 -0600404endmenu
405
Igor Opaniuk525d1d82018-06-03 21:56:37 +0300406menu "Android Verified Boot"
407
408config LIBAVB
409 bool "Android Verified Boot 2.0 support"
410 depends on ANDROID_BOOT_IMAGE
Igor Opaniuk525d1d82018-06-03 21:56:37 +0300411 help
412 This enables support of Android Verified Boot 2.0 which can be used
413 to assure the end user of the integrity of the software running on a
414 device. Introduces such features as boot chain of trust, rollback
415 protection etc.
416
417endmenu
418
gaurav ranaef201592015-02-20 12:51:46 +0530419menu "Hashing Support"
420
Qu Wenruob98e8a22021-12-27 14:12:07 +0800421config BLAKE2
422 bool "Enable BLAKE2 support"
423 help
424 This option enables support of hashing using BLAKE2B algorithm.
425 The hash is calculated in software.
426 The BLAKE2 algorithm produces a hash value (digest) between 1 and
427 64 bytes.
428
gaurav ranaef201592015-02-20 12:51:46 +0530429config SHA1
430 bool "Enable SHA1 support"
431 help
432 This option enables support of hashing using SHA1 algorithm.
433 The hash is calculated in software.
434 The SHA1 algorithm produces a 160-bit (20-byte) hash value
435 (digest).
436
437config SHA256
438 bool "Enable SHA256 support"
439 help
440 This option enables support of hashing using SHA256 algorithm.
441 The hash is calculated in software.
442 The SHA256 algorithm produces a 256-bit (32-byte) hash value
443 (digest).
444
Reuben Dowle1908fd92020-04-16 17:36:52 +1200445config SHA512
446 bool "Enable SHA512 support"
Reuben Dowle1908fd92020-04-16 17:36:52 +1200447 help
448 This option enables support of hashing using SHA512 algorithm.
449 The hash is calculated in software.
450 The SHA512 algorithm produces a 512-bit (64-byte) hash value
451 (digest).
452
453config SHA384
454 bool "Enable SHA384 support"
Alexandru Gagniuc5df5d692021-09-02 19:54:18 -0500455 select SHA512
Reuben Dowle1908fd92020-04-16 17:36:52 +1200456 help
457 This option enables support of hashing using SHA384 algorithm.
Alexandru Gagniuc5df5d692021-09-02 19:54:18 -0500458 The hash is calculated in software. This is also selects SHA512,
459 because these implementations share the bulk of the code..
Reuben Dowle1908fd92020-04-16 17:36:52 +1200460 The SHA384 algorithm produces a 384-bit (48-byte) hash value
461 (digest).
462
gaurav ranaef201592015-02-20 12:51:46 +0530463config SHA_HW_ACCEL
Heinrich Schuchardtd42f81f2021-05-14 07:08:27 +0200464 bool "Enable hardware acceleration for SHA hash functions"
gaurav ranaef201592015-02-20 12:51:46 +0530465 help
Heinrich Schuchardtd42f81f2021-05-14 07:08:27 +0200466 This option enables hardware acceleration for the SHA1 and SHA256
467 hashing algorithms. This affects the 'hash' command and also the
468 hash_lookup_algo() function.
469
Simon Glassf7b37c22021-09-25 19:43:17 -0600470if SPL
471
472config SPL_SHA1
473 bool "Enable SHA1 support in SPL"
474 default y if SHA1
475 help
476 This option enables support of hashing using SHA1 algorithm.
477 The hash is calculated in software.
478 The SHA1 algorithm produces a 160-bit (20-byte) hash value
479 (digest).
480
481config SPL_SHA256
482 bool "Enable SHA256 support in SPL"
483 default y if SHA256
484 help
485 This option enables support of hashing using SHA256 algorithm.
486 The hash is calculated in software.
487 The SHA256 algorithm produces a 256-bit (32-byte) hash value
488 (digest).
489
490config SPL_SHA512
491 bool "Enable SHA512 support in SPL"
492 default y if SHA512
493 help
494 This option enables support of hashing using SHA512 algorithm.
495 The hash is calculated in software.
496 The SHA512 algorithm produces a 512-bit (64-byte) hash value
497 (digest).
498
499config SPL_SHA384
500 bool "Enable SHA384 support in SPL"
501 default y if SHA384
502 select SPL_SHA512
503 help
504 This option enables support of hashing using SHA384 algorithm.
505 The hash is calculated in software. This is also selects SHA512,
506 because these implementations share the bulk of the code..
507 The SHA384 algorithm produces a 384-bit (48-byte) hash value
508 (digest).
509
Simon Glass383dd572021-09-25 19:43:18 -0600510config SPL_SHA_HW_ACCEL
511 bool "Enable hardware acceleration for SHA hash functions"
512 default y if SHA_HW_ACCEL
513 help
514 This option enables hardware acceleration for the SHA1 and SHA256
515 hashing algorithms. This affects the 'hash' command and also the
516 hash_lookup_algo() function.
517
518config SPL_SHA_PROG_HW_ACCEL
519 bool "Enable Progressive hashing support using hardware in SPL"
520 depends on SHA_PROG_HW_ACCEL
521 default y
522 help
523 This option enables hardware-acceleration for SHA progressive
524 hashing.
525 Data can be streamed in a block at a time and the hashing is
526 performed in hardware.
527
Simon Glassf7b37c22021-09-25 19:43:17 -0600528endif
529
Heinrich Schuchardtd42f81f2021-05-14 07:08:27 +0200530if SHA_HW_ACCEL
531
532config SHA512_HW_ACCEL
533 bool "Enable hardware acceleration for SHA512"
Alexandru Gagniuc5df5d692021-09-02 19:54:18 -0500534 depends on SHA512
Heinrich Schuchardtd42f81f2021-05-14 07:08:27 +0200535 help
536 This option enables hardware acceleration for the SHA384 and SHA512
537 hashing algorithms. This affects the 'hash' command and also the
538 hash_lookup_algo() function.
gaurav ranaef201592015-02-20 12:51:46 +0530539
540config SHA_PROG_HW_ACCEL
541 bool "Enable Progressive hashing support using hardware"
gaurav ranaef201592015-02-20 12:51:46 +0530542 help
Joel Stanley92efc1f2021-02-17 13:50:42 +1030543 This option enables hardware-acceleration for SHA progressive
544 hashing.
545 Data can be streamed in a block at a time and the hashing is
546 performed in hardware.
Andre Przywaraf0fa1132017-03-15 01:19:05 +0000547
Heinrich Schuchardtd42f81f2021-05-14 07:08:27 +0200548endif
549
Andre Przywaraf0fa1132017-03-15 01:19:05 +0000550config MD5
Simon Glassd33d0db2020-05-06 08:03:56 -0600551 bool "Support MD5 algorithm"
552 help
553 This option enables MD5 support. MD5 is an algorithm designed
554 in 1991 that produces a 16-byte digest (or checksum) from its input
555 data. It has a number of vulnerabilities which preclude its use in
556 security applications, but it can be useful for providing a quick
557 checksum of a block of data.
558
559config SPL_MD5
560 bool "Support MD5 algorithm in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -0400561 depends on SPL
Simon Glassd33d0db2020-05-06 08:03:56 -0600562 help
563 This option enables MD5 support in SPL. MD5 is an algorithm designed
564 in 1991 that produces a 16-byte digest (or checksum) from its input
565 data. It has a number of vulnerabilities which preclude its use in
566 security applications, but it can be useful for providing a quick
567 checksum of a block of data.
Andre Przywaraf0fa1132017-03-15 01:19:05 +0000568
Simon Glass577226c2021-09-25 19:43:24 -0600569config CRC32
570 def_bool y
571 help
572 Enables CRC32 support in U-Boot. This is normally required.
573
Marek Behúncdccc032017-09-03 17:00:23 +0200574config CRC32C
575 bool
576
Marek Behúnb139a7f2019-04-29 22:40:43 +0200577config XXHASH
578 bool
579
gaurav ranaef201592015-02-20 12:51:46 +0530580endmenu
581
Julius Wernerf41a3ca2015-10-06 20:03:53 -0700582menu "Compression Support"
583
584config LZ4
585 bool "Enable LZ4 decompression support"
586 help
587 If this option is set, support for LZ4 compressed images
588 is included. The LZ4 algorithm can run in-place as long as the
589 compressed image is loaded to the end of the output buffer, and
590 trades lower compression ratios for much faster decompression.
Patrick Delaunaycd831af2021-03-10 10:16:28 +0100591
Julius Wernerf41a3ca2015-10-06 20:03:53 -0700592 NOTE: This implements the release version of the LZ4 frame
593 format as generated by default by the 'lz4' command line tool.
594 This is not the same as the outdated, less efficient legacy
595 frame format currently (2015) implemented in the Linux kernel
596 (generated by 'lz4 -l'). The two formats are incompatible.
597
Simon Glass264aa5f2017-05-17 03:25:42 -0600598config LZMA
599 bool "Enable LZMA decompression support"
600 help
601 This enables support for LZMA (Lempel-Ziv-Markov chain algorithm),
602 a dictionary compression algorithm that provides a high compression
603 ratio and fairly fast decompression speed. See also
604 CONFIG_CMD_LZMADEC which provides a decode command.
605
Boris Brezillonaa57d0f2017-02-27 18:22:06 +0100606config LZO
Tom Rinic20bb732017-07-22 18:36:16 -0400607 bool "Enable LZO decompression support"
608 help
Oleksandr Suvorov30a4c312021-09-01 16:05:08 +0300609 This enables support for the LZO compression algorithm.
York Suna6945fe2017-08-15 11:14:43 -0700610
Marek Vasutaeaa29d2019-03-08 16:06:55 +0100611config GZIP
Heiko Schocherb93cc602019-04-29 08:59:38 +0200612 bool "Enable gzip decompression support"
Marek Vasutaeaa29d2019-03-08 16:06:55 +0100613 select ZLIB
614 default y
615 help
616 This enables support for GZIP compression algorithm.
617
Joao Marcos Costaae8abb12020-07-30 15:33:49 +0200618config ZLIB_UNCOMPRESS
619 bool "Enables zlib's uncompress() functionality"
620 help
621 This enables an extra zlib functionality: the uncompress() function,
622 which decompresses data from a buffer into another, knowing their
623 sizes. Unlike gunzip(), there is no header parsing.
624
Michael Walle3a6e3512020-05-22 14:07:36 +0200625config GZIP_COMPRESSED
626 bool
627 select ZLIB
628
Atish Patra1fa79622020-03-05 16:24:21 -0800629config BZIP2
630 bool "Enable bzip2 decompression support"
631 help
632 This enables support for BZIP2 compression algorithm.
633
Marek Vasutaeaa29d2019-03-08 16:06:55 +0100634config ZLIB
635 bool
636 default y
637 help
638 This enables ZLIB compression lib.
639
Marek Behúne87e2002019-04-29 22:40:44 +0200640config ZSTD
641 bool "Enable Zstandard decompression support"
642 select XXHASH
643 help
644 This enables Zstandard decompression library.
645
Simon Glasse107bcd2018-11-06 15:21:30 -0700646config SPL_LZ4
647 bool "Enable LZ4 decompression support in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -0400648 depends on SPL
Simon Glasse107bcd2018-11-06 15:21:30 -0700649 help
Marcin Juszkiewicza360c2c2020-05-26 19:07:15 +0200650 This enables support for the LZ4 decompression algorithm in SPL. LZ4
Simon Glasse107bcd2018-11-06 15:21:30 -0700651 is a lossless data compression algorithm that is focused on
652 fast compression and decompression speed. It belongs to the LZ77
653 family of byte-oriented compression schemes.
654
developer6a4e1d32020-04-21 09:28:38 +0200655config SPL_LZMA
656 bool "Enable LZMA decompression support for SPL build"
Tom Rini0a83cc22022-06-10 23:03:09 -0400657 depends on SPL
developer6a4e1d32020-04-21 09:28:38 +0200658 help
Marcin Juszkiewicza360c2c2020-05-26 19:07:15 +0200659 This enables support for LZMA compression algorithm for SPL boot.
developer6a4e1d32020-04-21 09:28:38 +0200660
Simon Glasse7ca7da2022-04-30 00:56:53 -0600661config VPL_LZMA
662 bool "Enable LZMA decompression support for VPL build"
663 default y if LZMA
664 help
665 This enables support for LZMA compression algorithm for VPL boot.
666
Jean-Jacques Hiblotdbde2882017-09-15 12:57:30 +0200667config SPL_LZO
668 bool "Enable LZO decompression support in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -0400669 depends on SPL
Jean-Jacques Hiblotdbde2882017-09-15 12:57:30 +0200670 help
671 This enables support for LZO compression algorithm in the SPL.
672
York Suna6945fe2017-08-15 11:14:43 -0700673config SPL_GZIP
674 bool "Enable gzip decompression support for SPL build"
675 select SPL_ZLIB
676 help
Oleksandr Suvorov30a4c312021-09-01 16:05:08 +0300677 This enables support for the GZIP compression algorithm for SPL boot.
York Suna6945fe2017-08-15 11:14:43 -0700678
679config SPL_ZLIB
680 bool
681 help
682 This enables compression lib for SPL boot.
683
Marek Behúne87e2002019-04-29 22:40:44 +0200684config SPL_ZSTD
685 bool "Enable Zstandard decompression support in SPL"
Tom Rini0a83cc22022-06-10 23:03:09 -0400686 depends on SPL
Marek Behúne87e2002019-04-29 22:40:44 +0200687 select XXHASH
688 help
689 This enables Zstandard decompression library in the SPL.
690
Julius Wernerf41a3ca2015-10-06 20:03:53 -0700691endmenu
692
Przemyslaw Marczak37550132015-04-20 20:07:40 +0200693config ERRNO_STR
694 bool "Enable function for getting errno-related string message"
695 help
696 The function errno_str(int errno), returns a pointer to the errno
697 corresponding text message:
698 - if errno is null or positive number - a pointer to "Success" message
699 - if errno is negative - a pointer to errno related message
700
Alexey Brodkin2d2fa492018-06-05 17:17:57 +0300701config HEXDUMP
702 bool "Enable hexdump"
703 help
704 This enables functions for printing dumps of binary data.
705
Simon Glassa37fd4d2020-09-12 11:13:35 -0600706config SPL_HEXDUMP
707 bool "Enable hexdump in SPL"
Heinrich Schuchardt11df0722021-07-24 17:35:46 +0200708 depends on SPL && HEXDUMP
Simon Glassa37fd4d2020-09-12 11:13:35 -0600709 help
710 This enables functions for printing dumps of binary data in
711 SPL.
712
Sean Anderson3b4a6f52020-10-27 19:55:36 -0400713config GETOPT
714 bool "Enable getopt"
715 help
716 This enables functions for parsing command-line options.
717
Simon Glassa66c5412016-02-22 22:55:42 -0700718config OF_LIBFDT
719 bool "Enable the FDT library"
720 default y if OF_CONTROL
721 help
722 This enables the FDT library (libfdt). It provides functions for
723 accessing binary device tree images in memory, such as adding and
Anatolij Gustschinda707d42017-08-18 17:58:51 +0200724 removing nodes and properties, scanning through the tree and finding
Simon Glassa66c5412016-02-22 22:55:42 -0700725 particular compatible nodes. The library operates on a flattened
726 version of the device tree.
727
Simon Glassc48044d2019-10-27 09:47:40 -0600728config OF_LIBFDT_ASSUME_MASK
729 hex "Mask of conditions to assume for libfdt"
730 depends on OF_LIBFDT || FIT
731 default 0
732 help
733 Use this to change the assumptions made by libfdt about the
734 device tree it is working with. A value of 0 means that no assumptions
735 are made, and libfdt is able to deal with malicious data. A value of
736 0xff means all assumptions are made and any invalid data may cause
737 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
738
Maxime Ripard9e901ce2016-07-05 10:26:44 +0200739config OF_LIBFDT_OVERLAY
740 bool "Enable the FDT library overlay support"
Tom Rinic1e49ba2018-05-08 08:52:17 -0400741 depends on OF_LIBFDT
Praneeth Bajjuri7b71a012018-04-25 16:03:23 -0500742 default y if ARCH_OMAP2PLUS || ARCH_KEYSTONE
Maxime Ripard9e901ce2016-07-05 10:26:44 +0200743 help
744 This enables the FDT library (libfdt) overlay support.
745
Simon Glass8b426922016-02-22 22:55:45 -0700746config SPL_OF_LIBFDT
747 bool "Enable the FDT library for SPL"
Simon Glasse7ca7da2022-04-30 00:56:53 -0600748 depends on SPL_LIBGENERIC_SUPPORT
Simon Glass8b426922016-02-22 22:55:45 -0700749 default y if SPL_OF_CONTROL
750 help
751 This enables the FDT library (libfdt). It provides functions for
752 accessing binary device tree images in memory, such as adding and
Anatolij Gustschinda707d42017-08-18 17:58:51 +0200753 removing nodes and properties, scanning through the tree and finding
Simon Glass8b426922016-02-22 22:55:45 -0700754 particular compatible nodes. The library operates on a flattened
755 version of the device tree.
756
Simon Glassc48044d2019-10-27 09:47:40 -0600757config SPL_OF_LIBFDT_ASSUME_MASK
758 hex "Mask of conditions to assume for libfdt"
Tom Rini0a83cc22022-06-10 23:03:09 -0400759 depends on SPL_OF_LIBFDT || (FIT && SPL)
Simon Glassc48044d2019-10-27 09:47:40 -0600760 default 0xff
761 help
762 Use this to change the assumptions made by libfdt in SPL about the
763 device tree it is working with. A value of 0 means that no assumptions
764 are made, and libfdt is able to deal with malicious data. A value of
765 0xff means all assumptions are made and any invalid data may cause
766 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
767
Simon Glassca8ec4b2018-10-01 12:22:21 -0600768config TPL_OF_LIBFDT
769 bool "Enable the FDT library for TPL"
Simon Glasse7ca7da2022-04-30 00:56:53 -0600770 depends on TPL_LIBGENERIC_SUPPORT
Simon Glassca8ec4b2018-10-01 12:22:21 -0600771 default y if TPL_OF_CONTROL
772 help
773 This enables the FDT library (libfdt). It provides functions for
774 accessing binary device tree images in memory, such as adding and
775 removing nodes and properties, scanning through the tree and finding
776 particular compatible nodes. The library operates on a flattened
777 version of the device tree.
778
Simon Glassc48044d2019-10-27 09:47:40 -0600779config TPL_OF_LIBFDT_ASSUME_MASK
780 hex "Mask of conditions to assume for libfdt"
Tom Rini36a4ca02022-06-08 08:24:39 -0400781 depends on TPL_OF_LIBFDT || (FIT && TPL)
Simon Glassc48044d2019-10-27 09:47:40 -0600782 default 0xff
783 help
784 Use this to change the assumptions made by libfdt in TPL about the
785 device tree it is working with. A value of 0 means that no assumptions
786 are made, and libfdt is able to deal with malicious data. A value of
787 0xff means all assumptions are made and any invalid data may cause
788 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
789
Simon Glasse7ca7da2022-04-30 00:56:53 -0600790config VPL_OF_LIBFDT
791 bool "Enable the FDT library for VPL"
Tom Rini7fb323b2022-06-08 08:24:40 -0400792 depends on VPL
Simon Glasse7ca7da2022-04-30 00:56:53 -0600793 default y if VPL_OF_CONTROL && !VPL_OF_PLATDATA
794 help
795 This enables the FDT library (libfdt). It provides functions for
796 accessing binary device tree images in memory, such as adding and
797 removing nodes and properties, scanning through the tree and finding
798 particular compatible nodes. The library operates on a flattened
799 version of the device tree.
800
801config VPL_OF_LIBFDT_ASSUME_MASK
802 hex "Mask of conditions to assume for libfdt"
Tom Rini7fb323b2022-06-08 08:24:40 -0400803 depends on VPL_OF_LIBFDT || (FIT && VPL)
Simon Glasse7ca7da2022-04-30 00:56:53 -0600804 default 0xff
805 help
806 Use this to change the assumptions made by libfdt in SPL about the
807 device tree it is working with. A value of 0 means that no assumptions
808 are made, and libfdt is able to deal with malicious data. A value of
809 0xff means all assumptions are made and any invalid data may cause
810 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
811
Heiko Schocherc9ab9102016-10-06 07:31:45 +0200812config FDT_FIXUP_PARTITIONS
813 bool "overwrite MTD partitions in DTS through defined in 'mtdparts'"
814 depends on OF_LIBFDT
Masahiro Yamada734b7552018-07-20 11:04:09 +0900815 depends on CMD_MTDPARTS
Heiko Schocherc9ab9102016-10-06 07:31:45 +0200816 help
817 Allow overwriting defined partitions in the device tree blob
818 using partition info defined in the 'mtdparts' environment
819 variable.
820
Alexander Graffb228082016-08-19 01:23:23 +0200821menu "System tables"
Alexander Graf66f96e12016-08-19 01:23:29 +0200822 depends on (!EFI && !SYS_COREBOOT) || (ARM && EFI_LOADER)
Alexander Graffb228082016-08-19 01:23:23 +0200823
Simon Glass5d093f32020-11-04 09:57:25 -0700824config BLOBLIST_TABLES
825 bool "Put tables in a bloblist"
Simon Glass171c6462021-03-15 18:11:22 +1300826 depends on X86 && BLOBLIST
Simon Glass5d093f32020-11-04 09:57:25 -0700827 help
828 Normally tables are placed at address 0xf0000 and can be up to 64KB
829 long. With this option, tables are instead placed in the bloblist
830 with a pointer from 0xf0000. The size can then be larger and the
831 tables can be placed high in memory.
832
Alexander Graffb228082016-08-19 01:23:23 +0200833config GENERATE_SMBIOS_TABLE
834 bool "Generate an SMBIOS (System Management BIOS) table"
835 default y
Alexander Graf66f96e12016-08-19 01:23:29 +0200836 depends on X86 || EFI_LOADER
Alexander Graffb228082016-08-19 01:23:23 +0200837 help
838 The System Management BIOS (SMBIOS) specification addresses how
839 motherboard and system vendors present management information about
840 their products in a standard format by extending the BIOS interface
841 on Intel architecture systems.
842
843 Check http://www.dmtf.org/standards/smbios for details.
844
Simon Glass052a03e2020-11-05 06:32:11 -0700845 See also SMBIOS_SYSINFO which allows SMBIOS values to be provided in
846 the devicetree.
847
Tero Kristocfbe15c2021-06-11 11:45:02 +0300848config LIB_RATIONAL
849 bool "enable continued fraction calculation routines"
850
851config SPL_LIB_RATIONAL
852 bool "enable continued fraction calculation routines for SPL"
853 depends on SPL
854
Alexander Graffb228082016-08-19 01:23:23 +0200855endmenu
856
AKASHI Takahirof7025262019-11-13 09:44:53 +0900857config ASN1_COMPILER
858 bool
Philippe Reynes2aba9442022-03-28 22:56:54 +0200859 help
860 ASN.1 (Abstract Syntax Notation One) is a standard interface
861 description language for defining data structures that can be
862 serialized and deserialized in a cross-platform way. It is
863 broadly used in telecommunications and computer networking,
864 and especially in cryptography (https://en.wikipedia.org/wiki/ASN.1).
865 This option enables the support of the asn1 compiler.
AKASHI Takahirof7025262019-11-13 09:44:53 +0900866
AKASHI Takahiro3a888712019-11-13 09:44:55 +0900867config ASN1_DECODER
868 bool
869 help
Philippe Reynes2aba9442022-03-28 22:56:54 +0200870 ASN.1 (Abstract Syntax Notation One) is a standard interface
871 description language for defining data structures that can be
872 serialized and deserialized in a cross-platform way. It is
873 broadly used in telecommunications and computer networking,
874 and especially in cryptography (https://en.wikipedia.org/wiki/ASN.1).
875 This option enables the support of the asn1 decoder.
AKASHI Takahiro3a888712019-11-13 09:44:55 +0900876
Philippe Reynescf538b52022-03-28 22:56:56 +0200877config SPL_ASN1_DECODER
878 bool
879 help
880 ASN.1 (Abstract Syntax Notation One) is a standard interface
881 description language for defining data structures that can be
882 serialized and deserialized in a cross-platform way. It is
883 broadly used in telecommunications and computer networking,
884 and especially in cryptography (https://en.wikipedia.org/wiki/ASN.1).
885 This option enables the support of the asn1 decoder in the SPL.
886
AKASHI Takahiro54923642019-11-13 09:44:57 +0900887config OID_REGISTRY
888 bool
889 help
Philippe Reynese35c3a22022-03-28 22:56:55 +0200890 In computing, object identifiers or OIDs are an identifier mechanism
891 standardized by the International Telecommunication Union (ITU) and
892 ISO/IEC for naming any object, concept, or "thing" with a globally
893 unambiguous persistent name (https://en.wikipedia.org/wiki/Object_identifier).
AKASHI Takahiro54923642019-11-13 09:44:57 +0900894 Enable fast lookup object identifier registry.
895
Philippe Reynescf538b52022-03-28 22:56:56 +0200896config SPL_OID_REGISTRY
897 bool
898 help
899 In computing, object identifiers or OIDs are an identifier mechanism
900 standardized by the International Telecommunication Union (ITU) and
901 ISO/IEC for naming any object, concept, or "thing" with a globally
902 unambiguous persistent name (https://en.wikipedia.org/wiki/Object_identifier).
903 Enable fast lookup object identifier registry in the SPL.
904
Christian Gmeiner19859982020-11-03 15:34:51 +0100905config SMBIOS_PARSER
906 bool "SMBIOS parser"
907 help
908 A simple parser for SMBIOS data.
909
Simon Glass9539e692015-07-31 09:31:36 -0600910source lib/efi/Kconfig
Alexander Graf67ee7052016-03-04 01:10:07 +0100911source lib/efi_loader/Kconfig
Bryan O'Donoghue4b0de7c2018-03-13 16:50:27 +0000912source lib/optee/Kconfig
Simon Glass9539e692015-07-31 09:31:36 -0600913
Thierry Reding52c7f1f32019-03-21 19:10:04 +0100914config TEST_FDTDEC
915 bool "enable fdtdec test"
916 depends on OF_LIBFDT
917
AKASHI Takahiro51ba5222019-11-13 09:44:49 +0900918config LIB_DATE
919 bool
920
Keerthy76f361a2020-02-12 13:55:03 +0530921config LIB_ELF
922 bool
923 help
Patrick Delaunayfb67df82021-01-04 15:33:28 +0100924 Support basic elf loading/validating functions.
925 This supports for 32 bit and 64 bit versions.
Keerthy76f361a2020-02-12 13:55:03 +0530926
Patrick Delaunayd62063d2021-03-10 10:16:25 +0100927config LMB
928 bool "Enable the logical memory blocks library (lmb)"
Tom Rini53320122022-04-06 09:21:25 -0400929 default y if ARC || ARM || M68K || MICROBLAZE || MIPS || \
Patrick Delaunayd62063d2021-03-10 10:16:25 +0100930 NIOS2 || PPC || RISCV || SANDBOX || SH || X86 || XTENSA
931 help
932 Support the library logical memory blocks.
933
Patrick Delaunay71cc9c52021-03-10 10:16:31 +0100934config LMB_USE_MAX_REGIONS
Heinrich Schuchardtc4bc9182021-11-14 09:38:53 +0100935 bool "Use a common number of memory and reserved regions in lmb lib"
Patrick Delaunay71cc9c52021-03-10 10:16:31 +0100936 depends on LMB
937 default y
938 help
939 Define the number of supported memory regions in the library logical
940 memory blocks.
941 This feature allow to reduce the lmb library size by using compiler
942 optimization when LMB_MEMORY_REGIONS == LMB_RESERVED_REGIONS.
Patrick Delaunaycd831af2021-03-10 10:16:28 +0100943
944config LMB_MAX_REGIONS
945 int "Number of memory and reserved regions in lmb lib"
Patrick Delaunay71cc9c52021-03-10 10:16:31 +0100946 depends on LMB && LMB_USE_MAX_REGIONS
Patrick Delaunaycd831af2021-03-10 10:16:28 +0100947 default 8
948 help
949 Define the number of supported regions, memory and reserved, in the
950 library logical memory blocks.
Patrick Delaunay71cc9c52021-03-10 10:16:31 +0100951
952config LMB_MEMORY_REGIONS
953 int "Number of memory regions in lmb lib"
954 depends on LMB && !LMB_USE_MAX_REGIONS
955 default 8
956 help
957 Define the number of supported memory regions in the library logical
958 memory blocks.
959 The minimal value is CONFIG_NR_DRAM_BANKS.
960
961config LMB_RESERVED_REGIONS
962 int "Number of reserved regions in lmb lib"
963 depends on LMB && !LMB_USE_MAX_REGIONS
964 default 8
965 help
966 Define the number of supported reserved regions in the library logical
967 memory blocks.
968
Eugen Hristevdb6bbcb2022-01-04 18:20:19 +0200969endmenu