Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 1 | ## |
Stefan Reinauer | 16f515a | 2010-01-20 18:44:30 +0000 | [diff] [blame] | 2 | ## This file is part of the coreboot project. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 3 | ## |
Alexandru Gagniuc | 70c660f | 2012-08-23 02:32:58 -0500 | [diff] [blame] | 4 | ## Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com> |
Stefan Reinauer | 16f515a | 2010-01-20 18:44:30 +0000 | [diff] [blame] | 5 | ## Copyright (C) 2009-2010 coresystems GmbH |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 6 | ## |
Stefan Reinauer | 16f515a | 2010-01-20 18:44:30 +0000 | [diff] [blame] | 7 | ## 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 Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 16 | |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 17 | mainmenu "coreboot configuration" |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 18 | |
Uwe Hermann | c04be93 | 2009-10-05 13:55:28 +0000 | [diff] [blame] | 19 | menu "General setup" |
| 20 | |
| 21 | config LOCALVERSION |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 22 | string "Local version string" |
Uwe Hermann | c04be93 | 2009-10-05 13:55:28 +0000 | [diff] [blame] | 23 | help |
| 24 | Append an extra string to the end of the coreboot version. |
| 25 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 26 | This can be useful if, for instance, you want to append the |
| 27 | respective board's hostname or some other identifying string to |
| 28 | the coreboot version number, so that you can easily distinguish |
| 29 | boot logs of different boards from each other. |
| 30 | |
Patrick Georgi | 4b8a241 | 2010-02-09 19:35:16 +0000 | [diff] [blame] | 31 | config CBFS_PREFIX |
| 32 | string "CBFS prefix to use" |
| 33 | default "fallback" |
| 34 | help |
| 35 | Select the prefix to all files put into the image. It's "fallback" |
| 36 | by default, "normal" is a common alternative. |
| 37 | |
Vadim Bendebury | adcb095 | 2014-05-01 12:23:09 -0700 | [diff] [blame] | 38 | config COMMON_CBFS_SPI_WRAPPER |
| 39 | bool |
| 40 | default n |
| 41 | depends on SPI_FLASH |
| 42 | depends on !ARCH_X86 |
| 43 | help |
| 44 | Use common wrapper to interface CBFS to SPI bootrom. |
| 45 | |
Vadim Bendebury | 6bfabce | 2014-12-25 15:07:22 -0800 | [diff] [blame] | 46 | config MULTIPLE_CBFS_INSTANCES |
Martin Roth | 595e777 | 2015-04-26 18:53:26 -0600 | [diff] [blame] | 47 | bool "Multiple CBFS instances in the bootrom" |
| 48 | default n |
Martin Roth | 595e777 | 2015-04-26 18:53:26 -0600 | [diff] [blame] | 49 | help |
| 50 | Account for the firmware image containing more than one CBFS |
| 51 | instance. Locations of instances are known at build time and are |
| 52 | communicated between coreboot stages to make sure the next stage is |
| 53 | loaded from the appropriate instance. |
Vadim Bendebury | 6bfabce | 2014-12-25 15:07:22 -0800 | [diff] [blame] | 54 | |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 55 | choice |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 56 | prompt "Compiler to use" |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 57 | default COMPILER_GCC |
| 58 | help |
| 59 | This option allows you to select the compiler used for building |
| 60 | coreboot. |
| 61 | |
| 62 | config COMPILER_GCC |
| 63 | bool "GCC" |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 64 | help |
| 65 | Use the GNU Compiler Collection (GCC) to build coreboot. |
| 66 | |
| 67 | For details see http://gcc.gnu.org. |
| 68 | |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 69 | config COMPILER_LLVM_CLANG |
| 70 | bool "LLVM/clang" |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 71 | help |
| 72 | Use LLVM/clang to build coreboot. |
| 73 | |
| 74 | For details see http://clang.llvm.org. |
| 75 | |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 76 | endchoice |
| 77 | |
Patrick Georgi | 9b0de71 | 2013-12-29 18:45:23 +0100 | [diff] [blame] | 78 | config ANY_TOOLCHAIN |
| 79 | bool "Allow building with any toolchain" |
| 80 | default n |
| 81 | depends on COMPILER_GCC |
| 82 | help |
| 83 | Many toolchains break when building coreboot since it uses quite |
| 84 | unusual linker features. Unless developers explicitely request it, |
| 85 | we'll have to assume that they use their distro compiler by mistake. |
| 86 | Make sure that using patched compilers is a conscious decision. |
| 87 | |
Patrick Georgi | 516a2a7 | 2010-03-25 21:45:25 +0000 | [diff] [blame] | 88 | config CCACHE |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 89 | bool "Use ccache to speed up (re)compilation" |
Patrick Georgi | 516a2a7 | 2010-03-25 21:45:25 +0000 | [diff] [blame] | 90 | default n |
| 91 | help |
| 92 | Enables the use of ccache for faster builds. |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 93 | |
| 94 | Requires the ccache utility in your system $PATH. |
| 95 | |
| 96 | For details see https://ccache.samba.org. |
Patrick Georgi | 516a2a7 | 2010-03-25 21:45:25 +0000 | [diff] [blame] | 97 | |
Sol Boucher | 69b88bf | 2015-02-26 11:47:19 -0800 | [diff] [blame] | 98 | config FMD_GENPARSER |
| 99 | bool "Generate flashmap descriptor parser using flex and bison" |
| 100 | default n |
Sol Boucher | 69b88bf | 2015-02-26 11:47:19 -0800 | [diff] [blame] | 101 | help |
| 102 | Enable this option if you are working on the flashmap descriptor |
| 103 | parser and made changes to fmd_scanner.l or fmd_parser.y. |
| 104 | |
| 105 | Otherwise, say N to use the provided pregenerated scanner/parser. |
| 106 | |
Stefan Reinauer | 9bf7810 | 2010-08-09 13:28:18 +0000 | [diff] [blame] | 107 | config SCONFIG_GENPARSER |
| 108 | bool "Generate SCONFIG parser using flex and bison" |
| 109 | default n |
Stefan Reinauer | 9bf7810 | 2010-08-09 13:28:18 +0000 | [diff] [blame] | 110 | help |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 111 | Enable this option if you are working on the sconfig device tree |
Sol Boucher | 69b88bf | 2015-02-26 11:47:19 -0800 | [diff] [blame] | 112 | parser and made changes to sconfig.l or sconfig.y. |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 113 | |
Sol Boucher | 69b88bf | 2015-02-26 11:47:19 -0800 | [diff] [blame] | 114 | Otherwise, say N to use the provided pregenerated scanner/parser. |
Stefan Reinauer | 9bf7810 | 2010-08-09 13:28:18 +0000 | [diff] [blame] | 115 | |
Joe Korty | 6d77252 | 2010-05-19 18:41:15 +0000 | [diff] [blame] | 116 | config USE_OPTION_TABLE |
| 117 | bool "Use CMOS for configuration values" |
| 118 | default n |
Edwin Beasant | eb50c7d | 2010-07-06 21:05:04 +0000 | [diff] [blame] | 119 | depends on HAVE_OPTION_TABLE |
Joe Korty | 6d77252 | 2010-05-19 18:41:15 +0000 | [diff] [blame] | 120 | help |
| 121 | Enable this option if coreboot shall read options from the "CMOS" |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 122 | NVRAM instead of using hard-coded values. |
Joe Korty | 6d77252 | 2010-05-19 18:41:15 +0000 | [diff] [blame] | 123 | |
Timothy Pearson | f20c6e8 | 2015-02-14 16:15:31 -0600 | [diff] [blame] | 124 | config STATIC_OPTION_TABLE |
| 125 | bool "Load default configuration values into CMOS on each boot" |
| 126 | default n |
| 127 | depends on USE_OPTION_TABLE |
| 128 | help |
| 129 | Enable this option to reset "CMOS" NVRAM values to default on |
| 130 | every boot. Use this if you want the NVRAM configuration to |
| 131 | never be modified from its default values. |
| 132 | |
Julius Werner | cdf92ea | 2014-12-09 12:18:00 -0800 | [diff] [blame] | 133 | config UNCOMPRESSED_RAMSTAGE |
| 134 | bool |
| 135 | default n |
| 136 | |
Sven Schnelle | 8eee19d | 2011-05-02 19:53:04 +0000 | [diff] [blame] | 137 | config COMPRESS_RAMSTAGE |
| 138 | bool "Compress ramstage with LZMA" |
Julius Werner | cdf92ea | 2014-12-09 12:18:00 -0800 | [diff] [blame] | 139 | default y if !UNCOMPRESSED_RAMSTAGE |
| 140 | default n |
Sven Schnelle | 8eee19d | 2011-05-02 19:53:04 +0000 | [diff] [blame] | 141 | help |
| 142 | Compress ramstage to save memory in the flash image. Note |
| 143 | that decompression might slow down booting if the boot flash |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 144 | is connected through a slow link (i.e. SPI). |
Sven Schnelle | 8eee19d | 2011-05-02 19:53:04 +0000 | [diff] [blame] | 145 | |
Cristian Măgherușan-Stanciu | d367b00 | 2011-06-19 03:03:28 +0200 | [diff] [blame] | 146 | config INCLUDE_CONFIG_FILE |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 147 | bool "Include the coreboot .config file into the ROM image" |
Cristian Măgherușan-Stanciu | d367b00 | 2011-06-19 03:03:28 +0200 | [diff] [blame] | 148 | default y |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 149 | help |
| 150 | Include the .config file that was used to compile coreboot |
| 151 | in the (CBFS) ROM image. This is useful if you want to know which |
| 152 | options were used to build a specific coreboot.rom image. |
| 153 | |
Daniele Forsi | 53847a2 | 2014-07-22 18:00:56 +0200 | [diff] [blame] | 154 | Saying Y here will increase the image size by 2-3KB. |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 155 | |
| 156 | You can use the following command to easily list the options: |
| 157 | |
| 158 | grep -a CONFIG_ coreboot.rom |
| 159 | |
| 160 | Alternatively, you can also use cbfstool to print the image |
| 161 | contents (including the raw 'config' item we're looking for). |
| 162 | |
| 163 | Example: |
| 164 | |
| 165 | $ cbfstool coreboot.rom print |
| 166 | coreboot.rom: 4096 kB, bootblocksize 1008, romsize 4194304, |
| 167 | offset 0x0 |
| 168 | Alignment: 64 bytes |
Steve Goodrich | f026912 | 2012-05-18 11:18:47 -0600 | [diff] [blame] | 169 | |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 170 | Name Offset Type Size |
| 171 | cmos_layout.bin 0x0 cmos layout 1159 |
| 172 | fallback/romstage 0x4c0 stage 339756 |
Daniele Forsi | 53847a2 | 2014-07-22 18:00:56 +0200 | [diff] [blame] | 173 | fallback/ramstage 0x53440 stage 186664 |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 174 | fallback/payload 0x80dc0 payload 51526 |
| 175 | config 0x8d740 raw 3324 |
| 176 | (empty) 0x8e480 null 3610440 |
Cristian Măgherușan-Stanciu | d367b00 | 2011-06-19 03:03:28 +0200 | [diff] [blame] | 177 | |
Kyösti Mälkki | f8bf5a1 | 2013-10-11 22:08:02 +0300 | [diff] [blame] | 178 | config EARLY_CBMEM_INIT |
Kyösti Mälkki | 3bf3854 | 2014-12-18 22:22:04 +0200 | [diff] [blame] | 179 | def_bool !LATE_CBMEM_INIT |
| 180 | |
Vadim Bendebury | 9202473d | 2011-09-21 14:46:43 -0700 | [diff] [blame] | 181 | config COLLECT_TIMESTAMPS |
| 182 | bool "Create a table of timestamps collected during boot" |
Kyösti Mälkki | 2644793 | 2013-10-11 21:14:59 +0300 | [diff] [blame] | 183 | default n |
Vadim Bendebury | 9202473d | 2011-09-21 14:46:43 -0700 | [diff] [blame] | 184 | help |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 185 | Make coreboot create a table of timer-ID/timer-value pairs to |
| 186 | allow measuring time spent at different phases of the boot process. |
| 187 | |
Aaron Durbin | 1936f6c | 2015-07-03 17:04:21 -0500 | [diff] [blame] | 188 | config HAS_PRECBMEM_TIMESTAMP_REGION |
| 189 | bool "Timestamp region exists for pre-cbmem timestamps" |
| 190 | default y if ARCH_ROMSTAGE_X86_32 && CACHE_AS_RAM |
Aaron Durbin | 1936f6c | 2015-07-03 17:04:21 -0500 | [diff] [blame] | 191 | help |
| 192 | A separate region is maintained to allow storing of timestamps before |
| 193 | cbmem comes up. This is useful for storing timestamps across different |
| 194 | stage boundaries. |
| 195 | |
Patrick Georgi | 7e9b9d8 | 2012-04-30 21:06:10 +0200 | [diff] [blame] | 196 | config USE_BLOBS |
| 197 | bool "Allow use of binary-only repository" |
| 198 | default n |
| 199 | help |
| 200 | This draws in the blobs repository, which contains binary files that |
| 201 | might be required for some chipsets or boards. |
| 202 | This flag ensures that a "Free" option remains available for users. |
| 203 | |
Stefan Reinauer | d37ab45 | 2012-12-18 16:23:28 -0800 | [diff] [blame] | 204 | config COVERAGE |
| 205 | bool "Code coverage support" |
| 206 | depends on COMPILER_GCC |
| 207 | default n |
| 208 | help |
| 209 | Add code coverage support for coreboot. This will store code |
| 210 | coverage information in CBMEM for extraction from user space. |
| 211 | If unsure, say N. |
| 212 | |
Stefan Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 213 | config RELOCATABLE_MODULES |
Vladimir Serbinenko | 633352c | 2015-05-30 22:21:37 +0200 | [diff] [blame] | 214 | bool |
Stefan Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 215 | default n |
| 216 | help |
| 217 | If RELOCATABLE_MODULES is selected then support is enabled for |
| 218 | building relocatable modules in the RAM stage. Those modules can be |
| 219 | loaded anywhere and all the relocations are handled automatically. |
| 220 | |
| 221 | config RELOCATABLE_RAMSTAGE |
Vladimir Serbinenko | 633352c | 2015-05-30 22:21:37 +0200 | [diff] [blame] | 222 | depends on EARLY_CBMEM_INIT |
Stefan Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 223 | bool "Build the ramstage to be relocatable in 32-bit address space." |
| 224 | default n |
Vladimir Serbinenko | 633352c | 2015-05-30 22:21:37 +0200 | [diff] [blame] | 225 | select RELOCATABLE_MODULES |
Stefan Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 226 | help |
| 227 | The reloctable ramstage support allows for the ramstage to be built |
| 228 | as a relocatable module. The stage loader can identify a place |
| 229 | out of the OS way so that copying memory is unnecessary during an S3 |
| 230 | wake. When selecting this option the romstage is responsible for |
| 231 | determing a stack location to use for loading the ramstage. |
| 232 | |
| 233 | config CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM |
| 234 | depends on RELOCATABLE_RAMSTAGE |
| 235 | bool "Cache the relocated ramstage outside of cbmem." |
| 236 | default n |
| 237 | help |
| 238 | The relocated ramstage is saved in an area specified by the |
| 239 | by the board and/or chipset. |
| 240 | |
Aaron Durbin | 0424c95 | 2015-03-28 23:56:22 -0500 | [diff] [blame] | 241 | config FLASHMAP_OFFSET |
| 242 | hex "Flash Map Offset" |
Alexandru Gagniuc | ecf2eb4 | 2015-09-28 21:39:12 -0700 | [diff] [blame] | 243 | default 0x00670000 if NORTHBRIDGE_INTEL_SANDYBRIDGE_MRC |
| 244 | default 0x00610000 if NORTHBRIDGE_INTEL_IVYBRIDGE_MRC |
Aaron Durbin | 0424c95 | 2015-03-28 23:56:22 -0500 | [diff] [blame] | 245 | default CBFS_SIZE if !ARCH_X86 |
| 246 | default 0 |
| 247 | help |
| 248 | Offset of flash map in firmware image |
| 249 | |
Julius Werner | 86fc11d | 2015-10-09 13:37:58 -0700 | [diff] [blame] | 250 | # TODO: This doesn't belong here, move to src/arch/x86/Kconfig |
Stefan Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 251 | choice |
| 252 | prompt "Bootblock behaviour" |
| 253 | default BOOTBLOCK_SIMPLE |
| 254 | |
| 255 | config BOOTBLOCK_SIMPLE |
| 256 | bool "Always load fallback" |
| 257 | |
| 258 | config BOOTBLOCK_NORMAL |
| 259 | bool "Switch to normal if CMOS says so" |
| 260 | |
| 261 | endchoice |
| 262 | |
Julius Werner | 86fc11d | 2015-10-09 13:37:58 -0700 | [diff] [blame] | 263 | # To be selected by arch, SoC or mainboard if it does not want use the normal |
| 264 | # src/lib/bootblock.c#main() C entry point. |
| 265 | config BOOTBLOCK_CUSTOM |
| 266 | bool |
| 267 | default n |
| 268 | |
Stefan Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 269 | config BOOTBLOCK_SOURCE |
| 270 | string |
| 271 | default "bootblock_simple.c" if BOOTBLOCK_SIMPLE |
| 272 | default "bootblock_normal.c" if BOOTBLOCK_NORMAL |
| 273 | |
Alexandru Gagniuc | ee464b1 | 2015-10-02 18:01:18 -0700 | [diff] [blame^] | 274 | # To be selected by arch or platform if a C environment is available during the |
| 275 | # bootblock. Normally this signifies availability of RW memory (e.g. SRAM). |
| 276 | config C_ENVIRONMENT_BOOTBLOCK |
| 277 | bool |
| 278 | default n |
| 279 | |
Timothy Pearson | 4472408 | 2015-03-16 11:47:45 -0500 | [diff] [blame] | 280 | config SKIP_MAX_REBOOT_CNT_CLEAR |
| 281 | bool "Do not clear reboot count after successful boot" |
| 282 | default n |
Timothy Pearson | 3bfd7cc | 2015-11-01 02:13:17 -0600 | [diff] [blame] | 283 | depends on BOOTBLOCK_NORMAL |
Timothy Pearson | 4472408 | 2015-03-16 11:47:45 -0500 | [diff] [blame] | 284 | help |
| 285 | Do not clear the reboot count immediately after successful boot. |
| 286 | Set to allow the payload to control normal/fallback image recovery. |
Timothy Pearson | 3bfd7cc | 2015-11-01 02:13:17 -0600 | [diff] [blame] | 287 | Note that it is the responsibility of the payload to reset the |
| 288 | normal boot bit to 1 after each successsful boot. |
Timothy Pearson | 4472408 | 2015-03-16 11:47:45 -0500 | [diff] [blame] | 289 | |
Stefan Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 290 | config UPDATE_IMAGE |
| 291 | bool "Update existing coreboot.rom image" |
| 292 | default n |
| 293 | help |
| 294 | If this option is enabled, no new coreboot.rom file |
| 295 | is created. Instead it is expected that there already |
| 296 | is a suitable file for further processing. |
| 297 | The bootblock will not be modified. |
| 298 | |
Stefan Reinauer | d06258c | 2015-03-26 16:29:00 -0700 | [diff] [blame] | 299 | config GENERIC_GPIO_LIB |
| 300 | bool |
| 301 | default n |
| 302 | help |
| 303 | If enabled, compile the generic GPIO library. A "generic" GPIO |
| 304 | implies configurability usually found on SoCs, particularly the |
| 305 | ability to control internal pull resistors. |
| 306 | |
| 307 | config BOARD_ID_AUTO |
| 308 | bool |
| 309 | default n |
| 310 | help |
| 311 | Mainboards that can read a board ID from the hardware straps |
| 312 | (ie. GPIO) select this configuration option. |
| 313 | |
| 314 | config BOARD_ID_MANUAL |
Vladimir Serbinenko | 1e16142 | 2015-05-30 22:47:22 +0200 | [diff] [blame] | 315 | bool |
Stefan Reinauer | d06258c | 2015-03-26 16:29:00 -0700 | [diff] [blame] | 316 | default n |
| 317 | depends on !BOARD_ID_AUTO |
| 318 | help |
| 319 | If you want to maintain a board ID, but the hardware does not |
| 320 | have straps to automatically determine the ID, you can say Y |
| 321 | here and add a file named 'board_id' to CBFS. If you don't know |
| 322 | what this is about, say N. |
| 323 | |
| 324 | config BOARD_ID_STRING |
| 325 | string "Board ID" |
| 326 | default "(none)" |
| 327 | depends on BOARD_ID_MANUAL |
| 328 | help |
| 329 | This string is placed in the 'board_id' CBFS file for indicating |
| 330 | board type. |
| 331 | |
David Hendricks | 627b3bd | 2014-11-03 17:42:09 -0800 | [diff] [blame] | 332 | config RAM_CODE_SUPPORT |
Vladimir Serbinenko | 8ef9c56 | 2015-05-30 22:55:44 +0200 | [diff] [blame] | 333 | bool |
David Hendricks | 627b3bd | 2014-11-03 17:42:09 -0800 | [diff] [blame] | 334 | default n |
| 335 | help |
| 336 | If enabled, coreboot discovers RAM configuration (value obtained by |
| 337 | reading board straps) and stores it in coreboot table. |
| 338 | |
Konstantin Aladyshev | 6544cb3 | 2015-01-24 18:52:10 +0400 | [diff] [blame] | 339 | config BOOTSPLASH_IMAGE |
| 340 | bool "Add a bootsplash image" |
| 341 | help |
| 342 | Select this option if you have a bootsplash image that you would |
| 343 | like to add to your ROM. |
| 344 | |
| 345 | This will only add the image to the ROM. To actually run it check |
| 346 | options under 'Display' section. |
| 347 | |
| 348 | config BOOTSPLASH_FILE |
| 349 | string "Bootsplash path and filename" |
| 350 | depends on BOOTSPLASH_IMAGE |
| 351 | default "bootsplash.jpg" |
| 352 | help |
| 353 | The path and filename of the file to use as graphical bootsplash |
| 354 | screen. The file format has to be jpg. |
| 355 | |
Uwe Hermann | c04be93 | 2009-10-05 13:55:28 +0000 | [diff] [blame] | 356 | endmenu |
| 357 | |
Alexander Couzens | 7710379 | 2015-04-16 02:03:26 +0200 | [diff] [blame] | 358 | source "src/acpi/Kconfig" |
| 359 | |
Martin Roth | 026e4dc | 2015-06-19 23:17:15 -0600 | [diff] [blame] | 360 | menu "Mainboard" |
| 361 | |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 362 | source "src/mainboard/Kconfig" |
Stefan Reinauer | 8aedcbc | 2010-12-16 23:37:17 +0000 | [diff] [blame] | 363 | |
Martin Roth | 026e4dc | 2015-06-19 23:17:15 -0600 | [diff] [blame] | 364 | config CBFS_SIZE |
| 365 | hex "Size of CBFS filesystem in ROM" |
Martin Roth | 59aa2b1 | 2015-06-20 16:17:12 -0600 | [diff] [blame] | 366 | default 0x100000 if HAVE_INTEL_FIRMWARE || \ |
Damien Zammit | 43a1f78 | 2015-08-19 15:16:59 +1000 | [diff] [blame] | 367 | NORTHBRIDGE_INTEL_X4X || \ |
Alexandru Gagniuc | ecf2eb4 | 2015-09-28 21:39:12 -0700 | [diff] [blame] | 368 | NORTHBRIDGE_INTEL_GM45 || NORTHBRIDGE_INTEL_SANDYBRIDGE_MRC || \ |
| 369 | NORTHBRIDGE_INTEL_IVYBRIDGE_MRC || NORTHBRIDGE_INTEL_IVYBRIDGE || \ |
| 370 | NORTHBRIDGE_INTEL_SANDYBRIDGE || \ |
Martin Roth | c407cb9 | 2015-06-23 19:59:30 -0600 | [diff] [blame] | 371 | NORTHBRIDGE_INTEL_NEHALEM || SOC_INTEL_BRASWELL || \ |
Martin Roth | 026e4dc | 2015-06-19 23:17:15 -0600 | [diff] [blame] | 372 | SOC_INTEL_BROADWELL |
Aaron Durbin | 2ca12740 | 2015-07-30 13:34:29 -0500 | [diff] [blame] | 373 | default 0x200000 if SOC_INTEL_SKYLAKE |
Martin Roth | 026e4dc | 2015-06-19 23:17:15 -0600 | [diff] [blame] | 374 | default ROM_SIZE |
| 375 | help |
| 376 | This is the part of the ROM actually managed by CBFS, located at the |
| 377 | end of the ROM (passed through cbfstool -o) on x86 and at at the start |
| 378 | of the ROM (passed through cbfstool -s) everywhere else. It defaults |
| 379 | to span the whole ROM on all but Intel systems that use an Intel Firmware |
| 380 | Descriptor. It can be overridden to make coreboot live alongside other |
| 381 | components like ChromeOS's vboot/FMAP or Intel's IFD / ME / TXE |
| 382 | binaries. |
| 383 | |
Patrick Georgi | 8a3592e | 2015-09-16 18:10:52 +0200 | [diff] [blame] | 384 | config FMDFILE |
| 385 | string "fmap description file in fmd format" |
| 386 | default "" |
| 387 | help |
| 388 | The build system creates a default FMAP from ROM_SIZE and CBFS_SIZE, |
| 389 | but in some cases more complex setups are required. |
| 390 | When an fmd is specified, it overrides the default format. |
| 391 | |
Martin Roth | da1ca20 | 2015-12-26 16:51:16 -0700 | [diff] [blame] | 392 | endmenu |
| 393 | |
Vladimir Serbinenko | a9db82f | 2014-10-16 13:21:47 +0200 | [diff] [blame] | 394 | config SYSTEM_TYPE_LAPTOP |
Martin Roth | 595e777 | 2015-04-26 18:53:26 -0600 | [diff] [blame] | 395 | default n |
| 396 | bool |
Vladimir Serbinenko | a9db82f | 2014-10-16 13:21:47 +0200 | [diff] [blame] | 397 | |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 398 | menu "Chipset" |
| 399 | |
Duncan Laurie | d211976 | 2015-06-08 18:11:56 -0700 | [diff] [blame] | 400 | comment "SoC" |
| 401 | source "src/soc/*/*/Kconfig" |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 402 | comment "CPU" |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 403 | source "src/cpu/Kconfig" |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 404 | comment "Northbridge" |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 405 | source "src/northbridge/*/*/Kconfig" |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 406 | comment "Southbridge" |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 407 | source "src/southbridge/*/*/Kconfig" |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 408 | comment "Super I/O" |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 409 | source "src/superio/*/Kconfig" |
Sven Schnelle | 7592e8b | 2011-01-27 11:43:03 +0000 | [diff] [blame] | 410 | comment "Embedded Controllers" |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 411 | source "src/ec/acpi/Kconfig" |
| 412 | source "src/ec/*/*/Kconfig" |
Marc Jones | 7868797 | 2015-04-22 23:16:31 -0600 | [diff] [blame] | 413 | source "src/drivers/intel/fsp1_0/Kconfig" |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 414 | |
Martin Roth | 59aa2b1 | 2015-06-20 16:17:12 -0600 | [diff] [blame] | 415 | source "src/southbridge/intel/common/firmware/Kconfig" |
Martin Roth | e1523ec | 2015-06-19 22:30:43 -0600 | [diff] [blame] | 416 | source "src/vendorcode/*/Kconfig" |
Martin Roth | 59aa2b1 | 2015-06-20 16:17:12 -0600 | [diff] [blame] | 417 | |
Martin Roth | e1523ec | 2015-06-19 22:30:43 -0600 | [diff] [blame] | 418 | source "src/arch/*/Kconfig" |
| 419 | |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 420 | endmenu |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 421 | |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 422 | source "src/device/Kconfig" |
Stefan Reinauer | 95a6396 | 2012-11-13 17:00:01 -0800 | [diff] [blame] | 423 | |
Rudolf Marek | d9c2549 | 2010-05-16 15:31:53 +0000 | [diff] [blame] | 424 | menu "Generic Drivers" |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 425 | source "src/drivers/*/Kconfig" |
Rudolf Marek | d9c2549 | 2010-05-16 15:31:53 +0000 | [diff] [blame] | 426 | endmenu |
| 427 | |
Patrick Georgi | 0770f25 | 2015-04-22 13:28:21 +0200 | [diff] [blame] | 428 | config RTC |
| 429 | bool |
| 430 | default n |
| 431 | |
Stefan Reinauer | 7cb01e0 | 2013-08-29 16:05:02 -0700 | [diff] [blame] | 432 | config TPM |
| 433 | bool |
| 434 | default n |
| 435 | select LPC_TPM if ARCH_X86 |
Gabe Black | 51edd54 | 2013-09-30 23:00:33 -0700 | [diff] [blame] | 436 | select I2C_TPM if ARCH_ARM |
Furquan Shaikh | 2af76f4 | 2014-04-28 16:39:40 -0700 | [diff] [blame] | 437 | select I2C_TPM if ARCH_ARM64 |
Stefan Reinauer | 7cb01e0 | 2013-08-29 16:05:02 -0700 | [diff] [blame] | 438 | help |
| 439 | Enable this option to enable TPM support in coreboot. |
| 440 | |
| 441 | If unsure, say N. |
| 442 | |
Kyösti Mälkki | eaee6e2 | 2014-04-30 01:35:29 +0300 | [diff] [blame] | 443 | config RAMTOP |
| 444 | hex |
| 445 | default 0x200000 |
| 446 | depends on ARCH_X86 |
| 447 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 448 | config HEAP_SIZE |
| 449 | hex |
Myles Watson | 04000f4 | 2009-10-16 19:12:49 +0000 | [diff] [blame] | 450 | default 0x4000 |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 451 | |
Julius Werner | c3e7c4e | 2014-09-19 13:18:16 -0700 | [diff] [blame] | 452 | config STACK_SIZE |
| 453 | hex |
Julius Werner | 66a476a | 2015-10-12 16:45:21 -0700 | [diff] [blame] | 454 | default 0x1000 if ARCH_X86 |
| 455 | default 0x0 |
Julius Werner | c3e7c4e | 2014-09-19 13:18:16 -0700 | [diff] [blame] | 456 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 457 | config MAX_CPUS |
| 458 | int |
| 459 | default 1 |
| 460 | |
| 461 | config MMCONF_SUPPORT_DEFAULT |
| 462 | bool |
| 463 | default n |
| 464 | |
| 465 | config MMCONF_SUPPORT |
| 466 | bool |
| 467 | default n |
| 468 | |
Kyösti Mälkki | 5687fc9 | 2013-11-28 18:11:49 +0200 | [diff] [blame] | 469 | config BOOTMODE_STRAPS |
| 470 | bool |
| 471 | default n |
| 472 | |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 473 | source "src/console/Kconfig" |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 474 | |
| 475 | config HAVE_ACPI_RESUME |
| 476 | bool |
| 477 | default n |
| 478 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 479 | config HAVE_HARD_RESET |
| 480 | bool |
Uwe Hermann | 748475b | 2009-10-09 11:47:21 +0000 | [diff] [blame] | 481 | default n |
Patrick Georgi | 37bdb87 | 2010-02-27 08:39:04 +0000 | [diff] [blame] | 482 | help |
| 483 | This variable specifies whether a given board has a hard_reset |
| 484 | function, no matter if it's provided by board code or chipset code. |
| 485 | |
Timothy Pearson | 44d5342 | 2015-05-18 16:04:10 -0500 | [diff] [blame] | 486 | config HAVE_ROMSTAGE_CONSOLE_SPINLOCK |
| 487 | bool |
| 488 | default n |
| 489 | |
Timothy Pearson | 7b22d84 | 2015-08-28 19:52:05 -0500 | [diff] [blame] | 490 | config HAVE_ROMSTAGE_NVRAM_CBFS_SPINLOCK |
| 491 | bool |
| 492 | default n |
| 493 | help |
| 494 | This should be enabled on certain plaforms, such as the AMD |
| 495 | SR565x, that cannot handle concurrent CBFS accesses from |
| 496 | multiple APs during early startup. |
| 497 | |
Timothy Pearson | c764c74 | 2015-08-28 20:48:17 -0500 | [diff] [blame] | 498 | config HAVE_ROMSTAGE_MICROCODE_CBFS_SPINLOCK |
| 499 | bool |
| 500 | default n |
| 501 | |
Aaron Durbin | a421791 | 2013-04-29 22:31:51 -0500 | [diff] [blame] | 502 | config HAVE_MONOTONIC_TIMER |
| 503 | def_bool n |
| 504 | help |
| 505 | The board/chipset provides a monotonic timer. |
| 506 | |
Aaron Durbin | e5e3630 | 2014-09-25 10:05:15 -0500 | [diff] [blame] | 507 | config GENERIC_UDELAY |
| 508 | def_bool n |
| 509 | depends on HAVE_MONOTONIC_TIMER |
| 510 | help |
| 511 | The board/chipset uses a generic udelay function utilizing the |
| 512 | monotonic timer. |
| 513 | |
Aaron Durbin | 340ca91 | 2013-04-30 09:58:12 -0500 | [diff] [blame] | 514 | config TIMER_QUEUE |
| 515 | def_bool n |
| 516 | depends on HAVE_MONOTONIC_TIMER |
| 517 | help |
Kyösti Mälkki | ecd8424 | 2013-09-13 07:57:49 +0300 | [diff] [blame] | 518 | Provide a timer queue for performing time-based callbacks. |
Aaron Durbin | 340ca91 | 2013-04-30 09:58:12 -0500 | [diff] [blame] | 519 | |
Aaron Durbin | 4409a5e | 2013-05-06 12:20:52 -0500 | [diff] [blame] | 520 | config COOP_MULTITASKING |
| 521 | def_bool n |
Aaron Durbin | 38c326d | 2013-05-06 12:22:23 -0500 | [diff] [blame] | 522 | depends on TIMER_QUEUE && ARCH_X86 |
Aaron Durbin | 4409a5e | 2013-05-06 12:20:52 -0500 | [diff] [blame] | 523 | help |
| 524 | Cooperative multitasking allows callbacks to be multiplexed on the |
| 525 | main thread of ramstage. With this enabled it allows for multiple |
| 526 | execution paths to take place when they have udelay() calls within |
| 527 | their code. |
| 528 | |
| 529 | config NUM_THREADS |
| 530 | int |
| 531 | default 4 |
| 532 | depends on COOP_MULTITASKING |
| 533 | help |
| 534 | How many execution threads to cooperatively multitask with. |
| 535 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 536 | config HAVE_OPTION_TABLE |
| 537 | bool |
Edwin Beasant | eb50c7d | 2010-07-06 21:05:04 +0000 | [diff] [blame] | 538 | default n |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 539 | help |
| 540 | This variable specifies whether a given board has a cmos.layout |
| 541 | file containing NVRAM/CMOS bit definitions. |
Edwin Beasant | eb50c7d | 2010-07-06 21:05:04 +0000 | [diff] [blame] | 542 | It defaults to 'n' but can be selected in mainboard/*/Kconfig. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 543 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 544 | config PIRQ_ROUTE |
| 545 | bool |
| 546 | default n |
| 547 | |
| 548 | config HAVE_SMI_HANDLER |
| 549 | bool |
| 550 | default n |
| 551 | |
| 552 | config PCI_IO_CFG_EXT |
| 553 | bool |
| 554 | default n |
| 555 | |
| 556 | config IOAPIC |
| 557 | bool |
| 558 | default n |
| 559 | |
Kyösti Mälkki | 107f72e | 2014-01-06 11:06:26 +0200 | [diff] [blame] | 560 | config CACHE_ROM_SIZE_OVERRIDE |
Stefan Reinauer | 5b63579 | 2012-08-16 14:05:42 -0700 | [diff] [blame] | 561 | hex |
Kyösti Mälkki | 107f72e | 2014-01-06 11:06:26 +0200 | [diff] [blame] | 562 | default 0 |
Stefan Reinauer | 5b63579 | 2012-08-16 14:05:42 -0700 | [diff] [blame] | 563 | |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 564 | # TODO: Can probably be removed once all chipsets have kconfig options for it. |
Uwe Hermann | 70b0cf2 | 2009-10-04 17:15:39 +0000 | [diff] [blame] | 565 | config VIDEO_MB |
| 566 | int |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 567 | default 0 |
Uwe Hermann | 70b0cf2 | 2009-10-04 17:15:39 +0000 | [diff] [blame] | 568 | |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 569 | config USE_WATCHDOG_ON_BOOT |
| 570 | bool |
| 571 | default n |
| 572 | |
| 573 | config VGA |
| 574 | bool |
| 575 | default n |
| 576 | help |
| 577 | Build board-specific VGA code. |
| 578 | |
| 579 | config GFXUMA |
| 580 | bool |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 581 | default n |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 582 | help |
| 583 | Enable Unified Memory Architecture for graphics. |
| 584 | |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 585 | config HAVE_ACPI_TABLES |
| 586 | bool |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 587 | help |
| 588 | This variable specifies whether a given board has ACPI table support. |
| 589 | It is usually set in mainboard/*/Kconfig. |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 590 | |
| 591 | config HAVE_MP_TABLE |
| 592 | bool |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 593 | help |
| 594 | This variable specifies whether a given board has MP table support. |
| 595 | It is usually set in mainboard/*/Kconfig. |
| 596 | Whether or not the MP table is actually generated by coreboot |
| 597 | is configurable by the user via GENERATE_MP_TABLE. |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 598 | |
| 599 | config HAVE_PIRQ_TABLE |
| 600 | bool |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 601 | help |
| 602 | This variable specifies whether a given board has PIRQ table support. |
| 603 | It is usually set in mainboard/*/Kconfig. |
| 604 | Whether or not the PIRQ table is actually generated by coreboot |
| 605 | is configurable by the user via GENERATE_PIRQ_TABLE. |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 606 | |
Alexandru Gagniuc | 70c660f | 2012-08-23 02:32:58 -0500 | [diff] [blame] | 607 | config MAX_PIRQ_LINKS |
| 608 | int |
| 609 | default 4 |
| 610 | help |
| 611 | This variable specifies the number of PIRQ interrupt links which are |
| 612 | routable. On most chipsets, this is 4, INTA through INTD. Some |
| 613 | chipsets offer more than four links, commonly up to INTH. They may |
| 614 | also have a separate link for ATA or IOAPIC interrupts. When the PIRQ |
| 615 | table specifies links greater than 4, pirq_route_irqs will not |
| 616 | function properly, unless this variable is correctly set. |
| 617 | |
Vladimir Serbinenko | c21e073 | 2014-10-16 12:48:19 +0200 | [diff] [blame] | 618 | config COMMON_FADT |
| 619 | bool |
| 620 | default n |
| 621 | |
Aaron Durbin | 9420a52 | 2015-11-17 16:31:00 -0600 | [diff] [blame] | 622 | config ACPI_NHLT |
| 623 | bool |
| 624 | default n |
| 625 | help |
| 626 | Build support for NHLT (non HD Audio) ACPI table generation. |
| 627 | |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 628 | #These Options are here to avoid "undefined" warnings. |
| 629 | #The actual selection and help texts are in the following menu. |
| 630 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 631 | menu "System tables" |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 632 | |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 633 | config GENERATE_MP_TABLE |
Stefan Reinauer | 56cd70b | 2012-11-13 17:33:08 -0800 | [diff] [blame] | 634 | prompt "Generate an MP table" if HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC |
| 635 | bool |
| 636 | default HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 637 | help |
| 638 | Generate an MP table (conforming to the Intel MultiProcessor |
| 639 | specification 1.4) for this board. |
| 640 | |
| 641 | If unsure, say Y. |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 642 | |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 643 | config GENERATE_PIRQ_TABLE |
Stefan Reinauer | 56cd70b | 2012-11-13 17:33:08 -0800 | [diff] [blame] | 644 | prompt "Generate a PIRQ table" if HAVE_PIRQ_TABLE |
| 645 | bool |
| 646 | default HAVE_PIRQ_TABLE |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 647 | help |
| 648 | Generate a PIRQ table for this board. |
| 649 | |
| 650 | If unsure, say Y. |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 651 | |
Sven Schnelle | 164bcfd | 2011-08-14 20:56:34 +0200 | [diff] [blame] | 652 | config GENERATE_SMBIOS_TABLES |
| 653 | depends on ARCH_X86 |
| 654 | bool "Generate SMBIOS tables" |
| 655 | default y |
| 656 | help |
| 657 | Generate SMBIOS tables for this board. |
| 658 | |
| 659 | If unsure, say Y. |
| 660 | |
Vladimir Serbinenko | 0afdec4 | 2015-05-30 23:08:26 +0200 | [diff] [blame] | 661 | config SMBIOS_PROVIDED_BY_MOBO |
| 662 | bool |
| 663 | default n |
| 664 | |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 665 | config MAINBOARD_SERIAL_NUMBER |
| 666 | string "SMBIOS Serial Number" |
| 667 | depends on GENERATE_SMBIOS_TABLES |
Vladimir Serbinenko | 0afdec4 | 2015-05-30 23:08:26 +0200 | [diff] [blame] | 668 | depends on !SMBIOS_PROVIDED_BY_MOBO |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 669 | default "123456789" |
Martin Roth | 595e777 | 2015-04-26 18:53:26 -0600 | [diff] [blame] | 670 | help |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 671 | The Serial Number to store in SMBIOS structures. |
| 672 | |
| 673 | config MAINBOARD_VERSION |
| 674 | string "SMBIOS Version Number" |
| 675 | depends on GENERATE_SMBIOS_TABLES |
Vladimir Serbinenko | 0afdec4 | 2015-05-30 23:08:26 +0200 | [diff] [blame] | 676 | depends on !SMBIOS_PROVIDED_BY_MOBO |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 677 | default "1.0" |
| 678 | help |
| 679 | The Version Number to store in SMBIOS structures. |
| 680 | |
| 681 | config MAINBOARD_SMBIOS_MANUFACTURER |
| 682 | string "SMBIOS Manufacturer" |
| 683 | depends on GENERATE_SMBIOS_TABLES |
Vladimir Serbinenko | 0afdec4 | 2015-05-30 23:08:26 +0200 | [diff] [blame] | 684 | depends on !SMBIOS_PROVIDED_BY_MOBO |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 685 | default MAINBOARD_VENDOR |
| 686 | help |
| 687 | Override the default Manufacturer stored in SMBIOS structures. |
| 688 | |
| 689 | config MAINBOARD_SMBIOS_PRODUCT_NAME |
| 690 | string "SMBIOS Product name" |
| 691 | depends on GENERATE_SMBIOS_TABLES |
Vladimir Serbinenko | 0afdec4 | 2015-05-30 23:08:26 +0200 | [diff] [blame] | 692 | depends on !SMBIOS_PROVIDED_BY_MOBO |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 693 | default MAINBOARD_PART_NUMBER |
| 694 | help |
| 695 | Override the default Product name stored in SMBIOS structures. |
| 696 | |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 697 | endmenu |
| 698 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 699 | menu "Payload" |
| 700 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 701 | choice |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 702 | prompt "Add a payload" |
Stefan Reinauer | f1939bb | 2010-12-30 17:39:50 +0000 | [diff] [blame] | 703 | default PAYLOAD_NONE if !ARCH_X86 |
| 704 | default PAYLOAD_SEABIOS if ARCH_X86 |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 705 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 706 | config PAYLOAD_NONE |
| 707 | bool "None" |
| 708 | help |
| 709 | Select this option if you want to create an "empty" coreboot |
| 710 | ROM image for a certain mainboard, i.e. a coreboot ROM image |
| 711 | which does not yet contain a payload. |
| 712 | |
| 713 | For such an image to be useful, you have to use 'cbfstool' |
| 714 | to add a payload to the ROM image later. |
| 715 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 716 | config PAYLOAD_ELF |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 717 | bool "An ELF executable payload" |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 718 | help |
| 719 | Select this option if you have a payload image (an ELF file) |
| 720 | which coreboot should run as soon as the basic hardware |
| 721 | initialization is completed. |
| 722 | |
| 723 | You will be able to specify the location and file name of the |
| 724 | payload image later. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 725 | |
Stefan Reinauer | 1a8b7bf | 2015-06-30 15:58:56 -0700 | [diff] [blame] | 726 | source "payloads/external/*/Kconfig.name" |
Stefan Reinauer | cc5b344 | 2013-01-15 17:02:58 -0800 | [diff] [blame] | 727 | |
Stefan Reinauer | f1939bb | 2010-12-30 17:39:50 +0000 | [diff] [blame] | 728 | endchoice |
| 729 | |
Stefan Reinauer | 1a8b7bf | 2015-06-30 15:58:56 -0700 | [diff] [blame] | 730 | source "payloads/external/*/Kconfig" |
Stefan Reinauer | e50952f | 2011-04-15 03:34:05 +0000 | [diff] [blame] | 731 | |
Stefan Reinauer | bccbbe6 | 2010-12-19 21:20:14 +0000 | [diff] [blame] | 732 | config PAYLOAD_FILE |
Cristi Magherusan | b5034d4 | 2009-08-17 14:47:32 +0000 | [diff] [blame] | 733 | string "Payload path and filename" |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 734 | depends on PAYLOAD_ELF |
| 735 | default "payload.elf" |
| 736 | help |
Uwe Hermann | 5ec2c2b | 2009-08-25 00:53:22 +0000 | [diff] [blame] | 737 | The path and filename of the ELF executable file to use as payload. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 738 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 739 | # TODO: Defined if no payload? Breaks build? |
| 740 | config COMPRESSED_PAYLOAD_LZMA |
| 741 | bool "Use LZMA compression for payloads" |
| 742 | default y |
Stefan Reinauer | 1a8b7bf | 2015-06-30 15:58:56 -0700 | [diff] [blame] | 743 | depends on !PAYLOAD_NONE && !PAYLOAD_LINUX |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 744 | help |
| 745 | In order to reduce the size payloads take up in the ROM chip |
| 746 | coreboot can compress them using the LZMA algorithm. |
| 747 | |
Peter Stuge | a758ca2 | 2009-09-17 16:21:31 +0000 | [diff] [blame] | 748 | endmenu |
| 749 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 750 | menu "Debugging" |
| 751 | |
| 752 | # TODO: Better help text and detailed instructions. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 753 | config GDB_STUB |
Uwe Hermann | 5ec2c2b | 2009-08-25 00:53:22 +0000 | [diff] [blame] | 754 | bool "GDB debugging support" |
Rudolf Marek | 6588802 | 2012-03-25 20:51:16 +0200 | [diff] [blame] | 755 | default n |
Denis 'GNUtoo' Carikli | 3747ba1 | 2015-12-10 22:04:56 +0100 | [diff] [blame] | 756 | depends on CONSOLE_SERIAL |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 757 | help |
Uwe Hermann | 5ec2c2b | 2009-08-25 00:53:22 +0000 | [diff] [blame] | 758 | If enabled, you will be able to set breakpoints for gdb debugging. |
Stefan Reinauer | 8677a23 | 2010-12-11 20:33:41 +0000 | [diff] [blame] | 759 | See src/arch/x86/lib/c_start.S for details. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 760 | |
Denis 'GNUtoo' Carikli | e4cece0 | 2012-06-22 15:56:37 +0200 | [diff] [blame] | 761 | config GDB_WAIT |
| 762 | bool "Wait for a GDB connection" |
| 763 | default n |
| 764 | depends on GDB_STUB |
| 765 | help |
| 766 | If enabled, coreboot will wait for a GDB connection. |
| 767 | |
Julius Werner | d82e0cf | 2015-02-17 17:27:23 -0800 | [diff] [blame] | 768 | config FATAL_ASSERTS |
| 769 | bool "Halt when hitting a BUG() or assertion error" |
| 770 | default n |
| 771 | help |
| 772 | If enabled, coreboot will call hlt() on a BUG() or failed ASSERT(). |
| 773 | |
Stefan Reinauer | fe42218 | 2012-05-02 16:33:18 -0700 | [diff] [blame] | 774 | config DEBUG_CBFS |
| 775 | bool "Output verbose CBFS debug messages" |
| 776 | default n |
Stefan Reinauer | fe42218 | 2012-05-02 16:33:18 -0700 | [diff] [blame] | 777 | help |
| 778 | This option enables additional CBFS related debug messages. |
| 779 | |
Jens Rottmann | 0d11f2d | 2010-08-26 12:46:02 +0000 | [diff] [blame] | 780 | config HAVE_DEBUG_RAM_SETUP |
| 781 | def_bool n |
| 782 | |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 783 | config DEBUG_RAM_SETUP |
| 784 | bool "Output verbose RAM init debug messages" |
| 785 | default n |
Jens Rottmann | 0d11f2d | 2010-08-26 12:46:02 +0000 | [diff] [blame] | 786 | depends on HAVE_DEBUG_RAM_SETUP |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 787 | help |
| 788 | This option enables additional RAM init related debug messages. |
| 789 | It is recommended to enable this when debugging issues on your |
| 790 | board which might be RAM init related. |
| 791 | |
| 792 | Note: This option will increase the size of the coreboot image. |
| 793 | |
| 794 | If unsure, say N. |
| 795 | |
Patrick Georgi | e82618d | 2010-10-01 14:50:12 +0000 | [diff] [blame] | 796 | config HAVE_DEBUG_CAR |
| 797 | def_bool n |
| 798 | |
Peter Stuge | 5015f79 | 2010-11-10 02:00:32 +0000 | [diff] [blame] | 799 | config DEBUG_CAR |
| 800 | def_bool n |
| 801 | depends on HAVE_DEBUG_CAR |
| 802 | |
| 803 | if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 804 | # Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional |
| 805 | # printk(BIOS_DEBUG, ...) calls. |
Patrick Georgi | e82618d | 2010-10-01 14:50:12 +0000 | [diff] [blame] | 806 | config DEBUG_CAR |
| 807 | bool "Output verbose Cache-as-RAM debug messages" |
| 808 | default n |
Peter Stuge | 5015f79 | 2010-11-10 02:00:32 +0000 | [diff] [blame] | 809 | depends on HAVE_DEBUG_CAR |
Patrick Georgi | e82618d | 2010-10-01 14:50:12 +0000 | [diff] [blame] | 810 | help |
| 811 | This option enables additional CAR related debug messages. |
Peter Stuge | 5015f79 | 2010-11-10 02:00:32 +0000 | [diff] [blame] | 812 | endif |
Patrick Georgi | e82618d | 2010-10-01 14:50:12 +0000 | [diff] [blame] | 813 | |
Myles Watson | 80e914ff | 2010-06-01 19:25:31 +0000 | [diff] [blame] | 814 | config DEBUG_PIRQ |
| 815 | bool "Check PIRQ table consistency" |
| 816 | default n |
| 817 | depends on GENERATE_PIRQ_TABLE |
| 818 | help |
| 819 | If unsure, say N. |
| 820 | |
Jens Rottmann | 0d11f2d | 2010-08-26 12:46:02 +0000 | [diff] [blame] | 821 | config HAVE_DEBUG_SMBUS |
| 822 | def_bool n |
| 823 | |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 824 | config DEBUG_SMBUS |
| 825 | bool "Output verbose SMBus debug messages" |
| 826 | default n |
Jens Rottmann | 0d11f2d | 2010-08-26 12:46:02 +0000 | [diff] [blame] | 827 | depends on HAVE_DEBUG_SMBUS |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 828 | help |
| 829 | This option enables additional SMBus (and SPD) debug messages. |
| 830 | |
| 831 | Note: This option will increase the size of the coreboot image. |
| 832 | |
| 833 | If unsure, say N. |
| 834 | |
| 835 | config DEBUG_SMI |
| 836 | bool "Output verbose SMI debug messages" |
| 837 | default n |
| 838 | depends on HAVE_SMI_HANDLER |
Martin Roth | 3a54318 | 2015-09-28 15:27:24 -0600 | [diff] [blame] | 839 | select SPI_FLASH_SMM if SPI_CONSOLE |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 840 | help |
| 841 | This option enables additional SMI related debug messages. |
| 842 | |
| 843 | Note: This option will increase the size of the coreboot image. |
| 844 | |
| 845 | If unsure, say N. |
| 846 | |
Stefan Reinauer | bc0f7a6 | 2010-08-01 15:41:14 +0000 | [diff] [blame] | 847 | config DEBUG_SMM_RELOCATION |
| 848 | bool "Debug SMM relocation code" |
| 849 | default n |
| 850 | depends on HAVE_SMI_HANDLER |
| 851 | help |
| 852 | This option enables additional SMM handler relocation related |
| 853 | debug messages. |
| 854 | |
| 855 | Note: This option will increase the size of the coreboot image. |
| 856 | |
| 857 | If unsure, say N. |
| 858 | |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 859 | # Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional |
| 860 | # printk(BIOS_DEBUG, ...) calls. |
| 861 | config DEBUG_MALLOC |
Stefan Reinauer | 95a6396 | 2012-11-13 17:00:01 -0800 | [diff] [blame] | 862 | prompt "Output verbose malloc debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 |
| 863 | bool |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 864 | default n |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 865 | help |
| 866 | This option enables additional malloc related debug messages. |
| 867 | |
| 868 | Note: This option will increase the size of the coreboot image. |
| 869 | |
| 870 | If unsure, say N. |
Cristian Măgherușan-Stanciu | 9f52ea4 | 2011-07-02 00:44:39 +0300 | [diff] [blame] | 871 | |
| 872 | # Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional |
| 873 | # printk(BIOS_DEBUG, ...) calls. |
Cristian Măgherușan-Stanciu | 9f52ea4 | 2011-07-02 00:44:39 +0300 | [diff] [blame] | 874 | config DEBUG_ACPI |
Stefan Reinauer | 95a6396 | 2012-11-13 17:00:01 -0800 | [diff] [blame] | 875 | prompt "Output verbose ACPI debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 |
| 876 | bool |
Cristian Măgherușan-Stanciu | 9f52ea4 | 2011-07-02 00:44:39 +0300 | [diff] [blame] | 877 | default n |
| 878 | help |
| 879 | This option enables additional ACPI related debug messages. |
| 880 | |
| 881 | Note: This option will slightly increase the size of the coreboot image. |
| 882 | |
| 883 | If unsure, say N. |
Cristian Măgherușan-Stanciu | 9f52ea4 | 2011-07-02 00:44:39 +0300 | [diff] [blame] | 884 | |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 885 | # Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional |
| 886 | # printk(BIOS_DEBUG, ...) calls. |
Myles Watson | 6c9bc01 | 2010-09-07 22:30:15 +0000 | [diff] [blame] | 887 | config REALMODE_DEBUG |
Stefan Reinauer | 95a6396 | 2012-11-13 17:00:01 -0800 | [diff] [blame] | 888 | prompt "Enable debug messages for option ROM execution" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 |
| 889 | bool |
Myles Watson | 6c9bc01 | 2010-09-07 22:30:15 +0000 | [diff] [blame] | 890 | default n |
Peter Stuge | 5015f79 | 2010-11-10 02:00:32 +0000 | [diff] [blame] | 891 | depends on PCI_OPTION_ROM_RUN_REALMODE |
Myles Watson | 6c9bc01 | 2010-09-07 22:30:15 +0000 | [diff] [blame] | 892 | help |
| 893 | This option enables additional x86emu related debug messages. |
| 894 | |
| 895 | Note: This option will increase the time to emulate a ROM. |
| 896 | |
| 897 | If unsure, say N. |
| 898 | |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 899 | config X86EMU_DEBUG |
| 900 | bool "Output verbose x86emu debug messages" |
| 901 | default n |
| 902 | depends on PCI_OPTION_ROM_RUN_YABEL |
| 903 | help |
| 904 | This option enables additional x86emu related debug messages. |
| 905 | |
| 906 | Note: This option will increase the size of the coreboot image. |
| 907 | |
| 908 | If unsure, say N. |
| 909 | |
| 910 | config X86EMU_DEBUG_JMP |
| 911 | bool "Trace JMP/RETF" |
| 912 | default n |
| 913 | depends on X86EMU_DEBUG |
| 914 | help |
| 915 | Print information about JMP and RETF opcodes from x86emu. |
| 916 | |
| 917 | Note: This option will increase the size of the coreboot image. |
| 918 | |
| 919 | If unsure, say N. |
| 920 | |
| 921 | config X86EMU_DEBUG_TRACE |
| 922 | bool "Trace all opcodes" |
| 923 | default n |
| 924 | depends on X86EMU_DEBUG |
| 925 | help |
| 926 | Print _all_ opcodes that are executed by x86emu. |
Stefan Reinauer | 14e2277 | 2010-04-27 06:56:47 +0000 | [diff] [blame] | 927 | |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 928 | WARNING: This will produce a LOT of output and take a long time. |
| 929 | |
| 930 | Note: This option will increase the size of the coreboot image. |
| 931 | |
| 932 | If unsure, say N. |
| 933 | |
| 934 | config X86EMU_DEBUG_PNP |
| 935 | bool "Log Plug&Play accesses" |
| 936 | default n |
| 937 | depends on X86EMU_DEBUG |
| 938 | help |
| 939 | Print Plug And Play accesses made by option ROMs. |
| 940 | |
| 941 | Note: This option will increase the size of the coreboot image. |
| 942 | |
| 943 | If unsure, say N. |
| 944 | |
| 945 | config X86EMU_DEBUG_DISK |
| 946 | bool "Log Disk I/O" |
| 947 | default n |
| 948 | depends on X86EMU_DEBUG |
| 949 | help |
| 950 | Print Disk I/O related messages. |
| 951 | |
| 952 | Note: This option will increase the size of the coreboot image. |
| 953 | |
| 954 | If unsure, say N. |
| 955 | |
| 956 | config X86EMU_DEBUG_PMM |
| 957 | bool "Log PMM" |
| 958 | default n |
| 959 | depends on X86EMU_DEBUG |
| 960 | help |
| 961 | Print messages related to POST Memory Manager (PMM). |
| 962 | |
| 963 | Note: This option will increase the size of the coreboot image. |
| 964 | |
| 965 | If unsure, say N. |
| 966 | |
| 967 | |
| 968 | config X86EMU_DEBUG_VBE |
| 969 | bool "Debug VESA BIOS Extensions" |
| 970 | default n |
| 971 | depends on X86EMU_DEBUG |
| 972 | help |
| 973 | Print messages related to VESA BIOS Extension (VBE) functions. |
| 974 | |
| 975 | Note: This option will increase the size of the coreboot image. |
| 976 | |
| 977 | If unsure, say N. |
| 978 | |
| 979 | config X86EMU_DEBUG_INT10 |
| 980 | bool "Redirect INT10 output to console" |
| 981 | default n |
| 982 | depends on X86EMU_DEBUG |
| 983 | help |
| 984 | Let INT10 (i.e. character output) calls print messages to debug output. |
| 985 | |
| 986 | Note: This option will increase the size of the coreboot image. |
| 987 | |
| 988 | If unsure, say N. |
| 989 | |
| 990 | config X86EMU_DEBUG_INTERRUPTS |
| 991 | bool "Log intXX calls" |
| 992 | default n |
| 993 | depends on X86EMU_DEBUG |
| 994 | help |
| 995 | Print messages related to interrupt handling. |
| 996 | |
| 997 | Note: This option will increase the size of the coreboot image. |
| 998 | |
| 999 | If unsure, say N. |
| 1000 | |
| 1001 | config X86EMU_DEBUG_CHECK_VMEM_ACCESS |
| 1002 | bool "Log special memory accesses" |
| 1003 | default n |
| 1004 | depends on X86EMU_DEBUG |
| 1005 | help |
| 1006 | Print messages related to accesses to certain areas of the virtual |
| 1007 | memory (e.g. BDA (BIOS Data Area) or interrupt vectors) |
| 1008 | |
| 1009 | Note: This option will increase the size of the coreboot image. |
| 1010 | |
| 1011 | If unsure, say N. |
| 1012 | |
| 1013 | config X86EMU_DEBUG_MEM |
| 1014 | bool "Log all memory accesses" |
| 1015 | default n |
| 1016 | depends on X86EMU_DEBUG |
| 1017 | help |
| 1018 | Print memory accesses made by option ROM. |
| 1019 | Note: This also includes accesses to fetch instructions. |
| 1020 | |
| 1021 | Note: This option will increase the size of the coreboot image. |
| 1022 | |
| 1023 | If unsure, say N. |
| 1024 | |
| 1025 | config X86EMU_DEBUG_IO |
| 1026 | bool "Log IO accesses" |
| 1027 | default n |
| 1028 | depends on X86EMU_DEBUG |
| 1029 | help |
| 1030 | Print I/O accesses made by option ROM. |
| 1031 | |
| 1032 | Note: This option will increase the size of the coreboot image. |
| 1033 | |
| 1034 | If unsure, say N. |
| 1035 | |
Denis 'GNUtoo' Carikli | 4cdc5d6 | 2013-05-15 00:19:49 +0200 | [diff] [blame] | 1036 | config X86EMU_DEBUG_TIMINGS |
| 1037 | bool "Output timing information" |
| 1038 | default n |
| 1039 | depends on X86EMU_DEBUG && UDELAY_LAPIC && HAVE_MONOTONIC_TIMER |
| 1040 | help |
| 1041 | Print timing information needed by i915tool. |
| 1042 | |
| 1043 | If unsure, say N. |
| 1044 | |
Stefan Reinauer | dfb098d | 2011-11-17 12:50:54 -0800 | [diff] [blame] | 1045 | config DEBUG_TPM |
| 1046 | bool "Output verbose TPM debug messages" |
| 1047 | default n |
| 1048 | depends on TPM |
| 1049 | help |
| 1050 | This option enables additional TPM related debug messages. |
| 1051 | |
Stefan Reinauer | 1c56d9b | 2012-05-10 11:27:32 -0700 | [diff] [blame] | 1052 | config DEBUG_SPI_FLASH |
| 1053 | bool "Output verbose SPI flash debug messages" |
| 1054 | default n |
| 1055 | depends on SPI_FLASH |
| 1056 | help |
| 1057 | This option enables additional SPI flash related debug messages. |
| 1058 | |
Kyösti Mälkki | 3be80cc | 2013-06-06 10:46:37 +0300 | [diff] [blame] | 1059 | config DEBUG_USBDEBUG |
| 1060 | bool "Output verbose USB 2.0 EHCI debug dongle messages" |
| 1061 | default n |
| 1062 | depends on USBDEBUG |
| 1063 | help |
| 1064 | This option enables additional USB 2.0 debug dongle related messages. |
| 1065 | |
| 1066 | Select this to debug the connection of usbdebug dongle. Note that |
| 1067 | you need some other working console to receive the messages. |
| 1068 | |
Stefan Reinauer | 8e07382 | 2012-04-04 00:07:22 +0200 | [diff] [blame] | 1069 | if SOUTHBRIDGE_INTEL_BD82X6X && DEFAULT_CONSOLE_LOGLEVEL_8 |
| 1070 | # Only visible with the right southbridge and loglevel. |
| 1071 | config DEBUG_INTEL_ME |
| 1072 | bool "Verbose logging for Intel Management Engine" |
| 1073 | default n |
| 1074 | help |
| 1075 | Enable verbose logging for Intel Management Engine driver that |
| 1076 | is present on Intel 6-series chipsets. |
| 1077 | endif |
| 1078 | |
Rudolf Marek | 7f0e930 | 2011-09-02 23:23:41 +0200 | [diff] [blame] | 1079 | config TRACE |
| 1080 | bool "Trace function calls" |
| 1081 | default n |
| 1082 | help |
| 1083 | If enabled, every function will print information to console once |
| 1084 | the function is entered. The syntax is ~0xaaaabbbb(0xccccdddd) |
| 1085 | the 0xaaaabbbb is the actual function and 0xccccdddd is EIP |
Ben Gardner | 8420ad4 | 2015-11-18 10:46:53 -0600 | [diff] [blame] | 1086 | of calling function. Please note some printk related functions |
Rudolf Marek | 7f0e930 | 2011-09-02 23:23:41 +0200 | [diff] [blame] | 1087 | are omitted from trace to have good looking console dumps. |
Stefan Reinauer | d37ab45 | 2012-12-18 16:23:28 -0800 | [diff] [blame] | 1088 | |
| 1089 | config DEBUG_COVERAGE |
| 1090 | bool "Debug code coverage" |
| 1091 | default n |
| 1092 | depends on COVERAGE |
| 1093 | help |
| 1094 | If enabled, the code coverage hooks in coreboot will output some |
| 1095 | information about the coverage data that is dumped. |
| 1096 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 1097 | endmenu |
| 1098 | |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 1099 | # These probably belong somewhere else, but they are needed somewhere. |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 1100 | config ENABLE_APIC_EXT_ID |
| 1101 | bool |
| 1102 | default n |
Myles Watson | 2e67273 | 2009-11-12 16:38:03 +0000 | [diff] [blame] | 1103 | |
| 1104 | config WARNINGS_ARE_ERRORS |
| 1105 | bool |
Edward O'Callaghan | 63f6dc7 | 2014-11-18 03:17:54 +1100 | [diff] [blame] | 1106 | default y |
Patrick Georgi | 436f99b | 2009-11-27 16:55:13 +0000 | [diff] [blame] | 1107 | |
Martin Roth | 77c67b3 | 2015-06-25 09:36:27 -0600 | [diff] [blame] | 1108 | # TODO: Remove this when all platforms are fixed. |
| 1109 | config IASL_WARNINGS_ARE_ERRORS |
| 1110 | def_bool y |
| 1111 | help |
| 1112 | Select to Fail the build if a IASL generates a warning. |
| 1113 | This will be defaulted to disabled for the platforms that |
| 1114 | currently fail. This allows the REST of the platforms to |
| 1115 | have this check enabled while we're working to get those |
| 1116 | boards fixed. |
| 1117 | |
| 1118 | DO NOT ADD TO ANY ADDITIONAL PLATFORMS INSTEAD OF FIXING |
| 1119 | THE ASL. |
| 1120 | |
Peter Stuge | 51eafde | 2010-10-13 06:23:02 +0000 | [diff] [blame] | 1121 | # The four POWER_BUTTON_DEFAULT_ENABLE, POWER_BUTTON_DEFAULT_DISABLE, |
| 1122 | # POWER_BUTTON_FORCE_ENABLE and POWER_BUTTON_FORCE_DISABLE options are |
| 1123 | # mutually exclusive. One of these options must be selected in the |
| 1124 | # mainboard Kconfig if the chipset supports enabling and disabling of |
| 1125 | # the power button. Chipset code uses the ENABLE_POWER_BUTTON option set |
| 1126 | # in mainboard/Kconfig to know if the button should be enabled or not. |
| 1127 | |
| 1128 | config POWER_BUTTON_DEFAULT_ENABLE |
| 1129 | def_bool n |
| 1130 | help |
| 1131 | Select when the board has a power button which can optionally be |
| 1132 | disabled by the user. |
| 1133 | |
| 1134 | config POWER_BUTTON_DEFAULT_DISABLE |
| 1135 | def_bool n |
| 1136 | help |
| 1137 | Select when the board has a power button which can optionally be |
| 1138 | enabled by the user, e.g. when the board ships with a jumper over |
| 1139 | the power switch contacts. |
| 1140 | |
| 1141 | config POWER_BUTTON_FORCE_ENABLE |
| 1142 | def_bool n |
| 1143 | help |
| 1144 | Select when the board requires that the power button is always |
| 1145 | enabled. |
| 1146 | |
| 1147 | config POWER_BUTTON_FORCE_DISABLE |
| 1148 | def_bool n |
| 1149 | help |
| 1150 | Select when the board requires that the power button is always |
| 1151 | disabled, e.g. when it has been hardwired to ground. |
| 1152 | |
| 1153 | config POWER_BUTTON_IS_OPTIONAL |
| 1154 | bool |
| 1155 | default y if POWER_BUTTON_DEFAULT_ENABLE || POWER_BUTTON_DEFAULT_DISABLE |
| 1156 | default n if !(POWER_BUTTON_DEFAULT_ENABLE || POWER_BUTTON_DEFAULT_DISABLE) |
| 1157 | help |
| 1158 | Internal option that controls ENABLE_POWER_BUTTON visibility. |
Duncan Laurie | 7274800 | 2013-10-31 08:26:23 -0700 | [diff] [blame] | 1159 | |
| 1160 | config REG_SCRIPT |
| 1161 | bool |
Duncan Laurie | 7274800 | 2013-10-31 08:26:23 -0700 | [diff] [blame] | 1162 | default n |
| 1163 | help |
| 1164 | Internal option that controls whether we compile in register scripts. |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 1165 | |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 1166 | config MAX_REBOOT_CNT |
| 1167 | int |
| 1168 | default 3 |
Timothy Pearson | 17ada2e | 2015-03-18 01:31:34 -0500 | [diff] [blame] | 1169 | help |
| 1170 | Internal option that sets the maximum number of bootblock executions allowed |
| 1171 | with the normal image enabled before assuming the normal image is defective |
Vadim Bendebury | 9c9c336 | 2014-07-23 09:40:02 -0700 | [diff] [blame] | 1172 | and switching to the fallback image. |