blob: 015c38f4583e4b34a3f9cd14b1530c659cd671fb [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
Patrick Georgi9b0de712013-12-29 18:45:23 +010081 help
82 Many toolchains break when building coreboot since it uses quite
83 unusual linker features. Unless developers explicitely request it,
84 we'll have to assume that they use their distro compiler by mistake.
85 Make sure that using patched compilers is a conscious decision.
86
Patrick Georgi516a2a72010-03-25 21:45:25 +000087config CCACHE
Uwe Hermannad8c95f2012-04-12 22:00:03 +020088 bool "Use ccache to speed up (re)compilation"
Patrick Georgi516a2a72010-03-25 21:45:25 +000089 default n
90 help
91 Enables the use of ccache for faster builds.
Uwe Hermannad8c95f2012-04-12 22:00:03 +020092
93 Requires the ccache utility in your system $PATH.
94
95 For details see https://ccache.samba.org.
Patrick Georgi516a2a72010-03-25 21:45:25 +000096
Sol Boucher69b88bf2015-02-26 11:47:19 -080097config FMD_GENPARSER
98 bool "Generate flashmap descriptor parser using flex and bison"
99 default n
Sol Boucher69b88bf2015-02-26 11:47:19 -0800100 help
101 Enable this option if you are working on the flashmap descriptor
102 parser and made changes to fmd_scanner.l or fmd_parser.y.
103
104 Otherwise, say N to use the provided pregenerated scanner/parser.
105
Martin Rothf411b702017-04-09 19:12:42 -0600106config UTIL_GENPARSER
107 bool "Generate SCONFIG & BLOBTOOL parser using flex and bison"
Stefan Reinauer9bf78102010-08-09 13:28:18 +0000108 default n
Stefan Reinauer9bf78102010-08-09 13:28:18 +0000109 help
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200110 Enable this option if you are working on the sconfig device tree
Martin Rothf411b702017-04-09 19:12:42 -0600111 parser or blobtool and made changes to the .l or .y files.
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200112
Sol Boucher69b88bf2015-02-26 11:47:19 -0800113 Otherwise, say N to use the provided pregenerated scanner/parser.
Stefan Reinauer9bf78102010-08-09 13:28:18 +0000114
Joe Korty6d772522010-05-19 18:41:15 +0000115config USE_OPTION_TABLE
116 bool "Use CMOS for configuration values"
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000117 depends on HAVE_OPTION_TABLE
Joe Korty6d772522010-05-19 18:41:15 +0000118 help
119 Enable this option if coreboot shall read options from the "CMOS"
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200120 NVRAM instead of using hard-coded values.
Joe Korty6d772522010-05-19 18:41:15 +0000121
Timothy Pearsonf20c6e82015-02-14 16:15:31 -0600122config STATIC_OPTION_TABLE
123 bool "Load default configuration values into CMOS on each boot"
Timothy Pearsonf20c6e82015-02-14 16:15:31 -0600124 depends on USE_OPTION_TABLE
125 help
126 Enable this option to reset "CMOS" NVRAM values to default on
127 every boot. Use this if you want the NVRAM configuration to
128 never be modified from its default values.
129
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000130config COMPRESS_RAMSTAGE
131 bool "Compress ramstage with LZMA"
Martin Roth75e5cb72016-12-15 15:05:37 -0700132 # Default value set at the end of the file
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000133 help
134 Compress ramstage to save memory in the flash image. Note
135 that decompression might slow down booting if the boot flash
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200136 is connected through a slow link (i.e. SPI).
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000137
Julius Werner09f29212015-09-29 13:51:35 -0700138config COMPRESS_PRERAM_STAGES
139 bool "Compress romstage and verstage with LZ4"
Martin Rothf2e04612016-03-09 15:50:23 -0700140 depends on !ARCH_X86
Martin Roth75e5cb72016-12-15 15:05:37 -0700141 # Default value set at the end of the file
Julius Werner09f29212015-09-29 13:51:35 -0700142 help
143 Compress romstage and (if it exists) verstage with LZ4 to save flash
144 space and speed up boot, since the time for reading the image from SPI
145 (and in the vboot case verifying it) is usually much greater than the
146 time spent decompressing. Doesn't work for XIP stages (assume all
147 ARCH_X86 for now) for obvious reasons.
148
Cristian Măgherușan-Stanciud367b002011-06-19 03:03:28 +0200149config INCLUDE_CONFIG_FILE
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200150 bool "Include the coreboot .config file into the ROM image"
Martin Roth75e5cb72016-12-15 15:05:37 -0700151 # Default value set at the end of the file
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200152 help
153 Include the .config file that was used to compile coreboot
154 in the (CBFS) ROM image. This is useful if you want to know which
155 options were used to build a specific coreboot.rom image.
156
Daniele Forsi53847a22014-07-22 18:00:56 +0200157 Saying Y here will increase the image size by 2-3KB.
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200158
159 You can use the following command to easily list the options:
160
161 grep -a CONFIG_ coreboot.rom
162
163 Alternatively, you can also use cbfstool to print the image
164 contents (including the raw 'config' item we're looking for).
165
166 Example:
167
168 $ cbfstool coreboot.rom print
169 coreboot.rom: 4096 kB, bootblocksize 1008, romsize 4194304,
170 offset 0x0
171 Alignment: 64 bytes
Steve Goodrichf0269122012-05-18 11:18:47 -0600172
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200173 Name Offset Type Size
174 cmos_layout.bin 0x0 cmos layout 1159
175 fallback/romstage 0x4c0 stage 339756
Daniele Forsi53847a22014-07-22 18:00:56 +0200176 fallback/ramstage 0x53440 stage 186664
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200177 fallback/payload 0x80dc0 payload 51526
178 config 0x8d740 raw 3324
179 (empty) 0x8e480 null 3610440
Cristian Măgherușan-Stanciud367b002011-06-19 03:03:28 +0200180
Vadim Bendebury9202473d2011-09-21 14:46:43 -0700181config COLLECT_TIMESTAMPS
182 bool "Create a table of timestamps collected during boot"
Vadim Bendebury9202473d2011-09-21 14:46:43 -0700183 help
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200184 Make coreboot create a table of timer-ID/timer-value pairs to
185 allow measuring time spent at different phases of the boot process.
186
Patrick Georgi7e9b9d82012-04-30 21:06:10 +0200187config USE_BLOBS
188 bool "Allow use of binary-only repository"
Patrick Georgi7e9b9d82012-04-30 21:06:10 +0200189 help
190 This draws in the blobs repository, which contains binary files that
191 might be required for some chipsets or boards.
192 This flag ensures that a "Free" option remains available for users.
193
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800194config COVERAGE
195 bool "Code coverage support"
196 depends on COMPILER_GCC
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800197 help
198 Add code coverage support for coreboot. This will store code
199 coverage information in CBMEM for extraction from user space.
200 If unsure, say N.
201
Ryan Salsamendiab37e9a2017-06-11 21:07:31 -0700202config UBSAN
203 bool "Undefined behavior sanitizer support"
204 default n
205 help
206 Instrument the code with checks for undefined behavior. If unsure,
207 say N because it adds a small performance penalty and may abort
208 on code that happens to work in spite of the UB.
209
Stefan Reinauer58470e32014-10-17 13:08:36 +0200210config RELOCATABLE_RAMSTAGE
Vladimir Serbinenko633352c2015-05-30 22:21:37 +0200211 depends on EARLY_CBMEM_INIT
Stefan Reinauer58470e32014-10-17 13:08:36 +0200212 bool "Build the ramstage to be relocatable in 32-bit address space."
Vladimir Serbinenko633352c2015-05-30 22:21:37 +0200213 select RELOCATABLE_MODULES
Stefan Reinauer58470e32014-10-17 13:08:36 +0200214 help
215 The reloctable ramstage support allows for the ramstage to be built
216 as a relocatable module. The stage loader can identify a place
217 out of the OS way so that copying memory is unnecessary during an S3
218 wake. When selecting this option the romstage is responsible for
219 determing a stack location to use for loading the ramstage.
220
221config CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM
222 depends on RELOCATABLE_RAMSTAGE
Arthur Heymans410f2562017-01-25 15:27:52 +0100223 bool
Stefan Reinauer58470e32014-10-17 13:08:36 +0200224 help
225 The relocated ramstage is saved in an area specified by the
226 by the board and/or chipset.
227
Stefan Reinauer58470e32014-10-17 13:08:36 +0200228config UPDATE_IMAGE
229 bool "Update existing coreboot.rom image"
Stefan Reinauer58470e32014-10-17 13:08:36 +0200230 help
231 If this option is enabled, no new coreboot.rom file
232 is created. Instead it is expected that there already
233 is a suitable file for further processing.
234 The bootblock will not be modified.
235
Martin Roth5942e062016-01-20 14:59:21 -0700236 If unsure, select 'N'
237
Stefan Reinauerd06258c2015-03-26 16:29:00 -0700238config BOARD_ID_STRING
239 string "Board ID"
Martin Roth75e5cb72016-12-15 15:05:37 -0700240 # Default value set at the end of the file
Stefan Reinauerd06258c2015-03-26 16:29:00 -0700241 depends on BOARD_ID_MANUAL
242 help
243 This string is placed in the 'board_id' CBFS file for indicating
244 board type.
245
David Hendricks627b3bd2014-11-03 17:42:09 -0800246config RAM_CODE_SUPPORT
Vladimir Serbinenko8ef9c562015-05-30 22:55:44 +0200247 bool
David Hendricks627b3bd2014-11-03 17:42:09 -0800248 help
249 If enabled, coreboot discovers RAM configuration (value obtained by
250 reading board straps) and stores it in coreboot table.
251
Konstantin Aladyshev6544cb32015-01-24 18:52:10 +0400252config BOOTSPLASH_IMAGE
253 bool "Add a bootsplash image"
254 help
255 Select this option if you have a bootsplash image that you would
256 like to add to your ROM.
257
258 This will only add the image to the ROM. To actually run it check
259 options under 'Display' section.
260
261config BOOTSPLASH_FILE
262 string "Bootsplash path and filename"
263 depends on BOOTSPLASH_IMAGE
Martin Roth75e5cb72016-12-15 15:05:37 -0700264 # Default value set at the end of the file
Konstantin Aladyshev6544cb32015-01-24 18:52:10 +0400265 help
266 The path and filename of the file to use as graphical bootsplash
267 screen. The file format has to be jpg.
268
Uwe Hermannc04be932009-10-05 13:55:28 +0000269endmenu
270
Martin Roth026e4dc2015-06-19 23:17:15 -0600271menu "Mainboard"
272
Stefan Reinauera48ca842015-04-04 01:58:28 +0200273source "src/mainboard/Kconfig"
Stefan Reinauer8aedcbc2010-12-16 23:37:17 +0000274
Marshall Dawsone9375132016-09-04 08:38:33 -0600275config DEVICETREE
276 string
277 default "devicetree.cb"
278 help
279 This symbol allows mainboards to select a different file under their
280 mainboard directory for the devicetree.cb file. This allows the board
281 variants that need different devicetrees to be in the same directory.
282
283 Examples: "devicetree.variant.cb"
284 "variant/devicetree.cb"
285
Martin Roth026e4dc2015-06-19 23:17:15 -0600286config CBFS_SIZE
287 hex "Size of CBFS filesystem in ROM"
Martin Roth75e5cb72016-12-15 15:05:37 -0700288 # Default value set at the end of the file
Martin Roth026e4dc2015-06-19 23:17:15 -0600289 help
290 This is the part of the ROM actually managed by CBFS, located at the
291 end of the ROM (passed through cbfstool -o) on x86 and at at the start
292 of the ROM (passed through cbfstool -s) everywhere else. It defaults
293 to span the whole ROM on all but Intel systems that use an Intel Firmware
294 Descriptor. It can be overridden to make coreboot live alongside other
295 components like ChromeOS's vboot/FMAP or Intel's IFD / ME / TXE
296 binaries.
297
Patrick Georgi8a3592e2015-09-16 18:10:52 +0200298config FMDFILE
299 string "fmap description file in fmd format"
Patrick Georgi5d7ab392015-12-12 00:23:15 +0100300 default "src/mainboard/$(CONFIG_MAINBOARD_DIR)/chromeos.fmd" if CHROMEOS
Patrick Georgi8a3592e2015-09-16 18:10:52 +0200301 default ""
302 help
303 The build system creates a default FMAP from ROM_SIZE and CBFS_SIZE,
304 but in some cases more complex setups are required.
305 When an fmd is specified, it overrides the default format.
306
Vadim Bendebury26588702016-06-02 20:43:19 -0700307config MAINBOARD_HAS_TPM2
308 bool
309 default n
310 help
311 There is a TPM device installed on the mainboard, and it is
312 compliant with version 2 TCG TPM specification. Could be connected
313 over LPC, SPI or I2C.
314
Martin Rothda1ca202015-12-26 16:51:16 -0700315endmenu
316
Martin Rothb09a5692016-01-24 19:38:33 -0700317# load site-local kconfig to allow user specific defaults and overrides
318source "site-local/Kconfig"
319
Vladimir Serbinenkoa9db82f2014-10-16 13:21:47 +0200320config SYSTEM_TYPE_LAPTOP
Martin Roth595e7772015-04-26 18:53:26 -0600321 default n
322 bool
Vladimir Serbinenkoa9db82f2014-10-16 13:21:47 +0200323
Werner Zehc0fb3612016-01-14 15:08:36 +0100324config CBFS_AUTOGEN_ATTRIBUTES
325 default n
326 bool
327 help
328 If this option is selected, every file in cbfs which has a constraint
329 regarding position or alignment will get an additional file attribute
330 which describes this constraint.
331
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000332menu "Chipset"
333
Duncan Lauried2119762015-06-08 18:11:56 -0700334comment "SoC"
335source "src/soc/*/*/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000336comment "CPU"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200337source "src/cpu/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000338comment "Northbridge"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200339source "src/northbridge/*/*/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000340comment "Southbridge"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200341source "src/southbridge/*/*/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000342comment "Super I/O"
Omar Pakker57603e22016-07-29 23:31:45 +0200343source "src/superio/*/*/Kconfig"
Sven Schnelle7592e8b2011-01-27 11:43:03 +0000344comment "Embedded Controllers"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200345source "src/ec/acpi/Kconfig"
346source "src/ec/*/*/Kconfig"
Stefan Reinauer86ddd732016-03-11 20:22:28 -0800347# FIXME move to vendorcode
Marc Jones78687972015-04-22 23:16:31 -0600348source "src/drivers/intel/fsp1_0/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000349
Martin Roth59aa2b12015-06-20 16:17:12 -0600350source "src/southbridge/intel/common/firmware/Kconfig"
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -0700351source "src/vboot/Kconfig"
Martin Rothe1523ec2015-06-19 22:30:43 -0600352source "src/vendorcode/*/Kconfig"
Martin Roth59aa2b12015-06-20 16:17:12 -0600353
Martin Rothe1523ec2015-06-19 22:30:43 -0600354source "src/arch/*/Kconfig"
355
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000356endmenu
Patrick Georgi0588d192009-08-12 15:00:51 +0000357
Stefan Reinauera48ca842015-04-04 01:58:28 +0200358source "src/device/Kconfig"
Stefan Reinauer95a63962012-11-13 17:00:01 -0800359
Rudolf Marekd9c25492010-05-16 15:31:53 +0000360menu "Generic Drivers"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200361source "src/drivers/*/Kconfig"
Stefan Reinauer86ddd732016-03-11 20:22:28 -0800362source "src/drivers/*/*/Kconfig"
Lee Leahy48dbc662017-05-08 16:56:03 -0700363source "src/commonlib/storage/Kconfig"
Rudolf Marekd9c25492010-05-16 15:31:53 +0000364endmenu
365
Martin Roth09210a12016-05-17 11:28:23 -0600366source "src/acpi/Kconfig"
367
Aaron Durbin4a36c4e2016-08-11 11:02:26 -0500368# This option is for the current boards/chipsets where SPI flash
369# is not the boot device. Currently nearly all boards/chipsets assume
370# SPI flash is the boot device.
371config BOOT_DEVICE_NOT_SPI_FLASH
372 bool
373 default n
374
375config BOOT_DEVICE_SPI_FLASH
376 bool
377 default y if !BOOT_DEVICE_NOT_SPI_FLASH
378 default n
379
Aaron Durbin16c173f2016-08-11 14:04:10 -0500380config BOOT_DEVICE_MEMORY_MAPPED
381 bool
382 default y if ARCH_X86 && BOOT_DEVICE_SPI_FLASH
383 default n
384 help
385 Inform system if SPI is memory-mapped or not.
386
Aaron Durbine8e118d2016-08-12 15:00:10 -0500387config BOOT_DEVICE_SUPPORTS_WRITES
388 bool
389 default n
390 help
391 Indicate that the platform has writable boot device
392 support.
393
Patrick Georgi0770f252015-04-22 13:28:21 +0200394config RTC
395 bool
396 default n
397
Stefan Reinauer7cb01e02013-08-29 16:05:02 -0700398config TPM
399 bool
400 default n
Vadim Bendebury26588702016-06-02 20:43:19 -0700401 select LPC_TPM if MAINBOARD_HAS_LPC_TPM
402 select I2C_TPM if !MAINBOARD_HAS_LPC_TPM && !SPI_TPM
Stefan Reinauer7cb01e02013-08-29 16:05:02 -0700403 help
404 Enable this option to enable TPM support in coreboot.
405
406 If unsure, say N.
407
Vadim Bendebury26588702016-06-02 20:43:19 -0700408config TPM2
409 bool
410 select LPC_TPM if MAINBOARD_HAS_LPC_TPM
411 select I2C_TPM if !MAINBOARD_HAS_LPC_TPM && !SPI_TPM
412 help
413 Enable this option to enable TPM2 support in coreboot.
414
415 If unsure, say N.
416
Vadim Bendeburyb9126fe2017-03-22 16:16:34 -0700417config POWER_OFF_ON_CR50_UPDATE
418 bool
419 help
420 Power off machine while waiting for CR50 update to take effect.
421
Aaron Durbin8bc896f2017-04-19 10:19:38 -0500422config MAINBOARD_HAS_TPM_CR50
423 bool
424 default y if MAINBOARD_HAS_SPI_TPM_CR50 || MAINBOARD_HAS_I2C_TPM_CR50
425 default n
426 select MAINBOARD_HAS_TPM2
Vadim Bendeburyb9126fe2017-03-22 16:16:34 -0700427 select POWER_OFF_ON_CR50_UPDATE if ARCH_X86
Aaron Durbin8bc896f2017-04-19 10:19:38 -0500428
Patrick Georgi0588d192009-08-12 15:00:51 +0000429config HEAP_SIZE
430 hex
Myles Watson04000f42009-10-16 19:12:49 +0000431 default 0x4000
Patrick Georgi0588d192009-08-12 15:00:51 +0000432
Julius Wernerc3e7c4e2014-09-19 13:18:16 -0700433config STACK_SIZE
434 hex
Julius Werner66a476a2015-10-12 16:45:21 -0700435 default 0x1000 if ARCH_X86
436 default 0x0
Julius Wernerc3e7c4e2014-09-19 13:18:16 -0700437
Patrick Georgi0588d192009-08-12 15:00:51 +0000438config MAX_CPUS
439 int
440 default 1
441
Stefan Reinauera48ca842015-04-04 01:58:28 +0200442source "src/console/Kconfig"
Patrick Georgi0588d192009-08-12 15:00:51 +0000443
444config HAVE_ACPI_RESUME
445 bool
446 default n
447
Kyösti Mälkki9d6f3652016-06-28 07:38:46 +0300448config ACPI_HUGE_LOWMEM_BACKUP
449 bool
Kyösti Mälkki43e9c932016-11-10 11:50:21 +0200450 default n
Kyösti Mälkki9d6f3652016-06-28 07:38:46 +0300451 help
452 On S3 resume path, backup low memory from RAMBASE..RAMTOP in CBMEM.
453
Aaron Durbin87c9fae2016-01-22 15:26:04 -0600454config RESUME_PATH_SAME_AS_BOOT
455 bool
456 default y if ARCH_X86
457 depends on HAVE_ACPI_RESUME
458 help
459 This option indicates that when a system resumes it takes the
460 same path as a regular boot. e.g. an x86 system runs from the
461 reset vector at 0xfffffff0 on both resume and warm/cold boot.
462
Patrick Georgi0588d192009-08-12 15:00:51 +0000463config HAVE_HARD_RESET
464 bool
Uwe Hermann748475b2009-10-09 11:47:21 +0000465 default n
Patrick Georgi37bdb872010-02-27 08:39:04 +0000466 help
467 This variable specifies whether a given board has a hard_reset
468 function, no matter if it's provided by board code or chipset code.
469
Timothy Pearson44d53422015-05-18 16:04:10 -0500470config HAVE_ROMSTAGE_CONSOLE_SPINLOCK
471 bool
Kyösti Mälkkib5664de2016-07-08 13:33:00 +0300472 depends on EARLY_CBMEM_INIT
Timothy Pearson44d53422015-05-18 16:04:10 -0500473 default n
474
Timothy Pearson7b22d842015-08-28 19:52:05 -0500475config HAVE_ROMSTAGE_NVRAM_CBFS_SPINLOCK
476 bool
Kyösti Mälkkib5664de2016-07-08 13:33:00 +0300477 depends on EARLY_CBMEM_INIT
Timothy Pearson7b22d842015-08-28 19:52:05 -0500478 default n
479 help
480 This should be enabled on certain plaforms, such as the AMD
481 SR565x, that cannot handle concurrent CBFS accesses from
482 multiple APs during early startup.
483
Timothy Pearsonc764c742015-08-28 20:48:17 -0500484config HAVE_ROMSTAGE_MICROCODE_CBFS_SPINLOCK
485 bool
Kyösti Mälkkib5664de2016-07-08 13:33:00 +0300486 depends on EARLY_CBMEM_INIT
Timothy Pearsonc764c742015-08-28 20:48:17 -0500487 default n
488
Aaron Durbina4217912013-04-29 22:31:51 -0500489config HAVE_MONOTONIC_TIMER
490 def_bool n
491 help
492 The board/chipset provides a monotonic timer.
493
Aaron Durbine5e36302014-09-25 10:05:15 -0500494config GENERIC_UDELAY
495 def_bool n
496 depends on HAVE_MONOTONIC_TIMER
497 help
498 The board/chipset uses a generic udelay function utilizing the
499 monotonic timer.
500
Aaron Durbin340ca912013-04-30 09:58:12 -0500501config TIMER_QUEUE
502 def_bool n
503 depends on HAVE_MONOTONIC_TIMER
504 help
Kyösti Mälkkiecd84242013-09-13 07:57:49 +0300505 Provide a timer queue for performing time-based callbacks.
Aaron Durbin340ca912013-04-30 09:58:12 -0500506
Aaron Durbin4409a5e2013-05-06 12:20:52 -0500507config COOP_MULTITASKING
508 def_bool n
Aaron Durbin38c326d2013-05-06 12:22:23 -0500509 depends on TIMER_QUEUE && ARCH_X86
Aaron Durbin4409a5e2013-05-06 12:20:52 -0500510 help
511 Cooperative multitasking allows callbacks to be multiplexed on the
512 main thread of ramstage. With this enabled it allows for multiple
513 execution paths to take place when they have udelay() calls within
514 their code.
515
516config NUM_THREADS
517 int
518 default 4
519 depends on COOP_MULTITASKING
520 help
521 How many execution threads to cooperatively multitask with.
522
Patrick Georgi0588d192009-08-12 15:00:51 +0000523config HAVE_OPTION_TABLE
524 bool
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000525 default n
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000526 help
527 This variable specifies whether a given board has a cmos.layout
528 file containing NVRAM/CMOS bit definitions.
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000529 It defaults to 'n' but can be selected in mainboard/*/Kconfig.
Patrick Georgi0588d192009-08-12 15:00:51 +0000530
Patrick Georgi0588d192009-08-12 15:00:51 +0000531config PIRQ_ROUTE
532 bool
533 default n
534
535config HAVE_SMI_HANDLER
536 bool
537 default n
538
539config PCI_IO_CFG_EXT
540 bool
541 default n
542
543config IOAPIC
544 bool
545 default n
546
Kyösti Mälkki107f72e2014-01-06 11:06:26 +0200547config CACHE_ROM_SIZE_OVERRIDE
Stefan Reinauer5b635792012-08-16 14:05:42 -0700548 hex
Martin Roth3b878122016-09-30 14:43:01 -0600549 default 0x0
Stefan Reinauer5b635792012-08-16 14:05:42 -0700550
Myles Watson45bb25f2009-09-22 18:49:08 +0000551config USE_WATCHDOG_ON_BOOT
552 bool
553 default n
554
Myles Watson45bb25f2009-09-22 18:49:08 +0000555config GFXUMA
556 bool
Myles Watsond73c1b52009-10-26 15:14:07 +0000557 default n
Myles Watson45bb25f2009-09-22 18:49:08 +0000558 help
559 Enable Unified Memory Architecture for graphics.
560
Myles Watsonb8e20272009-10-15 13:35:47 +0000561config HAVE_ACPI_TABLES
562 bool
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000563 help
564 This variable specifies whether a given board has ACPI table support.
565 It is usually set in mainboard/*/Kconfig.
Myles Watsonb8e20272009-10-15 13:35:47 +0000566
567config HAVE_MP_TABLE
568 bool
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000569 help
570 This variable specifies whether a given board has MP table support.
571 It is usually set in mainboard/*/Kconfig.
572 Whether or not the MP table is actually generated by coreboot
573 is configurable by the user via GENERATE_MP_TABLE.
Myles Watsonb8e20272009-10-15 13:35:47 +0000574
575config HAVE_PIRQ_TABLE
576 bool
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000577 help
578 This variable specifies whether a given board has PIRQ table support.
579 It is usually set in mainboard/*/Kconfig.
580 Whether or not the PIRQ table is actually generated by coreboot
581 is configurable by the user via GENERATE_PIRQ_TABLE.
Myles Watsonb8e20272009-10-15 13:35:47 +0000582
Alexandru Gagniuc70c660f2012-08-23 02:32:58 -0500583config MAX_PIRQ_LINKS
584 int
585 default 4
586 help
587 This variable specifies the number of PIRQ interrupt links which are
588 routable. On most chipsets, this is 4, INTA through INTD. Some
589 chipsets offer more than four links, commonly up to INTH. They may
590 also have a separate link for ATA or IOAPIC interrupts. When the PIRQ
591 table specifies links greater than 4, pirq_route_irqs will not
592 function properly, unless this variable is correctly set.
593
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200594config COMMON_FADT
595 bool
596 default n
597
Aaron Durbin9420a522015-11-17 16:31:00 -0600598config ACPI_NHLT
599 bool
600 default n
601 help
602 Build support for NHLT (non HD Audio) ACPI table generation.
603
Myles Watsond73c1b52009-10-26 15:14:07 +0000604#These Options are here to avoid "undefined" warnings.
605#The actual selection and help texts are in the following menu.
606
Uwe Hermann168b11b2009-10-07 16:15:40 +0000607menu "System tables"
Myles Watson45bb25f2009-09-22 18:49:08 +0000608
Myles Watsonb8e20272009-10-15 13:35:47 +0000609config GENERATE_MP_TABLE
Stefan Reinauer56cd70b2012-11-13 17:33:08 -0800610 prompt "Generate an MP table" if HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC
611 bool
612 default HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000613 help
614 Generate an MP table (conforming to the Intel MultiProcessor
615 specification 1.4) for this board.
616
617 If unsure, say Y.
Myles Watson45bb25f2009-09-22 18:49:08 +0000618
Myles Watsonb8e20272009-10-15 13:35:47 +0000619config GENERATE_PIRQ_TABLE
Stefan Reinauer56cd70b2012-11-13 17:33:08 -0800620 prompt "Generate a PIRQ table" if HAVE_PIRQ_TABLE
621 bool
622 default HAVE_PIRQ_TABLE
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000623 help
624 Generate a PIRQ table for this board.
625
626 If unsure, say Y.
Myles Watson45bb25f2009-09-22 18:49:08 +0000627
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200628config GENERATE_SMBIOS_TABLES
629 depends on ARCH_X86
630 bool "Generate SMBIOS tables"
631 default y
632 help
633 Generate SMBIOS tables for this board.
634
635 If unsure, say Y.
636
Vladimir Serbinenko0afdec42015-05-30 23:08:26 +0200637config SMBIOS_PROVIDED_BY_MOBO
638 bool
639 default n
640
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200641config MAINBOARD_SERIAL_NUMBER
642 string "SMBIOS Serial Number"
643 depends on GENERATE_SMBIOS_TABLES
Vladimir Serbinenko0afdec42015-05-30 23:08:26 +0200644 depends on !SMBIOS_PROVIDED_BY_MOBO
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200645 default "123456789"
Martin Roth595e7772015-04-26 18:53:26 -0600646 help
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200647 The Serial Number to store in SMBIOS structures.
648
649config MAINBOARD_VERSION
650 string "SMBIOS Version Number"
651 depends on GENERATE_SMBIOS_TABLES
Vladimir Serbinenko0afdec42015-05-30 23:08:26 +0200652 depends on !SMBIOS_PROVIDED_BY_MOBO
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200653 default "1.0"
654 help
655 The Version Number to store in SMBIOS structures.
656
657config MAINBOARD_SMBIOS_MANUFACTURER
658 string "SMBIOS Manufacturer"
659 depends on GENERATE_SMBIOS_TABLES
Vladimir Serbinenko0afdec42015-05-30 23:08:26 +0200660 depends on !SMBIOS_PROVIDED_BY_MOBO
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200661 default MAINBOARD_VENDOR
662 help
663 Override the default Manufacturer stored in SMBIOS structures.
664
665config MAINBOARD_SMBIOS_PRODUCT_NAME
666 string "SMBIOS Product name"
667 depends on GENERATE_SMBIOS_TABLES
Vladimir Serbinenko0afdec42015-05-30 23:08:26 +0200668 depends on !SMBIOS_PROVIDED_BY_MOBO
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200669 default MAINBOARD_PART_NUMBER
670 help
671 Override the default Product name stored in SMBIOS structures.
672
Myles Watson45bb25f2009-09-22 18:49:08 +0000673endmenu
674
Martin Roth21c06502016-02-04 19:52:27 -0700675source "payloads/Kconfig"
Peter Stugea758ca22009-09-17 16:21:31 +0000676
Uwe Hermann168b11b2009-10-07 16:15:40 +0000677menu "Debugging"
678
679# TODO: Better help text and detailed instructions.
Patrick Georgi0588d192009-08-12 15:00:51 +0000680config GDB_STUB
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +0000681 bool "GDB debugging support"
Rudolf Marek65888022012-03-25 20:51:16 +0200682 default n
Denis 'GNUtoo' Carikli3747ba12015-12-10 22:04:56 +0100683 depends on CONSOLE_SERIAL
Patrick Georgi0588d192009-08-12 15:00:51 +0000684 help
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +0000685 If enabled, you will be able to set breakpoints for gdb debugging.
Stefan Reinauer8677a232010-12-11 20:33:41 +0000686 See src/arch/x86/lib/c_start.S for details.
Patrick Georgi0588d192009-08-12 15:00:51 +0000687
Denis 'GNUtoo' Cariklie4cece02012-06-22 15:56:37 +0200688config GDB_WAIT
Denis 'GNUtoo' Carikli7d234f22015-12-10 21:58:52 +0100689 bool "Wait for a GDB connection in the ramstage"
Denis 'GNUtoo' Cariklie4cece02012-06-22 15:56:37 +0200690 default n
691 depends on GDB_STUB
692 help
Denis 'GNUtoo' Carikli7d234f22015-12-10 21:58:52 +0100693 If enabled, coreboot will wait for a GDB connection in the ramstage.
694
Denis 'GNUtoo' Cariklie4cece02012-06-22 15:56:37 +0200695
Julius Wernerd82e0cf2015-02-17 17:27:23 -0800696config FATAL_ASSERTS
697 bool "Halt when hitting a BUG() or assertion error"
698 default n
699 help
700 If enabled, coreboot will call hlt() on a BUG() or failed ASSERT().
701
Stefan Reinauerfe422182012-05-02 16:33:18 -0700702config DEBUG_CBFS
703 bool "Output verbose CBFS debug messages"
704 default n
Stefan Reinauerfe422182012-05-02 16:33:18 -0700705 help
706 This option enables additional CBFS related debug messages.
707
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000708config HAVE_DEBUG_RAM_SETUP
709 def_bool n
710
Uwe Hermann01ce6012010-03-05 10:03:50 +0000711config DEBUG_RAM_SETUP
712 bool "Output verbose RAM init debug messages"
713 default n
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000714 depends on HAVE_DEBUG_RAM_SETUP
Uwe Hermann01ce6012010-03-05 10:03:50 +0000715 help
716 This option enables additional RAM init related debug messages.
717 It is recommended to enable this when debugging issues on your
718 board which might be RAM init related.
719
720 Note: This option will increase the size of the coreboot image.
721
722 If unsure, say N.
723
Patrick Georgie82618d2010-10-01 14:50:12 +0000724config HAVE_DEBUG_CAR
725 def_bool n
726
Peter Stuge5015f792010-11-10 02:00:32 +0000727config DEBUG_CAR
728 def_bool n
729 depends on HAVE_DEBUG_CAR
730
731if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
Uwe Hermanna953f372010-11-10 00:14:32 +0000732# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
733# printk(BIOS_DEBUG, ...) calls.
Patrick Georgie82618d2010-10-01 14:50:12 +0000734config DEBUG_CAR
735 bool "Output verbose Cache-as-RAM debug messages"
736 default n
Peter Stuge5015f792010-11-10 02:00:32 +0000737 depends on HAVE_DEBUG_CAR
Patrick Georgie82618d2010-10-01 14:50:12 +0000738 help
739 This option enables additional CAR related debug messages.
Peter Stuge5015f792010-11-10 02:00:32 +0000740endif
Patrick Georgie82618d2010-10-01 14:50:12 +0000741
Myles Watson80e914ff2010-06-01 19:25:31 +0000742config DEBUG_PIRQ
743 bool "Check PIRQ table consistency"
744 default n
745 depends on GENERATE_PIRQ_TABLE
746 help
747 If unsure, say N.
748
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000749config HAVE_DEBUG_SMBUS
750 def_bool n
751
Uwe Hermann01ce6012010-03-05 10:03:50 +0000752config DEBUG_SMBUS
753 bool "Output verbose SMBus debug messages"
754 default n
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000755 depends on HAVE_DEBUG_SMBUS
Uwe Hermann01ce6012010-03-05 10:03:50 +0000756 help
757 This option enables additional SMBus (and SPD) debug messages.
758
759 Note: This option will increase the size of the coreboot image.
760
761 If unsure, say N.
762
763config DEBUG_SMI
764 bool "Output verbose SMI debug messages"
765 default n
766 depends on HAVE_SMI_HANDLER
Martin Roth3a543182015-09-28 15:27:24 -0600767 select SPI_FLASH_SMM if SPI_CONSOLE
Uwe Hermann01ce6012010-03-05 10:03:50 +0000768 help
769 This option enables additional SMI related debug messages.
770
771 Note: This option will increase the size of the coreboot image.
772
773 If unsure, say N.
774
Stefan Reinauerbc0f7a62010-08-01 15:41:14 +0000775config DEBUG_SMM_RELOCATION
776 bool "Debug SMM relocation code"
777 default n
778 depends on HAVE_SMI_HANDLER
779 help
780 This option enables additional SMM handler relocation related
781 debug messages.
782
783 Note: This option will increase the size of the coreboot image.
784
785 If unsure, say N.
786
Uwe Hermanna953f372010-11-10 00:14:32 +0000787# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
788# printk(BIOS_DEBUG, ...) calls.
789config DEBUG_MALLOC
Stefan Reinauer95a63962012-11-13 17:00:01 -0800790 prompt "Output verbose malloc debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
791 bool
Uwe Hermanna953f372010-11-10 00:14:32 +0000792 default n
Uwe Hermanna953f372010-11-10 00:14:32 +0000793 help
794 This option enables additional malloc related debug messages.
795
796 Note: This option will increase the size of the coreboot image.
797
798 If unsure, say N.
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300799
800# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
801# printk(BIOS_DEBUG, ...) calls.
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300802config DEBUG_ACPI
Stefan Reinauer95a63962012-11-13 17:00:01 -0800803 prompt "Output verbose ACPI debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
804 bool
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300805 default n
806 help
807 This option enables additional ACPI related debug messages.
808
809 Note: This option will slightly increase the size of the coreboot image.
810
811 If unsure, say N.
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300812
Uwe Hermanna953f372010-11-10 00:14:32 +0000813# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
814# printk(BIOS_DEBUG, ...) calls.
Myles Watson6c9bc012010-09-07 22:30:15 +0000815config REALMODE_DEBUG
Stefan Reinauer95a63962012-11-13 17:00:01 -0800816 prompt "Enable debug messages for option ROM execution" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
817 bool
Myles Watson6c9bc012010-09-07 22:30:15 +0000818 default n
Peter Stuge5015f792010-11-10 02:00:32 +0000819 depends on PCI_OPTION_ROM_RUN_REALMODE
Myles Watson6c9bc012010-09-07 22:30:15 +0000820 help
821 This option enables additional x86emu related debug messages.
822
823 Note: This option will increase the time to emulate a ROM.
824
825 If unsure, say N.
826
Uwe Hermann01ce6012010-03-05 10:03:50 +0000827config X86EMU_DEBUG
828 bool "Output verbose x86emu debug messages"
829 default n
830 depends on PCI_OPTION_ROM_RUN_YABEL
831 help
832 This option enables additional x86emu related debug messages.
833
834 Note: This option will increase the size of the coreboot image.
835
836 If unsure, say N.
837
838config X86EMU_DEBUG_JMP
839 bool "Trace JMP/RETF"
840 default n
841 depends on X86EMU_DEBUG
842 help
843 Print information about JMP and RETF opcodes from x86emu.
844
845 Note: This option will increase the size of the coreboot image.
846
847 If unsure, say N.
848
849config X86EMU_DEBUG_TRACE
850 bool "Trace all opcodes"
851 default n
852 depends on X86EMU_DEBUG
853 help
854 Print _all_ opcodes that are executed by x86emu.
Stefan Reinauer14e22772010-04-27 06:56:47 +0000855
Uwe Hermann01ce6012010-03-05 10:03:50 +0000856 WARNING: This will produce a LOT of output and take a long time.
857
858 Note: This option will increase the size of the coreboot image.
859
860 If unsure, say N.
861
862config X86EMU_DEBUG_PNP
863 bool "Log Plug&Play accesses"
864 default n
865 depends on X86EMU_DEBUG
866 help
867 Print Plug And Play accesses made by option ROMs.
868
869 Note: This option will increase the size of the coreboot image.
870
871 If unsure, say N.
872
873config X86EMU_DEBUG_DISK
874 bool "Log Disk I/O"
875 default n
876 depends on X86EMU_DEBUG
877 help
878 Print Disk I/O related messages.
879
880 Note: This option will increase the size of the coreboot image.
881
882 If unsure, say N.
883
884config X86EMU_DEBUG_PMM
885 bool "Log PMM"
886 default n
887 depends on X86EMU_DEBUG
888 help
889 Print messages related to POST Memory Manager (PMM).
890
891 Note: This option will increase the size of the coreboot image.
892
893 If unsure, say N.
894
895
896config X86EMU_DEBUG_VBE
897 bool "Debug VESA BIOS Extensions"
898 default n
899 depends on X86EMU_DEBUG
900 help
901 Print messages related to VESA BIOS Extension (VBE) functions.
902
903 Note: This option will increase the size of the coreboot image.
904
905 If unsure, say N.
906
907config X86EMU_DEBUG_INT10
908 bool "Redirect INT10 output to console"
909 default n
910 depends on X86EMU_DEBUG
911 help
912 Let INT10 (i.e. character output) calls print messages to debug output.
913
914 Note: This option will increase the size of the coreboot image.
915
916 If unsure, say N.
917
918config X86EMU_DEBUG_INTERRUPTS
919 bool "Log intXX calls"
920 default n
921 depends on X86EMU_DEBUG
922 help
923 Print messages related to interrupt handling.
924
925 Note: This option will increase the size of the coreboot image.
926
927 If unsure, say N.
928
929config X86EMU_DEBUG_CHECK_VMEM_ACCESS
930 bool "Log special memory accesses"
931 default n
932 depends on X86EMU_DEBUG
933 help
934 Print messages related to accesses to certain areas of the virtual
935 memory (e.g. BDA (BIOS Data Area) or interrupt vectors)
936
937 Note: This option will increase the size of the coreboot image.
938
939 If unsure, say N.
940
941config X86EMU_DEBUG_MEM
942 bool "Log all memory accesses"
943 default n
944 depends on X86EMU_DEBUG
945 help
946 Print memory accesses made by option ROM.
947 Note: This also includes accesses to fetch instructions.
948
949 Note: This option will increase the size of the coreboot image.
950
951 If unsure, say N.
952
953config X86EMU_DEBUG_IO
954 bool "Log IO accesses"
955 default n
956 depends on X86EMU_DEBUG
957 help
958 Print I/O accesses made by option ROM.
959
960 Note: This option will increase the size of the coreboot image.
961
962 If unsure, say N.
963
Denis 'GNUtoo' Carikli4cdc5d62013-05-15 00:19:49 +0200964config X86EMU_DEBUG_TIMINGS
965 bool "Output timing information"
966 default n
967 depends on X86EMU_DEBUG && UDELAY_LAPIC && HAVE_MONOTONIC_TIMER
968 help
969 Print timing information needed by i915tool.
970
971 If unsure, say N.
972
Stefan Reinauerdfb098d2011-11-17 12:50:54 -0800973config DEBUG_TPM
974 bool "Output verbose TPM debug messages"
975 default n
Vadim Bendebury26588702016-06-02 20:43:19 -0700976 depends on TPM || TPM2
Stefan Reinauerdfb098d2011-11-17 12:50:54 -0800977 help
978 This option enables additional TPM related debug messages.
979
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700980config DEBUG_SPI_FLASH
981 bool "Output verbose SPI flash debug messages"
982 default n
983 depends on SPI_FLASH
984 help
985 This option enables additional SPI flash related debug messages.
986
Kyösti Mälkki3be80cc2013-06-06 10:46:37 +0300987config DEBUG_USBDEBUG
988 bool "Output verbose USB 2.0 EHCI debug dongle messages"
989 default n
990 depends on USBDEBUG
991 help
992 This option enables additional USB 2.0 debug dongle related messages.
993
994 Select this to debug the connection of usbdebug dongle. Note that
995 you need some other working console to receive the messages.
996
Stefan Reinauer8e073822012-04-04 00:07:22 +0200997if SOUTHBRIDGE_INTEL_BD82X6X && DEFAULT_CONSOLE_LOGLEVEL_8
998# Only visible with the right southbridge and loglevel.
999config DEBUG_INTEL_ME
1000 bool "Verbose logging for Intel Management Engine"
1001 default n
1002 help
1003 Enable verbose logging for Intel Management Engine driver that
1004 is present on Intel 6-series chipsets.
1005endif
1006
Rudolf Marek7f0e9302011-09-02 23:23:41 +02001007config TRACE
1008 bool "Trace function calls"
1009 default n
1010 help
1011 If enabled, every function will print information to console once
1012 the function is entered. The syntax is ~0xaaaabbbb(0xccccdddd)
1013 the 0xaaaabbbb is the actual function and 0xccccdddd is EIP
Ben Gardner8420ad42015-11-18 10:46:53 -06001014 of calling function. Please note some printk related functions
Rudolf Marek7f0e9302011-09-02 23:23:41 +02001015 are omitted from trace to have good looking console dumps.
Stefan Reinauerd37ab452012-12-18 16:23:28 -08001016
1017config DEBUG_COVERAGE
1018 bool "Debug code coverage"
1019 default n
1020 depends on COVERAGE
1021 help
1022 If enabled, the code coverage hooks in coreboot will output some
1023 information about the coverage data that is dumped.
1024
Jonathan Neuschäferfc04f9b2016-06-29 21:59:32 +02001025config DEBUG_BOOT_STATE
1026 bool "Debug boot state machine"
1027 default n
1028 help
1029 Control debugging of the boot state machine. When selected displays
1030 the state boundaries in ramstage.
1031
Jonathan Neuschäfer538e4462016-08-22 19:37:15 +02001032config DEBUG_PRINT_PAGE_TABLES
1033 bool "Print the page tables after construction"
1034 default n
1035 depends on ARCH_RISCV
1036 help
1037 After the page tables have been built, print them on the debug
1038 console.
1039
Nico Hubere84e6252016-10-05 17:43:56 +02001040config DEBUG_ADA_CODE
1041 bool "Compile debug code in Ada sources"
1042 default n
1043 help
1044 Add the compiler switch `-gnata` to compile code guarded by
1045 `pragma Debug`.
1046
Uwe Hermann168b11b2009-10-07 16:15:40 +00001047endmenu
1048
Martin Roth8e4aafb2016-12-15 15:25:15 -07001049
1050###############################################################################
1051# Set variables with no prompt - these can be set anywhere, and putting at
1052# the end of this file gives the most flexibility.
Nico Huber3db76532017-05-18 18:07:34 +02001053
1054source "src/lib/Kconfig"
1055
Myles Watsond73c1b52009-10-26 15:14:07 +00001056config ENABLE_APIC_EXT_ID
1057 bool
1058 default n
Myles Watson2e672732009-11-12 16:38:03 +00001059
1060config WARNINGS_ARE_ERRORS
1061 bool
Edward O'Callaghan63f6dc72014-11-18 03:17:54 +11001062 default y
Patrick Georgi436f99b2009-11-27 16:55:13 +00001063
Peter Stuge51eafde2010-10-13 06:23:02 +00001064# The four POWER_BUTTON_DEFAULT_ENABLE, POWER_BUTTON_DEFAULT_DISABLE,
1065# POWER_BUTTON_FORCE_ENABLE and POWER_BUTTON_FORCE_DISABLE options are
1066# mutually exclusive. One of these options must be selected in the
1067# mainboard Kconfig if the chipset supports enabling and disabling of
1068# the power button. Chipset code uses the ENABLE_POWER_BUTTON option set
1069# in mainboard/Kconfig to know if the button should be enabled or not.
1070
1071config POWER_BUTTON_DEFAULT_ENABLE
1072 def_bool n
1073 help
1074 Select when the board has a power button which can optionally be
1075 disabled by the user.
1076
1077config POWER_BUTTON_DEFAULT_DISABLE
1078 def_bool n
1079 help
1080 Select when the board has a power button which can optionally be
1081 enabled by the user, e.g. when the board ships with a jumper over
1082 the power switch contacts.
1083
1084config POWER_BUTTON_FORCE_ENABLE
1085 def_bool n
1086 help
1087 Select when the board requires that the power button is always
1088 enabled.
1089
1090config POWER_BUTTON_FORCE_DISABLE
1091 def_bool n
1092 help
1093 Select when the board requires that the power button is always
1094 disabled, e.g. when it has been hardwired to ground.
1095
1096config POWER_BUTTON_IS_OPTIONAL
1097 bool
1098 default y if POWER_BUTTON_DEFAULT_ENABLE || POWER_BUTTON_DEFAULT_DISABLE
1099 default n if !(POWER_BUTTON_DEFAULT_ENABLE || POWER_BUTTON_DEFAULT_DISABLE)
1100 help
1101 Internal option that controls ENABLE_POWER_BUTTON visibility.
Duncan Laurie72748002013-10-31 08:26:23 -07001102
1103config REG_SCRIPT
1104 bool
Duncan Laurie72748002013-10-31 08:26:23 -07001105 default n
1106 help
1107 Internal option that controls whether we compile in register scripts.
Furquan Shaikh99ac98f2014-04-23 10:18:48 -07001108
Furquan Shaikh99ac98f2014-04-23 10:18:48 -07001109config MAX_REBOOT_CNT
1110 int
1111 default 3
Timothy Pearson17ada2e2015-03-18 01:31:34 -05001112 help
1113 Internal option that sets the maximum number of bootblock executions allowed
1114 with the normal image enabled before assuming the normal image is defective
Vadim Bendebury9c9c3362014-07-23 09:40:02 -07001115 and switching to the fallback image.
Martin Roth59ff3402016-02-09 09:06:46 -07001116
Lee Leahyfc3741f2016-05-26 17:12:17 -07001117config CREATE_BOARD_CHECKLIST
1118 bool
1119 default n
1120 help
1121 When selected, creates a webpage showing the implementation status for
1122 the board. Routines highlighted in green are complete, yellow are
1123 optional and red are required and must be implemented. A table is
1124 produced for each stage of the boot process except the bootblock. The
1125 red items may be used as an implementation checklist for the board.
1126
1127config MAKE_CHECKLIST_PUBLIC
1128 bool
1129 default n
1130 help
1131 When selected, build/$(CONFIG_MAINBOARD_PART_NUMBER)_checklist.html
1132 is copied into the Documentation/$(CONFIG_MAINBOARD_VENDOR)/Board
1133 directory.
1134
1135config CHECKLIST_DATA_FILE_LOCATION
1136 string
1137 help
1138 Location of the <stage>_complete.dat and <stage>_optional.dat files
1139 that are consumed during checklist processing. <stage>_complete.dat
1140 contains the symbols that are expected to be in the resulting image.
1141 <stage>_optional.dat is a subset of <stage>_complete.dat and contains
1142 a list of weak symbols which the resulting image may consume. Other
1143 symbols contained only in <stage>_complete.dat will be flagged as
1144 required and not implemented if a weak implementation is found in the
1145 resulting image.
Nico Hubere0ed9022016-10-07 12:58:17 +02001146
1147config RAMSTAGE_ADA
1148 def_bool n
1149 help
1150 Selected by features that use Ada code in ramstage.
Nico Huberc83239e2016-10-05 17:46:49 +02001151
1152config RAMSTAGE_LIBHWBASE
1153 def_bool n
1154 select RAMSTAGE_ADA
1155 help
1156 Selected by features that require `libhwbase` in ramstage.
1157
1158config HWBASE_DYNAMIC_MMIO
1159 def_bool y
Martin Roth75e5cb72016-12-15 15:05:37 -07001160
Martin Roth8e4aafb2016-12-15 15:25:15 -07001161config UNCOMPRESSED_RAMSTAGE
1162 bool
1163
1164config NO_XIP_EARLY_STAGES
1165 bool
1166 default n if ARCH_X86
1167 default y
1168 help
1169 Identify if early stages are eXecute-In-Place(XIP).
1170
1171config EARLY_CBMEM_INIT
1172 def_bool !LATE_CBMEM_INIT
1173
1174config EARLY_CBMEM_LIST
1175 bool
1176 default n
1177 help
1178 Enable display of CBMEM during romstage and postcar.
1179
1180config RELOCATABLE_MODULES
1181 bool
1182 help
1183 If RELOCATABLE_MODULES is selected then support is enabled for
1184 building relocatable modules in the RAM stage. Those modules can be
1185 loaded anywhere and all the relocations are handled automatically.
1186
1187config NO_STAGE_CACHE
1188 bool
1189 help
1190 Do not save any component in stage cache for resume path. On resume,
1191 all components would be read back from CBFS again.
1192
1193config GENERIC_GPIO_LIB
1194 bool
1195 help
1196 If enabled, compile the generic GPIO library. A "generic" GPIO
1197 implies configurability usually found on SoCs, particularly the
1198 ability to control internal pull resistors.
1199
1200config GENERIC_SPD_BIN
1201 bool
1202 help
1203 If enabled, add support for adding spd.hex files in cbfs as spd.bin
1204 and locating it runtime to load SPD. Additionally provide provision to
1205 fetch SPD over SMBus.
1206
1207config DIMM_MAX
1208 int
1209 default 4
1210 depends on GENERIC_SPD_BIN
1211 help
1212 Total number of memory DIMM slots available on motherboard.
1213 It is multiplication of number of channel to number of DIMMs per
1214 channel
1215
1216config DIMM_SPD_SIZE
1217 int
1218 default 256
Martin Roth8e4aafb2016-12-15 15:25:15 -07001219 help
1220 Total SPD size that will be used for DIMM.
1221 Ex: DDR3 256, DDR4 512.
1222
1223config BOARD_ID_AUTO
1224 bool
1225 default n
1226 help
1227 Mainboards that can read a board ID from the hardware straps
1228 (ie. GPIO) select this configuration option.
1229
1230config BOARD_ID_MANUAL
1231 bool
1232 default n
1233 depends on !BOARD_ID_AUTO
1234 help
1235 If you want to maintain a board ID, but the hardware does not
1236 have straps to automatically determine the ID, you can say Y
1237 here and add a file named 'board_id' to CBFS. If you don't know
1238 what this is about, say N.
1239
1240config BOOTBLOCK_CUSTOM
1241 # To be selected by arch, SoC or mainboard if it does not want use the normal
1242 # src/lib/bootblock.c#main() C entry point.
1243 bool
1244
1245config C_ENVIRONMENT_BOOTBLOCK
1246 # To be selected by arch or platform if a C environment is available during the
1247 # bootblock. Normally this signifies availability of RW memory (e.g. SRAM).
1248 bool
1249
Martin Roth75e5cb72016-12-15 15:05:37 -07001250###############################################################################
1251# Set default values for symbols created before mainboards. This allows the
1252# option to be displayed in the general menu, but the default to be loaded in
1253# the mainboard if desired.
1254config COMPRESS_RAMSTAGE
1255 default y if !UNCOMPRESSED_RAMSTAGE
1256
1257config COMPRESS_PRERAM_STAGES
1258 depends on !ARCH_X86
1259 default y
1260
1261config INCLUDE_CONFIG_FILE
1262 default y
1263
1264config BOARD_ID_STRING
1265 default "(none)"
1266 depends on BOARD_ID_MANUAL
1267
1268config BOOTSPLASH_FILE
1269 depends on BOOTSPLASH_IMAGE
1270 default "bootsplash.jpg"
1271
1272config CBFS_SIZE
1273 default ROM_SIZE