blob: c39fc52321471894123b0130a84e29a6e369a771 [file] [log] [blame]
Masahiro Yamadaed363232014-09-16 16:32:58 +09001menu "Library routines"
2
Marek Szyprowski69be8fd2020-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 Menge0103152021-02-25 17:22:36 +08009 This library only works in the post-relocation phase.
10
Marek Szyprowski69be8fd2020-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 Rini3b8dfc42022-11-16 13:10:38 -050018config SYS_TIMER_COUNTS_DOWN
19 bool "System timer counts down rathe than up"
20
Simon Glass6405ab72021-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 Ford6ef2f902017-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 Glass3c10dc92019-12-06 21:41:34 -070038config BINMAN_FDT
39 bool "Allow access to binman information in the device tree"
Bin Meng56e72572021-02-03 21:20:02 +080040 depends on BINMAN && DM && OF_CONTROL
Bin Meng1621d3c2021-05-10 20:23:36 +080041 default y if OF_SEPARATE || OF_EMBED
Simon Glass3c10dc92019-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 Yamadab0928da2014-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 Glass1a46cb62021-07-02 12:36:17 -060056config CHARSET
57 bool
Simon Glass1a46cb62021-07-02 12:36:17 -060058
Faiz Abbas36c18772018-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 Meng2895c4b2018-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 Yamada45ccec82014-10-24 01:30:43 +090071config HAVE_PRIVATE_LIBGCC
72 bool
73
Adam Forda451bc22018-02-06 12:14:28 -060074config LIB_UUID
75 bool
76
Alex Kiernan14ad44a2018-04-19 04:32:54 +000077config PRINTF
78 bool
79 default y
80
81config SPL_PRINTF
82 bool
83 select SPL_SPRINTF
Simon Glass27084c02019-09-25 08:56:27 -060084 select SPL_STRTO if !SPL_USE_TINY_PRINTF
Alex Kiernan14ad44a2018-04-19 04:32:54 +000085
86config TPL_PRINTF
87 bool
88 select TPL_SPRINTF
Simon Glass27084c02019-09-25 08:56:27 -060089 select TPL_STRTO if !TPL_USE_TINY_PRINTF
Alex Kiernan14ad44a2018-04-19 04:32:54 +000090
Simon Glass747093d2022-04-30 00:56:53 -060091config VPL_PRINTF
92 bool
93 select VPL_SPRINTF
94 select VPL_STRTO if !VPL_USE_TINY_PRINTF
95
Alex Kiernan14ad44a2018-04-19 04:32:54 +000096config SPRINTF
97 bool
98 default y
99
100config SPL_SPRINTF
101 bool
102
103config TPL_SPRINTF
104 bool
105
Simon Glass747093d2022-04-30 00:56:53 -0600106config VPL_SPRINTF
107 bool
108
Andrii Anisove87dfb02020-08-06 12:42:52 +0300109config SSCANF
110 bool
Andrii Anisove87dfb02020-08-06 12:42:52 +0300111
Alex Kiernan14ad44a2018-04-19 04:32:54 +0000112config STRTO
113 bool
114 default y
115
116config SPL_STRTO
117 bool
118
119config TPL_STRTO
120 bool
121
Simon Glass747093d2022-04-30 00:56:53 -0600122config VPL_STRTO
123 bool
124
Alex Kiernanc232d142018-05-29 15:30:52 +0000125config IMAGE_SPARSE
126 bool
127
128config IMAGE_SPARSE_FILLBUF_SIZE
129 hex "Android sparse image CHUNK_TYPE_FILL buffer size"
130 default 0x80000
131 depends on IMAGE_SPARSE
132 help
133 Set the size of the fill buffer used when processing CHUNK_TYPE_FILL
134 chunks.
135
Masahiro Yamada45ccec82014-10-24 01:30:43 +0900136config USE_PRIVATE_LIBGCC
137 bool "Use private libgcc"
138 depends on HAVE_PRIVATE_LIBGCC
Marek Vasut91b86e22016-05-26 18:01:47 +0200139 default y if HAVE_PRIVATE_LIBGCC && ((ARM && !ARM64) || MIPS)
Masahiro Yamada45ccec82014-10-24 01:30:43 +0900140 help
141 This option allows you to use the built-in libgcc implementation
Masahiro Yamada67976302016-03-30 20:17:42 +0900142 of U-Boot instead of the one provided by the compiler.
Masahiro Yamada45ccec82014-10-24 01:30:43 +0900143 If unsure, say N.
144
Masahiro Yamada8c688bc2014-10-24 01:30:40 +0900145config SYS_HZ
146 int
147 default 1000
148 help
149 The frequency of the timer returned by get_timer().
150 get_timer() must operate in milliseconds and this option must be
151 set to 1000.
152
Simon Glass27084c02019-09-25 08:56:27 -0600153config SPL_USE_TINY_PRINTF
Thomas Hebb37ef1772019-11-10 08:23:53 -0800154 bool "Enable tiny printf() version in SPL"
Simon Glass27084c02019-09-25 08:56:27 -0600155 depends on SPL
Tom Rini2a51e162019-06-08 12:46:18 -0400156 default y
Stefan Roese7d9cde12015-11-23 07:00:22 +0100157 help
158 This option enables a tiny, stripped down printf version.
159 This should only be used in space limited environments,
160 like SPL versions with hard memory limits. This version
161 reduces the code size by about 2.5KiB on armv7.
162
163 The supported format specifiers are %c, %s, %u/%d and %x.
164
Simon Glass27084c02019-09-25 08:56:27 -0600165config TPL_USE_TINY_PRINTF
Thomas Hebb37ef1772019-11-10 08:23:53 -0800166 bool "Enable tiny printf() version in TPL"
Simon Glass27084c02019-09-25 08:56:27 -0600167 depends on TPL
168 default y if SPL_USE_TINY_PRINTF
169 help
170 This option enables a tiny, stripped down printf version.
171 This should only be used in space limited environments,
172 like SPL versions with hard memory limits. This version
173 reduces the code size by about 2.5KiB on armv7.
174
175 The supported format specifiers are %c, %s, %u/%d and %x.
176
Simon Glass747093d2022-04-30 00:56:53 -0600177config VPL_USE_TINY_PRINTF
178 bool "Enable tiny printf() version for VPL"
179 depends on VPL
180 help
181 This option enables a tiny, stripped down printf version.
182 This should only be used in space limited environments,
183 like SPL versions with hard memory limits. This version
184 reduces the code size by about 2.5KiB on armv7.
185
186 The supported format specifiers are %c, %s, %u/%d and %x.
187
Masahiro Yamada7e3caa82017-12-04 12:37:00 +0900188config PANIC_HANG
189 bool "Do not reset the system on fatal error"
190 help
191 Define this option to stop the system in case of a fatal error,
192 so that you have to reset it manually. This is probably NOT a good
193 idea for an embedded system where you want the system to reboot
194 automatically as fast as possible, but it may be useful during
195 development since you can try to debug the conditions that lead to
196 the situation.
197
Joe Hershberger1a606502015-04-21 17:02:42 -0500198config REGEX
199 bool "Enable regular expression support"
Joe Hershbergerf7848d92015-06-22 17:57:36 -0500200 default y if NET
Joe Hershberger1a606502015-04-21 17:02:42 -0500201 help
202 If this variable is defined, U-Boot is linked against the
203 SLRE (Super Light Regular Expression) library, which adds
204 regex support to some commands, for example "env grep" and
205 "setexpr".
206
Adam Forda5a37562018-02-06 10:18:18 -0600207choice
208 prompt "Pseudo-random library support type"
Heinrich Schuchardt16112352020-01-19 19:28:12 +0100209 depends on NET_RANDOM_ETHADDR || RANDOM_UUID || CMD_UUID || \
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +0100210 RNG_SANDBOX || UT_LIB && AES || FAT_WRITE
Adam Forda5a37562018-02-06 10:18:18 -0600211 default LIB_RAND
Masahiro Yamada3850dbe2015-06-11 19:16:43 +0900212 help
Adam Forda5a37562018-02-06 10:18:18 -0600213 Select the library to provide pseudo-random number generator
214 functions. LIB_HW_RAND supports certain hardware engines that
215 provide this functionality. If in doubt, select LIB_RAND.
216
217config LIB_RAND
218 bool "Pseudo-random library support"
219
220config LIB_HW_RAND
Marcin Juszkiewicz43e442a2020-05-26 19:07:15 +0200221 bool "HW Engine for random library support"
Adam Forda5a37562018-02-06 10:18:18 -0600222
223endchoice
Michal Simek9ba9e852015-05-25 11:37:22 +0200224
Simon Glasse1722fc2021-12-01 09:02:36 -0700225config SUPPORT_ACPI
226 bool
227 help
228 Enable this if your arch or board can support generating ACPI
229 (Advanced Configuration and Power Interface) tables. In this case
230 U-Boot can generate these tables and pass them to the Operating
231 System.
232
233config GENERATE_ACPI_TABLE
234 bool "Generate an ACPI (Advanced Configuration and Power Interface) table"
235 depends on SUPPORT_ACPI
236 select QFW if QEMU
237 help
238 The Advanced Configuration and Power Interface (ACPI) specification
239 provides an open standard for device configuration and management
240 by the operating system. It defines platform-independent interfaces
241 for configuration and power management monitoring.
242
Simon Glassab4458b2017-04-02 09:50:28 -0600243config SPL_TINY_MEMSET
244 bool "Use a very small memset() in SPL"
Tom Rinib3401992022-06-10 23:03:09 -0400245 depends on SPL
Simon Glassab4458b2017-04-02 09:50:28 -0600246 help
247 The faster memset() is the arch-specific one (if available) enabled
248 by CONFIG_USE_ARCH_MEMSET. If that is not enabled, we can still get
249 better performance by writing a word at a time. But in very
Chris Packham6e705112019-01-13 22:13:28 +1300250 size-constrained environments even this may be too big. Enable this
Simon Glassab4458b2017-04-02 09:50:28 -0600251 option to reduce code size slightly at the cost of some speed.
252
Philipp Tomsich96b90822017-08-03 22:52:04 +0200253config TPL_TINY_MEMSET
254 bool "Use a very small memset() in TPL"
Tom Rini8bea4bf2022-06-08 08:24:39 -0400255 depends on TPL
Philipp Tomsich96b90822017-08-03 22:52:04 +0200256 help
257 The faster memset() is the arch-specific one (if available) enabled
258 by CONFIG_USE_ARCH_MEMSET. If that is not enabled, we can still get
259 better performance by writing a word at a time. But in very
Chris Packham6e705112019-01-13 22:13:28 +1300260 size-constrained environments even this may be too big. Enable this
Philipp Tomsich96b90822017-08-03 22:52:04 +0200261 option to reduce code size slightly at the cost of some speed.
262
Boris Brezillonaa049152017-02-27 18:22:05 +0100263config RBTREE
264 bool
265
Nandor Handa5337a2017-11-08 15:35:14 +0000266config BITREVERSE
267 bool "Bit reverse library from Linux"
268
Simon Glassa24a78d2019-04-08 13:20:51 -0600269config TRACE
270 bool "Support for tracing of function calls and timing"
271 imply CMD_TRACE
Pragnesh Patela80f8512021-01-17 18:11:24 +0530272 select TIMER_EARLY
Simon Glassa24a78d2019-04-08 13:20:51 -0600273 help
274 Enables function tracing within U-Boot. This allows recording of call
275 traces including timing information. The command can write data to
276 memory for exporting for analysis (e.g. using bootchart).
277 See doc/README.trace for full details.
278
Simon Glass1c6eb072019-04-08 13:20:52 -0600279config TRACE_BUFFER_SIZE
280 hex "Size of trace buffer in U-Boot"
281 depends on TRACE
282 default 0x01000000
283 help
284 Sets the size of the trace buffer in U-Boot. This is allocated from
285 memory during relocation. If this buffer is too small, the trace
286 history will be truncated, with later records omitted.
287
288 If early trace is enabled (i.e. before relocation), this buffer must
289 be large enough to include all the data from the early trace buffer as
290 well, since this is copied over to the main buffer during relocation.
291
292 A trace record is emitted for each function call and each record is
293 12 bytes (see struct trace_call). A suggested minimum size is 1MB. If
294 the size is too small then 'trace stats' will show a message saying
295 how many records were dropped due to buffer overflow.
296
Heinrich Schuchardtda0fb5f2019-06-02 13:30:09 +0200297config TRACE_CALL_DEPTH_LIMIT
298 int "Trace call depth limit"
299 depends on TRACE
300 default 15
301 help
302 Sets the maximum call depth up to which function calls are recorded.
303
Simon Glass1c6eb072019-04-08 13:20:52 -0600304config TRACE_EARLY
305 bool "Enable tracing before relocation"
306 depends on TRACE
307 help
308 Sometimes it is helpful to trace execution of U-Boot before
309 relocation. This is possible by using a arch-specific, fixed buffer
310 position in memory. Enable this option to start tracing as early as
311 possible after U-Boot starts.
312
313config TRACE_EARLY_SIZE
314 hex "Size of early trace buffer in U-Boot"
315 depends on TRACE_EARLY
316 default 0x00100000
317 help
318 Sets the size of the early trace buffer in bytes. This is used to hold
319 tracing information before relocation.
320
Heinrich Schuchardtda0fb5f2019-06-02 13:30:09 +0200321config TRACE_EARLY_CALL_DEPTH_LIMIT
322 int "Early trace call depth limit"
323 depends on TRACE_EARLY
324 default 200
325 help
326 Sets the maximum call depth up to which function calls are recorded
327 during early tracing.
328
Simon Glass1c6eb072019-04-08 13:20:52 -0600329config TRACE_EARLY_ADDR
330 hex "Address of early trace buffer in U-Boot"
331 depends on TRACE_EARLY
332 default 0x00100000
333 help
334 Sets the address of the early trace buffer in U-Boot. This memory
335 must be accessible before relocation.
336
337 A trace record is emitted for each function call and each record is
338 12 bytes (see struct trace_call). A suggested minimum size is 1MB. If
339 the size is too small then the message which says the amount of early
340 data being coped will the the same as the
341
Loic Poulain334a9b92021-11-25 18:16:14 +0100342config CIRCBUF
343 bool "Enable circular buffer support"
344
Simon Glassd1389402015-06-23 15:38:23 -0600345source lib/dhry/Kconfig
346
Simon Glassb1a873d2017-04-26 22:27:49 -0600347menu "Security support"
348
349config AES
350 bool "Support the AES algorithm"
351 help
352 This provides a means to encrypt and decrypt data using the AES
353 (Advanced Encryption Standard). This algorithm uses a symetric key
354 and is widely used as a streaming cipher. Different key lengths are
355 supported by the algorithm but only a 128-bit key is supported at
356 present.
357
Alexandru Gagniuc928a8be2021-07-29 11:47:16 -0500358source lib/ecdsa/Kconfig
Ruchika Guptad9f23c72015-01-23 16:01:56 +0530359source lib/rsa/Kconfig
AKASHI Takahirob4adf622019-11-13 09:45:00 +0900360source lib/crypto/Kconfig
Steffen Jaeckel26dd9932021-07-08 15:57:33 +0200361source lib/crypt/Kconfig
Ruchika Guptac4beb222015-01-23 16:01:51 +0530362
Simon Glassa7d660b2015-08-22 18:31:19 -0600363config TPM
364 bool "Trusted Platform Module (TPM) Support"
Simon Glass2419cd12015-10-03 06:39:36 -0600365 depends on DM
Sughosh Ganue67ffb52022-07-22 21:32:04 +0530366 imply DM_RNG
Simon Glassa7d660b2015-08-22 18:31:19 -0600367 help
368 This enables support for TPMs which can be used to provide security
369 features for your board. The TPM can be connected via LPC or I2C
370 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
371 command to interactive the TPM. Driver model support is provided
372 for the low-level TPM interface, but only one TPM is supported at
373 a time by the TPM library.
374
Simon Glass63078962018-10-01 12:22:19 -0600375config SPL_TPM
376 bool "Trusted Platform Module (TPM) Support in SPL"
377 depends on SPL_DM
378 help
379 This enables support for TPMs which can be used to provide security
380 features for your board. The TPM can be connected via LPC or I2C
381 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
382 command to interactive the TPM. Driver model support is provided
383 for the low-level TPM interface, but only one TPM is supported at
384 a time by the TPM library.
385
386config TPL_TPM
387 bool "Trusted Platform Module (TPM) Support in TPL"
388 depends on TPL_DM
389 help
390 This enables support for TPMs which can be used to provide security
391 features for your board. The TPM can be connected via LPC or I2C
392 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
393 command to interactive the TPM. Driver model support is provided
394 for the low-level TPM interface, but only one TPM is supported at
395 a time by the TPM library.
396
Simon Glass747093d2022-04-30 00:56:53 -0600397config VPL_TPM
398 bool "Trusted Platform Module (TPM) Support in VPL"
399 depends on VPL_DM
400 help
401 This enables support for TPMs which can be used to provide security
402 features for your board. The TPM can be connected via LPC or I2C
403 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
404 command to interactive the TPM. Driver model support is provided
405 for the low-level TPM interface, but only one TPM is supported at
406 a time by the TPM library.
407
Simon Glassb1a873d2017-04-26 22:27:49 -0600408endmenu
409
Igor Opaniuk33305842018-06-03 21:56:37 +0300410menu "Android Verified Boot"
411
412config LIBAVB
413 bool "Android Verified Boot 2.0 support"
414 depends on ANDROID_BOOT_IMAGE
Igor Opaniuk33305842018-06-03 21:56:37 +0300415 help
416 This enables support of Android Verified Boot 2.0 which can be used
417 to assure the end user of the integrity of the software running on a
418 device. Introduces such features as boot chain of trust, rollback
419 protection etc.
420
421endmenu
422
gaurav rana94e3c8c2015-02-20 12:51:46 +0530423menu "Hashing Support"
424
Qu Wenruo7c3fd5c2021-12-27 14:12:07 +0800425config BLAKE2
426 bool "Enable BLAKE2 support"
427 help
428 This option enables support of hashing using BLAKE2B algorithm.
429 The hash is calculated in software.
430 The BLAKE2 algorithm produces a hash value (digest) between 1 and
431 64 bytes.
432
gaurav rana94e3c8c2015-02-20 12:51:46 +0530433config SHA1
434 bool "Enable SHA1 support"
435 help
436 This option enables support of hashing using SHA1 algorithm.
437 The hash is calculated in software.
438 The SHA1 algorithm produces a 160-bit (20-byte) hash value
439 (digest).
440
441config SHA256
442 bool "Enable SHA256 support"
443 help
444 This option enables support of hashing using SHA256 algorithm.
445 The hash is calculated in software.
446 The SHA256 algorithm produces a 256-bit (32-byte) hash value
447 (digest).
448
Reuben Dowled16b38f2020-04-16 17:36:52 +1200449config SHA512
450 bool "Enable SHA512 support"
Reuben Dowled16b38f2020-04-16 17:36:52 +1200451 help
452 This option enables support of hashing using SHA512 algorithm.
453 The hash is calculated in software.
454 The SHA512 algorithm produces a 512-bit (64-byte) hash value
455 (digest).
456
457config SHA384
458 bool "Enable SHA384 support"
Alexandru Gagniuce60e4492021-09-02 19:54:18 -0500459 select SHA512
Reuben Dowled16b38f2020-04-16 17:36:52 +1200460 help
461 This option enables support of hashing using SHA384 algorithm.
Alexandru Gagniuce60e4492021-09-02 19:54:18 -0500462 The hash is calculated in software. This is also selects SHA512,
463 because these implementations share the bulk of the code..
Reuben Dowled16b38f2020-04-16 17:36:52 +1200464 The SHA384 algorithm produces a 384-bit (48-byte) hash value
465 (digest).
466
gaurav rana94e3c8c2015-02-20 12:51:46 +0530467config SHA_HW_ACCEL
Heinrich Schuchardte2ae4832021-05-14 07:08:27 +0200468 bool "Enable hardware acceleration for SHA hash functions"
gaurav rana94e3c8c2015-02-20 12:51:46 +0530469 help
Heinrich Schuchardte2ae4832021-05-14 07:08:27 +0200470 This option enables hardware acceleration for the SHA1 and SHA256
471 hashing algorithms. This affects the 'hash' command and also the
472 hash_lookup_algo() function.
473
Simon Glass603d15a2021-09-25 19:43:17 -0600474if SPL
475
476config SPL_SHA1
477 bool "Enable SHA1 support in SPL"
478 default y if SHA1
479 help
480 This option enables support of hashing using SHA1 algorithm.
481 The hash is calculated in software.
482 The SHA1 algorithm produces a 160-bit (20-byte) hash value
483 (digest).
484
485config SPL_SHA256
486 bool "Enable SHA256 support in SPL"
487 default y if SHA256
488 help
489 This option enables support of hashing using SHA256 algorithm.
490 The hash is calculated in software.
491 The SHA256 algorithm produces a 256-bit (32-byte) hash value
492 (digest).
493
494config SPL_SHA512
495 bool "Enable SHA512 support in SPL"
496 default y if SHA512
497 help
498 This option enables support of hashing using SHA512 algorithm.
499 The hash is calculated in software.
500 The SHA512 algorithm produces a 512-bit (64-byte) hash value
501 (digest).
502
503config SPL_SHA384
504 bool "Enable SHA384 support in SPL"
505 default y if SHA384
506 select SPL_SHA512
507 help
508 This option enables support of hashing using SHA384 algorithm.
509 The hash is calculated in software. This is also selects SHA512,
510 because these implementations share the bulk of the code..
511 The SHA384 algorithm produces a 384-bit (48-byte) hash value
512 (digest).
513
Simon Glass2c212562021-09-25 19:43:18 -0600514config SPL_SHA_HW_ACCEL
515 bool "Enable hardware acceleration for SHA hash functions"
516 default y if SHA_HW_ACCEL
517 help
518 This option enables hardware acceleration for the SHA1 and SHA256
519 hashing algorithms. This affects the 'hash' command and also the
520 hash_lookup_algo() function.
521
522config SPL_SHA_PROG_HW_ACCEL
523 bool "Enable Progressive hashing support using hardware in SPL"
524 depends on SHA_PROG_HW_ACCEL
525 default y
526 help
527 This option enables hardware-acceleration for SHA progressive
528 hashing.
529 Data can be streamed in a block at a time and the hashing is
530 performed in hardware.
531
Simon Glass603d15a2021-09-25 19:43:17 -0600532endif
533
Heinrich Schuchardte2ae4832021-05-14 07:08:27 +0200534if SHA_HW_ACCEL
535
536config SHA512_HW_ACCEL
537 bool "Enable hardware acceleration for SHA512"
Alexandru Gagniuce60e4492021-09-02 19:54:18 -0500538 depends on SHA512
Heinrich Schuchardte2ae4832021-05-14 07:08:27 +0200539 help
540 This option enables hardware acceleration for the SHA384 and SHA512
541 hashing algorithms. This affects the 'hash' command and also the
542 hash_lookup_algo() function.
gaurav rana94e3c8c2015-02-20 12:51:46 +0530543
544config SHA_PROG_HW_ACCEL
545 bool "Enable Progressive hashing support using hardware"
gaurav rana94e3c8c2015-02-20 12:51:46 +0530546 help
Joel Stanleya479f102021-02-17 13:50:42 +1030547 This option enables hardware-acceleration for SHA progressive
548 hashing.
549 Data can be streamed in a block at a time and the hashing is
550 performed in hardware.
Andre Przywarabea79d72017-03-15 01:19:05 +0000551
Heinrich Schuchardte2ae4832021-05-14 07:08:27 +0200552endif
553
Andre Przywarabea79d72017-03-15 01:19:05 +0000554config MD5
Simon Glass8239be62020-05-06 08:03:56 -0600555 bool "Support MD5 algorithm"
556 help
557 This option enables MD5 support. MD5 is an algorithm designed
558 in 1991 that produces a 16-byte digest (or checksum) from its input
559 data. It has a number of vulnerabilities which preclude its use in
560 security applications, but it can be useful for providing a quick
561 checksum of a block of data.
562
563config SPL_MD5
564 bool "Support MD5 algorithm in SPL"
Tom Rinib3401992022-06-10 23:03:09 -0400565 depends on SPL
Simon Glass8239be62020-05-06 08:03:56 -0600566 help
567 This option enables MD5 support in SPL. MD5 is an algorithm designed
568 in 1991 that produces a 16-byte digest (or checksum) from its input
569 data. It has a number of vulnerabilities which preclude its use in
570 security applications, but it can be useful for providing a quick
571 checksum of a block of data.
Andre Przywarabea79d72017-03-15 01:19:05 +0000572
Simon Glasse7d285b2021-09-25 19:43:24 -0600573config CRC32
574 def_bool y
575 help
576 Enables CRC32 support in U-Boot. This is normally required.
577
Marek Behún85d8bf52017-09-03 17:00:23 +0200578config CRC32C
579 bool
580
Marek Behún83a486b2019-04-29 22:40:43 +0200581config XXHASH
582 bool
583
gaurav rana94e3c8c2015-02-20 12:51:46 +0530584endmenu
585
Julius Werner027b7282015-10-06 20:03:53 -0700586menu "Compression Support"
587
588config LZ4
589 bool "Enable LZ4 decompression support"
590 help
591 If this option is set, support for LZ4 compressed images
592 is included. The LZ4 algorithm can run in-place as long as the
593 compressed image is loaded to the end of the output buffer, and
594 trades lower compression ratios for much faster decompression.
Patrick Delaunay4fa01502021-03-10 10:16:28 +0100595
Julius Werner027b7282015-10-06 20:03:53 -0700596 NOTE: This implements the release version of the LZ4 frame
597 format as generated by default by the 'lz4' command line tool.
598 This is not the same as the outdated, less efficient legacy
599 frame format currently (2015) implemented in the Linux kernel
600 (generated by 'lz4 -l'). The two formats are incompatible.
601
Simon Glassaed998a2017-05-17 03:25:42 -0600602config LZMA
603 bool "Enable LZMA decompression support"
604 help
605 This enables support for LZMA (Lempel-Ziv-Markov chain algorithm),
606 a dictionary compression algorithm that provides a high compression
607 ratio and fairly fast decompression speed. See also
608 CONFIG_CMD_LZMADEC which provides a decode command.
609
Boris Brezillon173aafb2017-02-27 18:22:06 +0100610config LZO
Tom Rinid56b4b12017-07-22 18:36:16 -0400611 bool "Enable LZO decompression support"
612 help
Oleksandr Suvorov5145bc72021-09-01 16:05:08 +0300613 This enables support for the LZO compression algorithm.
York Sun7264f292017-08-15 11:14:43 -0700614
Marek Vasut95f4bbd2019-03-08 16:06:55 +0100615config GZIP
Heiko Schocher51323612019-04-29 08:59:38 +0200616 bool "Enable gzip decompression support"
Marek Vasut95f4bbd2019-03-08 16:06:55 +0100617 select ZLIB
618 default y
619 help
620 This enables support for GZIP compression algorithm.
621
Joao Marcos Costa81014f72020-07-30 15:33:49 +0200622config ZLIB_UNCOMPRESS
623 bool "Enables zlib's uncompress() functionality"
624 help
625 This enables an extra zlib functionality: the uncompress() function,
626 which decompresses data from a buffer into another, knowing their
627 sizes. Unlike gunzip(), there is no header parsing.
628
Michael Walleeff5a542020-05-22 14:07:36 +0200629config GZIP_COMPRESSED
630 bool
631 select ZLIB
632
Atish Patra2a2119e2020-03-05 16:24:21 -0800633config BZIP2
634 bool "Enable bzip2 decompression support"
635 help
636 This enables support for BZIP2 compression algorithm.
637
Marek Vasut95f4bbd2019-03-08 16:06:55 +0100638config ZLIB
639 bool
640 default y
641 help
642 This enables ZLIB compression lib.
643
Marek Behún8509f222019-04-29 22:40:44 +0200644config ZSTD
645 bool "Enable Zstandard decompression support"
646 select XXHASH
647 help
648 This enables Zstandard decompression library.
649
Simon Glass048c6e82018-11-06 15:21:30 -0700650config SPL_LZ4
651 bool "Enable LZ4 decompression support in SPL"
Tom Rinib3401992022-06-10 23:03:09 -0400652 depends on SPL
Simon Glass048c6e82018-11-06 15:21:30 -0700653 help
Marcin Juszkiewicz43e442a2020-05-26 19:07:15 +0200654 This enables support for the LZ4 decompression algorithm in SPL. LZ4
Simon Glass048c6e82018-11-06 15:21:30 -0700655 is a lossless data compression algorithm that is focused on
656 fast compression and decompression speed. It belongs to the LZ77
657 family of byte-oriented compression schemes.
658
Weijie Gao04cb3992020-04-21 09:28:38 +0200659config SPL_LZMA
660 bool "Enable LZMA decompression support for SPL build"
Tom Rinib3401992022-06-10 23:03:09 -0400661 depends on SPL
Weijie Gao04cb3992020-04-21 09:28:38 +0200662 help
Marcin Juszkiewicz43e442a2020-05-26 19:07:15 +0200663 This enables support for LZMA compression algorithm for SPL boot.
Weijie Gao04cb3992020-04-21 09:28:38 +0200664
Simon Glass747093d2022-04-30 00:56:53 -0600665config VPL_LZMA
666 bool "Enable LZMA decompression support for VPL build"
667 default y if LZMA
668 help
669 This enables support for LZMA compression algorithm for VPL boot.
670
Jean-Jacques Hiblotf52bdf42017-09-15 12:57:30 +0200671config SPL_LZO
672 bool "Enable LZO decompression support in SPL"
Tom Rinib3401992022-06-10 23:03:09 -0400673 depends on SPL
Jean-Jacques Hiblotf52bdf42017-09-15 12:57:30 +0200674 help
675 This enables support for LZO compression algorithm in the SPL.
676
York Sun7264f292017-08-15 11:14:43 -0700677config SPL_GZIP
678 bool "Enable gzip decompression support for SPL build"
679 select SPL_ZLIB
680 help
Oleksandr Suvorov5145bc72021-09-01 16:05:08 +0300681 This enables support for the GZIP compression algorithm for SPL boot.
York Sun7264f292017-08-15 11:14:43 -0700682
683config SPL_ZLIB
684 bool
685 help
686 This enables compression lib for SPL boot.
687
Marek Behún8509f222019-04-29 22:40:44 +0200688config SPL_ZSTD
689 bool "Enable Zstandard decompression support in SPL"
Tom Rinib3401992022-06-10 23:03:09 -0400690 depends on SPL
Marek Behún8509f222019-04-29 22:40:44 +0200691 select XXHASH
692 help
693 This enables Zstandard decompression library in the SPL.
694
Julius Werner027b7282015-10-06 20:03:53 -0700695endmenu
696
Przemyslaw Marczak6501ff62015-04-20 20:07:40 +0200697config ERRNO_STR
698 bool "Enable function for getting errno-related string message"
699 help
700 The function errno_str(int errno), returns a pointer to the errno
701 corresponding text message:
702 - if errno is null or positive number - a pointer to "Success" message
703 - if errno is negative - a pointer to errno related message
704
Alexey Brodkinf8c987f2018-06-05 17:17:57 +0300705config HEXDUMP
706 bool "Enable hexdump"
707 help
708 This enables functions for printing dumps of binary data.
709
Simon Glass26637e22020-09-12 11:13:35 -0600710config SPL_HEXDUMP
711 bool "Enable hexdump in SPL"
Heinrich Schuchardtfa3f1f12021-07-24 17:35:46 +0200712 depends on SPL && HEXDUMP
Simon Glass26637e22020-09-12 11:13:35 -0600713 help
714 This enables functions for printing dumps of binary data in
715 SPL.
716
Sean Anderson72eda502020-10-27 19:55:36 -0400717config GETOPT
718 bool "Enable getopt"
719 help
720 This enables functions for parsing command-line options.
721
Simon Glass69e173e2016-02-22 22:55:42 -0700722config OF_LIBFDT
723 bool "Enable the FDT library"
724 default y if OF_CONTROL
725 help
726 This enables the FDT library (libfdt). It provides functions for
727 accessing binary device tree images in memory, such as adding and
Anatolij Gustschinf1a7ba12017-08-18 17:58:51 +0200728 removing nodes and properties, scanning through the tree and finding
Simon Glass69e173e2016-02-22 22:55:42 -0700729 particular compatible nodes. The library operates on a flattened
730 version of the device tree.
731
Simon Glass0d76afc2019-10-27 09:47:40 -0600732config OF_LIBFDT_ASSUME_MASK
733 hex "Mask of conditions to assume for libfdt"
734 depends on OF_LIBFDT || FIT
735 default 0
736 help
737 Use this to change the assumptions made by libfdt about the
738 device tree it is working with. A value of 0 means that no assumptions
739 are made, and libfdt is able to deal with malicious data. A value of
740 0xff means all assumptions are made and any invalid data may cause
741 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
742
Maxime Ripardddf67f72016-07-05 10:26:44 +0200743config OF_LIBFDT_OVERLAY
744 bool "Enable the FDT library overlay support"
Tom Rini64175722018-05-08 08:52:17 -0400745 depends on OF_LIBFDT
Praneeth Bajjuri58a46f82018-04-25 16:03:23 -0500746 default y if ARCH_OMAP2PLUS || ARCH_KEYSTONE
Maxime Ripardddf67f72016-07-05 10:26:44 +0200747 help
748 This enables the FDT library (libfdt) overlay support.
749
Tom Rini40ed7be2022-08-02 07:33:27 -0400750config SYS_FDT_PAD
751 hex "Maximum size of the FDT memory area passeed to the OS"
752 depends on OF_LIBFDT
753 default 0x13000 if FMAN_ENET || QE || U_QE
754 default 0x3000
755 help
756 During OS boot, we allocate a region of memory within the bootmap
757 for the FDT. This is the size that we will expand the FDT that we
758 are using will be extended to be, in bytes.
759
Simon Glassaa34fbc2016-02-22 22:55:45 -0700760config SPL_OF_LIBFDT
761 bool "Enable the FDT library for SPL"
Simon Glass747093d2022-04-30 00:56:53 -0600762 depends on SPL_LIBGENERIC_SUPPORT
Simon Glassaa34fbc2016-02-22 22:55:45 -0700763 default y if SPL_OF_CONTROL
764 help
765 This enables the FDT library (libfdt). It provides functions for
766 accessing binary device tree images in memory, such as adding and
Anatolij Gustschinf1a7ba12017-08-18 17:58:51 +0200767 removing nodes and properties, scanning through the tree and finding
Simon Glassaa34fbc2016-02-22 22:55:45 -0700768 particular compatible nodes. The library operates on a flattened
769 version of the device tree.
770
Simon Glass0d76afc2019-10-27 09:47:40 -0600771config SPL_OF_LIBFDT_ASSUME_MASK
772 hex "Mask of conditions to assume for libfdt"
Tom Rinib3401992022-06-10 23:03:09 -0400773 depends on SPL_OF_LIBFDT || (FIT && SPL)
Simon Glass0d76afc2019-10-27 09:47:40 -0600774 default 0xff
775 help
776 Use this to change the assumptions made by libfdt in SPL about the
777 device tree it is working with. A value of 0 means that no assumptions
778 are made, and libfdt is able to deal with malicious data. A value of
779 0xff means all assumptions are made and any invalid data may cause
780 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
781
Simon Glass5592a632018-10-01 12:22:21 -0600782config TPL_OF_LIBFDT
783 bool "Enable the FDT library for TPL"
Simon Glass747093d2022-04-30 00:56:53 -0600784 depends on TPL_LIBGENERIC_SUPPORT
Simon Glass5592a632018-10-01 12:22:21 -0600785 default y if TPL_OF_CONTROL
786 help
787 This enables the FDT library (libfdt). It provides functions for
788 accessing binary device tree images in memory, such as adding and
789 removing nodes and properties, scanning through the tree and finding
790 particular compatible nodes. The library operates on a flattened
791 version of the device tree.
792
Simon Glass0d76afc2019-10-27 09:47:40 -0600793config TPL_OF_LIBFDT_ASSUME_MASK
794 hex "Mask of conditions to assume for libfdt"
Tom Rini8bea4bf2022-06-08 08:24:39 -0400795 depends on TPL_OF_LIBFDT || (FIT && TPL)
Simon Glass0d76afc2019-10-27 09:47:40 -0600796 default 0xff
797 help
798 Use this to change the assumptions made by libfdt in TPL about the
799 device tree it is working with. A value of 0 means that no assumptions
800 are made, and libfdt is able to deal with malicious data. A value of
801 0xff means all assumptions are made and any invalid data may cause
802 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
803
Simon Glass747093d2022-04-30 00:56:53 -0600804config VPL_OF_LIBFDT
805 bool "Enable the FDT library for VPL"
Tom Rini13ce3512022-06-08 08:24:40 -0400806 depends on VPL
Simon Glass747093d2022-04-30 00:56:53 -0600807 default y if VPL_OF_CONTROL && !VPL_OF_PLATDATA
808 help
809 This enables the FDT library (libfdt). It provides functions for
810 accessing binary device tree images in memory, such as adding and
811 removing nodes and properties, scanning through the tree and finding
812 particular compatible nodes. The library operates on a flattened
813 version of the device tree.
814
815config VPL_OF_LIBFDT_ASSUME_MASK
816 hex "Mask of conditions to assume for libfdt"
Tom Rini13ce3512022-06-08 08:24:40 -0400817 depends on VPL_OF_LIBFDT || (FIT && VPL)
Simon Glass747093d2022-04-30 00:56:53 -0600818 default 0xff
819 help
820 Use this to change the assumptions made by libfdt in SPL about the
821 device tree it is working with. A value of 0 means that no assumptions
822 are made, and libfdt is able to deal with malicious data. A value of
823 0xff means all assumptions are made and any invalid data may cause
824 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
825
Heiko Schocherebf7fff2016-10-06 07:31:45 +0200826config FDT_FIXUP_PARTITIONS
827 bool "overwrite MTD partitions in DTS through defined in 'mtdparts'"
828 depends on OF_LIBFDT
Masahiro Yamadaab948cd2018-07-20 11:04:09 +0900829 depends on CMD_MTDPARTS
Heiko Schocherebf7fff2016-10-06 07:31:45 +0200830 help
831 Allow overwriting defined partitions in the device tree blob
832 using partition info defined in the 'mtdparts' environment
833 variable.
834
Alexander Graf4b6dddc2016-08-19 01:23:23 +0200835menu "System tables"
Alexander Grafe663b352016-08-19 01:23:29 +0200836 depends on (!EFI && !SYS_COREBOOT) || (ARM && EFI_LOADER)
Alexander Graf4b6dddc2016-08-19 01:23:23 +0200837
Simon Glassd2cb7a22020-11-04 09:57:25 -0700838config BLOBLIST_TABLES
839 bool "Put tables in a bloblist"
Simon Glassf2c14422021-03-15 18:11:22 +1300840 depends on X86 && BLOBLIST
Simon Glassd2cb7a22020-11-04 09:57:25 -0700841 help
842 Normally tables are placed at address 0xf0000 and can be up to 64KB
843 long. With this option, tables are instead placed in the bloblist
844 with a pointer from 0xf0000. The size can then be larger and the
845 tables can be placed high in memory.
846
Alexander Graf4b6dddc2016-08-19 01:23:23 +0200847config GENERATE_SMBIOS_TABLE
848 bool "Generate an SMBIOS (System Management BIOS) table"
849 default y
Alexander Grafe663b352016-08-19 01:23:29 +0200850 depends on X86 || EFI_LOADER
Alexander Graf4b6dddc2016-08-19 01:23:23 +0200851 help
852 The System Management BIOS (SMBIOS) specification addresses how
853 motherboard and system vendors present management information about
854 their products in a standard format by extending the BIOS interface
855 on Intel architecture systems.
856
857 Check http://www.dmtf.org/standards/smbios for details.
858
Simon Glass44c74bd2020-11-05 06:32:11 -0700859 See also SMBIOS_SYSINFO which allows SMBIOS values to be provided in
860 the devicetree.
861
Tero Kristo7d0f3fb2021-06-11 11:45:02 +0300862config LIB_RATIONAL
863 bool "enable continued fraction calculation routines"
864
865config SPL_LIB_RATIONAL
866 bool "enable continued fraction calculation routines for SPL"
867 depends on SPL
868
Alexander Graf4b6dddc2016-08-19 01:23:23 +0200869endmenu
870
AKASHI Takahiro2b121962019-11-13 09:44:53 +0900871config ASN1_COMPILER
872 bool
Philippe Reynesa0e71d92022-03-28 22:56:54 +0200873 help
874 ASN.1 (Abstract Syntax Notation One) is a standard interface
875 description language for defining data structures that can be
876 serialized and deserialized in a cross-platform way. It is
877 broadly used in telecommunications and computer networking,
878 and especially in cryptography (https://en.wikipedia.org/wiki/ASN.1).
879 This option enables the support of the asn1 compiler.
AKASHI Takahiro2b121962019-11-13 09:44:53 +0900880
AKASHI Takahiroab8a0e02019-11-13 09:44:55 +0900881config ASN1_DECODER
882 bool
883 help
Philippe Reynesa0e71d92022-03-28 22:56:54 +0200884 ASN.1 (Abstract Syntax Notation One) is a standard interface
885 description language for defining data structures that can be
886 serialized and deserialized in a cross-platform way. It is
887 broadly used in telecommunications and computer networking,
888 and especially in cryptography (https://en.wikipedia.org/wiki/ASN.1).
889 This option enables the support of the asn1 decoder.
AKASHI Takahiroab8a0e02019-11-13 09:44:55 +0900890
Philippe Reynesfd210fe2022-03-28 22:56:56 +0200891config SPL_ASN1_DECODER
892 bool
893 help
894 ASN.1 (Abstract Syntax Notation One) is a standard interface
895 description language for defining data structures that can be
896 serialized and deserialized in a cross-platform way. It is
897 broadly used in telecommunications and computer networking,
898 and especially in cryptography (https://en.wikipedia.org/wiki/ASN.1).
899 This option enables the support of the asn1 decoder in the SPL.
900
AKASHI Takahiroa9b45e62019-11-13 09:44:57 +0900901config OID_REGISTRY
902 bool
903 help
Philippe Reynes7d44a982022-03-28 22:56:55 +0200904 In computing, object identifiers or OIDs are an identifier mechanism
905 standardized by the International Telecommunication Union (ITU) and
906 ISO/IEC for naming any object, concept, or "thing" with a globally
907 unambiguous persistent name (https://en.wikipedia.org/wiki/Object_identifier).
AKASHI Takahiroa9b45e62019-11-13 09:44:57 +0900908 Enable fast lookup object identifier registry.
909
Philippe Reynesfd210fe2022-03-28 22:56:56 +0200910config SPL_OID_REGISTRY
911 bool
912 help
913 In computing, object identifiers or OIDs are an identifier mechanism
914 standardized by the International Telecommunication Union (ITU) and
915 ISO/IEC for naming any object, concept, or "thing" with a globally
916 unambiguous persistent name (https://en.wikipedia.org/wiki/Object_identifier).
917 Enable fast lookup object identifier registry in the SPL.
918
Christian Gmeiner415eab02020-11-03 15:34:51 +0100919config SMBIOS_PARSER
920 bool "SMBIOS parser"
921 help
922 A simple parser for SMBIOS data.
923
Simon Glass867a6ac2015-07-31 09:31:36 -0600924source lib/efi/Kconfig
Alexander Grafed980b82016-03-04 01:10:07 +0100925source lib/efi_loader/Kconfig
Bryan O'Donoghue32ce6172018-03-13 16:50:27 +0000926source lib/optee/Kconfig
Simon Glass867a6ac2015-07-31 09:31:36 -0600927
Thierry Reding54969b42019-03-21 19:10:04 +0100928config TEST_FDTDEC
929 bool "enable fdtdec test"
930 depends on OF_LIBFDT
931
AKASHI Takahiro05429b62019-11-13 09:44:49 +0900932config LIB_DATE
933 bool
934
Keerthy805b3ca2020-02-12 13:55:03 +0530935config LIB_ELF
936 bool
937 help
Patrick Delaunay6205bbb2021-01-04 15:33:28 +0100938 Support basic elf loading/validating functions.
939 This supports for 32 bit and 64 bit versions.
Keerthy805b3ca2020-02-12 13:55:03 +0530940
Patrick Delaunay77b8cfe2021-03-10 10:16:25 +0100941config LMB
942 bool "Enable the logical memory blocks library (lmb)"
Tom Rini11232132022-04-06 09:21:25 -0400943 default y if ARC || ARM || M68K || MICROBLAZE || MIPS || \
Patrick Delaunay77b8cfe2021-03-10 10:16:25 +0100944 NIOS2 || PPC || RISCV || SANDBOX || SH || X86 || XTENSA
945 help
946 Support the library logical memory blocks.
947
Patrick Delaunay6d665022021-03-10 10:16:31 +0100948config LMB_USE_MAX_REGIONS
Heinrich Schuchardtac7606a2021-11-14 09:38:53 +0100949 bool "Use a common number of memory and reserved regions in lmb lib"
Patrick Delaunay6d665022021-03-10 10:16:31 +0100950 depends on LMB
951 default y
952 help
953 Define the number of supported memory regions in the library logical
954 memory blocks.
955 This feature allow to reduce the lmb library size by using compiler
956 optimization when LMB_MEMORY_REGIONS == LMB_RESERVED_REGIONS.
Patrick Delaunay4fa01502021-03-10 10:16:28 +0100957
958config LMB_MAX_REGIONS
959 int "Number of memory and reserved regions in lmb lib"
Patrick Delaunay6d665022021-03-10 10:16:31 +0100960 depends on LMB && LMB_USE_MAX_REGIONS
Patrick Delaunay4fa01502021-03-10 10:16:28 +0100961 default 8
962 help
963 Define the number of supported regions, memory and reserved, in the
964 library logical memory blocks.
Patrick Delaunay6d665022021-03-10 10:16:31 +0100965
966config LMB_MEMORY_REGIONS
967 int "Number of memory regions in lmb lib"
968 depends on LMB && !LMB_USE_MAX_REGIONS
969 default 8
970 help
971 Define the number of supported memory regions in the library logical
972 memory blocks.
973 The minimal value is CONFIG_NR_DRAM_BANKS.
974
975config LMB_RESERVED_REGIONS
976 int "Number of reserved regions in lmb lib"
977 depends on LMB && !LMB_USE_MAX_REGIONS
978 default 8
979 help
980 Define the number of supported reserved regions in the library logical
981 memory blocks.
982
Eugen Hristev97f2a742022-01-04 18:20:19 +0200983endmenu
Sughosh Ganu86794052022-10-21 18:16:03 +0530984
985menu "FWU Multi Bank Updates"
986
987source lib/fwu_updates/Kconfig
988
989endmenu