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 |
| 18 | ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
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 | |
Uwe Hermann | a29ad5c | 2009-10-18 18:35:50 +0000 | [diff] [blame] | 25 | config EXPERT |
| 26 | bool "Expert mode" |
| 27 | help |
| 28 | This allows you to select certain advanced configuration options. |
| 29 | |
| 30 | Warning: Only enable this option if you really know what you are |
| 31 | doing! You have been warned! |
| 32 | |
Uwe Hermann | c04be93 | 2009-10-05 13:55:28 +0000 | [diff] [blame] | 33 | config LOCALVERSION |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 34 | string "Local version string" |
Uwe Hermann | c04be93 | 2009-10-05 13:55:28 +0000 | [diff] [blame] | 35 | help |
| 36 | Append an extra string to the end of the coreboot version. |
| 37 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 38 | This can be useful if, for instance, you want to append the |
| 39 | respective board's hostname or some other identifying string to |
| 40 | the coreboot version number, so that you can easily distinguish |
| 41 | boot logs of different boards from each other. |
| 42 | |
Patrick Georgi | 4b8a241 | 2010-02-09 19:35:16 +0000 | [diff] [blame] | 43 | config CBFS_PREFIX |
| 44 | string "CBFS prefix to use" |
| 45 | default "fallback" |
| 46 | help |
| 47 | Select the prefix to all files put into the image. It's "fallback" |
| 48 | by default, "normal" is a common alternative. |
| 49 | |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 50 | choice |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 51 | prompt "Compiler to use" |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 52 | default COMPILER_GCC |
| 53 | help |
| 54 | This option allows you to select the compiler used for building |
| 55 | coreboot. |
| 56 | |
| 57 | config COMPILER_GCC |
| 58 | bool "GCC" |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 59 | help |
| 60 | Use the GNU Compiler Collection (GCC) to build coreboot. |
| 61 | |
| 62 | For details see http://gcc.gnu.org. |
| 63 | |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 64 | config COMPILER_LLVM_CLANG |
| 65 | bool "LLVM/clang" |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 66 | help |
| 67 | Use LLVM/clang to build coreboot. |
| 68 | |
| 69 | For details see http://clang.llvm.org. |
| 70 | |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 71 | endchoice |
| 72 | |
Patrick Georgi | 020f51f | 2010-03-14 21:25:03 +0000 | [diff] [blame] | 73 | config SCANBUILD_ENABLE |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 74 | bool "Build with scan-build for static code analysis" |
Patrick Georgi | 020f51f | 2010-03-14 21:25:03 +0000 | [diff] [blame] | 75 | default n |
| 76 | help |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 77 | Changes the build process to use scan-build (a utility for |
| 78 | running the clang static code analyzer from the command line). |
| 79 | |
| 80 | Requires the scan-build utility in your system $PATH. |
| 81 | |
| 82 | For details see http://clang-analyzer.llvm.org/scan-build.html. |
Patrick Georgi | 020f51f | 2010-03-14 21:25:03 +0000 | [diff] [blame] | 83 | |
| 84 | config SCANBUILD_REPORT_LOCATION |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 85 | string "Directory for the scan-build report(s)" |
Patrick Georgi | 020f51f | 2010-03-14 21:25:03 +0000 | [diff] [blame] | 86 | default "" |
| 87 | depends on SCANBUILD_ENABLE |
| 88 | help |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 89 | Directory where the scan-build reports should be stored in. The |
| 90 | reports are stored in subdirectories of the form 'yyyy-mm-dd-*' |
| 91 | in the specified directory. |
| 92 | |
| 93 | If this setting is left empty, the coreboot top-level directory |
| 94 | will be used to store the report subdirectories. |
Patrick Georgi | 020f51f | 2010-03-14 21:25:03 +0000 | [diff] [blame] | 95 | |
Patrick Georgi | 516a2a7 | 2010-03-25 21:45:25 +0000 | [diff] [blame] | 96 | config CCACHE |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 97 | bool "Use ccache to speed up (re)compilation" |
Patrick Georgi | 516a2a7 | 2010-03-25 21:45:25 +0000 | [diff] [blame] | 98 | default n |
| 99 | help |
| 100 | Enables the use of ccache for faster builds. |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 101 | |
| 102 | Requires the ccache utility in your system $PATH. |
| 103 | |
| 104 | For details see https://ccache.samba.org. |
Patrick Georgi | 516a2a7 | 2010-03-25 21:45:25 +0000 | [diff] [blame] | 105 | |
Stefan Reinauer | 9bf7810 | 2010-08-09 13:28:18 +0000 | [diff] [blame] | 106 | config SCONFIG_GENPARSER |
| 107 | bool "Generate SCONFIG parser using flex and bison" |
| 108 | default n |
| 109 | depends on EXPERT |
| 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 |
| 112 | parser and made changes to sconfig.l and sconfig.y. |
| 113 | |
Stefan Reinauer | 9bf7810 | 2010-08-09 13:28:18 +0000 | [diff] [blame] | 114 | Otherwise, say N. |
| 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 | |
Sven Schnelle | 8eee19d | 2011-05-02 19:53:04 +0000 | [diff] [blame] | 124 | config COMPRESS_RAMSTAGE |
| 125 | bool "Compress ramstage with LZMA" |
| 126 | default y |
| 127 | help |
| 128 | Compress ramstage to save memory in the flash image. Note |
| 129 | that decompression might slow down booting if the boot flash |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 130 | is connected through a slow link (i.e. SPI). |
Sven Schnelle | 8eee19d | 2011-05-02 19:53:04 +0000 | [diff] [blame] | 131 | |
Cristian Măgherușan-Stanciu | d367b00 | 2011-06-19 03:03:28 +0200 | [diff] [blame] | 132 | config INCLUDE_CONFIG_FILE |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 133 | 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] | 134 | default y |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 135 | help |
| 136 | Include the .config file that was used to compile coreboot |
| 137 | in the (CBFS) ROM image. This is useful if you want to know which |
| 138 | options were used to build a specific coreboot.rom image. |
| 139 | |
| 140 | Saying Y here will increase the image size by 2-3kB. |
| 141 | |
| 142 | You can use the following command to easily list the options: |
| 143 | |
| 144 | grep -a CONFIG_ coreboot.rom |
| 145 | |
| 146 | Alternatively, you can also use cbfstool to print the image |
| 147 | contents (including the raw 'config' item we're looking for). |
| 148 | |
| 149 | Example: |
| 150 | |
| 151 | $ cbfstool coreboot.rom print |
| 152 | coreboot.rom: 4096 kB, bootblocksize 1008, romsize 4194304, |
| 153 | offset 0x0 |
| 154 | Alignment: 64 bytes |
Steve Goodrich | f026912 | 2012-05-18 11:18:47 -0600 | [diff] [blame] | 155 | |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 156 | Name Offset Type Size |
| 157 | cmos_layout.bin 0x0 cmos layout 1159 |
| 158 | fallback/romstage 0x4c0 stage 339756 |
| 159 | fallback/coreboot_ram 0x53440 stage 186664 |
| 160 | fallback/payload 0x80dc0 payload 51526 |
| 161 | config 0x8d740 raw 3324 |
| 162 | (empty) 0x8e480 null 3610440 |
Cristian Măgherușan-Stanciu | d367b00 | 2011-06-19 03:03:28 +0200 | [diff] [blame] | 163 | |
Vadim Bendebury | e6b6aff | 2011-09-20 16:46:46 -0700 | [diff] [blame] | 164 | config EARLY_CBMEM_INIT |
| 165 | bool "Initialize CBMEM while in ROM stage" |
| 166 | default n |
| 167 | help |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 168 | Make coreboot initialize the cbmem structures while running in ROM |
| 169 | stage. This could be useful when the ROM stage wants to communicate |
Vadim Bendebury | e6b6aff | 2011-09-20 16:46:46 -0700 | [diff] [blame] | 170 | some, for instance, execution timestamps. |
| 171 | |
Vadim Bendebury | 9202473d | 2011-09-21 14:46:43 -0700 | [diff] [blame] | 172 | config COLLECT_TIMESTAMPS |
| 173 | bool "Create a table of timestamps collected during boot" |
| 174 | depends on EARLY_CBMEM_INIT |
| 175 | help |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 176 | Make coreboot create a table of timer-ID/timer-value pairs to |
| 177 | allow measuring time spent at different phases of the boot process. |
| 178 | |
Patrick Georgi | 7e9b9d8 | 2012-04-30 21:06:10 +0200 | [diff] [blame] | 179 | config USE_BLOBS |
| 180 | bool "Allow use of binary-only repository" |
| 181 | default n |
| 182 | help |
| 183 | This draws in the blobs repository, which contains binary files that |
| 184 | might be required for some chipsets or boards. |
| 185 | This flag ensures that a "Free" option remains available for users. |
| 186 | |
| 187 | config REQUIRES_BLOB |
| 188 | bool |
| 189 | default n |
| 190 | help |
| 191 | This option can be configured by boards that require the blobs |
| 192 | repository for the default configuration. It will make the build |
| 193 | fail if USE_BLOBS is disabled. Users that still desire to do a |
| 194 | coreboot build for such a board can override this manually, but |
| 195 | this option serves as warning that it might fail. |
| 196 | |
Uwe Hermann | c04be93 | 2009-10-05 13:55:28 +0000 | [diff] [blame] | 197 | endmenu |
| 198 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 199 | source src/mainboard/Kconfig |
Stefan Reinauer | 8aedcbc | 2010-12-16 23:37:17 +0000 | [diff] [blame] | 200 | |
| 201 | # This option is used to set the architecture of a mainboard to X86. |
| 202 | # It is usually set in mainboard/*/Kconfig. |
| 203 | config ARCH_X86 |
| 204 | bool |
| 205 | default n |
| 206 | |
| 207 | if ARCH_X86 |
Stefan Reinauer | 8677a23 | 2010-12-11 20:33:41 +0000 | [diff] [blame] | 208 | source src/arch/x86/Kconfig |
Stefan Reinauer | 8aedcbc | 2010-12-16 23:37:17 +0000 | [diff] [blame] | 209 | endif |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 210 | |
| 211 | menu "Chipset" |
| 212 | |
| 213 | comment "CPU" |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 214 | source src/cpu/Kconfig |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 215 | comment "Northbridge" |
| 216 | source src/northbridge/Kconfig |
| 217 | comment "Southbridge" |
| 218 | source src/southbridge/Kconfig |
| 219 | comment "Super I/O" |
| 220 | source src/superio/Kconfig |
Sven Schnelle | 7592e8b | 2011-01-27 11:43:03 +0000 | [diff] [blame] | 221 | comment "Embedded Controllers" |
| 222 | source src/ec/Kconfig |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 223 | |
| 224 | endmenu |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 225 | |
Stefan Reinauer | 95a6396 | 2012-11-13 17:00:01 -0800 | [diff] [blame^] | 226 | source src/devices/Kconfig |
| 227 | |
Rudolf Marek | d9c2549 | 2010-05-16 15:31:53 +0000 | [diff] [blame] | 228 | menu "Generic Drivers" |
| 229 | source src/drivers/Kconfig |
| 230 | endmenu |
| 231 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 232 | config HEAP_SIZE |
| 233 | hex |
Myles Watson | 04000f4 | 2009-10-16 19:12:49 +0000 | [diff] [blame] | 234 | default 0x4000 |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 235 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 236 | config MAX_CPUS |
| 237 | int |
| 238 | default 1 |
| 239 | |
| 240 | config MMCONF_SUPPORT_DEFAULT |
| 241 | bool |
| 242 | default n |
| 243 | |
| 244 | config MMCONF_SUPPORT |
| 245 | bool |
| 246 | default n |
| 247 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 248 | source src/console/Kconfig |
| 249 | |
Stefan Reinauer | 4885daa | 2011-04-26 23:47:04 +0000 | [diff] [blame] | 250 | # This should default to N and be set by SuperI/O drivers that have an UART |
| 251 | config HAVE_UART_IO_MAPPED |
| 252 | bool |
| 253 | default y |
| 254 | |
| 255 | config HAVE_UART_MEMORY_MAPPED |
| 256 | bool |
| 257 | default n |
| 258 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 259 | config HAVE_ACPI_RESUME |
| 260 | bool |
| 261 | default n |
| 262 | |
Stefan Reinauer | c4f1a77 | 2010-06-05 10:03:08 +0000 | [diff] [blame] | 263 | config HAVE_ACPI_SLIC |
| 264 | bool |
| 265 | default n |
| 266 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 267 | config ACPI_SSDTX_NUM |
| 268 | int |
| 269 | default 0 |
| 270 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 271 | config HAVE_HARD_RESET |
| 272 | bool |
Uwe Hermann | 748475b | 2009-10-09 11:47:21 +0000 | [diff] [blame] | 273 | default n |
Patrick Georgi | 37bdb87 | 2010-02-27 08:39:04 +0000 | [diff] [blame] | 274 | help |
| 275 | This variable specifies whether a given board has a hard_reset |
| 276 | function, no matter if it's provided by board code or chipset code. |
| 277 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 278 | config HAVE_INIT_TIMER |
| 279 | bool |
Patrick Georgi | 1f807fd | 2010-01-04 20:09:27 +0000 | [diff] [blame] | 280 | default n if UDELAY_IO |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 281 | default y |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 282 | |
zbao | f722373 | 2012-04-13 13:42:15 +0800 | [diff] [blame] | 283 | config HIGH_SCRATCH_MEMORY_SIZE |
| 284 | hex |
| 285 | default 0x0 |
| 286 | |
Edwin Beasant | eb50c7d | 2010-07-06 21:05:04 +0000 | [diff] [blame] | 287 | config USE_OPTION_TABLE |
| 288 | bool |
| 289 | default n |
| 290 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 291 | config HAVE_OPTION_TABLE |
| 292 | bool |
Edwin Beasant | eb50c7d | 2010-07-06 21:05:04 +0000 | [diff] [blame] | 293 | default n |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 294 | help |
| 295 | This variable specifies whether a given board has a cmos.layout |
| 296 | file containing NVRAM/CMOS bit definitions. |
Edwin Beasant | eb50c7d | 2010-07-06 21:05:04 +0000 | [diff] [blame] | 297 | It defaults to 'n' but can be selected in mainboard/*/Kconfig. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 298 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 299 | config PIRQ_ROUTE |
| 300 | bool |
| 301 | default n |
| 302 | |
| 303 | config HAVE_SMI_HANDLER |
| 304 | bool |
| 305 | default n |
| 306 | |
| 307 | config PCI_IO_CFG_EXT |
| 308 | bool |
| 309 | default n |
| 310 | |
| 311 | config IOAPIC |
| 312 | bool |
| 313 | default n |
| 314 | |
Stefan Reinauer | 5b63579 | 2012-08-16 14:05:42 -0700 | [diff] [blame] | 315 | config CBFS_SIZE |
| 316 | hex |
| 317 | default ROM_SIZE |
| 318 | |
| 319 | config CACHE_ROM_SIZE |
| 320 | hex |
| 321 | default CBFS_SIZE |
| 322 | |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 323 | # 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] | 324 | config VIDEO_MB |
| 325 | int |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 326 | default 0 |
Uwe Hermann | 70b0cf2 | 2009-10-04 17:15:39 +0000 | [diff] [blame] | 327 | |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 328 | config USE_WATCHDOG_ON_BOOT |
| 329 | bool |
| 330 | default n |
| 331 | |
| 332 | config VGA |
| 333 | bool |
| 334 | default n |
| 335 | help |
| 336 | Build board-specific VGA code. |
| 337 | |
| 338 | config GFXUMA |
| 339 | bool |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 340 | default n |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 341 | help |
| 342 | Enable Unified Memory Architecture for graphics. |
| 343 | |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 344 | config HAVE_ACPI_TABLES |
| 345 | bool |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 346 | help |
| 347 | This variable specifies whether a given board has ACPI table support. |
| 348 | It is usually set in mainboard/*/Kconfig. |
| 349 | Whether or not the ACPI tables are actually generated by coreboot |
| 350 | is configurable by the user via GENERATE_ACPI_TABLES. |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 351 | |
| 352 | config HAVE_MP_TABLE |
| 353 | bool |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 354 | help |
| 355 | This variable specifies whether a given board has MP table support. |
| 356 | It is usually set in mainboard/*/Kconfig. |
| 357 | Whether or not the MP table is actually generated by coreboot |
| 358 | is configurable by the user via GENERATE_MP_TABLE. |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 359 | |
| 360 | config HAVE_PIRQ_TABLE |
| 361 | bool |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 362 | help |
| 363 | This variable specifies whether a given board has PIRQ table support. |
| 364 | It is usually set in mainboard/*/Kconfig. |
| 365 | Whether or not the PIRQ table is actually generated by coreboot |
| 366 | is configurable by the user via GENERATE_PIRQ_TABLE. |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 367 | |
Alexandru Gagniuc | 70c660f | 2012-08-23 02:32:58 -0500 | [diff] [blame] | 368 | config MAX_PIRQ_LINKS |
| 369 | int |
| 370 | default 4 |
| 371 | help |
| 372 | This variable specifies the number of PIRQ interrupt links which are |
| 373 | routable. On most chipsets, this is 4, INTA through INTD. Some |
| 374 | chipsets offer more than four links, commonly up to INTH. They may |
| 375 | also have a separate link for ATA or IOAPIC interrupts. When the PIRQ |
| 376 | table specifies links greater than 4, pirq_route_irqs will not |
| 377 | function properly, unless this variable is correctly set. |
| 378 | |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 379 | #These Options are here to avoid "undefined" warnings. |
| 380 | #The actual selection and help texts are in the following menu. |
| 381 | |
| 382 | config GENERATE_ACPI_TABLES |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 383 | bool |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 384 | default HAVE_ACPI_TABLES |
| 385 | |
| 386 | config GENERATE_MP_TABLE |
| 387 | bool |
Kyösti Mälkki | 651339b | 2012-08-25 00:21:44 +0300 | [diff] [blame] | 388 | default HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 389 | |
| 390 | config GENERATE_PIRQ_TABLE |
| 391 | bool |
| 392 | default HAVE_PIRQ_TABLE |
| 393 | |
Sven Schnelle | 164bcfd | 2011-08-14 20:56:34 +0200 | [diff] [blame] | 394 | config GENERATE_SMBIOS_TABLES |
| 395 | bool |
| 396 | default y |
| 397 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 398 | menu "System tables" |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 399 | |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 400 | config WRITE_HIGH_TABLES |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 401 | bool "Write 'high' tables to avoid being overwritten in F segment" |
| 402 | default y |
| 403 | |
| 404 | config MULTIBOOT |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 405 | bool "Generate Multiboot tables (for GRUB2)" |
Ronald G. Minnich | 7f91d92 | 2009-11-09 17:56:47 +0000 | [diff] [blame] | 406 | default y |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 407 | |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 408 | config GENERATE_ACPI_TABLES |
| 409 | depends on HAVE_ACPI_TABLES |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 410 | bool "Generate ACPI tables" |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 411 | default y |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 412 | help |
| 413 | Generate ACPI tables for this board. |
| 414 | |
| 415 | If unsure, say Y. |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 416 | |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 417 | config GENERATE_MP_TABLE |
Kyösti Mälkki | 651339b | 2012-08-25 00:21:44 +0300 | [diff] [blame] | 418 | depends on HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 419 | bool "Generate an MP table" |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 420 | default y |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 421 | help |
| 422 | Generate an MP table (conforming to the Intel MultiProcessor |
| 423 | specification 1.4) for this board. |
| 424 | |
| 425 | If unsure, say Y. |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 426 | |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 427 | config GENERATE_PIRQ_TABLE |
| 428 | depends on HAVE_PIRQ_TABLE |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 429 | bool "Generate a PIRQ table" |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 430 | default y |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 431 | help |
| 432 | Generate a PIRQ table for this board. |
| 433 | |
| 434 | If unsure, say Y. |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 435 | |
Sven Schnelle | 164bcfd | 2011-08-14 20:56:34 +0200 | [diff] [blame] | 436 | config GENERATE_SMBIOS_TABLES |
| 437 | depends on ARCH_X86 |
| 438 | bool "Generate SMBIOS tables" |
| 439 | default y |
| 440 | help |
| 441 | Generate SMBIOS tables for this board. |
| 442 | |
| 443 | If unsure, say Y. |
| 444 | |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 445 | endmenu |
| 446 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 447 | menu "Payload" |
| 448 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 449 | choice |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 450 | prompt "Add a payload" |
Stefan Reinauer | f1939bb | 2010-12-30 17:39:50 +0000 | [diff] [blame] | 451 | default PAYLOAD_NONE if !ARCH_X86 |
| 452 | default PAYLOAD_SEABIOS if ARCH_X86 |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 453 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 454 | config PAYLOAD_NONE |
| 455 | bool "None" |
| 456 | help |
| 457 | Select this option if you want to create an "empty" coreboot |
| 458 | ROM image for a certain mainboard, i.e. a coreboot ROM image |
| 459 | which does not yet contain a payload. |
| 460 | |
| 461 | For such an image to be useful, you have to use 'cbfstool' |
| 462 | to add a payload to the ROM image later. |
| 463 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 464 | config PAYLOAD_ELF |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 465 | bool "An ELF executable payload" |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 466 | help |
| 467 | Select this option if you have a payload image (an ELF file) |
| 468 | which coreboot should run as soon as the basic hardware |
| 469 | initialization is completed. |
| 470 | |
| 471 | You will be able to specify the location and file name of the |
| 472 | payload image later. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 473 | |
Stefan Reinauer | f1939bb | 2010-12-30 17:39:50 +0000 | [diff] [blame] | 474 | config PAYLOAD_SEABIOS |
| 475 | bool "SeaBIOS" |
| 476 | depends on ARCH_X86 |
| 477 | help |
| 478 | Select this option if you want to build a coreboot image |
| 479 | with a SeaBIOS payload. If you don't know what this is |
| 480 | about, just leave it enabled. |
| 481 | |
| 482 | See http://coreboot.org/Payloads for more information. |
| 483 | |
Stefan Reinauer | e50952f | 2011-04-15 03:34:05 +0000 | [diff] [blame] | 484 | config PAYLOAD_FILO |
| 485 | bool "FILO" |
| 486 | help |
| 487 | Select this option if you want to build a coreboot image |
| 488 | with a FILO payload. If you don't know what this is |
| 489 | about, just leave it enabled. |
| 490 | |
| 491 | See http://coreboot.org/Payloads for more information. |
| 492 | |
Stefan Reinauer | f1939bb | 2010-12-30 17:39:50 +0000 | [diff] [blame] | 493 | endchoice |
| 494 | |
| 495 | choice |
| 496 | prompt "SeaBIOS version" |
| 497 | default SEABIOS_STABLE |
| 498 | depends on PAYLOAD_SEABIOS |
| 499 | |
| 500 | config SEABIOS_STABLE |
Peter Stuge | 9b48ef2 | 2012-10-16 02:25:07 +0200 | [diff] [blame] | 501 | bool "1.7.1" |
Stefan Reinauer | f1939bb | 2010-12-30 17:39:50 +0000 | [diff] [blame] | 502 | help |
| 503 | Stable SeaBIOS version |
| 504 | config SEABIOS_MASTER |
| 505 | bool "master" |
| 506 | help |
| 507 | Newest SeaBIOS version |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 508 | endchoice |
| 509 | |
Stefan Reinauer | e50952f | 2011-04-15 03:34:05 +0000 | [diff] [blame] | 510 | choice |
| 511 | prompt "FILO version" |
| 512 | default FILO_STABLE |
| 513 | depends on PAYLOAD_FILO |
| 514 | |
| 515 | config FILO_STABLE |
| 516 | bool "0.6.0" |
| 517 | help |
| 518 | Stable FILO version |
| 519 | config FILO_MASTER |
| 520 | bool "HEAD" |
| 521 | help |
| 522 | Newest FILO version |
| 523 | endchoice |
| 524 | |
Stefan Reinauer | bccbbe6 | 2010-12-19 21:20:14 +0000 | [diff] [blame] | 525 | config PAYLOAD_FILE |
Cristi Magherusan | b5034d4 | 2009-08-17 14:47:32 +0000 | [diff] [blame] | 526 | string "Payload path and filename" |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 527 | depends on PAYLOAD_ELF |
| 528 | default "payload.elf" |
| 529 | help |
Uwe Hermann | 5ec2c2b | 2009-08-25 00:53:22 +0000 | [diff] [blame] | 530 | 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] | 531 | |
Stefan Reinauer | f1939bb | 2010-12-30 17:39:50 +0000 | [diff] [blame] | 532 | config PAYLOAD_FILE |
| 533 | depends on PAYLOAD_SEABIOS |
Stefan Reinauer | aff6dc2 | 2012-01-21 10:34:22 -0800 | [diff] [blame] | 534 | default "$(obj)/seabios/out/bios.bin.elf" |
Stefan Reinauer | f1939bb | 2010-12-30 17:39:50 +0000 | [diff] [blame] | 535 | |
Stefan Reinauer | e50952f | 2011-04-15 03:34:05 +0000 | [diff] [blame] | 536 | config PAYLOAD_FILE |
| 537 | depends on PAYLOAD_FILO |
| 538 | default "payloads/external/FILO/filo/build/filo.elf" |
| 539 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 540 | # TODO: Defined if no payload? Breaks build? |
| 541 | config COMPRESSED_PAYLOAD_LZMA |
| 542 | bool "Use LZMA compression for payloads" |
| 543 | default y |
Stefan Reinauer | e50952f | 2011-04-15 03:34:05 +0000 | [diff] [blame] | 544 | depends on PAYLOAD_ELF || PAYLOAD_SEABIOS || PAYLOAD_FILO |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 545 | help |
| 546 | In order to reduce the size payloads take up in the ROM chip |
| 547 | coreboot can compress them using the LZMA algorithm. |
| 548 | |
Myles Watson | 04000f4 | 2009-10-16 19:12:49 +0000 | [diff] [blame] | 549 | config COMPRESSED_PAYLOAD_NRV2B |
Peter Stuge | d7b37b0 | 2009-10-17 03:00:04 +0000 | [diff] [blame] | 550 | bool |
Myles Watson | 04000f4 | 2009-10-16 19:12:49 +0000 | [diff] [blame] | 551 | default n |
| 552 | |
Peter Stuge | a758ca2 | 2009-09-17 16:21:31 +0000 | [diff] [blame] | 553 | endmenu |
| 554 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 555 | menu "Debugging" |
| 556 | |
| 557 | # TODO: Better help text and detailed instructions. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 558 | config GDB_STUB |
Uwe Hermann | 5ec2c2b | 2009-08-25 00:53:22 +0000 | [diff] [blame] | 559 | bool "GDB debugging support" |
Rudolf Marek | 6588802 | 2012-03-25 20:51:16 +0200 | [diff] [blame] | 560 | default n |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 561 | help |
Uwe Hermann | 5ec2c2b | 2009-08-25 00:53:22 +0000 | [diff] [blame] | 562 | If enabled, you will be able to set breakpoints for gdb debugging. |
Stefan Reinauer | 8677a23 | 2010-12-11 20:33:41 +0000 | [diff] [blame] | 563 | See src/arch/x86/lib/c_start.S for details. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 564 | |
Denis 'GNUtoo' Carikli | e4cece0 | 2012-06-22 15:56:37 +0200 | [diff] [blame] | 565 | config GDB_WAIT |
| 566 | bool "Wait for a GDB connection" |
| 567 | default n |
| 568 | depends on GDB_STUB |
| 569 | help |
| 570 | If enabled, coreboot will wait for a GDB connection. |
| 571 | |
Stefan Reinauer | fe42218 | 2012-05-02 16:33:18 -0700 | [diff] [blame] | 572 | config DEBUG_CBFS |
| 573 | bool "Output verbose CBFS debug messages" |
| 574 | default n |
| 575 | depends on TPM |
| 576 | help |
| 577 | This option enables additional CBFS related debug messages. |
| 578 | |
Jens Rottmann | 0d11f2d | 2010-08-26 12:46:02 +0000 | [diff] [blame] | 579 | config HAVE_DEBUG_RAM_SETUP |
| 580 | def_bool n |
| 581 | |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 582 | config DEBUG_RAM_SETUP |
| 583 | bool "Output verbose RAM init debug messages" |
| 584 | default n |
Jens Rottmann | 0d11f2d | 2010-08-26 12:46:02 +0000 | [diff] [blame] | 585 | depends on HAVE_DEBUG_RAM_SETUP |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 586 | help |
| 587 | This option enables additional RAM init related debug messages. |
| 588 | It is recommended to enable this when debugging issues on your |
| 589 | board which might be RAM init related. |
| 590 | |
| 591 | Note: This option will increase the size of the coreboot image. |
| 592 | |
| 593 | If unsure, say N. |
| 594 | |
Patrick Georgi | e82618d | 2010-10-01 14:50:12 +0000 | [diff] [blame] | 595 | config HAVE_DEBUG_CAR |
| 596 | def_bool n |
| 597 | |
Peter Stuge | 5015f79 | 2010-11-10 02:00:32 +0000 | [diff] [blame] | 598 | config DEBUG_CAR |
| 599 | def_bool n |
| 600 | depends on HAVE_DEBUG_CAR |
| 601 | |
| 602 | if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 603 | # Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional |
| 604 | # printk(BIOS_DEBUG, ...) calls. |
Patrick Georgi | e82618d | 2010-10-01 14:50:12 +0000 | [diff] [blame] | 605 | config DEBUG_CAR |
| 606 | bool "Output verbose Cache-as-RAM debug messages" |
| 607 | default n |
Peter Stuge | 5015f79 | 2010-11-10 02:00:32 +0000 | [diff] [blame] | 608 | depends on HAVE_DEBUG_CAR |
Patrick Georgi | e82618d | 2010-10-01 14:50:12 +0000 | [diff] [blame] | 609 | help |
| 610 | This option enables additional CAR related debug messages. |
Peter Stuge | 5015f79 | 2010-11-10 02:00:32 +0000 | [diff] [blame] | 611 | endif |
Patrick Georgi | e82618d | 2010-10-01 14:50:12 +0000 | [diff] [blame] | 612 | |
Myles Watson | 80e914ff | 2010-06-01 19:25:31 +0000 | [diff] [blame] | 613 | config DEBUG_PIRQ |
| 614 | bool "Check PIRQ table consistency" |
| 615 | default n |
| 616 | depends on GENERATE_PIRQ_TABLE |
| 617 | help |
| 618 | If unsure, say N. |
| 619 | |
Jens Rottmann | 0d11f2d | 2010-08-26 12:46:02 +0000 | [diff] [blame] | 620 | config HAVE_DEBUG_SMBUS |
| 621 | def_bool n |
| 622 | |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 623 | config DEBUG_SMBUS |
| 624 | bool "Output verbose SMBus debug messages" |
| 625 | default n |
Jens Rottmann | 0d11f2d | 2010-08-26 12:46:02 +0000 | [diff] [blame] | 626 | depends on HAVE_DEBUG_SMBUS |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 627 | help |
| 628 | This option enables additional SMBus (and SPD) debug messages. |
| 629 | |
| 630 | Note: This option will increase the size of the coreboot image. |
| 631 | |
| 632 | If unsure, say N. |
| 633 | |
| 634 | config DEBUG_SMI |
| 635 | bool "Output verbose SMI debug messages" |
| 636 | default n |
| 637 | depends on HAVE_SMI_HANDLER |
| 638 | help |
| 639 | This option enables additional SMI related debug messages. |
| 640 | |
| 641 | Note: This option will increase the size of the coreboot image. |
| 642 | |
| 643 | If unsure, say N. |
| 644 | |
Stefan Reinauer | bc0f7a6 | 2010-08-01 15:41:14 +0000 | [diff] [blame] | 645 | config DEBUG_SMM_RELOCATION |
| 646 | bool "Debug SMM relocation code" |
| 647 | default n |
| 648 | depends on HAVE_SMI_HANDLER |
| 649 | help |
| 650 | This option enables additional SMM handler relocation related |
| 651 | debug messages. |
| 652 | |
| 653 | Note: This option will increase the size of the coreboot image. |
| 654 | |
| 655 | If unsure, say N. |
| 656 | |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 657 | # Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional |
| 658 | # printk(BIOS_DEBUG, ...) calls. |
| 659 | config DEBUG_MALLOC |
Stefan Reinauer | 95a6396 | 2012-11-13 17:00:01 -0800 | [diff] [blame^] | 660 | prompt "Output verbose malloc debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 |
| 661 | bool |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 662 | default n |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 663 | help |
| 664 | This option enables additional malloc related debug messages. |
| 665 | |
| 666 | Note: This option will increase the size of the coreboot image. |
| 667 | |
| 668 | If unsure, say N. |
Cristian Măgherușan-Stanciu | 9f52ea4 | 2011-07-02 00:44:39 +0300 | [diff] [blame] | 669 | |
| 670 | # Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional |
| 671 | # printk(BIOS_DEBUG, ...) calls. |
Cristian Măgherușan-Stanciu | 9f52ea4 | 2011-07-02 00:44:39 +0300 | [diff] [blame] | 672 | config DEBUG_ACPI |
Stefan Reinauer | 95a6396 | 2012-11-13 17:00:01 -0800 | [diff] [blame^] | 673 | prompt "Output verbose ACPI debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 |
| 674 | bool |
Cristian Măgherușan-Stanciu | 9f52ea4 | 2011-07-02 00:44:39 +0300 | [diff] [blame] | 675 | default n |
| 676 | help |
| 677 | This option enables additional ACPI related debug messages. |
| 678 | |
| 679 | Note: This option will slightly increase the size of the coreboot image. |
| 680 | |
| 681 | If unsure, say N. |
Cristian Măgherușan-Stanciu | 9f52ea4 | 2011-07-02 00:44:39 +0300 | [diff] [blame] | 682 | |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 683 | # Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional |
| 684 | # printk(BIOS_DEBUG, ...) calls. |
Myles Watson | 6c9bc01 | 2010-09-07 22:30:15 +0000 | [diff] [blame] | 685 | config REALMODE_DEBUG |
Stefan Reinauer | 95a6396 | 2012-11-13 17:00:01 -0800 | [diff] [blame^] | 686 | prompt "Enable debug messages for option ROM execution" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 |
| 687 | bool |
Myles Watson | 6c9bc01 | 2010-09-07 22:30:15 +0000 | [diff] [blame] | 688 | default n |
Peter Stuge | 5015f79 | 2010-11-10 02:00:32 +0000 | [diff] [blame] | 689 | depends on PCI_OPTION_ROM_RUN_REALMODE |
Myles Watson | 6c9bc01 | 2010-09-07 22:30:15 +0000 | [diff] [blame] | 690 | help |
| 691 | This option enables additional x86emu related debug messages. |
| 692 | |
| 693 | Note: This option will increase the time to emulate a ROM. |
| 694 | |
| 695 | If unsure, say N. |
| 696 | |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 697 | config X86EMU_DEBUG |
| 698 | bool "Output verbose x86emu debug messages" |
| 699 | default n |
| 700 | depends on PCI_OPTION_ROM_RUN_YABEL |
| 701 | help |
| 702 | This option enables additional x86emu related debug messages. |
| 703 | |
| 704 | Note: This option will increase the size of the coreboot image. |
| 705 | |
| 706 | If unsure, say N. |
| 707 | |
| 708 | config X86EMU_DEBUG_JMP |
| 709 | bool "Trace JMP/RETF" |
| 710 | default n |
| 711 | depends on X86EMU_DEBUG |
| 712 | help |
| 713 | Print information about JMP and RETF opcodes from x86emu. |
| 714 | |
| 715 | Note: This option will increase the size of the coreboot image. |
| 716 | |
| 717 | If unsure, say N. |
| 718 | |
| 719 | config X86EMU_DEBUG_TRACE |
| 720 | bool "Trace all opcodes" |
| 721 | default n |
| 722 | depends on X86EMU_DEBUG |
| 723 | help |
| 724 | Print _all_ opcodes that are executed by x86emu. |
Stefan Reinauer | 14e2277 | 2010-04-27 06:56:47 +0000 | [diff] [blame] | 725 | |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 726 | WARNING: This will produce a LOT of output and take a long time. |
| 727 | |
| 728 | Note: This option will increase the size of the coreboot image. |
| 729 | |
| 730 | If unsure, say N. |
| 731 | |
| 732 | config X86EMU_DEBUG_PNP |
| 733 | bool "Log Plug&Play accesses" |
| 734 | default n |
| 735 | depends on X86EMU_DEBUG |
| 736 | help |
| 737 | Print Plug And Play accesses made by option ROMs. |
| 738 | |
| 739 | Note: This option will increase the size of the coreboot image. |
| 740 | |
| 741 | If unsure, say N. |
| 742 | |
| 743 | config X86EMU_DEBUG_DISK |
| 744 | bool "Log Disk I/O" |
| 745 | default n |
| 746 | depends on X86EMU_DEBUG |
| 747 | help |
| 748 | Print Disk I/O related messages. |
| 749 | |
| 750 | Note: This option will increase the size of the coreboot image. |
| 751 | |
| 752 | If unsure, say N. |
| 753 | |
| 754 | config X86EMU_DEBUG_PMM |
| 755 | bool "Log PMM" |
| 756 | default n |
| 757 | depends on X86EMU_DEBUG |
| 758 | help |
| 759 | Print messages related to POST Memory Manager (PMM). |
| 760 | |
| 761 | Note: This option will increase the size of the coreboot image. |
| 762 | |
| 763 | If unsure, say N. |
| 764 | |
| 765 | |
| 766 | config X86EMU_DEBUG_VBE |
| 767 | bool "Debug VESA BIOS Extensions" |
| 768 | default n |
| 769 | depends on X86EMU_DEBUG |
| 770 | help |
| 771 | Print messages related to VESA BIOS Extension (VBE) functions. |
| 772 | |
| 773 | Note: This option will increase the size of the coreboot image. |
| 774 | |
| 775 | If unsure, say N. |
| 776 | |
| 777 | config X86EMU_DEBUG_INT10 |
| 778 | bool "Redirect INT10 output to console" |
| 779 | default n |
| 780 | depends on X86EMU_DEBUG |
| 781 | help |
| 782 | Let INT10 (i.e. character output) calls print messages to debug output. |
| 783 | |
| 784 | Note: This option will increase the size of the coreboot image. |
| 785 | |
| 786 | If unsure, say N. |
| 787 | |
| 788 | config X86EMU_DEBUG_INTERRUPTS |
| 789 | bool "Log intXX calls" |
| 790 | default n |
| 791 | depends on X86EMU_DEBUG |
| 792 | help |
| 793 | Print messages related to interrupt handling. |
| 794 | |
| 795 | Note: This option will increase the size of the coreboot image. |
| 796 | |
| 797 | If unsure, say N. |
| 798 | |
| 799 | config X86EMU_DEBUG_CHECK_VMEM_ACCESS |
| 800 | bool "Log special memory accesses" |
| 801 | default n |
| 802 | depends on X86EMU_DEBUG |
| 803 | help |
| 804 | Print messages related to accesses to certain areas of the virtual |
| 805 | memory (e.g. BDA (BIOS Data Area) or interrupt vectors) |
| 806 | |
| 807 | Note: This option will increase the size of the coreboot image. |
| 808 | |
| 809 | If unsure, say N. |
| 810 | |
| 811 | config X86EMU_DEBUG_MEM |
| 812 | bool "Log all memory accesses" |
| 813 | default n |
| 814 | depends on X86EMU_DEBUG |
| 815 | help |
| 816 | Print memory accesses made by option ROM. |
| 817 | Note: This also includes accesses to fetch instructions. |
| 818 | |
| 819 | Note: This option will increase the size of the coreboot image. |
| 820 | |
| 821 | If unsure, say N. |
| 822 | |
| 823 | config X86EMU_DEBUG_IO |
| 824 | bool "Log IO accesses" |
| 825 | default n |
| 826 | depends on X86EMU_DEBUG |
| 827 | help |
| 828 | Print I/O accesses made by option ROM. |
| 829 | |
| 830 | Note: This option will increase the size of the coreboot image. |
| 831 | |
| 832 | If unsure, say N. |
| 833 | |
Stefan Reinauer | dfb098d | 2011-11-17 12:50:54 -0800 | [diff] [blame] | 834 | config DEBUG_TPM |
| 835 | bool "Output verbose TPM debug messages" |
| 836 | default n |
| 837 | depends on TPM |
| 838 | help |
| 839 | This option enables additional TPM related debug messages. |
| 840 | |
Stefan Reinauer | 1c56d9b | 2012-05-10 11:27:32 -0700 | [diff] [blame] | 841 | config DEBUG_SPI_FLASH |
| 842 | bool "Output verbose SPI flash debug messages" |
| 843 | default n |
| 844 | depends on SPI_FLASH |
| 845 | help |
| 846 | This option enables additional SPI flash related debug messages. |
| 847 | |
Stefan Reinauer | 8e07382 | 2012-04-04 00:07:22 +0200 | [diff] [blame] | 848 | if SOUTHBRIDGE_INTEL_BD82X6X && DEFAULT_CONSOLE_LOGLEVEL_8 |
| 849 | # Only visible with the right southbridge and loglevel. |
| 850 | config DEBUG_INTEL_ME |
| 851 | bool "Verbose logging for Intel Management Engine" |
| 852 | default n |
| 853 | help |
| 854 | Enable verbose logging for Intel Management Engine driver that |
| 855 | is present on Intel 6-series chipsets. |
| 856 | endif |
| 857 | |
Stefan Reinauer | 5c50392 | 2010-03-13 22:07:15 +0000 | [diff] [blame] | 858 | config LLSHELL |
| 859 | bool "Built-in low-level shell" |
| 860 | default n |
| 861 | help |
| 862 | If enabled, you will have a low level shell to examine your machine. |
| 863 | Put llshell() in your (romstage) code to start the shell. |
Stefan Reinauer | 8677a23 | 2010-12-11 20:33:41 +0000 | [diff] [blame] | 864 | See src/arch/x86/llshell/llshell.inc for details. |
Stefan Reinauer | 5c50392 | 2010-03-13 22:07:15 +0000 | [diff] [blame] | 865 | |
Rudolf Marek | 7f0e930 | 2011-09-02 23:23:41 +0200 | [diff] [blame] | 866 | config TRACE |
| 867 | bool "Trace function calls" |
| 868 | default n |
| 869 | help |
| 870 | If enabled, every function will print information to console once |
| 871 | the function is entered. The syntax is ~0xaaaabbbb(0xccccdddd) |
| 872 | the 0xaaaabbbb is the actual function and 0xccccdddd is EIP |
| 873 | of calling function. Please note some printk releated functions |
| 874 | are omitted from trace to have good looking console dumps. |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 875 | endmenu |
| 876 | |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 877 | # These probably belong somewhere else, but they are needed somewhere. |
| 878 | config AP_CODE_IN_CAR |
| 879 | bool |
| 880 | default n |
| 881 | |
Jonathan Kollasch | e5b7507 | 2010-10-07 23:02:06 +0000 | [diff] [blame] | 882 | config RAMINIT_SYSINFO |
| 883 | bool |
| 884 | default n |
| 885 | |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 886 | config ENABLE_APIC_EXT_ID |
| 887 | bool |
| 888 | default n |
Myles Watson | 2e67273 | 2009-11-12 16:38:03 +0000 | [diff] [blame] | 889 | |
| 890 | config WARNINGS_ARE_ERRORS |
| 891 | bool |
Stefan Reinauer | 6f57b51 | 2010-07-08 16:41:05 +0000 | [diff] [blame] | 892 | default y |
Patrick Georgi | 436f99b | 2009-11-27 16:55:13 +0000 | [diff] [blame] | 893 | |
Peter Stuge | 51eafde | 2010-10-13 06:23:02 +0000 | [diff] [blame] | 894 | # The four POWER_BUTTON_DEFAULT_ENABLE, POWER_BUTTON_DEFAULT_DISABLE, |
| 895 | # POWER_BUTTON_FORCE_ENABLE and POWER_BUTTON_FORCE_DISABLE options are |
| 896 | # mutually exclusive. One of these options must be selected in the |
| 897 | # mainboard Kconfig if the chipset supports enabling and disabling of |
| 898 | # the power button. Chipset code uses the ENABLE_POWER_BUTTON option set |
| 899 | # in mainboard/Kconfig to know if the button should be enabled or not. |
| 900 | |
| 901 | config POWER_BUTTON_DEFAULT_ENABLE |
| 902 | def_bool n |
| 903 | help |
| 904 | Select when the board has a power button which can optionally be |
| 905 | disabled by the user. |
| 906 | |
| 907 | config POWER_BUTTON_DEFAULT_DISABLE |
| 908 | def_bool n |
| 909 | help |
| 910 | Select when the board has a power button which can optionally be |
| 911 | enabled by the user, e.g. when the board ships with a jumper over |
| 912 | the power switch contacts. |
| 913 | |
| 914 | config POWER_BUTTON_FORCE_ENABLE |
| 915 | def_bool n |
| 916 | help |
| 917 | Select when the board requires that the power button is always |
| 918 | enabled. |
| 919 | |
| 920 | config POWER_BUTTON_FORCE_DISABLE |
| 921 | def_bool n |
| 922 | help |
| 923 | Select when the board requires that the power button is always |
| 924 | disabled, e.g. when it has been hardwired to ground. |
| 925 | |
| 926 | config POWER_BUTTON_IS_OPTIONAL |
| 927 | bool |
| 928 | default y if POWER_BUTTON_DEFAULT_ENABLE || POWER_BUTTON_DEFAULT_DISABLE |
| 929 | default n if !(POWER_BUTTON_DEFAULT_ENABLE || POWER_BUTTON_DEFAULT_DISABLE) |
| 930 | help |
| 931 | Internal option that controls ENABLE_POWER_BUTTON visibility. |
| 932 | |
Stefan Reinauer | b89a761 | 2012-03-30 01:01:51 +0200 | [diff] [blame] | 933 | source src/vendorcode/Kconfig |