blob: a508c5430f0d894c8d60eedec31c86d8c244e132 [file] [log] [blame]
Masahiro Yamada804bc5e2014-07-30 14:08:15 +09001#
2# For a description of the syntax of this configuration file,
Hiago De Franco9f824412024-08-19 13:24:49 -03003# see the file Documentation/kbuild/kconfig-language.rst in the
Robert P. J. Day2f845be2016-04-16 05:53:07 -04004# Linux kernel source tree.
Masahiro Yamada804bc5e2014-07-30 14:08:15 +09005#
Tom Rini40f11702020-03-11 18:11:17 -04006mainmenu "U-Boot $(UBOOTVERSION) Configuration"
Masahiro Yamada804bc5e2014-07-30 14:08:15 +09007
Tom Rini99985942020-05-18 14:48:00 -04008comment "Compiler: $(CC_VERSION_TEXT)"
9
Tom Rini8f1be322020-05-14 08:30:01 -040010source "scripts/Kconfig.include"
11
Simon Glass157c3952015-02-24 22:26:19 +090012# Allow defaults in arch-specific code to override any given here
13source "arch/Kconfig"
14
Masahiro Yamada804bc5e2014-07-30 14:08:15 +090015menu "General setup"
16
Heinrich Schuchardt556f86d2017-10-19 23:49:19 +020017config BROKEN
18 bool
19 help
20 This option cannot be enabled. It is used as dependency
21 for broken and incomplete features.
22
Tom Rinie9518cf2019-05-29 17:01:29 -040023config 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 Barkerb786b172025-02-28 10:04:33 +000030config 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 Yamada6ea06e62014-08-22 19:42:27 +090041config LOCALVERSION
42 string "Local version - append to U-Boot release"
Masahiro Yamada6ea06e62014-08-22 19:42:27 +090043 help
44 Append an extra string to the end of your U-Boot version.
Robert P. J. Day2f845be2016-04-16 05:53:07 -040045 This will show up in your boot log, for example.
Masahiro Yamada6ea06e62014-08-22 19:42:27 +090046 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
51config LOCALVERSION_AUTO
52 bool "Automatically append version information to the version string"
Masahiro Yamada6ea06e62014-08-22 19:42:27 +090053 default y
54 help
55 This will try to automatically determine if the current tree is a
Robert P. J. Day2f845be2016-04-16 05:53:07 -040056 release tree by looking for Git tags that belong to the current
Masahiro Yamada6ea06e62014-08-22 19:42:27 +090057 top of tree revision.
58
59 A string of the format -gxxxxxxxx will be added to the localversion
Robert P. J. Day2f845be2016-04-16 05:53:07 -040060 if a Git-based tree is found. The string generated by this will be
Masahiro Yamada6ea06e62014-08-22 19:42:27 +090061 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 Rini50800632021-06-17 18:07:25 -040071config CC_IS_GCC
72 def_bool $(success,$(CC) --version | head -n 1 | grep -q gcc)
73
74config 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
79config CC_IS_CLANG
80 def_bool $(success,$(CC) --version | head -n 1 | grep -q clang)
81
82config CLANG_VERSION
83 int
84 default $(shell,$(srctree)/scripts/clang-version.sh $(CC))
85
Sean Anderson9964cae2022-02-22 12:19:24 -050086choice
87 prompt "Optimization level"
88 default CC_OPTIMIZE_FOR_SIZE
89
Masahiro Yamada8240a4b2014-08-22 19:42:29 +090090config CC_OPTIMIZE_FOR_SIZE
91 bool "Optimize for size"
Masahiro Yamada8240a4b2014-08-22 19:42:29 +090092 help
Sean Anderson9964cae2022-02-22 12:19:24 -050093 Enabling this option will pass "-Os" to gcc, resulting in a smaller
94 U-Boot image.
Masahiro Yamada8240a4b2014-08-22 19:42:29 +090095
96 This option is enabled by default for U-Boot.
97
Sean Anderson9964cae2022-02-22 12:19:24 -050098config 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 Andersonc73952c2022-02-22 12:19:25 -0500104config 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 Anderson9964cae2022-02-22 12:19:24 -0500110endchoice
111
Tom Rini5cbb29e2020-05-14 08:30:07 -0400112config OPTIMIZE_INLINING
Tom Riniea55ba02020-05-14 08:30:08 -0400113 bool "Allow compiler to uninline functions marked 'inline' in full U-Boot"
Tom Riniea55ba02020-05-14 08:30:08 -0400114 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
120config SPL_OPTIMIZE_INLINING
121 bool "Allow compiler to uninline functions marked 'inline' in SPL"
122 depends on SPL
Tom Riniea55ba02020-05-14 08:30:08 -0400123 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Ășnd72a3b72021-05-20 13:24:03 +0200129config ARCH_SUPPORTS_LTO
130 bool
131
132config LTO
133 bool "Enable Link Time Optimizations"
134 depends on ARCH_SUPPORTS_LTO
Marek BehĂșnd72a3b72021-05-20 13:24:03 +0200135 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 Riniea55ba02020-05-14 08:30:08 -0400152config TPL_OPTIMIZE_INLINING
153 bool "Allow compiler to uninline functions marked 'inline' in TPL"
154 depends on TPL
Tom Rini5cbb29e2020-05-14 08:30:07 -0400155 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 Gmeiner0e7c0712018-04-09 17:11:45 +0200161config 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 Scullf9a2c5e2022-05-30 10:00:05 +0000168config 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 Sculle184c5b2022-05-30 10:00:09 +0000175config 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 Rini7c34ae42020-05-14 08:30:06 -0400184config CC_HAS_ASM_INLINE
185 def_bool $(success,echo 'void foo(void) { asm inline (""); }' | $(CC) -x c - -c -o /dev/null)
186
Peng Fanf08fa492020-08-06 12:42:45 +0300187config XEN
188 bool "Select U-Boot be run as a bootloader for XEN Virtual Machine"
Michal Simek300adaa2023-04-18 14:51:55 +0200189 depends on ARM64
Michal Simek90dccc22023-04-06 10:04:15 +0200190 select SSCANF
Peng Fanf08fa492020-08-06 12:42:45 +0300191 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 Ford58dbf862018-02-06 07:58:59 -0600207config 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 Fried99826612018-08-14 01:00:04 +0300220config NR_DRAM_BANKS
221 int "Number of DRAM banks"
Oliver Gaskelld4f7cb52024-09-12 16:50:54 +0100222 default 1 if ARCH_SC5XX || ARCH_SUNXI || ARCH_OWL
Paul Kocialkowski06ce7322024-07-28 22:24:59 +0200223 default 2 if OMAP34XX
Ramon Fried99826612018-08-14 01:00:04 +0300224 default 4
225 help
226 This defines the number of DRAM banks.
227
Derald D. Woodseb730bd2018-01-22 17:17:10 -0600228config 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 Rinic253f122022-05-12 10:02:06 -0400234config 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. Woodseb730bd2018-01-22 17:17:10 -0600242config 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 Rini4ddbade2022-05-25 12:16:03 -0400248config 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 Kocialkowskibba0ae02024-07-28 22:24:56 +0200251 default y if OMAP34XX || AM33XX || AM43XX || DRA7XX
Tom Rini4ddbade2022-05-25 12:16:03 -0400252 default y if TFABOOT
253 help
254 Typically, we use an initial stack pointer address that is calculated
Tom Rini6a5dccc2022-11-16 13:10:41 -0500255 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 Rini4ddbade2022-05-25 12:16:03 -0400257 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
262config CUSTOM_SYS_INIT_SP_ADDR
263 hex "Static location for the initial stack pointer"
264 depends on HAS_CUSTOM_SYS_INIT_SP_ADDR
Paul Kocialkowski50056582024-07-28 22:24:51 +0200265 default 0x4020ff00 if OMAP34XX
Paul Kocialkowski261bd962024-07-28 22:24:53 +0200266 default 0x4030ff00 if AM33XX
Paul Kocialkowskiaf6acb42024-07-28 22:24:54 +0200267 default 0x4033ff00 if AM43XX
Paul Kocialkowskibba0ae02024-07-28 22:24:56 +0200268 default 0x4037ff00 if DRA7XX
Simon Glass72cc5382022-10-20 18:22:39 -0600269 default TEXT_BASE if TFABOOT
Tom Rini4ddbade2022-05-25 12:16:03 -0400270
Simon Glass838723b2015-02-11 16:32:59 -0700271config SYS_MALLOC_F
272 bool "Enable malloc() pool before relocation"
Masahiro Yamadac6988242015-03-19 19:42:55 +0900273 default y if DM
Simon Glassb24fdd42018-12-03 04:37:17 -0700274
Simon Glass838723b2015-02-11 16:32:59 -0700275 help
Robert P. J. Day2f845be2016-04-16 05:53:07 -0400276 Before relocation, memory is very limited on many platforms. Still,
Simon Glass838723b2015-02-11 16:32:59 -0700277 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
281config SYS_MALLOC_F_LEN
282 hex "Size of malloc() pool before relocation"
283 depends on SYS_MALLOC_F
Tom Rini324cf142022-04-07 12:33:23 -0400284 default 0x400 if M68K || PPC || ROCKCHIP_PX30 || ROCKCHIP_RK3036 || \
Jonas Karlmane60b92e2024-03-02 19:16:12 +0000285 ROCKCHIP_RV1108
Tom Rini324cf142022-04-07 12:33:23 -0400286 default 0x600 if ARCH_ZYNQMP_R5 || ARCH_ZYNQMP
287 default 0x800 if ARCH_ZYNQ || ROCKCHIP_RK3128 || ROCKCHIP_RK3188 || \
288 ROCKCHIP_RK322X || X86
Tom Riniae683732022-04-07 12:33:24 -0400289 default 0x1000 if ARCH_MESON || ARCH_BMIPS || ARCH_MTMIPS
Tom Rini324cf142022-04-07 12:33:23 -0400290 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 Fan7e43a2e2022-09-15 09:38:18 +0800294 default 0x10000 if ARCH_IMX8 || ARCH_IMX8M
Tom Rini324cf142022-04-07 12:33:23 -0400295 default 0x2000
Simon Glass838723b2015-02-11 16:32:59 -0700296 help
Simon Glassc1aae9b2023-09-26 08:14:29 -0600297 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 Glass838723b2015-02-11 16:32:59 -0700308
Siva Durga Prasad Paladugu9adb5262018-07-20 15:11:38 +0530309config SYS_MALLOC_LEN
310 hex "Define memory for Dynamic allocation"
Tom Rini4c538442022-04-14 11:34:47 -0400311 default 0x4000000 if SANDBOX
Tom Rinie065fb12021-08-28 21:34:49 -0400312 default 0x2000000 if ARCH_ROCKCHIP || ARCH_OMAP2PLUS || ARCH_MESON
Tom Rinie065fb12021-08-28 21:34:49 -0400313 default 0x200000 if ARCH_BMIPS || X86
Andre Przywaraa2860fb2022-07-03 00:47:20 +0100314 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 Rinie065fb12021-08-28 21:34:49 -0400317 default 0x400000
Siva Durga Prasad Paladugu9adb5262018-07-20 15:11:38 +0530318 help
319 This defines memory to be allocated for Dynamic allocation
320 TODO: Use for other architectures
321
Simon Glass2f7409a2023-09-26 08:14:24 -0600322config 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 Yan1fa20e4d2017-07-24 17:43:34 +0800332config SPL_SYS_MALLOC_F_LEN
Simon Glassbbfdaf32021-01-21 13:57:06 -0700333 hex "Size of malloc() pool in SPL"
Simon Glassadad2d02023-09-26 08:14:27 -0600334 depends on SPL_SYS_MALLOC_F
Marek Vasute39fa7d2018-10-03 12:44:13 +0200335 default 0x2800 if RCAR_GEN3
Peng Fan7e43a2e2022-09-15 09:38:18 +0800336 default 0x2000 if IMX8MQ
Michal Simek0601c1b2018-07-24 14:47:43 +0200337 default SYS_MALLOC_F_LEN
338 help
Simon Glass2f7409a2023-09-26 08:14:24 -0600339 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 Tomsich10139352017-07-28 11:06:03 +0200342
Simon Glass67e3fca2023-09-26 08:14:16 -0600343 It is possible to enable CFG_SPL_SYS_MALLOC_START to start a new
Simon Glassbbfdaf32021-01-21 13:57:06 -0700344 malloc() region in SDRAM once it is inited.
345
Simon Glass2f7409a2023-09-26 08:14:24 -0600346config TPL_SYS_MALLOC_F
John Keepingcd689722023-11-14 11:30:17 +0000347 bool "Enable malloc() pool in TPL"
Adam Ford43a1e2d2019-08-13 14:32:30 -0500348 depends on SYS_MALLOC_F && TPL
Simon Glass2f7409a2023-09-26 08:14:24 -0600349 default y if SPL_SYS_MALLOC_F
Michal Simek0601c1b2018-07-24 14:47:43 +0200350 help
Simon Glassbbfdaf32021-01-21 13:57:06 -0700351 In TPL memory is very limited on many platforms. Still,
Michal Simek0601c1b2018-07-24 14:47:43 +0200352 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 Yan1fa20e4d2017-07-24 17:43:34 +0800355
Simon Glass2f7409a2023-09-26 08:14:24 -0600356config TPL_SYS_MALLOC_F_LEN
357 hex "Size of malloc() pool in TPL"
Simon Glassadad2d02023-09-26 08:14:27 -0600358 depends on TPL_SYS_MALLOC_F
Simon Glass2f7409a2023-09-26 08:14:24 -0600359 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 Anderson3b004842022-03-23 14:04:48 -0400365config VALGRIND
366 bool "Inform valgrind about memory allocations"
Sean Anderson39866b62022-05-27 10:03:00 -0400367 depends on !RISCV
Sean Anderson3b004842022-03-23 14:04:48 -0400368 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 Glass2f7409a2023-09-26 08:14:24 -0600380config VPL_SYS_MALLOC_F
381 bool "Enable malloc() pool in VPL"
Simon Glasse7ca7da2022-04-30 00:56:53 -0600382 depends on SYS_MALLOC_F && VPL
Simon Glass2f7409a2023-09-26 08:14:24 -0600383 default y if SPL_SYS_MALLOC_F
Simon Glasse7ca7da2022-04-30 00:56:53 -0600384 help
Simon Glass2f7409a2023-09-26 08:14:24 -0600385 In VPL memory is very limited on many platforms. Still,
Simon Glasse7ca7da2022-04-30 00:56:53 -0600386 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 Glass2f7409a2023-09-26 08:14:24 -0600390config VPL_SYS_MALLOC_F_LEN
391 hex "Size of malloc() pool in VPL before relocation"
Simon Glassadad2d02023-09-26 08:14:27 -0600392 depends on VPL_SYS_MALLOC_F
393 default SPL_SYS_MALLOC_F_LEN
Simon Glass2f7409a2023-09-26 08:14:24 -0600394 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 Rinia50d5b52014-11-14 09:34:29 +0100399menuconfig EXPERT
Przemyslaw Marczak88436782015-03-04 14:01:24 +0100400 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. Day2f845be2016-04-16 05:53:07 -0400406 Use this only if you really know what you are doing.
Przemyslaw Marczak88436782015-03-04 14:01:24 +0100407
408if 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 Rinia50d5b52014-11-14 09:34:29 +0100417
Przemyslaw Marczak88436782015-03-04 14:01:24 +0100418 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. Day2f845be2016-04-16 05:53:07 -0400423 should be replaced by calloc - if one expects zeroed memory.
Simon Glass86a64492016-06-30 10:52:20 -0600424
Shengyu Qu9b676302023-08-25 00:25:18 +0800425config 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 Bykowskib4032a72020-04-29 18:23:07 +0200436config SYS_MALLOC_DEFAULT_TO_INIT
437 bool "Default malloc to init while reserving the memory for it"
Marek Bykowskib4032a72020-04-29 18:23:07 +0200438 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 Glass86a64492016-06-30 10:52:20 -0600449config 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. Daye4829f32017-01-02 16:32:13 -0500457endif # EXPERT
Masahiro Yamada653e9fe2016-07-25 19:56:03 +0900458
459config PHYS_64BIT
460 bool "64bit physical address support"
Johan Jonker02e3e062023-03-13 01:33:23 +0100461 select FDT_64BIT
Masahiro Yamada653e9fe2016-07-25 19:56:03 +0900462 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 Packham2b52a242019-01-13 22:13:19 +1300465 large physical address extension on 32bit SoCs.
Masahiro Yamada653e9fe2016-07-25 19:56:03 +0900466
Johan Jonker02e3e062023-03-13 01:33:23 +0100467config 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 Glassf69c0092020-07-19 13:55:52 -0600474config 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 Roesee915cbc2019-04-03 15:24:50 +0200481config 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 Ford43a1e2d2019-08-13 14:32:30 -0500485 depends on SPL
Stefan Roesee915cbc2019-04-03 15:24:50 +0200486 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 Yasak2beb0f42022-01-29 18:25:30 +0300492config 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 Tekiaee9ed32019-01-18 12:52:49 +0530499config BUILD_TARGET
500 string "Build target special images"
Hai Pham9046b5f2023-02-28 22:22:03 +0100501 default "u-boot-elf.srec" if RCAR_64
Marek Vasut9a976c12023-02-28 07:22:21 +0100502 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 Westergreen8fb280c2019-03-20 13:15:21 -0700506 default "u-boot-with-spl.sfp" if TARGET_SOCFPGA_ARRIA10
507 default "u-boot-with-spl.sfp" if TARGET_SOCFPGA_GEN5
Simon Glass6a50cd12020-07-19 13:56:12 -0600508 default "u-boot.itb" if !BINMAN && SPL_LOAD_FIT && (ARCH_ROCKCHIP || \
Samuel Holland3be2d9f2023-01-22 11:23:51 -0600509 RISCV || ARCH_ZYNQMP)
Pali RohĂĄra4a4f952022-12-29 02:39:19 +0100510 default "u-boot.kwb" if (ARCH_KIRKWOOD || ARMADA_32BIT) && !SPL
Jagan Tekiaee9ed32019-01-18 12:52:49 +0530511 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 Rini876df342022-03-30 18:07:11 -0400518config HAS_BOARD_SIZE_LIMIT
519 bool "Define a maximum size for the U-Boot image"
Marek Vasutb42de382024-02-11 18:34:29 +0100520 default y if RCAR_32 || RCAR_64
Tom Rini876df342022-03-30 18:07:11 -0400521 help
522 In some cases, we need to enforce a hard limit on how big the U-Boot
523 image itself can be.
524
525config BOARD_SIZE_LIMIT
526 int "Maximum size of the U-Boot image in bytes"
Marek Vasutb42de382024-02-11 18:34:29 +0100527 default 524288 if RCAR_32
Hai Pham9046b5f2023-02-28 22:22:03 +0100528 default 1048576 if RCAR_64
Tom Rini876df342022-03-30 18:07:11 -0400529 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 Rinie478f702019-06-02 08:57:32 -0400536config 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
546config 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 Rini0997ee02021-08-23 10:25:31 -0400553config 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 Zheng711fab32022-01-29 10:23:09 -0500557 default 0x81000000 if MACH_SUNIV
Tom Rini0997ee02021-08-23 10:25:31 -0400558 default 0x22000000 if MACH_SUN9I
Icenowy Zheng711fab32022-01-29 10:23:09 -0500559 default 0x42000000 if ARCH_SUNXI
Tom Rini0997ee02021-08-23 10:25:31 -0400560 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 Gaskelld4f7cb52024-09-12 16:50:54 +0100565 default 0x0 if ARCH_SC5XX
Tom Rini0997ee02021-08-23 10:25:31 -0400566 help
567 Address in memory to use as the default safe load address.
568
Simon Goldschmidt9c055112019-10-22 21:29:46 +0200569config 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 Simek5d458a12020-03-30 13:58:59 +0200583config PLATFORM_ELFENTRY
584 string
585 default "__start" if MIPS
586 default "_start"
587
Heinrich Schuchardtc6dcbe12020-07-29 12:37:35 +0200588config STACK_SIZE
589 hex "Define max stack size that can be used by U-Boot"
Michal Simek2e53eb22022-09-19 14:21:02 +0200590 default 0x4000000 if ARCH_VERSAL_NET || ARCH_VERSAL || ARCH_ZYNQMP
Heinrich Schuchardtc6dcbe12020-07-29 12:37:35 +0200591 default 0x200000 if MICROBLAZE
Patrice Chotardc2287672024-12-18 08:58:33 +0100592 default 0x4000 if ARCH_STM32
Heinrich Schuchardtc6dcbe12020-07-29 12:37:35 +0200593 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 Rini5c1e7272022-04-06 10:33:32 -0400599config 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 Rini7f184322022-10-28 20:27:07 -0400610config SYS_MONITOR_LEN
611 int "Maximum size in bytes reserved for U-Boot in memory"
612 default 1048576 if X86
Paul Kocialkowski656b2392024-07-28 22:24:57 +0200613 default 262144 if OMAP34XX
Andre Przywara5b3c3372022-11-19 16:10:59 +0000614 default 786432 if ARCH_SUNXI
Tom Rini7f184322022-10-28 20:27:07 -0400615 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 Soma1e6f9962022-01-17 10:16:50 +0100623config MP
624 bool "Support for multiprocessor"
625 help
626 This provides an option to bringup different processors
627 in multiprocessor cases.
628
Simon Glassf7b09e22023-09-14 10:55:54 -0600629config HAVE_TEXT_BASE
630 bool
631 depends on !NIOS2 && !XTENSA
632 depends on !EFI_APP
633 default y
634
635config TEXT_BASE
636 depends on HAVE_TEXT_BASE
637 default 0x0 if POSITION_INDEPENDENT
Marek Vasute957fb02024-10-20 23:00:38 +0200638 default 0x17800000 if ARCH_MX6
Marek Vasut001976b2024-10-20 23:00:39 +0200639 default 0x87800000 if ARCH_MX7
Simon Glassf7b09e22023-09-14 10:55:54 -0600640 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 Gaskelld4f7cb52024-09-12 16:50:54 +0100645 default 0x96000000 if ARCH_SC5XX && SC59X_64
Oliver Gaskell14032b32024-09-12 16:50:56 +0100646 default 0xB2200000 if ARCH_SC5XX && SC59X
Oliver Gaskell053a1202024-09-12 16:50:58 +0100647 default 0x89200000 if ARCH_SC5XX && TARGET_SC584_EZKIT
Oliver Gaskell5385eee2024-09-12 16:51:00 +0100648 default 0xC2200000 if ARCH_SC5XX && (TARGET_SC589_EZKIT || TARGET_SC589_MINI)
Oliver Gaskellcb0d39d2024-09-12 16:51:01 +0100649 default 0x82200000 if ARCH_SC5XX && SC57X
Simon Glassf7b09e22023-09-14 10:55:54 -0600650 hex "Text Base"
651 help
Jesse Taube93ee5c82023-08-24 21:59:48 -0400652 The address in memory that U-Boot will be copied and executed from
653 initially.
654
655config 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
665config 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 Glassf7b09e22023-09-14 10:55:54 -0600673
674config 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
681config 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
690config 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
695config TPL_SYS_MONITOR_BASE
696 depends on MPC85xx && TPL && HAVE_SYS_MONITOR_BASE
697 hex "Physical start address of TPL monitor code"
698
699config 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
705config 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 Yamada9eeddf22014-11-26 18:42:31 +0900720
Greg Malysa547f54c2024-03-19 22:16:07 -0400721config 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
727config 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 Vadotaa020992017-01-31 12:17:04 +0100735source "api/Kconfig"
736
Simon Glass06c10352023-09-14 10:55:40 -0600737endmenu # General setup
738
Simon Glass91944df2021-10-14 12:47:54 -0600739source "boot/Kconfig"
740
Masahiro Yamadaf3e12b72014-09-16 16:32:58 +0900741source "common/Kconfig"
742
Simon Glass29499a02016-01-17 20:53:51 -0700743source "cmd/Kconfig"
744
Patrick Delaunaydc280602017-01-27 11:00:35 +0100745source "disk/Kconfig"
746
Masahiro Yamada9fadbc82014-09-22 19:59:05 +0900747source "dts/Kconfig"
748
Simon Glass547cb402017-08-03 12:21:49 -0600749source "env/Kconfig"
750
Tom Rini6fdb77e2025-03-14 19:29:33 -0600751menu "Networking"
Jerome Forissiere0f95512024-10-16 12:03:59 +0200752
753choice
754 prompt "Networking stack"
755 default NET
756
757config NO_NET
758 bool "No networking support"
Jerome Forissier7b38e312024-11-12 16:44:29 +0100759 help
760 Do not include networking support
Jerome Forissiere0f95512024-10-16 12:03:59 +0200761
762config NET
763 bool "Legacy U-Boot networking stack"
764 imply NETDEVICES
Jerome Forissier7b38e312024-11-12 16:44:29 +0100765 help
766 Include networking support with U-Boot's internal implementation of
767 the TCP/IP protocol stack.
Jerome Forissiere0f95512024-10-16 12:03:59 +0200768
769config 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
781endchoice
782
Masahiro Yamadaf3e12b72014-09-16 16:32:58 +0900783source "net/Kconfig"
784
Jerome Forissiere0f95512024-10-16 12:03:59 +0200785endmenu
786
Masahiro Yamadaf3e12b72014-09-16 16:32:58 +0900787source "drivers/Kconfig"
788
789source "fs/Kconfig"
790
791source "lib/Kconfig"
Simon Glass9dd430d2015-02-05 21:41:37 -0700792
793source "test/Kconfig"
Simon Glass31b24b42020-09-10 20:21:27 -0600794
795source "tools/Kconfig"