Masahiro Yamada | f3e12b7 | 2014-09-16 16:32:58 +0900 | [diff] [blame] | 1 | menu "Library routines" |
| 2 | |
Marek Szyprowski | 795dc7d | 2020-06-03 14:43:40 +0200 | [diff] [blame] | 3 | config 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 Meng | 0a5fee5 | 2021-02-25 17:22:36 +0800 | [diff] [blame] | 9 | This library only works in the post-relocation phase. |
| 10 | |
Marek Szyprowski | 795dc7d | 2020-06-03 14:43:40 +0200 | [diff] [blame] | 11 | config 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 Rini | 1f17363 | 2022-11-16 13:10:38 -0500 | [diff] [blame] | 18 | config SYS_TIMER_COUNTS_DOWN |
Marek Vasut | 88e5a20 | 2023-03-19 04:13:02 +0100 | [diff] [blame] | 19 | bool "System timer counts down rather than up" |
Tom Rini | 1f17363 | 2022-11-16 13:10:38 -0500 | [diff] [blame] | 20 | |
Simon Glass | ef9e762 | 2021-11-24 09:26:42 -0700 | [diff] [blame] | 21 | config 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 Ford | 02bf536 | 2017-08-11 09:46:05 -0500 | [diff] [blame] | 31 | config 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 Glass | dd7fb9b | 2019-12-06 21:41:34 -0700 | [diff] [blame] | 38 | config BINMAN_FDT |
| 39 | bool "Allow access to binman information in the device tree" |
Bin Meng | c5e8b31 | 2021-02-03 21:20:02 +0800 | [diff] [blame] | 40 | depends on BINMAN && DM && OF_CONTROL |
Bin Meng | c9155f1 | 2021-05-10 20:23:36 +0800 | [diff] [blame] | 41 | default y if OF_SEPARATE || OF_EMBED |
Simon Glass | dd7fb9b | 2019-12-06 21:41:34 -0700 | [diff] [blame] | 42 | 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 Yamada | 3f053fe | 2014-09-16 16:32:59 +0900 | [diff] [blame] | 48 | config 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 Glass | c17db99 | 2021-07-02 12:36:17 -0600 | [diff] [blame] | 56 | config CHARSET |
| 57 | bool |
Simon Glass | c17db99 | 2021-07-02 12:36:17 -0600 | [diff] [blame] | 58 | |
Faiz Abbas | 6199fb1 | 2018-02-06 19:15:58 +0530 | [diff] [blame] | 59 | config 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 Meng | b95e9db | 2018-10-15 02:21:15 -0700 | [diff] [blame] | 65 | config 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 Yamada | 9520b71 | 2014-10-24 01:30:43 +0900 | [diff] [blame] | 71 | config HAVE_PRIVATE_LIBGCC |
| 72 | bool |
| 73 | |
Adam Ford | 70c8f05 | 2018-02-06 12:14:28 -0600 | [diff] [blame] | 74 | config LIB_UUID |
| 75 | bool |
| 76 | |
AKASHI Takahiro | d1e3158 | 2023-10-26 14:31:31 -0400 | [diff] [blame] | 77 | config RANDOM_UUID |
| 78 | bool "GPT Random UUID generation" |
| 79 | select LIB_UUID |
| 80 | help |
| 81 | Enable the generation of partitions with random UUIDs if none |
| 82 | are provided. |
| 83 | |
Simon Glass | 8090d8d | 2023-02-22 09:34:11 -0700 | [diff] [blame] | 84 | config SPL_LIB_UUID |
| 85 | depends on SPL |
| 86 | bool |
| 87 | |
Kautuk Consul | a51bb74 | 2022-12-07 17:12:34 +0530 | [diff] [blame] | 88 | config SEMIHOSTING |
| 89 | bool "Support semihosting" |
Kautuk Consul | c86cb4a | 2022-12-07 17:12:35 +0530 | [diff] [blame] | 90 | depends on ARM || RISCV |
Kautuk Consul | a51bb74 | 2022-12-07 17:12:34 +0530 | [diff] [blame] | 91 | help |
| 92 | Semihosting is a method for a target to communicate with a host |
| 93 | debugger. It uses special instructions which the debugger will trap |
| 94 | on and interpret. This allows U-Boot to read/write files, print to |
| 95 | the console, and execute arbitrary commands on the host system. |
| 96 | |
| 97 | Enabling this option will add support for reading and writing files |
| 98 | on the host system. If you don't have a debugger attached then trying |
| 99 | to do this will likely cause U-Boot to hang. Say 'n' if you are unsure. |
| 100 | |
| 101 | config SEMIHOSTING_FALLBACK |
| 102 | bool "Recover gracefully when semihosting fails" |
Sean Anderson | bf641f2 | 2023-10-27 16:40:15 -0400 | [diff] [blame] | 103 | depends on SEMIHOSTING |
Kautuk Consul | a51bb74 | 2022-12-07 17:12:34 +0530 | [diff] [blame] | 104 | default y |
| 105 | help |
| 106 | Normally, if U-Boot makes a semihosting call and no debugger is |
| 107 | attached, then it will panic due to a synchronous abort |
| 108 | exception. This config adds an exception handler which will allow |
| 109 | U-Boot to recover. Say 'y' if unsure. |
| 110 | |
| 111 | config SPL_SEMIHOSTING |
| 112 | bool "Support semihosting in SPL" |
Kautuk Consul | c86cb4a | 2022-12-07 17:12:35 +0530 | [diff] [blame] | 113 | depends on SPL && (ARM || RISCV) |
Kautuk Consul | a51bb74 | 2022-12-07 17:12:34 +0530 | [diff] [blame] | 114 | help |
| 115 | Semihosting is a method for a target to communicate with a host |
| 116 | debugger. It uses special instructions which the debugger will trap |
| 117 | on and interpret. This allows U-Boot to read/write files, print to |
| 118 | the console, and execute arbitrary commands on the host system. |
| 119 | |
| 120 | Enabling this option will add support for reading and writing files |
| 121 | on the host system. If you don't have a debugger attached then trying |
| 122 | to do this will likely cause U-Boot to hang. Say 'n' if you are unsure. |
| 123 | |
| 124 | config SPL_SEMIHOSTING_FALLBACK |
| 125 | bool "Recover gracefully when semihosting fails in SPL" |
Sean Anderson | bf641f2 | 2023-10-27 16:40:15 -0400 | [diff] [blame] | 126 | depends on SPL_SEMIHOSTING |
Kautuk Consul | c86cb4a | 2022-12-07 17:12:35 +0530 | [diff] [blame] | 127 | select ARMV8_SPL_EXCEPTION_VECTORS if ARM64 |
Kautuk Consul | a51bb74 | 2022-12-07 17:12:34 +0530 | [diff] [blame] | 128 | default y |
| 129 | help |
| 130 | Normally, if U-Boot makes a semihosting call and no debugger is |
| 131 | attached, then it will panic due to a synchronous abort |
| 132 | exception. This config adds an exception handler which will allow |
| 133 | U-Boot to recover. Say 'y' if unsure. |
| 134 | |
Alex Kiernan | 5b40428 | 2018-04-19 04:32:54 +0000 | [diff] [blame] | 135 | config PRINTF |
| 136 | bool |
| 137 | default y |
| 138 | |
| 139 | config SPL_PRINTF |
| 140 | bool |
| 141 | select SPL_SPRINTF |
Simon Glass | 7611ac6 | 2019-09-25 08:56:27 -0600 | [diff] [blame] | 142 | select SPL_STRTO if !SPL_USE_TINY_PRINTF |
Alex Kiernan | 5b40428 | 2018-04-19 04:32:54 +0000 | [diff] [blame] | 143 | |
| 144 | config TPL_PRINTF |
| 145 | bool |
| 146 | select TPL_SPRINTF |
Simon Glass | 7611ac6 | 2019-09-25 08:56:27 -0600 | [diff] [blame] | 147 | select TPL_STRTO if !TPL_USE_TINY_PRINTF |
Alex Kiernan | 5b40428 | 2018-04-19 04:32:54 +0000 | [diff] [blame] | 148 | |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 149 | config VPL_PRINTF |
| 150 | bool |
| 151 | select VPL_SPRINTF |
| 152 | select VPL_STRTO if !VPL_USE_TINY_PRINTF |
| 153 | |
Alex Kiernan | 5b40428 | 2018-04-19 04:32:54 +0000 | [diff] [blame] | 154 | config SPRINTF |
| 155 | bool |
| 156 | default y |
| 157 | |
| 158 | config SPL_SPRINTF |
| 159 | bool |
| 160 | |
| 161 | config TPL_SPRINTF |
| 162 | bool |
| 163 | |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 164 | config VPL_SPRINTF |
| 165 | bool |
| 166 | |
Andrii Anisov | 6e29ac4 | 2020-08-06 12:42:52 +0300 | [diff] [blame] | 167 | config SSCANF |
| 168 | bool |
Andrii Anisov | 6e29ac4 | 2020-08-06 12:42:52 +0300 | [diff] [blame] | 169 | |
Alex Kiernan | 5b40428 | 2018-04-19 04:32:54 +0000 | [diff] [blame] | 170 | config STRTO |
| 171 | bool |
| 172 | default y |
| 173 | |
| 174 | config SPL_STRTO |
| 175 | bool |
| 176 | |
| 177 | config TPL_STRTO |
| 178 | bool |
| 179 | |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 180 | config VPL_STRTO |
| 181 | bool |
| 182 | |
Alex Kiernan | c568bcb | 2018-05-29 15:30:52 +0000 | [diff] [blame] | 183 | config IMAGE_SPARSE |
| 184 | bool |
| 185 | |
| 186 | config IMAGE_SPARSE_FILLBUF_SIZE |
| 187 | hex "Android sparse image CHUNK_TYPE_FILL buffer size" |
| 188 | default 0x80000 |
| 189 | depends on IMAGE_SPARSE |
| 190 | help |
| 191 | Set the size of the fill buffer used when processing CHUNK_TYPE_FILL |
| 192 | chunks. |
| 193 | |
Masahiro Yamada | 9520b71 | 2014-10-24 01:30:43 +0900 | [diff] [blame] | 194 | config USE_PRIVATE_LIBGCC |
| 195 | bool "Use private libgcc" |
| 196 | depends on HAVE_PRIVATE_LIBGCC |
Marek Vasut | 4e0126e | 2016-05-26 18:01:47 +0200 | [diff] [blame] | 197 | default y if HAVE_PRIVATE_LIBGCC && ((ARM && !ARM64) || MIPS) |
Masahiro Yamada | 9520b71 | 2014-10-24 01:30:43 +0900 | [diff] [blame] | 198 | help |
| 199 | This option allows you to use the built-in libgcc implementation |
Masahiro Yamada | 1c6a5e4 | 2016-03-30 20:17:42 +0900 | [diff] [blame] | 200 | of U-Boot instead of the one provided by the compiler. |
Masahiro Yamada | 9520b71 | 2014-10-24 01:30:43 +0900 | [diff] [blame] | 201 | If unsure, say N. |
| 202 | |
Masahiro Yamada | e301fa0 | 2014-10-24 01:30:40 +0900 | [diff] [blame] | 203 | config SYS_HZ |
| 204 | int |
| 205 | default 1000 |
| 206 | help |
| 207 | The frequency of the timer returned by get_timer(). |
| 208 | get_timer() must operate in milliseconds and this option must be |
| 209 | set to 1000. |
| 210 | |
Simon Glass | 7611ac6 | 2019-09-25 08:56:27 -0600 | [diff] [blame] | 211 | config SPL_USE_TINY_PRINTF |
Thomas Hebb | 0c12fb5 | 2019-11-10 08:23:53 -0800 | [diff] [blame] | 212 | bool "Enable tiny printf() version in SPL" |
Simon Glass | 7611ac6 | 2019-09-25 08:56:27 -0600 | [diff] [blame] | 213 | depends on SPL |
Tom Rini | d0502b7 | 2019-06-08 12:46:18 -0400 | [diff] [blame] | 214 | default y |
Stefan Roese | 363ab7b | 2015-11-23 07:00:22 +0100 | [diff] [blame] | 215 | help |
| 216 | This option enables a tiny, stripped down printf version. |
| 217 | This should only be used in space limited environments, |
| 218 | like SPL versions with hard memory limits. This version |
| 219 | reduces the code size by about 2.5KiB on armv7. |
| 220 | |
| 221 | The supported format specifiers are %c, %s, %u/%d and %x. |
| 222 | |
Simon Glass | 7611ac6 | 2019-09-25 08:56:27 -0600 | [diff] [blame] | 223 | config TPL_USE_TINY_PRINTF |
Thomas Hebb | 0c12fb5 | 2019-11-10 08:23:53 -0800 | [diff] [blame] | 224 | bool "Enable tiny printf() version in TPL" |
Simon Glass | 7611ac6 | 2019-09-25 08:56:27 -0600 | [diff] [blame] | 225 | depends on TPL |
| 226 | default y if SPL_USE_TINY_PRINTF |
| 227 | help |
| 228 | This option enables a tiny, stripped down printf version. |
| 229 | This should only be used in space limited environments, |
| 230 | like SPL versions with hard memory limits. This version |
| 231 | reduces the code size by about 2.5KiB on armv7. |
| 232 | |
| 233 | The supported format specifiers are %c, %s, %u/%d and %x. |
| 234 | |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 235 | config VPL_USE_TINY_PRINTF |
| 236 | bool "Enable tiny printf() version for VPL" |
| 237 | depends on VPL |
| 238 | help |
| 239 | This option enables a tiny, stripped down printf version. |
| 240 | This should only be used in space limited environments, |
| 241 | like SPL versions with hard memory limits. This version |
| 242 | reduces the code size by about 2.5KiB on armv7. |
| 243 | |
| 244 | The supported format specifiers are %c, %s, %u/%d and %x. |
| 245 | |
Masahiro Yamada | acede7a | 2017-12-04 12:37:00 +0900 | [diff] [blame] | 246 | config PANIC_HANG |
| 247 | bool "Do not reset the system on fatal error" |
| 248 | help |
| 249 | Define this option to stop the system in case of a fatal error, |
| 250 | so that you have to reset it manually. This is probably NOT a good |
| 251 | idea for an embedded system where you want the system to reboot |
| 252 | automatically as fast as possible, but it may be useful during |
| 253 | development since you can try to debug the conditions that lead to |
| 254 | the situation. |
| 255 | |
Joe Hershberger | 937d3e8 | 2015-04-21 17:02:42 -0500 | [diff] [blame] | 256 | config REGEX |
| 257 | bool "Enable regular expression support" |
Joe Hershberger | 8ab8b72 | 2015-06-22 17:57:36 -0500 | [diff] [blame] | 258 | default y if NET |
Joe Hershberger | 937d3e8 | 2015-04-21 17:02:42 -0500 | [diff] [blame] | 259 | help |
| 260 | If this variable is defined, U-Boot is linked against the |
| 261 | SLRE (Super Light Regular Expression) library, which adds |
| 262 | regex support to some commands, for example "env grep" and |
| 263 | "setexpr". |
| 264 | |
Adam Ford | 38003a6 | 2018-02-06 10:18:18 -0600 | [diff] [blame] | 265 | choice |
| 266 | prompt "Pseudo-random library support type" |
Heinrich Schuchardt | b2e67a2 | 2020-01-19 19:28:12 +0100 | [diff] [blame] | 267 | depends on NET_RANDOM_ETHADDR || RANDOM_UUID || CMD_UUID || \ |
Heinrich Schuchardt | ba9c44e | 2020-11-20 12:55:22 +0100 | [diff] [blame] | 268 | RNG_SANDBOX || UT_LIB && AES || FAT_WRITE |
Adam Ford | 38003a6 | 2018-02-06 10:18:18 -0600 | [diff] [blame] | 269 | default LIB_RAND |
Masahiro Yamada | 2743c07 | 2015-06-11 19:16:43 +0900 | [diff] [blame] | 270 | help |
Adam Ford | 38003a6 | 2018-02-06 10:18:18 -0600 | [diff] [blame] | 271 | Select the library to provide pseudo-random number generator |
| 272 | functions. LIB_HW_RAND supports certain hardware engines that |
| 273 | provide this functionality. If in doubt, select LIB_RAND. |
| 274 | |
| 275 | config LIB_RAND |
| 276 | bool "Pseudo-random library support" |
| 277 | |
| 278 | config LIB_HW_RAND |
Marcin Juszkiewicz | a360c2c | 2020-05-26 19:07:15 +0200 | [diff] [blame] | 279 | bool "HW Engine for random library support" |
Adam Ford | 38003a6 | 2018-02-06 10:18:18 -0600 | [diff] [blame] | 280 | |
| 281 | endchoice |
Michal Simek | 2c1b1db | 2015-05-25 11:37:22 +0200 | [diff] [blame] | 282 | |
Simon Glass | a6cee93 | 2021-12-01 09:02:36 -0700 | [diff] [blame] | 283 | config SUPPORT_ACPI |
| 284 | bool |
| 285 | help |
| 286 | Enable this if your arch or board can support generating ACPI |
| 287 | (Advanced Configuration and Power Interface) tables. In this case |
| 288 | U-Boot can generate these tables and pass them to the Operating |
| 289 | System. |
| 290 | |
Simon Glass | e264be4 | 2023-05-04 16:54:57 -0600 | [diff] [blame] | 291 | config ACPI |
| 292 | bool "Enable support for ACPI libraries" |
| 293 | depends on SUPPORT_ACPI |
| 294 | help |
| 295 | Provides library functions for dealing with ACPI tables. This does |
| 296 | not necessarily include generation of tables |
| 297 | (see GENERATE_ACPI_TABLE), but allows for tables to be located. |
| 298 | |
Simon Glass | 1a2fcc2 | 2023-09-19 21:00:06 -0600 | [diff] [blame] | 299 | config SPL_ACPI |
| 300 | bool "Enable support for ACPI libraries in SPL" |
| 301 | depends on SPL && SUPPORT_ACPI |
| 302 | help |
| 303 | Provides library functions for dealing with ACPI tables in SPL. This |
| 304 | does not necessarily include generation of tables |
| 305 | (see GENERATE_ACPI_TABLE), but allows for tables to be located. |
| 306 | |
Simon Glass | a6cee93 | 2021-12-01 09:02:36 -0700 | [diff] [blame] | 307 | config GENERATE_ACPI_TABLE |
| 308 | bool "Generate an ACPI (Advanced Configuration and Power Interface) table" |
Simon Glass | e264be4 | 2023-05-04 16:54:57 -0600 | [diff] [blame] | 309 | depends on ACPI |
Simon Glass | a6cee93 | 2021-12-01 09:02:36 -0700 | [diff] [blame] | 310 | select QFW if QEMU |
| 311 | help |
| 312 | The Advanced Configuration and Power Interface (ACPI) specification |
| 313 | provides an open standard for device configuration and management |
| 314 | by the operating system. It defines platform-independent interfaces |
| 315 | for configuration and power management monitoring. |
| 316 | |
Simon Glass | e2f94ae | 2017-04-02 09:50:28 -0600 | [diff] [blame] | 317 | config SPL_TINY_MEMSET |
| 318 | bool "Use a very small memset() in SPL" |
Tom Rini | 0a83cc2 | 2022-06-10 23:03:09 -0400 | [diff] [blame] | 319 | depends on SPL |
Simon Glass | e2f94ae | 2017-04-02 09:50:28 -0600 | [diff] [blame] | 320 | help |
| 321 | The faster memset() is the arch-specific one (if available) enabled |
| 322 | by CONFIG_USE_ARCH_MEMSET. If that is not enabled, we can still get |
| 323 | better performance by writing a word at a time. But in very |
Chris Packham | 1c3b7ba | 2019-01-13 22:13:28 +1300 | [diff] [blame] | 324 | size-constrained environments even this may be too big. Enable this |
Simon Glass | e2f94ae | 2017-04-02 09:50:28 -0600 | [diff] [blame] | 325 | option to reduce code size slightly at the cost of some speed. |
| 326 | |
Philipp Tomsich | fefc4ec | 2017-08-03 22:52:04 +0200 | [diff] [blame] | 327 | config TPL_TINY_MEMSET |
| 328 | bool "Use a very small memset() in TPL" |
Tom Rini | 36a4ca0 | 2022-06-08 08:24:39 -0400 | [diff] [blame] | 329 | depends on TPL |
Philipp Tomsich | fefc4ec | 2017-08-03 22:52:04 +0200 | [diff] [blame] | 330 | help |
| 331 | The faster memset() is the arch-specific one (if available) enabled |
| 332 | by CONFIG_USE_ARCH_MEMSET. If that is not enabled, we can still get |
| 333 | better performance by writing a word at a time. But in very |
Chris Packham | 1c3b7ba | 2019-01-13 22:13:28 +1300 | [diff] [blame] | 334 | size-constrained environments even this may be too big. Enable this |
Philipp Tomsich | fefc4ec | 2017-08-03 22:52:04 +0200 | [diff] [blame] | 335 | option to reduce code size slightly at the cost of some speed. |
| 336 | |
Boris Brezillon | 627dc18 | 2017-02-27 18:22:05 +0100 | [diff] [blame] | 337 | config RBTREE |
| 338 | bool |
| 339 | |
Nandor Han | d5ea84a | 2017-11-08 15:35:14 +0000 | [diff] [blame] | 340 | config BITREVERSE |
| 341 | bool "Bit reverse library from Linux" |
| 342 | |
Simon Glass | bfce7fc | 2019-04-08 13:20:51 -0600 | [diff] [blame] | 343 | config TRACE |
| 344 | bool "Support for tracing of function calls and timing" |
| 345 | imply CMD_TRACE |
Simon Glass | 6b5424a | 2022-12-21 16:08:26 -0700 | [diff] [blame] | 346 | imply TIMER_EARLY |
Simon Glass | bfce7fc | 2019-04-08 13:20:51 -0600 | [diff] [blame] | 347 | help |
| 348 | Enables function tracing within U-Boot. This allows recording of call |
| 349 | traces including timing information. The command can write data to |
| 350 | memory for exporting for analysis (e.g. using bootchart). |
Vincent Stehlé | 28c2362 | 2024-04-11 18:44:02 +0200 | [diff] [blame] | 351 | See doc/develop/trace.rst for full details. |
Simon Glass | bfce7fc | 2019-04-08 13:20:51 -0600 | [diff] [blame] | 352 | |
Simon Glass | 445078e | 2019-04-08 13:20:52 -0600 | [diff] [blame] | 353 | config TRACE_BUFFER_SIZE |
| 354 | hex "Size of trace buffer in U-Boot" |
| 355 | depends on TRACE |
| 356 | default 0x01000000 |
| 357 | help |
| 358 | Sets the size of the trace buffer in U-Boot. This is allocated from |
| 359 | memory during relocation. If this buffer is too small, the trace |
| 360 | history will be truncated, with later records omitted. |
| 361 | |
| 362 | If early trace is enabled (i.e. before relocation), this buffer must |
| 363 | be large enough to include all the data from the early trace buffer as |
| 364 | well, since this is copied over to the main buffer during relocation. |
| 365 | |
| 366 | A trace record is emitted for each function call and each record is |
| 367 | 12 bytes (see struct trace_call). A suggested minimum size is 1MB. If |
| 368 | the size is too small then 'trace stats' will show a message saying |
| 369 | how many records were dropped due to buffer overflow. |
| 370 | |
Heinrich Schuchardt | c1a7379 | 2019-06-02 13:30:09 +0200 | [diff] [blame] | 371 | config TRACE_CALL_DEPTH_LIMIT |
| 372 | int "Trace call depth limit" |
| 373 | depends on TRACE |
| 374 | default 15 |
| 375 | help |
| 376 | Sets the maximum call depth up to which function calls are recorded. |
| 377 | |
Simon Glass | 445078e | 2019-04-08 13:20:52 -0600 | [diff] [blame] | 378 | config TRACE_EARLY |
| 379 | bool "Enable tracing before relocation" |
| 380 | depends on TRACE |
| 381 | help |
| 382 | Sometimes it is helpful to trace execution of U-Boot before |
| 383 | relocation. This is possible by using a arch-specific, fixed buffer |
| 384 | position in memory. Enable this option to start tracing as early as |
| 385 | possible after U-Boot starts. |
| 386 | |
| 387 | config TRACE_EARLY_SIZE |
| 388 | hex "Size of early trace buffer in U-Boot" |
| 389 | depends on TRACE_EARLY |
| 390 | default 0x00100000 |
| 391 | help |
| 392 | Sets the size of the early trace buffer in bytes. This is used to hold |
| 393 | tracing information before relocation. |
| 394 | |
Heinrich Schuchardt | c1a7379 | 2019-06-02 13:30:09 +0200 | [diff] [blame] | 395 | config TRACE_EARLY_CALL_DEPTH_LIMIT |
| 396 | int "Early trace call depth limit" |
| 397 | depends on TRACE_EARLY |
Simon Glass | 971574d | 2023-01-15 14:15:44 -0700 | [diff] [blame] | 398 | default 15 |
Heinrich Schuchardt | c1a7379 | 2019-06-02 13:30:09 +0200 | [diff] [blame] | 399 | help |
| 400 | Sets the maximum call depth up to which function calls are recorded |
| 401 | during early tracing. |
| 402 | |
Simon Glass | 445078e | 2019-04-08 13:20:52 -0600 | [diff] [blame] | 403 | config TRACE_EARLY_ADDR |
| 404 | hex "Address of early trace buffer in U-Boot" |
| 405 | depends on TRACE_EARLY |
| 406 | default 0x00100000 |
| 407 | help |
| 408 | Sets the address of the early trace buffer in U-Boot. This memory |
| 409 | must be accessible before relocation. |
| 410 | |
| 411 | A trace record is emitted for each function call and each record is |
| 412 | 12 bytes (see struct trace_call). A suggested minimum size is 1MB. If |
| 413 | the size is too small then the message which says the amount of early |
| 414 | data being coped will the the same as the |
| 415 | |
Loic Poulain | 12797e6 | 2021-11-25 18:16:14 +0100 | [diff] [blame] | 416 | config CIRCBUF |
| 417 | bool "Enable circular buffer support" |
| 418 | |
Michal Simek | dd5000ef | 2024-04-16 08:55:16 +0200 | [diff] [blame] | 419 | source "lib/dhry/Kconfig" |
Simon Glass | 99dbe4b | 2015-06-23 15:38:23 -0600 | [diff] [blame] | 420 | |
Simon Glass | 528fdd1 | 2017-04-26 22:27:49 -0600 | [diff] [blame] | 421 | menu "Security support" |
| 422 | |
| 423 | config AES |
| 424 | bool "Support the AES algorithm" |
| 425 | help |
| 426 | This provides a means to encrypt and decrypt data using the AES |
| 427 | (Advanced Encryption Standard). This algorithm uses a symetric key |
| 428 | and is widely used as a streaming cipher. Different key lengths are |
| 429 | supported by the algorithm but only a 128-bit key is supported at |
| 430 | present. |
| 431 | |
Michal Simek | dd5000ef | 2024-04-16 08:55:16 +0200 | [diff] [blame] | 432 | source "lib/ecdsa/Kconfig" |
| 433 | source "lib/rsa/Kconfig" |
| 434 | source "lib/crypto/Kconfig" |
| 435 | source "lib/crypt/Kconfig" |
Ruchika Gupta | 2c3822e | 2015-01-23 16:01:51 +0530 | [diff] [blame] | 436 | |
Simon Glass | 350497c | 2015-08-22 18:31:19 -0600 | [diff] [blame] | 437 | config TPM |
| 438 | bool "Trusted Platform Module (TPM) Support" |
Simon Glass | cf294b0 | 2015-10-03 06:39:36 -0600 | [diff] [blame] | 439 | depends on DM |
Sughosh Ganu | 9737fab | 2022-07-22 21:32:04 +0530 | [diff] [blame] | 440 | imply DM_RNG |
Eddie James | 8ed7bb3 | 2023-10-24 10:43:49 -0500 | [diff] [blame] | 441 | select SHA1 |
Simon Glass | 350497c | 2015-08-22 18:31:19 -0600 | [diff] [blame] | 442 | help |
| 443 | This enables support for TPMs which can be used to provide security |
| 444 | features for your board. The TPM can be connected via LPC or I2C |
| 445 | and a sandbox TPM is provided for testing purposes. Use the 'tpm' |
| 446 | command to interactive the TPM. Driver model support is provided |
| 447 | for the low-level TPM interface, but only one TPM is supported at |
| 448 | a time by the TPM library. |
Ilias Apalodimas | 1e665f9 | 2024-06-23 14:48:18 +0300 | [diff] [blame^] | 449 | For size reasons only SHA1 is selected which is supported on TPM1.2. |
| 450 | If you want a fully functional TPM enable all hashing algorithms. |
| 451 | If you enabled measured boot all hashing algorithms are selected. |
Simon Glass | 350497c | 2015-08-22 18:31:19 -0600 | [diff] [blame] | 452 | |
Simon Glass | 93a45b1 | 2018-10-01 12:22:19 -0600 | [diff] [blame] | 453 | config SPL_TPM |
| 454 | bool "Trusted Platform Module (TPM) Support in SPL" |
| 455 | depends on SPL_DM |
Simon Glass | 2b95b49 | 2023-01-07 14:57:20 -0700 | [diff] [blame] | 456 | imply SPL_CRC8 |
Simon Glass | 93a45b1 | 2018-10-01 12:22:19 -0600 | [diff] [blame] | 457 | help |
| 458 | This enables support for TPMs which can be used to provide security |
| 459 | features for your board. The TPM can be connected via LPC or I2C |
| 460 | and a sandbox TPM is provided for testing purposes. Use the 'tpm' |
| 461 | command to interactive the TPM. Driver model support is provided |
| 462 | for the low-level TPM interface, but only one TPM is supported at |
| 463 | a time by the TPM library. |
| 464 | |
| 465 | config TPL_TPM |
| 466 | bool "Trusted Platform Module (TPM) Support in TPL" |
| 467 | depends on TPL_DM |
| 468 | help |
| 469 | This enables support for TPMs which can be used to provide security |
| 470 | features for your board. The TPM can be connected via LPC or I2C |
| 471 | and a sandbox TPM is provided for testing purposes. Use the 'tpm' |
| 472 | command to interactive the TPM. Driver model support is provided |
| 473 | for the low-level TPM interface, but only one TPM is supported at |
| 474 | a time by the TPM library. |
| 475 | |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 476 | config VPL_TPM |
| 477 | bool "Trusted Platform Module (TPM) Support in VPL" |
| 478 | depends on VPL_DM |
| 479 | help |
| 480 | This enables support for TPMs which can be used to provide security |
| 481 | features for your board. The TPM can be connected via LPC or I2C |
| 482 | and a sandbox TPM is provided for testing purposes. Use the 'tpm' |
| 483 | command to interactive the TPM. Driver model support is provided |
| 484 | for the low-level TPM interface, but only one TPM is supported at |
| 485 | a time by the TPM library. |
| 486 | |
Simon Glass | 528fdd1 | 2017-04-26 22:27:49 -0600 | [diff] [blame] | 487 | endmenu |
| 488 | |
Igor Opaniuk | 525d1d8 | 2018-06-03 21:56:37 +0300 | [diff] [blame] | 489 | menu "Android Verified Boot" |
| 490 | |
| 491 | config LIBAVB |
| 492 | bool "Android Verified Boot 2.0 support" |
| 493 | depends on ANDROID_BOOT_IMAGE |
Igor Opaniuk | 525d1d8 | 2018-06-03 21:56:37 +0300 | [diff] [blame] | 494 | help |
| 495 | This enables support of Android Verified Boot 2.0 which can be used |
| 496 | to assure the end user of the integrity of the software running on a |
| 497 | device. Introduces such features as boot chain of trust, rollback |
| 498 | protection etc. |
| 499 | |
| 500 | endmenu |
| 501 | |
gaurav rana | ef20159 | 2015-02-20 12:51:46 +0530 | [diff] [blame] | 502 | menu "Hashing Support" |
| 503 | |
Qu Wenruo | b98e8a2 | 2021-12-27 14:12:07 +0800 | [diff] [blame] | 504 | config BLAKE2 |
| 505 | bool "Enable BLAKE2 support" |
| 506 | help |
| 507 | This option enables support of hashing using BLAKE2B algorithm. |
| 508 | The hash is calculated in software. |
| 509 | The BLAKE2 algorithm produces a hash value (digest) between 1 and |
| 510 | 64 bytes. |
| 511 | |
gaurav rana | ef20159 | 2015-02-20 12:51:46 +0530 | [diff] [blame] | 512 | config SHA1 |
| 513 | bool "Enable SHA1 support" |
| 514 | help |
| 515 | This option enables support of hashing using SHA1 algorithm. |
| 516 | The hash is calculated in software. |
| 517 | The SHA1 algorithm produces a 160-bit (20-byte) hash value |
| 518 | (digest). |
| 519 | |
| 520 | config SHA256 |
| 521 | bool "Enable SHA256 support" |
| 522 | help |
| 523 | This option enables support of hashing using SHA256 algorithm. |
| 524 | The hash is calculated in software. |
| 525 | The SHA256 algorithm produces a 256-bit (32-byte) hash value |
| 526 | (digest). |
| 527 | |
Reuben Dowle | 1908fd9 | 2020-04-16 17:36:52 +1200 | [diff] [blame] | 528 | config SHA512 |
| 529 | bool "Enable SHA512 support" |
Manorit Chawdhry | a58132a | 2023-07-14 11:22:39 +0530 | [diff] [blame] | 530 | default y if TI_SECURE_DEVICE && FIT_SIGNATURE |
Reuben Dowle | 1908fd9 | 2020-04-16 17:36:52 +1200 | [diff] [blame] | 531 | help |
| 532 | This option enables support of hashing using SHA512 algorithm. |
| 533 | The hash is calculated in software. |
| 534 | The SHA512 algorithm produces a 512-bit (64-byte) hash value |
| 535 | (digest). |
| 536 | |
| 537 | config SHA384 |
| 538 | bool "Enable SHA384 support" |
Alexandru Gagniuc | 5df5d69 | 2021-09-02 19:54:18 -0500 | [diff] [blame] | 539 | select SHA512 |
Reuben Dowle | 1908fd9 | 2020-04-16 17:36:52 +1200 | [diff] [blame] | 540 | help |
| 541 | This option enables support of hashing using SHA384 algorithm. |
Alexandru Gagniuc | 5df5d69 | 2021-09-02 19:54:18 -0500 | [diff] [blame] | 542 | The hash is calculated in software. This is also selects SHA512, |
| 543 | because these implementations share the bulk of the code.. |
Reuben Dowle | 1908fd9 | 2020-04-16 17:36:52 +1200 | [diff] [blame] | 544 | The SHA384 algorithm produces a 384-bit (48-byte) hash value |
| 545 | (digest). |
| 546 | |
gaurav rana | ef20159 | 2015-02-20 12:51:46 +0530 | [diff] [blame] | 547 | config SHA_HW_ACCEL |
Heinrich Schuchardt | d42f81f | 2021-05-14 07:08:27 +0200 | [diff] [blame] | 548 | bool "Enable hardware acceleration for SHA hash functions" |
gaurav rana | ef20159 | 2015-02-20 12:51:46 +0530 | [diff] [blame] | 549 | help |
Heinrich Schuchardt | d42f81f | 2021-05-14 07:08:27 +0200 | [diff] [blame] | 550 | This option enables hardware acceleration for the SHA1 and SHA256 |
| 551 | hashing algorithms. This affects the 'hash' command and also the |
| 552 | hash_lookup_algo() function. |
| 553 | |
Simon Glass | f7b37c2 | 2021-09-25 19:43:17 -0600 | [diff] [blame] | 554 | if SPL |
| 555 | |
Oleksandr Suvorov | 15a23ca | 2023-08-03 19:05:40 +0300 | [diff] [blame] | 556 | config SPL_CRC32 |
| 557 | bool "Enable CRC32 support in SPL" |
| 558 | default y if SPL_LEGACY_IMAGE_SUPPORT || SPL_EFI_PARTITION |
| 559 | default y if SPL_ENV_SUPPORT || TPL_BLOBLIST |
| 560 | help |
| 561 | This option enables support of hashing using CRC32 algorithm. |
| 562 | The CRC32 algorithm produces 32-bit checksum value. For FIT |
| 563 | images, this is the least secure type of checksum, suitable for |
| 564 | detected accidental image corruption. For secure applications you |
| 565 | should consider SHA256 or SHA384. |
| 566 | |
Simon Glass | f7b37c2 | 2021-09-25 19:43:17 -0600 | [diff] [blame] | 567 | config SPL_SHA1 |
| 568 | bool "Enable SHA1 support in SPL" |
| 569 | default y if SHA1 |
| 570 | help |
| 571 | This option enables support of hashing using SHA1 algorithm. |
| 572 | The hash is calculated in software. |
| 573 | The SHA1 algorithm produces a 160-bit (20-byte) hash value |
| 574 | (digest). |
| 575 | |
| 576 | config SPL_SHA256 |
| 577 | bool "Enable SHA256 support in SPL" |
| 578 | default y if SHA256 |
| 579 | help |
| 580 | This option enables support of hashing using SHA256 algorithm. |
| 581 | The hash is calculated in software. |
| 582 | The SHA256 algorithm produces a 256-bit (32-byte) hash value |
| 583 | (digest). |
| 584 | |
| 585 | config SPL_SHA512 |
| 586 | bool "Enable SHA512 support in SPL" |
| 587 | default y if SHA512 |
| 588 | help |
| 589 | This option enables support of hashing using SHA512 algorithm. |
| 590 | The hash is calculated in software. |
| 591 | The SHA512 algorithm produces a 512-bit (64-byte) hash value |
| 592 | (digest). |
| 593 | |
| 594 | config SPL_SHA384 |
| 595 | bool "Enable SHA384 support in SPL" |
| 596 | default y if SHA384 |
| 597 | select SPL_SHA512 |
| 598 | help |
| 599 | This option enables support of hashing using SHA384 algorithm. |
| 600 | The hash is calculated in software. This is also selects SHA512, |
| 601 | because these implementations share the bulk of the code.. |
| 602 | The SHA384 algorithm produces a 384-bit (48-byte) hash value |
| 603 | (digest). |
| 604 | |
Simon Glass | 383dd57 | 2021-09-25 19:43:18 -0600 | [diff] [blame] | 605 | config SPL_SHA_HW_ACCEL |
| 606 | bool "Enable hardware acceleration for SHA hash functions" |
| 607 | default y if SHA_HW_ACCEL |
| 608 | help |
| 609 | This option enables hardware acceleration for the SHA1 and SHA256 |
| 610 | hashing algorithms. This affects the 'hash' command and also the |
| 611 | hash_lookup_algo() function. |
| 612 | |
| 613 | config SPL_SHA_PROG_HW_ACCEL |
| 614 | bool "Enable Progressive hashing support using hardware in SPL" |
| 615 | depends on SHA_PROG_HW_ACCEL |
| 616 | default y |
| 617 | help |
| 618 | This option enables hardware-acceleration for SHA progressive |
| 619 | hashing. |
| 620 | Data can be streamed in a block at a time and the hashing is |
| 621 | performed in hardware. |
| 622 | |
Simon Glass | f7b37c2 | 2021-09-25 19:43:17 -0600 | [diff] [blame] | 623 | endif |
| 624 | |
Simon Glass | 540883b | 2023-02-22 09:34:01 -0700 | [diff] [blame] | 625 | config VPL_SHA1 |
| 626 | bool "Enable SHA1 support in VPL" |
| 627 | depends on VPL |
| 628 | default y if SHA1 |
| 629 | help |
| 630 | This option enables support of hashing using SHA1 algorithm. |
| 631 | The hash is calculated in software. |
| 632 | The SHA1 algorithm produces a 160-bit (20-byte) hash value |
| 633 | (digest). |
| 634 | |
| 635 | config VPL_SHA256 |
| 636 | bool "Enable SHA256 support in VPL" |
| 637 | depends on VPL |
| 638 | default y if SHA256 |
| 639 | help |
| 640 | This option enables support of hashing using SHA256 algorithm. |
| 641 | The hash is calculated in software. |
| 642 | The SHA256 algorithm produces a 256-bit (32-byte) hash value |
| 643 | (digest). |
| 644 | |
Heinrich Schuchardt | d42f81f | 2021-05-14 07:08:27 +0200 | [diff] [blame] | 645 | if SHA_HW_ACCEL |
| 646 | |
| 647 | config SHA512_HW_ACCEL |
| 648 | bool "Enable hardware acceleration for SHA512" |
Alexandru Gagniuc | 5df5d69 | 2021-09-02 19:54:18 -0500 | [diff] [blame] | 649 | depends on SHA512 |
Heinrich Schuchardt | d42f81f | 2021-05-14 07:08:27 +0200 | [diff] [blame] | 650 | help |
| 651 | This option enables hardware acceleration for the SHA384 and SHA512 |
| 652 | hashing algorithms. This affects the 'hash' command and also the |
| 653 | hash_lookup_algo() function. |
gaurav rana | ef20159 | 2015-02-20 12:51:46 +0530 | [diff] [blame] | 654 | |
| 655 | config SHA_PROG_HW_ACCEL |
| 656 | bool "Enable Progressive hashing support using hardware" |
gaurav rana | ef20159 | 2015-02-20 12:51:46 +0530 | [diff] [blame] | 657 | help |
Joel Stanley | 92efc1f | 2021-02-17 13:50:42 +1030 | [diff] [blame] | 658 | This option enables hardware-acceleration for SHA progressive |
| 659 | hashing. |
| 660 | Data can be streamed in a block at a time and the hashing is |
| 661 | performed in hardware. |
Andre Przywara | f0fa113 | 2017-03-15 01:19:05 +0000 | [diff] [blame] | 662 | |
Heinrich Schuchardt | d42f81f | 2021-05-14 07:08:27 +0200 | [diff] [blame] | 663 | endif |
| 664 | |
Andre Przywara | f0fa113 | 2017-03-15 01:19:05 +0000 | [diff] [blame] | 665 | config MD5 |
Simon Glass | d33d0db | 2020-05-06 08:03:56 -0600 | [diff] [blame] | 666 | bool "Support MD5 algorithm" |
| 667 | help |
| 668 | This option enables MD5 support. MD5 is an algorithm designed |
| 669 | in 1991 that produces a 16-byte digest (or checksum) from its input |
| 670 | data. It has a number of vulnerabilities which preclude its use in |
| 671 | security applications, but it can be useful for providing a quick |
| 672 | checksum of a block of data. |
| 673 | |
| 674 | config SPL_MD5 |
| 675 | bool "Support MD5 algorithm in SPL" |
Tom Rini | 0a83cc2 | 2022-06-10 23:03:09 -0400 | [diff] [blame] | 676 | depends on SPL |
Simon Glass | d33d0db | 2020-05-06 08:03:56 -0600 | [diff] [blame] | 677 | help |
| 678 | This option enables MD5 support in SPL. MD5 is an algorithm designed |
| 679 | in 1991 that produces a 16-byte digest (or checksum) from its input |
| 680 | data. It has a number of vulnerabilities which preclude its use in |
| 681 | security applications, but it can be useful for providing a quick |
| 682 | checksum of a block of data. |
Andre Przywara | f0fa113 | 2017-03-15 01:19:05 +0000 | [diff] [blame] | 683 | |
Simon Glass | 2b95b49 | 2023-01-07 14:57:20 -0700 | [diff] [blame] | 684 | config CRC8 |
| 685 | def_bool y |
| 686 | help |
| 687 | Enables CRC8 support in U-Boot. This is normally required. CRC8 is |
| 688 | a simple and fast checksumming algorithm which does a bytewise |
| 689 | checksum with feedback to produce an 8-bit result. The code is small |
| 690 | and it does not require a lookup table (unlike CRC32). |
| 691 | |
| 692 | config SPL_CRC8 |
| 693 | bool "Support CRC8 in SPL" |
| 694 | depends on SPL |
| 695 | help |
| 696 | Enables CRC8 support in SPL. This is not normally required. CRC8 is |
| 697 | a simple and fast checksumming algorithm which does a bytewise |
| 698 | checksum with feedback to produce an 8-bit result. The code is small |
| 699 | and it does not require a lookup table (unlike CRC32). |
| 700 | |
Sean Anderson | 01349c1 | 2023-10-14 16:47:49 -0400 | [diff] [blame] | 701 | config SPL_CRC16 |
| 702 | bool "Support CRC16 in SPL" |
| 703 | depends on SPL |
| 704 | help |
| 705 | Enables CRC16 support in SPL. This is not normally required. |
| 706 | |
Simon Glass | 577226c | 2021-09-25 19:43:24 -0600 | [diff] [blame] | 707 | config CRC32 |
| 708 | def_bool y |
| 709 | help |
| 710 | Enables CRC32 support in U-Boot. This is normally required. |
| 711 | |
Marek Behún | cdccc03 | 2017-09-03 17:00:23 +0200 | [diff] [blame] | 712 | config CRC32C |
| 713 | bool |
| 714 | |
Marek Behún | b139a7f | 2019-04-29 22:40:43 +0200 | [diff] [blame] | 715 | config XXHASH |
| 716 | bool |
| 717 | |
gaurav rana | ef20159 | 2015-02-20 12:51:46 +0530 | [diff] [blame] | 718 | endmenu |
| 719 | |
Julius Werner | f41a3ca | 2015-10-06 20:03:53 -0700 | [diff] [blame] | 720 | menu "Compression Support" |
| 721 | |
| 722 | config LZ4 |
| 723 | bool "Enable LZ4 decompression support" |
| 724 | help |
| 725 | If this option is set, support for LZ4 compressed images |
| 726 | is included. The LZ4 algorithm can run in-place as long as the |
| 727 | compressed image is loaded to the end of the output buffer, and |
| 728 | trades lower compression ratios for much faster decompression. |
Patrick Delaunay | cd831af | 2021-03-10 10:16:28 +0100 | [diff] [blame] | 729 | |
Julius Werner | f41a3ca | 2015-10-06 20:03:53 -0700 | [diff] [blame] | 730 | NOTE: This implements the release version of the LZ4 frame |
| 731 | format as generated by default by the 'lz4' command line tool. |
| 732 | This is not the same as the outdated, less efficient legacy |
| 733 | frame format currently (2015) implemented in the Linux kernel |
| 734 | (generated by 'lz4 -l'). The two formats are incompatible. |
| 735 | |
Simon Glass | 264aa5f | 2017-05-17 03:25:42 -0600 | [diff] [blame] | 736 | config LZMA |
| 737 | bool "Enable LZMA decompression support" |
| 738 | help |
| 739 | This enables support for LZMA (Lempel-Ziv-Markov chain algorithm), |
| 740 | a dictionary compression algorithm that provides a high compression |
| 741 | ratio and fairly fast decompression speed. See also |
| 742 | CONFIG_CMD_LZMADEC which provides a decode command. |
| 743 | |
Boris Brezillon | aa57d0f | 2017-02-27 18:22:06 +0100 | [diff] [blame] | 744 | config LZO |
Tom Rini | c20bb73 | 2017-07-22 18:36:16 -0400 | [diff] [blame] | 745 | bool "Enable LZO decompression support" |
| 746 | help |
Oleksandr Suvorov | 30a4c31 | 2021-09-01 16:05:08 +0300 | [diff] [blame] | 747 | This enables support for the LZO compression algorithm. |
York Sun | a6945fe | 2017-08-15 11:14:43 -0700 | [diff] [blame] | 748 | |
Marek Vasut | aeaa29d | 2019-03-08 16:06:55 +0100 | [diff] [blame] | 749 | config GZIP |
Heiko Schocher | b93cc60 | 2019-04-29 08:59:38 +0200 | [diff] [blame] | 750 | bool "Enable gzip decompression support" |
Marek Vasut | aeaa29d | 2019-03-08 16:06:55 +0100 | [diff] [blame] | 751 | select ZLIB |
| 752 | default y |
| 753 | help |
| 754 | This enables support for GZIP compression algorithm. |
| 755 | |
Joao Marcos Costa | ae8abb1 | 2020-07-30 15:33:49 +0200 | [diff] [blame] | 756 | config ZLIB_UNCOMPRESS |
| 757 | bool "Enables zlib's uncompress() functionality" |
| 758 | help |
| 759 | This enables an extra zlib functionality: the uncompress() function, |
| 760 | which decompresses data from a buffer into another, knowing their |
| 761 | sizes. Unlike gunzip(), there is no header parsing. |
| 762 | |
Michael Walle | 3a6e351 | 2020-05-22 14:07:36 +0200 | [diff] [blame] | 763 | config GZIP_COMPRESSED |
| 764 | bool |
| 765 | select ZLIB |
| 766 | |
Atish Patra | 1fa7962 | 2020-03-05 16:24:21 -0800 | [diff] [blame] | 767 | config BZIP2 |
| 768 | bool "Enable bzip2 decompression support" |
| 769 | help |
| 770 | This enables support for BZIP2 compression algorithm. |
| 771 | |
Marek Vasut | aeaa29d | 2019-03-08 16:06:55 +0100 | [diff] [blame] | 772 | config ZLIB |
| 773 | bool |
| 774 | default y |
| 775 | help |
| 776 | This enables ZLIB compression lib. |
| 777 | |
Marek Behún | e87e200 | 2019-04-29 22:40:44 +0200 | [diff] [blame] | 778 | config ZSTD |
| 779 | bool "Enable Zstandard decompression support" |
| 780 | select XXHASH |
| 781 | help |
| 782 | This enables Zstandard decompression library. |
| 783 | |
Brandon Maier | dbe88da | 2023-01-12 10:27:45 -0600 | [diff] [blame] | 784 | if ZSTD |
| 785 | |
| 786 | config ZSTD_LIB_MINIFY |
| 787 | bool "Minify Zstandard code" |
| 788 | default y |
| 789 | help |
| 790 | This disables various optional components and changes the |
| 791 | compilation flags to prioritize space-saving. |
| 792 | |
| 793 | For detailed info, see zstd's lib/README.md |
| 794 | |
| 795 | https://github.com/facebook/zstd/blob/dev/lib/README.md |
| 796 | |
| 797 | endif |
| 798 | |
Simon Glass | 1af8b15 | 2023-02-22 09:33:54 -0700 | [diff] [blame] | 799 | config SPL_BZIP2 |
| 800 | bool "Enable bzip2 decompression support for SPL build" |
| 801 | depends on SPL |
| 802 | help |
| 803 | This enables support for bzip2 compression algorithm for SPL boot. |
| 804 | |
Simon Glass | e107bcd | 2018-11-06 15:21:30 -0700 | [diff] [blame] | 805 | config SPL_LZ4 |
| 806 | bool "Enable LZ4 decompression support in SPL" |
Tom Rini | 0a83cc2 | 2022-06-10 23:03:09 -0400 | [diff] [blame] | 807 | depends on SPL |
Simon Glass | e107bcd | 2018-11-06 15:21:30 -0700 | [diff] [blame] | 808 | help |
Marcin Juszkiewicz | a360c2c | 2020-05-26 19:07:15 +0200 | [diff] [blame] | 809 | This enables support for the LZ4 decompression algorithm in SPL. LZ4 |
Simon Glass | e107bcd | 2018-11-06 15:21:30 -0700 | [diff] [blame] | 810 | is a lossless data compression algorithm that is focused on |
| 811 | fast compression and decompression speed. It belongs to the LZ77 |
| 812 | family of byte-oriented compression schemes. |
| 813 | |
developer | 6a4e1d3 | 2020-04-21 09:28:38 +0200 | [diff] [blame] | 814 | config SPL_LZMA |
| 815 | bool "Enable LZMA decompression support for SPL build" |
Tom Rini | 0a83cc2 | 2022-06-10 23:03:09 -0400 | [diff] [blame] | 816 | depends on SPL |
developer | 6a4e1d3 | 2020-04-21 09:28:38 +0200 | [diff] [blame] | 817 | help |
Marcin Juszkiewicz | a360c2c | 2020-05-26 19:07:15 +0200 | [diff] [blame] | 818 | This enables support for LZMA compression algorithm for SPL boot. |
developer | 6a4e1d3 | 2020-04-21 09:28:38 +0200 | [diff] [blame] | 819 | |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 820 | config VPL_LZMA |
| 821 | bool "Enable LZMA decompression support for VPL build" |
| 822 | default y if LZMA |
| 823 | help |
| 824 | This enables support for LZMA compression algorithm for VPL boot. |
| 825 | |
Jean-Jacques Hiblot | dbde288 | 2017-09-15 12:57:30 +0200 | [diff] [blame] | 826 | config SPL_LZO |
| 827 | bool "Enable LZO decompression support in SPL" |
Tom Rini | 0a83cc2 | 2022-06-10 23:03:09 -0400 | [diff] [blame] | 828 | depends on SPL |
Jean-Jacques Hiblot | dbde288 | 2017-09-15 12:57:30 +0200 | [diff] [blame] | 829 | help |
| 830 | This enables support for LZO compression algorithm in the SPL. |
| 831 | |
York Sun | a6945fe | 2017-08-15 11:14:43 -0700 | [diff] [blame] | 832 | config SPL_GZIP |
| 833 | bool "Enable gzip decompression support for SPL build" |
| 834 | select SPL_ZLIB |
| 835 | help |
Oleksandr Suvorov | 30a4c31 | 2021-09-01 16:05:08 +0300 | [diff] [blame] | 836 | This enables support for the GZIP compression algorithm for SPL boot. |
York Sun | a6945fe | 2017-08-15 11:14:43 -0700 | [diff] [blame] | 837 | |
| 838 | config SPL_ZLIB |
| 839 | bool |
| 840 | help |
| 841 | This enables compression lib for SPL boot. |
| 842 | |
Marek Behún | e87e200 | 2019-04-29 22:40:44 +0200 | [diff] [blame] | 843 | config SPL_ZSTD |
| 844 | bool "Enable Zstandard decompression support in SPL" |
Tom Rini | 0a83cc2 | 2022-06-10 23:03:09 -0400 | [diff] [blame] | 845 | depends on SPL |
Marek Behún | e87e200 | 2019-04-29 22:40:44 +0200 | [diff] [blame] | 846 | select XXHASH |
| 847 | help |
| 848 | This enables Zstandard decompression library in the SPL. |
| 849 | |
Julius Werner | f41a3ca | 2015-10-06 20:03:53 -0700 | [diff] [blame] | 850 | endmenu |
| 851 | |
Przemyslaw Marczak | 3755013 | 2015-04-20 20:07:40 +0200 | [diff] [blame] | 852 | config ERRNO_STR |
| 853 | bool "Enable function for getting errno-related string message" |
| 854 | help |
| 855 | The function errno_str(int errno), returns a pointer to the errno |
| 856 | corresponding text message: |
| 857 | - if errno is null or positive number - a pointer to "Success" message |
| 858 | - if errno is negative - a pointer to errno related message |
| 859 | |
Alexey Brodkin | 2d2fa49 | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 860 | config HEXDUMP |
| 861 | bool "Enable hexdump" |
| 862 | help |
| 863 | This enables functions for printing dumps of binary data. |
| 864 | |
Simon Glass | a37fd4d | 2020-09-12 11:13:35 -0600 | [diff] [blame] | 865 | config SPL_HEXDUMP |
| 866 | bool "Enable hexdump in SPL" |
Heinrich Schuchardt | 11df072 | 2021-07-24 17:35:46 +0200 | [diff] [blame] | 867 | depends on SPL && HEXDUMP |
Simon Glass | a37fd4d | 2020-09-12 11:13:35 -0600 | [diff] [blame] | 868 | help |
| 869 | This enables functions for printing dumps of binary data in |
| 870 | SPL. |
| 871 | |
Sean Anderson | 3b4a6f5 | 2020-10-27 19:55:36 -0400 | [diff] [blame] | 872 | config GETOPT |
| 873 | bool "Enable getopt" |
| 874 | help |
| 875 | This enables functions for parsing command-line options. |
| 876 | |
Simon Glass | a66c541 | 2016-02-22 22:55:42 -0700 | [diff] [blame] | 877 | config OF_LIBFDT |
| 878 | bool "Enable the FDT library" |
| 879 | default y if OF_CONTROL |
| 880 | help |
| 881 | This enables the FDT library (libfdt). It provides functions for |
| 882 | accessing binary device tree images in memory, such as adding and |
Anatolij Gustschin | da707d4 | 2017-08-18 17:58:51 +0200 | [diff] [blame] | 883 | removing nodes and properties, scanning through the tree and finding |
Simon Glass | a66c541 | 2016-02-22 22:55:42 -0700 | [diff] [blame] | 884 | particular compatible nodes. The library operates on a flattened |
| 885 | version of the device tree. |
| 886 | |
Simon Glass | c48044d | 2019-10-27 09:47:40 -0600 | [diff] [blame] | 887 | config OF_LIBFDT_ASSUME_MASK |
| 888 | hex "Mask of conditions to assume for libfdt" |
| 889 | depends on OF_LIBFDT || FIT |
Tom Rini | f18679c | 2023-08-02 11:09:43 -0400 | [diff] [blame] | 890 | default 0x0 |
Simon Glass | c48044d | 2019-10-27 09:47:40 -0600 | [diff] [blame] | 891 | help |
| 892 | Use this to change the assumptions made by libfdt about the |
| 893 | device tree it is working with. A value of 0 means that no assumptions |
| 894 | are made, and libfdt is able to deal with malicious data. A value of |
| 895 | 0xff means all assumptions are made and any invalid data may cause |
| 896 | unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h |
| 897 | |
Maxime Ripard | 9e901ce | 2016-07-05 10:26:44 +0200 | [diff] [blame] | 898 | config OF_LIBFDT_OVERLAY |
| 899 | bool "Enable the FDT library overlay support" |
Tom Rini | c1e49ba | 2018-05-08 08:52:17 -0400 | [diff] [blame] | 900 | depends on OF_LIBFDT |
Praneeth Bajjuri | 7b71a01 | 2018-04-25 16:03:23 -0500 | [diff] [blame] | 901 | default y if ARCH_OMAP2PLUS || ARCH_KEYSTONE |
Maxime Ripard | 9e901ce | 2016-07-05 10:26:44 +0200 | [diff] [blame] | 902 | help |
| 903 | This enables the FDT library (libfdt) overlay support. |
| 904 | |
Tom Rini | d2cd431 | 2022-08-02 07:33:27 -0400 | [diff] [blame] | 905 | config SYS_FDT_PAD |
| 906 | hex "Maximum size of the FDT memory area passeed to the OS" |
| 907 | depends on OF_LIBFDT |
| 908 | default 0x13000 if FMAN_ENET || QE || U_QE |
| 909 | default 0x3000 |
| 910 | help |
| 911 | During OS boot, we allocate a region of memory within the bootmap |
| 912 | for the FDT. This is the size that we will expand the FDT that we |
| 913 | are using will be extended to be, in bytes. |
| 914 | |
Simon Glass | 8b42692 | 2016-02-22 22:55:45 -0700 | [diff] [blame] | 915 | config SPL_OF_LIBFDT |
| 916 | bool "Enable the FDT library for SPL" |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 917 | depends on SPL_LIBGENERIC_SUPPORT |
Simon Glass | 8b42692 | 2016-02-22 22:55:45 -0700 | [diff] [blame] | 918 | default y if SPL_OF_CONTROL |
| 919 | help |
| 920 | This enables the FDT library (libfdt). It provides functions for |
| 921 | accessing binary device tree images in memory, such as adding and |
Anatolij Gustschin | da707d4 | 2017-08-18 17:58:51 +0200 | [diff] [blame] | 922 | removing nodes and properties, scanning through the tree and finding |
Simon Glass | 8b42692 | 2016-02-22 22:55:45 -0700 | [diff] [blame] | 923 | particular compatible nodes. The library operates on a flattened |
| 924 | version of the device tree. |
| 925 | |
Simon Glass | c48044d | 2019-10-27 09:47:40 -0600 | [diff] [blame] | 926 | config SPL_OF_LIBFDT_ASSUME_MASK |
| 927 | hex "Mask of conditions to assume for libfdt" |
Tom Rini | 0a83cc2 | 2022-06-10 23:03:09 -0400 | [diff] [blame] | 928 | depends on SPL_OF_LIBFDT || (FIT && SPL) |
Simon Glass | c48044d | 2019-10-27 09:47:40 -0600 | [diff] [blame] | 929 | default 0xff |
| 930 | help |
| 931 | Use this to change the assumptions made by libfdt in SPL about the |
| 932 | device tree it is working with. A value of 0 means that no assumptions |
| 933 | are made, and libfdt is able to deal with malicious data. A value of |
| 934 | 0xff means all assumptions are made and any invalid data may cause |
| 935 | unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h |
| 936 | |
Simon Glass | ca8ec4b | 2018-10-01 12:22:21 -0600 | [diff] [blame] | 937 | config TPL_OF_LIBFDT |
| 938 | bool "Enable the FDT library for TPL" |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 939 | depends on TPL_LIBGENERIC_SUPPORT |
Simon Glass | ca8ec4b | 2018-10-01 12:22:21 -0600 | [diff] [blame] | 940 | default y if TPL_OF_CONTROL |
| 941 | help |
| 942 | This enables the FDT library (libfdt). It provides functions for |
| 943 | accessing binary device tree images in memory, such as adding and |
| 944 | removing nodes and properties, scanning through the tree and finding |
| 945 | particular compatible nodes. The library operates on a flattened |
| 946 | version of the device tree. |
| 947 | |
Simon Glass | c48044d | 2019-10-27 09:47:40 -0600 | [diff] [blame] | 948 | config TPL_OF_LIBFDT_ASSUME_MASK |
| 949 | hex "Mask of conditions to assume for libfdt" |
Tom Rini | 36a4ca0 | 2022-06-08 08:24:39 -0400 | [diff] [blame] | 950 | depends on TPL_OF_LIBFDT || (FIT && TPL) |
Simon Glass | c48044d | 2019-10-27 09:47:40 -0600 | [diff] [blame] | 951 | default 0xff |
| 952 | help |
| 953 | Use this to change the assumptions made by libfdt in TPL about the |
| 954 | device tree it is working with. A value of 0 means that no assumptions |
| 955 | are made, and libfdt is able to deal with malicious data. A value of |
| 956 | 0xff means all assumptions are made and any invalid data may cause |
| 957 | unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h |
| 958 | |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 959 | config VPL_OF_LIBFDT |
| 960 | bool "Enable the FDT library for VPL" |
Tom Rini | 7fb323b | 2022-06-08 08:24:40 -0400 | [diff] [blame] | 961 | depends on VPL |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 962 | default y if VPL_OF_CONTROL && !VPL_OF_PLATDATA |
| 963 | help |
| 964 | This enables the FDT library (libfdt). It provides functions for |
| 965 | accessing binary device tree images in memory, such as adding and |
| 966 | removing nodes and properties, scanning through the tree and finding |
| 967 | particular compatible nodes. The library operates on a flattened |
| 968 | version of the device tree. |
| 969 | |
| 970 | config VPL_OF_LIBFDT_ASSUME_MASK |
| 971 | hex "Mask of conditions to assume for libfdt" |
Tom Rini | 7fb323b | 2022-06-08 08:24:40 -0400 | [diff] [blame] | 972 | depends on VPL_OF_LIBFDT || (FIT && VPL) |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 973 | default 0xff |
| 974 | help |
| 975 | Use this to change the assumptions made by libfdt in SPL about the |
| 976 | device tree it is working with. A value of 0 means that no assumptions |
| 977 | are made, and libfdt is able to deal with malicious data. A value of |
| 978 | 0xff means all assumptions are made and any invalid data may cause |
| 979 | unsafe execution. See FDT_ASSUME_PERFECT, etc. in libfdt_internal.h |
| 980 | |
Alexander Graf | fb22808 | 2016-08-19 01:23:23 +0200 | [diff] [blame] | 981 | menu "System tables" |
Alexander Graf | 66f96e1 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 982 | depends on (!EFI && !SYS_COREBOOT) || (ARM && EFI_LOADER) |
Alexander Graf | fb22808 | 2016-08-19 01:23:23 +0200 | [diff] [blame] | 983 | |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 984 | config BLOBLIST_TABLES |
| 985 | bool "Put tables in a bloblist" |
Simon Glass | 171c646 | 2021-03-15 18:11:22 +1300 | [diff] [blame] | 986 | depends on X86 && BLOBLIST |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 987 | help |
| 988 | Normally tables are placed at address 0xf0000 and can be up to 64KB |
| 989 | long. With this option, tables are instead placed in the bloblist |
| 990 | with a pointer from 0xf0000. The size can then be larger and the |
| 991 | tables can be placed high in memory. |
| 992 | |
Alexander Graf | fb22808 | 2016-08-19 01:23:23 +0200 | [diff] [blame] | 993 | config GENERATE_SMBIOS_TABLE |
| 994 | bool "Generate an SMBIOS (System Management BIOS) table" |
Simon Glass | 5059dbe | 2023-09-19 21:00:13 -0600 | [diff] [blame] | 995 | depends on SMBIOS |
Alexander Graf | fb22808 | 2016-08-19 01:23:23 +0200 | [diff] [blame] | 996 | default y |
Alexander Graf | fb22808 | 2016-08-19 01:23:23 +0200 | [diff] [blame] | 997 | help |
| 998 | The System Management BIOS (SMBIOS) specification addresses how |
| 999 | motherboard and system vendors present management information about |
| 1000 | their products in a standard format by extending the BIOS interface |
| 1001 | on Intel architecture systems. |
| 1002 | |
| 1003 | Check http://www.dmtf.org/standards/smbios for details. |
| 1004 | |
Tom Rini | d0dca22 | 2023-11-20 15:17:23 -0500 | [diff] [blame] | 1005 | See also SYSINFO_SMBIOS which allows SMBIOS values to be provided in |
Simon Glass | 052a03e | 2020-11-05 06:32:11 -0700 | [diff] [blame] | 1006 | the devicetree. |
| 1007 | |
Simon Glass | e70648e | 2023-09-14 10:55:39 -0600 | [diff] [blame] | 1008 | endmenu |
| 1009 | |
Tero Kristo | cfbe15c | 2021-06-11 11:45:02 +0300 | [diff] [blame] | 1010 | config LIB_RATIONAL |
| 1011 | bool "enable continued fraction calculation routines" |
| 1012 | |
| 1013 | config SPL_LIB_RATIONAL |
| 1014 | bool "enable continued fraction calculation routines for SPL" |
| 1015 | depends on SPL |
| 1016 | |
AKASHI Takahiro | f702526 | 2019-11-13 09:44:53 +0900 | [diff] [blame] | 1017 | config ASN1_COMPILER |
| 1018 | bool |
Philippe Reynes | 2aba944 | 2022-03-28 22:56:54 +0200 | [diff] [blame] | 1019 | help |
| 1020 | ASN.1 (Abstract Syntax Notation One) is a standard interface |
| 1021 | description language for defining data structures that can be |
| 1022 | serialized and deserialized in a cross-platform way. It is |
| 1023 | broadly used in telecommunications and computer networking, |
| 1024 | and especially in cryptography (https://en.wikipedia.org/wiki/ASN.1). |
| 1025 | This option enables the support of the asn1 compiler. |
AKASHI Takahiro | f702526 | 2019-11-13 09:44:53 +0900 | [diff] [blame] | 1026 | |
AKASHI Takahiro | 3a88871 | 2019-11-13 09:44:55 +0900 | [diff] [blame] | 1027 | config ASN1_DECODER |
| 1028 | bool |
| 1029 | help |
Philippe Reynes | 2aba944 | 2022-03-28 22:56:54 +0200 | [diff] [blame] | 1030 | ASN.1 (Abstract Syntax Notation One) is a standard interface |
| 1031 | description language for defining data structures that can be |
| 1032 | serialized and deserialized in a cross-platform way. It is |
| 1033 | broadly used in telecommunications and computer networking, |
| 1034 | and especially in cryptography (https://en.wikipedia.org/wiki/ASN.1). |
| 1035 | This option enables the support of the asn1 decoder. |
AKASHI Takahiro | 3a88871 | 2019-11-13 09:44:55 +0900 | [diff] [blame] | 1036 | |
Philippe Reynes | cf538b5 | 2022-03-28 22:56:56 +0200 | [diff] [blame] | 1037 | config SPL_ASN1_DECODER |
| 1038 | bool |
| 1039 | help |
| 1040 | ASN.1 (Abstract Syntax Notation One) is a standard interface |
| 1041 | description language for defining data structures that can be |
| 1042 | serialized and deserialized in a cross-platform way. It is |
| 1043 | broadly used in telecommunications and computer networking, |
| 1044 | and especially in cryptography (https://en.wikipedia.org/wiki/ASN.1). |
| 1045 | This option enables the support of the asn1 decoder in the SPL. |
| 1046 | |
AKASHI Takahiro | 5492364 | 2019-11-13 09:44:57 +0900 | [diff] [blame] | 1047 | config OID_REGISTRY |
| 1048 | bool |
| 1049 | help |
Philippe Reynes | e35c3a2 | 2022-03-28 22:56:55 +0200 | [diff] [blame] | 1050 | In computing, object identifiers or OIDs are an identifier mechanism |
| 1051 | standardized by the International Telecommunication Union (ITU) and |
| 1052 | ISO/IEC for naming any object, concept, or "thing" with a globally |
| 1053 | unambiguous persistent name (https://en.wikipedia.org/wiki/Object_identifier). |
AKASHI Takahiro | 5492364 | 2019-11-13 09:44:57 +0900 | [diff] [blame] | 1054 | Enable fast lookup object identifier registry. |
| 1055 | |
Philippe Reynes | cf538b5 | 2022-03-28 22:56:56 +0200 | [diff] [blame] | 1056 | config SPL_OID_REGISTRY |
| 1057 | bool |
| 1058 | help |
| 1059 | In computing, object identifiers or OIDs are an identifier mechanism |
| 1060 | standardized by the International Telecommunication Union (ITU) and |
| 1061 | ISO/IEC for naming any object, concept, or "thing" with a globally |
| 1062 | unambiguous persistent name (https://en.wikipedia.org/wiki/Object_identifier). |
| 1063 | Enable fast lookup object identifier registry in the SPL. |
| 1064 | |
Simon Glass | 5059dbe | 2023-09-19 21:00:13 -0600 | [diff] [blame] | 1065 | config SMBIOS |
| 1066 | bool "SMBIOS support" |
| 1067 | depends on X86 || EFI_LOADER |
| 1068 | default y |
Simon Glass | aadec12 | 2023-09-20 07:29:51 -0600 | [diff] [blame] | 1069 | select LAST_STAGE_INIT |
Simon Glass | 5059dbe | 2023-09-19 21:00:13 -0600 | [diff] [blame] | 1070 | help |
| 1071 | Indicates that this platform can support System Management BIOS |
| 1072 | (SMBIOS) tables. These provide various pieces of information about |
| 1073 | the board, such as the manufacturer and the model name. |
| 1074 | |
| 1075 | See GENERATE_SMBIOS_TABLE which controls whether U-Boot actually |
| 1076 | creates these tables, rather than them coming from a previous firmware |
| 1077 | stage. |
| 1078 | |
Christian Gmeiner | 1985998 | 2020-11-03 15:34:51 +0100 | [diff] [blame] | 1079 | config SMBIOS_PARSER |
| 1080 | bool "SMBIOS parser" |
| 1081 | help |
| 1082 | A simple parser for SMBIOS data. |
| 1083 | |
Michal Simek | dd5000ef | 2024-04-16 08:55:16 +0200 | [diff] [blame] | 1084 | source "lib/efi/Kconfig" |
| 1085 | source "lib/efi_loader/Kconfig" |
| 1086 | source "lib/optee/Kconfig" |
Simon Glass | 9539e69 | 2015-07-31 09:31:36 -0600 | [diff] [blame] | 1087 | |
Thierry Reding | 52c7f1f3 | 2019-03-21 19:10:04 +0100 | [diff] [blame] | 1088 | config TEST_FDTDEC |
| 1089 | bool "enable fdtdec test" |
| 1090 | depends on OF_LIBFDT |
| 1091 | |
AKASHI Takahiro | 51ba522 | 2019-11-13 09:44:49 +0900 | [diff] [blame] | 1092 | config LIB_DATE |
| 1093 | bool |
| 1094 | |
Keerthy | 76f361a | 2020-02-12 13:55:03 +0530 | [diff] [blame] | 1095 | config LIB_ELF |
| 1096 | bool |
| 1097 | help |
Patrick Delaunay | fb67df8 | 2021-01-04 15:33:28 +0100 | [diff] [blame] | 1098 | Support basic elf loading/validating functions. |
| 1099 | This supports for 32 bit and 64 bit versions. |
Keerthy | 76f361a | 2020-02-12 13:55:03 +0530 | [diff] [blame] | 1100 | |
Patrick Delaunay | d62063d | 2021-03-10 10:16:25 +0100 | [diff] [blame] | 1101 | config LMB |
| 1102 | bool "Enable the logical memory blocks library (lmb)" |
Tom Rini | 5332012 | 2022-04-06 09:21:25 -0400 | [diff] [blame] | 1103 | default y if ARC || ARM || M68K || MICROBLAZE || MIPS || \ |
Patrick Delaunay | d62063d | 2021-03-10 10:16:25 +0100 | [diff] [blame] | 1104 | NIOS2 || PPC || RISCV || SANDBOX || SH || X86 || XTENSA |
| 1105 | help |
| 1106 | Support the library logical memory blocks. |
| 1107 | |
Patrick Delaunay | 71cc9c5 | 2021-03-10 10:16:31 +0100 | [diff] [blame] | 1108 | config LMB_USE_MAX_REGIONS |
Heinrich Schuchardt | c4bc918 | 2021-11-14 09:38:53 +0100 | [diff] [blame] | 1109 | bool "Use a common number of memory and reserved regions in lmb lib" |
Tom Rini | a91fe44 | 2023-02-08 10:18:26 -0500 | [diff] [blame] | 1110 | default y |
Patrick Delaunay | 71cc9c5 | 2021-03-10 10:16:31 +0100 | [diff] [blame] | 1111 | help |
| 1112 | Define the number of supported memory regions in the library logical |
| 1113 | memory blocks. |
| 1114 | This feature allow to reduce the lmb library size by using compiler |
| 1115 | optimization when LMB_MEMORY_REGIONS == LMB_RESERVED_REGIONS. |
Patrick Delaunay | cd831af | 2021-03-10 10:16:28 +0100 | [diff] [blame] | 1116 | |
| 1117 | config LMB_MAX_REGIONS |
| 1118 | int "Number of memory and reserved regions in lmb lib" |
Patrick Delaunay | 479de71 | 2023-03-22 19:12:25 +0100 | [diff] [blame] | 1119 | depends on LMB_USE_MAX_REGIONS |
Sjoerd Simons | 826a994 | 2023-01-19 09:38:17 +0100 | [diff] [blame] | 1120 | default 16 |
Patrick Delaunay | cd831af | 2021-03-10 10:16:28 +0100 | [diff] [blame] | 1121 | help |
| 1122 | Define the number of supported regions, memory and reserved, in the |
| 1123 | library logical memory blocks. |
Patrick Delaunay | 71cc9c5 | 2021-03-10 10:16:31 +0100 | [diff] [blame] | 1124 | |
| 1125 | config LMB_MEMORY_REGIONS |
| 1126 | int "Number of memory regions in lmb lib" |
Patrick Delaunay | 479de71 | 2023-03-22 19:12:25 +0100 | [diff] [blame] | 1127 | depends on !LMB_USE_MAX_REGIONS |
Patrick Delaunay | 71cc9c5 | 2021-03-10 10:16:31 +0100 | [diff] [blame] | 1128 | default 8 |
| 1129 | help |
| 1130 | Define the number of supported memory regions in the library logical |
| 1131 | memory blocks. |
| 1132 | The minimal value is CONFIG_NR_DRAM_BANKS. |
| 1133 | |
| 1134 | config LMB_RESERVED_REGIONS |
| 1135 | int "Number of reserved regions in lmb lib" |
Patrick Delaunay | 479de71 | 2023-03-22 19:12:25 +0100 | [diff] [blame] | 1136 | depends on !LMB_USE_MAX_REGIONS |
Patrick Delaunay | 71cc9c5 | 2021-03-10 10:16:31 +0100 | [diff] [blame] | 1137 | default 8 |
| 1138 | help |
| 1139 | Define the number of supported reserved regions in the library logical |
| 1140 | memory blocks. |
| 1141 | |
Simon Glass | 42d97e5 | 2022-12-21 16:08:28 -0700 | [diff] [blame] | 1142 | config PHANDLE_CHECK_SEQ |
| 1143 | bool "Enable phandle check while getting sequence number" |
| 1144 | help |
| 1145 | When there are multiple device tree nodes with same name, |
| 1146 | enable this config option to distinguish them using |
| 1147 | phandles in fdtdec_get_alias_seq() function. |
| 1148 | |
Eugen Hristev | db6bbcb | 2022-01-04 18:20:19 +0200 | [diff] [blame] | 1149 | endmenu |
Sughosh Ganu | 1cadae2 | 2022-10-21 18:16:03 +0530 | [diff] [blame] | 1150 | |
Michal Simek | dd5000ef | 2024-04-16 08:55:16 +0200 | [diff] [blame] | 1151 | source "lib/fwu_updates/Kconfig" |