blob: 09670f031c2453ec44d64a2e901d55eb7049f31d [file] [log] [blame]
Masahiro Yamadaed363232014-09-16 16:32:58 +09001menu "Library routines"
2
Masahiro Yamadab0928da2014-09-16 16:32:59 +09003config CC_OPTIMIZE_LIBS_FOR_SPEED
4 bool "Optimize libraries for speed"
5 help
6 Enabling this option will pass "-O2" to gcc when compiling
7 under "lib" directory.
8
9 If unsure, say N.
10
Masahiro Yamada45ccec82014-10-24 01:30:43 +090011config HAVE_PRIVATE_LIBGCC
12 bool
13
14config USE_PRIVATE_LIBGCC
15 bool "Use private libgcc"
16 depends on HAVE_PRIVATE_LIBGCC
Marek Vasut91b86e22016-05-26 18:01:47 +020017 default y if HAVE_PRIVATE_LIBGCC && ((ARM && !ARM64) || MIPS)
Masahiro Yamada45ccec82014-10-24 01:30:43 +090018 help
19 This option allows you to use the built-in libgcc implementation
Masahiro Yamada67976302016-03-30 20:17:42 +090020 of U-Boot instead of the one provided by the compiler.
Masahiro Yamada45ccec82014-10-24 01:30:43 +090021 If unsure, say N.
22
Masahiro Yamada8c688bc2014-10-24 01:30:40 +090023config SYS_HZ
24 int
25 default 1000
26 help
27 The frequency of the timer returned by get_timer().
28 get_timer() must operate in milliseconds and this option must be
29 set to 1000.
30
Stefan Roese7d9cde12015-11-23 07:00:22 +010031config USE_TINY_PRINTF
32 bool "Enable tiny printf() version"
33 help
34 This option enables a tiny, stripped down printf version.
35 This should only be used in space limited environments,
36 like SPL versions with hard memory limits. This version
37 reduces the code size by about 2.5KiB on armv7.
38
39 The supported format specifiers are %c, %s, %u/%d and %x.
40
Joe Hershberger1a606502015-04-21 17:02:42 -050041config REGEX
42 bool "Enable regular expression support"
Joe Hershbergerf7848d92015-06-22 17:57:36 -050043 default y if NET
Joe Hershberger1a606502015-04-21 17:02:42 -050044 help
45 If this variable is defined, U-Boot is linked against the
46 SLRE (Super Light Regular Expression) library, which adds
47 regex support to some commands, for example "env grep" and
48 "setexpr".
49
Michal Simek9ba9e852015-05-25 11:37:22 +020050config LIB_RAND
Masahiro Yamada3850dbe2015-06-11 19:16:43 +090051 bool "Pseudo-random library support "
52 help
53 This library provides pseudo-random number generator functions.
Michal Simek9ba9e852015-05-25 11:37:22 +020054
Simon Glassab4458b2017-04-02 09:50:28 -060055config SPL_TINY_MEMSET
56 bool "Use a very small memset() in SPL"
57 help
58 The faster memset() is the arch-specific one (if available) enabled
59 by CONFIG_USE_ARCH_MEMSET. If that is not enabled, we can still get
60 better performance by writing a word at a time. But in very
61 size-constrained envrionments even this may be too big. Enable this
62 option to reduce code size slightly at the cost of some speed.
63
Boris Brezillonaa049152017-02-27 18:22:05 +010064config RBTREE
65 bool
66
Simon Glassd1389402015-06-23 15:38:23 -060067source lib/dhry/Kconfig
68
Simon Glassb1a873d2017-04-26 22:27:49 -060069menu "Security support"
70
71config AES
72 bool "Support the AES algorithm"
73 help
74 This provides a means to encrypt and decrypt data using the AES
75 (Advanced Encryption Standard). This algorithm uses a symetric key
76 and is widely used as a streaming cipher. Different key lengths are
77 supported by the algorithm but only a 128-bit key is supported at
78 present.
79
Ruchika Guptad9f23c72015-01-23 16:01:56 +053080source lib/rsa/Kconfig
Ruchika Guptac4beb222015-01-23 16:01:51 +053081
Simon Glassa7d660b2015-08-22 18:31:19 -060082config TPM
83 bool "Trusted Platform Module (TPM) Support"
Simon Glass2419cd12015-10-03 06:39:36 -060084 depends on DM
Simon Glassa7d660b2015-08-22 18:31:19 -060085 help
86 This enables support for TPMs which can be used to provide security
87 features for your board. The TPM can be connected via LPC or I2C
88 and a sandbox TPM is provided for testing purposes. Use the 'tpm'
89 command to interactive the TPM. Driver model support is provided
90 for the low-level TPM interface, but only one TPM is supported at
91 a time by the TPM library.
92
Simon Glassb1a873d2017-04-26 22:27:49 -060093endmenu
94
gaurav rana94e3c8c2015-02-20 12:51:46 +053095menu "Hashing Support"
96
97config SHA1
98 bool "Enable SHA1 support"
99 help
100 This option enables support of hashing using SHA1 algorithm.
101 The hash is calculated in software.
102 The SHA1 algorithm produces a 160-bit (20-byte) hash value
103 (digest).
104
105config SHA256
106 bool "Enable SHA256 support"
107 help
108 This option enables support of hashing using SHA256 algorithm.
109 The hash is calculated in software.
110 The SHA256 algorithm produces a 256-bit (32-byte) hash value
111 (digest).
112
113config SHA_HW_ACCEL
114 bool "Enable hashing using hardware"
115 help
116 This option enables hardware acceleration
117 for SHA1/SHA256 hashing.
118 This affects the 'hash' command and also the
119 hash_lookup_algo() function.
120
121config SHA_PROG_HW_ACCEL
122 bool "Enable Progressive hashing support using hardware"
123 depends on SHA_HW_ACCEL
124 help
125 This option enables hardware-acceleration for
126 SHA1/SHA256 progressive hashing.
127 Data can be streamed in a block at a time and the hashing
128 is performed in hardware.
Andre Przywarabea79d72017-03-15 01:19:05 +0000129
130config MD5
131 bool
132
gaurav rana94e3c8c2015-02-20 12:51:46 +0530133endmenu
134
Julius Werner027b7282015-10-06 20:03:53 -0700135menu "Compression Support"
136
137config LZ4
138 bool "Enable LZ4 decompression support"
139 help
140 If this option is set, support for LZ4 compressed images
141 is included. The LZ4 algorithm can run in-place as long as the
142 compressed image is loaded to the end of the output buffer, and
143 trades lower compression ratios for much faster decompression.
144
145 NOTE: This implements the release version of the LZ4 frame
146 format as generated by default by the 'lz4' command line tool.
147 This is not the same as the outdated, less efficient legacy
148 frame format currently (2015) implemented in the Linux kernel
149 (generated by 'lz4 -l'). The two formats are incompatible.
150
Simon Glassaed998a2017-05-17 03:25:42 -0600151config LZMA
152 bool "Enable LZMA decompression support"
153 help
154 This enables support for LZMA (Lempel-Ziv-Markov chain algorithm),
155 a dictionary compression algorithm that provides a high compression
156 ratio and fairly fast decompression speed. See also
157 CONFIG_CMD_LZMADEC which provides a decode command.
158
Boris Brezillon173aafb2017-02-27 18:22:06 +0100159config LZO
160 bool
Julius Werner027b7282015-10-06 20:03:53 -0700161endmenu
162
Przemyslaw Marczak6501ff62015-04-20 20:07:40 +0200163config ERRNO_STR
164 bool "Enable function for getting errno-related string message"
165 help
166 The function errno_str(int errno), returns a pointer to the errno
167 corresponding text message:
168 - if errno is null or positive number - a pointer to "Success" message
169 - if errno is negative - a pointer to errno related message
170
Simon Glass69e173e2016-02-22 22:55:42 -0700171config OF_LIBFDT
172 bool "Enable the FDT library"
173 default y if OF_CONTROL
174 help
175 This enables the FDT library (libfdt). It provides functions for
176 accessing binary device tree images in memory, such as adding and
177 removing notes and properties, scanning through the tree and finding
178 particular compatible nodes. The library operates on a flattened
179 version of the device tree.
180
Maxime Ripardddf67f72016-07-05 10:26:44 +0200181config OF_LIBFDT_OVERLAY
182 bool "Enable the FDT library overlay support"
183 help
184 This enables the FDT library (libfdt) overlay support.
185
Simon Glassaa34fbc2016-02-22 22:55:45 -0700186config SPL_OF_LIBFDT
187 bool "Enable the FDT library for SPL"
188 default y if SPL_OF_CONTROL
189 help
190 This enables the FDT library (libfdt). It provides functions for
191 accessing binary device tree images in memory, such as adding and
192 removing notes and properties, scanning through the tree and finding
193 particular compatible nodes. The library operates on a flattened
194 version of the device tree.
195
Heiko Schocherebf7fff2016-10-06 07:31:45 +0200196config FDT_FIXUP_PARTITIONS
197 bool "overwrite MTD partitions in DTS through defined in 'mtdparts'"
198 depends on OF_LIBFDT
199 default n
200 help
201 Allow overwriting defined partitions in the device tree blob
202 using partition info defined in the 'mtdparts' environment
203 variable.
204
Alexander Graf4b6dddc2016-08-19 01:23:23 +0200205menu "System tables"
Alexander Grafe663b352016-08-19 01:23:29 +0200206 depends on (!EFI && !SYS_COREBOOT) || (ARM && EFI_LOADER)
Alexander Graf4b6dddc2016-08-19 01:23:23 +0200207
208config GENERATE_SMBIOS_TABLE
209 bool "Generate an SMBIOS (System Management BIOS) table"
210 default y
Alexander Grafe663b352016-08-19 01:23:29 +0200211 depends on X86 || EFI_LOADER
Alexander Graf4b6dddc2016-08-19 01:23:23 +0200212 help
213 The System Management BIOS (SMBIOS) specification addresses how
214 motherboard and system vendors present management information about
215 their products in a standard format by extending the BIOS interface
216 on Intel architecture systems.
217
218 Check http://www.dmtf.org/standards/smbios for details.
219
220config SMBIOS_MANUFACTURER
221 string "SMBIOS Manufacturer"
222 depends on GENERATE_SMBIOS_TABLE
223 default SYS_VENDOR
224 help
225 The board manufacturer to store in SMBIOS structures.
226 Change this to override the default one (CONFIG_SYS_VENDOR).
227
228config SMBIOS_PRODUCT_NAME
229 string "SMBIOS Product Name"
230 depends on GENERATE_SMBIOS_TABLE
231 default SYS_BOARD
232 help
233 The product name to store in SMBIOS structures.
234 Change this to override the default one (CONFIG_SYS_BOARD).
235
236endmenu
237
Simon Glass867a6ac2015-07-31 09:31:36 -0600238source lib/efi/Kconfig
Alexander Grafed980b82016-03-04 01:10:07 +0100239source lib/efi_loader/Kconfig
Simon Glass867a6ac2015-07-31 09:31:36 -0600240
Masahiro Yamadaed363232014-09-16 16:32:58 +0900241endmenu