Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
Hiago De Franco | 9f82441 | 2024-08-19 13:24:49 -0300 | [diff] [blame] | 3 | # see the file Documentation/kbuild/kconfig-language.rst in the |
Robert P. J. Day | 2f845be | 2016-04-16 05:53:07 -0400 | [diff] [blame] | 4 | # Linux kernel source tree. |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 5 | # |
Tom Rini | 40f1170 | 2020-03-11 18:11:17 -0400 | [diff] [blame] | 6 | mainmenu "U-Boot $(UBOOTVERSION) Configuration" |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 7 | |
Tom Rini | 9998594 | 2020-05-18 14:48:00 -0400 | [diff] [blame] | 8 | comment "Compiler: $(CC_VERSION_TEXT)" |
| 9 | |
Tom Rini | 8f1be32 | 2020-05-14 08:30:01 -0400 | [diff] [blame] | 10 | source "scripts/Kconfig.include" |
| 11 | |
Simon Glass | 157c395 | 2015-02-24 22:26:19 +0900 | [diff] [blame] | 12 | # Allow defaults in arch-specific code to override any given here |
| 13 | source "arch/Kconfig" |
| 14 | |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 15 | menu "General setup" |
| 16 | |
Heinrich Schuchardt | 556f86d | 2017-10-19 23:49:19 +0200 | [diff] [blame] | 17 | config BROKEN |
| 18 | bool |
| 19 | help |
| 20 | This option cannot be enabled. It is used as dependency |
| 21 | for broken and incomplete features. |
| 22 | |
Tom Rini | e9518cf | 2019-05-29 17:01:29 -0400 | [diff] [blame] | 23 | config DEPRECATED |
| 24 | bool |
| 25 | help |
| 26 | This option cannot be enabled. It it used as a dependency for |
| 27 | code that relies on deprecated features that will be removed and |
| 28 | the conversion deadline has passed. |
| 29 | |
Paul Barker | b786b17 | 2025-02-28 10:04:33 +0000 | [diff] [blame] | 30 | config WERROR |
| 31 | bool "Compile U-Boot with warnings as errors" |
| 32 | help |
| 33 | A U-Boot build should not cause any compiler warnings, and this |
| 34 | enables the '-Werror' flag to enforce that rule. |
| 35 | |
| 36 | However, if you have a new (or very old) compiler or linker with odd |
| 37 | and unusual warnings, or you have some architecture with problems, |
| 38 | you may need to disable this config option in order to |
| 39 | successfully build U-Boot. |
| 40 | |
Masahiro Yamada | 6ea06e6 | 2014-08-22 19:42:27 +0900 | [diff] [blame] | 41 | config LOCALVERSION |
| 42 | string "Local version - append to U-Boot release" |
Masahiro Yamada | 6ea06e6 | 2014-08-22 19:42:27 +0900 | [diff] [blame] | 43 | help |
| 44 | Append an extra string to the end of your U-Boot version. |
Robert P. J. Day | 2f845be | 2016-04-16 05:53:07 -0400 | [diff] [blame] | 45 | This will show up in your boot log, for example. |
Masahiro Yamada | 6ea06e6 | 2014-08-22 19:42:27 +0900 | [diff] [blame] | 46 | The string you set here will be appended after the contents of |
| 47 | any files with a filename matching localversion* in your |
| 48 | object and source tree, in that order. Your total string can |
| 49 | be a maximum of 64 characters. |
| 50 | |
| 51 | config LOCALVERSION_AUTO |
| 52 | bool "Automatically append version information to the version string" |
Masahiro Yamada | 6ea06e6 | 2014-08-22 19:42:27 +0900 | [diff] [blame] | 53 | default y |
| 54 | help |
| 55 | This will try to automatically determine if the current tree is a |
Robert P. J. Day | 2f845be | 2016-04-16 05:53:07 -0400 | [diff] [blame] | 56 | release tree by looking for Git tags that belong to the current |
Masahiro Yamada | 6ea06e6 | 2014-08-22 19:42:27 +0900 | [diff] [blame] | 57 | top of tree revision. |
| 58 | |
| 59 | A string of the format -gxxxxxxxx will be added to the localversion |
Robert P. J. Day | 2f845be | 2016-04-16 05:53:07 -0400 | [diff] [blame] | 60 | if a Git-based tree is found. The string generated by this will be |
Masahiro Yamada | 6ea06e6 | 2014-08-22 19:42:27 +0900 | [diff] [blame] | 61 | appended after any matching localversion* files, and after the value |
| 62 | set in CONFIG_LOCALVERSION. |
| 63 | |
| 64 | (The actual string used here is the first eight characters produced |
| 65 | by running the command: |
| 66 | |
| 67 | $ git rev-parse --verify HEAD |
| 68 | |
| 69 | which is done within the script "scripts/setlocalversion".) |
| 70 | |
Tom Rini | 5080063 | 2021-06-17 18:07:25 -0400 | [diff] [blame] | 71 | config CC_IS_GCC |
| 72 | def_bool $(success,$(CC) --version | head -n 1 | grep -q gcc) |
| 73 | |
| 74 | config GCC_VERSION |
| 75 | int |
| 76 | default $(shell,$(srctree)/scripts/gcc-version.sh -p $(CC) | sed 's/^0*//') if CC_IS_GCC |
| 77 | default 0 |
| 78 | |
| 79 | config CC_IS_CLANG |
| 80 | def_bool $(success,$(CC) --version | head -n 1 | grep -q clang) |
| 81 | |
| 82 | config CLANG_VERSION |
| 83 | int |
| 84 | default $(shell,$(srctree)/scripts/clang-version.sh $(CC)) |
| 85 | |
Sean Anderson | 9964cae | 2022-02-22 12:19:24 -0500 | [diff] [blame] | 86 | choice |
| 87 | prompt "Optimization level" |
| 88 | default CC_OPTIMIZE_FOR_SIZE |
| 89 | |
Masahiro Yamada | 8240a4b | 2014-08-22 19:42:29 +0900 | [diff] [blame] | 90 | config CC_OPTIMIZE_FOR_SIZE |
| 91 | bool "Optimize for size" |
Masahiro Yamada | 8240a4b | 2014-08-22 19:42:29 +0900 | [diff] [blame] | 92 | help |
Sean Anderson | 9964cae | 2022-02-22 12:19:24 -0500 | [diff] [blame] | 93 | Enabling this option will pass "-Os" to gcc, resulting in a smaller |
| 94 | U-Boot image. |
Masahiro Yamada | 8240a4b | 2014-08-22 19:42:29 +0900 | [diff] [blame] | 95 | |
| 96 | This option is enabled by default for U-Boot. |
| 97 | |
Sean Anderson | 9964cae | 2022-02-22 12:19:24 -0500 | [diff] [blame] | 98 | config CC_OPTIMIZE_FOR_SPEED |
| 99 | bool "Optimize for speed" |
| 100 | help |
| 101 | Enabling this option will pass "-O2" to gcc, resulting in a faster |
| 102 | U-Boot image. |
| 103 | |
Sean Anderson | c73952c | 2022-02-22 12:19:25 -0500 | [diff] [blame] | 104 | config CC_OPTIMIZE_FOR_DEBUG |
| 105 | bool "Optimize for debugging" |
| 106 | help |
| 107 | Enabling this option will pass "-Og" to gcc, enabling optimizations |
| 108 | which don't interfere with debugging. |
| 109 | |
Sean Anderson | 9964cae | 2022-02-22 12:19:24 -0500 | [diff] [blame] | 110 | endchoice |
| 111 | |
Tom Rini | 5cbb29e | 2020-05-14 08:30:07 -0400 | [diff] [blame] | 112 | config OPTIMIZE_INLINING |
Tom Rini | ea55ba0 | 2020-05-14 08:30:08 -0400 | [diff] [blame] | 113 | bool "Allow compiler to uninline functions marked 'inline' in full U-Boot" |
Tom Rini | ea55ba0 | 2020-05-14 08:30:08 -0400 | [diff] [blame] | 114 | help |
| 115 | This option determines if U-Boot forces gcc to inline the functions |
| 116 | developers have marked 'inline'. Doing so takes away freedom from gcc to |
| 117 | do what it thinks is best, which is desirable in some cases for size |
| 118 | reasons. |
| 119 | |
| 120 | config SPL_OPTIMIZE_INLINING |
| 121 | bool "Allow compiler to uninline functions marked 'inline' in SPL" |
| 122 | depends on SPL |
Tom Rini | ea55ba0 | 2020-05-14 08:30:08 -0400 | [diff] [blame] | 123 | help |
| 124 | This option determines if U-Boot forces gcc to inline the functions |
| 125 | developers have marked 'inline'. Doing so takes away freedom from gcc to |
| 126 | do what it thinks is best, which is desirable in some cases for size |
| 127 | reasons. |
| 128 | |
Marek BehĂșn | d72a3b7 | 2021-05-20 13:24:03 +0200 | [diff] [blame] | 129 | config ARCH_SUPPORTS_LTO |
| 130 | bool |
| 131 | |
| 132 | config LTO |
| 133 | bool "Enable Link Time Optimizations" |
| 134 | depends on ARCH_SUPPORTS_LTO |
Marek BehĂșn | d72a3b7 | 2021-05-20 13:24:03 +0200 | [diff] [blame] | 135 | help |
| 136 | This option enables Link Time Optimization (LTO), a mechanism which |
| 137 | allows the compiler to optimize between different compilation units. |
| 138 | |
| 139 | This can optimize away dead code paths, resulting in smaller binary |
| 140 | size (if CC_OPTIMIZE_FOR_SIZE is enabled). |
| 141 | |
| 142 | This option is not available for every architecture and may |
| 143 | introduce bugs. |
| 144 | |
| 145 | Currently, when compiling with GCC, due to a weird bug regarding |
| 146 | jobserver, the final linking will not respect make's --jobs argument. |
| 147 | Instead all available processors will be used (as reported by the |
| 148 | nproc command). |
| 149 | |
| 150 | If unsure, say n. |
| 151 | |
Tom Rini | ea55ba0 | 2020-05-14 08:30:08 -0400 | [diff] [blame] | 152 | config TPL_OPTIMIZE_INLINING |
| 153 | bool "Allow compiler to uninline functions marked 'inline' in TPL" |
| 154 | depends on TPL |
Tom Rini | 5cbb29e | 2020-05-14 08:30:07 -0400 | [diff] [blame] | 155 | help |
| 156 | This option determines if U-Boot forces gcc to inline the functions |
| 157 | developers have marked 'inline'. Doing so takes away freedom from gcc to |
| 158 | do what it thinks is best, which is desirable in some cases for size |
| 159 | reasons. |
| 160 | |
Christian Gmeiner | 0e7c071 | 2018-04-09 17:11:45 +0200 | [diff] [blame] | 161 | config CC_COVERAGE |
| 162 | bool "Enable code coverage analysis" |
| 163 | depends on SANDBOX |
| 164 | help |
| 165 | Enabling this option will pass "--coverage" to gcc to compile |
| 166 | and link code instrumented for coverage analysis. |
| 167 | |
Andrew Scull | f9a2c5e | 2022-05-30 10:00:05 +0000 | [diff] [blame] | 168 | config ASAN |
| 169 | bool "Enable AddressSanitizer" |
| 170 | depends on SANDBOX |
| 171 | help |
| 172 | Enables AddressSanitizer to discover out-of-bounds accesses, |
| 173 | use-after-free, double-free and memory leaks. |
| 174 | |
Andrew Scull | e184c5b | 2022-05-30 10:00:09 +0000 | [diff] [blame] | 175 | config FUZZ |
| 176 | bool "Enable fuzzing" |
| 177 | depends on CC_IS_CLANG |
| 178 | depends on DM_FUZZING_ENGINE |
| 179 | select ASAN |
| 180 | help |
| 181 | Enables the fuzzing infrastructure to generate fuzzing data and run |
| 182 | fuzz tests. |
| 183 | |
Tom Rini | 7c34ae4 | 2020-05-14 08:30:06 -0400 | [diff] [blame] | 184 | config CC_HAS_ASM_INLINE |
| 185 | def_bool $(success,echo 'void foo(void) { asm inline (""); }' | $(CC) -x c - -c -o /dev/null) |
| 186 | |
Peng Fan | f08fa49 | 2020-08-06 12:42:45 +0300 | [diff] [blame] | 187 | config XEN |
| 188 | bool "Select U-Boot be run as a bootloader for XEN Virtual Machine" |
Michal Simek | 300adaa | 2023-04-18 14:51:55 +0200 | [diff] [blame] | 189 | depends on ARM64 |
Michal Simek | 90dccc2 | 2023-04-06 10:04:15 +0200 | [diff] [blame] | 190 | select SSCANF |
Peng Fan | f08fa49 | 2020-08-06 12:42:45 +0300 | [diff] [blame] | 191 | help |
| 192 | Enabling this option will make U-Boot be run as a bootloader |
| 193 | for XEN [1] Virtual Machine. |
| 194 | |
| 195 | Xen is a virtual machine monitor (VMM) or a type-1 hypervisor with support |
| 196 | for para-virtualization. Xen can organize the safe execution of several |
| 197 | virtual machines on the same physical system with performance close to |
| 198 | native. It is used as the basis for a number of different commercial and |
| 199 | open source applications, such as: server virtualization, Infrastructure |
| 200 | as a Service (IaaS), desktop virtualization, security applications, |
| 201 | embedded and hardware appliances. |
| 202 | Xen has a special VM called Domain-0 that runs the Dom0 kernel and allows |
| 203 | Xen to use the device drivers for the Domain-0 kernel by default. |
| 204 | |
| 205 | [1] - https://xenproject.org/ |
| 206 | |
Adam Ford | 58dbf86 | 2018-02-06 07:58:59 -0600 | [diff] [blame] | 207 | config ENV_VARS_UBOOT_CONFIG |
| 208 | bool "Add arch, board, vendor and soc variables to default environment" |
| 209 | help |
| 210 | Define this in order to add variables describing the |
| 211 | U-Boot build configuration to the default environment. |
| 212 | These will be named arch, cpu, board, vendor, and soc. |
| 213 | Enabling this option will cause the following to be defined: |
| 214 | - CONFIG_SYS_ARCH |
| 215 | - CONFIG_SYS_CPU |
| 216 | - CONFIG_SYS_BOARD |
| 217 | - CONFIG_SYS_VENDOR |
| 218 | - CONFIG_SYS_SOC |
| 219 | |
Ramon Fried | 9982661 | 2018-08-14 01:00:04 +0300 | [diff] [blame] | 220 | config NR_DRAM_BANKS |
| 221 | int "Number of DRAM banks" |
Oliver Gaskell | d4f7cb5 | 2024-09-12 16:50:54 +0100 | [diff] [blame] | 222 | default 1 if ARCH_SC5XX || ARCH_SUNXI || ARCH_OWL |
Paul Kocialkowski | 06ce732 | 2024-07-28 22:24:59 +0200 | [diff] [blame] | 223 | default 2 if OMAP34XX |
Ramon Fried | 9982661 | 2018-08-14 01:00:04 +0300 | [diff] [blame] | 224 | default 4 |
| 225 | help |
| 226 | This defines the number of DRAM banks. |
| 227 | |
Derald D. Woods | eb730bd | 2018-01-22 17:17:10 -0600 | [diff] [blame] | 228 | config SYS_BOOT_GET_CMDLINE |
| 229 | bool "Enable kernel command line setup" |
| 230 | help |
| 231 | Enables allocating and saving kernel cmdline in space between |
| 232 | "bootm_low" and "bootm_low" + BOOTMAPSZ. |
| 233 | |
Tom Rini | c253f12 | 2022-05-12 10:02:06 -0400 | [diff] [blame] | 234 | config SYS_BARGSIZE |
| 235 | int "Size of kernel command line buffer in bytes" |
| 236 | depends on SYS_BOOT_GET_CMDLINE |
| 237 | default 512 |
| 238 | help |
| 239 | Buffer size for Boot Arguments which are passed to the application |
| 240 | (usually a Linux kernel) when it is booted |
| 241 | |
Derald D. Woods | eb730bd | 2018-01-22 17:17:10 -0600 | [diff] [blame] | 242 | config SYS_BOOT_GET_KBD |
| 243 | bool "Enable kernel board information setup" |
| 244 | help |
| 245 | Enables allocating and saving a kernel copy of the bd_info in |
| 246 | space between "bootm_low" and "bootm_low" + BOOTMAPSZ. |
| 247 | |
Tom Rini | 4ddbade | 2022-05-25 12:16:03 -0400 | [diff] [blame] | 248 | config HAS_CUSTOM_SYS_INIT_SP_ADDR |
| 249 | bool "Use a custom location for the initial stack pointer address" |
| 250 | depends on ARC || (ARM && !INIT_SP_RELATIVE) || MIPS || PPC || RISCV |
Paul Kocialkowski | bba0ae0 | 2024-07-28 22:24:56 +0200 | [diff] [blame] | 251 | default y if OMAP34XX || AM33XX || AM43XX || DRA7XX |
Tom Rini | 4ddbade | 2022-05-25 12:16:03 -0400 | [diff] [blame] | 252 | default y if TFABOOT |
| 253 | help |
| 254 | Typically, we use an initial stack pointer address that is calculated |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 255 | by taking the statically defined CFG_SYS_INIT_RAM_ADDR, adding the |
| 256 | statically defined CFG_SYS_INIT_RAM_SIZE and then subtracting the |
Tom Rini | 4ddbade | 2022-05-25 12:16:03 -0400 | [diff] [blame] | 257 | build-time constant of GENERATED_GBL_DATA_SIZE. On MIPS a different |
| 258 | but statica calculation is performed. However, some platforms will |
| 259 | take a different approach. Say Y here to define the address statically |
| 260 | instead. |
| 261 | |
| 262 | config CUSTOM_SYS_INIT_SP_ADDR |
| 263 | hex "Static location for the initial stack pointer" |
| 264 | depends on HAS_CUSTOM_SYS_INIT_SP_ADDR |
Paul Kocialkowski | 5005658 | 2024-07-28 22:24:51 +0200 | [diff] [blame] | 265 | default 0x4020ff00 if OMAP34XX |
Paul Kocialkowski | 261bd96 | 2024-07-28 22:24:53 +0200 | [diff] [blame] | 266 | default 0x4030ff00 if AM33XX |
Paul Kocialkowski | af6acb4 | 2024-07-28 22:24:54 +0200 | [diff] [blame] | 267 | default 0x4033ff00 if AM43XX |
Paul Kocialkowski | bba0ae0 | 2024-07-28 22:24:56 +0200 | [diff] [blame] | 268 | default 0x4037ff00 if DRA7XX |
Simon Glass | 72cc538 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 269 | default TEXT_BASE if TFABOOT |
Tom Rini | 4ddbade | 2022-05-25 12:16:03 -0400 | [diff] [blame] | 270 | |
Simon Glass | 838723b | 2015-02-11 16:32:59 -0700 | [diff] [blame] | 271 | config SYS_MALLOC_F |
| 272 | bool "Enable malloc() pool before relocation" |
Masahiro Yamada | c698824 | 2015-03-19 19:42:55 +0900 | [diff] [blame] | 273 | default y if DM |
Simon Glass | b24fdd4 | 2018-12-03 04:37:17 -0700 | [diff] [blame] | 274 | |
Simon Glass | 838723b | 2015-02-11 16:32:59 -0700 | [diff] [blame] | 275 | help |
Robert P. J. Day | 2f845be | 2016-04-16 05:53:07 -0400 | [diff] [blame] | 276 | Before relocation, memory is very limited on many platforms. Still, |
Simon Glass | 838723b | 2015-02-11 16:32:59 -0700 | [diff] [blame] | 277 | we can provide a small malloc() pool if needed. Driver model in |
| 278 | particular needs this to operate, so that it can allocate the |
| 279 | initial serial device and any others that are needed. |
| 280 | |
| 281 | config SYS_MALLOC_F_LEN |
| 282 | hex "Size of malloc() pool before relocation" |
| 283 | depends on SYS_MALLOC_F |
Tom Rini | 324cf14 | 2022-04-07 12:33:23 -0400 | [diff] [blame] | 284 | default 0x400 if M68K || PPC || ROCKCHIP_PX30 || ROCKCHIP_RK3036 || \ |
Jonas Karlman | e60b92e | 2024-03-02 19:16:12 +0000 | [diff] [blame] | 285 | ROCKCHIP_RV1108 |
Tom Rini | 324cf14 | 2022-04-07 12:33:23 -0400 | [diff] [blame] | 286 | default 0x600 if ARCH_ZYNQMP_R5 || ARCH_ZYNQMP |
| 287 | default 0x800 if ARCH_ZYNQ || ROCKCHIP_RK3128 || ROCKCHIP_RK3188 || \ |
| 288 | ROCKCHIP_RK322X || X86 |
Tom Rini | ae68373 | 2022-04-07 12:33:24 -0400 | [diff] [blame] | 289 | default 0x1000 if ARCH_MESON || ARCH_BMIPS || ARCH_MTMIPS |
Tom Rini | 324cf14 | 2022-04-07 12:33:23 -0400 | [diff] [blame] | 290 | default 0x1800 if ARCH_TEGRA |
| 291 | default 0x4000 if SANDBOX || RISCV || ARCH_APPLE || ROCKCHIP_RK3368 || \ |
| 292 | ROCKCHIP_RK3399 |
| 293 | default 0x8000 if RCAR_GEN3 |
Peng Fan | 7e43a2e | 2022-09-15 09:38:18 +0800 | [diff] [blame] | 294 | default 0x10000 if ARCH_IMX8 || ARCH_IMX8M |
Tom Rini | 324cf14 | 2022-04-07 12:33:23 -0400 | [diff] [blame] | 295 | default 0x2000 |
Simon Glass | 838723b | 2015-02-11 16:32:59 -0700 | [diff] [blame] | 296 | help |
Simon Glass | c1aae9b | 2023-09-26 08:14:29 -0600 | [diff] [blame] | 297 | Size of the malloc() pool for use before relocation. If |
| 298 | this is defined, then a very simple malloc() implementation |
| 299 | will become available before relocation. The address is just |
| 300 | below the global data, and the stack is moved down to make |
| 301 | space. |
| 302 | |
| 303 | This feature allocates regions with increasing addresses |
| 304 | within the region. calloc() is supported, but realloc() |
| 305 | is not available. free() is supported but does nothing. |
| 306 | The memory will be freed (or in fact just forgotten) when |
| 307 | U-Boot relocates itself. |
Simon Glass | 838723b | 2015-02-11 16:32:59 -0700 | [diff] [blame] | 308 | |
Siva Durga Prasad Paladugu | 9adb526 | 2018-07-20 15:11:38 +0530 | [diff] [blame] | 309 | config SYS_MALLOC_LEN |
| 310 | hex "Define memory for Dynamic allocation" |
Tom Rini | 4c53844 | 2022-04-14 11:34:47 -0400 | [diff] [blame] | 311 | default 0x4000000 if SANDBOX |
Tom Rini | e065fb1 | 2021-08-28 21:34:49 -0400 | [diff] [blame] | 312 | default 0x2000000 if ARCH_ROCKCHIP || ARCH_OMAP2PLUS || ARCH_MESON |
Tom Rini | e065fb1 | 2021-08-28 21:34:49 -0400 | [diff] [blame] | 313 | default 0x200000 if ARCH_BMIPS || X86 |
Andre Przywara | a2860fb | 2022-07-03 00:47:20 +0100 | [diff] [blame] | 314 | default 0x4020000 if SUNXI_MINIMUM_DRAM_MB >= 256 |
| 315 | default 0x220000 if SUNXI_MINIMUM_DRAM_MB >= 64 |
| 316 | default 0x120000 if SUNXI_MINIMUM_DRAM_MB >= 32 |
Tom Rini | e065fb1 | 2021-08-28 21:34:49 -0400 | [diff] [blame] | 317 | default 0x400000 |
Siva Durga Prasad Paladugu | 9adb526 | 2018-07-20 15:11:38 +0530 | [diff] [blame] | 318 | help |
| 319 | This defines memory to be allocated for Dynamic allocation |
| 320 | TODO: Use for other architectures |
| 321 | |
Simon Glass | 2f7409a | 2023-09-26 08:14:24 -0600 | [diff] [blame] | 322 | config SPL_SYS_MALLOC_F |
| 323 | bool "Enable malloc() pool in SPL" |
| 324 | depends on SPL_FRAMEWORK && SYS_MALLOC_F && SPL |
| 325 | default y |
| 326 | help |
| 327 | In SPL memory is very limited on many platforms. Still, |
| 328 | we can provide a small malloc() pool if needed. Driver model in |
| 329 | particular needs this to operate, so that it can allocate the |
| 330 | initial serial device and any others that are needed. |
| 331 | |
Andy Yan | 1fa20e4d | 2017-07-24 17:43:34 +0800 | [diff] [blame] | 332 | config SPL_SYS_MALLOC_F_LEN |
Simon Glass | bbfdaf3 | 2021-01-21 13:57:06 -0700 | [diff] [blame] | 333 | hex "Size of malloc() pool in SPL" |
Simon Glass | adad2d0 | 2023-09-26 08:14:27 -0600 | [diff] [blame] | 334 | depends on SPL_SYS_MALLOC_F |
Marek Vasut | e39fa7d | 2018-10-03 12:44:13 +0200 | [diff] [blame] | 335 | default 0x2800 if RCAR_GEN3 |
Peng Fan | 7e43a2e | 2022-09-15 09:38:18 +0800 | [diff] [blame] | 336 | default 0x2000 if IMX8MQ |
Michal Simek | 0601c1b | 2018-07-24 14:47:43 +0200 | [diff] [blame] | 337 | default SYS_MALLOC_F_LEN |
| 338 | help |
Simon Glass | 2f7409a | 2023-09-26 08:14:24 -0600 | [diff] [blame] | 339 | Sets the size of the malloc() pool in SPL. This is used for |
| 340 | driver model and other features, which must allocate memory for |
| 341 | data structures. |
Philipp Tomsich | 1013935 | 2017-07-28 11:06:03 +0200 | [diff] [blame] | 342 | |
Simon Glass | 67e3fca | 2023-09-26 08:14:16 -0600 | [diff] [blame] | 343 | It is possible to enable CFG_SPL_SYS_MALLOC_START to start a new |
Simon Glass | bbfdaf3 | 2021-01-21 13:57:06 -0700 | [diff] [blame] | 344 | malloc() region in SDRAM once it is inited. |
| 345 | |
Simon Glass | 2f7409a | 2023-09-26 08:14:24 -0600 | [diff] [blame] | 346 | config TPL_SYS_MALLOC_F |
John Keeping | cd68972 | 2023-11-14 11:30:17 +0000 | [diff] [blame] | 347 | bool "Enable malloc() pool in TPL" |
Adam Ford | 43a1e2d | 2019-08-13 14:32:30 -0500 | [diff] [blame] | 348 | depends on SYS_MALLOC_F && TPL |
Simon Glass | 2f7409a | 2023-09-26 08:14:24 -0600 | [diff] [blame] | 349 | default y if SPL_SYS_MALLOC_F |
Michal Simek | 0601c1b | 2018-07-24 14:47:43 +0200 | [diff] [blame] | 350 | help |
Simon Glass | bbfdaf3 | 2021-01-21 13:57:06 -0700 | [diff] [blame] | 351 | In TPL memory is very limited on many platforms. Still, |
Michal Simek | 0601c1b | 2018-07-24 14:47:43 +0200 | [diff] [blame] | 352 | we can provide a small malloc() pool if needed. Driver model in |
| 353 | particular needs this to operate, so that it can allocate the |
| 354 | initial serial device and any others that are needed. |
Andy Yan | 1fa20e4d | 2017-07-24 17:43:34 +0800 | [diff] [blame] | 355 | |
Simon Glass | 2f7409a | 2023-09-26 08:14:24 -0600 | [diff] [blame] | 356 | config TPL_SYS_MALLOC_F_LEN |
| 357 | hex "Size of malloc() pool in TPL" |
Simon Glass | adad2d0 | 2023-09-26 08:14:27 -0600 | [diff] [blame] | 358 | depends on TPL_SYS_MALLOC_F |
Simon Glass | 2f7409a | 2023-09-26 08:14:24 -0600 | [diff] [blame] | 359 | default SPL_SYS_MALLOC_F_LEN |
| 360 | help |
| 361 | Sets the size of the malloc() pool in TPL. This is used for |
| 362 | driver model and other features, which must allocate memory for |
| 363 | data structures. |
| 364 | |
Sean Anderson | 3b00484 | 2022-03-23 14:04:48 -0400 | [diff] [blame] | 365 | config VALGRIND |
| 366 | bool "Inform valgrind about memory allocations" |
Sean Anderson | 39866b6 | 2022-05-27 10:03:00 -0400 | [diff] [blame] | 367 | depends on !RISCV |
Sean Anderson | 3b00484 | 2022-03-23 14:04:48 -0400 | [diff] [blame] | 368 | help |
| 369 | Valgrind is an instrumentation framework for building dynamic analysis |
| 370 | tools. In particular, it may be used to detect memory management bugs |
| 371 | in U-Boot. It relies on knowing when heap blocks are allocated in |
| 372 | order to give accurate results. This happens automatically for |
| 373 | standard allocator functions provided by the host OS. However, this |
| 374 | doesn't automatically happen for U-Boot's malloc implementation. |
| 375 | |
| 376 | Enable this option to annotate U-Boot's malloc implementation so that |
| 377 | it can be handled accurately by Valgrind. If you aren't planning on |
| 378 | using valgrind to debug U-Boot, say 'n'. |
| 379 | |
Simon Glass | 2f7409a | 2023-09-26 08:14:24 -0600 | [diff] [blame] | 380 | config VPL_SYS_MALLOC_F |
| 381 | bool "Enable malloc() pool in VPL" |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 382 | depends on SYS_MALLOC_F && VPL |
Simon Glass | 2f7409a | 2023-09-26 08:14:24 -0600 | [diff] [blame] | 383 | default y if SPL_SYS_MALLOC_F |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 384 | help |
Simon Glass | 2f7409a | 2023-09-26 08:14:24 -0600 | [diff] [blame] | 385 | In VPL memory is very limited on many platforms. Still, |
Simon Glass | e7ca7da | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 386 | we can provide a small malloc() pool if needed. Driver model in |
| 387 | particular needs this to operate, so that it can allocate the |
| 388 | initial serial device and any others that are needed. |
| 389 | |
Simon Glass | 2f7409a | 2023-09-26 08:14:24 -0600 | [diff] [blame] | 390 | config VPL_SYS_MALLOC_F_LEN |
| 391 | hex "Size of malloc() pool in VPL before relocation" |
Simon Glass | adad2d0 | 2023-09-26 08:14:27 -0600 | [diff] [blame] | 392 | depends on VPL_SYS_MALLOC_F |
| 393 | default SPL_SYS_MALLOC_F_LEN |
Simon Glass | 2f7409a | 2023-09-26 08:14:24 -0600 | [diff] [blame] | 394 | help |
| 395 | Sets the size of the malloc() pool in VPL. This is used for |
| 396 | driver model and other features, which must allocate memory for |
| 397 | data structures. |
| 398 | |
Tom Rini | a50d5b5 | 2014-11-14 09:34:29 +0100 | [diff] [blame] | 399 | menuconfig EXPERT |
Przemyslaw Marczak | 8843678 | 2015-03-04 14:01:24 +0100 | [diff] [blame] | 400 | bool "Configure standard U-Boot features (expert users)" |
| 401 | default y |
| 402 | help |
| 403 | This option allows certain base U-Boot options and settings |
| 404 | to be disabled or tweaked. This is for specialized |
| 405 | environments which can tolerate a "non-standard" U-Boot. |
Robert P. J. Day | 2f845be | 2016-04-16 05:53:07 -0400 | [diff] [blame] | 406 | Use this only if you really know what you are doing. |
Przemyslaw Marczak | 8843678 | 2015-03-04 14:01:24 +0100 | [diff] [blame] | 407 | |
| 408 | if EXPERT |
| 409 | config SYS_MALLOC_CLEAR_ON_INIT |
| 410 | bool "Init with zeros the memory reserved for malloc (slow)" |
| 411 | default y |
| 412 | help |
| 413 | This setting is enabled by default. The reserved malloc |
| 414 | memory is initialized with zeros, so first malloc calls |
| 415 | will return the pointer to the zeroed memory. But this |
| 416 | slows the boot time. |
Tom Rini | a50d5b5 | 2014-11-14 09:34:29 +0100 | [diff] [blame] | 417 | |
Przemyslaw Marczak | 8843678 | 2015-03-04 14:01:24 +0100 | [diff] [blame] | 418 | It is recommended to disable it, when CONFIG_SYS_MALLOC_LEN |
| 419 | value, has more than few MiB, e.g. when uses bzip2 or bmp logo. |
| 420 | Then the boot time can be significantly reduced. |
| 421 | Warning: |
| 422 | When disabling this, please check if malloc calls, maybe |
Robert P. J. Day | 2f845be | 2016-04-16 05:53:07 -0400 | [diff] [blame] | 423 | should be replaced by calloc - if one expects zeroed memory. |
Simon Glass | 86a6449 | 2016-06-30 10:52:20 -0600 | [diff] [blame] | 424 | |
Shengyu Qu | 9b67630 | 2023-08-25 00:25:18 +0800 | [diff] [blame] | 425 | config SPL_SYS_MALLOC_CLEAR_ON_INIT |
| 426 | bool "Init with zeros the memory reserved for malloc (slow) in SPL" |
| 427 | depends on SPL |
| 428 | default SYS_MALLOC_CLEAR_ON_INIT |
| 429 | help |
| 430 | Same as SYS_MALLOC_CLEAR_ON_INIT, but for SPL. It's possible to |
| 431 | Enable it without SYS_MALLOC_CLEAR_ON_INIT. It's useful for boards |
| 432 | that must have particular memory regions zero'ed before first use. |
| 433 | If SYS_SPL_MALLOC_START is configured to be in such region, this |
| 434 | option should be enabled. |
| 435 | |
Marek Bykowski | b4032a7 | 2020-04-29 18:23:07 +0200 | [diff] [blame] | 436 | config SYS_MALLOC_DEFAULT_TO_INIT |
| 437 | bool "Default malloc to init while reserving the memory for it" |
Marek Bykowski | b4032a7 | 2020-04-29 18:23:07 +0200 | [diff] [blame] | 438 | help |
| 439 | It may happen that one needs to move the dynamic allocation |
| 440 | from one to another memory range, eg. when moving the malloc |
| 441 | from the limited static to a potentially large dynamic (DDR) |
| 442 | memory. |
| 443 | |
| 444 | If so then on top of setting the updated memory aside one |
| 445 | needs to bring the malloc init. |
| 446 | |
| 447 | If such a scenario is sought choose yes. |
| 448 | |
Simon Glass | 86a6449 | 2016-06-30 10:52:20 -0600 | [diff] [blame] | 449 | config TOOLS_DEBUG |
| 450 | bool "Enable debug information for tools" |
| 451 | help |
| 452 | Enable generation of debug information for tools such as mkimage. |
| 453 | This can be used for debugging purposes. With debug information |
| 454 | it is possible to set breakpoints on particular lines, single-step |
| 455 | debug through the source code, etc. |
| 456 | |
Robert P. J. Day | e4829f3 | 2017-01-02 16:32:13 -0500 | [diff] [blame] | 457 | endif # EXPERT |
Masahiro Yamada | 653e9fe | 2016-07-25 19:56:03 +0900 | [diff] [blame] | 458 | |
| 459 | config PHYS_64BIT |
| 460 | bool "64bit physical address support" |
Johan Jonker | 02e3e06 | 2023-03-13 01:33:23 +0100 | [diff] [blame] | 461 | select FDT_64BIT |
Masahiro Yamada | 653e9fe | 2016-07-25 19:56:03 +0900 | [diff] [blame] | 462 | help |
| 463 | Say Y here to support 64bit physical memory address. |
| 464 | This can be used not only for 64bit SoCs, but also for |
Chris Packham | 2b52a24 | 2019-01-13 22:13:19 +1300 | [diff] [blame] | 465 | large physical address extension on 32bit SoCs. |
Masahiro Yamada | 653e9fe | 2016-07-25 19:56:03 +0900 | [diff] [blame] | 466 | |
Johan Jonker | 02e3e06 | 2023-03-13 01:33:23 +0100 | [diff] [blame] | 467 | config FDT_64BIT |
| 468 | bool "64bit fdt address support" |
| 469 | help |
| 470 | Say Y here to support 64bit fdt addresses. |
| 471 | This can be used not only for 64bit SoCs, but also |
| 472 | for large address extensions on 32bit SoCs. |
| 473 | |
Simon Glass | f69c009 | 2020-07-19 13:55:52 -0600 | [diff] [blame] | 474 | config HAS_ROM |
| 475 | bool |
| 476 | select BINMAN |
| 477 | help |
| 478 | Enables building of a u-boot.rom target. This collects U-Boot and |
| 479 | any necessary binary blobs. |
| 480 | |
Stefan Roese | e915cbc | 2019-04-03 15:24:50 +0200 | [diff] [blame] | 481 | config SPL_IMAGE |
| 482 | string "SPL image used in the combined SPL+U-Boot image" |
| 483 | default "spl/boot.bin" if ARCH_AT91 && SPL_NAND_SUPPORT |
| 484 | default "spl/u-boot-spl.bin" |
Adam Ford | 43a1e2d | 2019-08-13 14:32:30 -0500 | [diff] [blame] | 485 | depends on SPL |
Stefan Roese | e915cbc | 2019-04-03 15:24:50 +0200 | [diff] [blame] | 486 | help |
| 487 | Select the SPL build target that shall be generated by the SPL |
| 488 | build process (default spl/u-boot-spl.bin). This image will be |
| 489 | used to generate a combined image with SPL and main U-Boot |
| 490 | proper as one single image. |
| 491 | |
Alper Nebi Yasak | 2beb0f4 | 2022-01-29 18:25:30 +0300 | [diff] [blame] | 492 | config REMAKE_ELF |
| 493 | bool "Recreate an ELF image from raw U-Boot binary" |
| 494 | help |
| 495 | Enable this to recreate an ELF image (u-boot.elf) from the raw |
| 496 | U-Boot binary (u-boot.bin), which may already have been statically |
| 497 | relocated and may already have a device-tree appended to it. |
| 498 | |
Jagan Teki | aee9ed3 | 2019-01-18 12:52:49 +0530 | [diff] [blame] | 499 | config BUILD_TARGET |
| 500 | string "Build target special images" |
Hai Pham | 9046b5f | 2023-02-28 22:22:03 +0100 | [diff] [blame] | 501 | default "u-boot-elf.srec" if RCAR_64 |
Marek Vasut | 9a976c1 | 2023-02-28 07:22:21 +0100 | [diff] [blame] | 502 | default "u-boot-with-spl.bin" if ARCH_AT91 && SPL_NAND_SUPPORT |
| 503 | default "u-boot-with-spl.bin" if MPC85xx && !E500MC && !E5500 && !E6500 && SPL |
| 504 | default "u-boot-with-spl.imx" if ARCH_MX6 && SPL |
| 505 | default "u-boot-with-spl.kwb" if ARMADA_32BIT && SPL |
Dalon Westergreen | 8fb280c | 2019-03-20 13:15:21 -0700 | [diff] [blame] | 506 | default "u-boot-with-spl.sfp" if TARGET_SOCFPGA_ARRIA10 |
| 507 | default "u-boot-with-spl.sfp" if TARGET_SOCFPGA_GEN5 |
Simon Glass | 6a50cd1 | 2020-07-19 13:56:12 -0600 | [diff] [blame] | 508 | default "u-boot.itb" if !BINMAN && SPL_LOAD_FIT && (ARCH_ROCKCHIP || \ |
Samuel Holland | 3be2d9f | 2023-01-22 11:23:51 -0600 | [diff] [blame] | 509 | RISCV || ARCH_ZYNQMP) |
Pali RohĂĄr | a4a4f95 | 2022-12-29 02:39:19 +0100 | [diff] [blame] | 510 | default "u-boot.kwb" if (ARCH_KIRKWOOD || ARMADA_32BIT) && !SPL |
Jagan Teki | aee9ed3 | 2019-01-18 12:52:49 +0530 | [diff] [blame] | 511 | help |
| 512 | Some SoCs need special image types (e.g. U-Boot binary |
| 513 | with a special header) as build targets. By defining |
| 514 | CONFIG_BUILD_TARGET in the SoC / board header, this |
| 515 | special image will be automatically built upon calling |
| 516 | make / buildman. |
| 517 | |
Tom Rini | 876df34 | 2022-03-30 18:07:11 -0400 | [diff] [blame] | 518 | config HAS_BOARD_SIZE_LIMIT |
| 519 | bool "Define a maximum size for the U-Boot image" |
Marek Vasut | b42de38 | 2024-02-11 18:34:29 +0100 | [diff] [blame] | 520 | default y if RCAR_32 || RCAR_64 |
Tom Rini | 876df34 | 2022-03-30 18:07:11 -0400 | [diff] [blame] | 521 | help |
| 522 | In some cases, we need to enforce a hard limit on how big the U-Boot |
| 523 | image itself can be. |
| 524 | |
| 525 | config BOARD_SIZE_LIMIT |
| 526 | int "Maximum size of the U-Boot image in bytes" |
Marek Vasut | b42de38 | 2024-02-11 18:34:29 +0100 | [diff] [blame] | 527 | default 524288 if RCAR_32 |
Hai Pham | 9046b5f | 2023-02-28 22:22:03 +0100 | [diff] [blame] | 528 | default 1048576 if RCAR_64 |
Tom Rini | 876df34 | 2022-03-30 18:07:11 -0400 | [diff] [blame] | 529 | depends on HAS_BOARD_SIZE_LIMIT |
| 530 | help |
| 531 | Maximum size of the U-Boot image. When defined, the build system |
| 532 | checks that the actual size does not exceed it. This does not |
| 533 | include SPL nor TPL, on platforms that use that functionality, they |
| 534 | have a separate option to restict size. |
| 535 | |
Tom Rini | e478f70 | 2019-06-02 08:57:32 -0400 | [diff] [blame] | 536 | config SYS_CUSTOM_LDSCRIPT |
| 537 | bool "Use a custom location for the U-Boot linker script" |
| 538 | help |
| 539 | Normally when linking U-Boot we will look in the board directory, |
| 540 | the CPU directory and finally the "cpu" directory of the architecture |
| 541 | for the ile "u-boot.lds" and use that as our linker. However, in |
| 542 | some cases we need to provide a different linker script. To do so, |
| 543 | enable this option and then provide the location under |
| 544 | CONFIG_SYS_LDSCRIPT. |
| 545 | |
| 546 | config SYS_LDSCRIPT |
| 547 | depends on SYS_CUSTOM_LDSCRIPT |
| 548 | string "Custom ldscript location" |
| 549 | help |
| 550 | Path within the source tree to the linker script to use for the |
| 551 | main U-Boot binary. |
| 552 | |
Tom Rini | 0997ee0 | 2021-08-23 10:25:31 -0400 | [diff] [blame] | 553 | config SYS_LOAD_ADDR |
| 554 | hex "Address in memory to use by default" |
| 555 | default 0x01000000 if ARCH_SOCFPGA |
| 556 | default 0x02000000 if PPC || X86 |
Icenowy Zheng | 711fab3 | 2022-01-29 10:23:09 -0500 | [diff] [blame] | 557 | default 0x81000000 if MACH_SUNIV |
Tom Rini | 0997ee0 | 2021-08-23 10:25:31 -0400 | [diff] [blame] | 558 | default 0x22000000 if MACH_SUN9I |
Icenowy Zheng | 711fab3 | 2022-01-29 10:23:09 -0500 | [diff] [blame] | 559 | default 0x42000000 if ARCH_SUNXI |
Tom Rini | 0997ee0 | 2021-08-23 10:25:31 -0400 | [diff] [blame] | 560 | default 0x82000000 if ARCH_KEYSTONE || ARCH_OMAP2PLUS || ARCH_K3 |
| 561 | default 0x82000000 if ARCH_MX6 && (MX6SL || MX6SLL || MX6SX || MX6UL || MX6ULL) |
| 562 | default 0x12000000 if ARCH_MX6 && !(MX6SL || MX6SLL || MX6SX || MX6UL || MX6ULL) |
| 563 | default 0x80800000 if ARCH_MX7 |
| 564 | default 0x90000000 if FSL_LSCH2 || FSL_LSCH3 |
Oliver Gaskell | d4f7cb5 | 2024-09-12 16:50:54 +0100 | [diff] [blame] | 565 | default 0x0 if ARCH_SC5XX |
Tom Rini | 0997ee0 | 2021-08-23 10:25:31 -0400 | [diff] [blame] | 566 | help |
| 567 | Address in memory to use as the default safe load address. |
| 568 | |
Simon Goldschmidt | 9c05511 | 2019-10-22 21:29:46 +0200 | [diff] [blame] | 569 | config ERR_PTR_OFFSET |
| 570 | hex |
| 571 | default 0x0 |
| 572 | help |
| 573 | Some U-Boot pointers have redundant information, so we can use a |
| 574 | scheme where we can return either an error code or a pointer with the |
| 575 | same return value. The default implementation just casts the pointer |
| 576 | to a number, however, this may fail on platforms where the end of the |
| 577 | address range is used for valid pointers (e.g. 0xffffff00 is a valid |
| 578 | heap pointer in socfpga SPL). |
| 579 | For such platforms, this value provides an upper range of those error |
| 580 | pointer values - up to 'MAX_ERRNO' bytes below this value must be |
| 581 | unused/invalid addresses. |
| 582 | |
Michal Simek | 5d458a1 | 2020-03-30 13:58:59 +0200 | [diff] [blame] | 583 | config PLATFORM_ELFENTRY |
| 584 | string |
| 585 | default "__start" if MIPS |
| 586 | default "_start" |
| 587 | |
Heinrich Schuchardt | c6dcbe1 | 2020-07-29 12:37:35 +0200 | [diff] [blame] | 588 | config STACK_SIZE |
| 589 | hex "Define max stack size that can be used by U-Boot" |
Michal Simek | 2e53eb2 | 2022-09-19 14:21:02 +0200 | [diff] [blame] | 590 | default 0x4000000 if ARCH_VERSAL_NET || ARCH_VERSAL || ARCH_ZYNQMP |
Heinrich Schuchardt | c6dcbe1 | 2020-07-29 12:37:35 +0200 | [diff] [blame] | 591 | default 0x200000 if MICROBLAZE |
Patrice Chotard | c228767 | 2024-12-18 08:58:33 +0100 | [diff] [blame] | 592 | default 0x4000 if ARCH_STM32 |
Heinrich Schuchardt | c6dcbe1 | 2020-07-29 12:37:35 +0200 | [diff] [blame] | 593 | default 0x1000000 |
| 594 | help |
| 595 | Define Max stack size that can be used by U-Boot. This value is used |
| 596 | by the UEFI sub-system. On some boards initrd_high is calculated as |
| 597 | base stack pointer minus this stack size. |
| 598 | |
Tom Rini | 5c1e727 | 2022-04-06 10:33:32 -0400 | [diff] [blame] | 599 | config SYS_MEM_TOP_HIDE |
| 600 | hex "Exclude some memory from U-Boot / OS information" |
| 601 | default 0x0 |
| 602 | help |
| 603 | If set, this specified memory area will get subtracted from the top |
| 604 | (end) of RAM and won't get "touched" at all by U-Boot. By fixing up |
| 605 | gd->ram_size the OS / next stage should gets passed the now |
| 606 | "corrected" memory size and won't touch it either. |
| 607 | WARNING: Please make sure that this value is a multiple of the OS |
| 608 | page size. |
| 609 | |
Tom Rini | 7f18432 | 2022-10-28 20:27:07 -0400 | [diff] [blame] | 610 | config SYS_MONITOR_LEN |
| 611 | int "Maximum size in bytes reserved for U-Boot in memory" |
| 612 | default 1048576 if X86 |
Paul Kocialkowski | 656b239 | 2024-07-28 22:24:57 +0200 | [diff] [blame] | 613 | default 262144 if OMAP34XX |
Andre Przywara | 5b3c337 | 2022-11-19 16:10:59 +0000 | [diff] [blame] | 614 | default 786432 if ARCH_SUNXI |
Tom Rini | 7f18432 | 2022-10-28 20:27:07 -0400 | [diff] [blame] | 615 | default 0 |
| 616 | help |
| 617 | Size of memory reserved for monitor code, used to determine |
| 618 | _at_compile_time_ (!) if the environment is embedded within the |
| 619 | U-Boot image, or in a separate flash sector, among other uses where |
| 620 | we need to set a maximum size of the U-Boot binary itself that will |
| 621 | be loaded. |
| 622 | |
Ashok Reddy Soma | 1e6f996 | 2022-01-17 10:16:50 +0100 | [diff] [blame] | 623 | config MP |
| 624 | bool "Support for multiprocessor" |
| 625 | help |
| 626 | This provides an option to bringup different processors |
| 627 | in multiprocessor cases. |
| 628 | |
Simon Glass | f7b09e2 | 2023-09-14 10:55:54 -0600 | [diff] [blame] | 629 | config HAVE_TEXT_BASE |
| 630 | bool |
| 631 | depends on !NIOS2 && !XTENSA |
| 632 | depends on !EFI_APP |
| 633 | default y |
| 634 | |
| 635 | config TEXT_BASE |
| 636 | depends on HAVE_TEXT_BASE |
| 637 | default 0x0 if POSITION_INDEPENDENT |
Marek Vasut | e957fb0 | 2024-10-20 23:00:38 +0200 | [diff] [blame] | 638 | default 0x17800000 if ARCH_MX6 |
Marek Vasut | 001976b | 2024-10-20 23:00:39 +0200 | [diff] [blame] | 639 | default 0x87800000 if ARCH_MX7 |
Simon Glass | f7b09e2 | 2023-09-14 10:55:54 -0600 | [diff] [blame] | 640 | default 0x80800000 if ARCH_OMAP2PLUS || ARCH_K3 |
| 641 | default 0x81700000 if MACH_SUNIV |
| 642 | default 0x2a000000 if MACH_SUN9I |
| 643 | default 0x4a000000 if SUNXI_MINIMUM_DRAM_MB >= 256 |
| 644 | default 0x42e00000 if SUNXI_MINIMUM_DRAM_MB >= 64 |
Oliver Gaskell | d4f7cb5 | 2024-09-12 16:50:54 +0100 | [diff] [blame] | 645 | default 0x96000000 if ARCH_SC5XX && SC59X_64 |
Oliver Gaskell | 14032b3 | 2024-09-12 16:50:56 +0100 | [diff] [blame] | 646 | default 0xB2200000 if ARCH_SC5XX && SC59X |
Oliver Gaskell | 053a120 | 2024-09-12 16:50:58 +0100 | [diff] [blame] | 647 | default 0x89200000 if ARCH_SC5XX && TARGET_SC584_EZKIT |
Oliver Gaskell | 5385eee | 2024-09-12 16:51:00 +0100 | [diff] [blame] | 648 | default 0xC2200000 if ARCH_SC5XX && (TARGET_SC589_EZKIT || TARGET_SC589_MINI) |
Oliver Gaskell | cb0d39d | 2024-09-12 16:51:01 +0100 | [diff] [blame] | 649 | default 0x82200000 if ARCH_SC5XX && SC57X |
Simon Glass | f7b09e2 | 2023-09-14 10:55:54 -0600 | [diff] [blame] | 650 | hex "Text Base" |
| 651 | help |
Jesse Taube | 93ee5c8 | 2023-08-24 21:59:48 -0400 | [diff] [blame] | 652 | The address in memory that U-Boot will be copied and executed from |
| 653 | initially. |
| 654 | |
| 655 | config HAVE_SYS_UBOOT_START |
| 656 | bool "Use custom U-Boot Start" |
| 657 | depends on HAVE_TEXT_BASE |
| 658 | help |
| 659 | By default, the address in memory that U-Boot will be copied from |
| 660 | (TEXT_BASE) and the entry point are the same. Select this to start the |
| 661 | execution of U-Boot from a different address. |
| 662 | This may be required if a header or vector table needs to be copied |
| 663 | but not executed. |
| 664 | |
| 665 | config SYS_UBOOT_START |
| 666 | hex |
| 667 | depends on HAVE_TEXT_BASE |
| 668 | default TEXT_BASE |
| 669 | prompt "U-Boot entry" if HAVE_SYS_UBOOT_START |
| 670 | help |
| 671 | If TEXT_BASE differs from the start of execution, this sets the |
| 672 | address in memory that U-Boot will start execution from initially. |
Simon Glass | f7b09e2 | 2023-09-14 10:55:54 -0600 | [diff] [blame] | 673 | |
| 674 | config HAVE_SYS_MONITOR_BASE |
| 675 | bool |
| 676 | depends on ARC || MIPS || M68K || NIOS2 || PPC || XTENSA || X86 \ |
| 677 | || ENV_IS_IN_FLASH || MTD_NOR_FLASH |
| 678 | depends on !EFI_APP |
| 679 | default y |
| 680 | |
| 681 | config SYS_MONITOR_BASE |
| 682 | depends on HAVE_SYS_MONITOR_BASE |
| 683 | hex "Physical start address of boot monitor code" |
| 684 | default TEXT_BASE |
| 685 | help |
| 686 | The physical start address of boot monitor code (which is the same as |
| 687 | CONFIG_TEXT_BASE when linking) and the same as CFG_SYS_FLASH_BASE |
| 688 | when booting from flash. |
| 689 | |
| 690 | config SPL_SYS_MONITOR_BASE |
| 691 | depends on MPC85xx && SPL && HAVE_SYS_MONITOR_BASE |
| 692 | hex "Physical start address of SPL monitor code" |
| 693 | default SPL_TEXT_BASE |
| 694 | |
| 695 | config TPL_SYS_MONITOR_BASE |
| 696 | depends on MPC85xx && TPL && HAVE_SYS_MONITOR_BASE |
| 697 | hex "Physical start address of TPL monitor code" |
| 698 | |
| 699 | config DYNAMIC_SYS_CLK_FREQ |
| 700 | bool "Determine CPU clock frequency at run-time" |
| 701 | help |
| 702 | Implement a get_board_sys_clk function that will determine the CPU |
| 703 | clock frequency at run time, rather than define it statically. |
| 704 | |
| 705 | config SYS_CLK_FREQ |
| 706 | depends on !DYNAMIC_SYS_CLK_FREQ |
| 707 | int "CPU clock frequency" |
| 708 | default 125000000 if ARCH_LS1012A |
| 709 | default 100000000 if ARCH_P2020 || ARCH_T1024 || ARCH_T1042 || \ |
| 710 | ARCH_LS1021A || FSL_LSCH2 || FSL_LSCH3 |
| 711 | default 66666666 if ARCH_P1010 || ARCH_P1020 || ARCH_T4240 |
| 712 | default 66660000 if ARCH_T2080 |
| 713 | default 33333333 if RCAR_GEN3 |
| 714 | default 24000000 if ARCH_EXYNOS |
| 715 | default 20000000 if RCAR_GEN2 |
| 716 | default 0 |
| 717 | help |
| 718 | A static value for the CPU frequency. Note that if not required |
| 719 | for a given SoC, this can be left at 0. |
Masahiro Yamada | 9eeddf2 | 2014-11-26 18:42:31 +0900 | [diff] [blame] | 720 | |
Greg Malysa | 547f54c | 2024-03-19 22:16:07 -0400 | [diff] [blame] | 721 | config HAS_LDR |
| 722 | bool |
| 723 | help |
| 724 | Enables building .ldr targets for U-Boot and SPL. This does not |
| 725 | automatically build any additional targets with make or buildman. |
| 726 | |
| 727 | config LDR_CPU |
| 728 | string "CPU name to be passed to LDR utility." |
| 729 | depends on HAS_LDR |
| 730 | help |
| 731 | Set the CPU name for the -T parameter in the LDR utility. This is |
| 732 | generally used on processors from Analog Devices, but may be also |
| 733 | be useful for other vendors. |
| 734 | |
Emmanuel Vadot | aa02099 | 2017-01-31 12:17:04 +0100 | [diff] [blame] | 735 | source "api/Kconfig" |
| 736 | |
Simon Glass | 06c1035 | 2023-09-14 10:55:40 -0600 | [diff] [blame] | 737 | endmenu # General setup |
| 738 | |
Simon Glass | 91944df | 2021-10-14 12:47:54 -0600 | [diff] [blame] | 739 | source "boot/Kconfig" |
| 740 | |
Masahiro Yamada | f3e12b7 | 2014-09-16 16:32:58 +0900 | [diff] [blame] | 741 | source "common/Kconfig" |
| 742 | |
Simon Glass | 29499a0 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 743 | source "cmd/Kconfig" |
| 744 | |
Patrick Delaunay | dc28060 | 2017-01-27 11:00:35 +0100 | [diff] [blame] | 745 | source "disk/Kconfig" |
| 746 | |
Masahiro Yamada | 9fadbc8 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 747 | source "dts/Kconfig" |
| 748 | |
Simon Glass | 547cb40 | 2017-08-03 12:21:49 -0600 | [diff] [blame] | 749 | source "env/Kconfig" |
| 750 | |
Jerome Forissier | e0f9551 | 2024-10-16 12:03:59 +0200 | [diff] [blame] | 751 | menu Networking |
| 752 | |
| 753 | choice |
| 754 | prompt "Networking stack" |
| 755 | default NET |
| 756 | |
| 757 | config NO_NET |
| 758 | bool "No networking support" |
Jerome Forissier | 7b38e31 | 2024-11-12 16:44:29 +0100 | [diff] [blame] | 759 | help |
| 760 | Do not include networking support |
Jerome Forissier | e0f9551 | 2024-10-16 12:03:59 +0200 | [diff] [blame] | 761 | |
| 762 | config NET |
| 763 | bool "Legacy U-Boot networking stack" |
| 764 | imply NETDEVICES |
Jerome Forissier | 7b38e31 | 2024-11-12 16:44:29 +0100 | [diff] [blame] | 765 | help |
| 766 | Include networking support with U-Boot's internal implementation of |
| 767 | the TCP/IP protocol stack. |
Jerome Forissier | e0f9551 | 2024-10-16 12:03:59 +0200 | [diff] [blame] | 768 | |
| 769 | config NET_LWIP |
| 770 | bool "Use lwIP for networking stack" |
| 771 | imply NETDEVICES |
| 772 | help |
| 773 | Include networking support based on the lwIP (lightweight IP) |
| 774 | TCP/IP stack (https://nongnu.org/lwip). This is a replacement for |
| 775 | the default U-Boot network stack and applications located in net/ |
| 776 | and enabled via CONFIG_NET as well as other pieces of code that |
| 777 | depend on CONFIG_NET (such as cmd/net.c enabled via CONFIG_CMD_NET). |
| 778 | Therefore the two symbols CONFIG_NET and CONFIG_NET_LWIP are mutually |
| 779 | exclusive. |
| 780 | |
| 781 | endchoice |
| 782 | |
Masahiro Yamada | f3e12b7 | 2014-09-16 16:32:58 +0900 | [diff] [blame] | 783 | source "net/Kconfig" |
| 784 | |
Jerome Forissier | e0f9551 | 2024-10-16 12:03:59 +0200 | [diff] [blame] | 785 | endmenu |
| 786 | |
Masahiro Yamada | f3e12b7 | 2014-09-16 16:32:58 +0900 | [diff] [blame] | 787 | source "drivers/Kconfig" |
| 788 | |
| 789 | source "fs/Kconfig" |
| 790 | |
| 791 | source "lib/Kconfig" |
Simon Glass | 9dd430d | 2015-02-05 21:41:37 -0700 | [diff] [blame] | 792 | |
| 793 | source "test/Kconfig" |
Simon Glass | 31b24b4 | 2020-09-10 20:21:27 -0600 | [diff] [blame] | 794 | |
| 795 | source "tools/Kconfig" |