blob: 2bcc3ce528ef9d48933655296c5337525a90cca4 [file] [log] [blame]
Patrick Georgic49d7a32020-05-08 22:50:46 +02001## SPDX-License-Identifier: GPL-2.0-only
Patrick Georgi0588d192009-08-12 15:00:51 +00002
Uwe Hermannad8c95f2012-04-12 22:00:03 +02003mainmenu "coreboot configuration"
Patrick Georgi0588d192009-08-12 15:00:51 +00004
Uwe Hermannc04be932009-10-05 13:55:28 +00005menu "General setup"
6
Lee Leahybb70c402017-04-03 07:38:20 -07007config COREBOOT_BUILD
8 bool
9 default y
10
Uwe Hermannc04be932009-10-05 13:55:28 +000011config LOCALVERSION
Uwe Hermann168b11b2009-10-07 16:15:40 +000012 string "Local version string"
Uwe Hermannc04be932009-10-05 13:55:28 +000013 help
14 Append an extra string to the end of the coreboot version.
15
Uwe Hermann168b11b2009-10-07 16:15:40 +000016 This can be useful if, for instance, you want to append the
17 respective board's hostname or some other identifying string to
18 the coreboot version number, so that you can easily distinguish
19 boot logs of different boards from each other.
20
Arthur Heymans6f751542019-06-08 11:28:52 +020021config CONFIGURABLE_CBFS_PREFIX
22 bool
23 help
24 Select this to prompt to use to configure the prefix for cbfs files.
25
Arthur Heymans6010eb22019-10-06 13:34:20 +020026choice
27 prompt "CBFS prefix to use"
28 depends on CONFIGURABLE_CBFS_PREFIX
29 default CBFS_PREFIX_FALLBACK
30
31config CBFS_PREFIX_FALLBACK
32 bool "fallback"
33
34config CBFS_PREFIX_NORMAL
35 bool "normal"
36
37config CBFS_PREFIX_DIY
38 bool "Define your own cbfs prefix"
39
40endchoice
41
Patrick Georgi4b8a2412010-02-09 19:35:16 +000042config CBFS_PREFIX
Arthur Heymans6010eb22019-10-06 13:34:20 +020043 string "CBFS prefix to use" if CBFS_PREFIX_DIY
44 default "fallback" if !CONFIGURABLE_CBFS_PREFIX || CBFS_PREFIX_FALLBACK
45 default "normal" if CBFS_PREFIX_NORMAL
Patrick Georgi4b8a2412010-02-09 19:35:16 +000046 help
47 Select the prefix to all files put into the image. It's "fallback"
48 by default, "normal" is a common alternative.
49
Arthur Heymans1312ef42023-07-12 18:12:14 +020050config DEFAULT_COMPILER_LLVM_CLANG
51 bool
52 help
53 Allows to override the default compiler. This can for instance be
54 set in site-local/Kconfig.
55
Patrick Georgi23d89cc2010-03-16 01:17:19 +000056choice
Uwe Hermannad8c95f2012-04-12 22:00:03 +020057 prompt "Compiler to use"
Arthur Heymans1312ef42023-07-12 18:12:14 +020058 default COMPILER_LLVM_CLANG if DEFAULT_COMPILER_LLVM_CLANG
Patrick Georgi23d89cc2010-03-16 01:17:19 +000059 default COMPILER_GCC
60 help
61 This option allows you to select the compiler used for building
62 coreboot.
Martin Rotha5a628e82016-01-19 12:01:09 -070063 You must build the coreboot crosscompiler for the board that you
64 have selected.
65
66 To build all the GCC crosscompilers (takes a LONG time), run:
67 make crossgcc
68
69 For help on individual architectures, run the command:
70 make help_toolchain
Patrick Georgi23d89cc2010-03-16 01:17:19 +000071
72config COMPILER_GCC
73 bool "GCC"
Uwe Hermannad8c95f2012-04-12 22:00:03 +020074 help
75 Use the GNU Compiler Collection (GCC) to build coreboot.
76
77 For details see http://gcc.gnu.org.
78
Patrick Georgi23d89cc2010-03-16 01:17:19 +000079config COMPILER_LLVM_CLANG
Arthur Heymans5b528bc2022-03-24 10:38:54 +010080 bool "LLVM/clang"
81 depends on ALLOW_EXPERIMENTAL_CLANG || ARCH_SUPPORTS_CLANG
Uwe Hermannad8c95f2012-04-12 22:00:03 +020082 help
Martin Rotha5a628e82016-01-19 12:01:09 -070083 Use LLVM/clang to build coreboot. To use this, you must build the
84 coreboot version of the clang compiler. Run the command
85 make clang
Arthur Heymans5b528bc2022-03-24 10:38:54 +010086 Note that Clang is not currently working on all architectures.
Uwe Hermannad8c95f2012-04-12 22:00:03 +020087
88 For details see http://clang.llvm.org.
89
Patrick Georgi23d89cc2010-03-16 01:17:19 +000090endchoice
91
Arthur Heymans5b528bc2022-03-24 10:38:54 +010092config ARCH_SUPPORTS_CLANG
93 bool
94 help
95 Opt-in flag for architectures that generally work well with CLANG.
96 By default the option would be hidden.
97
98config ALLOW_EXPERIMENTAL_CLANG
99 bool "Allow experimental LLVM/Clang"
100 depends on !ARCH_SUPPORTS_CLANG
101 help
102 On some architectures CLANG does not work that well.
103 Use this only to try to get CLANG working.
104
Patrick Georgi9b0de712013-12-29 18:45:23 +0100105config ANY_TOOLCHAIN
106 bool "Allow building with any toolchain"
107 default n
Patrick Georgi9b0de712013-12-29 18:45:23 +0100108 help
109 Many toolchains break when building coreboot since it uses quite
Martin Roth4ef61b12022-05-28 12:34:44 -0600110 unusual linker features. Unless developers explicitly request it,
Patrick Georgi9b0de712013-12-29 18:45:23 +0100111 we'll have to assume that they use their distro compiler by mistake.
112 Make sure that using patched compilers is a conscious decision.
113
Patrick Georgi516a2a72010-03-25 21:45:25 +0000114config CCACHE
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200115 bool "Use ccache to speed up (re)compilation"
Patrick Georgi516a2a72010-03-25 21:45:25 +0000116 default n
117 help
118 Enables the use of ccache for faster builds.
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200119
120 Requires the ccache utility in your system $PATH.
121
122 For details see https://ccache.samba.org.
Patrick Georgi516a2a72010-03-25 21:45:25 +0000123
Martin Roth461c33b2022-09-27 18:13:48 -0600124config IWYU
125 bool "Test platform with include-what-you-use"
126 help
127 This runs each source file through the include-what-you-use tool
128 to check the header includes.
129
Sol Boucher69b88bf2015-02-26 11:47:19 -0800130config FMD_GENPARSER
131 bool "Generate flashmap descriptor parser using flex and bison"
132 default n
Sol Boucher69b88bf2015-02-26 11:47:19 -0800133 help
134 Enable this option if you are working on the flashmap descriptor
135 parser and made changes to fmd_scanner.l or fmd_parser.y.
136
137 Otherwise, say N to use the provided pregenerated scanner/parser.
138
Martin Rothf411b702017-04-09 19:12:42 -0600139config UTIL_GENPARSER
Patrick Georgi615cdfc2021-09-06 16:59:56 +0200140 bool "Generate parsers for bincfg, sconfig and kconfig locally"
Stefan Reinauer9bf78102010-08-09 13:28:18 +0000141 default n
Stefan Reinauer9bf78102010-08-09 13:28:18 +0000142 help
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200143 Enable this option if you are working on the sconfig device tree
Denis 'GNUtoo' Carikli780e9312018-01-10 14:35:55 +0100144 parser or bincfg and made changes to the .l or .y files.
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200145
Sol Boucher69b88bf2015-02-26 11:47:19 -0800146 Otherwise, say N to use the provided pregenerated scanner/parser.
Stefan Reinauer9bf78102010-08-09 13:28:18 +0000147
Angel Pons17852e62021-05-20 15:30:59 +0200148choice
149 prompt "Option backend to use"
Angel Pons9bc780f2021-05-20 16:43:08 +0200150 default USE_MAINBOARD_SPECIFIC_OPTION_BACKEND if HAVE_MAINBOARD_SPECIFIC_OPTION_BACKEND
Angel Pons17852e62021-05-20 15:30:59 +0200151 default USE_OPTION_TABLE if NVRAMCUI_SECONDARY_PAYLOAD
Patrick Rudolph4d66ab52022-03-03 10:16:35 +0100152 default USE_UEFI_VARIABLE_STORE if DRIVERS_EFI_VARIABLE_STORE && \
153 PAYLOAD_EDK2 && SMMSTORE_V2
Angel Pons17852e62021-05-20 15:30:59 +0200154
155config OPTION_BACKEND_NONE
156 bool "None"
157
Joe Korty6d772522010-05-19 18:41:15 +0000158config USE_OPTION_TABLE
159 bool "Use CMOS for configuration values"
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000160 depends on HAVE_OPTION_TABLE
Joe Korty6d772522010-05-19 18:41:15 +0000161 help
162 Enable this option if coreboot shall read options from the "CMOS"
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200163 NVRAM instead of using hard-coded values.
Joe Korty6d772522010-05-19 18:41:15 +0000164
Patrick Rudolph4d66ab52022-03-03 10:16:35 +0100165config USE_UEFI_VARIABLE_STORE
166 bool "Use UEFI variable-store in SPI flash as option backend"
167 depends on DRIVERS_EFI_VARIABLE_STORE
168 depends on SMMSTORE_V2
169 help
170 Enable this option if coreboot shall read/write options from the
171 SMMSTORE region within the SPI flash. The region must be formatted
172 by the payload first before it can be used.
173
Angel Pons9bc780f2021-05-20 16:43:08 +0200174config USE_MAINBOARD_SPECIFIC_OPTION_BACKEND
175 bool "Use mainboard-specific option backend"
176 depends on HAVE_MAINBOARD_SPECIFIC_OPTION_BACKEND
177 help
178 Use a mainboard-specific mechanism to access runtime-configurable
179 options.
180
Angel Pons17852e62021-05-20 15:30:59 +0200181endchoice
182
Timothy Pearsonf20c6e82015-02-14 16:15:31 -0600183config STATIC_OPTION_TABLE
184 bool "Load default configuration values into CMOS on each boot"
Timothy Pearsonf20c6e82015-02-14 16:15:31 -0600185 depends on USE_OPTION_TABLE
186 help
187 Enable this option to reset "CMOS" NVRAM values to default on
188 every boot. Use this if you want the NVRAM configuration to
189 never be modified from its default values.
190
Martin Roth40729a52023-01-04 17:26:21 -0700191config MB_COMPRESS_RAMSTAGE_LZ4
192 bool
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000193 help
Martin Roth40729a52023-01-04 17:26:21 -0700194 Select this in a mainboard to use LZ4 compression by default
195
196choice
197 prompt "Ramstage compression"
198 depends on HAVE_RAMSTAGE && !UNCOMPRESSED_RAMSTAGE
199 default COMPRESS_RAMSTAGE_LZ4 if MB_COMPRESS_RAMSTAGE_LZ4
200 default COMPRESS_RAMSTAGE_LZMA
201
202config COMPRESS_RAMSTAGE_LZMA
203 bool "Compress ramstage with LZMA"
204 help
205 Compress ramstage with LZMA to save memory in the flash image.
206
207config COMPRESS_RAMSTAGE_LZ4
208 bool "Compress ramstage with LZ4"
209 help
210 LZ4 doesn't give as good compression as LZMA, but decompresses much
211 faster. For large binaries such as ramstage, it's typically best to
212 use LZMA, but there can be cases where the faster decompression of
213 LZ4 can lead to a faster boot time. Testing on each individual board
214 is typically going to be needed due to the large number of factors
215 that can influence the decision. Binary size, CPU speed, ROM read
216 speed, cache, and other factors all play a part.
217
218 If you're not sure, stick with LZMA.
219
220endchoice
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000221
Julius Werner09f29212015-09-29 13:51:35 -0700222config COMPRESS_PRERAM_STAGES
223 bool "Compress romstage and verstage with LZ4"
Arthur Heymanse146fbd2019-11-04 18:57:06 +0100224 depends on (HAVE_ROMSTAGE || HAVE_VERSTAGE) && NO_XIP_EARLY_STAGES
Martin Roth75e5cb72016-12-15 15:05:37 -0700225 # Default value set at the end of the file
Julius Werner09f29212015-09-29 13:51:35 -0700226 help
227 Compress romstage and (if it exists) verstage with LZ4 to save flash
228 space and speed up boot, since the time for reading the image from SPI
229 (and in the vboot case verifying it) is usually much greater than the
Arthur Heymanse146fbd2019-11-04 18:57:06 +0100230 time spent decompressing. Doesn't work for XIP stages for obvious
231 reasons.
Julius Werner09f29212015-09-29 13:51:35 -0700232
Julius Werner99f46832018-05-16 14:14:04 -0700233config COMPRESS_BOOTBLOCK
234 bool
Subrata Banikb5962a92019-06-08 12:29:02 +0530235 depends on HAVE_BOOTBLOCK
Julius Werner99f46832018-05-16 14:14:04 -0700236 help
237 This option can be used to compress the bootblock with LZ4 and attach
238 a small self-decompression stub to its front. This can drastically
239 reduce boot time on platforms where the bootblock is loaded over a
240 very slow connection and bootblock size trumps all other factors for
Jonathan Neuschäfer2930a722018-09-29 17:42:52 +0200241 speed. Since using this option usually requires changes to the
Julius Werner99f46832018-05-16 14:14:04 -0700242 SoC memlayout and possibly extra support code, it should not be
243 user-selectable. (There's no real point in offering this to the user
244 anyway... if it works and saves boot time, you would always want it.)
245
Arthur Heymansa2bc2542021-05-29 08:10:49 +0200246config SEPARATE_ROMSTAGE
247 bool "Build a separate romstage"
248 default y
249 help
250 Build a separate romstage that is loaded by bootblock. With this
251 option disabled the romstage sources are linked inside the bootblock
252 as a single stage.
253
Cristian Măgherușan-Stanciud367b002011-06-19 03:03:28 +0200254config INCLUDE_CONFIG_FILE
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200255 bool "Include the coreboot .config file into the ROM image"
Martin Roth75e5cb72016-12-15 15:05:37 -0700256 # Default value set at the end of the file
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200257 help
258 Include the .config file that was used to compile coreboot
259 in the (CBFS) ROM image. This is useful if you want to know which
260 options were used to build a specific coreboot.rom image.
261
Daniele Forsi53847a22014-07-22 18:00:56 +0200262 Saying Y here will increase the image size by 2-3KB.
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200263
Julius Werner4924cdb2022-11-16 17:48:46 -0800264 You can then use cbfstool to extract the config from a final image:
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200265
Julius Werner4924cdb2022-11-16 17:48:46 -0800266 cbfstool coreboot.rom extract -n config -f <output file path>
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200267
268 Alternatively, you can also use cbfstool to print the image
269 contents (including the raw 'config' item we're looking for).
270
271 Example:
272
273 $ cbfstool coreboot.rom print
274 coreboot.rom: 4096 kB, bootblocksize 1008, romsize 4194304,
275 offset 0x0
276 Alignment: 64 bytes
Steve Goodrichf0269122012-05-18 11:18:47 -0600277
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200278 Name Offset Type Size
Elyes HAOUAS2119d0b2020-02-16 10:01:33 +0100279 cmos_layout.bin 0x0 CMOS layout 1159
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200280 fallback/romstage 0x4c0 stage 339756
Daniele Forsi53847a22014-07-22 18:00:56 +0200281 fallback/ramstage 0x53440 stage 186664
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200282 fallback/payload 0x80dc0 payload 51526
283 config 0x8d740 raw 3324
284 (empty) 0x8e480 null 3610440
Cristian Măgherușan-Stanciud367b002011-06-19 03:03:28 +0200285
Vadim Bendebury9202473d2011-09-21 14:46:43 -0700286config COLLECT_TIMESTAMPS
287 bool "Create a table of timestamps collected during boot"
Paul Menzel4e4a7632015-10-11 11:57:44 +0200288 default y if ARCH_X86
Vadim Bendebury9202473d2011-09-21 14:46:43 -0700289 help
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200290 Make coreboot create a table of timer-ID/timer-value pairs to
291 allow measuring time spent at different phases of the boot process.
292
Martin Rothb22bbe22018-03-07 15:32:16 -0700293config TIMESTAMPS_ON_CONSOLE
294 bool "Print the timestamp values on the console"
295 default n
296 depends on COLLECT_TIMESTAMPS
297 help
Kyösti Mälkki8b93cb72020-01-09 08:41:46 +0200298 Print the timestamps to the debug console if enabled at level info.
Martin Rothb22bbe22018-03-07 15:32:16 -0700299
Patrick Georgi7e9b9d82012-04-30 21:06:10 +0200300config USE_BLOBS
301 bool "Allow use of binary-only repository"
Felix Helda6b887e2019-12-28 19:10:12 +0100302 default y
Patrick Georgi7e9b9d82012-04-30 21:06:10 +0200303 help
304 This draws in the blobs repository, which contains binary files that
305 might be required for some chipsets or boards.
306 This flag ensures that a "Free" option remains available for users.
307
Marshall Dawson20ce4002019-10-28 15:55:03 -0600308config USE_AMD_BLOBS
309 bool "Allow AMD blobs repository (with license agreement)"
310 depends on USE_BLOBS
311 help
312 This draws in the amd_blobs repository, which contains binary files
313 distributed by AMD, including VBIOS, PSP bootloaders, SMU firmwares,
314 etc. Selecting this item to download or clone the repo implies your
315 agreement to the AMD license agreement. A copy of the license text
316 may be reviewed by reading Documentation/soc/amd/amdblobs_license.md,
317 and your copy of the license is present in the repo once downloaded.
318
319 Note that for some products, omitting PSP, SMU images, or other items
320 may result in a nonbooting coreboot.rom.
321
Julius Wernerbc1cb382020-06-18 15:03:22 -0700322config USE_QC_BLOBS
Benjamin Doron999d29e2020-07-01 01:47:22 +0000323 bool "Allow QC blobs repository (selecting this agrees to the license!)"
Julius Wernerbc1cb382020-06-18 15:03:22 -0700324 depends on USE_BLOBS
325 help
326 This draws in the qc_blobs repository, which contains binary files
327 distributed by Qualcomm that are required to build firmware for
328 certain Qualcomm SoCs (including QcLib, QC-SEC, qtiseclib and QUP
329 firmware). If you say Y here you are implicitly agreeing to the
330 Qualcomm license agreement which can be found at:
331 https://review.coreboot.org/cgit/qc_blobs.git/tree/LICENSE
332
333 *****************************************************
334 PLEASE MAKE SURE YOU READ AND AGREE TO ALL TERMS IN
335 ABOVE LICENSE AGREEMENT BEFORE SELECTING THIS OPTION!
336 *****************************************************
337
338 Not selecting this option means certain Qualcomm SoCs and related
339 mainboards cannot be built and will be hidden from the "Mainboards"
340 section.
341
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800342config COVERAGE
343 bool "Code coverage support"
344 depends on COMPILER_GCC
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800345 help
346 Add code coverage support for coreboot. This will store code
347 coverage information in CBMEM for extraction from user space.
348 If unsure, say N.
349
Ryan Salsamendiab37e9a2017-06-11 21:07:31 -0700350config UBSAN
351 bool "Undefined behavior sanitizer support"
352 default n
353 help
354 Instrument the code with checks for undefined behavior. If unsure,
355 say N because it adds a small performance penalty and may abort
356 on code that happens to work in spite of the UB.
357
Harshit Sharma0b1ec5a2020-08-05 21:16:31 -0700358config HAVE_ASAN_IN_ROMSTAGE
359 bool
Harshit Sharma2bcaba02020-06-09 20:25:16 -0700360 default n
Harshit Sharma0b1ec5a2020-08-05 21:16:31 -0700361
362config ASAN_IN_ROMSTAGE
363 bool
364 default n
365 help
366 Enable address sanitizer in romstage for platform.
367
368config HAVE_ASAN_IN_RAMSTAGE
369 bool
370 default n
371
372config ASAN_IN_RAMSTAGE
373 bool
374 default n
375 help
376 Enable address sanitizer in ramstage for platform.
377
378config ASAN
379 bool "Address sanitizer support"
380 default n
381 select ASAN_IN_ROMSTAGE if HAVE_ASAN_IN_ROMSTAGE
382 select ASAN_IN_RAMSTAGE if HAVE_ASAN_IN_RAMSTAGE
Arthur Heymans25a0c672022-03-24 00:15:46 +0100383 depends on COMPILER_GCC
Harshit Sharma2bcaba02020-06-09 20:25:16 -0700384 help
385 Enable address sanitizer - runtime memory debugger,
386 designed to find out-of-bounds accesses and use-after-scope bugs.
387
388 This feature consumes up to 1/8 of available memory and brings about
389 ~1.5x performance slowdown.
390
391 If unsure, say N.
392
Harshit Sharma0b1ec5a2020-08-05 21:16:31 -0700393if ASAN
Harshit Sharma3b9cc852020-07-06 23:38:31 -0700394 comment "Before using this feature, make sure that "
395 comment "asan_shadow_offset_callback patch is applied to GCC."
396endif
397
Kyösti Mälkki6766f4f2019-12-18 00:19:06 +0200398choice
399 prompt "Stage Cache for ACPI S3 resume"
Reka Norman166c3032022-12-19 11:11:48 +1100400 default NO_STAGE_CACHE if !HAVE_ACPI_RESUME || MAINBOARD_DISABLE_STAGE_CACHE
Kyösti Mälkki6766f4f2019-12-18 00:19:06 +0200401 default TSEG_STAGE_CACHE if SMM_TSEG
402
403config NO_STAGE_CACHE
404 bool "Disabled"
405 help
406 Do not save any component in stage cache for resume path. On resume,
407 all components would be read back from CBFS again.
408
Kyösti Mälkki0a4457f2019-08-01 20:29:14 +0300409config TSEG_STAGE_CACHE
Kyösti Mälkki6766f4f2019-12-18 00:19:06 +0200410 bool "TSEG"
411 depends on SMM_TSEG
Stefan Reinauer58470e32014-10-17 13:08:36 +0200412 help
Kyösti Mälkki0a4457f2019-08-01 20:29:14 +0300413 The option enables stage cache support for platform. Platform
414 can stash copies of postcar, ramstage and raw runtime data
415 inside SMM TSEG, to be restored on S3 resume path.
416
417config CBMEM_STAGE_CACHE
Kyösti Mälkki6766f4f2019-12-18 00:19:06 +0200418 bool "CBMEM"
419 depends on !SMM_TSEG
Kyösti Mälkki0a4457f2019-08-01 20:29:14 +0300420 help
421 The option enables stage cache support for platform. Platform
422 can stash copies of postcar, ramstage and raw runtime data
423 inside CBMEM.
424
425 While the approach is faster than reloading stages from boot media
426 it is also a possible attack scenario via which OS can possibly
427 circumvent SMM locks and SPI write protections.
428
429 If unsure, select 'N'
Stefan Reinauer58470e32014-10-17 13:08:36 +0200430
Kyösti Mälkki6766f4f2019-12-18 00:19:06 +0200431endchoice
432
Reka Norman166c3032022-12-19 11:11:48 +1100433config MAINBOARD_DISABLE_STAGE_CACHE
434 bool
435 help
436 Selected by mainboards which wish to disable the stage cache.
437 E.g. mainboards which don't use S3 resume in the field may wish to
438 disable it to save boot time at the cost of increasing S3 resume time.
439
Stefan Reinauer58470e32014-10-17 13:08:36 +0200440config UPDATE_IMAGE
441 bool "Update existing coreboot.rom image"
Stefan Reinauer58470e32014-10-17 13:08:36 +0200442 help
443 If this option is enabled, no new coreboot.rom file
444 is created. Instead it is expected that there already
445 is a suitable file for further processing.
446 The bootblock will not be modified.
447
Martin Roth5942e062016-01-20 14:59:21 -0700448 If unsure, select 'N'
449
Konstantin Aladyshev6544cb32015-01-24 18:52:10 +0400450config BOOTSPLASH_IMAGE
451 bool "Add a bootsplash image"
452 help
453 Select this option if you have a bootsplash image that you would
454 like to add to your ROM.
455
456 This will only add the image to the ROM. To actually run it check
457 options under 'Display' section.
458
459config BOOTSPLASH_FILE
460 string "Bootsplash path and filename"
461 depends on BOOTSPLASH_IMAGE
Martin Roth75e5cb72016-12-15 15:05:37 -0700462 # Default value set at the end of the file
Konstantin Aladyshev6544cb32015-01-24 18:52:10 +0400463 help
464 The path and filename of the file to use as graphical bootsplash
Nico Huber799e79d2023-07-16 19:24:13 +0200465 screen. The file format has to be JPEG with YCC 4:2:0 color sampling
466 unless converted with "Pre-process bootsplash file with ImageMagick".
467
468 The image can only be displayed by coreboot if it's smaller or has
469 the same size as the framebuffer resolution. Width and height have
470 to be a multiple of 16 pixels.
471
472 Setting these constraints allows a leaner implementation in coreboot.
473 The minimum necessary ImageMagick command line seems to be:
474 $ convert input.img -colorspace YCC -sampling-factor 4:2:0 bootsplash.jpg
475
476config BOOTSPLASH_CONVERT
477 bool "Pre-process bootsplash file with ImageMagick"
478 depends on BOOTSPLASH_IMAGE
479 help
480 Use ImageMagick (`convert` program) to convert a bootsplash image
481 to the supported JPEG format.
482
483config BOOTSPLASH_CONVERT_QUALITY
484 int "Bootsplash JPEG target quality (%)"
485 depends on BOOTSPLASH_CONVERT
486 range 1 100
487 # Default value set at the end of the file
488
489config BOOTSPLASH_CONVERT_RESIZE
490 bool "Resize bootsplash image"
491 depends on BOOTSPLASH_CONVERT
492 help
493 Resize the image to the given resolution. Aspect ratio will be kept,
494 adding black bars as necessary.
495
496config BOOTSPLASH_CONVERT_RESOLUTION
497 string "Bootsplash image target size"
498 depends on BOOTSPLASH_CONVERT_RESIZE
499 # Default value set at the end of the file
500 help
501 Target image resolution given as <width>x<height>, e.g. 1024x768.
502 Values not divisible by 16 will be rounded down.
503
504 When using coreboot to display the bootsplash image (CONFIG_BOOTSPLASH),
505 set this lower or equal to the minimum resolution you expect.
506
507config BOOTSPLASH_CONVERT_COLORSWAP
508 bool "Swap red and blue color channels"
509 depends on BOOTSPLASH_CONVERT
510 help
511 The JPEG decoder currently ignores the framebuffer color order.
512 If your colors seem all wrong, try this option.
Konstantin Aladyshev6544cb32015-01-24 18:52:10 +0400513
Duncan Laurie36e6c6f2020-05-09 19:20:10 -0700514config FW_CONFIG
515 bool "Firmware Configuration Probing"
516 default n
517 help
518 Enable support for probing devices with fw_config. This is a simple
519 bitmask broken into fields and options for probing.
520
Duncan Laurie36e6c6f2020-05-09 19:20:10 -0700521config FW_CONFIG_SOURCE_CHROMEEC_CBI
522 bool "Obtain Firmware Configuration value from Google Chrome EC CBI"
523 depends on FW_CONFIG && EC_GOOGLE_CHROMEEC
524 default n
525 help
526 This option tells coreboot to read the firmware configuration value
527 from the Google Chrome Embedded Controller CBI interface. This source
528 is not tried if FW_CONFIG_SOURCE_CBFS is enabled and the value was
529 found in CBFS.
530
Wonkyu Kim38649732021-11-01 20:15:30 -0700531config FW_CONFIG_SOURCE_CBFS
532 bool "Obtain Firmware Configuration value from CBFS"
533 depends on FW_CONFIG
534 default n
535 help
536 With this option enabled coreboot will look for the 32bit firmware
537 configuration value in CBFS at the selected prefix with the file name
538 "fw_config". This option will override other sources and allow the
539 local image to preempt the mainboard selected source and can be used as
540 FW_CONFIG_SOURCE_CHROMEEC_CBI fallback option.
541
Wonkyu Kim43e26922021-11-01 20:55:25 -0700542config FW_CONFIG_SOURCE_VPD
543 bool "Obtain Firmware Configuration value from VPD"
544 depends on FW_CONFIG && VPD
545 default n
546 help
547 With this option enabled coreboot will look for the 32bit firmware
548 configuration value in VPD key name "fw_config". This option will
549 override other sources and allow the local image to preempt the mainboard
550 selected source and can be used for other FW_CONFIG_SOURCEs fallback option.
551
Nico Huber94cdec62019-06-06 19:36:02 +0200552config HAVE_RAMPAYLOAD
553 bool
554
Subrata Banik7e893a02019-05-06 14:17:41 +0530555config RAMPAYLOAD
556 bool "Enable coreboot flow without executing ramstage"
Subrata Banik86dbe0f2019-06-28 18:18:37 +0530557 default y if ARCH_X86
Nico Huber94cdec62019-06-06 19:36:02 +0200558 depends on HAVE_RAMPAYLOAD
Subrata Banik7e893a02019-05-06 14:17:41 +0530559 help
560 If this option is enabled, coreboot flow will skip ramstage
561 loading and execution of ramstage to load payload.
562
563 Instead it is expected to load payload from postcar stage itself.
564
565 In this flow coreboot will perform basic x86 initialization
566 (DRAM resource allocation), MTRR programming,
567 Skip PCI enumeration logic and only allocate BAR for fixed devices
568 (bootable devices, TPM over GSPI).
569
Subrata Banik37bead62020-02-09 19:13:52 +0530570config HAVE_CONFIGURABLE_RAMSTAGE
571 bool
572
Ronald G. Minnich466ca2c2019-10-22 02:02:24 +0000573config CONFIGURABLE_RAMSTAGE
574 bool "Enable a configurable ramstage."
575 default y if ARCH_X86
Subrata Banik37bead62020-02-09 19:13:52 +0530576 depends on HAVE_CONFIGURABLE_RAMSTAGE
Ronald G. Minnich466ca2c2019-10-22 02:02:24 +0000577 help
578 A configurable ramstage allows you to select which parts of the ramstage
579 to run. Currently, we can only select a minimal PCI scanning step.
580 The minimal PCI scanning will only check those parts that are enabled
581 in the devicetree.cb. By convention none of those devices should be bridges.
582
583config MINIMAL_PCI_SCANNING
584 bool "Enable minimal PCI scanning"
Subrata Banik1cb26a62020-02-09 19:35:16 +0530585 depends on CONFIGURABLE_RAMSTAGE && PCI
Ronald G. Minnich466ca2c2019-10-22 02:02:24 +0000586 help
Subrata Banik1cb26a62020-02-09 19:35:16 +0530587 If this option is enabled, coreboot will scan only PCI devices
Ronald G. Minnich466ca2c2019-10-22 02:02:24 +0000588 marked as mandatory in devicetree.cb
Maximilian Brune1d7a9de2022-04-14 14:54:16 +0200589
590menu "Software Bill Of Materials (SBOM)"
591
592source "src/sbom/Kconfig"
593
594endmenu
Uwe Hermannc04be932009-10-05 13:55:28 +0000595endmenu
596
Martin Roth026e4dc2015-06-19 23:17:15 -0600597menu "Mainboard"
598
Stefan Reinauera48ca842015-04-04 01:58:28 +0200599source "src/mainboard/Kconfig"
Stefan Reinauer8aedcbc2010-12-16 23:37:17 +0000600
Marshall Dawsone9375132016-09-04 08:38:33 -0600601config DEVICETREE
602 string
603 default "devicetree.cb"
604 help
605 This symbol allows mainboards to select a different file under their
606 mainboard directory for the devicetree.cb file. This allows the board
607 variants that need different devicetrees to be in the same directory.
608
609 Examples: "devicetree.variant.cb"
610 "variant/devicetree.cb"
611
Furquan Shaikhf2419982018-06-21 18:50:48 -0700612config OVERRIDE_DEVICETREE
613 string
614 default ""
615 help
616 This symbol allows variants to provide an override devicetree file to
617 override the registers and/or add new devices on top of the ones
618 provided by baseboard devicetree using CONFIG_DEVICETREE.
619
620 Examples: "devicetree.variant-override.cb"
621 "variant/devicetree-override.cb"
622
Patrick Georgi8a3592e2015-09-16 18:10:52 +0200623config FMDFILE
624 string "fmap description file in fmd format"
Patrick Georgib8fba862020-06-17 21:06:53 +0200625 default "src/mainboard/\$(CONFIG_MAINBOARD_DIR)/chromeos.fmd" if CHROMEOS
Patrick Georgi8a3592e2015-09-16 18:10:52 +0200626 default ""
627 help
628 The build system creates a default FMAP from ROM_SIZE and CBFS_SIZE,
629 but in some cases more complex setups are required.
630 When an fmd is specified, it overrides the default format.
631
Arthur Heymans965881b2019-09-25 13:18:52 +0200632config CBFS_SIZE
633 hex "Size of CBFS filesystem in ROM"
634 depends on FMDFILE = ""
635 # Default value set at the end of the file
636 help
637 This is the part of the ROM actually managed by CBFS, located at the
Alexander Goncharov893c3ae82023-02-04 15:20:37 +0400638 end of the ROM (passed through cbfstool -o) on x86 and at the start
Arthur Heymans965881b2019-09-25 13:18:52 +0200639 of the ROM (passed through cbfstool -s) everywhere else. It defaults
640 to span the whole ROM on all but Intel systems that use an Intel Firmware
641 Descriptor. It can be overridden to make coreboot live alongside other
642 components like ChromeOS's vboot/FMAP or Intel's IFD / ME / TXE
643 binaries. This symbol should only be used to generate a default FMAP and
644 is unused when a non-default fmd file is provided via CONFIG_FMDFILE.
645
Martin Rothda1ca202015-12-26 16:51:16 -0700646endmenu
647
Martin Rothb09a5692016-01-24 19:38:33 -0700648# load site-local kconfig to allow user specific defaults and overrides
649source "site-local/Kconfig"
650
Vladimir Serbinenkoa9db82f2014-10-16 13:21:47 +0200651config SYSTEM_TYPE_LAPTOP
Martin Roth595e7772015-04-26 18:53:26 -0600652 default n
653 bool
Vladimir Serbinenkoa9db82f2014-10-16 13:21:47 +0200654
Duncan Laurie8312df42019-02-01 11:33:57 -0800655config SYSTEM_TYPE_TABLET
656 default n
657 bool
658
659config SYSTEM_TYPE_DETACHABLE
660 default n
661 bool
662
663config SYSTEM_TYPE_CONVERTIBLE
664 default n
665 bool
666
Werner Zehc0fb3612016-01-14 15:08:36 +0100667config CBFS_AUTOGEN_ATTRIBUTES
668 default n
669 bool
670 help
671 If this option is selected, every file in cbfs which has a constraint
672 regarding position or alignment will get an additional file attribute
673 which describes this constraint.
674
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000675menu "Chipset"
676
Duncan Lauried2119762015-06-08 18:11:56 -0700677comment "SoC"
Martin Roth7e486862022-06-22 20:58:06 -0600678source "src/soc/*/*/Kconfig"
679source "src/soc/*/*/Kconfig.common"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000680comment "CPU"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200681source "src/cpu/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000682comment "Northbridge"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200683source "src/northbridge/*/*/Kconfig"
Angel Ponsf462b3d2021-01-20 00:36:31 +0100684source "src/northbridge/*/*/Kconfig.common"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000685comment "Southbridge"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200686source "src/southbridge/*/*/Kconfig"
Angel Ponsc027ece2021-02-16 16:13:35 +0100687source "src/southbridge/*/*/Kconfig.common"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000688comment "Super I/O"
Omar Pakker57603e22016-07-29 23:31:45 +0200689source "src/superio/*/*/Kconfig"
Sven Schnelle7592e8b2011-01-27 11:43:03 +0000690comment "Embedded Controllers"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200691source "src/ec/acpi/Kconfig"
692source "src/ec/*/*/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000693
Martin Roth59aa2b12015-06-20 16:17:12 -0600694source "src/southbridge/intel/common/firmware/Kconfig"
Martin Rothe1523ec2015-06-19 22:30:43 -0600695source "src/vendorcode/*/Kconfig"
Martin Roth59aa2b12015-06-20 16:17:12 -0600696
Martin Rothe1523ec2015-06-19 22:30:43 -0600697source "src/arch/*/Kconfig"
698
Duncan Lauriee335c2e2020-07-29 16:28:43 -0700699config CHIPSET_DEVICETREE
700 string
701 default ""
702 help
703 This symbol allows a chipset to provide a set of default settings in
704 a devicetree which are common to all mainboards. This may include
705 devices (including alias names), chip drivers, register settings,
706 and others. This path is relative to the src/ directory.
707
708 Example: "chipset.cb"
709
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000710endmenu
Patrick Georgi0588d192009-08-12 15:00:51 +0000711
Stefan Reinauera48ca842015-04-04 01:58:28 +0200712source "src/device/Kconfig"
Stefan Reinauer95a63962012-11-13 17:00:01 -0800713
Rudolf Marekd9c25492010-05-16 15:31:53 +0000714menu "Generic Drivers"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200715source "src/drivers/*/Kconfig"
Stefan Reinauer86ddd732016-03-11 20:22:28 -0800716source "src/drivers/*/*/Kconfig"
Duncan Laurie2cc126b2020-08-28 19:46:35 +0000717source "src/drivers/*/*/*/Kconfig"
Lee Leahy48dbc662017-05-08 16:56:03 -0700718source "src/commonlib/storage/Kconfig"
Rudolf Marekd9c25492010-05-16 15:31:53 +0000719endmenu
720
Philipp Deppenwiese1899fbe2017-10-16 17:09:33 +0200721menu "Security"
722
723source "src/security/Kconfig"
Wim Vervoorne32d16f2019-11-14 14:10:28 +0100724source "src/vendorcode/eltan/security/Kconfig"
Philipp Deppenwiese1899fbe2017-10-16 17:09:33 +0200725
726endmenu
727
Martin Roth09210a12016-05-17 11:28:23 -0600728source "src/acpi/Kconfig"
729
Aaron Durbin4a36c4e2016-08-11 11:02:26 -0500730# This option is for the current boards/chipsets where SPI flash
731# is not the boot device. Currently nearly all boards/chipsets assume
732# SPI flash is the boot device.
733config BOOT_DEVICE_NOT_SPI_FLASH
734 bool
735 default n
736
737config BOOT_DEVICE_SPI_FLASH
738 bool
739 default y if !BOOT_DEVICE_NOT_SPI_FLASH
740 default n
741
Aaron Durbin16c173f2016-08-11 14:04:10 -0500742config BOOT_DEVICE_MEMORY_MAPPED
743 bool
744 default y if ARCH_X86 && BOOT_DEVICE_SPI_FLASH
745 default n
746 help
747 Inform system if SPI is memory-mapped or not.
748
Aaron Durbine8e118d2016-08-12 15:00:10 -0500749config BOOT_DEVICE_SUPPORTS_WRITES
750 bool
751 default n
752 help
753 Indicate that the platform has writable boot device
754 support.
755
Patrick Georgi0770f252015-04-22 13:28:21 +0200756config RTC
757 bool
758 default n
759
Patrick Georgi0588d192009-08-12 15:00:51 +0000760config HEAP_SIZE
761 hex
Patrick Georgic8a69552024-01-16 17:04:55 +0000762 default 0x100000
Patrick Georgi0588d192009-08-12 15:00:51 +0000763
Julius Wernerc3e7c4e2014-09-19 13:18:16 -0700764config STACK_SIZE
765 hex
Arthur Heymans3951bc72022-05-23 23:28:44 +0200766 default 0x2000 if ARCH_X86
Julius Werner66a476a2015-10-12 16:45:21 -0700767 default 0x0
Julius Wernerc3e7c4e2014-09-19 13:18:16 -0700768
Patrick Georgi0588d192009-08-12 15:00:51 +0000769config MAX_CPUS
770 int
771 default 1
772
Stefan Reinauera48ca842015-04-04 01:58:28 +0200773source "src/console/Kconfig"
Patrick Georgi0588d192009-08-12 15:00:51 +0000774
Arthur Heymanscbc5d3f2023-04-25 15:48:46 +0200775config ACPI_S1_NOT_SUPPORTED
776 bool
777 default n
778 help
779 Set this to 'y' on platforms that do not support ACPI S1 state.
780
Patrick Georgi0588d192009-08-12 15:00:51 +0000781config HAVE_ACPI_RESUME
782 bool
783 default n
784
Wim Vervoornbccc7e72020-01-15 11:31:25 +0100785config DISABLE_ACPI_HIBERNATE
786 bool
787 default n
788 help
789 Removes S4 from the available sleepstates
790
Aaron Durbin87c9fae2016-01-22 15:26:04 -0600791config RESUME_PATH_SAME_AS_BOOT
792 bool
793 default y if ARCH_X86
794 depends on HAVE_ACPI_RESUME
795 help
796 This option indicates that when a system resumes it takes the
797 same path as a regular boot. e.g. an x86 system runs from the
798 reset vector at 0xfffffff0 on both resume and warm/cold boot.
799
Kyösti Mälkki76c43862019-07-01 17:25:41 +0300800config NO_MONOTONIC_TIMER
Aaron Durbina4217912013-04-29 22:31:51 -0500801 def_bool n
Kyösti Mälkki76c43862019-07-01 17:25:41 +0300802
803config HAVE_MONOTONIC_TIMER
804 bool
805 depends on !NO_MONOTONIC_TIMER
Kyösti Mälkkib28b6b52019-07-01 15:38:25 +0300806 default y
Aaron Durbina4217912013-04-29 22:31:51 -0500807 help
808 The board/chipset provides a monotonic timer.
809
Aaron Durbine5e36302014-09-25 10:05:15 -0500810config GENERIC_UDELAY
Kyösti Mälkki76c43862019-07-01 17:25:41 +0300811 bool
Aaron Durbine5e36302014-09-25 10:05:15 -0500812 depends on HAVE_MONOTONIC_TIMER
Kyösti Mälkki76c43862019-07-01 17:25:41 +0300813 default y if !ARCH_X86
Aaron Durbine5e36302014-09-25 10:05:15 -0500814 help
815 The board/chipset uses a generic udelay function utilizing the
816 monotonic timer.
817
Aaron Durbin340ca912013-04-30 09:58:12 -0500818config TIMER_QUEUE
819 def_bool n
820 depends on HAVE_MONOTONIC_TIMER
821 help
Kyösti Mälkkiecd84242013-09-13 07:57:49 +0300822 Provide a timer queue for performing time-based callbacks.
Aaron Durbin340ca912013-04-30 09:58:12 -0500823
Aaron Durbin4409a5e2013-05-06 12:20:52 -0500824config COOP_MULTITASKING
825 def_bool n
Raul E Rangel199c45c2021-11-02 11:29:33 -0600826 select TIMER_QUEUE
Arthur Heymansf4c11dc2022-11-01 23:48:32 +0100827 depends on ARCH_X86
Aaron Durbin4409a5e2013-05-06 12:20:52 -0500828 help
829 Cooperative multitasking allows callbacks to be multiplexed on the
Raul E Rangel199c45c2021-11-02 11:29:33 -0600830 main thread. With this enabled it allows for multiple execution paths
831 to take place when they have udelay() calls within their code.
Aaron Durbin4409a5e2013-05-06 12:20:52 -0500832
833config NUM_THREADS
834 int
835 default 4
836 depends on COOP_MULTITASKING
837 help
838 How many execution threads to cooperatively multitask with.
839
Angel Pons9bc780f2021-05-20 16:43:08 +0200840config HAVE_MAINBOARD_SPECIFIC_OPTION_BACKEND
841 bool
842 help
843 Selected by mainboards which implement a mainboard-specific mechanism
844 to access the values for runtime-configurable options. For example, a
845 custom BMC interface or an EEPROM with an externally-imposed layout.
846
Patrick Georgi0588d192009-08-12 15:00:51 +0000847config HAVE_OPTION_TABLE
848 bool
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000849 default n
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000850 help
851 This variable specifies whether a given board has a cmos.layout
852 file containing NVRAM/CMOS bit definitions.
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000853 It defaults to 'n' but can be selected in mainboard/*/Kconfig.
Patrick Georgi0588d192009-08-12 15:00:51 +0000854
Angel Ponsf206cda2021-05-17 12:12:39 +0200855config CMOS_LAYOUT_FILE
856 string
857 default "src/mainboard/\$(MAINBOARDDIR)/cmos.layout"
858 depends on HAVE_OPTION_TABLE
859
Patrick Georgi0588d192009-08-12 15:00:51 +0000860config PCI_IO_CFG_EXT
861 bool
862 default n
863
864config IOAPIC
865 bool
Kyösti Mälkkic25ecb52021-06-06 08:28:16 +0300866 default y if SMP
Patrick Georgi0588d192009-08-12 15:00:51 +0000867 default n
868
Myles Watson45bb25f2009-09-22 18:49:08 +0000869config USE_WATCHDOG_ON_BOOT
870 bool
871 default n
872
Myles Watson45bb25f2009-09-22 18:49:08 +0000873config GFXUMA
874 bool
Myles Watsond73c1b52009-10-26 15:14:07 +0000875 default n
Myles Watson45bb25f2009-09-22 18:49:08 +0000876 help
877 Enable Unified Memory Architecture for graphics.
878
Myles Watsonb8e20272009-10-15 13:35:47 +0000879config HAVE_MP_TABLE
880 bool
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000881 help
882 This variable specifies whether a given board has MP table support.
883 It is usually set in mainboard/*/Kconfig.
884 Whether or not the MP table is actually generated by coreboot
885 is configurable by the user via GENERATE_MP_TABLE.
Myles Watsonb8e20272009-10-15 13:35:47 +0000886
887config HAVE_PIRQ_TABLE
888 bool
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000889 help
890 This variable specifies whether a given board has PIRQ table support.
891 It is usually set in mainboard/*/Kconfig.
892 Whether or not the PIRQ table is actually generated by coreboot
893 is configurable by the user via GENERATE_PIRQ_TABLE.
Myles Watsonb8e20272009-10-15 13:35:47 +0000894
Aaron Durbin9420a522015-11-17 16:31:00 -0600895config ACPI_NHLT
896 bool
897 default n
898 help
899 Build support for NHLT (non HD Audio) ACPI table generation.
900
Myles Watsond73c1b52009-10-26 15:14:07 +0000901#These Options are here to avoid "undefined" warnings.
902#The actual selection and help texts are in the following menu.
903
Uwe Hermann168b11b2009-10-07 16:15:40 +0000904menu "System tables"
Myles Watson45bb25f2009-09-22 18:49:08 +0000905
Myles Watsonb8e20272009-10-15 13:35:47 +0000906config GENERATE_MP_TABLE
Kyösti Mälkkica5a7932021-06-08 08:06:06 +0300907 prompt "Generate an MP table" if HAVE_MP_TABLE
Stefan Reinauer56cd70b2012-11-13 17:33:08 -0800908 bool
Felix Held6e5cc4c2024-01-16 20:48:40 +0100909 depends on !ECAM_MMCONF_SUPPORT || ECAM_MMCONF_BUS_NUMBER <= 256
Kyösti Mälkkica5a7932021-06-08 08:06:06 +0300910 default HAVE_MP_TABLE
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000911 help
912 Generate an MP table (conforming to the Intel MultiProcessor
913 specification 1.4) for this board.
914
915 If unsure, say Y.
Myles Watson45bb25f2009-09-22 18:49:08 +0000916
Myles Watsonb8e20272009-10-15 13:35:47 +0000917config GENERATE_PIRQ_TABLE
Stefan Reinauer56cd70b2012-11-13 17:33:08 -0800918 prompt "Generate a PIRQ table" if HAVE_PIRQ_TABLE
919 bool
920 default HAVE_PIRQ_TABLE
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000921 help
922 Generate a PIRQ table for this board.
923
924 If unsure, say Y.
Myles Watson45bb25f2009-09-22 18:49:08 +0000925
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200926config GENERATE_SMBIOS_TABLES
927 depends on ARCH_X86
928 bool "Generate SMBIOS tables"
929 default y
930 help
931 Generate SMBIOS tables for this board.
932
933 If unsure, say Y.
934
Angel Pons437da712021-09-03 16:51:40 +0200935config SMBIOS_TYPE41_PROVIDED_BY_DEVTREE
936 bool
937 depends on ARCH_X86
938 help
939 If enabled, only generate SMBIOS Type 41 entries for PCI devices in
940 the devicetree for which Type 41 information is provided, e.g. with
941 the `smbios_dev_info` devicetree syntax. This is useful to manually
942 assign specific instance IDs to onboard devices irrespective of the
943 device traversal order. It is assumed that instance IDs for devices
944 of the same class are unique.
945 When disabled, coreboot autogenerates SMBIOS Type 41 entries for all
946 appropriate PCI devices in the devicetree. Instance IDs are assigned
947 successive numbers from a monotonically increasing counter, with one
948 counter for each device class.
949
Vladimir Serbinenko0afdec42015-05-30 23:08:26 +0200950config SMBIOS_PROVIDED_BY_MOBO
951 bool
952 default n
953
Kyösti Mälkki96581b32022-12-16 01:42:44 +0200954if GENERATE_SMBIOS_TABLES
955
Hao Wang634c7a42022-06-14 10:56:40 +0800956config BIOS_VENDOR
957 prompt "SMBIOS BIOS Vendor name"
958 string
959 default "coreboot"
960 help
961 The BIOS Vendor name to store in the SMBIOS Type0 table.
962
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200963config MAINBOARD_SERIAL_NUMBER
Nico Huberebd8a4f2017-11-01 09:49:16 +0100964 prompt "SMBIOS Serial Number" if !SMBIOS_PROVIDED_BY_MOBO
965 string
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200966 default "123456789"
Martin Roth595e7772015-04-26 18:53:26 -0600967 help
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200968 The Serial Number to store in SMBIOS structures.
969
970config MAINBOARD_VERSION
Nico Huberebd8a4f2017-11-01 09:49:16 +0100971 prompt "SMBIOS Version Number" if !SMBIOS_PROVIDED_BY_MOBO
972 string
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200973 default "1.0"
974 help
975 The Version Number to store in SMBIOS structures.
976
977config MAINBOARD_SMBIOS_MANUFACTURER
Nico Huberebd8a4f2017-11-01 09:49:16 +0100978 prompt "SMBIOS Manufacturer" if !SMBIOS_PROVIDED_BY_MOBO
979 string
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200980 default MAINBOARD_VENDOR
981 help
982 Override the default Manufacturer stored in SMBIOS structures.
983
984config MAINBOARD_SMBIOS_PRODUCT_NAME
Nico Huberebd8a4f2017-11-01 09:49:16 +0100985 prompt "SMBIOS Product name" if !SMBIOS_PROVIDED_BY_MOBO
986 string
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200987 default MAINBOARD_PART_NUMBER
988 help
989 Override the default Product name stored in SMBIOS structures.
990
Johnny Linc746a742020-06-03 11:44:22 +0800991config VPD_SMBIOS_VERSION
992 bool "Populates SMBIOS type 0 version from the VPD_RO variable 'firmware_version'"
993 default n
Kyösti Mälkki96581b32022-12-16 01:42:44 +0200994 depends on VPD
Johnny Linc746a742020-06-03 11:44:22 +0800995 help
996 Selecting this option will read firmware_version from
997 VPD_RO and override SMBIOS type 0 version. One special
998 scenario of using this feature is to assign a BIOS version
999 to a coreboot image without the need to rebuild from source.
1000
Kyösti Mälkki96581b32022-12-16 01:42:44 +02001001endif
1002
Myles Watson45bb25f2009-09-22 18:49:08 +00001003endmenu
1004
Martin Roth21c06502016-02-04 19:52:27 -07001005source "payloads/Kconfig"
Peter Stugea758ca22009-09-17 16:21:31 +00001006
Uwe Hermann168b11b2009-10-07 16:15:40 +00001007menu "Debugging"
1008
Nico Huberd67edca2018-11-13 19:28:07 +01001009comment "CPU Debug Settings"
Arthur Heymansaae81902019-11-04 21:50:21 +01001010source "src/cpu/*/Kconfig.debug_cpu"
Nico Huberd67edca2018-11-13 19:28:07 +01001011
Martin Roth7a4583a2023-10-25 16:15:51 -06001012comment "Vendorcode Debug Settings"
1013 source "src/vendorcode/*/*/Kconfig.debug"
1014
Arthur Heymans71bd7e42019-10-20 14:20:53 +02001015comment "BLOB Debug Settings"
1016source "src/drivers/intel/fsp*/Kconfig.debug_blob"
1017
Nico Huberd67edca2018-11-13 19:28:07 +01001018comment "General Debug Settings"
1019
Uwe Hermann168b11b2009-10-07 16:15:40 +00001020# TODO: Better help text and detailed instructions.
Patrick Georgi0588d192009-08-12 15:00:51 +00001021config GDB_STUB
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +00001022 bool "GDB debugging support"
Rudolf Marek65888022012-03-25 20:51:16 +02001023 default n
Arthur Heymans8e980132019-11-04 09:33:04 +01001024 depends on DRIVERS_UART
Patrick Georgi0588d192009-08-12 15:00:51 +00001025 help
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +00001026 If enabled, you will be able to set breakpoints for gdb debugging.
Elyes Haouas95231b22022-02-16 22:37:44 +01001027 See src/arch/x86/c_start.S for details.
Patrick Georgi0588d192009-08-12 15:00:51 +00001028
Denis 'GNUtoo' Cariklie4cece02012-06-22 15:56:37 +02001029config GDB_WAIT
Denis 'GNUtoo' Carikli7d234f22015-12-10 21:58:52 +01001030 bool "Wait for a GDB connection in the ramstage"
Denis 'GNUtoo' Cariklie4cece02012-06-22 15:56:37 +02001031 default n
1032 depends on GDB_STUB
1033 help
Denis 'GNUtoo' Carikli7d234f22015-12-10 21:58:52 +01001034 If enabled, coreboot will wait for a GDB connection in the ramstage.
1035
Denis 'GNUtoo' Cariklie4cece02012-06-22 15:56:37 +02001036
Julius Wernerd82e0cf2015-02-17 17:27:23 -08001037config FATAL_ASSERTS
1038 bool "Halt when hitting a BUG() or assertion error"
1039 default n
1040 help
1041 If enabled, coreboot will call hlt() on a BUG() or failed ASSERT().
1042
Nico Huber371a6672018-11-13 22:06:40 +01001043config HAVE_DEBUG_GPIO
1044 bool
1045
1046config DEBUG_GPIO
1047 bool "Output verbose GPIO debug messages"
1048 depends on HAVE_DEBUG_GPIO
1049
Stefan Reinauerfe422182012-05-02 16:33:18 -07001050config DEBUG_CBFS
1051 bool "Output verbose CBFS debug messages"
1052 default n
Stefan Reinauerfe422182012-05-02 16:33:18 -07001053 help
1054 This option enables additional CBFS related debug messages.
1055
Jens Rottmann0d11f2d2010-08-26 12:46:02 +00001056config HAVE_DEBUG_RAM_SETUP
1057 def_bool n
1058
Uwe Hermann01ce6012010-03-05 10:03:50 +00001059config DEBUG_RAM_SETUP
1060 bool "Output verbose RAM init debug messages"
1061 default n
Jens Rottmann0d11f2d2010-08-26 12:46:02 +00001062 depends on HAVE_DEBUG_RAM_SETUP
Uwe Hermann01ce6012010-03-05 10:03:50 +00001063 help
1064 This option enables additional RAM init related debug messages.
1065 It is recommended to enable this when debugging issues on your
1066 board which might be RAM init related.
1067
1068 Note: This option will increase the size of the coreboot image.
1069
1070 If unsure, say N.
1071
Myles Watson80e914ff2010-06-01 19:25:31 +00001072config DEBUG_PIRQ
1073 bool "Check PIRQ table consistency"
1074 default n
1075 depends on GENERATE_PIRQ_TABLE
1076 help
1077 If unsure, say N.
1078
Jens Rottmann0d11f2d2010-08-26 12:46:02 +00001079config HAVE_DEBUG_SMBUS
1080 def_bool n
1081
Uwe Hermann01ce6012010-03-05 10:03:50 +00001082config DEBUG_SMBUS
1083 bool "Output verbose SMBus debug messages"
1084 default n
Jens Rottmann0d11f2d2010-08-26 12:46:02 +00001085 depends on HAVE_DEBUG_SMBUS
Uwe Hermann01ce6012010-03-05 10:03:50 +00001086 help
1087 This option enables additional SMBus (and SPD) debug messages.
1088
1089 Note: This option will increase the size of the coreboot image.
1090
1091 If unsure, say N.
1092
1093config DEBUG_SMI
1094 bool "Output verbose SMI debug messages"
1095 default n
1096 depends on HAVE_SMI_HANDLER
Angel Pons12d48cd2020-10-03 12:22:04 +02001097 select SPI_FLASH_SMM if EM100PRO_SPI_CONSOLE || CONSOLE_SPI_FLASH
Uwe Hermann01ce6012010-03-05 10:03:50 +00001098 help
1099 This option enables additional SMI related debug messages.
1100
1101 Note: This option will increase the size of the coreboot image.
1102
1103 If unsure, say N.
1104
Kyösti Mälkki94464472020-06-13 13:45:42 +03001105config DEBUG_PERIODIC_SMI
1106 bool "Trigger SMI periodically"
1107 depends on DEBUG_SMI
1108
Uwe Hermanna953f372010-11-10 00:14:32 +00001109# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
1110# printk(BIOS_DEBUG, ...) calls.
1111config DEBUG_MALLOC
Marc Jonescf3dcd62020-12-02 11:34:17 -07001112 prompt "Output verbose malloc debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 || CONSOLE_OVERRIDE_LOGLEVEL
Stefan Reinauer95a63962012-11-13 17:00:01 -08001113 bool
Uwe Hermanna953f372010-11-10 00:14:32 +00001114 default n
Uwe Hermanna953f372010-11-10 00:14:32 +00001115 help
1116 This option enables additional malloc related debug messages.
1117
1118 Note: This option will increase the size of the coreboot image.
1119
1120 If unsure, say N.
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +03001121
Marc Jones5b5c52e2020-10-12 11:44:46 -06001122# Only visible if DEBUG_SPEW (8) is set.
1123config DEBUG_RESOURCES
Marc Jonescf3dcd62020-12-02 11:34:17 -07001124 bool "Output verbose PCI MEM and IO resource debug messages" if DEFAULT_CONSOLE_LOGLEVEL_8 || CONSOLE_OVERRIDE_LOGLEVEL
Marc Jones5b5c52e2020-10-12 11:44:46 -06001125 default n
1126 help
1127 This option enables additional PCI memory and IO debug messages.
1128 Note: This option will increase the size of the coreboot image.
1129 If unsure, say N.
1130
Kyösti Mälkki66277952018-12-31 15:22:34 +02001131config DEBUG_CONSOLE_INIT
1132 bool "Debug console initialisation code"
1133 default n
1134 help
1135 With this option printk()'s are attempted before console hardware
1136 initialisation has been completed. Your mileage may vary.
1137
1138 Typically you will need to modify source in console_hw_init() such
1139 that a working console appears before the one you want to debug.
1140
1141 If unsure, say N.
1142
Uwe Hermanna953f372010-11-10 00:14:32 +00001143# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
1144# printk(BIOS_DEBUG, ...) calls.
Myles Watson6c9bc012010-09-07 22:30:15 +00001145config REALMODE_DEBUG
Marc Jonescf3dcd62020-12-02 11:34:17 -07001146 prompt "Enable debug messages for option ROM execution" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 || CONSOLE_OVERRIDE_LOGLEVEL
Stefan Reinauer95a63962012-11-13 17:00:01 -08001147 bool
Myles Watson6c9bc012010-09-07 22:30:15 +00001148 default n
Peter Stuge5015f792010-11-10 02:00:32 +00001149 depends on PCI_OPTION_ROM_RUN_REALMODE
Myles Watson6c9bc012010-09-07 22:30:15 +00001150 help
1151 This option enables additional x86emu related debug messages.
1152
1153 Note: This option will increase the time to emulate a ROM.
1154
1155 If unsure, say N.
1156
Uwe Hermann01ce6012010-03-05 10:03:50 +00001157config X86EMU_DEBUG
1158 bool "Output verbose x86emu debug messages"
1159 default n
1160 depends on PCI_OPTION_ROM_RUN_YABEL
1161 help
1162 This option enables additional x86emu related debug messages.
1163
1164 Note: This option will increase the size of the coreboot image.
1165
1166 If unsure, say N.
1167
Elyes Haouas9718e262023-05-01 17:22:03 +02001168if X86EMU_DEBUG
1169
Uwe Hermann01ce6012010-03-05 10:03:50 +00001170config X86EMU_DEBUG_JMP
1171 bool "Trace JMP/RETF"
1172 default n
Uwe Hermann01ce6012010-03-05 10:03:50 +00001173 help
1174 Print information about JMP and RETF opcodes from x86emu.
1175
1176 Note: This option will increase the size of the coreboot image.
1177
1178 If unsure, say N.
1179
1180config X86EMU_DEBUG_TRACE
1181 bool "Trace all opcodes"
1182 default n
Uwe Hermann01ce6012010-03-05 10:03:50 +00001183 help
1184 Print _all_ opcodes that are executed by x86emu.
Stefan Reinauer14e22772010-04-27 06:56:47 +00001185
Uwe Hermann01ce6012010-03-05 10:03:50 +00001186 WARNING: This will produce a LOT of output and take a long time.
1187
1188 Note: This option will increase the size of the coreboot image.
1189
1190 If unsure, say N.
1191
1192config X86EMU_DEBUG_PNP
1193 bool "Log Plug&Play accesses"
1194 default n
Uwe Hermann01ce6012010-03-05 10:03:50 +00001195 help
1196 Print Plug And Play accesses made by option ROMs.
1197
1198 Note: This option will increase the size of the coreboot image.
1199
1200 If unsure, say N.
1201
1202config X86EMU_DEBUG_DISK
1203 bool "Log Disk I/O"
1204 default n
Uwe Hermann01ce6012010-03-05 10:03:50 +00001205 help
1206 Print Disk I/O related messages.
1207
1208 Note: This option will increase the size of the coreboot image.
1209
1210 If unsure, say N.
1211
1212config X86EMU_DEBUG_PMM
1213 bool "Log PMM"
1214 default n
Uwe Hermann01ce6012010-03-05 10:03:50 +00001215 help
1216 Print messages related to POST Memory Manager (PMM).
1217
1218 Note: This option will increase the size of the coreboot image.
1219
1220 If unsure, say N.
1221
1222
1223config X86EMU_DEBUG_VBE
1224 bool "Debug VESA BIOS Extensions"
1225 default n
Uwe Hermann01ce6012010-03-05 10:03:50 +00001226 help
1227 Print messages related to VESA BIOS Extension (VBE) functions.
1228
1229 Note: This option will increase the size of the coreboot image.
1230
1231 If unsure, say N.
1232
1233config X86EMU_DEBUG_INT10
1234 bool "Redirect INT10 output to console"
1235 default n
Uwe Hermann01ce6012010-03-05 10:03:50 +00001236 help
1237 Let INT10 (i.e. character output) calls print messages to debug output.
1238
1239 Note: This option will increase the size of the coreboot image.
1240
1241 If unsure, say N.
1242
1243config X86EMU_DEBUG_INTERRUPTS
1244 bool "Log intXX calls"
1245 default n
Uwe Hermann01ce6012010-03-05 10:03:50 +00001246 help
1247 Print messages related to interrupt handling.
1248
1249 Note: This option will increase the size of the coreboot image.
1250
1251 If unsure, say N.
1252
1253config X86EMU_DEBUG_CHECK_VMEM_ACCESS
1254 bool "Log special memory accesses"
1255 default n
Uwe Hermann01ce6012010-03-05 10:03:50 +00001256 help
1257 Print messages related to accesses to certain areas of the virtual
1258 memory (e.g. BDA (BIOS Data Area) or interrupt vectors)
1259
1260 Note: This option will increase the size of the coreboot image.
1261
1262 If unsure, say N.
1263
1264config X86EMU_DEBUG_MEM
1265 bool "Log all memory accesses"
1266 default n
Uwe Hermann01ce6012010-03-05 10:03:50 +00001267 help
1268 Print memory accesses made by option ROM.
1269 Note: This also includes accesses to fetch instructions.
1270
1271 Note: This option will increase the size of the coreboot image.
1272
1273 If unsure, say N.
1274
1275config X86EMU_DEBUG_IO
1276 bool "Log IO accesses"
1277 default n
Uwe Hermann01ce6012010-03-05 10:03:50 +00001278 help
1279 Print I/O accesses made by option ROM.
1280
1281 Note: This option will increase the size of the coreboot image.
1282
1283 If unsure, say N.
1284
Denis 'GNUtoo' Carikli4cdc5d62013-05-15 00:19:49 +02001285config X86EMU_DEBUG_TIMINGS
1286 bool "Output timing information"
1287 default n
Elyes Haouas9718e262023-05-01 17:22:03 +02001288 depends on HAVE_MONOTONIC_TIMER
Denis 'GNUtoo' Carikli4cdc5d62013-05-15 00:19:49 +02001289 help
1290 Print timing information needed by i915tool.
1291
1292 If unsure, say N.
1293
Elyes Haouas9718e262023-05-01 17:22:03 +02001294endif
1295
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -07001296config DEBUG_SPI_FLASH
1297 bool "Output verbose SPI flash debug messages"
1298 default n
1299 depends on SPI_FLASH
1300 help
1301 This option enables additional SPI flash related debug messages.
1302
Marc Jonesdc12daf2021-04-16 14:26:08 -06001303config DEBUG_IPMI
1304 bool "Output verbose IPMI debug messages"
1305 default n
1306 depends on IPMI_KCS
1307 help
1308 This option enables additional IPMI related debug messages.
1309
Stefan Reinauer8e073822012-04-04 00:07:22 +02001310if SOUTHBRIDGE_INTEL_BD82X6X && DEFAULT_CONSOLE_LOGLEVEL_8
1311# Only visible with the right southbridge and loglevel.
1312config DEBUG_INTEL_ME
1313 bool "Verbose logging for Intel Management Engine"
1314 default n
1315 help
1316 Enable verbose logging for Intel Management Engine driver that
1317 is present on Intel 6-series chipsets.
1318endif
1319
Marc Jones8b522db2020-10-12 11:58:46 -06001320config DEBUG_FUNC
Marc Jonesc6076ef2021-11-11 12:07:46 -07001321 bool "Enable function entry and exit reporting macros" if DEFAULT_CONSOLE_LOGLEVEL_8 || CONSOLE_OVERRIDE_LOGLEVEL
Marc Jones8b522db2020-10-12 11:58:46 -06001322 default n
1323 help
1324 This option enables additional function entry and exit debug messages
Kyösti Mälkki8c99c272020-07-24 15:54:31 +03001325 for select functions.
Marc Jones8b522db2020-10-12 11:58:46 -06001326 Note: This option will increase the size of the coreboot image.
1327 If unsure, say N.
1328
Stefan Reinauerd37ab452012-12-18 16:23:28 -08001329config DEBUG_COVERAGE
1330 bool "Debug code coverage"
1331 default n
1332 depends on COVERAGE
1333 help
1334 If enabled, the code coverage hooks in coreboot will output some
1335 information about the coverage data that is dumped.
1336
Jonathan Neuschäferfc04f9b2016-06-29 21:59:32 +02001337config DEBUG_BOOT_STATE
1338 bool "Debug boot state machine"
1339 default n
1340 help
1341 Control debugging of the boot state machine. When selected displays
1342 the state boundaries in ramstage.
1343
Nico Hubere84e6252016-10-05 17:43:56 +02001344config DEBUG_ADA_CODE
1345 bool "Compile debug code in Ada sources"
1346 default n
1347 help
1348 Add the compiler switch `-gnata` to compile code guarded by
1349 `pragma Debug`.
1350
Simon Glass46255f72018-07-12 15:26:07 -06001351config HAVE_EM100_SUPPORT
Arthur Heymans1842aa22022-04-17 20:10:41 +02001352 bool
Simon Glass46255f72018-07-12 15:26:07 -06001353 help
1354 This is enabled by platforms which can support using the EM100.
1355
1356config EM100
1357 bool "Configure image for EM100 usage"
1358 depends on HAVE_EM100_SUPPORT
1359 help
1360 The Dediprog EM100 SPI emulator allows fast loading of new SPI images
1361 over USB. However it only supports a maximum SPI clock of 20MHz and
1362 single data output. Enable this option to use a 20MHz SPI clock and
1363 disable "Dual Output Fast Read" Support.
1364
1365 On AMD platforms this changes the SPI speed at run-time if the
1366 mainboard code supports this. On supported Intel platforms this works
1367 by changing the settings in the descriptor.bin file.
1368
Arthur Heymans0ad766c2023-06-07 10:45:59 +02001369config DEBUG_ACPICA_COMPATIBLE
1370 bool "Print out ACPI tables in ACPICA compatible format"
1371 depends on HAVE_ACPI_TABLES
1372 help
1373 Select this to print out ACPI tables in an ACPICA compatible
1374 format. Set the console loglevel to verbosity 'SPEW'.
1375 To analyze ACPI tables capture the coreboot log between
1376 "Printing ACPI in ACPICA compatible table" and "Done printing
1377 ACPI in ACPICA compatible table".
1378 Remove the prefix "[SPEW ] " and then issue 'acpixtract -a dump'
1379 to extract all the tables. Then use 'iasl -d' on the .dat files
1380 to decompile the tables.
1381
Uwe Hermann168b11b2009-10-07 16:15:40 +00001382endmenu
1383
Martin Roth8e4aafb2016-12-15 15:25:15 -07001384###############################################################################
1385# Set variables with no prompt - these can be set anywhere, and putting at
1386# the end of this file gives the most flexibility.
Nico Huber3db76532017-05-18 18:07:34 +02001387
1388source "src/lib/Kconfig"
1389
Myles Watson2e672732009-11-12 16:38:03 +00001390config WARNINGS_ARE_ERRORS
1391 bool
Edward O'Callaghan63f6dc72014-11-18 03:17:54 +11001392 default y
Patrick Georgi436f99b2009-11-27 16:55:13 +00001393
Peter Stuge51eafde2010-10-13 06:23:02 +00001394# The four POWER_BUTTON_DEFAULT_ENABLE, POWER_BUTTON_DEFAULT_DISABLE,
1395# POWER_BUTTON_FORCE_ENABLE and POWER_BUTTON_FORCE_DISABLE options are
1396# mutually exclusive. One of these options must be selected in the
1397# mainboard Kconfig if the chipset supports enabling and disabling of
1398# the power button. Chipset code uses the ENABLE_POWER_BUTTON option set
1399# in mainboard/Kconfig to know if the button should be enabled or not.
1400
1401config POWER_BUTTON_DEFAULT_ENABLE
1402 def_bool n
1403 help
1404 Select when the board has a power button which can optionally be
1405 disabled by the user.
1406
1407config POWER_BUTTON_DEFAULT_DISABLE
1408 def_bool n
1409 help
1410 Select when the board has a power button which can optionally be
1411 enabled by the user, e.g. when the board ships with a jumper over
1412 the power switch contacts.
1413
1414config POWER_BUTTON_FORCE_ENABLE
1415 def_bool n
1416 help
1417 Select when the board requires that the power button is always
1418 enabled.
1419
1420config POWER_BUTTON_FORCE_DISABLE
1421 def_bool n
1422 help
1423 Select when the board requires that the power button is always
1424 disabled, e.g. when it has been hardwired to ground.
1425
1426config POWER_BUTTON_IS_OPTIONAL
1427 bool
1428 default y if POWER_BUTTON_DEFAULT_ENABLE || POWER_BUTTON_DEFAULT_DISABLE
1429 default n if !(POWER_BUTTON_DEFAULT_ENABLE || POWER_BUTTON_DEFAULT_DISABLE)
1430 help
1431 Internal option that controls ENABLE_POWER_BUTTON visibility.
Duncan Laurie72748002013-10-31 08:26:23 -07001432
1433config REG_SCRIPT
1434 bool
Duncan Laurie72748002013-10-31 08:26:23 -07001435 default n
1436 help
1437 Internal option that controls whether we compile in register scripts.
Furquan Shaikh99ac98f2014-04-23 10:18:48 -07001438
Furquan Shaikh99ac98f2014-04-23 10:18:48 -07001439config MAX_REBOOT_CNT
1440 int
1441 default 3
Timothy Pearson17ada2e2015-03-18 01:31:34 -05001442 help
1443 Internal option that sets the maximum number of bootblock executions allowed
1444 with the normal image enabled before assuming the normal image is defective
Vadim Bendebury9c9c3362014-07-23 09:40:02 -07001445 and switching to the fallback image.
Martin Roth59ff3402016-02-09 09:06:46 -07001446
Martin Roth8e4aafb2016-12-15 15:25:15 -07001447config UNCOMPRESSED_RAMSTAGE
1448 bool
1449
1450config NO_XIP_EARLY_STAGES
1451 bool
1452 default n if ARCH_X86
1453 default y
1454 help
1455 Identify if early stages are eXecute-In-Place(XIP).
1456
Martin Roth8e4aafb2016-12-15 15:25:15 -07001457config EARLY_CBMEM_LIST
1458 bool
1459 default n
1460 help
1461 Enable display of CBMEM during romstage and postcar.
1462
1463config RELOCATABLE_MODULES
1464 bool
1465 help
1466 If RELOCATABLE_MODULES is selected then support is enabled for
1467 building relocatable modules in the RAM stage. Those modules can be
1468 loaded anywhere and all the relocations are handled automatically.
1469
Martin Roth8e4aafb2016-12-15 15:25:15 -07001470config GENERIC_GPIO_LIB
1471 bool
1472 help
1473 If enabled, compile the generic GPIO library. A "generic" GPIO
1474 implies configurability usually found on SoCs, particularly the
1475 ability to control internal pull resistors.
1476
Martin Roth8e4aafb2016-12-15 15:25:15 -07001477config BOOTBLOCK_CUSTOM
1478 # To be selected by arch, SoC or mainboard if it does not want use the normal
1479 # src/lib/bootblock.c#main() C entry point.
1480 bool
1481
Arthur Heymanse8217b12022-04-05 20:42:07 +02001482config BOOTBLOCK_IN_CBFS
1483 bool
1484 default y if ARCH_X86
1485 help
1486 Select this on platforms that have a top aligned bootblock inside cbfs.
1487
Furquan Shaikh46514c22020-06-11 11:59:07 -07001488config MEMLAYOUT_LD_FILE
1489 string
Patrick Georgib8fba862020-06-17 21:06:53 +02001490 default "src/mainboard/\$(CONFIG_MAINBOARD_DIR)/memlayout.ld"
Furquan Shaikh46514c22020-06-11 11:59:07 -07001491 help
1492 This variable allows SoC/mainboard to supply in a custom linker file
1493 if required. This determines the linker file used for all the stages
1494 (bootblock, romstage, verstage, ramstage, postcar) in
Martin Roth659f97c2024-01-18 19:06:14 -07001495 src/arch/${ARCH}/Makefile.mk.
Furquan Shaikh46514c22020-06-11 11:59:07 -07001496
Martin Roth75e5cb72016-12-15 15:05:37 -07001497###############################################################################
1498# Set default values for symbols created before mainboards. This allows the
1499# option to be displayed in the general menu, but the default to be loaded in
1500# the mainboard if desired.
Martin Roth75e5cb72016-12-15 15:05:37 -07001501config COMPRESS_PRERAM_STAGES
Arthur Heymanse146fbd2019-11-04 18:57:06 +01001502 depends on (HAVE_ROMSTAGE || HAVE_VERSTAGE) && NO_XIP_EARLY_STAGES
Martin Roth75e5cb72016-12-15 15:05:37 -07001503 default y
1504
1505config INCLUDE_CONFIG_FILE
1506 default y
1507
Martin Roth75e5cb72016-12-15 15:05:37 -07001508config BOOTSPLASH_FILE
1509 depends on BOOTSPLASH_IMAGE
1510 default "bootsplash.jpg"
1511
Nico Huber799e79d2023-07-16 19:24:13 +02001512config BOOTSPLASH_CONVERT_QUALITY
1513 depends on BOOTSPLASH_CONVERT
1514 default 80
1515
1516config BOOTSPLASH_CONVERT_RESOLUTION
1517 depends on BOOTSPLASH_CONVERT_RESIZE
1518 default "1024x768"
1519
Martin Roth75e5cb72016-12-15 15:05:37 -07001520config CBFS_SIZE
1521 default ROM_SIZE
Subrata Banikb5962a92019-06-08 12:29:02 +05301522
1523config HAVE_BOOTBLOCK
1524 bool
1525 default y
1526
1527config HAVE_VERSTAGE
1528 bool
1529 depends on VBOOT_SEPARATE_VERSTAGE
1530 default y
1531
1532config HAVE_ROMSTAGE
1533 bool
Arthur Heymansa2bc2542021-05-29 08:10:49 +02001534 depends on SEPARATE_ROMSTAGE
Subrata Banikb5962a92019-06-08 12:29:02 +05301535 default y
1536
Subrata Banikb5962a92019-06-08 12:29:02 +05301537config HAVE_RAMSTAGE
1538 bool
1539 default n if RAMPAYLOAD
1540 default y