Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 1 | ## |
Stefan Reinauer | 16f515a | 2010-01-20 18:44:30 +0000 | [diff] [blame] | 2 | ## This file is part of the coreboot project. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 3 | ## |
Alexandru Gagniuc | 70c660f | 2012-08-23 02:32:58 -0500 | [diff] [blame] | 4 | ## Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com> |
Stefan Reinauer | 16f515a | 2010-01-20 18:44:30 +0000 | [diff] [blame] | 5 | ## Copyright (C) 2009-2010 coresystems GmbH |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 6 | ## |
Stefan Reinauer | 16f515a | 2010-01-20 18:44:30 +0000 | [diff] [blame] | 7 | ## This program is free software; you can redistribute it and/or modify |
| 8 | ## it under the terms of the GNU General Public License as published by |
| 9 | ## the Free Software Foundation; version 2 of the License. |
| 10 | ## |
| 11 | ## This program is distributed in the hope that it will be useful, |
| 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | ## GNU General Public License for more details. |
| 15 | ## |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 16 | |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 17 | mainmenu "coreboot configuration" |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 18 | |
Uwe Hermann | c04be93 | 2009-10-05 13:55:28 +0000 | [diff] [blame] | 19 | menu "General setup" |
| 20 | |
Lee Leahy | bb70c40 | 2017-04-03 07:38:20 -0700 | [diff] [blame] | 21 | config COREBOOT_BUILD |
| 22 | bool |
| 23 | default y |
| 24 | |
Uwe Hermann | c04be93 | 2009-10-05 13:55:28 +0000 | [diff] [blame] | 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 | |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 42 | choice |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 43 | prompt "Compiler to use" |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 44 | default COMPILER_GCC |
| 45 | help |
| 46 | This option allows you to select the compiler used for building |
| 47 | coreboot. |
Martin Roth | a5a628e8 | 2016-01-19 12:01:09 -0700 | [diff] [blame] | 48 | You must build the coreboot crosscompiler for the board that you |
| 49 | have selected. |
| 50 | |
| 51 | To build all the GCC crosscompilers (takes a LONG time), run: |
| 52 | make crossgcc |
| 53 | |
| 54 | For help on individual architectures, run the command: |
| 55 | make help_toolchain |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 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 |
Martin Roth | a5a628e8 | 2016-01-19 12:01:09 -0700 | [diff] [blame] | 65 | bool "LLVM/clang (TESTING ONLY - Not currently working)" |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 66 | help |
Martin Roth | a5a628e8 | 2016-01-19 12:01:09 -0700 | [diff] [blame] | 67 | Use LLVM/clang to build coreboot. To use this, you must build the |
| 68 | coreboot version of the clang compiler. Run the command |
| 69 | make clang |
| 70 | Note that this option is not currently working correctly and should |
| 71 | really only be selected if you're trying to work on getting clang |
| 72 | operational. |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 73 | |
| 74 | For details see http://clang.llvm.org. |
| 75 | |
Patrick Georgi | 23d89cc | 2010-03-16 01:17:19 +0000 | [diff] [blame] | 76 | endchoice |
| 77 | |
Patrick Georgi | 9b0de71 | 2013-12-29 18:45:23 +0100 | [diff] [blame] | 78 | config ANY_TOOLCHAIN |
| 79 | bool "Allow building with any toolchain" |
| 80 | default n |
Patrick Georgi | 9b0de71 | 2013-12-29 18:45:23 +0100 | [diff] [blame] | 81 | help |
| 82 | Many toolchains break when building coreboot since it uses quite |
| 83 | unusual linker features. Unless developers explicitely request it, |
| 84 | we'll have to assume that they use their distro compiler by mistake. |
| 85 | Make sure that using patched compilers is a conscious decision. |
| 86 | |
Patrick Georgi | 516a2a7 | 2010-03-25 21:45:25 +0000 | [diff] [blame] | 87 | config CCACHE |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 88 | bool "Use ccache to speed up (re)compilation" |
Patrick Georgi | 516a2a7 | 2010-03-25 21:45:25 +0000 | [diff] [blame] | 89 | default n |
| 90 | help |
| 91 | Enables the use of ccache for faster builds. |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 92 | |
| 93 | Requires the ccache utility in your system $PATH. |
| 94 | |
| 95 | For details see https://ccache.samba.org. |
Patrick Georgi | 516a2a7 | 2010-03-25 21:45:25 +0000 | [diff] [blame] | 96 | |
Sol Boucher | 69b88bf | 2015-02-26 11:47:19 -0800 | [diff] [blame] | 97 | config FMD_GENPARSER |
| 98 | bool "Generate flashmap descriptor parser using flex and bison" |
| 99 | default n |
Sol Boucher | 69b88bf | 2015-02-26 11:47:19 -0800 | [diff] [blame] | 100 | help |
| 101 | Enable this option if you are working on the flashmap descriptor |
| 102 | parser and made changes to fmd_scanner.l or fmd_parser.y. |
| 103 | |
| 104 | Otherwise, say N to use the provided pregenerated scanner/parser. |
| 105 | |
Martin Roth | f411b70 | 2017-04-09 19:12:42 -0600 | [diff] [blame] | 106 | config UTIL_GENPARSER |
| 107 | bool "Generate SCONFIG & BLOBTOOL parser using flex and bison" |
Stefan Reinauer | 9bf7810 | 2010-08-09 13:28:18 +0000 | [diff] [blame] | 108 | default n |
Stefan Reinauer | 9bf7810 | 2010-08-09 13:28:18 +0000 | [diff] [blame] | 109 | help |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 110 | Enable this option if you are working on the sconfig device tree |
Martin Roth | f411b70 | 2017-04-09 19:12:42 -0600 | [diff] [blame] | 111 | parser or blobtool and made changes to the .l or .y files. |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 112 | |
Sol Boucher | 69b88bf | 2015-02-26 11:47:19 -0800 | [diff] [blame] | 113 | Otherwise, say N to use the provided pregenerated scanner/parser. |
Stefan Reinauer | 9bf7810 | 2010-08-09 13:28:18 +0000 | [diff] [blame] | 114 | |
Joe Korty | 6d77252 | 2010-05-19 18:41:15 +0000 | [diff] [blame] | 115 | config USE_OPTION_TABLE |
| 116 | bool "Use CMOS for configuration values" |
Edwin Beasant | eb50c7d | 2010-07-06 21:05:04 +0000 | [diff] [blame] | 117 | depends on HAVE_OPTION_TABLE |
Joe Korty | 6d77252 | 2010-05-19 18:41:15 +0000 | [diff] [blame] | 118 | help |
| 119 | Enable this option if coreboot shall read options from the "CMOS" |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 120 | NVRAM instead of using hard-coded values. |
Joe Korty | 6d77252 | 2010-05-19 18:41:15 +0000 | [diff] [blame] | 121 | |
Timothy Pearson | f20c6e8 | 2015-02-14 16:15:31 -0600 | [diff] [blame] | 122 | config STATIC_OPTION_TABLE |
| 123 | bool "Load default configuration values into CMOS on each boot" |
Timothy Pearson | f20c6e8 | 2015-02-14 16:15:31 -0600 | [diff] [blame] | 124 | depends on USE_OPTION_TABLE |
| 125 | help |
| 126 | Enable this option to reset "CMOS" NVRAM values to default on |
| 127 | every boot. Use this if you want the NVRAM configuration to |
| 128 | never be modified from its default values. |
| 129 | |
Sven Schnelle | 8eee19d | 2011-05-02 19:53:04 +0000 | [diff] [blame] | 130 | config COMPRESS_RAMSTAGE |
| 131 | bool "Compress ramstage with LZMA" |
Martin Roth | 75e5cb7 | 2016-12-15 15:05:37 -0700 | [diff] [blame] | 132 | # Default value set at the end of the file |
Sven Schnelle | 8eee19d | 2011-05-02 19:53:04 +0000 | [diff] [blame] | 133 | help |
| 134 | Compress ramstage to save memory in the flash image. Note |
| 135 | that decompression might slow down booting if the boot flash |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 136 | is connected through a slow link (i.e. SPI). |
Sven Schnelle | 8eee19d | 2011-05-02 19:53:04 +0000 | [diff] [blame] | 137 | |
Julius Werner | 09f2921 | 2015-09-29 13:51:35 -0700 | [diff] [blame] | 138 | config COMPRESS_PRERAM_STAGES |
| 139 | bool "Compress romstage and verstage with LZ4" |
Martin Roth | f2e0461 | 2016-03-09 15:50:23 -0700 | [diff] [blame] | 140 | depends on !ARCH_X86 |
Martin Roth | 75e5cb7 | 2016-12-15 15:05:37 -0700 | [diff] [blame] | 141 | # Default value set at the end of the file |
Julius Werner | 09f2921 | 2015-09-29 13:51:35 -0700 | [diff] [blame] | 142 | help |
| 143 | Compress romstage and (if it exists) verstage with LZ4 to save flash |
| 144 | space and speed up boot, since the time for reading the image from SPI |
| 145 | (and in the vboot case verifying it) is usually much greater than the |
| 146 | time spent decompressing. Doesn't work for XIP stages (assume all |
| 147 | ARCH_X86 for now) for obvious reasons. |
| 148 | |
Cristian Măgherușan-Stanciu | d367b00 | 2011-06-19 03:03:28 +0200 | [diff] [blame] | 149 | config INCLUDE_CONFIG_FILE |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 150 | bool "Include the coreboot .config file into the ROM image" |
Martin Roth | 75e5cb7 | 2016-12-15 15:05:37 -0700 | [diff] [blame] | 151 | # Default value set at the end of the file |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 152 | help |
| 153 | Include the .config file that was used to compile coreboot |
| 154 | in the (CBFS) ROM image. This is useful if you want to know which |
| 155 | options were used to build a specific coreboot.rom image. |
| 156 | |
Daniele Forsi | 53847a2 | 2014-07-22 18:00:56 +0200 | [diff] [blame] | 157 | Saying Y here will increase the image size by 2-3KB. |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 158 | |
| 159 | You can use the following command to easily list the options: |
| 160 | |
| 161 | grep -a CONFIG_ coreboot.rom |
| 162 | |
| 163 | Alternatively, you can also use cbfstool to print the image |
| 164 | contents (including the raw 'config' item we're looking for). |
| 165 | |
| 166 | Example: |
| 167 | |
| 168 | $ cbfstool coreboot.rom print |
| 169 | coreboot.rom: 4096 kB, bootblocksize 1008, romsize 4194304, |
| 170 | offset 0x0 |
| 171 | Alignment: 64 bytes |
Steve Goodrich | f026912 | 2012-05-18 11:18:47 -0600 | [diff] [blame] | 172 | |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 173 | Name Offset Type Size |
| 174 | cmos_layout.bin 0x0 cmos layout 1159 |
| 175 | fallback/romstage 0x4c0 stage 339756 |
Daniele Forsi | 53847a2 | 2014-07-22 18:00:56 +0200 | [diff] [blame] | 176 | fallback/ramstage 0x53440 stage 186664 |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 177 | fallback/payload 0x80dc0 payload 51526 |
| 178 | config 0x8d740 raw 3324 |
| 179 | (empty) 0x8e480 null 3610440 |
Cristian Măgherușan-Stanciu | d367b00 | 2011-06-19 03:03:28 +0200 | [diff] [blame] | 180 | |
Vadim Bendebury | 9202473d | 2011-09-21 14:46:43 -0700 | [diff] [blame] | 181 | config COLLECT_TIMESTAMPS |
| 182 | bool "Create a table of timestamps collected during boot" |
Paul Menzel | 4e4a763 | 2015-10-11 11:57:44 +0200 | [diff] [blame] | 183 | default y if ARCH_X86 |
Vadim Bendebury | 9202473d | 2011-09-21 14:46:43 -0700 | [diff] [blame] | 184 | help |
Uwe Hermann | ad8c95f | 2012-04-12 22:00:03 +0200 | [diff] [blame] | 185 | Make coreboot create a table of timer-ID/timer-value pairs to |
| 186 | allow measuring time spent at different phases of the boot process. |
| 187 | |
Patrick Georgi | 7e9b9d8 | 2012-04-30 21:06:10 +0200 | [diff] [blame] | 188 | config USE_BLOBS |
| 189 | bool "Allow use of binary-only repository" |
Patrick Georgi | 7e9b9d8 | 2012-04-30 21:06:10 +0200 | [diff] [blame] | 190 | help |
| 191 | This draws in the blobs repository, which contains binary files that |
| 192 | might be required for some chipsets or boards. |
| 193 | This flag ensures that a "Free" option remains available for users. |
| 194 | |
Stefan Reinauer | d37ab45 | 2012-12-18 16:23:28 -0800 | [diff] [blame] | 195 | config COVERAGE |
| 196 | bool "Code coverage support" |
| 197 | depends on COMPILER_GCC |
Stefan Reinauer | d37ab45 | 2012-12-18 16:23:28 -0800 | [diff] [blame] | 198 | help |
| 199 | Add code coverage support for coreboot. This will store code |
| 200 | coverage information in CBMEM for extraction from user space. |
| 201 | If unsure, say N. |
| 202 | |
Ryan Salsamendi | ab37e9a | 2017-06-11 21:07:31 -0700 | [diff] [blame] | 203 | config UBSAN |
| 204 | bool "Undefined behavior sanitizer support" |
| 205 | default n |
| 206 | help |
| 207 | Instrument the code with checks for undefined behavior. If unsure, |
| 208 | say N because it adds a small performance penalty and may abort |
| 209 | on code that happens to work in spite of the UB. |
| 210 | |
Stefan Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 211 | config RELOCATABLE_RAMSTAGE |
Vladimir Serbinenko | 633352c | 2015-05-30 22:21:37 +0200 | [diff] [blame] | 212 | depends on EARLY_CBMEM_INIT |
Stefan Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 213 | bool "Build the ramstage to be relocatable in 32-bit address space." |
Vladimir Serbinenko | 633352c | 2015-05-30 22:21:37 +0200 | [diff] [blame] | 214 | select RELOCATABLE_MODULES |
Stefan Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 215 | help |
| 216 | The reloctable ramstage support allows for the ramstage to be built |
| 217 | as a relocatable module. The stage loader can identify a place |
| 218 | out of the OS way so that copying memory is unnecessary during an S3 |
| 219 | wake. When selecting this option the romstage is responsible for |
| 220 | determing a stack location to use for loading the ramstage. |
| 221 | |
| 222 | config CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM |
| 223 | depends on RELOCATABLE_RAMSTAGE |
Arthur Heymans | 410f256 | 2017-01-25 15:27:52 +0100 | [diff] [blame] | 224 | bool |
Stefan Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 225 | help |
| 226 | The relocated ramstage is saved in an area specified by the |
| 227 | by the board and/or chipset. |
| 228 | |
Stefan Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 229 | config UPDATE_IMAGE |
| 230 | bool "Update existing coreboot.rom image" |
Stefan Reinauer | 58470e3 | 2014-10-17 13:08:36 +0200 | [diff] [blame] | 231 | help |
| 232 | If this option is enabled, no new coreboot.rom file |
| 233 | is created. Instead it is expected that there already |
| 234 | is a suitable file for further processing. |
| 235 | The bootblock will not be modified. |
| 236 | |
Martin Roth | 5942e06 | 2016-01-20 14:59:21 -0700 | [diff] [blame] | 237 | If unsure, select 'N' |
| 238 | |
Konstantin Aladyshev | 6544cb3 | 2015-01-24 18:52:10 +0400 | [diff] [blame] | 239 | config BOOTSPLASH_IMAGE |
| 240 | bool "Add a bootsplash image" |
| 241 | help |
| 242 | Select this option if you have a bootsplash image that you would |
| 243 | like to add to your ROM. |
| 244 | |
| 245 | This will only add the image to the ROM. To actually run it check |
| 246 | options under 'Display' section. |
| 247 | |
| 248 | config BOOTSPLASH_FILE |
| 249 | string "Bootsplash path and filename" |
| 250 | depends on BOOTSPLASH_IMAGE |
Martin Roth | 75e5cb7 | 2016-12-15 15:05:37 -0700 | [diff] [blame] | 251 | # Default value set at the end of the file |
Konstantin Aladyshev | 6544cb3 | 2015-01-24 18:52:10 +0400 | [diff] [blame] | 252 | help |
| 253 | The path and filename of the file to use as graphical bootsplash |
| 254 | screen. The file format has to be jpg. |
| 255 | |
Uwe Hermann | c04be93 | 2009-10-05 13:55:28 +0000 | [diff] [blame] | 256 | endmenu |
| 257 | |
Martin Roth | 026e4dc | 2015-06-19 23:17:15 -0600 | [diff] [blame] | 258 | menu "Mainboard" |
| 259 | |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 260 | source "src/mainboard/Kconfig" |
Stefan Reinauer | 8aedcbc | 2010-12-16 23:37:17 +0000 | [diff] [blame] | 261 | |
Marshall Dawson | e937513 | 2016-09-04 08:38:33 -0600 | [diff] [blame] | 262 | config DEVICETREE |
| 263 | string |
| 264 | default "devicetree.cb" |
| 265 | help |
| 266 | This symbol allows mainboards to select a different file under their |
| 267 | mainboard directory for the devicetree.cb file. This allows the board |
| 268 | variants that need different devicetrees to be in the same directory. |
| 269 | |
| 270 | Examples: "devicetree.variant.cb" |
| 271 | "variant/devicetree.cb" |
| 272 | |
Martin Roth | 026e4dc | 2015-06-19 23:17:15 -0600 | [diff] [blame] | 273 | config CBFS_SIZE |
| 274 | hex "Size of CBFS filesystem in ROM" |
Martin Roth | 75e5cb7 | 2016-12-15 15:05:37 -0700 | [diff] [blame] | 275 | # Default value set at the end of the file |
Martin Roth | 026e4dc | 2015-06-19 23:17:15 -0600 | [diff] [blame] | 276 | help |
| 277 | This is the part of the ROM actually managed by CBFS, located at the |
| 278 | end of the ROM (passed through cbfstool -o) on x86 and at at the start |
| 279 | of the ROM (passed through cbfstool -s) everywhere else. It defaults |
| 280 | to span the whole ROM on all but Intel systems that use an Intel Firmware |
| 281 | Descriptor. It can be overridden to make coreboot live alongside other |
| 282 | components like ChromeOS's vboot/FMAP or Intel's IFD / ME / TXE |
| 283 | binaries. |
| 284 | |
Patrick Georgi | 8a3592e | 2015-09-16 18:10:52 +0200 | [diff] [blame] | 285 | config FMDFILE |
| 286 | string "fmap description file in fmd format" |
Patrick Georgi | 5d7ab39 | 2015-12-12 00:23:15 +0100 | [diff] [blame] | 287 | default "src/mainboard/$(CONFIG_MAINBOARD_DIR)/chromeos.fmd" if CHROMEOS |
Patrick Georgi | 8a3592e | 2015-09-16 18:10:52 +0200 | [diff] [blame] | 288 | default "" |
| 289 | help |
| 290 | The build system creates a default FMAP from ROM_SIZE and CBFS_SIZE, |
| 291 | but in some cases more complex setups are required. |
| 292 | When an fmd is specified, it overrides the default format. |
| 293 | |
Vadim Bendebury | 2658870 | 2016-06-02 20:43:19 -0700 | [diff] [blame] | 294 | config MAINBOARD_HAS_TPM2 |
| 295 | bool |
| 296 | default n |
| 297 | help |
| 298 | There is a TPM device installed on the mainboard, and it is |
| 299 | compliant with version 2 TCG TPM specification. Could be connected |
| 300 | over LPC, SPI or I2C. |
| 301 | |
Martin Roth | da1ca20 | 2015-12-26 16:51:16 -0700 | [diff] [blame] | 302 | endmenu |
| 303 | |
Martin Roth | b09a569 | 2016-01-24 19:38:33 -0700 | [diff] [blame] | 304 | # load site-local kconfig to allow user specific defaults and overrides |
| 305 | source "site-local/Kconfig" |
| 306 | |
Vladimir Serbinenko | a9db82f | 2014-10-16 13:21:47 +0200 | [diff] [blame] | 307 | config SYSTEM_TYPE_LAPTOP |
Martin Roth | 595e777 | 2015-04-26 18:53:26 -0600 | [diff] [blame] | 308 | default n |
| 309 | bool |
Vladimir Serbinenko | a9db82f | 2014-10-16 13:21:47 +0200 | [diff] [blame] | 310 | |
Werner Zeh | c0fb361 | 2016-01-14 15:08:36 +0100 | [diff] [blame] | 311 | config CBFS_AUTOGEN_ATTRIBUTES |
| 312 | default n |
| 313 | bool |
| 314 | help |
| 315 | If this option is selected, every file in cbfs which has a constraint |
| 316 | regarding position or alignment will get an additional file attribute |
| 317 | which describes this constraint. |
| 318 | |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 319 | menu "Chipset" |
| 320 | |
Duncan Laurie | d211976 | 2015-06-08 18:11:56 -0700 | [diff] [blame] | 321 | comment "SoC" |
Chris Ching | aa8e5d3 | 2017-10-20 10:43:39 -0600 | [diff] [blame] | 322 | source "src/soc/*/Kconfig" |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 323 | comment "CPU" |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 324 | source "src/cpu/Kconfig" |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 325 | comment "Northbridge" |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 326 | source "src/northbridge/*/*/Kconfig" |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 327 | comment "Southbridge" |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 328 | source "src/southbridge/*/*/Kconfig" |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 329 | comment "Super I/O" |
Omar Pakker | 57603e2 | 2016-07-29 23:31:45 +0200 | [diff] [blame] | 330 | source "src/superio/*/*/Kconfig" |
Sven Schnelle | 7592e8b | 2011-01-27 11:43:03 +0000 | [diff] [blame] | 331 | comment "Embedded Controllers" |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 332 | source "src/ec/acpi/Kconfig" |
| 333 | source "src/ec/*/*/Kconfig" |
Stefan Reinauer | 86ddd73 | 2016-03-11 20:22:28 -0800 | [diff] [blame] | 334 | # FIXME move to vendorcode |
Marc Jones | 7868797 | 2015-04-22 23:16:31 -0600 | [diff] [blame] | 335 | source "src/drivers/intel/fsp1_0/Kconfig" |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 336 | |
Martin Roth | 59aa2b1 | 2015-06-20 16:17:12 -0600 | [diff] [blame] | 337 | source "src/southbridge/intel/common/firmware/Kconfig" |
Martin Roth | e1523ec | 2015-06-19 22:30:43 -0600 | [diff] [blame] | 338 | source "src/vendorcode/*/Kconfig" |
Martin Roth | 59aa2b1 | 2015-06-20 16:17:12 -0600 | [diff] [blame] | 339 | |
Martin Roth | e1523ec | 2015-06-19 22:30:43 -0600 | [diff] [blame] | 340 | source "src/arch/*/Kconfig" |
| 341 | |
Uwe Hermann | 63a8f2a | 2009-10-26 21:42:13 +0000 | [diff] [blame] | 342 | endmenu |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 343 | |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 344 | source "src/device/Kconfig" |
Stefan Reinauer | 95a6396 | 2012-11-13 17:00:01 -0800 | [diff] [blame] | 345 | |
Rudolf Marek | d9c2549 | 2010-05-16 15:31:53 +0000 | [diff] [blame] | 346 | menu "Generic Drivers" |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 347 | source "src/drivers/*/Kconfig" |
Stefan Reinauer | 86ddd73 | 2016-03-11 20:22:28 -0800 | [diff] [blame] | 348 | source "src/drivers/*/*/Kconfig" |
Lee Leahy | 48dbc66 | 2017-05-08 16:56:03 -0700 | [diff] [blame] | 349 | source "src/commonlib/storage/Kconfig" |
Rudolf Marek | d9c2549 | 2010-05-16 15:31:53 +0000 | [diff] [blame] | 350 | endmenu |
| 351 | |
Philipp Deppenwiese | 1899fbe | 2017-10-16 17:09:33 +0200 | [diff] [blame] | 352 | menu "Security" |
| 353 | |
| 354 | source "src/security/Kconfig" |
| 355 | |
| 356 | endmenu |
| 357 | |
Martin Roth | 09210a1 | 2016-05-17 11:28:23 -0600 | [diff] [blame] | 358 | source "src/acpi/Kconfig" |
| 359 | |
Aaron Durbin | 4a36c4e | 2016-08-11 11:02:26 -0500 | [diff] [blame] | 360 | # This option is for the current boards/chipsets where SPI flash |
| 361 | # is not the boot device. Currently nearly all boards/chipsets assume |
| 362 | # SPI flash is the boot device. |
| 363 | config BOOT_DEVICE_NOT_SPI_FLASH |
| 364 | bool |
| 365 | default n |
| 366 | |
| 367 | config BOOT_DEVICE_SPI_FLASH |
| 368 | bool |
| 369 | default y if !BOOT_DEVICE_NOT_SPI_FLASH |
| 370 | default n |
| 371 | |
Aaron Durbin | 16c173f | 2016-08-11 14:04:10 -0500 | [diff] [blame] | 372 | config BOOT_DEVICE_MEMORY_MAPPED |
| 373 | bool |
| 374 | default y if ARCH_X86 && BOOT_DEVICE_SPI_FLASH |
| 375 | default n |
| 376 | help |
| 377 | Inform system if SPI is memory-mapped or not. |
| 378 | |
Aaron Durbin | e8e118d | 2016-08-12 15:00:10 -0500 | [diff] [blame] | 379 | config BOOT_DEVICE_SUPPORTS_WRITES |
| 380 | bool |
| 381 | default n |
| 382 | help |
| 383 | Indicate that the platform has writable boot device |
| 384 | support. |
| 385 | |
Patrick Georgi | 0770f25 | 2015-04-22 13:28:21 +0200 | [diff] [blame] | 386 | config RTC |
| 387 | bool |
| 388 | default n |
| 389 | |
Stefan Reinauer | 7cb01e0 | 2013-08-29 16:05:02 -0700 | [diff] [blame] | 390 | config TPM |
| 391 | bool |
| 392 | default n |
Vadim Bendebury | 2658870 | 2016-06-02 20:43:19 -0700 | [diff] [blame] | 393 | select LPC_TPM if MAINBOARD_HAS_LPC_TPM |
| 394 | select I2C_TPM if !MAINBOARD_HAS_LPC_TPM && !SPI_TPM |
Stefan Reinauer | 7cb01e0 | 2013-08-29 16:05:02 -0700 | [diff] [blame] | 395 | help |
| 396 | Enable this option to enable TPM support in coreboot. |
| 397 | |
| 398 | If unsure, say N. |
| 399 | |
Vadim Bendebury | 2658870 | 2016-06-02 20:43:19 -0700 | [diff] [blame] | 400 | config TPM2 |
| 401 | bool |
| 402 | select LPC_TPM if MAINBOARD_HAS_LPC_TPM |
| 403 | select I2C_TPM if !MAINBOARD_HAS_LPC_TPM && !SPI_TPM |
| 404 | help |
| 405 | Enable this option to enable TPM2 support in coreboot. |
| 406 | |
| 407 | If unsure, say N. |
| 408 | |
Vadim Bendebury | b9126fe | 2017-03-22 16:16:34 -0700 | [diff] [blame] | 409 | config POWER_OFF_ON_CR50_UPDATE |
| 410 | bool |
| 411 | help |
| 412 | Power off machine while waiting for CR50 update to take effect. |
| 413 | |
Aaron Durbin | 8bc896f | 2017-04-19 10:19:38 -0500 | [diff] [blame] | 414 | config MAINBOARD_HAS_TPM_CR50 |
| 415 | bool |
| 416 | default y if MAINBOARD_HAS_SPI_TPM_CR50 || MAINBOARD_HAS_I2C_TPM_CR50 |
| 417 | default n |
| 418 | select MAINBOARD_HAS_TPM2 |
Vadim Bendebury | b9126fe | 2017-03-22 16:16:34 -0700 | [diff] [blame] | 419 | select POWER_OFF_ON_CR50_UPDATE if ARCH_X86 |
Aaron Durbin | 8bc896f | 2017-04-19 10:19:38 -0500 | [diff] [blame] | 420 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 421 | config HEAP_SIZE |
| 422 | hex |
Myles Watson | 04000f4 | 2009-10-16 19:12:49 +0000 | [diff] [blame] | 423 | default 0x4000 |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 424 | |
Julius Werner | c3e7c4e | 2014-09-19 13:18:16 -0700 | [diff] [blame] | 425 | config STACK_SIZE |
| 426 | hex |
Julius Werner | 66a476a | 2015-10-12 16:45:21 -0700 | [diff] [blame] | 427 | default 0x1000 if ARCH_X86 |
| 428 | default 0x0 |
Julius Werner | c3e7c4e | 2014-09-19 13:18:16 -0700 | [diff] [blame] | 429 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 430 | config MAX_CPUS |
| 431 | int |
| 432 | default 1 |
| 433 | |
Stefan Reinauer | a48ca84 | 2015-04-04 01:58:28 +0200 | [diff] [blame] | 434 | source "src/console/Kconfig" |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 435 | |
| 436 | config HAVE_ACPI_RESUME |
| 437 | bool |
| 438 | default n |
| 439 | |
Kyösti Mälkki | 9d6f365 | 2016-06-28 07:38:46 +0300 | [diff] [blame] | 440 | config ACPI_HUGE_LOWMEM_BACKUP |
| 441 | bool |
Kyösti Mälkki | 43e9c93 | 2016-11-10 11:50:21 +0200 | [diff] [blame] | 442 | default n |
Kyösti Mälkki | 9d6f365 | 2016-06-28 07:38:46 +0300 | [diff] [blame] | 443 | help |
| 444 | On S3 resume path, backup low memory from RAMBASE..RAMTOP in CBMEM. |
| 445 | |
Aaron Durbin | 87c9fae | 2016-01-22 15:26:04 -0600 | [diff] [blame] | 446 | config RESUME_PATH_SAME_AS_BOOT |
| 447 | bool |
| 448 | default y if ARCH_X86 |
| 449 | depends on HAVE_ACPI_RESUME |
| 450 | help |
| 451 | This option indicates that when a system resumes it takes the |
| 452 | same path as a regular boot. e.g. an x86 system runs from the |
| 453 | reset vector at 0xfffffff0 on both resume and warm/cold boot. |
| 454 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 455 | config HAVE_HARD_RESET |
| 456 | bool |
Uwe Hermann | 748475b | 2009-10-09 11:47:21 +0000 | [diff] [blame] | 457 | default n |
Patrick Georgi | 37bdb87 | 2010-02-27 08:39:04 +0000 | [diff] [blame] | 458 | help |
| 459 | This variable specifies whether a given board has a hard_reset |
| 460 | function, no matter if it's provided by board code or chipset code. |
| 461 | |
Timothy Pearson | 44d5342 | 2015-05-18 16:04:10 -0500 | [diff] [blame] | 462 | config HAVE_ROMSTAGE_CONSOLE_SPINLOCK |
| 463 | bool |
Kyösti Mälkki | b5664de | 2016-07-08 13:33:00 +0300 | [diff] [blame] | 464 | depends on EARLY_CBMEM_INIT |
Timothy Pearson | 44d5342 | 2015-05-18 16:04:10 -0500 | [diff] [blame] | 465 | default n |
| 466 | |
Timothy Pearson | 7b22d84 | 2015-08-28 19:52:05 -0500 | [diff] [blame] | 467 | config HAVE_ROMSTAGE_NVRAM_CBFS_SPINLOCK |
| 468 | bool |
Kyösti Mälkki | b5664de | 2016-07-08 13:33:00 +0300 | [diff] [blame] | 469 | depends on EARLY_CBMEM_INIT |
Timothy Pearson | 7b22d84 | 2015-08-28 19:52:05 -0500 | [diff] [blame] | 470 | default n |
| 471 | help |
| 472 | This should be enabled on certain plaforms, such as the AMD |
| 473 | SR565x, that cannot handle concurrent CBFS accesses from |
| 474 | multiple APs during early startup. |
| 475 | |
Timothy Pearson | c764c74 | 2015-08-28 20:48:17 -0500 | [diff] [blame] | 476 | config HAVE_ROMSTAGE_MICROCODE_CBFS_SPINLOCK |
| 477 | bool |
Kyösti Mälkki | b5664de | 2016-07-08 13:33:00 +0300 | [diff] [blame] | 478 | depends on EARLY_CBMEM_INIT |
Timothy Pearson | c764c74 | 2015-08-28 20:48:17 -0500 | [diff] [blame] | 479 | default n |
| 480 | |
Aaron Durbin | a421791 | 2013-04-29 22:31:51 -0500 | [diff] [blame] | 481 | config HAVE_MONOTONIC_TIMER |
| 482 | def_bool n |
| 483 | help |
| 484 | The board/chipset provides a monotonic timer. |
| 485 | |
Aaron Durbin | e5e3630 | 2014-09-25 10:05:15 -0500 | [diff] [blame] | 486 | config GENERIC_UDELAY |
| 487 | def_bool n |
| 488 | depends on HAVE_MONOTONIC_TIMER |
| 489 | help |
| 490 | The board/chipset uses a generic udelay function utilizing the |
| 491 | monotonic timer. |
| 492 | |
Aaron Durbin | 340ca91 | 2013-04-30 09:58:12 -0500 | [diff] [blame] | 493 | config TIMER_QUEUE |
| 494 | def_bool n |
| 495 | depends on HAVE_MONOTONIC_TIMER |
| 496 | help |
Kyösti Mälkki | ecd8424 | 2013-09-13 07:57:49 +0300 | [diff] [blame] | 497 | Provide a timer queue for performing time-based callbacks. |
Aaron Durbin | 340ca91 | 2013-04-30 09:58:12 -0500 | [diff] [blame] | 498 | |
Aaron Durbin | 4409a5e | 2013-05-06 12:20:52 -0500 | [diff] [blame] | 499 | config COOP_MULTITASKING |
| 500 | def_bool n |
Aaron Durbin | 38c326d | 2013-05-06 12:22:23 -0500 | [diff] [blame] | 501 | depends on TIMER_QUEUE && ARCH_X86 |
Aaron Durbin | 4409a5e | 2013-05-06 12:20:52 -0500 | [diff] [blame] | 502 | help |
| 503 | Cooperative multitasking allows callbacks to be multiplexed on the |
| 504 | main thread of ramstage. With this enabled it allows for multiple |
| 505 | execution paths to take place when they have udelay() calls within |
| 506 | their code. |
| 507 | |
| 508 | config NUM_THREADS |
| 509 | int |
| 510 | default 4 |
| 511 | depends on COOP_MULTITASKING |
| 512 | help |
| 513 | How many execution threads to cooperatively multitask with. |
| 514 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 515 | config HAVE_OPTION_TABLE |
| 516 | bool |
Edwin Beasant | eb50c7d | 2010-07-06 21:05:04 +0000 | [diff] [blame] | 517 | default n |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 518 | help |
| 519 | This variable specifies whether a given board has a cmos.layout |
| 520 | file containing NVRAM/CMOS bit definitions. |
Edwin Beasant | eb50c7d | 2010-07-06 21:05:04 +0000 | [diff] [blame] | 521 | It defaults to 'n' but can be selected in mainboard/*/Kconfig. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 522 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 523 | config PIRQ_ROUTE |
| 524 | bool |
| 525 | default n |
| 526 | |
| 527 | config HAVE_SMI_HANDLER |
| 528 | bool |
| 529 | default n |
| 530 | |
| 531 | config PCI_IO_CFG_EXT |
| 532 | bool |
| 533 | default n |
| 534 | |
| 535 | config IOAPIC |
| 536 | bool |
| 537 | default n |
| 538 | |
Kyösti Mälkki | 107f72e | 2014-01-06 11:06:26 +0200 | [diff] [blame] | 539 | config CACHE_ROM_SIZE_OVERRIDE |
Stefan Reinauer | 5b63579 | 2012-08-16 14:05:42 -0700 | [diff] [blame] | 540 | hex |
Martin Roth | 3b87812 | 2016-09-30 14:43:01 -0600 | [diff] [blame] | 541 | default 0x0 |
Stefan Reinauer | 5b63579 | 2012-08-16 14:05:42 -0700 | [diff] [blame] | 542 | |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 543 | config USE_WATCHDOG_ON_BOOT |
| 544 | bool |
| 545 | default n |
| 546 | |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 547 | config GFXUMA |
| 548 | bool |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 549 | default n |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 550 | help |
| 551 | Enable Unified Memory Architecture for graphics. |
| 552 | |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 553 | config HAVE_ACPI_TABLES |
| 554 | bool |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 555 | help |
| 556 | This variable specifies whether a given board has ACPI table support. |
| 557 | It is usually set in mainboard/*/Kconfig. |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 558 | |
| 559 | config HAVE_MP_TABLE |
| 560 | bool |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 561 | help |
| 562 | This variable specifies whether a given board has MP table support. |
| 563 | It is usually set in mainboard/*/Kconfig. |
| 564 | Whether or not the MP table is actually generated by coreboot |
| 565 | is configurable by the user via GENERATE_MP_TABLE. |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 566 | |
| 567 | config HAVE_PIRQ_TABLE |
| 568 | bool |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 569 | help |
| 570 | This variable specifies whether a given board has PIRQ table support. |
| 571 | It is usually set in mainboard/*/Kconfig. |
| 572 | Whether or not the PIRQ table is actually generated by coreboot |
| 573 | is configurable by the user via GENERATE_PIRQ_TABLE. |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 574 | |
Alexandru Gagniuc | 70c660f | 2012-08-23 02:32:58 -0500 | [diff] [blame] | 575 | config MAX_PIRQ_LINKS |
| 576 | int |
| 577 | default 4 |
| 578 | help |
| 579 | This variable specifies the number of PIRQ interrupt links which are |
| 580 | routable. On most chipsets, this is 4, INTA through INTD. Some |
| 581 | chipsets offer more than four links, commonly up to INTH. They may |
| 582 | also have a separate link for ATA or IOAPIC interrupts. When the PIRQ |
| 583 | table specifies links greater than 4, pirq_route_irqs will not |
| 584 | function properly, unless this variable is correctly set. |
| 585 | |
Vladimir Serbinenko | c21e073 | 2014-10-16 12:48:19 +0200 | [diff] [blame] | 586 | config COMMON_FADT |
| 587 | bool |
| 588 | default n |
| 589 | |
Aaron Durbin | 9420a52 | 2015-11-17 16:31:00 -0600 | [diff] [blame] | 590 | config ACPI_NHLT |
| 591 | bool |
| 592 | default n |
| 593 | help |
| 594 | Build support for NHLT (non HD Audio) ACPI table generation. |
| 595 | |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 596 | #These Options are here to avoid "undefined" warnings. |
| 597 | #The actual selection and help texts are in the following menu. |
| 598 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 599 | menu "System tables" |
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_MP_TABLE |
Stefan Reinauer | 56cd70b | 2012-11-13 17:33:08 -0800 | [diff] [blame] | 602 | prompt "Generate an MP table" if HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC |
| 603 | bool |
| 604 | default HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 605 | help |
| 606 | Generate an MP table (conforming to the Intel MultiProcessor |
| 607 | specification 1.4) for this board. |
| 608 | |
| 609 | If unsure, say Y. |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 610 | |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 611 | config GENERATE_PIRQ_TABLE |
Stefan Reinauer | 56cd70b | 2012-11-13 17:33:08 -0800 | [diff] [blame] | 612 | prompt "Generate a PIRQ table" if HAVE_PIRQ_TABLE |
| 613 | bool |
| 614 | default HAVE_PIRQ_TABLE |
Uwe Hermann | 6ba13bb | 2009-10-15 17:49:07 +0000 | [diff] [blame] | 615 | help |
| 616 | Generate a PIRQ table for this board. |
| 617 | |
| 618 | If unsure, say Y. |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 619 | |
Sven Schnelle | 164bcfd | 2011-08-14 20:56:34 +0200 | [diff] [blame] | 620 | config GENERATE_SMBIOS_TABLES |
| 621 | depends on ARCH_X86 |
| 622 | bool "Generate SMBIOS tables" |
| 623 | default y |
| 624 | help |
| 625 | Generate SMBIOS tables for this board. |
| 626 | |
| 627 | If unsure, say Y. |
| 628 | |
Vladimir Serbinenko | 0afdec4 | 2015-05-30 23:08:26 +0200 | [diff] [blame] | 629 | config SMBIOS_PROVIDED_BY_MOBO |
| 630 | bool |
| 631 | default n |
| 632 | |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 633 | config MAINBOARD_SERIAL_NUMBER |
| 634 | string "SMBIOS Serial Number" |
| 635 | depends on GENERATE_SMBIOS_TABLES |
Vladimir Serbinenko | 0afdec4 | 2015-05-30 23:08:26 +0200 | [diff] [blame] | 636 | depends on !SMBIOS_PROVIDED_BY_MOBO |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 637 | default "123456789" |
Martin Roth | 595e777 | 2015-04-26 18:53:26 -0600 | [diff] [blame] | 638 | help |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 639 | The Serial Number to store in SMBIOS structures. |
| 640 | |
| 641 | config MAINBOARD_VERSION |
| 642 | string "SMBIOS Version Number" |
| 643 | depends on GENERATE_SMBIOS_TABLES |
Vladimir Serbinenko | 0afdec4 | 2015-05-30 23:08:26 +0200 | [diff] [blame] | 644 | depends on !SMBIOS_PROVIDED_BY_MOBO |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 645 | default "1.0" |
| 646 | help |
| 647 | The Version Number to store in SMBIOS structures. |
| 648 | |
| 649 | config MAINBOARD_SMBIOS_MANUFACTURER |
| 650 | string "SMBIOS Manufacturer" |
| 651 | depends on GENERATE_SMBIOS_TABLES |
Vladimir Serbinenko | 0afdec4 | 2015-05-30 23:08:26 +0200 | [diff] [blame] | 652 | depends on !SMBIOS_PROVIDED_BY_MOBO |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 653 | default MAINBOARD_VENDOR |
| 654 | help |
| 655 | Override the default Manufacturer stored in SMBIOS structures. |
| 656 | |
| 657 | config MAINBOARD_SMBIOS_PRODUCT_NAME |
| 658 | string "SMBIOS Product name" |
| 659 | depends on GENERATE_SMBIOS_TABLES |
Vladimir Serbinenko | 0afdec4 | 2015-05-30 23:08:26 +0200 | [diff] [blame] | 660 | depends on !SMBIOS_PROVIDED_BY_MOBO |
Stefan Reinauer | 6023ca4 | 2014-10-17 13:28:15 +0200 | [diff] [blame] | 661 | default MAINBOARD_PART_NUMBER |
| 662 | help |
| 663 | Override the default Product name stored in SMBIOS structures. |
| 664 | |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 665 | endmenu |
| 666 | |
Martin Roth | 21c0650 | 2016-02-04 19:52:27 -0700 | [diff] [blame] | 667 | source "payloads/Kconfig" |
Peter Stuge | a758ca2 | 2009-09-17 16:21:31 +0000 | [diff] [blame] | 668 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 669 | menu "Debugging" |
| 670 | |
| 671 | # TODO: Better help text and detailed instructions. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 672 | config GDB_STUB |
Uwe Hermann | 5ec2c2b | 2009-08-25 00:53:22 +0000 | [diff] [blame] | 673 | bool "GDB debugging support" |
Rudolf Marek | 6588802 | 2012-03-25 20:51:16 +0200 | [diff] [blame] | 674 | default n |
Denis 'GNUtoo' Carikli | 3747ba1 | 2015-12-10 22:04:56 +0100 | [diff] [blame] | 675 | depends on CONSOLE_SERIAL |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 676 | help |
Uwe Hermann | 5ec2c2b | 2009-08-25 00:53:22 +0000 | [diff] [blame] | 677 | If enabled, you will be able to set breakpoints for gdb debugging. |
Stefan Reinauer | 8677a23 | 2010-12-11 20:33:41 +0000 | [diff] [blame] | 678 | See src/arch/x86/lib/c_start.S for details. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 679 | |
Denis 'GNUtoo' Carikli | e4cece0 | 2012-06-22 15:56:37 +0200 | [diff] [blame] | 680 | config GDB_WAIT |
Denis 'GNUtoo' Carikli | 7d234f2 | 2015-12-10 21:58:52 +0100 | [diff] [blame] | 681 | bool "Wait for a GDB connection in the ramstage" |
Denis 'GNUtoo' Carikli | e4cece0 | 2012-06-22 15:56:37 +0200 | [diff] [blame] | 682 | default n |
| 683 | depends on GDB_STUB |
| 684 | help |
Denis 'GNUtoo' Carikli | 7d234f2 | 2015-12-10 21:58:52 +0100 | [diff] [blame] | 685 | If enabled, coreboot will wait for a GDB connection in the ramstage. |
| 686 | |
Denis 'GNUtoo' Carikli | e4cece0 | 2012-06-22 15:56:37 +0200 | [diff] [blame] | 687 | |
Julius Werner | d82e0cf | 2015-02-17 17:27:23 -0800 | [diff] [blame] | 688 | config FATAL_ASSERTS |
| 689 | bool "Halt when hitting a BUG() or assertion error" |
| 690 | default n |
| 691 | help |
| 692 | If enabled, coreboot will call hlt() on a BUG() or failed ASSERT(). |
| 693 | |
Stefan Reinauer | fe42218 | 2012-05-02 16:33:18 -0700 | [diff] [blame] | 694 | config DEBUG_CBFS |
| 695 | bool "Output verbose CBFS debug messages" |
| 696 | default n |
Stefan Reinauer | fe42218 | 2012-05-02 16:33:18 -0700 | [diff] [blame] | 697 | help |
| 698 | This option enables additional CBFS related debug messages. |
| 699 | |
Jens Rottmann | 0d11f2d | 2010-08-26 12:46:02 +0000 | [diff] [blame] | 700 | config HAVE_DEBUG_RAM_SETUP |
| 701 | def_bool n |
| 702 | |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 703 | config DEBUG_RAM_SETUP |
| 704 | bool "Output verbose RAM init debug messages" |
| 705 | default n |
Jens Rottmann | 0d11f2d | 2010-08-26 12:46:02 +0000 | [diff] [blame] | 706 | depends on HAVE_DEBUG_RAM_SETUP |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 707 | help |
| 708 | This option enables additional RAM init related debug messages. |
| 709 | It is recommended to enable this when debugging issues on your |
| 710 | board which might be RAM init related. |
| 711 | |
| 712 | Note: This option will increase the size of the coreboot image. |
| 713 | |
| 714 | If unsure, say N. |
| 715 | |
Patrick Georgi | e82618d | 2010-10-01 14:50:12 +0000 | [diff] [blame] | 716 | config HAVE_DEBUG_CAR |
| 717 | def_bool n |
| 718 | |
Peter Stuge | 5015f79 | 2010-11-10 02:00:32 +0000 | [diff] [blame] | 719 | config DEBUG_CAR |
| 720 | def_bool n |
| 721 | depends on HAVE_DEBUG_CAR |
| 722 | |
| 723 | if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 724 | # Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional |
| 725 | # printk(BIOS_DEBUG, ...) calls. |
Patrick Georgi | e82618d | 2010-10-01 14:50:12 +0000 | [diff] [blame] | 726 | config DEBUG_CAR |
| 727 | bool "Output verbose Cache-as-RAM debug messages" |
| 728 | default n |
Peter Stuge | 5015f79 | 2010-11-10 02:00:32 +0000 | [diff] [blame] | 729 | depends on HAVE_DEBUG_CAR |
Patrick Georgi | e82618d | 2010-10-01 14:50:12 +0000 | [diff] [blame] | 730 | help |
| 731 | This option enables additional CAR related debug messages. |
Peter Stuge | 5015f79 | 2010-11-10 02:00:32 +0000 | [diff] [blame] | 732 | endif |
Patrick Georgi | e82618d | 2010-10-01 14:50:12 +0000 | [diff] [blame] | 733 | |
Myles Watson | 80e914ff | 2010-06-01 19:25:31 +0000 | [diff] [blame] | 734 | config DEBUG_PIRQ |
| 735 | bool "Check PIRQ table consistency" |
| 736 | default n |
| 737 | depends on GENERATE_PIRQ_TABLE |
| 738 | help |
| 739 | If unsure, say N. |
| 740 | |
Jens Rottmann | 0d11f2d | 2010-08-26 12:46:02 +0000 | [diff] [blame] | 741 | config HAVE_DEBUG_SMBUS |
| 742 | def_bool n |
| 743 | |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 744 | config DEBUG_SMBUS |
| 745 | bool "Output verbose SMBus debug messages" |
| 746 | default n |
Jens Rottmann | 0d11f2d | 2010-08-26 12:46:02 +0000 | [diff] [blame] | 747 | depends on HAVE_DEBUG_SMBUS |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 748 | help |
| 749 | This option enables additional SMBus (and SPD) debug messages. |
| 750 | |
| 751 | Note: This option will increase the size of the coreboot image. |
| 752 | |
| 753 | If unsure, say N. |
| 754 | |
| 755 | config DEBUG_SMI |
| 756 | bool "Output verbose SMI debug messages" |
| 757 | default n |
| 758 | depends on HAVE_SMI_HANDLER |
Martin Roth | 3a54318 | 2015-09-28 15:27:24 -0600 | [diff] [blame] | 759 | select SPI_FLASH_SMM if SPI_CONSOLE |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 760 | help |
| 761 | This option enables additional SMI related debug messages. |
| 762 | |
| 763 | Note: This option will increase the size of the coreboot image. |
| 764 | |
| 765 | If unsure, say N. |
| 766 | |
Stefan Reinauer | bc0f7a6 | 2010-08-01 15:41:14 +0000 | [diff] [blame] | 767 | config DEBUG_SMM_RELOCATION |
| 768 | bool "Debug SMM relocation code" |
| 769 | default n |
| 770 | depends on HAVE_SMI_HANDLER |
| 771 | help |
| 772 | This option enables additional SMM handler relocation related |
| 773 | debug messages. |
| 774 | |
| 775 | Note: This option will increase the size of the coreboot image. |
| 776 | |
| 777 | If unsure, say N. |
| 778 | |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 779 | # Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional |
| 780 | # printk(BIOS_DEBUG, ...) calls. |
| 781 | config DEBUG_MALLOC |
Stefan Reinauer | 95a6396 | 2012-11-13 17:00:01 -0800 | [diff] [blame] | 782 | prompt "Output verbose malloc debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 |
| 783 | bool |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 784 | default n |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 785 | help |
| 786 | This option enables additional malloc related debug messages. |
| 787 | |
| 788 | Note: This option will increase the size of the coreboot image. |
| 789 | |
| 790 | If unsure, say N. |
Cristian Măgherușan-Stanciu | 9f52ea4 | 2011-07-02 00:44:39 +0300 | [diff] [blame] | 791 | |
| 792 | # Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional |
| 793 | # printk(BIOS_DEBUG, ...) calls. |
Cristian Măgherușan-Stanciu | 9f52ea4 | 2011-07-02 00:44:39 +0300 | [diff] [blame] | 794 | config DEBUG_ACPI |
Stefan Reinauer | 95a6396 | 2012-11-13 17:00:01 -0800 | [diff] [blame] | 795 | prompt "Output verbose ACPI debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 |
| 796 | bool |
Cristian Măgherușan-Stanciu | 9f52ea4 | 2011-07-02 00:44:39 +0300 | [diff] [blame] | 797 | default n |
| 798 | help |
| 799 | This option enables additional ACPI related debug messages. |
| 800 | |
| 801 | Note: This option will slightly increase the size of the coreboot image. |
| 802 | |
| 803 | If unsure, say N. |
Cristian Măgherușan-Stanciu | 9f52ea4 | 2011-07-02 00:44:39 +0300 | [diff] [blame] | 804 | |
Uwe Hermann | a953f37 | 2010-11-10 00:14:32 +0000 | [diff] [blame] | 805 | # Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional |
| 806 | # printk(BIOS_DEBUG, ...) calls. |
Myles Watson | 6c9bc01 | 2010-09-07 22:30:15 +0000 | [diff] [blame] | 807 | config REALMODE_DEBUG |
Stefan Reinauer | 95a6396 | 2012-11-13 17:00:01 -0800 | [diff] [blame] | 808 | prompt "Enable debug messages for option ROM execution" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8 |
| 809 | bool |
Myles Watson | 6c9bc01 | 2010-09-07 22:30:15 +0000 | [diff] [blame] | 810 | default n |
Peter Stuge | 5015f79 | 2010-11-10 02:00:32 +0000 | [diff] [blame] | 811 | depends on PCI_OPTION_ROM_RUN_REALMODE |
Myles Watson | 6c9bc01 | 2010-09-07 22:30:15 +0000 | [diff] [blame] | 812 | help |
| 813 | This option enables additional x86emu related debug messages. |
| 814 | |
| 815 | Note: This option will increase the time to emulate a ROM. |
| 816 | |
| 817 | If unsure, say N. |
| 818 | |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 819 | config X86EMU_DEBUG |
| 820 | bool "Output verbose x86emu debug messages" |
| 821 | default n |
| 822 | depends on PCI_OPTION_ROM_RUN_YABEL |
| 823 | help |
| 824 | This option enables additional x86emu related debug messages. |
| 825 | |
| 826 | Note: This option will increase the size of the coreboot image. |
| 827 | |
| 828 | If unsure, say N. |
| 829 | |
| 830 | config X86EMU_DEBUG_JMP |
| 831 | bool "Trace JMP/RETF" |
| 832 | default n |
| 833 | depends on X86EMU_DEBUG |
| 834 | help |
| 835 | Print information about JMP and RETF opcodes from x86emu. |
| 836 | |
| 837 | Note: This option will increase the size of the coreboot image. |
| 838 | |
| 839 | If unsure, say N. |
| 840 | |
| 841 | config X86EMU_DEBUG_TRACE |
| 842 | bool "Trace all opcodes" |
| 843 | default n |
| 844 | depends on X86EMU_DEBUG |
| 845 | help |
| 846 | Print _all_ opcodes that are executed by x86emu. |
Stefan Reinauer | 14e2277 | 2010-04-27 06:56:47 +0000 | [diff] [blame] | 847 | |
Uwe Hermann | 01ce601 | 2010-03-05 10:03:50 +0000 | [diff] [blame] | 848 | WARNING: This will produce a LOT of output and take a long time. |
| 849 | |
| 850 | Note: This option will increase the size of the coreboot image. |
| 851 | |
| 852 | If unsure, say N. |
| 853 | |
| 854 | config X86EMU_DEBUG_PNP |
| 855 | bool "Log Plug&Play accesses" |
| 856 | default n |
| 857 | depends on X86EMU_DEBUG |
| 858 | help |
| 859 | Print Plug And Play accesses made by option ROMs. |
| 860 | |
| 861 | Note: This option will increase the size of the coreboot image. |
| 862 | |
| 863 | If unsure, say N. |
| 864 | |
| 865 | config X86EMU_DEBUG_DISK |
| 866 | bool "Log Disk I/O" |
| 867 | default n |
| 868 | depends on X86EMU_DEBUG |
| 869 | help |
| 870 | Print Disk I/O related messages. |
| 871 | |
| 872 | Note: This option will increase the size of the coreboot image. |
| 873 | |
| 874 | If unsure, say N. |
| 875 | |
| 876 | config X86EMU_DEBUG_PMM |
| 877 | bool "Log PMM" |
| 878 | default n |
| 879 | depends on X86EMU_DEBUG |
| 880 | help |
| 881 | Print messages related to POST Memory Manager (PMM). |
| 882 | |
| 883 | Note: This option will increase the size of the coreboot image. |
| 884 | |
| 885 | If unsure, say N. |
| 886 | |
| 887 | |
| 888 | config X86EMU_DEBUG_VBE |
| 889 | bool "Debug VESA BIOS Extensions" |
| 890 | default n |
| 891 | depends on X86EMU_DEBUG |
| 892 | help |
| 893 | Print messages related to VESA BIOS Extension (VBE) functions. |
| 894 | |
| 895 | Note: This option will increase the size of the coreboot image. |
| 896 | |
| 897 | If unsure, say N. |
| 898 | |
| 899 | config X86EMU_DEBUG_INT10 |
| 900 | bool "Redirect INT10 output to console" |
| 901 | default n |
| 902 | depends on X86EMU_DEBUG |
| 903 | help |
| 904 | Let INT10 (i.e. character output) calls print messages to debug output. |
| 905 | |
| 906 | Note: This option will increase the size of the coreboot image. |
| 907 | |
| 908 | If unsure, say N. |
| 909 | |
| 910 | config X86EMU_DEBUG_INTERRUPTS |
| 911 | bool "Log intXX calls" |
| 912 | default n |
| 913 | depends on X86EMU_DEBUG |
| 914 | help |
| 915 | Print messages related to interrupt handling. |
| 916 | |
| 917 | Note: This option will increase the size of the coreboot image. |
| 918 | |
| 919 | If unsure, say N. |
| 920 | |
| 921 | config X86EMU_DEBUG_CHECK_VMEM_ACCESS |
| 922 | bool "Log special memory accesses" |
| 923 | default n |
| 924 | depends on X86EMU_DEBUG |
| 925 | help |
| 926 | Print messages related to accesses to certain areas of the virtual |
| 927 | memory (e.g. BDA (BIOS Data Area) or interrupt vectors) |
| 928 | |
| 929 | Note: This option will increase the size of the coreboot image. |
| 930 | |
| 931 | If unsure, say N. |
| 932 | |
| 933 | config X86EMU_DEBUG_MEM |
| 934 | bool "Log all memory accesses" |
| 935 | default n |
| 936 | depends on X86EMU_DEBUG |
| 937 | help |
| 938 | Print memory accesses made by option ROM. |
| 939 | Note: This also includes accesses to fetch instructions. |
| 940 | |
| 941 | Note: This option will increase the size of the coreboot image. |
| 942 | |
| 943 | If unsure, say N. |
| 944 | |
| 945 | config X86EMU_DEBUG_IO |
| 946 | bool "Log IO accesses" |
| 947 | default n |
| 948 | depends on X86EMU_DEBUG |
| 949 | help |
| 950 | Print I/O accesses made by option ROM. |
| 951 | |
| 952 | Note: This option will increase the size of the coreboot image. |
| 953 | |
| 954 | If unsure, say N. |
| 955 | |
Denis 'GNUtoo' Carikli | 4cdc5d6 | 2013-05-15 00:19:49 +0200 | [diff] [blame] | 956 | config X86EMU_DEBUG_TIMINGS |
| 957 | bool "Output timing information" |
| 958 | default n |
| 959 | depends on X86EMU_DEBUG && UDELAY_LAPIC && HAVE_MONOTONIC_TIMER |
| 960 | help |
| 961 | Print timing information needed by i915tool. |
| 962 | |
| 963 | If unsure, say N. |
| 964 | |
Stefan Reinauer | dfb098d | 2011-11-17 12:50:54 -0800 | [diff] [blame] | 965 | config DEBUG_TPM |
| 966 | bool "Output verbose TPM debug messages" |
| 967 | default n |
Vadim Bendebury | 2658870 | 2016-06-02 20:43:19 -0700 | [diff] [blame] | 968 | depends on TPM || TPM2 |
Stefan Reinauer | dfb098d | 2011-11-17 12:50:54 -0800 | [diff] [blame] | 969 | help |
| 970 | This option enables additional TPM related debug messages. |
| 971 | |
Stefan Reinauer | 1c56d9b | 2012-05-10 11:27:32 -0700 | [diff] [blame] | 972 | config DEBUG_SPI_FLASH |
| 973 | bool "Output verbose SPI flash debug messages" |
| 974 | default n |
| 975 | depends on SPI_FLASH |
| 976 | help |
| 977 | This option enables additional SPI flash related debug messages. |
| 978 | |
Kyösti Mälkki | 3be80cc | 2013-06-06 10:46:37 +0300 | [diff] [blame] | 979 | config DEBUG_USBDEBUG |
| 980 | bool "Output verbose USB 2.0 EHCI debug dongle messages" |
| 981 | default n |
| 982 | depends on USBDEBUG |
| 983 | help |
| 984 | This option enables additional USB 2.0 debug dongle related messages. |
| 985 | |
| 986 | Select this to debug the connection of usbdebug dongle. Note that |
| 987 | you need some other working console to receive the messages. |
| 988 | |
Stefan Reinauer | 8e07382 | 2012-04-04 00:07:22 +0200 | [diff] [blame] | 989 | if SOUTHBRIDGE_INTEL_BD82X6X && DEFAULT_CONSOLE_LOGLEVEL_8 |
| 990 | # Only visible with the right southbridge and loglevel. |
| 991 | config DEBUG_INTEL_ME |
| 992 | bool "Verbose logging for Intel Management Engine" |
| 993 | default n |
| 994 | help |
| 995 | Enable verbose logging for Intel Management Engine driver that |
| 996 | is present on Intel 6-series chipsets. |
| 997 | endif |
| 998 | |
Rudolf Marek | 7f0e930 | 2011-09-02 23:23:41 +0200 | [diff] [blame] | 999 | config TRACE |
| 1000 | bool "Trace function calls" |
| 1001 | default n |
| 1002 | help |
| 1003 | If enabled, every function will print information to console once |
| 1004 | the function is entered. The syntax is ~0xaaaabbbb(0xccccdddd) |
| 1005 | the 0xaaaabbbb is the actual function and 0xccccdddd is EIP |
Ben Gardner | 8420ad4 | 2015-11-18 10:46:53 -0600 | [diff] [blame] | 1006 | of calling function. Please note some printk related functions |
Rudolf Marek | 7f0e930 | 2011-09-02 23:23:41 +0200 | [diff] [blame] | 1007 | are omitted from trace to have good looking console dumps. |
Stefan Reinauer | d37ab45 | 2012-12-18 16:23:28 -0800 | [diff] [blame] | 1008 | |
| 1009 | config DEBUG_COVERAGE |
| 1010 | bool "Debug code coverage" |
| 1011 | default n |
| 1012 | depends on COVERAGE |
| 1013 | help |
| 1014 | If enabled, the code coverage hooks in coreboot will output some |
| 1015 | information about the coverage data that is dumped. |
| 1016 | |
Jonathan Neuschäfer | fc04f9b | 2016-06-29 21:59:32 +0200 | [diff] [blame] | 1017 | config DEBUG_BOOT_STATE |
| 1018 | bool "Debug boot state machine" |
| 1019 | default n |
| 1020 | help |
| 1021 | Control debugging of the boot state machine. When selected displays |
| 1022 | the state boundaries in ramstage. |
| 1023 | |
Jonathan Neuschäfer | 538e446 | 2016-08-22 19:37:15 +0200 | [diff] [blame] | 1024 | config DEBUG_PRINT_PAGE_TABLES |
| 1025 | bool "Print the page tables after construction" |
| 1026 | default n |
| 1027 | depends on ARCH_RISCV |
| 1028 | help |
| 1029 | After the page tables have been built, print them on the debug |
| 1030 | console. |
| 1031 | |
Nico Huber | e84e625 | 2016-10-05 17:43:56 +0200 | [diff] [blame] | 1032 | config DEBUG_ADA_CODE |
| 1033 | bool "Compile debug code in Ada sources" |
| 1034 | default n |
| 1035 | help |
| 1036 | Add the compiler switch `-gnata` to compile code guarded by |
| 1037 | `pragma Debug`. |
| 1038 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 1039 | endmenu |
| 1040 | |
Martin Roth | 8e4aafb | 2016-12-15 15:25:15 -0700 | [diff] [blame] | 1041 | |
| 1042 | ############################################################################### |
| 1043 | # Set variables with no prompt - these can be set anywhere, and putting at |
| 1044 | # the end of this file gives the most flexibility. |
Nico Huber | 3db7653 | 2017-05-18 18:07:34 +0200 | [diff] [blame] | 1045 | |
| 1046 | source "src/lib/Kconfig" |
| 1047 | |
Myles Watson | d73c1b5 | 2009-10-26 15:14:07 +0000 | [diff] [blame] | 1048 | config ENABLE_APIC_EXT_ID |
| 1049 | bool |
| 1050 | default n |
Myles Watson | 2e67273 | 2009-11-12 16:38:03 +0000 | [diff] [blame] | 1051 | |
| 1052 | config WARNINGS_ARE_ERRORS |
| 1053 | bool |
Edward O'Callaghan | 63f6dc7 | 2014-11-18 03:17:54 +1100 | [diff] [blame] | 1054 | default y |
Patrick Georgi | 436f99b | 2009-11-27 16:55:13 +0000 | [diff] [blame] | 1055 | |
Peter Stuge | 51eafde | 2010-10-13 06:23:02 +0000 | [diff] [blame] | 1056 | # The four POWER_BUTTON_DEFAULT_ENABLE, POWER_BUTTON_DEFAULT_DISABLE, |
| 1057 | # POWER_BUTTON_FORCE_ENABLE and POWER_BUTTON_FORCE_DISABLE options are |
| 1058 | # mutually exclusive. One of these options must be selected in the |
| 1059 | # mainboard Kconfig if the chipset supports enabling and disabling of |
| 1060 | # the power button. Chipset code uses the ENABLE_POWER_BUTTON option set |
| 1061 | # in mainboard/Kconfig to know if the button should be enabled or not. |
| 1062 | |
| 1063 | config POWER_BUTTON_DEFAULT_ENABLE |
| 1064 | def_bool n |
| 1065 | help |
| 1066 | Select when the board has a power button which can optionally be |
| 1067 | disabled by the user. |
| 1068 | |
| 1069 | config POWER_BUTTON_DEFAULT_DISABLE |
| 1070 | def_bool n |
| 1071 | help |
| 1072 | Select when the board has a power button which can optionally be |
| 1073 | enabled by the user, e.g. when the board ships with a jumper over |
| 1074 | the power switch contacts. |
| 1075 | |
| 1076 | config POWER_BUTTON_FORCE_ENABLE |
| 1077 | def_bool n |
| 1078 | help |
| 1079 | Select when the board requires that the power button is always |
| 1080 | enabled. |
| 1081 | |
| 1082 | config POWER_BUTTON_FORCE_DISABLE |
| 1083 | def_bool n |
| 1084 | help |
| 1085 | Select when the board requires that the power button is always |
| 1086 | disabled, e.g. when it has been hardwired to ground. |
| 1087 | |
| 1088 | config POWER_BUTTON_IS_OPTIONAL |
| 1089 | bool |
| 1090 | default y if POWER_BUTTON_DEFAULT_ENABLE || POWER_BUTTON_DEFAULT_DISABLE |
| 1091 | default n if !(POWER_BUTTON_DEFAULT_ENABLE || POWER_BUTTON_DEFAULT_DISABLE) |
| 1092 | help |
| 1093 | Internal option that controls ENABLE_POWER_BUTTON visibility. |
Duncan Laurie | 7274800 | 2013-10-31 08:26:23 -0700 | [diff] [blame] | 1094 | |
| 1095 | config REG_SCRIPT |
| 1096 | bool |
Duncan Laurie | 7274800 | 2013-10-31 08:26:23 -0700 | [diff] [blame] | 1097 | default n |
| 1098 | help |
| 1099 | Internal option that controls whether we compile in register scripts. |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 1100 | |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 1101 | config MAX_REBOOT_CNT |
| 1102 | int |
| 1103 | default 3 |
Timothy Pearson | 17ada2e | 2015-03-18 01:31:34 -0500 | [diff] [blame] | 1104 | help |
| 1105 | Internal option that sets the maximum number of bootblock executions allowed |
| 1106 | with the normal image enabled before assuming the normal image is defective |
Vadim Bendebury | 9c9c336 | 2014-07-23 09:40:02 -0700 | [diff] [blame] | 1107 | and switching to the fallback image. |
Martin Roth | 59ff340 | 2016-02-09 09:06:46 -0700 | [diff] [blame] | 1108 | |
Lee Leahy | fc3741f | 2016-05-26 17:12:17 -0700 | [diff] [blame] | 1109 | config CREATE_BOARD_CHECKLIST |
| 1110 | bool |
| 1111 | default n |
| 1112 | help |
| 1113 | When selected, creates a webpage showing the implementation status for |
| 1114 | the board. Routines highlighted in green are complete, yellow are |
| 1115 | optional and red are required and must be implemented. A table is |
| 1116 | produced for each stage of the boot process except the bootblock. The |
| 1117 | red items may be used as an implementation checklist for the board. |
| 1118 | |
| 1119 | config MAKE_CHECKLIST_PUBLIC |
| 1120 | bool |
| 1121 | default n |
| 1122 | help |
| 1123 | When selected, build/$(CONFIG_MAINBOARD_PART_NUMBER)_checklist.html |
| 1124 | is copied into the Documentation/$(CONFIG_MAINBOARD_VENDOR)/Board |
| 1125 | directory. |
| 1126 | |
| 1127 | config CHECKLIST_DATA_FILE_LOCATION |
| 1128 | string |
| 1129 | help |
| 1130 | Location of the <stage>_complete.dat and <stage>_optional.dat files |
| 1131 | that are consumed during checklist processing. <stage>_complete.dat |
| 1132 | contains the symbols that are expected to be in the resulting image. |
| 1133 | <stage>_optional.dat is a subset of <stage>_complete.dat and contains |
| 1134 | a list of weak symbols which the resulting image may consume. Other |
| 1135 | symbols contained only in <stage>_complete.dat will be flagged as |
| 1136 | required and not implemented if a weak implementation is found in the |
| 1137 | resulting image. |
Nico Huber | e0ed902 | 2016-10-07 12:58:17 +0200 | [diff] [blame] | 1138 | |
Martin Roth | 8e4aafb | 2016-12-15 15:25:15 -0700 | [diff] [blame] | 1139 | config UNCOMPRESSED_RAMSTAGE |
| 1140 | bool |
| 1141 | |
| 1142 | config NO_XIP_EARLY_STAGES |
| 1143 | bool |
| 1144 | default n if ARCH_X86 |
| 1145 | default y |
| 1146 | help |
| 1147 | Identify if early stages are eXecute-In-Place(XIP). |
| 1148 | |
| 1149 | config EARLY_CBMEM_INIT |
| 1150 | def_bool !LATE_CBMEM_INIT |
| 1151 | |
| 1152 | config EARLY_CBMEM_LIST |
| 1153 | bool |
| 1154 | default n |
| 1155 | help |
| 1156 | Enable display of CBMEM during romstage and postcar. |
| 1157 | |
| 1158 | config RELOCATABLE_MODULES |
| 1159 | bool |
| 1160 | help |
| 1161 | If RELOCATABLE_MODULES is selected then support is enabled for |
| 1162 | building relocatable modules in the RAM stage. Those modules can be |
| 1163 | loaded anywhere and all the relocations are handled automatically. |
| 1164 | |
| 1165 | config NO_STAGE_CACHE |
| 1166 | bool |
| 1167 | help |
| 1168 | Do not save any component in stage cache for resume path. On resume, |
| 1169 | all components would be read back from CBFS again. |
| 1170 | |
| 1171 | config GENERIC_GPIO_LIB |
| 1172 | bool |
| 1173 | help |
| 1174 | If enabled, compile the generic GPIO library. A "generic" GPIO |
| 1175 | implies configurability usually found on SoCs, particularly the |
| 1176 | ability to control internal pull resistors. |
| 1177 | |
| 1178 | config GENERIC_SPD_BIN |
| 1179 | bool |
| 1180 | help |
| 1181 | If enabled, add support for adding spd.hex files in cbfs as spd.bin |
| 1182 | and locating it runtime to load SPD. Additionally provide provision to |
| 1183 | fetch SPD over SMBus. |
| 1184 | |
| 1185 | config DIMM_MAX |
| 1186 | int |
| 1187 | default 4 |
| 1188 | depends on GENERIC_SPD_BIN |
| 1189 | help |
| 1190 | Total number of memory DIMM slots available on motherboard. |
| 1191 | It is multiplication of number of channel to number of DIMMs per |
| 1192 | channel |
| 1193 | |
| 1194 | config DIMM_SPD_SIZE |
| 1195 | int |
| 1196 | default 256 |
Martin Roth | 8e4aafb | 2016-12-15 15:25:15 -0700 | [diff] [blame] | 1197 | help |
| 1198 | Total SPD size that will be used for DIMM. |
| 1199 | Ex: DDR3 256, DDR4 512. |
| 1200 | |
Kane Chen | 66f1f38 | 2017-10-16 19:40:18 +0800 | [diff] [blame] | 1201 | config SPD_READ_BY_WORD |
| 1202 | bool |
| 1203 | |
Martin Roth | 8e4aafb | 2016-12-15 15:25:15 -0700 | [diff] [blame] | 1204 | config BOOTBLOCK_CUSTOM |
| 1205 | # To be selected by arch, SoC or mainboard if it does not want use the normal |
| 1206 | # src/lib/bootblock.c#main() C entry point. |
| 1207 | bool |
| 1208 | |
| 1209 | config C_ENVIRONMENT_BOOTBLOCK |
| 1210 | # To be selected by arch or platform if a C environment is available during the |
| 1211 | # bootblock. Normally this signifies availability of RW memory (e.g. SRAM). |
| 1212 | bool |
| 1213 | |
Martin Roth | 75e5cb7 | 2016-12-15 15:05:37 -0700 | [diff] [blame] | 1214 | ############################################################################### |
| 1215 | # Set default values for symbols created before mainboards. This allows the |
| 1216 | # option to be displayed in the general menu, but the default to be loaded in |
| 1217 | # the mainboard if desired. |
| 1218 | config COMPRESS_RAMSTAGE |
| 1219 | default y if !UNCOMPRESSED_RAMSTAGE |
| 1220 | |
| 1221 | config COMPRESS_PRERAM_STAGES |
| 1222 | depends on !ARCH_X86 |
| 1223 | default y |
| 1224 | |
| 1225 | config INCLUDE_CONFIG_FILE |
| 1226 | default y |
| 1227 | |
Martin Roth | 75e5cb7 | 2016-12-15 15:05:37 -0700 | [diff] [blame] | 1228 | config BOOTSPLASH_FILE |
| 1229 | depends on BOOTSPLASH_IMAGE |
| 1230 | default "bootsplash.jpg" |
| 1231 | |
| 1232 | config CBFS_SIZE |
| 1233 | default ROM_SIZE |