xref: /rk3399_rockchip-uboot/lib/Kconfig (revision f93178ae1e66403ffee11e75d56a89659c32e108)
1ed36323fSMasahiro Yamadamenu "Library routines"
2ed36323fSMasahiro Yamada
36ef2f901SAdam Fordconfig BCH
46ef2f901SAdam Ford	bool "Enable Software based BCH ECC"
56ef2f901SAdam Ford	help
66ef2f901SAdam Ford	  Enables software based BCH ECC algorithm present in lib/bch.c
76ef2f901SAdam Ford	  This is used by SoC platforms which do not have built-in ELM
86ef2f901SAdam Ford	  hardware engine required for BCH ECC correction.
96ef2f901SAdam Ford
10b0928da6SMasahiro Yamadaconfig CC_OPTIMIZE_LIBS_FOR_SPEED
11b0928da6SMasahiro Yamada	bool "Optimize libraries for speed"
12b0928da6SMasahiro Yamada	help
13b0928da6SMasahiro Yamada	  Enabling this option will pass "-O2" to gcc when compiling
14b0928da6SMasahiro Yamada	  under "lib" directory.
15b0928da6SMasahiro Yamada
16b0928da6SMasahiro Yamada	  If unsure, say N.
17b0928da6SMasahiro Yamada
1845ccec8fSMasahiro Yamadaconfig HAVE_PRIVATE_LIBGCC
1945ccec8fSMasahiro Yamada	bool
2045ccec8fSMasahiro Yamada
2145ccec8fSMasahiro Yamadaconfig USE_PRIVATE_LIBGCC
2245ccec8fSMasahiro Yamada	bool "Use private libgcc"
2345ccec8fSMasahiro Yamada	depends on HAVE_PRIVATE_LIBGCC
2491b86e21SMarek Vasut	default y if HAVE_PRIVATE_LIBGCC && ((ARM && !ARM64) || MIPS)
2545ccec8fSMasahiro Yamada	help
2645ccec8fSMasahiro Yamada	  This option allows you to use the built-in libgcc implementation
2767976306SMasahiro Yamada	  of U-Boot instead of the one provided by the compiler.
2845ccec8fSMasahiro Yamada	  If unsure, say N.
2945ccec8fSMasahiro Yamada
308c688bc4SMasahiro Yamadaconfig SYS_HZ
318c688bc4SMasahiro Yamada	int
328c688bc4SMasahiro Yamada	default 1000
338c688bc4SMasahiro Yamada	help
348c688bc4SMasahiro Yamada	  The frequency of the timer returned by get_timer().
358c688bc4SMasahiro Yamada	  get_timer() must operate in milliseconds and this option must be
368c688bc4SMasahiro Yamada	  set to 1000.
378c688bc4SMasahiro Yamada
387f28cbb6SJoseph Chenconfig SYS_STACK_SIZE
397f28cbb6SJoseph Chen	hex
40595f057cSJoseph Chen	default 0x200000
417f28cbb6SJoseph Chen	help
427f28cbb6SJoseph Chen	 The system stack size.
437f28cbb6SJoseph Chen
447d9cde10SStefan Roeseconfig USE_TINY_PRINTF
457d9cde10SStefan Roese	bool "Enable tiny printf() version"
467d9cde10SStefan Roese	help
477d9cde10SStefan Roese	  This option enables a tiny, stripped down printf version.
487d9cde10SStefan Roese	  This should only be used in space limited environments,
497d9cde10SStefan Roese	  like SPL versions with hard memory limits. This version
507d9cde10SStefan Roese	  reduces the code size by about 2.5KiB on armv7.
517d9cde10SStefan Roese
527d9cde10SStefan Roese	  The supported format specifiers are %c, %s, %u/%d and %x.
537d9cde10SStefan Roese
540e13c182SMasahiro Yamadaconfig PANIC_HANG
550e13c182SMasahiro Yamada	bool "Do not reset the system on fatal error"
560e13c182SMasahiro Yamada	help
570e13c182SMasahiro Yamada	  Define this option to stop the system in case of a fatal error,
580e13c182SMasahiro Yamada	  so that you have to reset it manually. This is probably NOT a good
590e13c182SMasahiro Yamada	  idea for an embedded system where you want the system to reboot
600e13c182SMasahiro Yamada	  automatically as fast as possible, but it may be useful during
610e13c182SMasahiro Yamada	  development since you can try to debug the conditions that lead to
620e13c182SMasahiro Yamada	  the situation.
630e13c182SMasahiro Yamada
641a60650cSJoe Hershbergerconfig REGEX
651a60650cSJoe Hershberger	bool "Enable regular expression support"
66f7848d90SJoe Hershberger	default y if NET
671a60650cSJoe Hershberger	help
681a60650cSJoe Hershberger	  If this variable is defined, U-Boot is linked against the
691a60650cSJoe Hershberger	  SLRE (Super Light Regular Expression) library, which adds
701a60650cSJoe Hershberger	  regex support to some commands, for example "env grep" and
711a60650cSJoe Hershberger	  "setexpr".
721a60650cSJoe Hershberger
739ba9e85fSMichal Simekconfig LIB_RAND
743850dbe8SMasahiro Yamada	bool "Pseudo-random library support "
753850dbe8SMasahiro Yamada	help
763850dbe8SMasahiro Yamada	  This library provides pseudo-random number generator functions.
779ba9e85fSMichal Simek
78ab4458bdSSimon Glassconfig SPL_TINY_MEMSET
79ab4458bdSSimon Glass	bool "Use a very small memset() in SPL"
80ab4458bdSSimon Glass	help
81ab4458bdSSimon Glass	  The faster memset() is the arch-specific one (if available) enabled
82ab4458bdSSimon Glass	  by CONFIG_USE_ARCH_MEMSET. If that is not enabled, we can still get
83ab4458bdSSimon Glass	  better performance by writing a word at a time. But in very
84ab4458bdSSimon Glass	  size-constrained envrionments even this may be too big. Enable this
85ab4458bdSSimon Glass	  option to reduce code size slightly at the cost of some speed.
86ab4458bdSSimon Glass
8796b9082cSPhilipp Tomsichconfig TPL_TINY_MEMSET
8896b9082cSPhilipp Tomsich	bool "Use a very small memset() in TPL"
8996b9082cSPhilipp Tomsich	help
9096b9082cSPhilipp Tomsich	  The faster memset() is the arch-specific one (if available) enabled
9196b9082cSPhilipp Tomsich	  by CONFIG_USE_ARCH_MEMSET. If that is not enabled, we can still get
9296b9082cSPhilipp Tomsich	  better performance by writing a word at a time. But in very
9396b9082cSPhilipp Tomsich	  size-constrained envrionments even this may be too big. Enable this
9496b9082cSPhilipp Tomsich	  option to reduce code size slightly at the cost of some speed.
9596b9082cSPhilipp Tomsich
96aa049152SBoris Brezillonconfig RBTREE
97aa049152SBoris Brezillon	bool
98aa049152SBoris Brezillon
99c6348130SZhangbin Tongconfig BITREVERSE
100c6348130SZhangbin Tong	bool
101c6348130SZhangbin Tong
102ffa8f8b7SJoseph Chenconfig SYSMEM
103ffa8f8b7SJoseph Chen	bool "System memory management"
104ffa8f8b7SJoseph Chen	default y
105ffa8f8b7SJoseph Chen	help
106ffa8f8b7SJoseph Chen	  This enables support for system permanent memory management.
107ffa8f8b7SJoseph Chen
108483d0493SJoseph Chenconfig BIDRAM
109483d0493SJoseph Chen	bool "GD board bi_dram[] memory management"
110483d0493SJoseph Chen	default y
111483d0493SJoseph Chen	help
112483d0493SJoseph Chen	  This enables support for GD board bi_dram[] memory management.
113483d0493SJoseph Chen
114d1389403SSimon Glasssource lib/dhry/Kconfig
115d1389403SSimon Glass
116b1a873dfSSimon Glassmenu "Security support"
117b1a873dfSSimon Glass
118b1a873dfSSimon Glassconfig AES
119b1a873dfSSimon Glass	bool "Support the AES algorithm"
120b1a873dfSSimon Glass	help
121b1a873dfSSimon Glass	  This provides a means to encrypt and decrypt data using the AES
122b1a873dfSSimon Glass	  (Advanced Encryption Standard). This algorithm uses a symetric key
123b1a873dfSSimon Glass	  and is widely used as a streaming cipher. Different key lengths are
124b1a873dfSSimon Glass	  supported by the algorithm but only a 128-bit key is supported at
125b1a873dfSSimon Glass	  present.
126b1a873dfSSimon Glass
127d9f23c7fSRuchika Guptasource lib/rsa/Kconfig
128c4beb22fSRuchika Gupta
129a7d660bcSSimon Glassconfig TPM
130a7d660bcSSimon Glass	bool "Trusted Platform Module (TPM) Support"
1312419cd16SSimon Glass	depends on DM
132a7d660bcSSimon Glass	help
133a7d660bcSSimon Glass	  This enables support for TPMs which can be used to provide security
134a7d660bcSSimon Glass	  features for your board. The TPM can be connected via LPC or I2C
135a7d660bcSSimon Glass	  and a sandbox TPM is provided for testing purposes. Use the 'tpm'
136a7d660bcSSimon Glass	  command to interactive the TPM. Driver model support is provided
137a7d660bcSSimon Glass	  for the low-level TPM interface, but only one TPM is supported at
138a7d660bcSSimon Glass	  a time by the TPM library.
139a7d660bcSSimon Glass
140b1a873dfSSimon Glassendmenu
141b1a873dfSSimon Glass
142*f93178aeSJoseph Chenmenu "Boot Configuration"
143*f93178aeSJoseph Chen
144*f93178aeSJoseph Chenconfig XBC
145*f93178aeSJoseph Chen	bool "Boot Configuration support"
146*f93178aeSJoseph Chen	depends on ANDROID_BOOT_IMAGE
147*f93178aeSJoseph Chen	default n
148*f93178aeSJoseph Chen	help
149*f93178aeSJoseph Chen	  This enables support of Boot Configuration which can be used
150*f93178aeSJoseph Chen	  to pass boot configuration parameters to user space. These
151*f93178aeSJoseph Chen	  parameters will show up in /proc/bootconfig similar to the kernel
152*f93178aeSJoseph Chen	  parameters that show up in /proc/cmdline
153*f93178aeSJoseph Chen
154*f93178aeSJoseph Chenendmenu
155*f93178aeSJoseph Chen
15694e3c8c4Sgaurav ranamenu "Hashing Support"
15794e3c8c4Sgaurav rana
15894e3c8c4Sgaurav ranaconfig SHA1
15994e3c8c4Sgaurav rana	bool "Enable SHA1 support"
16094e3c8c4Sgaurav rana	help
16194e3c8c4Sgaurav rana	  This option enables support of hashing using SHA1 algorithm.
16294e3c8c4Sgaurav rana	  The hash is calculated in software.
16394e3c8c4Sgaurav rana	  The SHA1 algorithm produces a 160-bit (20-byte) hash value
16494e3c8c4Sgaurav rana	  (digest).
16594e3c8c4Sgaurav rana
16694e3c8c4Sgaurav ranaconfig SHA256
16794e3c8c4Sgaurav rana	bool "Enable SHA256 support"
16894e3c8c4Sgaurav rana	help
16994e3c8c4Sgaurav rana	  This option enables support of hashing using SHA256 algorithm.
17094e3c8c4Sgaurav rana	  The hash is calculated in software.
17194e3c8c4Sgaurav rana	  The SHA256 algorithm produces a 256-bit (32-byte) hash value
17294e3c8c4Sgaurav rana	  (digest).
17394e3c8c4Sgaurav rana
1742227535dSJoseph Chenconfig SHA512
1752227535dSJoseph Chen	bool "Enable SHA512 support"
1762227535dSJoseph Chen	help
1772227535dSJoseph Chen	  This option enables support of hashing using SHA512 algorithm.
1782227535dSJoseph Chen	  The hash is calculated in software.
1792227535dSJoseph Chen	  The SHA512 algorithm produces a 512-bit (64-byte) hash value
1802227535dSJoseph Chen	  (digest).
1812227535dSJoseph Chen
18294e3c8c4Sgaurav ranaconfig SHA_HW_ACCEL
18394e3c8c4Sgaurav rana	bool "Enable hashing using hardware"
18494e3c8c4Sgaurav rana	help
18594e3c8c4Sgaurav rana	  This option enables hardware acceleration
18694e3c8c4Sgaurav rana	  for SHA1/SHA256 hashing.
18794e3c8c4Sgaurav rana	  This affects the 'hash' command and also the
18894e3c8c4Sgaurav rana	  hash_lookup_algo() function.
18994e3c8c4Sgaurav rana
19094e3c8c4Sgaurav ranaconfig SHA_PROG_HW_ACCEL
19194e3c8c4Sgaurav rana	bool "Enable Progressive hashing support using hardware"
19294e3c8c4Sgaurav rana	depends on SHA_HW_ACCEL
19394e3c8c4Sgaurav rana	help
19494e3c8c4Sgaurav rana	  This option enables hardware-acceleration for
19594e3c8c4Sgaurav rana	  SHA1/SHA256 progressive hashing.
19694e3c8c4Sgaurav rana	  Data can be streamed in a block at a time and the hashing
19794e3c8c4Sgaurav rana	  is performed in hardware.
198bea79d7dSAndre Przywara
199bea79d7dSAndre Przywaraconfig MD5
200bea79d7dSAndre Przywara	bool
201bea79d7dSAndre Przywara
20292193ef7SMarek Behúnconfig CRC32C
20392193ef7SMarek Behún	bool
20492193ef7SMarek Behún
20594e3c8c4Sgaurav ranaendmenu
20694e3c8c4Sgaurav rana
207027b728dSJulius Wernermenu "Compression Support"
208027b728dSJulius Werner
209027b728dSJulius Wernerconfig LZ4
210027b728dSJulius Werner	bool "Enable LZ4 decompression support"
211027b728dSJulius Werner	help
212027b728dSJulius Werner	  If this option is set, support for LZ4 compressed images
213027b728dSJulius Werner	  is included. The LZ4 algorithm can run in-place as long as the
214027b728dSJulius Werner	  compressed image is loaded to the end of the output buffer, and
215027b728dSJulius Werner	  trades lower compression ratios for much faster decompression.
216027b728dSJulius Werner
217027b728dSJulius Werner	  NOTE: This implements the release version of the LZ4 frame
218027b728dSJulius Werner	  format as generated by default by the 'lz4' command line tool.
219027b728dSJulius Werner	  This is not the same as the outdated, less efficient legacy
220027b728dSJulius Werner	  frame format currently (2015) implemented in the Linux kernel
221027b728dSJulius Werner	  (generated by 'lz4 -l'). The two formats are incompatible.
222027b728dSJulius Werner
223aed998aaSSimon Glassconfig LZMA
224aed998aaSSimon Glass	bool "Enable LZMA decompression support"
225aed998aaSSimon Glass	help
226aed998aaSSimon Glass	  This enables support for LZMA (Lempel-Ziv-Markov chain algorithm),
227aed998aaSSimon Glass	  a dictionary compression algorithm that provides a high compression
228aed998aaSSimon Glass	  ratio and fairly fast decompression speed. See also
229aed998aaSSimon Glass	  CONFIG_CMD_LZMADEC which provides a decode command.
230aed998aaSSimon Glass
231173aafbfSBoris Brezillonconfig LZO
232d56b4b19STom Rini	bool "Enable LZO decompression support"
233d56b4b19STom Rini	help
234d56b4b19STom Rini	  This enables support for LZO compression algorithm.r
235b81c4739SYork Sun
236205ac79eSJean-Jacques Hiblotconfig SPL_LZO
237205ac79eSJean-Jacques Hiblot	bool "Enable LZO decompression support in SPL"
238205ac79eSJean-Jacques Hiblot	help
239205ac79eSJean-Jacques Hiblot	  This enables support for LZO compression algorithm in the SPL.
240205ac79eSJean-Jacques Hiblot
241b81c4739SYork Sunconfig SPL_GZIP
242b81c4739SYork Sun	bool "Enable gzip decompression support for SPL build"
243b81c4739SYork Sun	select SPL_ZLIB
244b81c4739SYork Sun	help
245b81c4739SYork Sun	  This enables support for GZIP compression altorithm for SPL boot.
246b81c4739SYork Sun
247b81c4739SYork Sunconfig SPL_ZLIB
248b81c4739SYork Sun	bool
249b81c4739SYork Sun	help
250b81c4739SYork Sun	  This enables compression lib for SPL boot.
251b81c4739SYork Sun
252027b728dSJulius Wernerendmenu
253027b728dSJulius Werner
2546501ff62SPrzemyslaw Marczakconfig ERRNO_STR
2556501ff62SPrzemyslaw Marczak	bool "Enable function for getting errno-related string message"
2566501ff62SPrzemyslaw Marczak	help
2576501ff62SPrzemyslaw Marczak	  The function errno_str(int errno), returns a pointer to the errno
2586501ff62SPrzemyslaw Marczak	  corresponding text message:
2596501ff62SPrzemyslaw Marczak	  - if errno is null or positive number - a pointer to "Success" message
2606501ff62SPrzemyslaw Marczak	  - if errno is negative - a pointer to errno related message
2616501ff62SPrzemyslaw Marczak
26228386b6dSAlexey Brodkinconfig HEXDUMP
26328386b6dSAlexey Brodkin	bool "Enable hexdump"
26428386b6dSAlexey Brodkin	help
26528386b6dSAlexey Brodkin	  This enables functions for printing dumps of binary data.
26628386b6dSAlexey Brodkin
26769e173ebSSimon Glassconfig OF_LIBFDT
26869e173ebSSimon Glass	bool "Enable the FDT library"
26969e173ebSSimon Glass	default y if OF_CONTROL
27069e173ebSSimon Glass	help
27169e173ebSSimon Glass	  This enables the FDT library (libfdt). It provides functions for
27269e173ebSSimon Glass	  accessing binary device tree images in memory, such as adding and
273f1a7ba1dSAnatolij Gustschin	  removing nodes and properties, scanning through the tree and finding
27469e173ebSSimon Glass	  particular compatible nodes. The library operates on a flattened
27569e173ebSSimon Glass	  version of the device tree.
27669e173ebSSimon Glass
277ddf67f71SMaxime Ripardconfig OF_LIBFDT_OVERLAY
278ddf67f71SMaxime Ripard	bool "Enable the FDT library overlay support"
279ddf67f71SMaxime Ripard	help
280ddf67f71SMaxime Ripard	  This enables the FDT library (libfdt) overlay support.
281ddf67f71SMaxime Ripard
282aa34fbc0SSimon Glassconfig SPL_OF_LIBFDT
283aa34fbc0SSimon Glass	bool "Enable the FDT library for SPL"
284aa34fbc0SSimon Glass	default y if SPL_OF_CONTROL
285aa34fbc0SSimon Glass	help
286aa34fbc0SSimon Glass	  This enables the FDT library (libfdt). It provides functions for
287aa34fbc0SSimon Glass	  accessing binary device tree images in memory, such as adding and
288f1a7ba1dSAnatolij Gustschin	  removing nodes and properties, scanning through the tree and finding
289aa34fbc0SSimon Glass	  particular compatible nodes. The library operates on a flattened
290aa34fbc0SSimon Glass	  version of the device tree.
291aa34fbc0SSimon Glass
292e2f2fb23SKever Yangconfig TPL_OF_LIBFDT
293e2f2fb23SKever Yang	bool "Enable the FDT library for TPL"
294e2f2fb23SKever Yang	default y if TPL_OF_CONTROL
295e2f2fb23SKever Yang	help
296e2f2fb23SKever Yang	  This enables the FDT library (libfdt). It provides functions for
297e2f2fb23SKever Yang	  accessing binary device tree images in memory, such as adding and
298e2f2fb23SKever Yang	  removing nodes and properties, scanning through the tree and finding
299e2f2fb23SKever Yang	  particular compatible nodes. The library operates on a flattened
300e2f2fb23SKever Yang	  version of the device tree.
301e2f2fb23SKever Yang
302ebf7fff2SHeiko Schocherconfig FDT_FIXUP_PARTITIONS
303ebf7fff2SHeiko Schocher	bool "overwrite MTD partitions in DTS through defined in 'mtdparts'"
304ebf7fff2SHeiko Schocher	depends on OF_LIBFDT
305ebf7fff2SHeiko Schocher	default n
306ebf7fff2SHeiko Schocher	help
307ebf7fff2SHeiko Schocher	  Allow overwriting defined partitions in the device tree blob
308ebf7fff2SHeiko Schocher	  using partition info defined in the 'mtdparts' environment
309ebf7fff2SHeiko Schocher	  variable.
310ebf7fff2SHeiko Schocher
3114b6dddc2SAlexander Grafmenu "System tables"
312e663b350SAlexander Graf	depends on (!EFI && !SYS_COREBOOT) || (ARM && EFI_LOADER)
3134b6dddc2SAlexander Graf
3144b6dddc2SAlexander Grafconfig GENERATE_SMBIOS_TABLE
3154b6dddc2SAlexander Graf	bool "Generate an SMBIOS (System Management BIOS) table"
3164b6dddc2SAlexander Graf	default y
317e663b350SAlexander Graf	depends on X86 || EFI_LOADER
3184b6dddc2SAlexander Graf	help
3194b6dddc2SAlexander Graf	  The System Management BIOS (SMBIOS) specification addresses how
3204b6dddc2SAlexander Graf	  motherboard and system vendors present management information about
3214b6dddc2SAlexander Graf	  their products in a standard format by extending the BIOS interface
3224b6dddc2SAlexander Graf	  on Intel architecture systems.
3234b6dddc2SAlexander Graf
3244b6dddc2SAlexander Graf	  Check http://www.dmtf.org/standards/smbios for details.
3254b6dddc2SAlexander Graf
3264b6dddc2SAlexander Grafconfig SMBIOS_MANUFACTURER
3274b6dddc2SAlexander Graf	string "SMBIOS Manufacturer"
3284b6dddc2SAlexander Graf	depends on GENERATE_SMBIOS_TABLE
3294b6dddc2SAlexander Graf	default SYS_VENDOR
3304b6dddc2SAlexander Graf	help
3314b6dddc2SAlexander Graf	  The board manufacturer to store in SMBIOS structures.
3324b6dddc2SAlexander Graf	  Change this to override the default one (CONFIG_SYS_VENDOR).
3334b6dddc2SAlexander Graf
3344b6dddc2SAlexander Grafconfig SMBIOS_PRODUCT_NAME
3354b6dddc2SAlexander Graf	string "SMBIOS Product Name"
3364b6dddc2SAlexander Graf	depends on GENERATE_SMBIOS_TABLE
3374b6dddc2SAlexander Graf	default SYS_BOARD
3384b6dddc2SAlexander Graf	help
3394b6dddc2SAlexander Graf	  The product name to store in SMBIOS structures.
3404b6dddc2SAlexander Graf	  Change this to override the default one (CONFIG_SYS_BOARD).
3414b6dddc2SAlexander Graf
3424b6dddc2SAlexander Grafendmenu
3434b6dddc2SAlexander Graf
344867a6ac8SSimon Glasssource lib/efi/Kconfig
345ed980b8cSAlexander Grafsource lib/efi_loader/Kconfig
34637a7bc39SJason Zhusource lib/avb/libavb/Kconfig
34737a7bc39SJason Zhusource lib/avb/libavb_ab/Kconfig
34837a7bc39SJason Zhusource lib/avb/libavb_atx/Kconfig
34937a7bc39SJason Zhusource lib/avb/libavb_user/Kconfig
35037a7bc39SJason Zhusource lib/avb/rk_avb_user/Kconfig
351abdd2437Shispingsource lib/optee_clientApi/Kconfig
352ed36323fSMasahiro Yamadaendmenu
353