blob: 2ab9861baf0051085b86ff45c1953110ac35f4e7 [file] [log] [blame]
Patrick Georgi0588d192009-08-12 15:00:51 +00001##
Stefan Reinauer16f515a2010-01-20 18:44:30 +00002## This file is part of the coreboot project.
Patrick Georgi0588d192009-08-12 15:00:51 +00003##
Alexandru Gagniuc70c660f2012-08-23 02:32:58 -05004## Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
Stefan Reinauer16f515a2010-01-20 18:44:30 +00005## Copyright (C) 2009-2010 coresystems GmbH
Patrick Georgi0588d192009-08-12 15:00:51 +00006##
Stefan Reinauer16f515a2010-01-20 18:44:30 +00007## This program is free software; you can redistribute it and/or modify
8## it under the terms of the GNU General Public License as published by
9## the Free Software Foundation; version 2 of the License.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
Patrick Georgi0588d192009-08-12 15:00:51 +000016
Uwe Hermannad8c95f2012-04-12 22:00:03 +020017mainmenu "coreboot configuration"
Patrick Georgi0588d192009-08-12 15:00:51 +000018
Uwe Hermannc04be932009-10-05 13:55:28 +000019menu "General setup"
20
Lee Leahybb70c402017-04-03 07:38:20 -070021config COREBOOT_BUILD
22 bool
23 default y
24
Uwe Hermannc04be932009-10-05 13:55:28 +000025config LOCALVERSION
Uwe Hermann168b11b2009-10-07 16:15:40 +000026 string "Local version string"
Uwe Hermannc04be932009-10-05 13:55:28 +000027 help
28 Append an extra string to the end of the coreboot version.
29
Uwe Hermann168b11b2009-10-07 16:15:40 +000030 This can be useful if, for instance, you want to append the
31 respective board's hostname or some other identifying string to
32 the coreboot version number, so that you can easily distinguish
33 boot logs of different boards from each other.
34
Patrick Georgi4b8a2412010-02-09 19:35:16 +000035config CBFS_PREFIX
36 string "CBFS prefix to use"
37 default "fallback"
38 help
39 Select the prefix to all files put into the image. It's "fallback"
40 by default, "normal" is a common alternative.
41
Patrick Georgi23d89cc2010-03-16 01:17:19 +000042choice
Uwe Hermannad8c95f2012-04-12 22:00:03 +020043 prompt "Compiler to use"
Patrick Georgi23d89cc2010-03-16 01:17:19 +000044 default COMPILER_GCC
45 help
46 This option allows you to select the compiler used for building
47 coreboot.
Martin Rotha5a628e82016-01-19 12:01:09 -070048 You must build the coreboot crosscompiler for the board that you
49 have selected.
50
51 To build all the GCC crosscompilers (takes a LONG time), run:
52 make crossgcc
53
54 For help on individual architectures, run the command:
55 make help_toolchain
Patrick Georgi23d89cc2010-03-16 01:17:19 +000056
57config COMPILER_GCC
58 bool "GCC"
Uwe Hermannad8c95f2012-04-12 22:00:03 +020059 help
60 Use the GNU Compiler Collection (GCC) to build coreboot.
61
62 For details see http://gcc.gnu.org.
63
Patrick Georgi23d89cc2010-03-16 01:17:19 +000064config COMPILER_LLVM_CLANG
Martin Rotha5a628e82016-01-19 12:01:09 -070065 bool "LLVM/clang (TESTING ONLY - Not currently working)"
Uwe Hermannad8c95f2012-04-12 22:00:03 +020066 help
Martin Rotha5a628e82016-01-19 12:01:09 -070067 Use LLVM/clang to build coreboot. To use this, you must build the
68 coreboot version of the clang compiler. Run the command
69 make clang
70 Note that this option is not currently working correctly and should
71 really only be selected if you're trying to work on getting clang
72 operational.
Uwe Hermannad8c95f2012-04-12 22:00:03 +020073
74 For details see http://clang.llvm.org.
75
Patrick Georgi23d89cc2010-03-16 01:17:19 +000076endchoice
77
Patrick Georgi9b0de712013-12-29 18:45:23 +010078config ANY_TOOLCHAIN
79 bool "Allow building with any toolchain"
80 default n
81 depends on COMPILER_GCC
82 help
83 Many toolchains break when building coreboot since it uses quite
84 unusual linker features. Unless developers explicitely request it,
85 we'll have to assume that they use their distro compiler by mistake.
86 Make sure that using patched compilers is a conscious decision.
87
Patrick Georgi516a2a72010-03-25 21:45:25 +000088config CCACHE
Uwe Hermannad8c95f2012-04-12 22:00:03 +020089 bool "Use ccache to speed up (re)compilation"
Patrick Georgi516a2a72010-03-25 21:45:25 +000090 default n
91 help
92 Enables the use of ccache for faster builds.
Uwe Hermannad8c95f2012-04-12 22:00:03 +020093
94 Requires the ccache utility in your system $PATH.
95
96 For details see https://ccache.samba.org.
Patrick Georgi516a2a72010-03-25 21:45:25 +000097
Sol Boucher69b88bf2015-02-26 11:47:19 -080098config FMD_GENPARSER
99 bool "Generate flashmap descriptor parser using flex and bison"
100 default n
Sol Boucher69b88bf2015-02-26 11:47:19 -0800101 help
102 Enable this option if you are working on the flashmap descriptor
103 parser and made changes to fmd_scanner.l or fmd_parser.y.
104
105 Otherwise, say N to use the provided pregenerated scanner/parser.
106
Martin Rothf411b702017-04-09 19:12:42 -0600107config UTIL_GENPARSER
108 bool "Generate SCONFIG & BLOBTOOL parser using flex and bison"
Stefan Reinauer9bf78102010-08-09 13:28:18 +0000109 default n
Stefan Reinauer9bf78102010-08-09 13:28:18 +0000110 help
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200111 Enable this option if you are working on the sconfig device tree
Martin Rothf411b702017-04-09 19:12:42 -0600112 parser or blobtool and made changes to the .l or .y files.
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200113
Sol Boucher69b88bf2015-02-26 11:47:19 -0800114 Otherwise, say N to use the provided pregenerated scanner/parser.
Stefan Reinauer9bf78102010-08-09 13:28:18 +0000115
Joe Korty6d772522010-05-19 18:41:15 +0000116config USE_OPTION_TABLE
117 bool "Use CMOS for configuration values"
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000118 depends on HAVE_OPTION_TABLE
Joe Korty6d772522010-05-19 18:41:15 +0000119 help
120 Enable this option if coreboot shall read options from the "CMOS"
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200121 NVRAM instead of using hard-coded values.
Joe Korty6d772522010-05-19 18:41:15 +0000122
Timothy Pearsonf20c6e82015-02-14 16:15:31 -0600123config STATIC_OPTION_TABLE
124 bool "Load default configuration values into CMOS on each boot"
Timothy Pearsonf20c6e82015-02-14 16:15:31 -0600125 depends on USE_OPTION_TABLE
126 help
127 Enable this option to reset "CMOS" NVRAM values to default on
128 every boot. Use this if you want the NVRAM configuration to
129 never be modified from its default values.
130
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000131config COMPRESS_RAMSTAGE
132 bool "Compress ramstage with LZMA"
Martin Roth75e5cb72016-12-15 15:05:37 -0700133 # Default value set at the end of the file
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000134 help
135 Compress ramstage to save memory in the flash image. Note
136 that decompression might slow down booting if the boot flash
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200137 is connected through a slow link (i.e. SPI).
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000138
Julius Werner09f29212015-09-29 13:51:35 -0700139config COMPRESS_PRERAM_STAGES
140 bool "Compress romstage and verstage with LZ4"
Martin Rothf2e04612016-03-09 15:50:23 -0700141 depends on !ARCH_X86
Martin Roth75e5cb72016-12-15 15:05:37 -0700142 # Default value set at the end of the file
Julius Werner09f29212015-09-29 13:51:35 -0700143 help
144 Compress romstage and (if it exists) verstage with LZ4 to save flash
145 space and speed up boot, since the time for reading the image from SPI
146 (and in the vboot case verifying it) is usually much greater than the
147 time spent decompressing. Doesn't work for XIP stages (assume all
148 ARCH_X86 for now) for obvious reasons.
149
Cristian Măgherușan-Stanciud367b002011-06-19 03:03:28 +0200150config INCLUDE_CONFIG_FILE
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200151 bool "Include the coreboot .config file into the ROM image"
Martin Roth75e5cb72016-12-15 15:05:37 -0700152 # Default value set at the end of the file
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200153 help
154 Include the .config file that was used to compile coreboot
155 in the (CBFS) ROM image. This is useful if you want to know which
156 options were used to build a specific coreboot.rom image.
157
Daniele Forsi53847a22014-07-22 18:00:56 +0200158 Saying Y here will increase the image size by 2-3KB.
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200159
160 You can use the following command to easily list the options:
161
162 grep -a CONFIG_ coreboot.rom
163
164 Alternatively, you can also use cbfstool to print the image
165 contents (including the raw 'config' item we're looking for).
166
167 Example:
168
169 $ cbfstool coreboot.rom print
170 coreboot.rom: 4096 kB, bootblocksize 1008, romsize 4194304,
171 offset 0x0
172 Alignment: 64 bytes
Steve Goodrichf0269122012-05-18 11:18:47 -0600173
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200174 Name Offset Type Size
175 cmos_layout.bin 0x0 cmos layout 1159
176 fallback/romstage 0x4c0 stage 339756
Daniele Forsi53847a22014-07-22 18:00:56 +0200177 fallback/ramstage 0x53440 stage 186664
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200178 fallback/payload 0x80dc0 payload 51526
179 config 0x8d740 raw 3324
180 (empty) 0x8e480 null 3610440
Cristian Măgherușan-Stanciud367b002011-06-19 03:03:28 +0200181
Vadim Bendebury9202473d2011-09-21 14:46:43 -0700182config COLLECT_TIMESTAMPS
183 bool "Create a table of timestamps collected during boot"
Vadim Bendebury9202473d2011-09-21 14:46:43 -0700184 help
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200185 Make coreboot create a table of timer-ID/timer-value pairs to
186 allow measuring time spent at different phases of the boot process.
187
Patrick Georgi7e9b9d82012-04-30 21:06:10 +0200188config USE_BLOBS
189 bool "Allow use of binary-only repository"
Patrick Georgi7e9b9d82012-04-30 21:06:10 +0200190 help
191 This draws in the blobs repository, which contains binary files that
192 might be required for some chipsets or boards.
193 This flag ensures that a "Free" option remains available for users.
194
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800195config COVERAGE
196 bool "Code coverage support"
197 depends on COMPILER_GCC
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800198 help
199 Add code coverage support for coreboot. This will store code
200 coverage information in CBMEM for extraction from user space.
201 If unsure, say N.
202
Stefan Reinauer58470e32014-10-17 13:08:36 +0200203config RELOCATABLE_RAMSTAGE
Vladimir Serbinenko633352c2015-05-30 22:21:37 +0200204 depends on EARLY_CBMEM_INIT
Stefan Reinauer58470e32014-10-17 13:08:36 +0200205 bool "Build the ramstage to be relocatable in 32-bit address space."
Vladimir Serbinenko633352c2015-05-30 22:21:37 +0200206 select RELOCATABLE_MODULES
Stefan Reinauer58470e32014-10-17 13:08:36 +0200207 help
208 The reloctable ramstage support allows for the ramstage to be built
209 as a relocatable module. The stage loader can identify a place
210 out of the OS way so that copying memory is unnecessary during an S3
211 wake. When selecting this option the romstage is responsible for
212 determing a stack location to use for loading the ramstage.
213
214config CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM
215 depends on RELOCATABLE_RAMSTAGE
Arthur Heymans410f2562017-01-25 15:27:52 +0100216 bool
Stefan Reinauer58470e32014-10-17 13:08:36 +0200217 help
218 The relocated ramstage is saved in an area specified by the
219 by the board and/or chipset.
220
Stefan Reinauer58470e32014-10-17 13:08:36 +0200221config UPDATE_IMAGE
222 bool "Update existing coreboot.rom image"
Stefan Reinauer58470e32014-10-17 13:08:36 +0200223 help
224 If this option is enabled, no new coreboot.rom file
225 is created. Instead it is expected that there already
226 is a suitable file for further processing.
227 The bootblock will not be modified.
228
Martin Roth5942e062016-01-20 14:59:21 -0700229 If unsure, select 'N'
230
Stefan Reinauerd06258c2015-03-26 16:29:00 -0700231config BOARD_ID_STRING
232 string "Board ID"
Martin Roth75e5cb72016-12-15 15:05:37 -0700233 # Default value set at the end of the file
Stefan Reinauerd06258c2015-03-26 16:29:00 -0700234 depends on BOARD_ID_MANUAL
235 help
236 This string is placed in the 'board_id' CBFS file for indicating
237 board type.
238
David Hendricks627b3bd2014-11-03 17:42:09 -0800239config RAM_CODE_SUPPORT
Vladimir Serbinenko8ef9c562015-05-30 22:55:44 +0200240 bool
David Hendricks627b3bd2014-11-03 17:42:09 -0800241 help
242 If enabled, coreboot discovers RAM configuration (value obtained by
243 reading board straps) and stores it in coreboot table.
244
Konstantin Aladyshev6544cb32015-01-24 18:52:10 +0400245config BOOTSPLASH_IMAGE
246 bool "Add a bootsplash image"
247 help
248 Select this option if you have a bootsplash image that you would
249 like to add to your ROM.
250
251 This will only add the image to the ROM. To actually run it check
252 options under 'Display' section.
253
254config BOOTSPLASH_FILE
255 string "Bootsplash path and filename"
256 depends on BOOTSPLASH_IMAGE
Martin Roth75e5cb72016-12-15 15:05:37 -0700257 # Default value set at the end of the file
Konstantin Aladyshev6544cb32015-01-24 18:52:10 +0400258 help
259 The path and filename of the file to use as graphical bootsplash
260 screen. The file format has to be jpg.
261
Uwe Hermannc04be932009-10-05 13:55:28 +0000262endmenu
263
Martin Roth026e4dc2015-06-19 23:17:15 -0600264menu "Mainboard"
265
Stefan Reinauera48ca842015-04-04 01:58:28 +0200266source "src/mainboard/Kconfig"
Stefan Reinauer8aedcbc2010-12-16 23:37:17 +0000267
Marshall Dawsone9375132016-09-04 08:38:33 -0600268config DEVICETREE
269 string
270 default "devicetree.cb"
271 help
272 This symbol allows mainboards to select a different file under their
273 mainboard directory for the devicetree.cb file. This allows the board
274 variants that need different devicetrees to be in the same directory.
275
276 Examples: "devicetree.variant.cb"
277 "variant/devicetree.cb"
278
Martin Roth026e4dc2015-06-19 23:17:15 -0600279config CBFS_SIZE
280 hex "Size of CBFS filesystem in ROM"
Martin Roth75e5cb72016-12-15 15:05:37 -0700281 # Default value set at the end of the file
Martin Roth026e4dc2015-06-19 23:17:15 -0600282 help
283 This is the part of the ROM actually managed by CBFS, located at the
284 end of the ROM (passed through cbfstool -o) on x86 and at at the start
285 of the ROM (passed through cbfstool -s) everywhere else. It defaults
286 to span the whole ROM on all but Intel systems that use an Intel Firmware
287 Descriptor. It can be overridden to make coreboot live alongside other
288 components like ChromeOS's vboot/FMAP or Intel's IFD / ME / TXE
289 binaries.
290
Patrick Georgi8a3592e2015-09-16 18:10:52 +0200291config FMDFILE
292 string "fmap description file in fmd format"
Patrick Georgi5d7ab392015-12-12 00:23:15 +0100293 default "src/mainboard/$(CONFIG_MAINBOARD_DIR)/chromeos.fmd" if CHROMEOS
Patrick Georgi8a3592e2015-09-16 18:10:52 +0200294 default ""
295 help
296 The build system creates a default FMAP from ROM_SIZE and CBFS_SIZE,
297 but in some cases more complex setups are required.
298 When an fmd is specified, it overrides the default format.
299
Vadim Bendebury26588702016-06-02 20:43:19 -0700300config MAINBOARD_HAS_TPM2
301 bool
302 default n
303 help
304 There is a TPM device installed on the mainboard, and it is
305 compliant with version 2 TCG TPM specification. Could be connected
306 over LPC, SPI or I2C.
307
Martin Rothda1ca202015-12-26 16:51:16 -0700308endmenu
309
Martin Rothb09a5692016-01-24 19:38:33 -0700310# load site-local kconfig to allow user specific defaults and overrides
311source "site-local/Kconfig"
312
Vladimir Serbinenkoa9db82f2014-10-16 13:21:47 +0200313config SYSTEM_TYPE_LAPTOP
Martin Roth595e7772015-04-26 18:53:26 -0600314 default n
315 bool
Vladimir Serbinenkoa9db82f2014-10-16 13:21:47 +0200316
Werner Zehc0fb3612016-01-14 15:08:36 +0100317config CBFS_AUTOGEN_ATTRIBUTES
318 default n
319 bool
320 help
321 If this option is selected, every file in cbfs which has a constraint
322 regarding position or alignment will get an additional file attribute
323 which describes this constraint.
324
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000325menu "Chipset"
326
Duncan Lauried2119762015-06-08 18:11:56 -0700327comment "SoC"
328source "src/soc/*/*/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000329comment "CPU"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200330source "src/cpu/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000331comment "Northbridge"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200332source "src/northbridge/*/*/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000333comment "Southbridge"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200334source "src/southbridge/*/*/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000335comment "Super I/O"
Omar Pakker57603e22016-07-29 23:31:45 +0200336source "src/superio/*/*/Kconfig"
Sven Schnelle7592e8b2011-01-27 11:43:03 +0000337comment "Embedded Controllers"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200338source "src/ec/acpi/Kconfig"
339source "src/ec/*/*/Kconfig"
Stefan Reinauer86ddd732016-03-11 20:22:28 -0800340# FIXME move to vendorcode
Marc Jones78687972015-04-22 23:16:31 -0600341source "src/drivers/intel/fsp1_0/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000342
Martin Roth59aa2b12015-06-20 16:17:12 -0600343source "src/southbridge/intel/common/firmware/Kconfig"
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -0700344source "src/vboot/Kconfig"
Martin Rothe1523ec2015-06-19 22:30:43 -0600345source "src/vendorcode/*/Kconfig"
Martin Roth59aa2b12015-06-20 16:17:12 -0600346
Martin Rothe1523ec2015-06-19 22:30:43 -0600347source "src/arch/*/Kconfig"
348
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000349endmenu
Patrick Georgi0588d192009-08-12 15:00:51 +0000350
Stefan Reinauera48ca842015-04-04 01:58:28 +0200351source "src/device/Kconfig"
Stefan Reinauer95a63962012-11-13 17:00:01 -0800352
Rudolf Marekd9c25492010-05-16 15:31:53 +0000353menu "Generic Drivers"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200354source "src/drivers/*/Kconfig"
Stefan Reinauer86ddd732016-03-11 20:22:28 -0800355source "src/drivers/*/*/Kconfig"
Lee Leahy48dbc662017-05-08 16:56:03 -0700356source "src/commonlib/storage/Kconfig"
Rudolf Marekd9c25492010-05-16 15:31:53 +0000357endmenu
358
Martin Roth09210a12016-05-17 11:28:23 -0600359source "src/acpi/Kconfig"
360
Aaron Durbin4a36c4e2016-08-11 11:02:26 -0500361# This option is for the current boards/chipsets where SPI flash
362# is not the boot device. Currently nearly all boards/chipsets assume
363# SPI flash is the boot device.
364config BOOT_DEVICE_NOT_SPI_FLASH
365 bool
366 default n
367
368config BOOT_DEVICE_SPI_FLASH
369 bool
370 default y if !BOOT_DEVICE_NOT_SPI_FLASH
371 default n
372
Aaron Durbin16c173f2016-08-11 14:04:10 -0500373config BOOT_DEVICE_MEMORY_MAPPED
374 bool
375 default y if ARCH_X86 && BOOT_DEVICE_SPI_FLASH
376 default n
377 help
378 Inform system if SPI is memory-mapped or not.
379
Aaron Durbine8e118d2016-08-12 15:00:10 -0500380config BOOT_DEVICE_SUPPORTS_WRITES
381 bool
382 default n
383 help
384 Indicate that the platform has writable boot device
385 support.
386
Patrick Georgi0770f252015-04-22 13:28:21 +0200387config RTC
388 bool
389 default n
390
Stefan Reinauer7cb01e02013-08-29 16:05:02 -0700391config TPM
392 bool
393 default n
Vadim Bendebury26588702016-06-02 20:43:19 -0700394 select LPC_TPM if MAINBOARD_HAS_LPC_TPM
395 select I2C_TPM if !MAINBOARD_HAS_LPC_TPM && !SPI_TPM
Stefan Reinauer7cb01e02013-08-29 16:05:02 -0700396 help
397 Enable this option to enable TPM support in coreboot.
398
399 If unsure, say N.
400
Vadim Bendebury26588702016-06-02 20:43:19 -0700401config TPM2
402 bool
403 select LPC_TPM if MAINBOARD_HAS_LPC_TPM
404 select I2C_TPM if !MAINBOARD_HAS_LPC_TPM && !SPI_TPM
405 help
406 Enable this option to enable TPM2 support in coreboot.
407
408 If unsure, say N.
409
Vadim Bendeburyb9126fe2017-03-22 16:16:34 -0700410config POWER_OFF_ON_CR50_UPDATE
411 bool
412 help
413 Power off machine while waiting for CR50 update to take effect.
414
Aaron Durbin8bc896f2017-04-19 10:19:38 -0500415config MAINBOARD_HAS_TPM_CR50
416 bool
417 default y if MAINBOARD_HAS_SPI_TPM_CR50 || MAINBOARD_HAS_I2C_TPM_CR50
418 default n
419 select MAINBOARD_HAS_TPM2
Vadim Bendeburyb9126fe2017-03-22 16:16:34 -0700420 select POWER_OFF_ON_CR50_UPDATE if ARCH_X86
Aaron Durbin8bc896f2017-04-19 10:19:38 -0500421
Patrick Georgi0588d192009-08-12 15:00:51 +0000422config HEAP_SIZE
423 hex
Myles Watson04000f42009-10-16 19:12:49 +0000424 default 0x4000
Patrick Georgi0588d192009-08-12 15:00:51 +0000425
Julius Wernerc3e7c4e2014-09-19 13:18:16 -0700426config STACK_SIZE
427 hex
Julius Werner66a476a2015-10-12 16:45:21 -0700428 default 0x1000 if ARCH_X86
429 default 0x0
Julius Wernerc3e7c4e2014-09-19 13:18:16 -0700430
Patrick Georgi0588d192009-08-12 15:00:51 +0000431config MAX_CPUS
432 int
433 default 1
434
Stefan Reinauera48ca842015-04-04 01:58:28 +0200435source "src/console/Kconfig"
Patrick Georgi0588d192009-08-12 15:00:51 +0000436
437config HAVE_ACPI_RESUME
438 bool
439 default n
440
Kyösti Mälkki9d6f3652016-06-28 07:38:46 +0300441config ACPI_HUGE_LOWMEM_BACKUP
442 bool
Kyösti Mälkki43e9c932016-11-10 11:50:21 +0200443 default n
Kyösti Mälkki9d6f3652016-06-28 07:38:46 +0300444 help
445 On S3 resume path, backup low memory from RAMBASE..RAMTOP in CBMEM.
446
Aaron Durbin87c9fae2016-01-22 15:26:04 -0600447config RESUME_PATH_SAME_AS_BOOT
448 bool
449 default y if ARCH_X86
450 depends on HAVE_ACPI_RESUME
451 help
452 This option indicates that when a system resumes it takes the
453 same path as a regular boot. e.g. an x86 system runs from the
454 reset vector at 0xfffffff0 on both resume and warm/cold boot.
455
Patrick Georgi0588d192009-08-12 15:00:51 +0000456config HAVE_HARD_RESET
457 bool
Uwe Hermann748475b2009-10-09 11:47:21 +0000458 default n
Patrick Georgi37bdb872010-02-27 08:39:04 +0000459 help
460 This variable specifies whether a given board has a hard_reset
461 function, no matter if it's provided by board code or chipset code.
462
Timothy Pearson44d53422015-05-18 16:04:10 -0500463config HAVE_ROMSTAGE_CONSOLE_SPINLOCK
464 bool
Kyösti Mälkkib5664de2016-07-08 13:33:00 +0300465 depends on EARLY_CBMEM_INIT
Timothy Pearson44d53422015-05-18 16:04:10 -0500466 default n
467
Timothy Pearson7b22d842015-08-28 19:52:05 -0500468config HAVE_ROMSTAGE_NVRAM_CBFS_SPINLOCK
469 bool
Kyösti Mälkkib5664de2016-07-08 13:33:00 +0300470 depends on EARLY_CBMEM_INIT
Timothy Pearson7b22d842015-08-28 19:52:05 -0500471 default n
472 help
473 This should be enabled on certain plaforms, such as the AMD
474 SR565x, that cannot handle concurrent CBFS accesses from
475 multiple APs during early startup.
476
Timothy Pearsonc764c742015-08-28 20:48:17 -0500477config HAVE_ROMSTAGE_MICROCODE_CBFS_SPINLOCK
478 bool
Kyösti Mälkkib5664de2016-07-08 13:33:00 +0300479 depends on EARLY_CBMEM_INIT
Timothy Pearsonc764c742015-08-28 20:48:17 -0500480 default n
481
Aaron Durbina4217912013-04-29 22:31:51 -0500482config HAVE_MONOTONIC_TIMER
483 def_bool n
484 help
485 The board/chipset provides a monotonic timer.
486
Aaron Durbine5e36302014-09-25 10:05:15 -0500487config GENERIC_UDELAY
488 def_bool n
489 depends on HAVE_MONOTONIC_TIMER
490 help
491 The board/chipset uses a generic udelay function utilizing the
492 monotonic timer.
493
Aaron Durbin340ca912013-04-30 09:58:12 -0500494config TIMER_QUEUE
495 def_bool n
496 depends on HAVE_MONOTONIC_TIMER
497 help
Kyösti Mälkkiecd84242013-09-13 07:57:49 +0300498 Provide a timer queue for performing time-based callbacks.
Aaron Durbin340ca912013-04-30 09:58:12 -0500499
Aaron Durbin4409a5e2013-05-06 12:20:52 -0500500config COOP_MULTITASKING
501 def_bool n
Aaron Durbin38c326d2013-05-06 12:22:23 -0500502 depends on TIMER_QUEUE && ARCH_X86
Aaron Durbin4409a5e2013-05-06 12:20:52 -0500503 help
504 Cooperative multitasking allows callbacks to be multiplexed on the
505 main thread of ramstage. With this enabled it allows for multiple
506 execution paths to take place when they have udelay() calls within
507 their code.
508
509config NUM_THREADS
510 int
511 default 4
512 depends on COOP_MULTITASKING
513 help
514 How many execution threads to cooperatively multitask with.
515
Patrick Georgi0588d192009-08-12 15:00:51 +0000516config HAVE_OPTION_TABLE
517 bool
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000518 default n
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000519 help
520 This variable specifies whether a given board has a cmos.layout
521 file containing NVRAM/CMOS bit definitions.
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000522 It defaults to 'n' but can be selected in mainboard/*/Kconfig.
Patrick Georgi0588d192009-08-12 15:00:51 +0000523
Patrick Georgi0588d192009-08-12 15:00:51 +0000524config PIRQ_ROUTE
525 bool
526 default n
527
528config HAVE_SMI_HANDLER
529 bool
530 default n
531
532config PCI_IO_CFG_EXT
533 bool
534 default n
535
536config IOAPIC
537 bool
538 default n
539
Kyösti Mälkki107f72e2014-01-06 11:06:26 +0200540config CACHE_ROM_SIZE_OVERRIDE
Stefan Reinauer5b635792012-08-16 14:05:42 -0700541 hex
Martin Roth3b878122016-09-30 14:43:01 -0600542 default 0x0
Stefan Reinauer5b635792012-08-16 14:05:42 -0700543
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000544# TODO: Can probably be removed once all chipsets have kconfig options for it.
Uwe Hermann70b0cf22009-10-04 17:15:39 +0000545config VIDEO_MB
546 int
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000547 default 0
Uwe Hermann70b0cf22009-10-04 17:15:39 +0000548
Myles Watson45bb25f2009-09-22 18:49:08 +0000549config USE_WATCHDOG_ON_BOOT
550 bool
551 default n
552
553config VGA
554 bool
555 default n
556 help
557 Build board-specific VGA code.
558
559config GFXUMA
560 bool
Myles Watsond73c1b52009-10-26 15:14:07 +0000561 default n
Myles Watson45bb25f2009-09-22 18:49:08 +0000562 help
563 Enable Unified Memory Architecture for graphics.
564
Myles Watsonb8e20272009-10-15 13:35:47 +0000565config HAVE_ACPI_TABLES
566 bool
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000567 help
568 This variable specifies whether a given board has ACPI table support.
569 It is usually set in mainboard/*/Kconfig.
Myles Watsonb8e20272009-10-15 13:35:47 +0000570
571config HAVE_MP_TABLE
572 bool
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000573 help
574 This variable specifies whether a given board has MP table support.
575 It is usually set in mainboard/*/Kconfig.
576 Whether or not the MP table is actually generated by coreboot
577 is configurable by the user via GENERATE_MP_TABLE.
Myles Watsonb8e20272009-10-15 13:35:47 +0000578
579config HAVE_PIRQ_TABLE
580 bool
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000581 help
582 This variable specifies whether a given board has PIRQ table support.
583 It is usually set in mainboard/*/Kconfig.
584 Whether or not the PIRQ table is actually generated by coreboot
585 is configurable by the user via GENERATE_PIRQ_TABLE.
Myles Watsonb8e20272009-10-15 13:35:47 +0000586
Alexandru Gagniuc70c660f2012-08-23 02:32:58 -0500587config MAX_PIRQ_LINKS
588 int
589 default 4
590 help
591 This variable specifies the number of PIRQ interrupt links which are
592 routable. On most chipsets, this is 4, INTA through INTD. Some
593 chipsets offer more than four links, commonly up to INTH. They may
594 also have a separate link for ATA or IOAPIC interrupts. When the PIRQ
595 table specifies links greater than 4, pirq_route_irqs will not
596 function properly, unless this variable is correctly set.
597
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200598config COMMON_FADT
599 bool
600 default n
601
Aaron Durbin9420a522015-11-17 16:31:00 -0600602config ACPI_NHLT
603 bool
604 default n
605 help
606 Build support for NHLT (non HD Audio) ACPI table generation.
607
Myles Watsond73c1b52009-10-26 15:14:07 +0000608#These Options are here to avoid "undefined" warnings.
609#The actual selection and help texts are in the following menu.
610
Uwe Hermann168b11b2009-10-07 16:15:40 +0000611menu "System tables"
Myles Watson45bb25f2009-09-22 18:49:08 +0000612
Myles Watsonb8e20272009-10-15 13:35:47 +0000613config GENERATE_MP_TABLE
Stefan Reinauer56cd70b2012-11-13 17:33:08 -0800614 prompt "Generate an MP table" if HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC
615 bool
616 default HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000617 help
618 Generate an MP table (conforming to the Intel MultiProcessor
619 specification 1.4) for this board.
620
621 If unsure, say Y.
Myles Watson45bb25f2009-09-22 18:49:08 +0000622
Myles Watsonb8e20272009-10-15 13:35:47 +0000623config GENERATE_PIRQ_TABLE
Stefan Reinauer56cd70b2012-11-13 17:33:08 -0800624 prompt "Generate a PIRQ table" if HAVE_PIRQ_TABLE
625 bool
626 default HAVE_PIRQ_TABLE
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000627 help
628 Generate a PIRQ table for this board.
629
630 If unsure, say Y.
Myles Watson45bb25f2009-09-22 18:49:08 +0000631
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200632config GENERATE_SMBIOS_TABLES
633 depends on ARCH_X86
634 bool "Generate SMBIOS tables"
635 default y
636 help
637 Generate SMBIOS tables for this board.
638
639 If unsure, say Y.
640
Vladimir Serbinenko0afdec42015-05-30 23:08:26 +0200641config SMBIOS_PROVIDED_BY_MOBO
642 bool
643 default n
644
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200645config MAINBOARD_SERIAL_NUMBER
646 string "SMBIOS Serial Number"
647 depends on GENERATE_SMBIOS_TABLES
Vladimir Serbinenko0afdec42015-05-30 23:08:26 +0200648 depends on !SMBIOS_PROVIDED_BY_MOBO
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200649 default "123456789"
Martin Roth595e7772015-04-26 18:53:26 -0600650 help
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200651 The Serial Number to store in SMBIOS structures.
652
653config MAINBOARD_VERSION
654 string "SMBIOS Version Number"
655 depends on GENERATE_SMBIOS_TABLES
Vladimir Serbinenko0afdec42015-05-30 23:08:26 +0200656 depends on !SMBIOS_PROVIDED_BY_MOBO
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200657 default "1.0"
658 help
659 The Version Number to store in SMBIOS structures.
660
661config MAINBOARD_SMBIOS_MANUFACTURER
662 string "SMBIOS Manufacturer"
663 depends on GENERATE_SMBIOS_TABLES
Vladimir Serbinenko0afdec42015-05-30 23:08:26 +0200664 depends on !SMBIOS_PROVIDED_BY_MOBO
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200665 default MAINBOARD_VENDOR
666 help
667 Override the default Manufacturer stored in SMBIOS structures.
668
669config MAINBOARD_SMBIOS_PRODUCT_NAME
670 string "SMBIOS Product name"
671 depends on GENERATE_SMBIOS_TABLES
Vladimir Serbinenko0afdec42015-05-30 23:08:26 +0200672 depends on !SMBIOS_PROVIDED_BY_MOBO
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200673 default MAINBOARD_PART_NUMBER
674 help
675 Override the default Product name stored in SMBIOS structures.
676
Myles Watson45bb25f2009-09-22 18:49:08 +0000677endmenu
678
Martin Roth21c06502016-02-04 19:52:27 -0700679source "payloads/Kconfig"
Peter Stugea758ca22009-09-17 16:21:31 +0000680
Uwe Hermann168b11b2009-10-07 16:15:40 +0000681menu "Debugging"
682
683# TODO: Better help text and detailed instructions.
Patrick Georgi0588d192009-08-12 15:00:51 +0000684config GDB_STUB
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +0000685 bool "GDB debugging support"
Rudolf Marek65888022012-03-25 20:51:16 +0200686 default n
Denis 'GNUtoo' Carikli3747ba12015-12-10 22:04:56 +0100687 depends on CONSOLE_SERIAL
Patrick Georgi0588d192009-08-12 15:00:51 +0000688 help
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +0000689 If enabled, you will be able to set breakpoints for gdb debugging.
Stefan Reinauer8677a232010-12-11 20:33:41 +0000690 See src/arch/x86/lib/c_start.S for details.
Patrick Georgi0588d192009-08-12 15:00:51 +0000691
Denis 'GNUtoo' Cariklie4cece02012-06-22 15:56:37 +0200692config GDB_WAIT
Denis 'GNUtoo' Carikli7d234f22015-12-10 21:58:52 +0100693 bool "Wait for a GDB connection in the ramstage"
Denis 'GNUtoo' Cariklie4cece02012-06-22 15:56:37 +0200694 default n
695 depends on GDB_STUB
696 help
Denis 'GNUtoo' Carikli7d234f22015-12-10 21:58:52 +0100697 If enabled, coreboot will wait for a GDB connection in the ramstage.
698
Denis 'GNUtoo' Cariklie4cece02012-06-22 15:56:37 +0200699
Julius Wernerd82e0cf2015-02-17 17:27:23 -0800700config FATAL_ASSERTS
701 bool "Halt when hitting a BUG() or assertion error"
702 default n
703 help
704 If enabled, coreboot will call hlt() on a BUG() or failed ASSERT().
705
Stefan Reinauerfe422182012-05-02 16:33:18 -0700706config DEBUG_CBFS
707 bool "Output verbose CBFS debug messages"
708 default n
Stefan Reinauerfe422182012-05-02 16:33:18 -0700709 help
710 This option enables additional CBFS related debug messages.
711
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000712config HAVE_DEBUG_RAM_SETUP
713 def_bool n
714
Uwe Hermann01ce6012010-03-05 10:03:50 +0000715config DEBUG_RAM_SETUP
716 bool "Output verbose RAM init debug messages"
717 default n
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000718 depends on HAVE_DEBUG_RAM_SETUP
Uwe Hermann01ce6012010-03-05 10:03:50 +0000719 help
720 This option enables additional RAM init related debug messages.
721 It is recommended to enable this when debugging issues on your
722 board which might be RAM init related.
723
724 Note: This option will increase the size of the coreboot image.
725
726 If unsure, say N.
727
Patrick Georgie82618d2010-10-01 14:50:12 +0000728config HAVE_DEBUG_CAR
729 def_bool n
730
Peter Stuge5015f792010-11-10 02:00:32 +0000731config DEBUG_CAR
732 def_bool n
733 depends on HAVE_DEBUG_CAR
734
735if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
Uwe Hermanna953f372010-11-10 00:14:32 +0000736# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
737# printk(BIOS_DEBUG, ...) calls.
Patrick Georgie82618d2010-10-01 14:50:12 +0000738config DEBUG_CAR
739 bool "Output verbose Cache-as-RAM debug messages"
740 default n
Peter Stuge5015f792010-11-10 02:00:32 +0000741 depends on HAVE_DEBUG_CAR
Patrick Georgie82618d2010-10-01 14:50:12 +0000742 help
743 This option enables additional CAR related debug messages.
Peter Stuge5015f792010-11-10 02:00:32 +0000744endif
Patrick Georgie82618d2010-10-01 14:50:12 +0000745
Myles Watson80e914ff2010-06-01 19:25:31 +0000746config DEBUG_PIRQ
747 bool "Check PIRQ table consistency"
748 default n
749 depends on GENERATE_PIRQ_TABLE
750 help
751 If unsure, say N.
752
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000753config HAVE_DEBUG_SMBUS
754 def_bool n
755
Uwe Hermann01ce6012010-03-05 10:03:50 +0000756config DEBUG_SMBUS
757 bool "Output verbose SMBus debug messages"
758 default n
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000759 depends on HAVE_DEBUG_SMBUS
Uwe Hermann01ce6012010-03-05 10:03:50 +0000760 help
761 This option enables additional SMBus (and SPD) debug messages.
762
763 Note: This option will increase the size of the coreboot image.
764
765 If unsure, say N.
766
767config DEBUG_SMI
768 bool "Output verbose SMI debug messages"
769 default n
770 depends on HAVE_SMI_HANDLER
Martin Roth3a543182015-09-28 15:27:24 -0600771 select SPI_FLASH_SMM if SPI_CONSOLE
Uwe Hermann01ce6012010-03-05 10:03:50 +0000772 help
773 This option enables additional SMI related debug messages.
774
775 Note: This option will increase the size of the coreboot image.
776
777 If unsure, say N.
778
Stefan Reinauerbc0f7a62010-08-01 15:41:14 +0000779config DEBUG_SMM_RELOCATION
780 bool "Debug SMM relocation code"
781 default n
782 depends on HAVE_SMI_HANDLER
783 help
784 This option enables additional SMM handler relocation related
785 debug messages.
786
787 Note: This option will increase the size of the coreboot image.
788
789 If unsure, say N.
790
Uwe Hermanna953f372010-11-10 00:14:32 +0000791# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
792# printk(BIOS_DEBUG, ...) calls.
793config DEBUG_MALLOC
Stefan Reinauer95a63962012-11-13 17:00:01 -0800794 prompt "Output verbose malloc debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
795 bool
Uwe Hermanna953f372010-11-10 00:14:32 +0000796 default n
Uwe Hermanna953f372010-11-10 00:14:32 +0000797 help
798 This option enables additional malloc related debug messages.
799
800 Note: This option will increase the size of the coreboot image.
801
802 If unsure, say N.
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300803
804# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
805# printk(BIOS_DEBUG, ...) calls.
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300806config DEBUG_ACPI
Stefan Reinauer95a63962012-11-13 17:00:01 -0800807 prompt "Output verbose ACPI debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
808 bool
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300809 default n
810 help
811 This option enables additional ACPI related debug messages.
812
813 Note: This option will slightly increase the size of the coreboot image.
814
815 If unsure, say N.
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300816
Uwe Hermanna953f372010-11-10 00:14:32 +0000817# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
818# printk(BIOS_DEBUG, ...) calls.
Myles Watson6c9bc012010-09-07 22:30:15 +0000819config REALMODE_DEBUG
Stefan Reinauer95a63962012-11-13 17:00:01 -0800820 prompt "Enable debug messages for option ROM execution" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
821 bool
Myles Watson6c9bc012010-09-07 22:30:15 +0000822 default n
Peter Stuge5015f792010-11-10 02:00:32 +0000823 depends on PCI_OPTION_ROM_RUN_REALMODE
Myles Watson6c9bc012010-09-07 22:30:15 +0000824 help
825 This option enables additional x86emu related debug messages.
826
827 Note: This option will increase the time to emulate a ROM.
828
829 If unsure, say N.
830
Uwe Hermann01ce6012010-03-05 10:03:50 +0000831config X86EMU_DEBUG
832 bool "Output verbose x86emu debug messages"
833 default n
834 depends on PCI_OPTION_ROM_RUN_YABEL
835 help
836 This option enables additional x86emu related debug messages.
837
838 Note: This option will increase the size of the coreboot image.
839
840 If unsure, say N.
841
842config X86EMU_DEBUG_JMP
843 bool "Trace JMP/RETF"
844 default n
845 depends on X86EMU_DEBUG
846 help
847 Print information about JMP and RETF opcodes from x86emu.
848
849 Note: This option will increase the size of the coreboot image.
850
851 If unsure, say N.
852
853config X86EMU_DEBUG_TRACE
854 bool "Trace all opcodes"
855 default n
856 depends on X86EMU_DEBUG
857 help
858 Print _all_ opcodes that are executed by x86emu.
Stefan Reinauer14e22772010-04-27 06:56:47 +0000859
Uwe Hermann01ce6012010-03-05 10:03:50 +0000860 WARNING: This will produce a LOT of output and take a long time.
861
862 Note: This option will increase the size of the coreboot image.
863
864 If unsure, say N.
865
866config X86EMU_DEBUG_PNP
867 bool "Log Plug&Play accesses"
868 default n
869 depends on X86EMU_DEBUG
870 help
871 Print Plug And Play accesses made by option ROMs.
872
873 Note: This option will increase the size of the coreboot image.
874
875 If unsure, say N.
876
877config X86EMU_DEBUG_DISK
878 bool "Log Disk I/O"
879 default n
880 depends on X86EMU_DEBUG
881 help
882 Print Disk I/O related messages.
883
884 Note: This option will increase the size of the coreboot image.
885
886 If unsure, say N.
887
888config X86EMU_DEBUG_PMM
889 bool "Log PMM"
890 default n
891 depends on X86EMU_DEBUG
892 help
893 Print messages related to POST Memory Manager (PMM).
894
895 Note: This option will increase the size of the coreboot image.
896
897 If unsure, say N.
898
899
900config X86EMU_DEBUG_VBE
901 bool "Debug VESA BIOS Extensions"
902 default n
903 depends on X86EMU_DEBUG
904 help
905 Print messages related to VESA BIOS Extension (VBE) functions.
906
907 Note: This option will increase the size of the coreboot image.
908
909 If unsure, say N.
910
911config X86EMU_DEBUG_INT10
912 bool "Redirect INT10 output to console"
913 default n
914 depends on X86EMU_DEBUG
915 help
916 Let INT10 (i.e. character output) calls print messages to debug output.
917
918 Note: This option will increase the size of the coreboot image.
919
920 If unsure, say N.
921
922config X86EMU_DEBUG_INTERRUPTS
923 bool "Log intXX calls"
924 default n
925 depends on X86EMU_DEBUG
926 help
927 Print messages related to interrupt handling.
928
929 Note: This option will increase the size of the coreboot image.
930
931 If unsure, say N.
932
933config X86EMU_DEBUG_CHECK_VMEM_ACCESS
934 bool "Log special memory accesses"
935 default n
936 depends on X86EMU_DEBUG
937 help
938 Print messages related to accesses to certain areas of the virtual
939 memory (e.g. BDA (BIOS Data Area) or interrupt vectors)
940
941 Note: This option will increase the size of the coreboot image.
942
943 If unsure, say N.
944
945config X86EMU_DEBUG_MEM
946 bool "Log all memory accesses"
947 default n
948 depends on X86EMU_DEBUG
949 help
950 Print memory accesses made by option ROM.
951 Note: This also includes accesses to fetch instructions.
952
953 Note: This option will increase the size of the coreboot image.
954
955 If unsure, say N.
956
957config X86EMU_DEBUG_IO
958 bool "Log IO accesses"
959 default n
960 depends on X86EMU_DEBUG
961 help
962 Print I/O accesses made by option ROM.
963
964 Note: This option will increase the size of the coreboot image.
965
966 If unsure, say N.
967
Denis 'GNUtoo' Carikli4cdc5d62013-05-15 00:19:49 +0200968config X86EMU_DEBUG_TIMINGS
969 bool "Output timing information"
970 default n
971 depends on X86EMU_DEBUG && UDELAY_LAPIC && HAVE_MONOTONIC_TIMER
972 help
973 Print timing information needed by i915tool.
974
975 If unsure, say N.
976
Stefan Reinauerdfb098d2011-11-17 12:50:54 -0800977config DEBUG_TPM
978 bool "Output verbose TPM debug messages"
979 default n
Vadim Bendebury26588702016-06-02 20:43:19 -0700980 depends on TPM || TPM2
Stefan Reinauerdfb098d2011-11-17 12:50:54 -0800981 help
982 This option enables additional TPM related debug messages.
983
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700984config DEBUG_SPI_FLASH
985 bool "Output verbose SPI flash debug messages"
986 default n
987 depends on SPI_FLASH
988 help
989 This option enables additional SPI flash related debug messages.
990
Kyösti Mälkki3be80cc2013-06-06 10:46:37 +0300991config DEBUG_USBDEBUG
992 bool "Output verbose USB 2.0 EHCI debug dongle messages"
993 default n
994 depends on USBDEBUG
995 help
996 This option enables additional USB 2.0 debug dongle related messages.
997
998 Select this to debug the connection of usbdebug dongle. Note that
999 you need some other working console to receive the messages.
1000
Stefan Reinauer8e073822012-04-04 00:07:22 +02001001if SOUTHBRIDGE_INTEL_BD82X6X && DEFAULT_CONSOLE_LOGLEVEL_8
1002# Only visible with the right southbridge and loglevel.
1003config DEBUG_INTEL_ME
1004 bool "Verbose logging for Intel Management Engine"
1005 default n
1006 help
1007 Enable verbose logging for Intel Management Engine driver that
1008 is present on Intel 6-series chipsets.
1009endif
1010
Rudolf Marek7f0e9302011-09-02 23:23:41 +02001011config TRACE
1012 bool "Trace function calls"
1013 default n
1014 help
1015 If enabled, every function will print information to console once
1016 the function is entered. The syntax is ~0xaaaabbbb(0xccccdddd)
1017 the 0xaaaabbbb is the actual function and 0xccccdddd is EIP
Ben Gardner8420ad42015-11-18 10:46:53 -06001018 of calling function. Please note some printk related functions
Rudolf Marek7f0e9302011-09-02 23:23:41 +02001019 are omitted from trace to have good looking console dumps.
Stefan Reinauerd37ab452012-12-18 16:23:28 -08001020
1021config DEBUG_COVERAGE
1022 bool "Debug code coverage"
1023 default n
1024 depends on COVERAGE
1025 help
1026 If enabled, the code coverage hooks in coreboot will output some
1027 information about the coverage data that is dumped.
1028
Jonathan Neuschäferfc04f9b2016-06-29 21:59:32 +02001029config DEBUG_BOOT_STATE
1030 bool "Debug boot state machine"
1031 default n
1032 help
1033 Control debugging of the boot state machine. When selected displays
1034 the state boundaries in ramstage.
1035
Jonathan Neuschäfer538e4462016-08-22 19:37:15 +02001036config DEBUG_PRINT_PAGE_TABLES
1037 bool "Print the page tables after construction"
1038 default n
1039 depends on ARCH_RISCV
1040 help
1041 After the page tables have been built, print them on the debug
1042 console.
1043
Nico Hubere84e62542016-10-05 17:43:56 +02001044config DEBUG_ADA_CODE
1045 bool "Compile debug code in Ada sources"
1046 default n
1047 help
1048 Add the compiler switch `-gnata` to compile code guarded by
1049 `pragma Debug`.
1050
Uwe Hermann168b11b2009-10-07 16:15:40 +00001051endmenu
1052
Martin Roth8e4aafb2016-12-15 15:25:15 -07001053
1054###############################################################################
1055# Set variables with no prompt - these can be set anywhere, and putting at
1056# the end of this file gives the most flexibility.
Myles Watsond73c1b52009-10-26 15:14:07 +00001057config ENABLE_APIC_EXT_ID
1058 bool
1059 default n
Myles Watson2e672732009-11-12 16:38:03 +00001060
1061config WARNINGS_ARE_ERRORS
1062 bool
Edward O'Callaghan63f6dc72014-11-18 03:17:54 +11001063 default y
Patrick Georgi436f99b2009-11-27 16:55:13 +00001064
Peter Stuge51eafde2010-10-13 06:23:02 +00001065# The four POWER_BUTTON_DEFAULT_ENABLE, POWER_BUTTON_DEFAULT_DISABLE,
1066# POWER_BUTTON_FORCE_ENABLE and POWER_BUTTON_FORCE_DISABLE options are
1067# mutually exclusive. One of these options must be selected in the
1068# mainboard Kconfig if the chipset supports enabling and disabling of
1069# the power button. Chipset code uses the ENABLE_POWER_BUTTON option set
1070# in mainboard/Kconfig to know if the button should be enabled or not.
1071
1072config POWER_BUTTON_DEFAULT_ENABLE
1073 def_bool n
1074 help
1075 Select when the board has a power button which can optionally be
1076 disabled by the user.
1077
1078config POWER_BUTTON_DEFAULT_DISABLE
1079 def_bool n
1080 help
1081 Select when the board has a power button which can optionally be
1082 enabled by the user, e.g. when the board ships with a jumper over
1083 the power switch contacts.
1084
1085config POWER_BUTTON_FORCE_ENABLE
1086 def_bool n
1087 help
1088 Select when the board requires that the power button is always
1089 enabled.
1090
1091config POWER_BUTTON_FORCE_DISABLE
1092 def_bool n
1093 help
1094 Select when the board requires that the power button is always
1095 disabled, e.g. when it has been hardwired to ground.
1096
1097config POWER_BUTTON_IS_OPTIONAL
1098 bool
1099 default y if POWER_BUTTON_DEFAULT_ENABLE || POWER_BUTTON_DEFAULT_DISABLE
1100 default n if !(POWER_BUTTON_DEFAULT_ENABLE || POWER_BUTTON_DEFAULT_DISABLE)
1101 help
1102 Internal option that controls ENABLE_POWER_BUTTON visibility.
Duncan Laurie72748002013-10-31 08:26:23 -07001103
1104config REG_SCRIPT
1105 bool
Duncan Laurie72748002013-10-31 08:26:23 -07001106 default n
1107 help
1108 Internal option that controls whether we compile in register scripts.
Furquan Shaikh99ac98f2014-04-23 10:18:48 -07001109
Furquan Shaikh99ac98f2014-04-23 10:18:48 -07001110config MAX_REBOOT_CNT
1111 int
1112 default 3
Timothy Pearson17ada2e2015-03-18 01:31:34 -05001113 help
1114 Internal option that sets the maximum number of bootblock executions allowed
1115 with the normal image enabled before assuming the normal image is defective
Vadim Bendebury9c9c3362014-07-23 09:40:02 -07001116 and switching to the fallback image.
Martin Roth59ff3402016-02-09 09:06:46 -07001117
Lee Leahyfc3741f2016-05-26 17:12:17 -07001118config CREATE_BOARD_CHECKLIST
1119 bool
1120 default n
1121 help
1122 When selected, creates a webpage showing the implementation status for
1123 the board. Routines highlighted in green are complete, yellow are
1124 optional and red are required and must be implemented. A table is
1125 produced for each stage of the boot process except the bootblock. The
1126 red items may be used as an implementation checklist for the board.
1127
1128config MAKE_CHECKLIST_PUBLIC
1129 bool
1130 default n
1131 help
1132 When selected, build/$(CONFIG_MAINBOARD_PART_NUMBER)_checklist.html
1133 is copied into the Documentation/$(CONFIG_MAINBOARD_VENDOR)/Board
1134 directory.
1135
1136config CHECKLIST_DATA_FILE_LOCATION
1137 string
1138 help
1139 Location of the <stage>_complete.dat and <stage>_optional.dat files
1140 that are consumed during checklist processing. <stage>_complete.dat
1141 contains the symbols that are expected to be in the resulting image.
1142 <stage>_optional.dat is a subset of <stage>_complete.dat and contains
1143 a list of weak symbols which the resulting image may consume. Other
1144 symbols contained only in <stage>_complete.dat will be flagged as
1145 required and not implemented if a weak implementation is found in the
1146 resulting image.
Nico Hubere0ed9022016-10-07 12:58:17 +02001147
1148config RAMSTAGE_ADA
1149 def_bool n
1150 help
1151 Selected by features that use Ada code in ramstage.
Nico Huberc83239e2016-10-05 17:46:49 +02001152
1153config RAMSTAGE_LIBHWBASE
1154 def_bool n
1155 select RAMSTAGE_ADA
1156 help
1157 Selected by features that require `libhwbase` in ramstage.
1158
1159config HWBASE_DYNAMIC_MMIO
1160 def_bool y
Martin Roth75e5cb72016-12-15 15:05:37 -07001161
Martin Roth8e4aafb2016-12-15 15:25:15 -07001162config UNCOMPRESSED_RAMSTAGE
1163 bool
1164
1165config NO_XIP_EARLY_STAGES
1166 bool
1167 default n if ARCH_X86
1168 default y
1169 help
1170 Identify if early stages are eXecute-In-Place(XIP).
1171
1172config EARLY_CBMEM_INIT
1173 def_bool !LATE_CBMEM_INIT
1174
1175config EARLY_CBMEM_LIST
1176 bool
1177 default n
1178 help
1179 Enable display of CBMEM during romstage and postcar.
1180
1181config RELOCATABLE_MODULES
1182 bool
1183 help
1184 If RELOCATABLE_MODULES is selected then support is enabled for
1185 building relocatable modules in the RAM stage. Those modules can be
1186 loaded anywhere and all the relocations are handled automatically.
1187
1188config NO_STAGE_CACHE
1189 bool
1190 help
1191 Do not save any component in stage cache for resume path. On resume,
1192 all components would be read back from CBFS again.
1193
1194config GENERIC_GPIO_LIB
1195 bool
1196 help
1197 If enabled, compile the generic GPIO library. A "generic" GPIO
1198 implies configurability usually found on SoCs, particularly the
1199 ability to control internal pull resistors.
1200
1201config GENERIC_SPD_BIN
1202 bool
1203 help
1204 If enabled, add support for adding spd.hex files in cbfs as spd.bin
1205 and locating it runtime to load SPD. Additionally provide provision to
1206 fetch SPD over SMBus.
1207
1208config DIMM_MAX
1209 int
1210 default 4
1211 depends on GENERIC_SPD_BIN
1212 help
1213 Total number of memory DIMM slots available on motherboard.
1214 It is multiplication of number of channel to number of DIMMs per
1215 channel
1216
1217config DIMM_SPD_SIZE
1218 int
1219 default 256
Martin Roth8e4aafb2016-12-15 15:25:15 -07001220 help
1221 Total SPD size that will be used for DIMM.
1222 Ex: DDR3 256, DDR4 512.
1223
1224config BOARD_ID_AUTO
1225 bool
1226 default n
1227 help
1228 Mainboards that can read a board ID from the hardware straps
1229 (ie. GPIO) select this configuration option.
1230
1231config BOARD_ID_MANUAL
1232 bool
1233 default n
1234 depends on !BOARD_ID_AUTO
1235 help
1236 If you want to maintain a board ID, but the hardware does not
1237 have straps to automatically determine the ID, you can say Y
1238 here and add a file named 'board_id' to CBFS. If you don't know
1239 what this is about, say N.
1240
1241config BOOTBLOCK_CUSTOM
1242 # To be selected by arch, SoC or mainboard if it does not want use the normal
1243 # src/lib/bootblock.c#main() C entry point.
1244 bool
1245
1246config C_ENVIRONMENT_BOOTBLOCK
1247 # To be selected by arch or platform if a C environment is available during the
1248 # bootblock. Normally this signifies availability of RW memory (e.g. SRAM).
1249 bool
1250
Martin Roth75e5cb72016-12-15 15:05:37 -07001251###############################################################################
1252# Set default values for symbols created before mainboards. This allows the
1253# option to be displayed in the general menu, but the default to be loaded in
1254# the mainboard if desired.
1255config COMPRESS_RAMSTAGE
1256 default y if !UNCOMPRESSED_RAMSTAGE
1257
1258config COMPRESS_PRERAM_STAGES
1259 depends on !ARCH_X86
1260 default y
1261
1262config INCLUDE_CONFIG_FILE
1263 default y
1264
1265config BOARD_ID_STRING
1266 default "(none)"
1267 depends on BOARD_ID_MANUAL
1268
1269config BOOTSPLASH_FILE
1270 depends on BOOTSPLASH_IMAGE
1271 default "bootsplash.jpg"
1272
1273config CBFS_SIZE
1274 default ROM_SIZE