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