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