blob: 3b7a249b519d43e4bd44d525ffde0905edaae162 [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##
16## You should have received a copy of the GNU General Public License
17## along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010018## Foundation, Inc.
Patrick Georgi0588d192009-08-12 15:00:51 +000019##
20
Uwe Hermannad8c95f2012-04-12 22:00:03 +020021mainmenu "coreboot configuration"
Patrick Georgi0588d192009-08-12 15:00:51 +000022
Uwe Hermannc04be932009-10-05 13:55:28 +000023menu "General setup"
24
25config 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
Vadim Bendeburyadcb0952014-05-01 12:23:09 -070042config COMMON_CBFS_SPI_WRAPPER
43 bool
44 default n
45 depends on SPI_FLASH
46 depends on !ARCH_X86
47 help
48 Use common wrapper to interface CBFS to SPI bootrom.
49
Vadim Bendebury6bfabce2014-12-25 15:07:22 -080050config MULTIPLE_CBFS_INSTANCES
Martin Roth595e7772015-04-26 18:53:26 -060051 bool "Multiple CBFS instances in the bootrom"
52 default n
Martin Roth595e7772015-04-26 18:53:26 -060053 help
54 Account for the firmware image containing more than one CBFS
55 instance. Locations of instances are known at build time and are
56 communicated between coreboot stages to make sure the next stage is
57 loaded from the appropriate instance.
Vadim Bendebury6bfabce2014-12-25 15:07:22 -080058
Patrick Georgi23d89cc2010-03-16 01:17:19 +000059choice
Uwe Hermannad8c95f2012-04-12 22:00:03 +020060 prompt "Compiler to use"
Patrick Georgi23d89cc2010-03-16 01:17:19 +000061 default COMPILER_GCC
62 help
63 This option allows you to select the compiler used for building
64 coreboot.
65
66config COMPILER_GCC
67 bool "GCC"
Uwe Hermannad8c95f2012-04-12 22:00:03 +020068 help
69 Use the GNU Compiler Collection (GCC) to build coreboot.
70
71 For details see http://gcc.gnu.org.
72
Patrick Georgi23d89cc2010-03-16 01:17:19 +000073config COMPILER_LLVM_CLANG
74 bool "LLVM/clang"
Uwe Hermannad8c95f2012-04-12 22:00:03 +020075 help
76 Use LLVM/clang to build coreboot.
77
78 For details see http://clang.llvm.org.
79
Patrick Georgi23d89cc2010-03-16 01:17:19 +000080endchoice
81
Patrick Georgi9b0de712013-12-29 18:45:23 +010082config ANY_TOOLCHAIN
83 bool "Allow building with any toolchain"
84 default n
85 depends on COMPILER_GCC
86 help
87 Many toolchains break when building coreboot since it uses quite
88 unusual linker features. Unless developers explicitely request it,
89 we'll have to assume that they use their distro compiler by mistake.
90 Make sure that using patched compilers is a conscious decision.
91
Patrick Georgi516a2a72010-03-25 21:45:25 +000092config CCACHE
Uwe Hermannad8c95f2012-04-12 22:00:03 +020093 bool "Use ccache to speed up (re)compilation"
Patrick Georgi516a2a72010-03-25 21:45:25 +000094 default n
95 help
96 Enables the use of ccache for faster builds.
Uwe Hermannad8c95f2012-04-12 22:00:03 +020097
98 Requires the ccache utility in your system $PATH.
99
100 For details see https://ccache.samba.org.
Patrick Georgi516a2a72010-03-25 21:45:25 +0000101
Sol Boucher69b88bf2015-02-26 11:47:19 -0800102config FMD_GENPARSER
103 bool "Generate flashmap descriptor parser using flex and bison"
104 default n
Sol Boucher69b88bf2015-02-26 11:47:19 -0800105 help
106 Enable this option if you are working on the flashmap descriptor
107 parser and made changes to fmd_scanner.l or fmd_parser.y.
108
109 Otherwise, say N to use the provided pregenerated scanner/parser.
110
Stefan Reinauer9bf78102010-08-09 13:28:18 +0000111config SCONFIG_GENPARSER
112 bool "Generate SCONFIG parser using flex and bison"
113 default n
Stefan Reinauer9bf78102010-08-09 13:28:18 +0000114 help
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200115 Enable this option if you are working on the sconfig device tree
Sol Boucher69b88bf2015-02-26 11:47:19 -0800116 parser and made changes to sconfig.l or sconfig.y.
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200117
Sol Boucher69b88bf2015-02-26 11:47:19 -0800118 Otherwise, say N to use the provided pregenerated scanner/parser.
Stefan Reinauer9bf78102010-08-09 13:28:18 +0000119
Joe Korty6d772522010-05-19 18:41:15 +0000120config USE_OPTION_TABLE
121 bool "Use CMOS for configuration values"
122 default n
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000123 depends on HAVE_OPTION_TABLE
Joe Korty6d772522010-05-19 18:41:15 +0000124 help
125 Enable this option if coreboot shall read options from the "CMOS"
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200126 NVRAM instead of using hard-coded values.
Joe Korty6d772522010-05-19 18:41:15 +0000127
Timothy Pearsonf20c6e82015-02-14 16:15:31 -0600128config STATIC_OPTION_TABLE
129 bool "Load default configuration values into CMOS on each boot"
130 default n
131 depends on USE_OPTION_TABLE
132 help
133 Enable this option to reset "CMOS" NVRAM values to default on
134 every boot. Use this if you want the NVRAM configuration to
135 never be modified from its default values.
136
Julius Wernercdf92ea2014-12-09 12:18:00 -0800137config UNCOMPRESSED_RAMSTAGE
138 bool
139 default n
140
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000141config COMPRESS_RAMSTAGE
142 bool "Compress ramstage with LZMA"
Julius Wernercdf92ea2014-12-09 12:18:00 -0800143 default y if !UNCOMPRESSED_RAMSTAGE
144 default n
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000145 help
146 Compress ramstage to save memory in the flash image. Note
147 that decompression might slow down booting if the boot flash
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200148 is connected through a slow link (i.e. SPI).
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000149
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"
Cristian Măgherușan-Stanciud367b002011-06-19 03:03:28 +0200152 default y
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
Kyösti Mälkkif8bf5a12013-10-11 22:08:02 +0300182config EARLY_CBMEM_INIT
Kyösti Mälkki3bf38542014-12-18 22:22:04 +0200183 def_bool !LATE_CBMEM_INIT
184
Vadim Bendebury9202473d2011-09-21 14:46:43 -0700185config COLLECT_TIMESTAMPS
186 bool "Create a table of timestamps collected during boot"
Kyösti Mälkki26447932013-10-11 21:14:59 +0300187 default n
Vadim Bendebury9202473d2011-09-21 14:46:43 -0700188 help
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200189 Make coreboot create a table of timer-ID/timer-value pairs to
190 allow measuring time spent at different phases of the boot process.
191
Aaron Durbin1936f6c2015-07-03 17:04:21 -0500192config HAS_PRECBMEM_TIMESTAMP_REGION
193 bool "Timestamp region exists for pre-cbmem timestamps"
194 default y if ARCH_ROMSTAGE_X86_32 && CACHE_AS_RAM
195 depends on COLLECT_TIMESTAMPS
196 help
197 A separate region is maintained to allow storing of timestamps before
198 cbmem comes up. This is useful for storing timestamps across different
199 stage boundaries.
200
Patrick Georgi7e9b9d82012-04-30 21:06:10 +0200201config USE_BLOBS
202 bool "Allow use of binary-only repository"
203 default n
204 help
205 This draws in the blobs repository, which contains binary files that
206 might be required for some chipsets or boards.
207 This flag ensures that a "Free" option remains available for users.
208
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800209config COVERAGE
210 bool "Code coverage support"
211 depends on COMPILER_GCC
212 default n
213 help
214 Add code coverage support for coreboot. This will store code
215 coverage information in CBMEM for extraction from user space.
216 If unsure, say N.
217
Stefan Reinauer58470e32014-10-17 13:08:36 +0200218config RELOCATABLE_MODULES
Vladimir Serbinenko633352c2015-05-30 22:21:37 +0200219 bool
Stefan Reinauer58470e32014-10-17 13:08:36 +0200220 default n
221 help
222 If RELOCATABLE_MODULES is selected then support is enabled for
223 building relocatable modules in the RAM stage. Those modules can be
224 loaded anywhere and all the relocations are handled automatically.
225
226config RELOCATABLE_RAMSTAGE
Vladimir Serbinenko633352c2015-05-30 22:21:37 +0200227 depends on EARLY_CBMEM_INIT
Stefan Reinauer58470e32014-10-17 13:08:36 +0200228 bool "Build the ramstage to be relocatable in 32-bit address space."
229 default n
Vladimir Serbinenko633352c2015-05-30 22:21:37 +0200230 select RELOCATABLE_MODULES
Stefan Reinauer58470e32014-10-17 13:08:36 +0200231 help
232 The reloctable ramstage support allows for the ramstage to be built
233 as a relocatable module. The stage loader can identify a place
234 out of the OS way so that copying memory is unnecessary during an S3
235 wake. When selecting this option the romstage is responsible for
236 determing a stack location to use for loading the ramstage.
237
238config CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM
239 depends on RELOCATABLE_RAMSTAGE
240 bool "Cache the relocated ramstage outside of cbmem."
241 default n
242 help
243 The relocated ramstage is saved in an area specified by the
244 by the board and/or chipset.
245
Aaron Durbin0424c952015-03-28 23:56:22 -0500246config FLASHMAP_OFFSET
247 hex "Flash Map Offset"
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700248 default 0x00670000 if NORTHBRIDGE_INTEL_SANDYBRIDGE_MRC
249 default 0x00610000 if NORTHBRIDGE_INTEL_IVYBRIDGE_MRC
Aaron Durbin0424c952015-03-28 23:56:22 -0500250 default CBFS_SIZE if !ARCH_X86
251 default 0
252 help
253 Offset of flash map in firmware image
254
Stefan Reinauer58470e32014-10-17 13:08:36 +0200255choice
256 prompt "Bootblock behaviour"
257 default BOOTBLOCK_SIMPLE
258
259config BOOTBLOCK_SIMPLE
260 bool "Always load fallback"
261
262config BOOTBLOCK_NORMAL
263 bool "Switch to normal if CMOS says so"
264
265endchoice
266
267config BOOTBLOCK_SOURCE
268 string
269 default "bootblock_simple.c" if BOOTBLOCK_SIMPLE
270 default "bootblock_normal.c" if BOOTBLOCK_NORMAL
271
Timothy Pearson44724082015-03-16 11:47:45 -0500272config SKIP_MAX_REBOOT_CNT_CLEAR
273 bool "Do not clear reboot count after successful boot"
274 default n
Timothy Pearson44724082015-03-16 11:47:45 -0500275 help
276 Do not clear the reboot count immediately after successful boot.
277 Set to allow the payload to control normal/fallback image recovery.
278
Stefan Reinauer58470e32014-10-17 13:08:36 +0200279config UPDATE_IMAGE
280 bool "Update existing coreboot.rom image"
281 default n
282 help
283 If this option is enabled, no new coreboot.rom file
284 is created. Instead it is expected that there already
285 is a suitable file for further processing.
286 The bootblock will not be modified.
287
Stefan Reinauerd06258c2015-03-26 16:29:00 -0700288config GENERIC_GPIO_LIB
289 bool
290 default n
291 help
292 If enabled, compile the generic GPIO library. A "generic" GPIO
293 implies configurability usually found on SoCs, particularly the
294 ability to control internal pull resistors.
295
296config BOARD_ID_AUTO
297 bool
298 default n
299 help
300 Mainboards that can read a board ID from the hardware straps
301 (ie. GPIO) select this configuration option.
302
303config BOARD_ID_MANUAL
Vladimir Serbinenko1e161422015-05-30 22:47:22 +0200304 bool
Stefan Reinauerd06258c2015-03-26 16:29:00 -0700305 default n
306 depends on !BOARD_ID_AUTO
307 help
308 If you want to maintain a board ID, but the hardware does not
309 have straps to automatically determine the ID, you can say Y
310 here and add a file named 'board_id' to CBFS. If you don't know
311 what this is about, say N.
312
313config BOARD_ID_STRING
314 string "Board ID"
315 default "(none)"
316 depends on BOARD_ID_MANUAL
317 help
318 This string is placed in the 'board_id' CBFS file for indicating
319 board type.
320
David Hendricks627b3bd2014-11-03 17:42:09 -0800321config RAM_CODE_SUPPORT
Vladimir Serbinenko8ef9c562015-05-30 22:55:44 +0200322 bool
David Hendricks627b3bd2014-11-03 17:42:09 -0800323 default n
324 help
325 If enabled, coreboot discovers RAM configuration (value obtained by
326 reading board straps) and stores it in coreboot table.
327
Konstantin Aladyshev6544cb32015-01-24 18:52:10 +0400328config BOOTSPLASH_IMAGE
329 bool "Add a bootsplash image"
330 help
331 Select this option if you have a bootsplash image that you would
332 like to add to your ROM.
333
334 This will only add the image to the ROM. To actually run it check
335 options under 'Display' section.
336
337config BOOTSPLASH_FILE
338 string "Bootsplash path and filename"
339 depends on BOOTSPLASH_IMAGE
340 default "bootsplash.jpg"
341 help
342 The path and filename of the file to use as graphical bootsplash
343 screen. The file format has to be jpg.
344
Uwe Hermannc04be932009-10-05 13:55:28 +0000345endmenu
346
Alexander Couzens77103792015-04-16 02:03:26 +0200347source "src/acpi/Kconfig"
348
Martin Roth026e4dc2015-06-19 23:17:15 -0600349menu "Mainboard"
350
Stefan Reinauera48ca842015-04-04 01:58:28 +0200351source "src/mainboard/Kconfig"
Stefan Reinauer8aedcbc2010-12-16 23:37:17 +0000352
Martin Roth026e4dc2015-06-19 23:17:15 -0600353config CBFS_SIZE
354 hex "Size of CBFS filesystem in ROM"
Martin Roth59aa2b12015-06-20 16:17:12 -0600355 default 0x100000 if HAVE_INTEL_FIRMWARE || \
Alexandru Gagniucecf2eb42015-09-28 21:39:12 -0700356 NORTHBRIDGE_INTEL_GM45 || NORTHBRIDGE_INTEL_SANDYBRIDGE_MRC || \
357 NORTHBRIDGE_INTEL_IVYBRIDGE_MRC || NORTHBRIDGE_INTEL_IVYBRIDGE || \
358 NORTHBRIDGE_INTEL_SANDYBRIDGE || \
Martin Rothc407cb92015-06-23 19:59:30 -0600359 NORTHBRIDGE_INTEL_NEHALEM || SOC_INTEL_BRASWELL || \
Martin Roth026e4dc2015-06-19 23:17:15 -0600360 SOC_INTEL_BROADWELL
Aaron Durbin2ca127402015-07-30 13:34:29 -0500361 default 0x200000 if SOC_INTEL_SKYLAKE
Martin Roth026e4dc2015-06-19 23:17:15 -0600362 default ROM_SIZE
363 help
364 This is the part of the ROM actually managed by CBFS, located at the
365 end of the ROM (passed through cbfstool -o) on x86 and at at the start
366 of the ROM (passed through cbfstool -s) everywhere else. It defaults
367 to span the whole ROM on all but Intel systems that use an Intel Firmware
368 Descriptor. It can be overridden to make coreboot live alongside other
369 components like ChromeOS's vboot/FMAP or Intel's IFD / ME / TXE
370 binaries.
371
372endmenu
373
Vladimir Serbinenkoa9db82f2014-10-16 13:21:47 +0200374config SYSTEM_TYPE_LAPTOP
Martin Roth595e7772015-04-26 18:53:26 -0600375 default n
376 bool
Vladimir Serbinenkoa9db82f2014-10-16 13:21:47 +0200377
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000378menu "Chipset"
379
Duncan Lauried2119762015-06-08 18:11:56 -0700380comment "SoC"
381source "src/soc/*/*/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000382comment "CPU"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200383source "src/cpu/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000384comment "Northbridge"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200385source "src/northbridge/*/*/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000386comment "Southbridge"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200387source "src/southbridge/*/*/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000388comment "Super I/O"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200389source "src/superio/*/Kconfig"
Sven Schnelle7592e8b2011-01-27 11:43:03 +0000390comment "Embedded Controllers"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200391source "src/ec/acpi/Kconfig"
392source "src/ec/*/*/Kconfig"
Marc Jones78687972015-04-22 23:16:31 -0600393source "src/drivers/intel/fsp1_0/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000394
Martin Roth59aa2b12015-06-20 16:17:12 -0600395source "src/southbridge/intel/common/firmware/Kconfig"
Martin Rothe1523ec2015-06-19 22:30:43 -0600396source "src/vendorcode/*/Kconfig"
Martin Roth59aa2b12015-06-20 16:17:12 -0600397
Martin Rothe1523ec2015-06-19 22:30:43 -0600398source "src/arch/*/Kconfig"
399
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000400endmenu
Patrick Georgi0588d192009-08-12 15:00:51 +0000401
Stefan Reinauera48ca842015-04-04 01:58:28 +0200402source "src/device/Kconfig"
Stefan Reinauer95a63962012-11-13 17:00:01 -0800403
Rudolf Marekd9c25492010-05-16 15:31:53 +0000404menu "Generic Drivers"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200405source "src/drivers/*/Kconfig"
Rudolf Marekd9c25492010-05-16 15:31:53 +0000406endmenu
407
Patrick Georgi0770f252015-04-22 13:28:21 +0200408config RTC
409 bool
410 default n
411
Stefan Reinauer7cb01e02013-08-29 16:05:02 -0700412config TPM
413 bool
414 default n
415 select LPC_TPM if ARCH_X86
Gabe Black51edd542013-09-30 23:00:33 -0700416 select I2C_TPM if ARCH_ARM
Furquan Shaikh2af76f42014-04-28 16:39:40 -0700417 select I2C_TPM if ARCH_ARM64
Stefan Reinauer7cb01e02013-08-29 16:05:02 -0700418 help
419 Enable this option to enable TPM support in coreboot.
420
421 If unsure, say N.
422
Kyösti Mälkkieaee6e22014-04-30 01:35:29 +0300423config RAMTOP
424 hex
425 default 0x200000
426 depends on ARCH_X86
427
Patrick Georgi0588d192009-08-12 15:00:51 +0000428config HEAP_SIZE
429 hex
Myles Watson04000f42009-10-16 19:12:49 +0000430 default 0x4000
Patrick Georgi0588d192009-08-12 15:00:51 +0000431
Julius Wernerc3e7c4e2014-09-19 13:18:16 -0700432config STACK_SIZE
433 hex
Thaminda Edirisooriya1daee062015-07-09 13:53:34 -0700434 default 0x0 if (ARCH_RAMSTAGE_ARM || ARCH_RAMSTAGE_MIPS || ARCH_RAMSTAGE_RISCV)
Julius Wernerc3e7c4e2014-09-19 13:18:16 -0700435 default 0x1000
436
Patrick Georgi0588d192009-08-12 15:00:51 +0000437config MAX_CPUS
438 int
439 default 1
440
441config MMCONF_SUPPORT_DEFAULT
442 bool
443 default n
444
445config MMCONF_SUPPORT
446 bool
447 default n
448
Kyösti Mälkki5687fc92013-11-28 18:11:49 +0200449config BOOTMODE_STRAPS
450 bool
451 default n
452
Stefan Reinauera48ca842015-04-04 01:58:28 +0200453source "src/console/Kconfig"
Patrick Georgi0588d192009-08-12 15:00:51 +0000454
455config HAVE_ACPI_RESUME
456 bool
457 default n
458
Patrick Georgi0588d192009-08-12 15:00:51 +0000459config HAVE_HARD_RESET
460 bool
Uwe Hermann748475b2009-10-09 11:47:21 +0000461 default n
Patrick Georgi37bdb872010-02-27 08:39:04 +0000462 help
463 This variable specifies whether a given board has a hard_reset
464 function, no matter if it's provided by board code or chipset code.
465
Aaron Durbina4217912013-04-29 22:31:51 -0500466config HAVE_MONOTONIC_TIMER
467 def_bool n
468 help
469 The board/chipset provides a monotonic timer.
470
Aaron Durbine5e36302014-09-25 10:05:15 -0500471config GENERIC_UDELAY
472 def_bool n
473 depends on HAVE_MONOTONIC_TIMER
474 help
475 The board/chipset uses a generic udelay function utilizing the
476 monotonic timer.
477
Aaron Durbin340ca912013-04-30 09:58:12 -0500478config TIMER_QUEUE
479 def_bool n
480 depends on HAVE_MONOTONIC_TIMER
481 help
Kyösti Mälkkiecd84242013-09-13 07:57:49 +0300482 Provide a timer queue for performing time-based callbacks.
Aaron Durbin340ca912013-04-30 09:58:12 -0500483
Aaron Durbin4409a5e2013-05-06 12:20:52 -0500484config COOP_MULTITASKING
485 def_bool n
Aaron Durbin38c326d2013-05-06 12:22:23 -0500486 depends on TIMER_QUEUE && ARCH_X86
Aaron Durbin4409a5e2013-05-06 12:20:52 -0500487 help
488 Cooperative multitasking allows callbacks to be multiplexed on the
489 main thread of ramstage. With this enabled it allows for multiple
490 execution paths to take place when they have udelay() calls within
491 their code.
492
493config NUM_THREADS
494 int
495 default 4
496 depends on COOP_MULTITASKING
497 help
498 How many execution threads to cooperatively multitask with.
499
Patrick Georgi0588d192009-08-12 15:00:51 +0000500config HAVE_OPTION_TABLE
501 bool
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000502 default n
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000503 help
504 This variable specifies whether a given board has a cmos.layout
505 file containing NVRAM/CMOS bit definitions.
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000506 It defaults to 'n' but can be selected in mainboard/*/Kconfig.
Patrick Georgi0588d192009-08-12 15:00:51 +0000507
Patrick Georgi0588d192009-08-12 15:00:51 +0000508config PIRQ_ROUTE
509 bool
510 default n
511
512config HAVE_SMI_HANDLER
513 bool
514 default n
515
516config PCI_IO_CFG_EXT
517 bool
518 default n
519
520config IOAPIC
521 bool
522 default n
523
Kyösti Mälkki107f72e2014-01-06 11:06:26 +0200524config CACHE_ROM_SIZE_OVERRIDE
Stefan Reinauer5b635792012-08-16 14:05:42 -0700525 hex
Kyösti Mälkki107f72e2014-01-06 11:06:26 +0200526 default 0
Stefan Reinauer5b635792012-08-16 14:05:42 -0700527
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000528# TODO: Can probably be removed once all chipsets have kconfig options for it.
Uwe Hermann70b0cf22009-10-04 17:15:39 +0000529config VIDEO_MB
530 int
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000531 default 0
Uwe Hermann70b0cf22009-10-04 17:15:39 +0000532
Myles Watson45bb25f2009-09-22 18:49:08 +0000533config USE_WATCHDOG_ON_BOOT
534 bool
535 default n
536
537config VGA
538 bool
539 default n
540 help
541 Build board-specific VGA code.
542
543config GFXUMA
544 bool
Myles Watsond73c1b52009-10-26 15:14:07 +0000545 default n
Myles Watson45bb25f2009-09-22 18:49:08 +0000546 help
547 Enable Unified Memory Architecture for graphics.
548
Myles Watsonb8e20272009-10-15 13:35:47 +0000549config HAVE_ACPI_TABLES
550 bool
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000551 help
552 This variable specifies whether a given board has ACPI table support.
553 It is usually set in mainboard/*/Kconfig.
Myles Watsonb8e20272009-10-15 13:35:47 +0000554
555config HAVE_MP_TABLE
556 bool
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000557 help
558 This variable specifies whether a given board has MP table support.
559 It is usually set in mainboard/*/Kconfig.
560 Whether or not the MP table is actually generated by coreboot
561 is configurable by the user via GENERATE_MP_TABLE.
Myles Watsonb8e20272009-10-15 13:35:47 +0000562
563config HAVE_PIRQ_TABLE
564 bool
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000565 help
566 This variable specifies whether a given board has PIRQ table support.
567 It is usually set in mainboard/*/Kconfig.
568 Whether or not the PIRQ table is actually generated by coreboot
569 is configurable by the user via GENERATE_PIRQ_TABLE.
Myles Watsonb8e20272009-10-15 13:35:47 +0000570
Alexandru Gagniuc70c660f2012-08-23 02:32:58 -0500571config MAX_PIRQ_LINKS
572 int
573 default 4
574 help
575 This variable specifies the number of PIRQ interrupt links which are
576 routable. On most chipsets, this is 4, INTA through INTD. Some
577 chipsets offer more than four links, commonly up to INTH. They may
578 also have a separate link for ATA or IOAPIC interrupts. When the PIRQ
579 table specifies links greater than 4, pirq_route_irqs will not
580 function properly, unless this variable is correctly set.
581
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200582config COMMON_FADT
583 bool
584 default n
585
Myles Watsond73c1b52009-10-26 15:14:07 +0000586#These Options are here to avoid "undefined" warnings.
587#The actual selection and help texts are in the following menu.
588
Uwe Hermann168b11b2009-10-07 16:15:40 +0000589menu "System tables"
Myles Watson45bb25f2009-09-22 18:49:08 +0000590
Myles Watsonb8e20272009-10-15 13:35:47 +0000591config GENERATE_MP_TABLE
Stefan Reinauer56cd70b2012-11-13 17:33:08 -0800592 prompt "Generate an MP table" if HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC
593 bool
594 default HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000595 help
596 Generate an MP table (conforming to the Intel MultiProcessor
597 specification 1.4) for this board.
598
599 If unsure, say Y.
Myles Watson45bb25f2009-09-22 18:49:08 +0000600
Myles Watsonb8e20272009-10-15 13:35:47 +0000601config GENERATE_PIRQ_TABLE
Stefan Reinauer56cd70b2012-11-13 17:33:08 -0800602 prompt "Generate a PIRQ table" if HAVE_PIRQ_TABLE
603 bool
604 default HAVE_PIRQ_TABLE
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000605 help
606 Generate a PIRQ table for this board.
607
608 If unsure, say Y.
Myles Watson45bb25f2009-09-22 18:49:08 +0000609
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200610config GENERATE_SMBIOS_TABLES
611 depends on ARCH_X86
612 bool "Generate SMBIOS tables"
613 default y
614 help
615 Generate SMBIOS tables for this board.
616
617 If unsure, say Y.
618
Vladimir Serbinenko0afdec42015-05-30 23:08:26 +0200619config SMBIOS_PROVIDED_BY_MOBO
620 bool
621 default n
622
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200623config MAINBOARD_SERIAL_NUMBER
624 string "SMBIOS Serial Number"
625 depends on GENERATE_SMBIOS_TABLES
Vladimir Serbinenko0afdec42015-05-30 23:08:26 +0200626 depends on !SMBIOS_PROVIDED_BY_MOBO
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200627 default "123456789"
Martin Roth595e7772015-04-26 18:53:26 -0600628 help
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200629 The Serial Number to store in SMBIOS structures.
630
631config MAINBOARD_VERSION
632 string "SMBIOS Version Number"
633 depends on GENERATE_SMBIOS_TABLES
Vladimir Serbinenko0afdec42015-05-30 23:08:26 +0200634 depends on !SMBIOS_PROVIDED_BY_MOBO
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200635 default "1.0"
636 help
637 The Version Number to store in SMBIOS structures.
638
639config MAINBOARD_SMBIOS_MANUFACTURER
640 string "SMBIOS Manufacturer"
641 depends on GENERATE_SMBIOS_TABLES
Vladimir Serbinenko0afdec42015-05-30 23:08:26 +0200642 depends on !SMBIOS_PROVIDED_BY_MOBO
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200643 default MAINBOARD_VENDOR
644 help
645 Override the default Manufacturer stored in SMBIOS structures.
646
647config MAINBOARD_SMBIOS_PRODUCT_NAME
648 string "SMBIOS Product name"
649 depends on GENERATE_SMBIOS_TABLES
Vladimir Serbinenko0afdec42015-05-30 23:08:26 +0200650 depends on !SMBIOS_PROVIDED_BY_MOBO
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200651 default MAINBOARD_PART_NUMBER
652 help
653 Override the default Product name stored in SMBIOS structures.
654
Myles Watson45bb25f2009-09-22 18:49:08 +0000655endmenu
656
Patrick Georgi0588d192009-08-12 15:00:51 +0000657menu "Payload"
658
Patrick Georgi0588d192009-08-12 15:00:51 +0000659choice
Uwe Hermann168b11b2009-10-07 16:15:40 +0000660 prompt "Add a payload"
Stefan Reinauerf1939bb2010-12-30 17:39:50 +0000661 default PAYLOAD_NONE if !ARCH_X86
662 default PAYLOAD_SEABIOS if ARCH_X86
Patrick Georgi0588d192009-08-12 15:00:51 +0000663
Uwe Hermann168b11b2009-10-07 16:15:40 +0000664config PAYLOAD_NONE
665 bool "None"
666 help
667 Select this option if you want to create an "empty" coreboot
668 ROM image for a certain mainboard, i.e. a coreboot ROM image
669 which does not yet contain a payload.
670
671 For such an image to be useful, you have to use 'cbfstool'
672 to add a payload to the ROM image later.
673
Patrick Georgi0588d192009-08-12 15:00:51 +0000674config PAYLOAD_ELF
Uwe Hermann168b11b2009-10-07 16:15:40 +0000675 bool "An ELF executable payload"
Patrick Georgi0588d192009-08-12 15:00:51 +0000676 help
677 Select this option if you have a payload image (an ELF file)
678 which coreboot should run as soon as the basic hardware
679 initialization is completed.
680
681 You will be able to specify the location and file name of the
682 payload image later.
Patrick Georgi0588d192009-08-12 15:00:51 +0000683
Stefan Reinauer1a8b7bf2015-06-30 15:58:56 -0700684source "payloads/external/*/Kconfig.name"
Stefan Reinauercc5b3442013-01-15 17:02:58 -0800685
Stefan Reinauerf1939bb2010-12-30 17:39:50 +0000686endchoice
687
Stefan Reinauer1a8b7bf2015-06-30 15:58:56 -0700688source "payloads/external/*/Kconfig"
Stefan Reinauere50952f2011-04-15 03:34:05 +0000689
Stefan Reinauerbccbbe62010-12-19 21:20:14 +0000690config PAYLOAD_FILE
Cristi Magherusanb5034d42009-08-17 14:47:32 +0000691 string "Payload path and filename"
Patrick Georgi0588d192009-08-12 15:00:51 +0000692 depends on PAYLOAD_ELF
693 default "payload.elf"
694 help
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +0000695 The path and filename of the ELF executable file to use as payload.
Patrick Georgi0588d192009-08-12 15:00:51 +0000696
Uwe Hermann168b11b2009-10-07 16:15:40 +0000697# TODO: Defined if no payload? Breaks build?
698config COMPRESSED_PAYLOAD_LZMA
699 bool "Use LZMA compression for payloads"
700 default y
Stefan Reinauer1a8b7bf2015-06-30 15:58:56 -0700701 depends on !PAYLOAD_NONE && !PAYLOAD_LINUX
Uwe Hermann168b11b2009-10-07 16:15:40 +0000702 help
703 In order to reduce the size payloads take up in the ROM chip
704 coreboot can compress them using the LZMA algorithm.
705
Peter Stugea758ca22009-09-17 16:21:31 +0000706endmenu
707
Uwe Hermann168b11b2009-10-07 16:15:40 +0000708menu "Debugging"
709
710# TODO: Better help text and detailed instructions.
Patrick Georgi0588d192009-08-12 15:00:51 +0000711config GDB_STUB
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +0000712 bool "GDB debugging support"
Rudolf Marek65888022012-03-25 20:51:16 +0200713 default n
Patrick Georgi0588d192009-08-12 15:00:51 +0000714 help
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +0000715 If enabled, you will be able to set breakpoints for gdb debugging.
Stefan Reinauer8677a232010-12-11 20:33:41 +0000716 See src/arch/x86/lib/c_start.S for details.
Patrick Georgi0588d192009-08-12 15:00:51 +0000717
Denis 'GNUtoo' Cariklie4cece02012-06-22 15:56:37 +0200718config GDB_WAIT
719 bool "Wait for a GDB connection"
720 default n
721 depends on GDB_STUB
722 help
723 If enabled, coreboot will wait for a GDB connection.
724
Julius Wernerd82e0cf2015-02-17 17:27:23 -0800725config FATAL_ASSERTS
726 bool "Halt when hitting a BUG() or assertion error"
727 default n
728 help
729 If enabled, coreboot will call hlt() on a BUG() or failed ASSERT().
730
Stefan Reinauerfe422182012-05-02 16:33:18 -0700731config DEBUG_CBFS
732 bool "Output verbose CBFS debug messages"
733 default n
Stefan Reinauerfe422182012-05-02 16:33:18 -0700734 help
735 This option enables additional CBFS related debug messages.
736
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000737config HAVE_DEBUG_RAM_SETUP
738 def_bool n
739
Uwe Hermann01ce6012010-03-05 10:03:50 +0000740config DEBUG_RAM_SETUP
741 bool "Output verbose RAM init debug messages"
742 default n
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000743 depends on HAVE_DEBUG_RAM_SETUP
Uwe Hermann01ce6012010-03-05 10:03:50 +0000744 help
745 This option enables additional RAM init related debug messages.
746 It is recommended to enable this when debugging issues on your
747 board which might be RAM init related.
748
749 Note: This option will increase the size of the coreboot image.
750
751 If unsure, say N.
752
Patrick Georgie82618d2010-10-01 14:50:12 +0000753config HAVE_DEBUG_CAR
754 def_bool n
755
Peter Stuge5015f792010-11-10 02:00:32 +0000756config DEBUG_CAR
757 def_bool n
758 depends on HAVE_DEBUG_CAR
759
760if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
Uwe Hermanna953f372010-11-10 00:14:32 +0000761# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
762# printk(BIOS_DEBUG, ...) calls.
Patrick Georgie82618d2010-10-01 14:50:12 +0000763config DEBUG_CAR
764 bool "Output verbose Cache-as-RAM debug messages"
765 default n
Peter Stuge5015f792010-11-10 02:00:32 +0000766 depends on HAVE_DEBUG_CAR
Patrick Georgie82618d2010-10-01 14:50:12 +0000767 help
768 This option enables additional CAR related debug messages.
Peter Stuge5015f792010-11-10 02:00:32 +0000769endif
Patrick Georgie82618d2010-10-01 14:50:12 +0000770
Myles Watson80e914ff2010-06-01 19:25:31 +0000771config DEBUG_PIRQ
772 bool "Check PIRQ table consistency"
773 default n
774 depends on GENERATE_PIRQ_TABLE
775 help
776 If unsure, say N.
777
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000778config HAVE_DEBUG_SMBUS
779 def_bool n
780
Uwe Hermann01ce6012010-03-05 10:03:50 +0000781config DEBUG_SMBUS
782 bool "Output verbose SMBus debug messages"
783 default n
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000784 depends on HAVE_DEBUG_SMBUS
Uwe Hermann01ce6012010-03-05 10:03:50 +0000785 help
786 This option enables additional SMBus (and SPD) debug messages.
787
788 Note: This option will increase the size of the coreboot image.
789
790 If unsure, say N.
791
792config DEBUG_SMI
793 bool "Output verbose SMI debug messages"
794 default n
795 depends on HAVE_SMI_HANDLER
Martin Roth3a543182015-09-28 15:27:24 -0600796 select SPI_FLASH_SMM if SPI_CONSOLE
Uwe Hermann01ce6012010-03-05 10:03:50 +0000797 help
798 This option enables additional SMI related debug messages.
799
800 Note: This option will increase the size of the coreboot image.
801
802 If unsure, say N.
803
Stefan Reinauerbc0f7a62010-08-01 15:41:14 +0000804config DEBUG_SMM_RELOCATION
805 bool "Debug SMM relocation code"
806 default n
807 depends on HAVE_SMI_HANDLER
808 help
809 This option enables additional SMM handler relocation related
810 debug messages.
811
812 Note: This option will increase the size of the coreboot image.
813
814 If unsure, say N.
815
Uwe Hermanna953f372010-11-10 00:14:32 +0000816# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
817# printk(BIOS_DEBUG, ...) calls.
818config DEBUG_MALLOC
Stefan Reinauer95a63962012-11-13 17:00:01 -0800819 prompt "Output verbose malloc debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
820 bool
Uwe Hermanna953f372010-11-10 00:14:32 +0000821 default n
Uwe Hermanna953f372010-11-10 00:14:32 +0000822 help
823 This option enables additional malloc related debug messages.
824
825 Note: This option will increase the size of the coreboot image.
826
827 If unsure, say N.
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300828
829# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
830# printk(BIOS_DEBUG, ...) calls.
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300831config DEBUG_ACPI
Stefan Reinauer95a63962012-11-13 17:00:01 -0800832 prompt "Output verbose ACPI debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
833 bool
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300834 default n
835 help
836 This option enables additional ACPI related debug messages.
837
838 Note: This option will slightly increase the size of the coreboot image.
839
840 If unsure, say N.
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300841
Uwe Hermanna953f372010-11-10 00:14:32 +0000842# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
843# printk(BIOS_DEBUG, ...) calls.
Myles Watson6c9bc012010-09-07 22:30:15 +0000844config REALMODE_DEBUG
Stefan Reinauer95a63962012-11-13 17:00:01 -0800845 prompt "Enable debug messages for option ROM execution" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
846 bool
Myles Watson6c9bc012010-09-07 22:30:15 +0000847 default n
Peter Stuge5015f792010-11-10 02:00:32 +0000848 depends on PCI_OPTION_ROM_RUN_REALMODE
Myles Watson6c9bc012010-09-07 22:30:15 +0000849 help
850 This option enables additional x86emu related debug messages.
851
852 Note: This option will increase the time to emulate a ROM.
853
854 If unsure, say N.
855
Uwe Hermann01ce6012010-03-05 10:03:50 +0000856config X86EMU_DEBUG
857 bool "Output verbose x86emu debug messages"
858 default n
859 depends on PCI_OPTION_ROM_RUN_YABEL
860 help
861 This option enables additional x86emu related debug messages.
862
863 Note: This option will increase the size of the coreboot image.
864
865 If unsure, say N.
866
867config X86EMU_DEBUG_JMP
868 bool "Trace JMP/RETF"
869 default n
870 depends on X86EMU_DEBUG
871 help
872 Print information about JMP and RETF opcodes from x86emu.
873
874 Note: This option will increase the size of the coreboot image.
875
876 If unsure, say N.
877
878config X86EMU_DEBUG_TRACE
879 bool "Trace all opcodes"
880 default n
881 depends on X86EMU_DEBUG
882 help
883 Print _all_ opcodes that are executed by x86emu.
Stefan Reinauer14e22772010-04-27 06:56:47 +0000884
Uwe Hermann01ce6012010-03-05 10:03:50 +0000885 WARNING: This will produce a LOT of output and take a long time.
886
887 Note: This option will increase the size of the coreboot image.
888
889 If unsure, say N.
890
891config X86EMU_DEBUG_PNP
892 bool "Log Plug&Play accesses"
893 default n
894 depends on X86EMU_DEBUG
895 help
896 Print Plug And Play accesses made by option ROMs.
897
898 Note: This option will increase the size of the coreboot image.
899
900 If unsure, say N.
901
902config X86EMU_DEBUG_DISK
903 bool "Log Disk I/O"
904 default n
905 depends on X86EMU_DEBUG
906 help
907 Print Disk I/O related messages.
908
909 Note: This option will increase the size of the coreboot image.
910
911 If unsure, say N.
912
913config X86EMU_DEBUG_PMM
914 bool "Log PMM"
915 default n
916 depends on X86EMU_DEBUG
917 help
918 Print messages related to POST Memory Manager (PMM).
919
920 Note: This option will increase the size of the coreboot image.
921
922 If unsure, say N.
923
924
925config X86EMU_DEBUG_VBE
926 bool "Debug VESA BIOS Extensions"
927 default n
928 depends on X86EMU_DEBUG
929 help
930 Print messages related to VESA BIOS Extension (VBE) functions.
931
932 Note: This option will increase the size of the coreboot image.
933
934 If unsure, say N.
935
936config X86EMU_DEBUG_INT10
937 bool "Redirect INT10 output to console"
938 default n
939 depends on X86EMU_DEBUG
940 help
941 Let INT10 (i.e. character output) calls print messages to debug output.
942
943 Note: This option will increase the size of the coreboot image.
944
945 If unsure, say N.
946
947config X86EMU_DEBUG_INTERRUPTS
948 bool "Log intXX calls"
949 default n
950 depends on X86EMU_DEBUG
951 help
952 Print messages related to interrupt handling.
953
954 Note: This option will increase the size of the coreboot image.
955
956 If unsure, say N.
957
958config X86EMU_DEBUG_CHECK_VMEM_ACCESS
959 bool "Log special memory accesses"
960 default n
961 depends on X86EMU_DEBUG
962 help
963 Print messages related to accesses to certain areas of the virtual
964 memory (e.g. BDA (BIOS Data Area) or interrupt vectors)
965
966 Note: This option will increase the size of the coreboot image.
967
968 If unsure, say N.
969
970config X86EMU_DEBUG_MEM
971 bool "Log all memory accesses"
972 default n
973 depends on X86EMU_DEBUG
974 help
975 Print memory accesses made by option ROM.
976 Note: This also includes accesses to fetch instructions.
977
978 Note: This option will increase the size of the coreboot image.
979
980 If unsure, say N.
981
982config X86EMU_DEBUG_IO
983 bool "Log IO accesses"
984 default n
985 depends on X86EMU_DEBUG
986 help
987 Print I/O accesses made by option ROM.
988
989 Note: This option will increase the size of the coreboot image.
990
991 If unsure, say N.
992
Denis 'GNUtoo' Carikli4cdc5d62013-05-15 00:19:49 +0200993config X86EMU_DEBUG_TIMINGS
994 bool "Output timing information"
995 default n
996 depends on X86EMU_DEBUG && UDELAY_LAPIC && HAVE_MONOTONIC_TIMER
997 help
998 Print timing information needed by i915tool.
999
1000 If unsure, say N.
1001
Stefan Reinauerdfb098d2011-11-17 12:50:54 -08001002config DEBUG_TPM
1003 bool "Output verbose TPM debug messages"
1004 default n
1005 depends on TPM
1006 help
1007 This option enables additional TPM related debug messages.
1008
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -07001009config DEBUG_SPI_FLASH
1010 bool "Output verbose SPI flash debug messages"
1011 default n
1012 depends on SPI_FLASH
1013 help
1014 This option enables additional SPI flash related debug messages.
1015
Kyösti Mälkki3be80cc2013-06-06 10:46:37 +03001016config DEBUG_USBDEBUG
1017 bool "Output verbose USB 2.0 EHCI debug dongle messages"
1018 default n
1019 depends on USBDEBUG
1020 help
1021 This option enables additional USB 2.0 debug dongle related messages.
1022
1023 Select this to debug the connection of usbdebug dongle. Note that
1024 you need some other working console to receive the messages.
1025
Stefan Reinauer8e073822012-04-04 00:07:22 +02001026if SOUTHBRIDGE_INTEL_BD82X6X && DEFAULT_CONSOLE_LOGLEVEL_8
1027# Only visible with the right southbridge and loglevel.
1028config DEBUG_INTEL_ME
1029 bool "Verbose logging for Intel Management Engine"
1030 default n
1031 help
1032 Enable verbose logging for Intel Management Engine driver that
1033 is present on Intel 6-series chipsets.
1034endif
1035
Rudolf Marek7f0e9302011-09-02 23:23:41 +02001036config TRACE
1037 bool "Trace function calls"
1038 default n
1039 help
1040 If enabled, every function will print information to console once
1041 the function is entered. The syntax is ~0xaaaabbbb(0xccccdddd)
1042 the 0xaaaabbbb is the actual function and 0xccccdddd is EIP
1043 of calling function. Please note some printk releated functions
1044 are omitted from trace to have good looking console dumps.
Stefan Reinauerd37ab452012-12-18 16:23:28 -08001045
1046config DEBUG_COVERAGE
1047 bool "Debug code coverage"
1048 default n
1049 depends on COVERAGE
1050 help
1051 If enabled, the code coverage hooks in coreboot will output some
1052 information about the coverage data that is dumped.
1053
Uwe Hermann168b11b2009-10-07 16:15:40 +00001054endmenu
1055
Myles Watsond73c1b52009-10-26 15:14:07 +00001056# These probably belong somewhere else, but they are needed somewhere.
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.