]> Git Repo - J-u-boot.git/blame - lib/Kconfig
efi_loader: round the memory area in efi_add_memory_map()
[J-u-boot.git] / lib / Kconfig
CommitLineData
ed36323f
MY
1menu "Library routines"
2
6ef2f901
AF
3config BCH
4 bool "Enable Software based BCH ECC"
5 help
6 Enables software based BCH ECC algorithm present in lib/bch.c
7 This is used by SoC platforms which do not have built-in ELM
8 hardware engine required for BCH ECC correction.
9
3c10dc95
SG
10config BINMAN_FDT
11 bool "Allow access to binman information in the device tree"
12 depends on BINMAN && OF_CONTROL
13 default y
14 help
15 This enables U-Boot to access information about binman entries,
16 stored in the device tree in a binman node. Typical uses are to
17 locate entries in the firmware image. See binman.h for the available
18 functionality.
19
b0928da6
MY
20config CC_OPTIMIZE_LIBS_FOR_SPEED
21 bool "Optimize libraries for speed"
22 help
23 Enabling this option will pass "-O2" to gcc when compiling
24 under "lib" directory.
25
26 If unsure, say N.
27
36c1877c
FA
28config DYNAMIC_CRC_TABLE
29 bool "Enable Dynamic tables for CRC"
30 help
31 Enable this option to calculate entries for CRC tables at runtime.
32 This can be helpful when reducing the size of the build image
33
2895c4b7
BM
34config HAVE_ARCH_IOMAP
35 bool
36 help
37 Enable this option if architecture provides io{read,write}{8,16,32}
38 I/O accessor functions.
39
45ccec8f
MY
40config HAVE_PRIVATE_LIBGCC
41 bool
42
a451bc27
AF
43config LIB_UUID
44 bool
45
14ad44ab
AK
46config PRINTF
47 bool
48 default y
49
50config SPL_PRINTF
51 bool
52 select SPL_SPRINTF
27084c03 53 select SPL_STRTO if !SPL_USE_TINY_PRINTF
14ad44ab
AK
54
55config TPL_PRINTF
56 bool
57 select TPL_SPRINTF
27084c03 58 select TPL_STRTO if !TPL_USE_TINY_PRINTF
14ad44ab
AK
59
60config SPRINTF
61 bool
62 default y
63
64config SPL_SPRINTF
65 bool
66
67config TPL_SPRINTF
68 bool
69
70config STRTO
71 bool
72 default y
73
74config SPL_STRTO
75 bool
76
77config TPL_STRTO
78 bool
79
c232d14d
AK
80config IMAGE_SPARSE
81 bool
82
83config IMAGE_SPARSE_FILLBUF_SIZE
84 hex "Android sparse image CHUNK_TYPE_FILL buffer size"
85 default 0x80000
86 depends on IMAGE_SPARSE
87 help
88 Set the size of the fill buffer used when processing CHUNK_TYPE_FILL
89 chunks.
90
45ccec8f
MY
91config USE_PRIVATE_LIBGCC
92 bool "Use private libgcc"
93 depends on HAVE_PRIVATE_LIBGCC
91b86e21 94 default y if HAVE_PRIVATE_LIBGCC && ((ARM && !ARM64) || MIPS)
45ccec8f
MY
95 help
96 This option allows you to use the built-in libgcc implementation
67976306 97 of U-Boot instead of the one provided by the compiler.
45ccec8f
MY
98 If unsure, say N.
99
8c688bc4
MY
100config SYS_HZ
101 int
102 default 1000
103 help
104 The frequency of the timer returned by get_timer().
105 get_timer() must operate in milliseconds and this option must be
106 set to 1000.
107
27084c03 108config SPL_USE_TINY_PRINTF
37ef1774 109 bool "Enable tiny printf() version in SPL"
27084c03 110 depends on SPL
2a51e16b 111 default y
7d9cde10
SR
112 help
113 This option enables a tiny, stripped down printf version.
114 This should only be used in space limited environments,
115 like SPL versions with hard memory limits. This version
116 reduces the code size by about 2.5KiB on armv7.
117
118 The supported format specifiers are %c, %s, %u/%d and %x.
119
27084c03 120config TPL_USE_TINY_PRINTF
37ef1774 121 bool "Enable tiny printf() version in TPL"
27084c03
SG
122 depends on TPL
123 default y if SPL_USE_TINY_PRINTF
124 help
125 This option enables a tiny, stripped down printf version.
126 This should only be used in space limited environments,
127 like SPL versions with hard memory limits. This version
128 reduces the code size by about 2.5KiB on armv7.
129
130 The supported format specifiers are %c, %s, %u/%d and %x.
131
7e3caa81
MY
132config PANIC_HANG
133 bool "Do not reset the system on fatal error"
134 help
135 Define this option to stop the system in case of a fatal error,
136 so that you have to reset it manually. This is probably NOT a good
137 idea for an embedded system where you want the system to reboot
138 automatically as fast as possible, but it may be useful during
139 development since you can try to debug the conditions that lead to
140 the situation.
141
1a60650c
JH
142config REGEX
143 bool "Enable regular expression support"
f7848d90 144 default y if NET
1a60650c
JH
145 help
146 If this variable is defined, U-Boot is linked against the
147 SLRE (Super Light Regular Expression) library, which adds
148 regex support to some commands, for example "env grep" and
149 "setexpr".
150
a5a37567
AF
151choice
152 prompt "Pseudo-random library support type"
1611235b
HS
153 depends on NET_RANDOM_ETHADDR || RANDOM_UUID || CMD_UUID || \
154 RNG_SANDBOX || UT_LIB && AES
a5a37567 155 default LIB_RAND
3850dbe8 156 help
a5a37567
AF
157 Select the library to provide pseudo-random number generator
158 functions. LIB_HW_RAND supports certain hardware engines that
159 provide this functionality. If in doubt, select LIB_RAND.
160
161config LIB_RAND
162 bool "Pseudo-random library support"
163
164config LIB_HW_RAND
165 bool "HW Engine for random libray support"
166
167endchoice
9ba9e85f 168
ab4458bd
SG
169config SPL_TINY_MEMSET
170 bool "Use a very small memset() in SPL"
171 help
172 The faster memset() is the arch-specific one (if available) enabled
173 by CONFIG_USE_ARCH_MEMSET. If that is not enabled, we can still get
174 better performance by writing a word at a time. But in very
6e705114 175 size-constrained environments even this may be too big. Enable this
ab4458bd
SG
176 option to reduce code size slightly at the cost of some speed.
177
96b9082c
PT
178config TPL_TINY_MEMSET
179 bool "Use a very small memset() in TPL"
180 help
181 The faster memset() is the arch-specific one (if available) enabled
182 by CONFIG_USE_ARCH_MEMSET. If that is not enabled, we can still get
183 better performance by writing a word at a time. But in very
6e705114 184 size-constrained environments even this may be too big. Enable this
96b9082c
PT
185 option to reduce code size slightly at the cost of some speed.
186
aa049152
BB
187config RBTREE
188 bool
189
da5337a6
NH
190config BITREVERSE
191 bool "Bit reverse library from Linux"
192
a24a78d7
SG
193config TRACE
194 bool "Support for tracing of function calls and timing"
195 imply CMD_TRACE
196 help
197 Enables function tracing within U-Boot. This allows recording of call
198 traces including timing information. The command can write data to
199 memory for exporting for analysis (e.g. using bootchart).
200 See doc/README.trace for full details.
201
1c6eb075
SG
202config TRACE_BUFFER_SIZE
203 hex "Size of trace buffer in U-Boot"
204 depends on TRACE
205 default 0x01000000
206 help
207 Sets the size of the trace buffer in U-Boot. This is allocated from
208 memory during relocation. If this buffer is too small, the trace
209 history will be truncated, with later records omitted.
210
211 If early trace is enabled (i.e. before relocation), this buffer must
212 be large enough to include all the data from the early trace buffer as
213 well, since this is copied over to the main buffer during relocation.
214
215 A trace record is emitted for each function call and each record is
216 12 bytes (see struct trace_call). A suggested minimum size is 1MB. If
217 the size is too small then 'trace stats' will show a message saying
218 how many records were dropped due to buffer overflow.
219
da0fb5fd
HS
220config TRACE_CALL_DEPTH_LIMIT
221 int "Trace call depth limit"
222 depends on TRACE
223 default 15
224 help
225 Sets the maximum call depth up to which function calls are recorded.
226
1c6eb075
SG
227config TRACE_EARLY
228 bool "Enable tracing before relocation"
229 depends on TRACE
230 help
231 Sometimes it is helpful to trace execution of U-Boot before
232 relocation. This is possible by using a arch-specific, fixed buffer
233 position in memory. Enable this option to start tracing as early as
234 possible after U-Boot starts.
235
236config TRACE_EARLY_SIZE
237 hex "Size of early trace buffer in U-Boot"
238 depends on TRACE_EARLY
239 default 0x00100000
240 help
241 Sets the size of the early trace buffer in bytes. This is used to hold
242 tracing information before relocation.
243
da0fb5fd
HS
244config TRACE_EARLY_CALL_DEPTH_LIMIT
245 int "Early trace call depth limit"
246 depends on TRACE_EARLY
247 default 200
248 help
249 Sets the maximum call depth up to which function calls are recorded
250 during early tracing.
251
1c6eb075
SG
252config TRACE_EARLY_ADDR
253 hex "Address of early trace buffer in U-Boot"
254 depends on TRACE_EARLY
255 default 0x00100000
256 help
257 Sets the address of the early trace buffer in U-Boot. This memory
258 must be accessible before relocation.
259
260 A trace record is emitted for each function call and each record is
261 12 bytes (see struct trace_call). A suggested minimum size is 1MB. If
262 the size is too small then the message which says the amount of early
263 data being coped will the the same as the
264
d1389403
SG
265source lib/dhry/Kconfig
266
b1a873df
SG
267menu "Security support"
268
269config AES
270 bool "Support the AES algorithm"
271 help
272 This provides a means to encrypt and decrypt data using the AES
273 (Advanced Encryption Standard). This algorithm uses a symetric key
274 and is widely used as a streaming cipher. Different key lengths are
275 supported by the algorithm but only a 128-bit key is supported at
276 present.
277
d9f23c7f 278source lib/rsa/Kconfig
b4adf627 279source lib/crypto/Kconfig
c4beb22f 280
a7d660bc
SG
281config TPM
282 bool "Trusted Platform Module (TPM) Support"
2419cd16 283 depends on DM
a7d660bc
SG
284 help
285 This enables support for TPMs which can be used to provide security
286 features for your board. The TPM can be connected via LPC or I2C
287 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
288 command to interactive the TPM. Driver model support is provided
289 for the low-level TPM interface, but only one TPM is supported at
290 a time by the TPM library.
291
6307896c
SG
292config SPL_TPM
293 bool "Trusted Platform Module (TPM) Support in SPL"
294 depends on SPL_DM
295 help
296 This enables support for TPMs which can be used to provide security
297 features for your board. The TPM can be connected via LPC or I2C
298 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
299 command to interactive the TPM. Driver model support is provided
300 for the low-level TPM interface, but only one TPM is supported at
301 a time by the TPM library.
302
303config TPL_TPM
304 bool "Trusted Platform Module (TPM) Support in TPL"
305 depends on TPL_DM
306 help
307 This enables support for TPMs which can be used to provide security
308 features for your board. The TPM can be connected via LPC or I2C
309 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
310 command to interactive the TPM. Driver model support is provided
311 for the low-level TPM interface, but only one TPM is supported at
312 a time by the TPM library.
313
b1a873df
SG
314endmenu
315
3330584d
IO
316menu "Android Verified Boot"
317
318config LIBAVB
319 bool "Android Verified Boot 2.0 support"
320 depends on ANDROID_BOOT_IMAGE
321 default n
322 help
323 This enables support of Android Verified Boot 2.0 which can be used
324 to assure the end user of the integrity of the software running on a
325 device. Introduces such features as boot chain of trust, rollback
326 protection etc.
327
328endmenu
329
94e3c8c4 330menu "Hashing Support"
331
332config SHA1
333 bool "Enable SHA1 support"
334 help
335 This option enables support of hashing using SHA1 algorithm.
336 The hash is calculated in software.
337 The SHA1 algorithm produces a 160-bit (20-byte) hash value
338 (digest).
339
340config SHA256
341 bool "Enable SHA256 support"
342 help
343 This option enables support of hashing using SHA256 algorithm.
344 The hash is calculated in software.
345 The SHA256 algorithm produces a 256-bit (32-byte) hash value
346 (digest).
347
348config SHA_HW_ACCEL
349 bool "Enable hashing using hardware"
350 help
351 This option enables hardware acceleration
352 for SHA1/SHA256 hashing.
353 This affects the 'hash' command and also the
354 hash_lookup_algo() function.
355
356config SHA_PROG_HW_ACCEL
357 bool "Enable Progressive hashing support using hardware"
358 depends on SHA_HW_ACCEL
359 help
360 This option enables hardware-acceleration for
361 SHA1/SHA256 progressive hashing.
362 Data can be streamed in a block at a time and the hashing
363 is performed in hardware.
bea79d7d
AP
364
365config MD5
8239be61
SG
366 bool "Support MD5 algorithm"
367 help
368 This option enables MD5 support. MD5 is an algorithm designed
369 in 1991 that produces a 16-byte digest (or checksum) from its input
370 data. It has a number of vulnerabilities which preclude its use in
371 security applications, but it can be useful for providing a quick
372 checksum of a block of data.
373
374config SPL_MD5
375 bool "Support MD5 algorithm in SPL"
376 help
377 This option enables MD5 support in SPL. MD5 is an algorithm designed
378 in 1991 that produces a 16-byte digest (or checksum) from its input
379 data. It has a number of vulnerabilities which preclude its use in
380 security applications, but it can be useful for providing a quick
381 checksum of a block of data.
bea79d7d 382
85d8bf57
MB
383config CRC32C
384 bool
385
83a486b6
MB
386config XXHASH
387 bool
388
94e3c8c4 389endmenu
390
027b728d
JW
391menu "Compression Support"
392
393config LZ4
394 bool "Enable LZ4 decompression support"
395 help
396 If this option is set, support for LZ4 compressed images
397 is included. The LZ4 algorithm can run in-place as long as the
398 compressed image is loaded to the end of the output buffer, and
399 trades lower compression ratios for much faster decompression.
400
401 NOTE: This implements the release version of the LZ4 frame
402 format as generated by default by the 'lz4' command line tool.
403 This is not the same as the outdated, less efficient legacy
404 frame format currently (2015) implemented in the Linux kernel
405 (generated by 'lz4 -l'). The two formats are incompatible.
406
aed998aa
SG
407config LZMA
408 bool "Enable LZMA decompression support"
409 help
410 This enables support for LZMA (Lempel-Ziv-Markov chain algorithm),
411 a dictionary compression algorithm that provides a high compression
412 ratio and fairly fast decompression speed. See also
413 CONFIG_CMD_LZMADEC which provides a decode command.
414
173aafbf 415config LZO
d56b4b19
TR
416 bool "Enable LZO decompression support"
417 help
418 This enables support for LZO compression algorithm.r
7264f292 419
95f4bbd5 420config GZIP
5132361a 421 bool "Enable gzip decompression support"
95f4bbd5
MV
422 select ZLIB
423 default y
424 help
425 This enables support for GZIP compression algorithm.
2a2119e1
AP
426
427config BZIP2
428 bool "Enable bzip2 decompression support"
429 help
430 This enables support for BZIP2 compression algorithm.
95f4bbd5
MV
431
432config ZLIB
433 bool
434 default y
435 help
436 This enables ZLIB compression lib.
437
8509f22a
MB
438config ZSTD
439 bool "Enable Zstandard decompression support"
440 select XXHASH
441 help
442 This enables Zstandard decompression library.
443
048c6e89
SG
444config SPL_LZ4
445 bool "Enable LZ4 decompression support in SPL"
446 help
447 This enables support for tge LZ4 decompression algorithm in SPL. LZ4
448 is a lossless data compression algorithm that is focused on
449 fast compression and decompression speed. It belongs to the LZ77
450 family of byte-oriented compression schemes.
451
04cb3994
WG
452config SPL_LZMA
453 bool "Enable LZMA decompression support for SPL build"
454 help
455 This enables support for LZMA compression altorithm for SPL boot.
456
f52bdf4b
JJH
457config SPL_LZO
458 bool "Enable LZO decompression support in SPL"
459 help
460 This enables support for LZO compression algorithm in the SPL.
461
7264f292
YS
462config SPL_GZIP
463 bool "Enable gzip decompression support for SPL build"
464 select SPL_ZLIB
465 help
466 This enables support for GZIP compression altorithm for SPL boot.
467
468config SPL_ZLIB
469 bool
470 help
471 This enables compression lib for SPL boot.
472
8509f22a
MB
473config SPL_ZSTD
474 bool "Enable Zstandard decompression support in SPL"
475 select XXHASH
476 help
477 This enables Zstandard decompression library in the SPL.
478
027b728d
JW
479endmenu
480
6501ff62
PM
481config ERRNO_STR
482 bool "Enable function for getting errno-related string message"
483 help
484 The function errno_str(int errno), returns a pointer to the errno
485 corresponding text message:
486 - if errno is null or positive number - a pointer to "Success" message
487 - if errno is negative - a pointer to errno related message
488
f8c987f8
AB
489config HEXDUMP
490 bool "Enable hexdump"
491 help
492 This enables functions for printing dumps of binary data.
493
69e173eb
SG
494config OF_LIBFDT
495 bool "Enable the FDT library"
496 default y if OF_CONTROL
497 help
498 This enables the FDT library (libfdt). It provides functions for
499 accessing binary device tree images in memory, such as adding and
f1a7ba1d 500 removing nodes and properties, scanning through the tree and finding
69e173eb
SG
501 particular compatible nodes. The library operates on a flattened
502 version of the device tree.
503
0d76afc0
SG
504config OF_LIBFDT_ASSUME_MASK
505 hex "Mask of conditions to assume for libfdt"
506 depends on OF_LIBFDT || FIT
507 default 0
508 help
509 Use this to change the assumptions made by libfdt about the
510 device tree it is working with. A value of 0 means that no assumptions
511 are made, and libfdt is able to deal with malicious data. A value of
512 0xff means all assumptions are made and any invalid data may cause
513 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
514
ddf67f71
MR
515config OF_LIBFDT_OVERLAY
516 bool "Enable the FDT library overlay support"
6417572e 517 depends on OF_LIBFDT
58a46f88 518 default y if ARCH_OMAP2PLUS || ARCH_KEYSTONE
ddf67f71
MR
519 help
520 This enables the FDT library (libfdt) overlay support.
521
aa34fbc0
SG
522config SPL_OF_LIBFDT
523 bool "Enable the FDT library for SPL"
524 default y if SPL_OF_CONTROL
525 help
526 This enables the FDT library (libfdt). It provides functions for
527 accessing binary device tree images in memory, such as adding and
f1a7ba1d 528 removing nodes and properties, scanning through the tree and finding
aa34fbc0
SG
529 particular compatible nodes. The library operates on a flattened
530 version of the device tree.
531
0d76afc0
SG
532config SPL_OF_LIBFDT_ASSUME_MASK
533 hex "Mask of conditions to assume for libfdt"
534 depends on SPL_OF_LIBFDT || FIT
535 default 0xff
536 help
537 Use this to change the assumptions made by libfdt in SPL about the
538 device tree it is working with. A value of 0 means that no assumptions
539 are made, and libfdt is able to deal with malicious data. A value of
540 0xff means all assumptions are made and any invalid data may cause
541 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
542
5592a633
SG
543config TPL_OF_LIBFDT
544 bool "Enable the FDT library for TPL"
545 default y if TPL_OF_CONTROL
546 help
547 This enables the FDT library (libfdt). It provides functions for
548 accessing binary device tree images in memory, such as adding and
549 removing nodes and properties, scanning through the tree and finding
550 particular compatible nodes. The library operates on a flattened
551 version of the device tree.
552
0d76afc0
SG
553config TPL_OF_LIBFDT_ASSUME_MASK
554 hex "Mask of conditions to assume for libfdt"
555 depends on TPL_OF_LIBFDT || FIT
556 default 0xff
557 help
558 Use this to change the assumptions made by libfdt in TPL about the
559 device tree it is working with. A value of 0 means that no assumptions
560 are made, and libfdt is able to deal with malicious data. A value of
561 0xff means all assumptions are made and any invalid data may cause
562 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
563
ebf7fff2
HS
564config FDT_FIXUP_PARTITIONS
565 bool "overwrite MTD partitions in DTS through defined in 'mtdparts'"
566 depends on OF_LIBFDT
ab948cd2 567 depends on CMD_MTDPARTS
ebf7fff2
HS
568 help
569 Allow overwriting defined partitions in the device tree blob
570 using partition info defined in the 'mtdparts' environment
571 variable.
572
4b6dddc2 573menu "System tables"
e663b350 574 depends on (!EFI && !SYS_COREBOOT) || (ARM && EFI_LOADER)
4b6dddc2
AG
575
576config GENERATE_SMBIOS_TABLE
577 bool "Generate an SMBIOS (System Management BIOS) table"
578 default y
e663b350 579 depends on X86 || EFI_LOADER
4b6dddc2
AG
580 help
581 The System Management BIOS (SMBIOS) specification addresses how
582 motherboard and system vendors present management information about
583 their products in a standard format by extending the BIOS interface
584 on Intel architecture systems.
585
586 Check http://www.dmtf.org/standards/smbios for details.
587
588config SMBIOS_MANUFACTURER
589 string "SMBIOS Manufacturer"
590 depends on GENERATE_SMBIOS_TABLE
591 default SYS_VENDOR
592 help
593 The board manufacturer to store in SMBIOS structures.
594 Change this to override the default one (CONFIG_SYS_VENDOR).
595
596config SMBIOS_PRODUCT_NAME
597 string "SMBIOS Product Name"
598 depends on GENERATE_SMBIOS_TABLE
599 default SYS_BOARD
600 help
601 The product name to store in SMBIOS structures.
602 Change this to override the default one (CONFIG_SYS_BOARD).
603
604endmenu
605
2b12196d
AT
606config ASN1_COMPILER
607 bool
608
ab8a0e06
AT
609config ASN1_DECODER
610 bool
611 help
612 Enable asn1 decoder library.
613
a9b45e6e
AT
614config OID_REGISTRY
615 bool
616 help
617 Enable fast lookup object identifier registry.
618
867a6ac8 619source lib/efi/Kconfig
ed980b8c 620source lib/efi_loader/Kconfig
32ce6179 621source lib/optee/Kconfig
867a6ac8 622
54969b40
TR
623config TEST_FDTDEC
624 bool "enable fdtdec test"
625 depends on OF_LIBFDT
626
05429b6c
AT
627config LIB_DATE
628 bool
629
805b3cac
K
630config LIB_ELF
631 bool
632 help
633 Supoort basic elf loading/validating functions.
634 This supports fir 32 bit and 64 bit versions.
635
ed36323f 636endmenu
This page took 0.469323 seconds and 4 git commands to generate.