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 | ## |
| 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 Georgi | b890a12 | 2015-03-26 15:17:45 +0100 | [diff] [blame] | 18 | ## Foundation, Inc. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 19 | ## |
| 20 | |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 21 | mainmenu "coreboot configuration" |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 22 | |
Uwe Hermann | c04be93 | 2009-10-05 13:55:28 +0000 | [diff] [blame] | 23 | menu "General setup" |
| 24 | |
| 25 | config LOCALVERSION |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 26 | string "Local version string" |
Uwe Hermann | c04be93 | 2009-10-05 13:55:28 +0000 | [diff] [blame] | 27 | help |
| 28 | Append an extra string to the end of the coreboot version. |
| 29 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 30 | 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 Georgi | 4b8a241 | 2010-02-09 19:35:16 +0000 | [diff] [blame] | 35 | config 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 Bendebury | adcb095 | 2014-05-01 12:23:09 -0700 | [diff] [blame] | 42 | config 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 Bendebury | 6bfabce | 2014-12-25 15:07:22 -0800 | [diff] [blame] | 50 | config MULTIPLE_CBFS_INSTANCES |
Martin Roth | 595e777 | 2015-04-26 18:53:26 -0600 | [diff] [blame] | 51 | bool "Multiple CBFS instances in the bootrom" |
| 52 | default n |
Martin Roth | 595e777 | 2015-04-26 18:53:26 -0600 | [diff] [blame] | 53 | 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 Bendebury | 6bfabce | 2014-12-25 15:07:22 -0800 | [diff] [blame] | 58 | |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 59 | choice |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 60 | prompt "Compiler to use" |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 61 | default COMPILER_GCC |
| 62 | help |
| 63 | This option allows you to select the compiler used for building |
| 64 | coreboot. |
| 65 | |
| 66 | config COMPILER_GCC |
| 67 | bool "GCC" |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 68 | help |
| 69 | Use the GNU Compiler Collection (GCC) to build coreboot. |
| 70 | |
| 71 | For details see http://gcc.gnu.org. |
| 72 | |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 73 | config COMPILER_LLVM_CLANG |
| 74 | bool "LLVM/clang" |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 75 | help |
| 76 | Use LLVM/clang to build coreboot. |
| 77 | |
| 78 | For details see http://clang.llvm.org. |
| 79 | |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 80 | endchoice |
| 81 | |
Patrick Georgi | 9b0de71 | 2013-12-29 18:45:23 +0100 | [diff] [blame] | 82 | config 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 Georgi | 516a2a7 | 2010-03-25 21:45:25 +0000 | [diff] [blame] | 92 | config CCACHE |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 93 | bool "Use ccache to speed up (re)compilation" |
Patrick Georgi | 516a2a7 | 2010-03-25 21:45:25 +0000 | [diff] [blame] | 94 | default n |
| 95 | help |
| 96 | Enables the use of ccache for faster builds. |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 97 | |
| 98 | Requires the ccache utility in your system $PATH. |
| 99 | |
| 100 | For details see https://ccache.samba.org. |
Patrick Georgi | 516a2a7 | 2010-03-25 21:45:25 +0000 | [diff] [blame] | 101 | |
Sol Boucher | 69b88bf | 2015-02-26 11:47:19 -0800 | [diff] [blame] | 102 | config FMD_GENPARSER |
| 103 | bool "Generate flashmap descriptor parser using flex and bison" |
| 104 | default n |
Sol Boucher | 69b88bf | 2015-02-26 11:47:19 -0800 | [diff] [blame] | 105 | 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 Reinauer | 9bf7810 | 2010-08-09 13:28:18 +0000 | [diff] [blame] | 111 | config SCONFIG_GENPARSER |
| 112 | bool "Generate SCONFIG parser using flex and bison" |
| 113 | default n |
Stefan Reinauer | 9bf7810 | 2010-08-09 13:28:18 +0000 | [diff] [blame] | 114 | help |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 115 | Enable this option if you are working on the sconfig device tree |
Sol Boucher | 69b88bf | 2015-02-26 11:47:19 -0800 | [diff] [blame] | 116 | parser and made changes to sconfig.l or sconfig.y. |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 117 | |
Sol Boucher | 69b88bf | 2015-02-26 11:47:19 -0800 | [diff] [blame] | 118 | Otherwise, say N to use the provided pregenerated scanner/parser. |
Stefan Reinauer | 9bf7810 | 2010-08-09 13:28:18 +0000 | [diff] [blame] | 119 | |
Joe Korty | 6d77252 | 2010-05-19 18:41:15 +0000 | [diff] [blame] | 120 | config USE_OPTION_TABLE |
| 121 | bool "Use CMOS for configuration values" |
| 122 | default n |
Edwin Beasant | eb50c7d | 2010-07-06 21:05:04 +0000 | [diff] [blame] | 123 | depends on HAVE_OPTION_TABLE |
Joe Korty | 6d77252 | 2010-05-19 18:41:15 +0000 | [diff] [blame] | 124 | help |
| 125 | Enable this option if coreboot shall read options from the "CMOS" |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 126 | NVRAM instead of using hard-coded values. |
Joe Korty | 6d77252 | 2010-05-19 18:41:15 +0000 | [diff] [blame] | 127 | |
Timothy Pearson | f20c6e8 | 2015-02-14 16:15:31 -0600 | [diff] [blame] | 128 | config 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 Werner | cdf92ea | 2014-12-09 12:18:00 -0800 | [diff] [blame] | 137 | config UNCOMPRESSED_RAMSTAGE |
| 138 | bool |
| 139 | default n |
| 140 | |
Sven Schnelle | 8eee19d | 2011-05-02 19:53:04 +0000 | [diff] [blame] | 141 | config COMPRESS_RAMSTAGE |
| 142 | bool "Compress ramstage with LZMA" |
Julius Werner | cdf92ea | 2014-12-09 12:18:00 -0800 | [diff] [blame] | 143 | default y if !UNCOMPRESSED_RAMSTAGE |
| 144 | default n |
Sven Schnelle | 8eee19d | 2011-05-02 19:53:04 +0000 | [diff] [blame] | 145 | help |
| 146 | Compress ramstage to save memory in the flash image. Note |
| 147 | that decompression might slow down booting if the boot flash |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 148 | is connected through a slow link (i.e. SPI). |
Sven Schnelle | 8eee19d | 2011-05-02 19:53:04 +0000 | [diff] [blame] | 149 | |
Cristian Măgherușan-Stanciu | d367b00 | 2011-06-19 03:03:28 +0200 | [diff] [blame] | 150 | config INCLUDE_CONFIG_FILE |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 151 | 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] | 152 | default y |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 153 | 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 Forsi | 53847a2 | 2014-07-22 18:00:56 +0200 | [diff] [blame] | 158 | Saying Y here will increase the image size by 2-3KB. |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 159 | |
| 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 Goodrich | f026912 | 2012-05-18 11:18:47 -0600 | [diff] [blame] | 173 | |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 174 | Name Offset Type Size |
| 175 | cmos_layout.bin 0x0 cmos layout 1159 |
| 176 | fallback/romstage 0x4c0 stage 339756 |
Daniele Forsi | 53847a2 | 2014-07-22 18:00:56 +0200 | [diff] [blame] | 177 | fallback/ramstage 0x53440 stage 186664 |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 178 | fallback/payload 0x80dc0 payload 51526 |
| 179 | config 0x8d740 raw 3324 |
| 180 | (empty) 0x8e480 null 3610440 |
Cristian Măgherușan-Stanciu | d367b00 | 2011-06-19 03:03:28 +0200 | [diff] [blame] | 181 | |
Kyösti Mälkki | f8bf5a1 | 2013-10-11 22:08:02 +0300 | [diff] [blame] | 182 | config EARLY_CBMEM_INIT |
Kyösti Mälkki | 3bf3854 | 2014-12-18 22:22:04 +0200 | [diff] [blame] | 183 | def_bool !LATE_CBMEM_INIT |
| 184 | |
Vadim Bendebury | 9202473d | 2011-09-21 14:46:43 -0700 | [diff] [blame] | 185 | config COLLECT_TIMESTAMPS |
| 186 | bool "Create a table of timestamps collected during boot" |
Kyösti Mälkki | 2644793 | 2013-10-11 21:14:59 +0300 | [diff] [blame] | 187 | default n |
Vadim Bendebury | 9202473d | 2011-09-21 14:46:43 -0700 | [diff] [blame] | 188 | help |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 189 | 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 Durbin | 1936f6c | 2015-07-03 17:04:21 -0500 | [diff] [blame] | 192 | config 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 Georgi | 7e9b9d8 | 2012-04-30 21:06:10 +0200 | [diff] [blame] | 201 | config 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 Reinauer | d37ab45 | 2012-12-18 16:23:28 -0800 | [diff] [blame] | 209 | config 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 Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 218 | config RELOCATABLE_MODULES |
Vladimir Serbinenko | 633352c | 2015-05-30 22:21:37 +0200 | [diff] [blame] | 219 | bool |
Stefan Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 220 | 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 | |
| 226 | config RELOCATABLE_RAMSTAGE |
Vladimir Serbinenko | 633352c | 2015-05-30 22:21:37 +0200 | [diff] [blame] | 227 | depends on EARLY_CBMEM_INIT |
Stefan Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 228 | bool "Build the ramstage to be relocatable in 32-bit address space." |
| 229 | default n |
Vladimir Serbinenko | 633352c | 2015-05-30 22:21:37 +0200 | [diff] [blame] | 230 | select RELOCATABLE_MODULES |
Stefan Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 231 | 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 | |
| 238 | config 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 Durbin | 0424c95 | 2015-03-28 23:56:22 -0500 | [diff] [blame] | 246 | config FLASHMAP_OFFSET |
| 247 | hex "Flash Map Offset" |
Alexandru Gagniuc | ecf2eb4 | 2015-09-28 21:39:12 -0700 | [diff] [blame] | 248 | default 0x00670000 if NORTHBRIDGE_INTEL_SANDYBRIDGE_MRC |
| 249 | default 0x00610000 if NORTHBRIDGE_INTEL_IVYBRIDGE_MRC |
Aaron Durbin | 0424c95 | 2015-03-28 23:56:22 -0500 | [diff] [blame] | 250 | default CBFS_SIZE if !ARCH_X86 |
| 251 | default 0 |
| 252 | help |
| 253 | Offset of flash map in firmware image |
| 254 | |
Stefan Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 255 | choice |
| 256 | prompt "Bootblock behaviour" |
| 257 | default BOOTBLOCK_SIMPLE |
| 258 | |
| 259 | config BOOTBLOCK_SIMPLE |
| 260 | bool "Always load fallback" |
| 261 | |
| 262 | config BOOTBLOCK_NORMAL |
| 263 | bool "Switch to normal if CMOS says so" |
| 264 | |
| 265 | endchoice |
| 266 | |
| 267 | config BOOTBLOCK_SOURCE |
| 268 | string |
| 269 | default "bootblock_simple.c" if BOOTBLOCK_SIMPLE |
| 270 | default "bootblock_normal.c" if BOOTBLOCK_NORMAL |
| 271 | |
Timothy Pearson | 4472408 | 2015-03-16 11:47:45 -0500 | [diff] [blame] | 272 | config SKIP_MAX_REBOOT_CNT_CLEAR |
| 273 | bool "Do not clear reboot count after successful boot" |
| 274 | default n |
Timothy Pearson | 4472408 | 2015-03-16 11:47:45 -0500 | [diff] [blame] | 275 | 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 Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 279 | config 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 Reinauer | d06258c | 2015-03-26 16:29:00 -0700 | [diff] [blame] | 288 | config 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 | |
| 296 | config 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 | |
| 303 | config BOARD_ID_MANUAL |
Vladimir Serbinenko | 1e16142 | 2015-05-30 22:47:22 +0200 | [diff] [blame] | 304 | bool |
Stefan Reinauer | d06258c | 2015-03-26 16:29:00 -0700 | [diff] [blame] | 305 | 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 | |
| 313 | config 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 Hendricks | 627b3bd | 2014-11-03 17:42:09 -0800 | [diff] [blame] | 321 | config RAM_CODE_SUPPORT |
Vladimir Serbinenko | 8ef9c56 | 2015-05-30 22:55:44 +0200 | [diff] [blame] | 322 | bool |
David Hendricks | 627b3bd | 2014-11-03 17:42:09 -0800 | [diff] [blame] | 323 | 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 Aladyshev | 6544cb3 | 2015-01-24 18:52:10 +0400 | [diff] [blame^] | 328 | config 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 | |
| 337 | config 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 Hermann | c04be93 | 2009-10-05 13:55:28 +0000 | [diff] [blame] | 345 | endmenu |
| 346 | |
Alexander Couzens | 7710379 | 2015-04-16 02:03:26 +0200 | [diff] [blame] | 347 | source "src/acpi/Kconfig" |
| 348 | |
Martin Roth | 026e4dc | 2015-06-19 23:17:15 -0600 | [diff] [blame] | 349 | menu "Mainboard" |
| 350 | |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 351 | source "src/mainboard/Kconfig" |
Stefan Reinauer | 8aedcbc | 2010-12-16 23:37:17 +0000 | [diff] [blame] | 352 | |
Martin Roth | 026e4dc | 2015-06-19 23:17:15 -0600 | [diff] [blame] | 353 | config CBFS_SIZE |
| 354 | hex "Size of CBFS filesystem in ROM" |
Martin Roth | 59aa2b1 | 2015-06-20 16:17:12 -0600 | [diff] [blame] | 355 | default 0x100000 if HAVE_INTEL_FIRMWARE || \ |
Alexandru Gagniuc | ecf2eb4 | 2015-09-28 21:39:12 -0700 | [diff] [blame] | 356 | NORTHBRIDGE_INTEL_GM45 || NORTHBRIDGE_INTEL_SANDYBRIDGE_MRC || \ |
| 357 | NORTHBRIDGE_INTEL_IVYBRIDGE_MRC || NORTHBRIDGE_INTEL_IVYBRIDGE || \ |
| 358 | NORTHBRIDGE_INTEL_SANDYBRIDGE || \ |
Martin Roth | c407cb9 | 2015-06-23 19:59:30 -0600 | [diff] [blame] | 359 | NORTHBRIDGE_INTEL_NEHALEM || SOC_INTEL_BRASWELL || \ |
Martin Roth | 026e4dc | 2015-06-19 23:17:15 -0600 | [diff] [blame] | 360 | SOC_INTEL_BROADWELL |
Aaron Durbin | 2ca12740 | 2015-07-30 13:34:29 -0500 | [diff] [blame] | 361 | default 0x200000 if SOC_INTEL_SKYLAKE |
Martin Roth | 026e4dc | 2015-06-19 23:17:15 -0600 | [diff] [blame] | 362 | 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 | |
| 372 | endmenu |
| 373 | |
Vladimir Serbinenko | a9db82f | 2014-10-16 13:21:47 +0200 | [diff] [blame] | 374 | config SYSTEM_TYPE_LAPTOP |
Martin Roth | 595e777 | 2015-04-26 18:53:26 -0600 | [diff] [blame] | 375 | default n |
| 376 | bool |
Vladimir Serbinenko | a9db82f | 2014-10-16 13:21:47 +0200 | [diff] [blame] | 377 | |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 378 | menu "Chipset" |
| 379 | |
Duncan Laurie | d211976 | 2015-06-08 18:11:56 -0700 | [diff] [blame] | 380 | comment "SoC" |
| 381 | source "src/soc/*/*/Kconfig" |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 382 | comment "CPU" |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 383 | source "src/cpu/Kconfig" |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 384 | comment "Northbridge" |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 385 | source "src/northbridge/*/*/Kconfig" |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 386 | comment "Southbridge" |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 387 | source "src/southbridge/*/*/Kconfig" |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 388 | comment "Super I/O" |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 389 | source "src/superio/*/Kconfig" |
Sven Schnelle | 7592e8b | 2011-01-27 11:43:03 +0000 | [diff] [blame] | 390 | comment "Embedded Controllers" |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 391 | source "src/ec/acpi/Kconfig" |
| 392 | source "src/ec/*/*/Kconfig" |
Marc Jones | 7868797 | 2015-04-22 23:16:31 -0600 | [diff] [blame] | 393 | source "src/drivers/intel/fsp1_0/Kconfig" |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 394 | |
Martin Roth | 59aa2b1 | 2015-06-20 16:17:12 -0600 | [diff] [blame] | 395 | source "src/southbridge/intel/common/firmware/Kconfig" |
Martin Roth | e1523ec | 2015-06-19 22:30:43 -0600 | [diff] [blame] | 396 | source "src/vendorcode/*/Kconfig" |
Martin Roth | 59aa2b1 | 2015-06-20 16:17:12 -0600 | [diff] [blame] | 397 | |
Martin Roth | e1523ec | 2015-06-19 22:30:43 -0600 | [diff] [blame] | 398 | source "src/arch/*/Kconfig" |
| 399 | |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 400 | endmenu |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 401 | |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 402 | source "src/device/Kconfig" |
Stefan Reinauer | 95a6396 | 2012-11-13 17:00:01 -0800 | [diff] [blame] | 403 | |
Rudolf Marek | d9c2549 | 2010-05-16 15:31:53 +0000 | [diff] [blame] | 404 | menu "Generic Drivers" |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 405 | source "src/drivers/*/Kconfig" |
Rudolf Marek | d9c2549 | 2010-05-16 15:31:53 +0000 | [diff] [blame] | 406 | endmenu |
| 407 | |
Patrick Georgi | 0770f25 | 2015-04-22 13:28:21 +0200 | [diff] [blame] | 408 | config RTC |
| 409 | bool |
| 410 | default n |
| 411 | |
Stefan Reinauer | 7cb01e0 | 2013-08-29 16:05:02 -0700 | [diff] [blame] | 412 | config TPM |
| 413 | bool |
| 414 | default n |
| 415 | select LPC_TPM if ARCH_X86 |
Gabe Black | 51edd54 | 2013-09-30 23:00:33 -0700 | [diff] [blame] | 416 | select I2C_TPM if ARCH_ARM |
Furquan Shaikh | 2af76f4 | 2014-04-28 16:39:40 -0700 | [diff] [blame] | 417 | select I2C_TPM if ARCH_ARM64 |
Stefan Reinauer | 7cb01e0 | 2013-08-29 16:05:02 -0700 | [diff] [blame] | 418 | help |
| 419 | Enable this option to enable TPM support in coreboot. |
| 420 | |
| 421 | If unsure, say N. |
| 422 | |
Kyösti Mälkki | eaee6e2 | 2014-04-30 01:35:29 +0300 | [diff] [blame] | 423 | config RAMTOP |
| 424 | hex |
| 425 | default 0x200000 |
| 426 | depends on ARCH_X86 |
| 427 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 428 | config HEAP_SIZE |
| 429 | hex |
Myles Watson | 04000f4 | 2009-10-16 19:12:49 +0000 | [diff] [blame] | 430 | default 0x4000 |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 431 | |
Julius Werner | c3e7c4e | 2014-09-19 13:18:16 -0700 | [diff] [blame] | 432 | config STACK_SIZE |
| 433 | hex |
Thaminda Edirisooriya | 1daee06 | 2015-07-09 13:53:34 -0700 | [diff] [blame] | 434 | default 0x0 if (ARCH_RAMSTAGE_ARM || ARCH_RAMSTAGE_MIPS || ARCH_RAMSTAGE_RISCV) |
Julius Werner | c3e7c4e | 2014-09-19 13:18:16 -0700 | [diff] [blame] | 435 | default 0x1000 |
| 436 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 437 | config MAX_CPUS |
| 438 | int |
| 439 | default 1 |
| 440 | |
| 441 | config MMCONF_SUPPORT_DEFAULT |
| 442 | bool |
| 443 | default n |
| 444 | |
| 445 | config MMCONF_SUPPORT |
| 446 | bool |
| 447 | default n |
| 448 | |
Kyösti Mälkki | 5687fc9 | 2013-11-28 18:11:49 +0200 | [diff] [blame] | 449 | config BOOTMODE_STRAPS |
| 450 | bool |
| 451 | default n |
| 452 | |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 453 | source "src/console/Kconfig" |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 454 | |
| 455 | config HAVE_ACPI_RESUME |
| 456 | bool |
| 457 | default n |
| 458 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 459 | config HAVE_HARD_RESET |
| 460 | bool |
Uwe Hermann | 748475b | 2009-10-09 11:47:21 +0000 | [diff] [blame] | 461 | default n |
Patrick Georgi | 37bdb87 | 2010-02-27 08:39:04 +0000 | [diff] [blame] | 462 | 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 Durbin | a421791 | 2013-04-29 22:31:51 -0500 | [diff] [blame] | 466 | config HAVE_MONOTONIC_TIMER |
| 467 | def_bool n |
| 468 | help |
| 469 | The board/chipset provides a monotonic timer. |
| 470 | |
Aaron Durbin | e5e3630 | 2014-09-25 10:05:15 -0500 | [diff] [blame] | 471 | config 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 Durbin | 340ca91 | 2013-04-30 09:58:12 -0500 | [diff] [blame] | 478 | config TIMER_QUEUE |
| 479 | def_bool n |
| 480 | depends on HAVE_MONOTONIC_TIMER |
| 481 | help |
Kyösti Mälkki | ecd8424 | 2013-09-13 07:57:49 +0300 | [diff] [blame] | 482 | Provide a timer queue for performing time-based callbacks. |
Aaron Durbin | 340ca91 | 2013-04-30 09:58:12 -0500 | [diff] [blame] | 483 | |
Aaron Durbin | 4409a5e | 2013-05-06 12:20:52 -0500 | [diff] [blame] | 484 | config COOP_MULTITASKING |
| 485 | def_bool n |
Aaron Durbin | 38c326d | 2013-05-06 12:22:23 -0500 | [diff] [blame] | 486 | depends on TIMER_QUEUE && ARCH_X86 |
Aaron Durbin | 4409a5e | 2013-05-06 12:20:52 -0500 | [diff] [blame] | 487 | 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 | |
| 493 | config 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 Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 500 | config HAVE_OPTION_TABLE |
| 501 | bool |
Edwin Beasant | eb50c7d | 2010-07-06 21:05:04 +0000 | [diff] [blame] | 502 | default n |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 503 | help |
| 504 | This variable specifies whether a given board has a cmos.layout |
| 505 | file containing NVRAM/CMOS bit definitions. |
Edwin Beasant | eb50c7d | 2010-07-06 21:05:04 +0000 | [diff] [blame] | 506 | It defaults to 'n' but can be selected in mainboard/*/Kconfig. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 507 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 508 | config PIRQ_ROUTE |
| 509 | bool |
| 510 | default n |
| 511 | |
| 512 | config HAVE_SMI_HANDLER |
| 513 | bool |
| 514 | default n |
| 515 | |
| 516 | config PCI_IO_CFG_EXT |
| 517 | bool |
| 518 | default n |
| 519 | |
| 520 | config IOAPIC |
| 521 | bool |
| 522 | default n |
| 523 | |
Kyösti Mälkki | 107f72e | 2014-01-06 11:06:26 +0200 | [diff] [blame] | 524 | config CACHE_ROM_SIZE_OVERRIDE |
Stefan Reinauer | 5b63579 | 2012-08-16 14:05:42 -0700 | [diff] [blame] | 525 | hex |
Kyösti Mälkki | 107f72e | 2014-01-06 11:06:26 +0200 | [diff] [blame] | 526 | default 0 |
Stefan Reinauer | 5b63579 | 2012-08-16 14:05:42 -0700 | [diff] [blame] | 527 | |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 528 | # 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] | 529 | config VIDEO_MB |
| 530 | int |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 531 | default 0 |
Uwe Hermann | 70b0cf2 | 2009-10-04 17:15:39 +0000 | [diff] [blame] | 532 | |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 533 | config USE_WATCHDOG_ON_BOOT |
| 534 | bool |
| 535 | default n |
| 536 | |
| 537 | config VGA |
| 538 | bool |
| 539 | default n |
| 540 | help |
| 541 | Build board-specific VGA code. |
| 542 | |
| 543 | config GFXUMA |
| 544 | bool |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 545 | default n |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 546 | help |
| 547 | Enable Unified Memory Architecture for graphics. |
| 548 | |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 549 | config HAVE_ACPI_TABLES |
| 550 | bool |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 551 | help |
| 552 | This variable specifies whether a given board has ACPI table support. |
| 553 | It is usually set in mainboard/*/Kconfig. |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 554 | |
| 555 | config HAVE_MP_TABLE |
| 556 | bool |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 557 | 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 Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 562 | |
| 563 | config HAVE_PIRQ_TABLE |
| 564 | bool |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 565 | 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 Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 570 | |
Alexandru Gagniuc | 70c660f | 2012-08-23 02:32:58 -0500 | [diff] [blame] | 571 | config 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 Serbinenko | c21e073 | 2014-10-16 12:48:19 +0200 | [diff] [blame] | 582 | config COMMON_FADT |
| 583 | bool |
| 584 | default n |
| 585 | |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 586 | #These Options are here to avoid "undefined" warnings. |
| 587 | #The actual selection and help texts are in the following menu. |
| 588 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 589 | menu "System tables" |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 590 | |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 591 | config GENERATE_MP_TABLE |
Stefan Reinauer | 56cd70b | 2012-11-13 17:33:08 -0800 | [diff] [blame] | 592 | prompt "Generate an MP table" if HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC |
| 593 | bool |
| 594 | default HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 595 | 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 Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 600 | |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 601 | config GENERATE_PIRQ_TABLE |
Stefan Reinauer | 56cd70b | 2012-11-13 17:33:08 -0800 | [diff] [blame] | 602 | prompt "Generate a PIRQ table" if HAVE_PIRQ_TABLE |
| 603 | bool |
| 604 | default HAVE_PIRQ_TABLE |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 605 | help |
| 606 | Generate a PIRQ table for this board. |
| 607 | |
| 608 | If unsure, say Y. |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 609 | |
Sven Schnelle | 164bcfd | 2011-08-14 20:56:34 +0200 | [diff] [blame] | 610 | config 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 Serbinenko | 0afdec4 | 2015-05-30 23:08:26 +0200 | [diff] [blame] | 619 | config SMBIOS_PROVIDED_BY_MOBO |
| 620 | bool |
| 621 | default n |
| 622 | |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 623 | config MAINBOARD_SERIAL_NUMBER |
| 624 | string "SMBIOS Serial Number" |
| 625 | depends on GENERATE_SMBIOS_TABLES |
Vladimir Serbinenko | 0afdec4 | 2015-05-30 23:08:26 +0200 | [diff] [blame] | 626 | depends on !SMBIOS_PROVIDED_BY_MOBO |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 627 | default "123456789" |
Martin Roth | 595e777 | 2015-04-26 18:53:26 -0600 | [diff] [blame] | 628 | help |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 629 | The Serial Number to store in SMBIOS structures. |
| 630 | |
| 631 | config MAINBOARD_VERSION |
| 632 | string "SMBIOS Version Number" |
| 633 | depends on GENERATE_SMBIOS_TABLES |
Vladimir Serbinenko | 0afdec4 | 2015-05-30 23:08:26 +0200 | [diff] [blame] | 634 | depends on !SMBIOS_PROVIDED_BY_MOBO |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 635 | default "1.0" |
| 636 | help |
| 637 | The Version Number to store in SMBIOS structures. |
| 638 | |
| 639 | config MAINBOARD_SMBIOS_MANUFACTURER |
| 640 | string "SMBIOS Manufacturer" |
| 641 | depends on GENERATE_SMBIOS_TABLES |
Vladimir Serbinenko | 0afdec4 | 2015-05-30 23:08:26 +0200 | [diff] [blame] | 642 | depends on !SMBIOS_PROVIDED_BY_MOBO |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 643 | default MAINBOARD_VENDOR |
| 644 | help |
| 645 | Override the default Manufacturer stored in SMBIOS structures. |
| 646 | |
| 647 | config MAINBOARD_SMBIOS_PRODUCT_NAME |
| 648 | string "SMBIOS Product name" |
| 649 | depends on GENERATE_SMBIOS_TABLES |
Vladimir Serbinenko | 0afdec4 | 2015-05-30 23:08:26 +0200 | [diff] [blame] | 650 | depends on !SMBIOS_PROVIDED_BY_MOBO |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 651 | default MAINBOARD_PART_NUMBER |
| 652 | help |
| 653 | Override the default Product name stored in SMBIOS structures. |
| 654 | |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 655 | endmenu |
| 656 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 657 | menu "Payload" |
| 658 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 659 | choice |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 660 | prompt "Add a payload" |
Stefan Reinauer | f1939bb | 2010-12-30 17:39:50 +0000 | [diff] [blame] | 661 | default PAYLOAD_NONE if !ARCH_X86 |
| 662 | default PAYLOAD_SEABIOS if ARCH_X86 |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 663 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 664 | config 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 Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 674 | config PAYLOAD_ELF |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 675 | bool "An ELF executable payload" |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 676 | 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 Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 683 | |
Stefan Reinauer | 1a8b7bf | 2015-06-30 15:58:56 -0700 | [diff] [blame] | 684 | source "payloads/external/*/Kconfig.name" |
Stefan Reinauer | cc5b344 | 2013-01-15 17:02:58 -0800 | [diff] [blame] | 685 | |
Stefan Reinauer | f1939bb | 2010-12-30 17:39:50 +0000 | [diff] [blame] | 686 | endchoice |
| 687 | |
Stefan Reinauer | 1a8b7bf | 2015-06-30 15:58:56 -0700 | [diff] [blame] | 688 | source "payloads/external/*/Kconfig" |
Stefan Reinauer | e50952f | 2011-04-15 03:34:05 +0000 | [diff] [blame] | 689 | |
Stefan Reinauer | bccbbe6 | 2010-12-19 21:20:14 +0000 | [diff] [blame] | 690 | config PAYLOAD_FILE |
Cristi Magherusan | b5034d4 | 2009-08-17 14:47:32 +0000 | [diff] [blame] | 691 | string "Payload path and filename" |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 692 | depends on PAYLOAD_ELF |
| 693 | default "payload.elf" |
| 694 | help |
Uwe Hermann | 5ec2c2b | 2009-08-25 00:53:22 +0000 | [diff] [blame] | 695 | 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] | 696 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 697 | # TODO: Defined if no payload? Breaks build? |
| 698 | config COMPRESSED_PAYLOAD_LZMA |
| 699 | bool "Use LZMA compression for payloads" |
| 700 | default y |
Stefan Reinauer | 1a8b7bf | 2015-06-30 15:58:56 -0700 | [diff] [blame] | 701 | depends on !PAYLOAD_NONE && !PAYLOAD_LINUX |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 702 | 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 Stuge | a758ca2 | 2009-09-17 16:21:31 +0000 | [diff] [blame] | 706 | endmenu |
| 707 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 708 | menu "Debugging" |
| 709 | |
| 710 | # TODO: Better help text and detailed instructions. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 711 | config GDB_STUB |
Uwe Hermann | 5ec2c2b | 2009-08-25 00:53:22 +0000 | [diff] [blame] | 712 | bool "GDB debugging support" |
Rudolf Marek | 6588802 | 2012-03-25 20:51:16 +0200 | [diff] [blame] | 713 | default n |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 714 | help |
Uwe Hermann | 5ec2c2b | 2009-08-25 00:53:22 +0000 | [diff] [blame] | 715 | If enabled, you will be able to set breakpoints for gdb debugging. |
Stefan Reinauer | 8677a23 | 2010-12-11 20:33:41 +0000 | [diff] [blame] | 716 | See src/arch/x86/lib/c_start.S for details. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 717 | |
Denis 'GNUtoo' Carikli | e4cece0 | 2012-06-22 15:56:37 +0200 | [diff] [blame] | 718 | config 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 Werner | d82e0cf | 2015-02-17 17:27:23 -0800 | [diff] [blame] | 725 | config 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 Reinauer | fe42218 | 2012-05-02 16:33:18 -0700 | [diff] [blame] | 731 | config DEBUG_CBFS |
| 732 | bool "Output verbose CBFS debug messages" |
| 733 | default n |
Stefan Reinauer | fe42218 | 2012-05-02 16:33:18 -0700 | [diff] [blame] | 734 | help |
| 735 | This option enables additional CBFS related debug messages. |
| 736 | |
Jens Rottmann | 0d11f2d | 2010-08-26 12:46:02 +0000 | [diff] [blame] | 737 | config HAVE_DEBUG_RAM_SETUP |
| 738 | def_bool n |
| 739 | |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 740 | config DEBUG_RAM_SETUP |
| 741 | bool "Output verbose RAM init debug messages" |
| 742 | default n |
Jens Rottmann | 0d11f2d | 2010-08-26 12:46:02 +0000 | [diff] [blame] | 743 | depends on HAVE_DEBUG_RAM_SETUP |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 744 | 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 Georgi | e82618d | 2010-10-01 14:50:12 +0000 | [diff] [blame] | 753 | config HAVE_DEBUG_CAR |
| 754 | def_bool n |
| 755 | |
Peter Stuge | 5015f79 | 2010-11-10 02:00:32 +0000 | [diff] [blame] | 756 | config DEBUG_CAR |
| 757 | def_bool n |
| 758 | depends on HAVE_DEBUG_CAR |
| 759 | |
| 760 | if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 761 | # Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional |
| 762 | # printk(BIOS_DEBUG, ...) calls. |
Patrick Georgi | e82618d | 2010-10-01 14:50:12 +0000 | [diff] [blame] | 763 | config DEBUG_CAR |
| 764 | bool "Output verbose Cache-as-RAM debug messages" |
| 765 | default n |
Peter Stuge | 5015f79 | 2010-11-10 02:00:32 +0000 | [diff] [blame] | 766 | depends on HAVE_DEBUG_CAR |
Patrick Georgi | e82618d | 2010-10-01 14:50:12 +0000 | [diff] [blame] | 767 | help |
| 768 | This option enables additional CAR related debug messages. |
Peter Stuge | 5015f79 | 2010-11-10 02:00:32 +0000 | [diff] [blame] | 769 | endif |
Patrick Georgi | e82618d | 2010-10-01 14:50:12 +0000 | [diff] [blame] | 770 | |
Myles Watson | 80e914ff | 2010-06-01 19:25:31 +0000 | [diff] [blame] | 771 | config 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 Rottmann | 0d11f2d | 2010-08-26 12:46:02 +0000 | [diff] [blame] | 778 | config HAVE_DEBUG_SMBUS |
| 779 | def_bool n |
| 780 | |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 781 | config DEBUG_SMBUS |
| 782 | bool "Output verbose SMBus debug messages" |
| 783 | default n |
Jens Rottmann | 0d11f2d | 2010-08-26 12:46:02 +0000 | [diff] [blame] | 784 | depends on HAVE_DEBUG_SMBUS |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 785 | 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 | |
| 792 | config DEBUG_SMI |
| 793 | bool "Output verbose SMI debug messages" |
| 794 | default n |
| 795 | depends on HAVE_SMI_HANDLER |
Martin Roth | 3a54318 | 2015-09-28 15:27:24 -0600 | [diff] [blame] | 796 | select SPI_FLASH_SMM if SPI_CONSOLE |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 797 | 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 Reinauer | bc0f7a6 | 2010-08-01 15:41:14 +0000 | [diff] [blame] | 804 | config 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 Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 816 | # Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional |
| 817 | # printk(BIOS_DEBUG, ...) calls. |
| 818 | config DEBUG_MALLOC |
Stefan Reinauer | 95a6396 | 2012-11-13 17:00:01 -0800 | [diff] [blame] | 819 | prompt "Output verbose malloc debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 |
| 820 | bool |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 821 | default n |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 822 | 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-Stanciu | 9f52ea4 | 2011-07-02 00:44:39 +0300 | [diff] [blame] | 828 | |
| 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-Stanciu | 9f52ea4 | 2011-07-02 00:44:39 +0300 | [diff] [blame] | 831 | config DEBUG_ACPI |
Stefan Reinauer | 95a6396 | 2012-11-13 17:00:01 -0800 | [diff] [blame] | 832 | prompt "Output verbose ACPI debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 |
| 833 | bool |
Cristian Măgherușan-Stanciu | 9f52ea4 | 2011-07-02 00:44:39 +0300 | [diff] [blame] | 834 | 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-Stanciu | 9f52ea4 | 2011-07-02 00:44:39 +0300 | [diff] [blame] | 841 | |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 842 | # Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional |
| 843 | # printk(BIOS_DEBUG, ...) calls. |
Myles Watson | 6c9bc01 | 2010-09-07 22:30:15 +0000 | [diff] [blame] | 844 | config REALMODE_DEBUG |
Stefan Reinauer | 95a6396 | 2012-11-13 17:00:01 -0800 | [diff] [blame] | 845 | prompt "Enable debug messages for option ROM execution" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 |
| 846 | bool |
Myles Watson | 6c9bc01 | 2010-09-07 22:30:15 +0000 | [diff] [blame] | 847 | default n |
Peter Stuge | 5015f79 | 2010-11-10 02:00:32 +0000 | [diff] [blame] | 848 | depends on PCI_OPTION_ROM_RUN_REALMODE |
Myles Watson | 6c9bc01 | 2010-09-07 22:30:15 +0000 | [diff] [blame] | 849 | 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 Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 856 | config 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 | |
| 867 | config 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 | |
| 878 | config 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 Reinauer | 14e2277 | 2010-04-27 06:56:47 +0000 | [diff] [blame] | 884 | |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 885 | 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 | |
| 891 | config 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 | |
| 902 | config 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 | |
| 913 | config 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 | |
| 925 | config 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 | |
| 936 | config 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 | |
| 947 | config 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 | |
| 958 | config 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 | |
| 970 | config 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 | |
| 982 | config 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' Carikli | 4cdc5d6 | 2013-05-15 00:19:49 +0200 | [diff] [blame] | 993 | config 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 Reinauer | dfb098d | 2011-11-17 12:50:54 -0800 | [diff] [blame] | 1002 | config 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 Reinauer | 1c56d9b | 2012-05-10 11:27:32 -0700 | [diff] [blame] | 1009 | config 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älkki | 3be80cc | 2013-06-06 10:46:37 +0300 | [diff] [blame] | 1016 | config 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 Reinauer | 8e07382 | 2012-04-04 00:07:22 +0200 | [diff] [blame] | 1026 | if SOUTHBRIDGE_INTEL_BD82X6X && DEFAULT_CONSOLE_LOGLEVEL_8 |
| 1027 | # Only visible with the right southbridge and loglevel. |
| 1028 | config 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. |
| 1034 | endif |
| 1035 | |
Rudolf Marek | 7f0e930 | 2011-09-02 23:23:41 +0200 | [diff] [blame] | 1036 | config 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 Reinauer | d37ab45 | 2012-12-18 16:23:28 -0800 | [diff] [blame] | 1045 | |
| 1046 | config 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 Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 1054 | endmenu |
| 1055 | |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 1056 | # These probably belong somewhere else, but they are needed somewhere. |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 1057 | config ENABLE_APIC_EXT_ID |
| 1058 | bool |
| 1059 | default n |
Myles Watson | 2e67273 | 2009-11-12 16:38:03 +0000 | [diff] [blame] | 1060 | |
| 1061 | config WARNINGS_ARE_ERRORS |
| 1062 | bool |
Edward O'Callaghan | 63f6dc7 | 2014-11-18 03:17:54 +1100 | [diff] [blame] | 1063 | default y |
Patrick Georgi | 436f99b | 2009-11-27 16:55:13 +0000 | [diff] [blame] | 1064 | |
Peter Stuge | 51eafde | 2010-10-13 06:23:02 +0000 | [diff] [blame] | 1065 | # 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 | |
| 1072 | config 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 | |
| 1078 | config 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 | |
| 1085 | config 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 | |
| 1091 | config 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 | |
| 1097 | config 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 Laurie | 7274800 | 2013-10-31 08:26:23 -0700 | [diff] [blame] | 1103 | |
| 1104 | config REG_SCRIPT |
| 1105 | bool |
Duncan Laurie | 7274800 | 2013-10-31 08:26:23 -0700 | [diff] [blame] | 1106 | default n |
| 1107 | help |
| 1108 | Internal option that controls whether we compile in register scripts. |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 1109 | |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 1110 | config MAX_REBOOT_CNT |
| 1111 | int |
| 1112 | default 3 |
Timothy Pearson | 17ada2e | 2015-03-18 01:31:34 -0500 | [diff] [blame] | 1113 | 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 Bendebury | 9c9c336 | 2014-07-23 09:40:02 -0700 | [diff] [blame] | 1116 | and switching to the fallback image. |