blob: 2142bd06e62f3f6c7436ad5057af2aeccd78df96 [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
9config SYS_NUM_ADDR_MAP
10 int "Size of the address-map table"
11 depends on ADDR_MAP
12 default 16
13 help
14 Sets the number of entries in the virtual-physical mapping table.
15
Adam Ford6ef2f902017-08-11 09:46:05 -050016config BCH
17 bool "Enable Software based BCH ECC"
18 help
19 Enables software based BCH ECC algorithm present in lib/bch.c
20 This is used by SoC platforms which do not have built-in ELM
21 hardware engine required for BCH ECC correction.
22
Simon Glass3c10dc92019-12-06 21:41:34 -070023config BINMAN_FDT
24 bool "Allow access to binman information in the device tree"
25 depends on BINMAN && OF_CONTROL
26 default y
27 help
28 This enables U-Boot to access information about binman entries,
29 stored in the device tree in a binman node. Typical uses are to
30 locate entries in the firmware image. See binman.h for the available
31 functionality.
32
Masahiro Yamadab0928da2014-09-16 16:32:59 +090033config CC_OPTIMIZE_LIBS_FOR_SPEED
34 bool "Optimize libraries for speed"
35 help
36 Enabling this option will pass "-O2" to gcc when compiling
37 under "lib" directory.
38
39 If unsure, say N.
40
Faiz Abbas36c18772018-02-06 19:15:58 +053041config DYNAMIC_CRC_TABLE
42 bool "Enable Dynamic tables for CRC"
43 help
44 Enable this option to calculate entries for CRC tables at runtime.
45 This can be helpful when reducing the size of the build image
46
Bin Meng2895c4b2018-10-15 02:21:15 -070047config HAVE_ARCH_IOMAP
48 bool
49 help
50 Enable this option if architecture provides io{read,write}{8,16,32}
51 I/O accessor functions.
52
Masahiro Yamada45ccec82014-10-24 01:30:43 +090053config HAVE_PRIVATE_LIBGCC
54 bool
55
Adam Forda451bc22018-02-06 12:14:28 -060056config LIB_UUID
57 bool
58
Alex Kiernan14ad44a2018-04-19 04:32:54 +000059config PRINTF
60 bool
61 default y
62
63config SPL_PRINTF
64 bool
65 select SPL_SPRINTF
Simon Glass27084c02019-09-25 08:56:27 -060066 select SPL_STRTO if !SPL_USE_TINY_PRINTF
Alex Kiernan14ad44a2018-04-19 04:32:54 +000067
68config TPL_PRINTF
69 bool
70 select TPL_SPRINTF
Simon Glass27084c02019-09-25 08:56:27 -060071 select TPL_STRTO if !TPL_USE_TINY_PRINTF
Alex Kiernan14ad44a2018-04-19 04:32:54 +000072
73config SPRINTF
74 bool
75 default y
76
77config SPL_SPRINTF
78 bool
79
80config TPL_SPRINTF
81 bool
82
83config STRTO
84 bool
85 default y
86
87config SPL_STRTO
88 bool
89
90config TPL_STRTO
91 bool
92
Alex Kiernanc232d142018-05-29 15:30:52 +000093config IMAGE_SPARSE
94 bool
95
96config IMAGE_SPARSE_FILLBUF_SIZE
97 hex "Android sparse image CHUNK_TYPE_FILL buffer size"
98 default 0x80000
99 depends on IMAGE_SPARSE
100 help
101 Set the size of the fill buffer used when processing CHUNK_TYPE_FILL
102 chunks.
103
Masahiro Yamada45ccec82014-10-24 01:30:43 +0900104config USE_PRIVATE_LIBGCC
105 bool "Use private libgcc"
106 depends on HAVE_PRIVATE_LIBGCC
Marek Vasut91b86e22016-05-26 18:01:47 +0200107 default y if HAVE_PRIVATE_LIBGCC && ((ARM && !ARM64) || MIPS)
Masahiro Yamada45ccec82014-10-24 01:30:43 +0900108 help
109 This option allows you to use the built-in libgcc implementation
Masahiro Yamada67976302016-03-30 20:17:42 +0900110 of U-Boot instead of the one provided by the compiler.
Masahiro Yamada45ccec82014-10-24 01:30:43 +0900111 If unsure, say N.
112
Masahiro Yamada8c688bc2014-10-24 01:30:40 +0900113config SYS_HZ
114 int
115 default 1000
116 help
117 The frequency of the timer returned by get_timer().
118 get_timer() must operate in milliseconds and this option must be
119 set to 1000.
120
Simon Glass27084c02019-09-25 08:56:27 -0600121config SPL_USE_TINY_PRINTF
Thomas Hebb37ef1772019-11-10 08:23:53 -0800122 bool "Enable tiny printf() version in SPL"
Simon Glass27084c02019-09-25 08:56:27 -0600123 depends on SPL
Tom Rini2a51e162019-06-08 12:46:18 -0400124 default y
Stefan Roese7d9cde12015-11-23 07:00:22 +0100125 help
126 This option enables a tiny, stripped down printf version.
127 This should only be used in space limited environments,
128 like SPL versions with hard memory limits. This version
129 reduces the code size by about 2.5KiB on armv7.
130
131 The supported format specifiers are %c, %s, %u/%d and %x.
132
Simon Glass27084c02019-09-25 08:56:27 -0600133config TPL_USE_TINY_PRINTF
Thomas Hebb37ef1772019-11-10 08:23:53 -0800134 bool "Enable tiny printf() version in TPL"
Simon Glass27084c02019-09-25 08:56:27 -0600135 depends on TPL
136 default y if SPL_USE_TINY_PRINTF
137 help
138 This option enables a tiny, stripped down printf version.
139 This should only be used in space limited environments,
140 like SPL versions with hard memory limits. This version
141 reduces the code size by about 2.5KiB on armv7.
142
143 The supported format specifiers are %c, %s, %u/%d and %x.
144
Masahiro Yamada7e3caa82017-12-04 12:37:00 +0900145config PANIC_HANG
146 bool "Do not reset the system on fatal error"
147 help
148 Define this option to stop the system in case of a fatal error,
149 so that you have to reset it manually. This is probably NOT a good
150 idea for an embedded system where you want the system to reboot
151 automatically as fast as possible, but it may be useful during
152 development since you can try to debug the conditions that lead to
153 the situation.
154
Joe Hershberger1a606502015-04-21 17:02:42 -0500155config REGEX
156 bool "Enable regular expression support"
Joe Hershbergerf7848d92015-06-22 17:57:36 -0500157 default y if NET
Joe Hershberger1a606502015-04-21 17:02:42 -0500158 help
159 If this variable is defined, U-Boot is linked against the
160 SLRE (Super Light Regular Expression) library, which adds
161 regex support to some commands, for example "env grep" and
162 "setexpr".
163
Adam Forda5a37562018-02-06 10:18:18 -0600164choice
165 prompt "Pseudo-random library support type"
Heinrich Schuchardt16112352020-01-19 19:28:12 +0100166 depends on NET_RANDOM_ETHADDR || RANDOM_UUID || CMD_UUID || \
167 RNG_SANDBOX || UT_LIB && AES
Adam Forda5a37562018-02-06 10:18:18 -0600168 default LIB_RAND
Masahiro Yamada3850dbe2015-06-11 19:16:43 +0900169 help
Adam Forda5a37562018-02-06 10:18:18 -0600170 Select the library to provide pseudo-random number generator
171 functions. LIB_HW_RAND supports certain hardware engines that
172 provide this functionality. If in doubt, select LIB_RAND.
173
174config LIB_RAND
175 bool "Pseudo-random library support"
176
177config LIB_HW_RAND
Marcin Juszkiewicz43e442a2020-05-26 19:07:15 +0200178 bool "HW Engine for random library support"
Adam Forda5a37562018-02-06 10:18:18 -0600179
180endchoice
Michal Simek9ba9e852015-05-25 11:37:22 +0200181
Simon Glassab4458b2017-04-02 09:50:28 -0600182config SPL_TINY_MEMSET
183 bool "Use a very small memset() in SPL"
184 help
185 The faster memset() is the arch-specific one (if available) enabled
186 by CONFIG_USE_ARCH_MEMSET. If that is not enabled, we can still get
187 better performance by writing a word at a time. But in very
Chris Packham6e705112019-01-13 22:13:28 +1300188 size-constrained environments even this may be too big. Enable this
Simon Glassab4458b2017-04-02 09:50:28 -0600189 option to reduce code size slightly at the cost of some speed.
190
Philipp Tomsich96b90822017-08-03 22:52:04 +0200191config TPL_TINY_MEMSET
192 bool "Use a very small memset() in TPL"
193 help
194 The faster memset() is the arch-specific one (if available) enabled
195 by CONFIG_USE_ARCH_MEMSET. If that is not enabled, we can still get
196 better performance by writing a word at a time. But in very
Chris Packham6e705112019-01-13 22:13:28 +1300197 size-constrained environments even this may be too big. Enable this
Philipp Tomsich96b90822017-08-03 22:52:04 +0200198 option to reduce code size slightly at the cost of some speed.
199
Boris Brezillonaa049152017-02-27 18:22:05 +0100200config RBTREE
201 bool
202
Nandor Handa5337a2017-11-08 15:35:14 +0000203config BITREVERSE
204 bool "Bit reverse library from Linux"
205
Simon Glassa24a78d2019-04-08 13:20:51 -0600206config TRACE
207 bool "Support for tracing of function calls and timing"
208 imply CMD_TRACE
209 help
210 Enables function tracing within U-Boot. This allows recording of call
211 traces including timing information. The command can write data to
212 memory for exporting for analysis (e.g. using bootchart).
213 See doc/README.trace for full details.
214
Simon Glass1c6eb072019-04-08 13:20:52 -0600215config TRACE_BUFFER_SIZE
216 hex "Size of trace buffer in U-Boot"
217 depends on TRACE
218 default 0x01000000
219 help
220 Sets the size of the trace buffer in U-Boot. This is allocated from
221 memory during relocation. If this buffer is too small, the trace
222 history will be truncated, with later records omitted.
223
224 If early trace is enabled (i.e. before relocation), this buffer must
225 be large enough to include all the data from the early trace buffer as
226 well, since this is copied over to the main buffer during relocation.
227
228 A trace record is emitted for each function call and each record is
229 12 bytes (see struct trace_call). A suggested minimum size is 1MB. If
230 the size is too small then 'trace stats' will show a message saying
231 how many records were dropped due to buffer overflow.
232
Heinrich Schuchardtda0fb5f2019-06-02 13:30:09 +0200233config TRACE_CALL_DEPTH_LIMIT
234 int "Trace call depth limit"
235 depends on TRACE
236 default 15
237 help
238 Sets the maximum call depth up to which function calls are recorded.
239
Simon Glass1c6eb072019-04-08 13:20:52 -0600240config TRACE_EARLY
241 bool "Enable tracing before relocation"
242 depends on TRACE
243 help
244 Sometimes it is helpful to trace execution of U-Boot before
245 relocation. This is possible by using a arch-specific, fixed buffer
246 position in memory. Enable this option to start tracing as early as
247 possible after U-Boot starts.
248
249config TRACE_EARLY_SIZE
250 hex "Size of early trace buffer in U-Boot"
251 depends on TRACE_EARLY
252 default 0x00100000
253 help
254 Sets the size of the early trace buffer in bytes. This is used to hold
255 tracing information before relocation.
256
Heinrich Schuchardtda0fb5f2019-06-02 13:30:09 +0200257config TRACE_EARLY_CALL_DEPTH_LIMIT
258 int "Early trace call depth limit"
259 depends on TRACE_EARLY
260 default 200
261 help
262 Sets the maximum call depth up to which function calls are recorded
263 during early tracing.
264
Simon Glass1c6eb072019-04-08 13:20:52 -0600265config TRACE_EARLY_ADDR
266 hex "Address of early trace buffer in U-Boot"
267 depends on TRACE_EARLY
268 default 0x00100000
269 help
270 Sets the address of the early trace buffer in U-Boot. This memory
271 must be accessible before relocation.
272
273 A trace record is emitted for each function call and each record is
274 12 bytes (see struct trace_call). A suggested minimum size is 1MB. If
275 the size is too small then the message which says the amount of early
276 data being coped will the the same as the
277
Simon Glassd1389402015-06-23 15:38:23 -0600278source lib/dhry/Kconfig
279
Simon Glassb1a873d2017-04-26 22:27:49 -0600280menu "Security support"
281
282config AES
283 bool "Support the AES algorithm"
284 help
285 This provides a means to encrypt and decrypt data using the AES
286 (Advanced Encryption Standard). This algorithm uses a symetric key
287 and is widely used as a streaming cipher. Different key lengths are
288 supported by the algorithm but only a 128-bit key is supported at
289 present.
290
Ruchika Guptad9f23c72015-01-23 16:01:56 +0530291source lib/rsa/Kconfig
AKASHI Takahirob4adf622019-11-13 09:45:00 +0900292source lib/crypto/Kconfig
Ruchika Guptac4beb222015-01-23 16:01:51 +0530293
Simon Glassa7d660b2015-08-22 18:31:19 -0600294config TPM
295 bool "Trusted Platform Module (TPM) Support"
Simon Glass2419cd12015-10-03 06:39:36 -0600296 depends on DM
Simon Glassa7d660b2015-08-22 18:31:19 -0600297 help
298 This enables support for TPMs which can be used to provide security
299 features for your board. The TPM can be connected via LPC or I2C
300 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
301 command to interactive the TPM. Driver model support is provided
302 for the low-level TPM interface, but only one TPM is supported at
303 a time by the TPM library.
304
Simon Glass63078962018-10-01 12:22:19 -0600305config SPL_TPM
306 bool "Trusted Platform Module (TPM) Support in SPL"
307 depends on SPL_DM
308 help
309 This enables support for TPMs which can be used to provide security
310 features for your board. The TPM can be connected via LPC or I2C
311 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
312 command to interactive the TPM. Driver model support is provided
313 for the low-level TPM interface, but only one TPM is supported at
314 a time by the TPM library.
315
316config TPL_TPM
317 bool "Trusted Platform Module (TPM) Support in TPL"
318 depends on TPL_DM
319 help
320 This enables support for TPMs which can be used to provide security
321 features for your board. The TPM can be connected via LPC or I2C
322 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
323 command to interactive the TPM. Driver model support is provided
324 for the low-level TPM interface, but only one TPM is supported at
325 a time by the TPM library.
326
Simon Glassb1a873d2017-04-26 22:27:49 -0600327endmenu
328
Igor Opaniuk33305842018-06-03 21:56:37 +0300329menu "Android Verified Boot"
330
331config LIBAVB
332 bool "Android Verified Boot 2.0 support"
333 depends on ANDROID_BOOT_IMAGE
334 default n
335 help
336 This enables support of Android Verified Boot 2.0 which can be used
337 to assure the end user of the integrity of the software running on a
338 device. Introduces such features as boot chain of trust, rollback
339 protection etc.
340
341endmenu
342
gaurav rana94e3c8c2015-02-20 12:51:46 +0530343menu "Hashing Support"
344
345config SHA1
346 bool "Enable SHA1 support"
347 help
348 This option enables support of hashing using SHA1 algorithm.
349 The hash is calculated in software.
350 The SHA1 algorithm produces a 160-bit (20-byte) hash value
351 (digest).
352
353config SHA256
354 bool "Enable SHA256 support"
355 help
356 This option enables support of hashing using SHA256 algorithm.
357 The hash is calculated in software.
358 The SHA256 algorithm produces a 256-bit (32-byte) hash value
359 (digest).
360
Reuben Dowled16b38f2020-04-16 17:36:52 +1200361config SHA512_ALGO
362 bool "Enable SHA512 algorithm"
363 help
364 This option enables support of internal SHA512 algorithm.
365
366config SHA512
367 bool "Enable SHA512 support"
368 depends on SHA512_ALGO
369 help
370 This option enables support of hashing using SHA512 algorithm.
371 The hash is calculated in software.
372 The SHA512 algorithm produces a 512-bit (64-byte) hash value
373 (digest).
374
375config SHA384
376 bool "Enable SHA384 support"
377 depends on SHA512_ALGO
378 help
379 This option enables support of hashing using SHA384 algorithm.
380 The hash is calculated in software.
381 The SHA384 algorithm produces a 384-bit (48-byte) hash value
382 (digest).
383
gaurav rana94e3c8c2015-02-20 12:51:46 +0530384config SHA_HW_ACCEL
385 bool "Enable hashing using hardware"
386 help
387 This option enables hardware acceleration
388 for SHA1/SHA256 hashing.
389 This affects the 'hash' command and also the
390 hash_lookup_algo() function.
391
392config SHA_PROG_HW_ACCEL
393 bool "Enable Progressive hashing support using hardware"
394 depends on SHA_HW_ACCEL
395 help
396 This option enables hardware-acceleration for
397 SHA1/SHA256 progressive hashing.
398 Data can be streamed in a block at a time and the hashing
399 is performed in hardware.
Andre Przywarabea79d72017-03-15 01:19:05 +0000400
401config MD5
Simon Glass8239be62020-05-06 08:03:56 -0600402 bool "Support MD5 algorithm"
403 help
404 This option enables MD5 support. MD5 is an algorithm designed
405 in 1991 that produces a 16-byte digest (or checksum) from its input
406 data. It has a number of vulnerabilities which preclude its use in
407 security applications, but it can be useful for providing a quick
408 checksum of a block of data.
409
410config SPL_MD5
411 bool "Support MD5 algorithm in SPL"
412 help
413 This option enables MD5 support in SPL. MD5 is an algorithm designed
414 in 1991 that produces a 16-byte digest (or checksum) from its input
415 data. It has a number of vulnerabilities which preclude its use in
416 security applications, but it can be useful for providing a quick
417 checksum of a block of data.
Andre Przywarabea79d72017-03-15 01:19:05 +0000418
Marek Behún85d8bf52017-09-03 17:00:23 +0200419config CRC32C
420 bool
421
Marek Behún83a486b2019-04-29 22:40:43 +0200422config XXHASH
423 bool
424
gaurav rana94e3c8c2015-02-20 12:51:46 +0530425endmenu
426
Julius Werner027b7282015-10-06 20:03:53 -0700427menu "Compression Support"
428
429config LZ4
430 bool "Enable LZ4 decompression support"
431 help
432 If this option is set, support for LZ4 compressed images
433 is included. The LZ4 algorithm can run in-place as long as the
434 compressed image is loaded to the end of the output buffer, and
435 trades lower compression ratios for much faster decompression.
436
437 NOTE: This implements the release version of the LZ4 frame
438 format as generated by default by the 'lz4' command line tool.
439 This is not the same as the outdated, less efficient legacy
440 frame format currently (2015) implemented in the Linux kernel
441 (generated by 'lz4 -l'). The two formats are incompatible.
442
Simon Glassaed998a2017-05-17 03:25:42 -0600443config LZMA
444 bool "Enable LZMA decompression support"
445 help
446 This enables support for LZMA (Lempel-Ziv-Markov chain algorithm),
447 a dictionary compression algorithm that provides a high compression
448 ratio and fairly fast decompression speed. See also
449 CONFIG_CMD_LZMADEC which provides a decode command.
450
Boris Brezillon173aafb2017-02-27 18:22:06 +0100451config LZO
Tom Rinid56b4b12017-07-22 18:36:16 -0400452 bool "Enable LZO decompression support"
453 help
454 This enables support for LZO compression algorithm.r
York Sun7264f292017-08-15 11:14:43 -0700455
Marek Vasut95f4bbd2019-03-08 16:06:55 +0100456config GZIP
Heiko Schocher51323612019-04-29 08:59:38 +0200457 bool "Enable gzip decompression support"
Marek Vasut95f4bbd2019-03-08 16:06:55 +0100458 select ZLIB
459 default y
460 help
461 This enables support for GZIP compression algorithm.
462
Michael Walleeff5a542020-05-22 14:07:36 +0200463config GZIP_COMPRESSED
464 bool
465 select ZLIB
466
Atish Patra2a2119e2020-03-05 16:24:21 -0800467config BZIP2
468 bool "Enable bzip2 decompression support"
469 help
470 This enables support for BZIP2 compression algorithm.
471
Marek Vasut95f4bbd2019-03-08 16:06:55 +0100472config ZLIB
473 bool
474 default y
475 help
476 This enables ZLIB compression lib.
477
Marek Behún8509f222019-04-29 22:40:44 +0200478config ZSTD
479 bool "Enable Zstandard decompression support"
480 select XXHASH
481 help
482 This enables Zstandard decompression library.
483
Simon Glass048c6e82018-11-06 15:21:30 -0700484config SPL_LZ4
485 bool "Enable LZ4 decompression support in SPL"
486 help
Marcin Juszkiewicz43e442a2020-05-26 19:07:15 +0200487 This enables support for the LZ4 decompression algorithm in SPL. LZ4
Simon Glass048c6e82018-11-06 15:21:30 -0700488 is a lossless data compression algorithm that is focused on
489 fast compression and decompression speed. It belongs to the LZ77
490 family of byte-oriented compression schemes.
491
Weijie Gao04cb3992020-04-21 09:28:38 +0200492config SPL_LZMA
493 bool "Enable LZMA decompression support for SPL build"
494 help
Marcin Juszkiewicz43e442a2020-05-26 19:07:15 +0200495 This enables support for LZMA compression algorithm for SPL boot.
Weijie Gao04cb3992020-04-21 09:28:38 +0200496
Jean-Jacques Hiblotf52bdf42017-09-15 12:57:30 +0200497config SPL_LZO
498 bool "Enable LZO decompression support in SPL"
499 help
500 This enables support for LZO compression algorithm in the SPL.
501
York Sun7264f292017-08-15 11:14:43 -0700502config SPL_GZIP
503 bool "Enable gzip decompression support for SPL build"
504 select SPL_ZLIB
505 help
506 This enables support for GZIP compression altorithm for SPL boot.
507
508config SPL_ZLIB
509 bool
510 help
511 This enables compression lib for SPL boot.
512
Marek Behún8509f222019-04-29 22:40:44 +0200513config SPL_ZSTD
514 bool "Enable Zstandard decompression support in SPL"
515 select XXHASH
516 help
517 This enables Zstandard decompression library in the SPL.
518
Julius Werner027b7282015-10-06 20:03:53 -0700519endmenu
520
Przemyslaw Marczak6501ff62015-04-20 20:07:40 +0200521config ERRNO_STR
522 bool "Enable function for getting errno-related string message"
523 help
524 The function errno_str(int errno), returns a pointer to the errno
525 corresponding text message:
526 - if errno is null or positive number - a pointer to "Success" message
527 - if errno is negative - a pointer to errno related message
528
Alexey Brodkinf8c987f2018-06-05 17:17:57 +0300529config HEXDUMP
530 bool "Enable hexdump"
531 help
532 This enables functions for printing dumps of binary data.
533
Simon Glass69e173e2016-02-22 22:55:42 -0700534config OF_LIBFDT
535 bool "Enable the FDT library"
536 default y if OF_CONTROL
537 help
538 This enables the FDT library (libfdt). It provides functions for
539 accessing binary device tree images in memory, such as adding and
Anatolij Gustschinf1a7ba12017-08-18 17:58:51 +0200540 removing nodes and properties, scanning through the tree and finding
Simon Glass69e173e2016-02-22 22:55:42 -0700541 particular compatible nodes. The library operates on a flattened
542 version of the device tree.
543
Simon Glass0d76afc2019-10-27 09:47:40 -0600544config OF_LIBFDT_ASSUME_MASK
545 hex "Mask of conditions to assume for libfdt"
546 depends on OF_LIBFDT || FIT
547 default 0
548 help
549 Use this to change the assumptions made by libfdt about the
550 device tree it is working with. A value of 0 means that no assumptions
551 are made, and libfdt is able to deal with malicious data. A value of
552 0xff means all assumptions are made and any invalid data may cause
553 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
554
Maxime Ripardddf67f72016-07-05 10:26:44 +0200555config OF_LIBFDT_OVERLAY
556 bool "Enable the FDT library overlay support"
Tom Rini64175722018-05-08 08:52:17 -0400557 depends on OF_LIBFDT
Praneeth Bajjuri58a46f82018-04-25 16:03:23 -0500558 default y if ARCH_OMAP2PLUS || ARCH_KEYSTONE
Maxime Ripardddf67f72016-07-05 10:26:44 +0200559 help
560 This enables the FDT library (libfdt) overlay support.
561
Simon Glassaa34fbc2016-02-22 22:55:45 -0700562config SPL_OF_LIBFDT
563 bool "Enable the FDT library for SPL"
564 default y if SPL_OF_CONTROL
565 help
566 This enables the FDT library (libfdt). It provides functions for
567 accessing binary device tree images in memory, such as adding and
Anatolij Gustschinf1a7ba12017-08-18 17:58:51 +0200568 removing nodes and properties, scanning through the tree and finding
Simon Glassaa34fbc2016-02-22 22:55:45 -0700569 particular compatible nodes. The library operates on a flattened
570 version of the device tree.
571
Simon Glass0d76afc2019-10-27 09:47:40 -0600572config SPL_OF_LIBFDT_ASSUME_MASK
573 hex "Mask of conditions to assume for libfdt"
574 depends on SPL_OF_LIBFDT || FIT
575 default 0xff
576 help
577 Use this to change the assumptions made by libfdt in SPL about the
578 device tree it is working with. A value of 0 means that no assumptions
579 are made, and libfdt is able to deal with malicious data. A value of
580 0xff means all assumptions are made and any invalid data may cause
581 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
582
Simon Glass5592a632018-10-01 12:22:21 -0600583config TPL_OF_LIBFDT
584 bool "Enable the FDT library for TPL"
585 default y if TPL_OF_CONTROL
586 help
587 This enables the FDT library (libfdt). It provides functions for
588 accessing binary device tree images in memory, such as adding and
589 removing nodes and properties, scanning through the tree and finding
590 particular compatible nodes. The library operates on a flattened
591 version of the device tree.
592
Simon Glass0d76afc2019-10-27 09:47:40 -0600593config TPL_OF_LIBFDT_ASSUME_MASK
594 hex "Mask of conditions to assume for libfdt"
595 depends on TPL_OF_LIBFDT || FIT
596 default 0xff
597 help
598 Use this to change the assumptions made by libfdt in TPL about the
599 device tree it is working with. A value of 0 means that no assumptions
600 are made, and libfdt is able to deal with malicious data. A value of
601 0xff means all assumptions are made and any invalid data may cause
602 unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h
603
Heiko Schocherebf7fff2016-10-06 07:31:45 +0200604config FDT_FIXUP_PARTITIONS
605 bool "overwrite MTD partitions in DTS through defined in 'mtdparts'"
606 depends on OF_LIBFDT
Masahiro Yamadaab948cd2018-07-20 11:04:09 +0900607 depends on CMD_MTDPARTS
Heiko Schocherebf7fff2016-10-06 07:31:45 +0200608 help
609 Allow overwriting defined partitions in the device tree blob
610 using partition info defined in the 'mtdparts' environment
611 variable.
612
Alexander Graf4b6dddc2016-08-19 01:23:23 +0200613menu "System tables"
Alexander Grafe663b352016-08-19 01:23:29 +0200614 depends on (!EFI && !SYS_COREBOOT) || (ARM && EFI_LOADER)
Alexander Graf4b6dddc2016-08-19 01:23:23 +0200615
616config GENERATE_SMBIOS_TABLE
617 bool "Generate an SMBIOS (System Management BIOS) table"
618 default y
Alexander Grafe663b352016-08-19 01:23:29 +0200619 depends on X86 || EFI_LOADER
Alexander Graf4b6dddc2016-08-19 01:23:23 +0200620 help
621 The System Management BIOS (SMBIOS) specification addresses how
622 motherboard and system vendors present management information about
623 their products in a standard format by extending the BIOS interface
624 on Intel architecture systems.
625
626 Check http://www.dmtf.org/standards/smbios for details.
627
628config SMBIOS_MANUFACTURER
629 string "SMBIOS Manufacturer"
630 depends on GENERATE_SMBIOS_TABLE
631 default SYS_VENDOR
632 help
633 The board manufacturer to store in SMBIOS structures.
634 Change this to override the default one (CONFIG_SYS_VENDOR).
635
636config SMBIOS_PRODUCT_NAME
637 string "SMBIOS Product Name"
638 depends on GENERATE_SMBIOS_TABLE
639 default SYS_BOARD
640 help
641 The product name to store in SMBIOS structures.
642 Change this to override the default one (CONFIG_SYS_BOARD).
643
644endmenu
645
AKASHI Takahiro2b121962019-11-13 09:44:53 +0900646config ASN1_COMPILER
647 bool
648
AKASHI Takahiroab8a0e02019-11-13 09:44:55 +0900649config ASN1_DECODER
650 bool
651 help
652 Enable asn1 decoder library.
653
AKASHI Takahiroa9b45e62019-11-13 09:44:57 +0900654config OID_REGISTRY
655 bool
656 help
657 Enable fast lookup object identifier registry.
658
Simon Glass867a6ac2015-07-31 09:31:36 -0600659source lib/efi/Kconfig
Alexander Grafed980b82016-03-04 01:10:07 +0100660source lib/efi_loader/Kconfig
Bryan O'Donoghue32ce6172018-03-13 16:50:27 +0000661source lib/optee/Kconfig
Simon Glass867a6ac2015-07-31 09:31:36 -0600662
Thierry Reding54969b42019-03-21 19:10:04 +0100663config TEST_FDTDEC
664 bool "enable fdtdec test"
665 depends on OF_LIBFDT
666
AKASHI Takahiro05429b62019-11-13 09:44:49 +0900667config LIB_DATE
668 bool
669
Keerthy805b3ca2020-02-12 13:55:03 +0530670config LIB_ELF
671 bool
672 help
673 Supoort basic elf loading/validating functions.
674 This supports fir 32 bit and 64 bit versions.
675
Masahiro Yamadaed363232014-09-16 16:32:58 +0900676endmenu