blob: 2bb5bfeab09a733f99eef94407c0b53774565d1f [file] [log] [blame]
Patrick Georgi0588d192009-08-12 15:00:51 +00001##
Stefan Reinauer16f515a2010-01-20 18:44:30 +00002## This file is part of the coreboot project.
Patrick Georgi0588d192009-08-12 15:00:51 +00003##
Alexandru Gagniuc70c660f2012-08-23 02:32:58 -05004## Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
Stefan Reinauer16f515a2010-01-20 18:44:30 +00005## Copyright (C) 2009-2010 coresystems GmbH
Patrick Georgi0588d192009-08-12 15:00:51 +00006##
Stefan Reinauer16f515a2010-01-20 18:44:30 +00007## 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 Georgi0588d192009-08-12 15:00:51 +000016
Uwe Hermannad8c95f2012-04-12 22:00:03 +020017mainmenu "coreboot configuration"
Patrick Georgi0588d192009-08-12 15:00:51 +000018
Uwe Hermannc04be932009-10-05 13:55:28 +000019menu "General setup"
20
Lee Leahybb70c402017-04-03 07:38:20 -070021config COREBOOT_BUILD
22 bool
23 default y
24
Uwe Hermannc04be932009-10-05 13:55:28 +000025config LOCALVERSION
Uwe Hermann168b11b2009-10-07 16:15:40 +000026 string "Local version string"
Uwe Hermannc04be932009-10-05 13:55:28 +000027 help
28 Append an extra string to the end of the coreboot version.
29
Uwe Hermann168b11b2009-10-07 16:15:40 +000030 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
Arthur Heymans6f751542019-06-08 11:28:52 +020035config CONFIGURABLE_CBFS_PREFIX
36 bool
37 help
38 Select this to prompt to use to configure the prefix for cbfs files.
39
Patrick Georgi4b8a2412010-02-09 19:35:16 +000040config CBFS_PREFIX
Arthur Heymans6f751542019-06-08 11:28:52 +020041 string "CBFS prefix to use" if CONFIGURABLE_CBFS_PREFIX
Patrick Georgi4b8a2412010-02-09 19:35:16 +000042 default "fallback"
43 help
44 Select the prefix to all files put into the image. It's "fallback"
45 by default, "normal" is a common alternative.
46
Patrick Georgi23d89cc2010-03-16 01:17:19 +000047choice
Uwe Hermannad8c95f2012-04-12 22:00:03 +020048 prompt "Compiler to use"
Patrick Georgi23d89cc2010-03-16 01:17:19 +000049 default COMPILER_GCC
50 help
51 This option allows you to select the compiler used for building
52 coreboot.
Martin Rotha5a628e82016-01-19 12:01:09 -070053 You must build the coreboot crosscompiler for the board that you
54 have selected.
55
56 To build all the GCC crosscompilers (takes a LONG time), run:
57 make crossgcc
58
59 For help on individual architectures, run the command:
60 make help_toolchain
Patrick Georgi23d89cc2010-03-16 01:17:19 +000061
62config COMPILER_GCC
63 bool "GCC"
Uwe Hermannad8c95f2012-04-12 22:00:03 +020064 help
65 Use the GNU Compiler Collection (GCC) to build coreboot.
66
67 For details see http://gcc.gnu.org.
68
Patrick Georgi23d89cc2010-03-16 01:17:19 +000069config COMPILER_LLVM_CLANG
Martin Rotha5a628e82016-01-19 12:01:09 -070070 bool "LLVM/clang (TESTING ONLY - Not currently working)"
Uwe Hermannad8c95f2012-04-12 22:00:03 +020071 help
Martin Rotha5a628e82016-01-19 12:01:09 -070072 Use LLVM/clang to build coreboot. To use this, you must build the
73 coreboot version of the clang compiler. Run the command
74 make clang
75 Note that this option is not currently working correctly and should
76 really only be selected if you're trying to work on getting clang
77 operational.
Uwe Hermannad8c95f2012-04-12 22:00:03 +020078
79 For details see http://clang.llvm.org.
80
Patrick Georgi23d89cc2010-03-16 01:17:19 +000081endchoice
82
Patrick Georgi9b0de712013-12-29 18:45:23 +010083config ANY_TOOLCHAIN
84 bool "Allow building with any toolchain"
85 default n
Patrick Georgi9b0de712013-12-29 18:45:23 +010086 help
87 Many toolchains break when building coreboot since it uses quite
88 unusual linker features. Unless developers explicitely request it,
89 we'll have to assume that they use their distro compiler by mistake.
90 Make sure that using patched compilers is a conscious decision.
91
Patrick Georgi516a2a72010-03-25 21:45:25 +000092config CCACHE
Uwe Hermannad8c95f2012-04-12 22:00:03 +020093 bool "Use ccache to speed up (re)compilation"
Patrick Georgi516a2a72010-03-25 21:45:25 +000094 default n
95 help
96 Enables the use of ccache for faster builds.
Uwe Hermannad8c95f2012-04-12 22:00:03 +020097
98 Requires the ccache utility in your system $PATH.
99
100 For details see https://ccache.samba.org.
Patrick Georgi516a2a72010-03-25 21:45:25 +0000101
Sol Boucher69b88bf2015-02-26 11:47:19 -0800102config FMD_GENPARSER
103 bool "Generate flashmap descriptor parser using flex and bison"
104 default n
Sol Boucher69b88bf2015-02-26 11:47:19 -0800105 help
106 Enable this option if you are working on the flashmap descriptor
107 parser and made changes to fmd_scanner.l or fmd_parser.y.
108
109 Otherwise, say N to use the provided pregenerated scanner/parser.
110
Martin Rothf411b702017-04-09 19:12:42 -0600111config UTIL_GENPARSER
Denis 'GNUtoo' Carikli780e9312018-01-10 14:35:55 +0100112 bool "Generate SCONFIG & BINCFG parser using flex and bison"
Stefan Reinauer9bf78102010-08-09 13:28:18 +0000113 default n
Stefan Reinauer9bf78102010-08-09 13:28:18 +0000114 help
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200115 Enable this option if you are working on the sconfig device tree
Denis 'GNUtoo' Carikli780e9312018-01-10 14:35:55 +0100116 parser or bincfg and made changes to the .l or .y files.
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200117
Sol Boucher69b88bf2015-02-26 11:47:19 -0800118 Otherwise, say N to use the provided pregenerated scanner/parser.
Stefan Reinauer9bf78102010-08-09 13:28:18 +0000119
Joe Korty6d772522010-05-19 18:41:15 +0000120config USE_OPTION_TABLE
121 bool "Use CMOS for configuration values"
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000122 depends on HAVE_OPTION_TABLE
Joe Korty6d772522010-05-19 18:41:15 +0000123 help
124 Enable this option if coreboot shall read options from the "CMOS"
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200125 NVRAM instead of using hard-coded values.
Joe Korty6d772522010-05-19 18:41:15 +0000126
Timothy Pearsonf20c6e82015-02-14 16:15:31 -0600127config STATIC_OPTION_TABLE
128 bool "Load default configuration values into CMOS on each boot"
Timothy Pearsonf20c6e82015-02-14 16:15:31 -0600129 depends on USE_OPTION_TABLE
130 help
131 Enable this option to reset "CMOS" NVRAM values to default on
132 every boot. Use this if you want the NVRAM configuration to
133 never be modified from its default values.
134
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000135config COMPRESS_RAMSTAGE
136 bool "Compress ramstage with LZMA"
Subrata Banikb5962a92019-06-08 12:29:02 +0530137 depends on HAVE_RAMSTAGE
Martin Roth75e5cb72016-12-15 15:05:37 -0700138 # Default value set at the end of the file
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000139 help
140 Compress ramstage to save memory in the flash image. Note
141 that decompression might slow down booting if the boot flash
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200142 is connected through a slow link (i.e. SPI).
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000143
Julius Werner09f29212015-09-29 13:51:35 -0700144config COMPRESS_PRERAM_STAGES
145 bool "Compress romstage and verstage with LZ4"
Subrata Banikb5962a92019-06-08 12:29:02 +0530146 depends on !ARCH_X86 && (HAVE_ROMSTAGE || HAVE_VERSTAGE)
Martin Roth75e5cb72016-12-15 15:05:37 -0700147 # Default value set at the end of the file
Julius Werner09f29212015-09-29 13:51:35 -0700148 help
149 Compress romstage and (if it exists) verstage with LZ4 to save flash
150 space and speed up boot, since the time for reading the image from SPI
151 (and in the vboot case verifying it) is usually much greater than the
152 time spent decompressing. Doesn't work for XIP stages (assume all
153 ARCH_X86 for now) for obvious reasons.
154
Julius Werner99f46832018-05-16 14:14:04 -0700155config COMPRESS_BOOTBLOCK
156 bool
Subrata Banikb5962a92019-06-08 12:29:02 +0530157 depends on HAVE_BOOTBLOCK
Julius Werner99f46832018-05-16 14:14:04 -0700158 help
159 This option can be used to compress the bootblock with LZ4 and attach
160 a small self-decompression stub to its front. This can drastically
161 reduce boot time on platforms where the bootblock is loaded over a
162 very slow connection and bootblock size trumps all other factors for
Jonathan Neuschäfer2930a722018-09-29 17:42:52 +0200163 speed. Since using this option usually requires changes to the
Julius Werner99f46832018-05-16 14:14:04 -0700164 SoC memlayout and possibly extra support code, it should not be
165 user-selectable. (There's no real point in offering this to the user
166 anyway... if it works and saves boot time, you would always want it.)
167
Cristian Măgherușan-Stanciud367b002011-06-19 03:03:28 +0200168config INCLUDE_CONFIG_FILE
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200169 bool "Include the coreboot .config file into the ROM image"
Martin Roth75e5cb72016-12-15 15:05:37 -0700170 # Default value set at the end of the file
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200171 help
172 Include the .config file that was used to compile coreboot
173 in the (CBFS) ROM image. This is useful if you want to know which
174 options were used to build a specific coreboot.rom image.
175
Daniele Forsi53847a22014-07-22 18:00:56 +0200176 Saying Y here will increase the image size by 2-3KB.
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200177
178 You can use the following command to easily list the options:
179
180 grep -a CONFIG_ coreboot.rom
181
182 Alternatively, you can also use cbfstool to print the image
183 contents (including the raw 'config' item we're looking for).
184
185 Example:
186
187 $ cbfstool coreboot.rom print
188 coreboot.rom: 4096 kB, bootblocksize 1008, romsize 4194304,
189 offset 0x0
190 Alignment: 64 bytes
Steve Goodrichf0269122012-05-18 11:18:47 -0600191
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200192 Name Offset Type Size
193 cmos_layout.bin 0x0 cmos layout 1159
194 fallback/romstage 0x4c0 stage 339756
Daniele Forsi53847a22014-07-22 18:00:56 +0200195 fallback/ramstage 0x53440 stage 186664
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200196 fallback/payload 0x80dc0 payload 51526
197 config 0x8d740 raw 3324
198 (empty) 0x8e480 null 3610440
Cristian Măgherușan-Stanciud367b002011-06-19 03:03:28 +0200199
Vadim Bendebury9202473d2011-09-21 14:46:43 -0700200config COLLECT_TIMESTAMPS
201 bool "Create a table of timestamps collected during boot"
Paul Menzel4e4a7632015-10-11 11:57:44 +0200202 default y if ARCH_X86
Vadim Bendebury9202473d2011-09-21 14:46:43 -0700203 help
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200204 Make coreboot create a table of timer-ID/timer-value pairs to
205 allow measuring time spent at different phases of the boot process.
206
Martin Rothb22bbe22018-03-07 15:32:16 -0700207config TIMESTAMPS_ON_CONSOLE
208 bool "Print the timestamp values on the console"
209 default n
210 depends on COLLECT_TIMESTAMPS
211 help
212 Print the timestamps to the debug console if enabled at level spew.
213
Patrick Georgi7e9b9d82012-04-30 21:06:10 +0200214config USE_BLOBS
215 bool "Allow use of binary-only repository"
Patrick Georgi7e9b9d82012-04-30 21:06:10 +0200216 help
217 This draws in the blobs repository, which contains binary files that
218 might be required for some chipsets or boards.
219 This flag ensures that a "Free" option remains available for users.
220
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800221config COVERAGE
222 bool "Code coverage support"
223 depends on COMPILER_GCC
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800224 help
225 Add code coverage support for coreboot. This will store code
226 coverage information in CBMEM for extraction from user space.
227 If unsure, say N.
228
Ryan Salsamendiab37e9a2017-06-11 21:07:31 -0700229config UBSAN
230 bool "Undefined behavior sanitizer support"
231 default n
232 help
233 Instrument the code with checks for undefined behavior. If unsure,
234 say N because it adds a small performance penalty and may abort
235 on code that happens to work in spite of the UB.
236
Kyösti Mälkki7904e722018-06-03 14:55:10 +0300237config NO_RELOCATABLE_RAMSTAGE
238 bool
239 default n if ARCH_X86
240 default y
241
Stefan Reinauer58470e32014-10-17 13:08:36 +0200242config RELOCATABLE_RAMSTAGE
Kyösti Mälkki730df3c2016-06-18 07:39:31 +0300243 bool
Kyösti Mälkki730df3c2016-06-18 07:39:31 +0300244 default !NO_RELOCATABLE_RAMSTAGE
Vladimir Serbinenko633352c2015-05-30 22:21:37 +0200245 select RELOCATABLE_MODULES
Stefan Reinauer58470e32014-10-17 13:08:36 +0200246 help
247 The reloctable ramstage support allows for the ramstage to be built
248 as a relocatable module. The stage loader can identify a place
249 out of the OS way so that copying memory is unnecessary during an S3
250 wake. When selecting this option the romstage is responsible for
251 determing a stack location to use for loading the ramstage.
252
253config CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM
254 depends on RELOCATABLE_RAMSTAGE
Arthur Heymans410f2562017-01-25 15:27:52 +0100255 bool
Stefan Reinauer58470e32014-10-17 13:08:36 +0200256 help
257 The relocated ramstage is saved in an area specified by the
258 by the board and/or chipset.
259
Stefan Reinauer58470e32014-10-17 13:08:36 +0200260config UPDATE_IMAGE
261 bool "Update existing coreboot.rom image"
Stefan Reinauer58470e32014-10-17 13:08:36 +0200262 help
263 If this option is enabled, no new coreboot.rom file
264 is created. Instead it is expected that there already
265 is a suitable file for further processing.
266 The bootblock will not be modified.
267
Martin Roth5942e062016-01-20 14:59:21 -0700268 If unsure, select 'N'
269
Konstantin Aladyshev6544cb32015-01-24 18:52:10 +0400270config BOOTSPLASH_IMAGE
271 bool "Add a bootsplash image"
272 help
273 Select this option if you have a bootsplash image that you would
274 like to add to your ROM.
275
276 This will only add the image to the ROM. To actually run it check
277 options under 'Display' section.
278
279config BOOTSPLASH_FILE
280 string "Bootsplash path and filename"
281 depends on BOOTSPLASH_IMAGE
Martin Roth75e5cb72016-12-15 15:05:37 -0700282 # Default value set at the end of the file
Konstantin Aladyshev6544cb32015-01-24 18:52:10 +0400283 help
284 The path and filename of the file to use as graphical bootsplash
285 screen. The file format has to be jpg.
286
Nico Huber94cdec62019-06-06 19:36:02 +0200287config HAVE_RAMPAYLOAD
288 bool
289
Subrata Banik7e893a02019-05-06 14:17:41 +0530290config RAMPAYLOAD
291 bool "Enable coreboot flow without executing ramstage"
Subrata Banik86dbe0f2019-06-28 18:18:37 +0530292 default y if ARCH_X86
Nico Huber94cdec62019-06-06 19:36:02 +0200293 depends on HAVE_RAMPAYLOAD
Subrata Banik7e893a02019-05-06 14:17:41 +0530294 help
295 If this option is enabled, coreboot flow will skip ramstage
296 loading and execution of ramstage to load payload.
297
298 Instead it is expected to load payload from postcar stage itself.
299
300 In this flow coreboot will perform basic x86 initialization
301 (DRAM resource allocation), MTRR programming,
302 Skip PCI enumeration logic and only allocate BAR for fixed devices
303 (bootable devices, TPM over GSPI).
304
Uwe Hermannc04be932009-10-05 13:55:28 +0000305endmenu
306
Martin Roth026e4dc2015-06-19 23:17:15 -0600307menu "Mainboard"
308
Stefan Reinauera48ca842015-04-04 01:58:28 +0200309source "src/mainboard/Kconfig"
Stefan Reinauer8aedcbc2010-12-16 23:37:17 +0000310
Marshall Dawsone9375132016-09-04 08:38:33 -0600311config DEVICETREE
312 string
313 default "devicetree.cb"
314 help
315 This symbol allows mainboards to select a different file under their
316 mainboard directory for the devicetree.cb file. This allows the board
317 variants that need different devicetrees to be in the same directory.
318
319 Examples: "devicetree.variant.cb"
320 "variant/devicetree.cb"
321
Furquan Shaikhf2419982018-06-21 18:50:48 -0700322config OVERRIDE_DEVICETREE
323 string
324 default ""
325 help
326 This symbol allows variants to provide an override devicetree file to
327 override the registers and/or add new devices on top of the ones
328 provided by baseboard devicetree using CONFIG_DEVICETREE.
329
330 Examples: "devicetree.variant-override.cb"
331 "variant/devicetree-override.cb"
332
Martin Roth026e4dc2015-06-19 23:17:15 -0600333config CBFS_SIZE
334 hex "Size of CBFS filesystem in ROM"
Martin Roth75e5cb72016-12-15 15:05:37 -0700335 # Default value set at the end of the file
Martin Roth026e4dc2015-06-19 23:17:15 -0600336 help
337 This is the part of the ROM actually managed by CBFS, located at the
338 end of the ROM (passed through cbfstool -o) on x86 and at at the start
339 of the ROM (passed through cbfstool -s) everywhere else. It defaults
340 to span the whole ROM on all but Intel systems that use an Intel Firmware
341 Descriptor. It can be overridden to make coreboot live alongside other
342 components like ChromeOS's vboot/FMAP or Intel's IFD / ME / TXE
343 binaries.
344
Patrick Georgi8a3592e2015-09-16 18:10:52 +0200345config FMDFILE
346 string "fmap description file in fmd format"
Patrick Georgi5d7ab392015-12-12 00:23:15 +0100347 default "src/mainboard/$(CONFIG_MAINBOARD_DIR)/chromeos.fmd" if CHROMEOS
Patrick Georgi8a3592e2015-09-16 18:10:52 +0200348 default ""
349 help
350 The build system creates a default FMAP from ROM_SIZE and CBFS_SIZE,
351 but in some cases more complex setups are required.
352 When an fmd is specified, it overrides the default format.
353
Martin Rothda1ca202015-12-26 16:51:16 -0700354endmenu
355
Martin Rothb09a5692016-01-24 19:38:33 -0700356# load site-local kconfig to allow user specific defaults and overrides
357source "site-local/Kconfig"
358
Vladimir Serbinenkoa9db82f2014-10-16 13:21:47 +0200359config SYSTEM_TYPE_LAPTOP
Martin Roth595e7772015-04-26 18:53:26 -0600360 default n
361 bool
Vladimir Serbinenkoa9db82f2014-10-16 13:21:47 +0200362
Duncan Laurie8312df42019-02-01 11:33:57 -0800363config SYSTEM_TYPE_TABLET
364 default n
365 bool
366
367config SYSTEM_TYPE_DETACHABLE
368 default n
369 bool
370
371config SYSTEM_TYPE_CONVERTIBLE
372 default n
373 bool
374
Werner Zehc0fb3612016-01-14 15:08:36 +0100375config CBFS_AUTOGEN_ATTRIBUTES
376 default n
377 bool
378 help
379 If this option is selected, every file in cbfs which has a constraint
380 regarding position or alignment will get an additional file attribute
381 which describes this constraint.
382
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000383menu "Chipset"
384
Duncan Lauried2119762015-06-08 18:11:56 -0700385comment "SoC"
Chris Chingaa8e5d32017-10-20 10:43:39 -0600386source "src/soc/*/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000387comment "CPU"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200388source "src/cpu/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000389comment "Northbridge"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200390source "src/northbridge/*/*/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000391comment "Southbridge"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200392source "src/southbridge/*/*/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000393comment "Super I/O"
Omar Pakker57603e22016-07-29 23:31:45 +0200394source "src/superio/*/*/Kconfig"
Sven Schnelle7592e8b2011-01-27 11:43:03 +0000395comment "Embedded Controllers"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200396source "src/ec/acpi/Kconfig"
397source "src/ec/*/*/Kconfig"
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000398
Martin Roth59aa2b12015-06-20 16:17:12 -0600399source "src/southbridge/intel/common/firmware/Kconfig"
Martin Rothe1523ec2015-06-19 22:30:43 -0600400source "src/vendorcode/*/Kconfig"
Martin Roth59aa2b12015-06-20 16:17:12 -0600401
Martin Rothe1523ec2015-06-19 22:30:43 -0600402source "src/arch/*/Kconfig"
403
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000404endmenu
Patrick Georgi0588d192009-08-12 15:00:51 +0000405
Stefan Reinauera48ca842015-04-04 01:58:28 +0200406source "src/device/Kconfig"
Stefan Reinauer95a63962012-11-13 17:00:01 -0800407
Rudolf Marekd9c25492010-05-16 15:31:53 +0000408menu "Generic Drivers"
Stefan Reinauera48ca842015-04-04 01:58:28 +0200409source "src/drivers/*/Kconfig"
Stefan Reinauer86ddd732016-03-11 20:22:28 -0800410source "src/drivers/*/*/Kconfig"
Lee Leahy48dbc662017-05-08 16:56:03 -0700411source "src/commonlib/storage/Kconfig"
Rudolf Marekd9c25492010-05-16 15:31:53 +0000412endmenu
413
Philipp Deppenwiese1899fbe2017-10-16 17:09:33 +0200414menu "Security"
415
416source "src/security/Kconfig"
417
418endmenu
419
Martin Roth09210a12016-05-17 11:28:23 -0600420source "src/acpi/Kconfig"
421
Aaron Durbin4a36c4e2016-08-11 11:02:26 -0500422# This option is for the current boards/chipsets where SPI flash
423# is not the boot device. Currently nearly all boards/chipsets assume
424# SPI flash is the boot device.
425config BOOT_DEVICE_NOT_SPI_FLASH
426 bool
427 default n
428
429config BOOT_DEVICE_SPI_FLASH
430 bool
431 default y if !BOOT_DEVICE_NOT_SPI_FLASH
432 default n
433
Aaron Durbin16c173f2016-08-11 14:04:10 -0500434config BOOT_DEVICE_MEMORY_MAPPED
435 bool
436 default y if ARCH_X86 && BOOT_DEVICE_SPI_FLASH
437 default n
438 help
439 Inform system if SPI is memory-mapped or not.
440
Aaron Durbine8e118d2016-08-12 15:00:10 -0500441config BOOT_DEVICE_SUPPORTS_WRITES
442 bool
443 default n
444 help
445 Indicate that the platform has writable boot device
446 support.
447
Patrick Georgi0770f252015-04-22 13:28:21 +0200448config RTC
449 bool
450 default n
451
Patrick Georgi0588d192009-08-12 15:00:51 +0000452config HEAP_SIZE
453 hex
Marty E. Plummer0987e432019-04-22 20:46:27 -0500454 default 0x100000 if FLATTENED_DEVICE_TREE
Myles Watson04000f42009-10-16 19:12:49 +0000455 default 0x4000
Patrick Georgi0588d192009-08-12 15:00:51 +0000456
Julius Wernerc3e7c4e2014-09-19 13:18:16 -0700457config STACK_SIZE
458 hex
Julius Werner66a476a2015-10-12 16:45:21 -0700459 default 0x1000 if ARCH_X86
460 default 0x0
Julius Wernerc3e7c4e2014-09-19 13:18:16 -0700461
Patrick Georgi0588d192009-08-12 15:00:51 +0000462config MAX_CPUS
463 int
464 default 1
465
Stefan Reinauera48ca842015-04-04 01:58:28 +0200466source "src/console/Kconfig"
Patrick Georgi0588d192009-08-12 15:00:51 +0000467
468config HAVE_ACPI_RESUME
469 bool
470 default n
471
Kyösti Mälkki9d6f3652016-06-28 07:38:46 +0300472config ACPI_HUGE_LOWMEM_BACKUP
473 bool
Kyösti Mälkki43e9c932016-11-10 11:50:21 +0200474 default n
Kyösti Mälkki9d6f3652016-06-28 07:38:46 +0300475 help
476 On S3 resume path, backup low memory from RAMBASE..RAMTOP in CBMEM.
477
Aaron Durbin87c9fae2016-01-22 15:26:04 -0600478config RESUME_PATH_SAME_AS_BOOT
479 bool
480 default y if ARCH_X86
481 depends on HAVE_ACPI_RESUME
482 help
483 This option indicates that when a system resumes it takes the
484 same path as a regular boot. e.g. an x86 system runs from the
485 reset vector at 0xfffffff0 on both resume and warm/cold boot.
486
Timothy Pearson44d53422015-05-18 16:04:10 -0500487config HAVE_ROMSTAGE_CONSOLE_SPINLOCK
488 bool
489 default n
490
Timothy Pearson7b22d842015-08-28 19:52:05 -0500491config HAVE_ROMSTAGE_NVRAM_CBFS_SPINLOCK
492 bool
493 default n
494 help
495 This should be enabled on certain plaforms, such as the AMD
496 SR565x, that cannot handle concurrent CBFS accesses from
497 multiple APs during early startup.
498
Timothy Pearsonc764c742015-08-28 20:48:17 -0500499config HAVE_ROMSTAGE_MICROCODE_CBFS_SPINLOCK
500 bool
501 default n
502
Kyösti Mälkki76c43862019-07-01 17:25:41 +0300503config NO_MONOTONIC_TIMER
Aaron Durbina4217912013-04-29 22:31:51 -0500504 def_bool n
Kyösti Mälkki76c43862019-07-01 17:25:41 +0300505
506config HAVE_MONOTONIC_TIMER
507 bool
508 depends on !NO_MONOTONIC_TIMER
Kyösti Mälkkib28b6b52019-07-01 15:38:25 +0300509 default y
Aaron Durbina4217912013-04-29 22:31:51 -0500510 help
511 The board/chipset provides a monotonic timer.
512
Aaron Durbine5e36302014-09-25 10:05:15 -0500513config GENERIC_UDELAY
Kyösti Mälkki76c43862019-07-01 17:25:41 +0300514 bool
Aaron Durbine5e36302014-09-25 10:05:15 -0500515 depends on HAVE_MONOTONIC_TIMER
Kyösti Mälkki76c43862019-07-01 17:25:41 +0300516 default y if !ARCH_X86
Aaron Durbine5e36302014-09-25 10:05:15 -0500517 help
518 The board/chipset uses a generic udelay function utilizing the
519 monotonic timer.
520
Aaron Durbin340ca912013-04-30 09:58:12 -0500521config TIMER_QUEUE
522 def_bool n
523 depends on HAVE_MONOTONIC_TIMER
524 help
Kyösti Mälkkiecd84242013-09-13 07:57:49 +0300525 Provide a timer queue for performing time-based callbacks.
Aaron Durbin340ca912013-04-30 09:58:12 -0500526
Aaron Durbin4409a5e2013-05-06 12:20:52 -0500527config COOP_MULTITASKING
528 def_bool n
Aaron Durbin38c326d2013-05-06 12:22:23 -0500529 depends on TIMER_QUEUE && ARCH_X86
Aaron Durbin4409a5e2013-05-06 12:20:52 -0500530 help
531 Cooperative multitasking allows callbacks to be multiplexed on the
532 main thread of ramstage. With this enabled it allows for multiple
533 execution paths to take place when they have udelay() calls within
534 their code.
535
536config NUM_THREADS
537 int
538 default 4
539 depends on COOP_MULTITASKING
540 help
541 How many execution threads to cooperatively multitask with.
542
Patrick Georgi0588d192009-08-12 15:00:51 +0000543config HAVE_OPTION_TABLE
544 bool
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000545 default n
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000546 help
547 This variable specifies whether a given board has a cmos.layout
548 file containing NVRAM/CMOS bit definitions.
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000549 It defaults to 'n' but can be selected in mainboard/*/Kconfig.
Patrick Georgi0588d192009-08-12 15:00:51 +0000550
Patrick Georgi0588d192009-08-12 15:00:51 +0000551config PCI_IO_CFG_EXT
552 bool
553 default n
554
555config IOAPIC
556 bool
557 default n
558
Myles Watson45bb25f2009-09-22 18:49:08 +0000559config USE_WATCHDOG_ON_BOOT
560 bool
561 default n
562
Myles Watson45bb25f2009-09-22 18:49:08 +0000563config GFXUMA
564 bool
Myles Watsond73c1b52009-10-26 15:14:07 +0000565 default n
Myles Watson45bb25f2009-09-22 18:49:08 +0000566 help
567 Enable Unified Memory Architecture for graphics.
568
Myles Watsonb8e20272009-10-15 13:35:47 +0000569config HAVE_ACPI_TABLES
570 bool
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000571 help
572 This variable specifies whether a given board has ACPI table support.
573 It is usually set in mainboard/*/Kconfig.
Myles Watsonb8e20272009-10-15 13:35:47 +0000574
575config HAVE_MP_TABLE
576 bool
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000577 help
578 This variable specifies whether a given board has MP table support.
579 It is usually set in mainboard/*/Kconfig.
580 Whether or not the MP table is actually generated by coreboot
581 is configurable by the user via GENERATE_MP_TABLE.
Myles Watsonb8e20272009-10-15 13:35:47 +0000582
583config HAVE_PIRQ_TABLE
584 bool
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000585 help
586 This variable specifies whether a given board has PIRQ table support.
587 It is usually set in mainboard/*/Kconfig.
588 Whether or not the PIRQ table is actually generated by coreboot
589 is configurable by the user via GENERATE_PIRQ_TABLE.
Myles Watsonb8e20272009-10-15 13:35:47 +0000590
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +0200591config COMMON_FADT
592 bool
593 default n
594
Aaron Durbin9420a522015-11-17 16:31:00 -0600595config ACPI_NHLT
596 bool
597 default n
598 help
599 Build support for NHLT (non HD Audio) ACPI table generation.
600
Marshall Dawson991467d2018-09-04 12:32:56 -0600601config ACPI_BERT
602 bool
603 depends on HAVE_ACPI_TABLES
604 help
605 Build an ACPI Boot Error Record Table.
606
Myles Watsond73c1b52009-10-26 15:14:07 +0000607#These Options are here to avoid "undefined" warnings.
608#The actual selection and help texts are in the following menu.
609
Uwe Hermann168b11b2009-10-07 16:15:40 +0000610menu "System tables"
Myles Watson45bb25f2009-09-22 18:49:08 +0000611
Myles Watsonb8e20272009-10-15 13:35:47 +0000612config GENERATE_MP_TABLE
Stefan Reinauer56cd70b2012-11-13 17:33:08 -0800613 prompt "Generate an MP table" if HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC
614 bool
615 default HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000616 help
617 Generate an MP table (conforming to the Intel MultiProcessor
618 specification 1.4) for this board.
619
620 If unsure, say Y.
Myles Watson45bb25f2009-09-22 18:49:08 +0000621
Myles Watsonb8e20272009-10-15 13:35:47 +0000622config GENERATE_PIRQ_TABLE
Stefan Reinauer56cd70b2012-11-13 17:33:08 -0800623 prompt "Generate a PIRQ table" if HAVE_PIRQ_TABLE
624 bool
625 default HAVE_PIRQ_TABLE
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000626 help
627 Generate a PIRQ table for this board.
628
629 If unsure, say Y.
Myles Watson45bb25f2009-09-22 18:49:08 +0000630
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200631config GENERATE_SMBIOS_TABLES
632 depends on ARCH_X86
633 bool "Generate SMBIOS tables"
634 default y
635 help
636 Generate SMBIOS tables for this board.
637
638 If unsure, say Y.
639
Vladimir Serbinenko0afdec42015-05-30 23:08:26 +0200640config SMBIOS_PROVIDED_BY_MOBO
641 bool
642 default n
643
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200644config MAINBOARD_SERIAL_NUMBER
Nico Huberebd8a4f2017-11-01 09:49:16 +0100645 prompt "SMBIOS Serial Number" if !SMBIOS_PROVIDED_BY_MOBO
646 string
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200647 depends on GENERATE_SMBIOS_TABLES
648 default "123456789"
Martin Roth595e7772015-04-26 18:53:26 -0600649 help
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200650 The Serial Number to store in SMBIOS structures.
651
652config MAINBOARD_VERSION
Nico Huberebd8a4f2017-11-01 09:49:16 +0100653 prompt "SMBIOS Version Number" if !SMBIOS_PROVIDED_BY_MOBO
654 string
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200655 depends on GENERATE_SMBIOS_TABLES
656 default "1.0"
657 help
658 The Version Number to store in SMBIOS structures.
659
660config MAINBOARD_SMBIOS_MANUFACTURER
Nico Huberebd8a4f2017-11-01 09:49:16 +0100661 prompt "SMBIOS Manufacturer" if !SMBIOS_PROVIDED_BY_MOBO
662 string
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200663 depends on GENERATE_SMBIOS_TABLES
664 default MAINBOARD_VENDOR
665 help
666 Override the default Manufacturer stored in SMBIOS structures.
667
668config MAINBOARD_SMBIOS_PRODUCT_NAME
Nico Huberebd8a4f2017-11-01 09:49:16 +0100669 prompt "SMBIOS Product name" if !SMBIOS_PROVIDED_BY_MOBO
670 string
Stefan Reinauer6023ca42014-10-17 13:28:15 +0200671 depends on GENERATE_SMBIOS_TABLES
672 default MAINBOARD_PART_NUMBER
673 help
674 Override the default Product name stored in SMBIOS structures.
675
Julien Viard de Galbert9d231a92018-02-28 13:39:55 +0100676config SMBIOS_ENCLOSURE_TYPE
677 hex
678 depends on GENERATE_SMBIOS_TABLES
679 default 0x09 if SYSTEM_TYPE_LAPTOP
Duncan Laurie8312df42019-02-01 11:33:57 -0800680 default 0x1e if SYSTEM_TYPE_TABLET
681 default 0x1f if SYSTEM_TYPE_CONVERTIBLE
682 default 0x20 if SYSTEM_TYPE_DETACHABLE
Julien Viard de Galbert9d231a92018-02-28 13:39:55 +0100683 default 0x03
684 help
685 System Enclosure or Chassis Types as defined in SMBIOS specification.
Duncan Laurie8312df42019-02-01 11:33:57 -0800686 The default value is SMBIOS_ENCLOSURE_DESKTOP (0x03) but laptop,
687 convertible, or tablet enclosure will be used if the appropriate
688 system type is selected.
Julien Viard de Galbert9d231a92018-02-28 13:39:55 +0100689
Myles Watson45bb25f2009-09-22 18:49:08 +0000690endmenu
691
Martin Roth21c06502016-02-04 19:52:27 -0700692source "payloads/Kconfig"
Peter Stugea758ca22009-09-17 16:21:31 +0000693
Uwe Hermann168b11b2009-10-07 16:15:40 +0000694menu "Debugging"
695
Nico Huberd67edca2018-11-13 19:28:07 +0100696comment "CPU Debug Settings"
697source "src/cpu/*/Kconfig.debug"
698
699comment "General Debug Settings"
700
Uwe Hermann168b11b2009-10-07 16:15:40 +0000701# TODO: Better help text and detailed instructions.
Patrick Georgi0588d192009-08-12 15:00:51 +0000702config GDB_STUB
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +0000703 bool "GDB debugging support"
Rudolf Marek65888022012-03-25 20:51:16 +0200704 default n
Denis 'GNUtoo' Carikli3747ba12015-12-10 22:04:56 +0100705 depends on CONSOLE_SERIAL
Patrick Georgi0588d192009-08-12 15:00:51 +0000706 help
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +0000707 If enabled, you will be able to set breakpoints for gdb debugging.
Stefan Reinauer8677a232010-12-11 20:33:41 +0000708 See src/arch/x86/lib/c_start.S for details.
Patrick Georgi0588d192009-08-12 15:00:51 +0000709
Denis 'GNUtoo' Cariklie4cece02012-06-22 15:56:37 +0200710config GDB_WAIT
Denis 'GNUtoo' Carikli7d234f22015-12-10 21:58:52 +0100711 bool "Wait for a GDB connection in the ramstage"
Denis 'GNUtoo' Cariklie4cece02012-06-22 15:56:37 +0200712 default n
713 depends on GDB_STUB
714 help
Denis 'GNUtoo' Carikli7d234f22015-12-10 21:58:52 +0100715 If enabled, coreboot will wait for a GDB connection in the ramstage.
716
Denis 'GNUtoo' Cariklie4cece02012-06-22 15:56:37 +0200717
Julius Wernerd82e0cf2015-02-17 17:27:23 -0800718config FATAL_ASSERTS
719 bool "Halt when hitting a BUG() or assertion error"
720 default n
721 help
722 If enabled, coreboot will call hlt() on a BUG() or failed ASSERT().
723
Nico Huber371a6672018-11-13 22:06:40 +0100724config HAVE_DEBUG_GPIO
725 bool
726
727config DEBUG_GPIO
728 bool "Output verbose GPIO debug messages"
729 depends on HAVE_DEBUG_GPIO
730
Stefan Reinauerfe422182012-05-02 16:33:18 -0700731config DEBUG_CBFS
732 bool "Output verbose CBFS debug messages"
733 default n
Stefan Reinauerfe422182012-05-02 16:33:18 -0700734 help
735 This option enables additional CBFS related debug messages.
736
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000737config HAVE_DEBUG_RAM_SETUP
738 def_bool n
739
Uwe Hermann01ce6012010-03-05 10:03:50 +0000740config DEBUG_RAM_SETUP
741 bool "Output verbose RAM init debug messages"
742 default n
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000743 depends on HAVE_DEBUG_RAM_SETUP
Uwe Hermann01ce6012010-03-05 10:03:50 +0000744 help
745 This option enables additional RAM init related debug messages.
746 It is recommended to enable this when debugging issues on your
747 board which might be RAM init related.
748
749 Note: This option will increase the size of the coreboot image.
750
751 If unsure, say N.
752
Myles Watson80e914ff2010-06-01 19:25:31 +0000753config DEBUG_PIRQ
754 bool "Check PIRQ table consistency"
755 default n
756 depends on GENERATE_PIRQ_TABLE
757 help
758 If unsure, say N.
759
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000760config HAVE_DEBUG_SMBUS
761 def_bool n
762
Uwe Hermann01ce6012010-03-05 10:03:50 +0000763config DEBUG_SMBUS
764 bool "Output verbose SMBus debug messages"
765 default n
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000766 depends on HAVE_DEBUG_SMBUS
Uwe Hermann01ce6012010-03-05 10:03:50 +0000767 help
768 This option enables additional SMBus (and SPD) debug messages.
769
770 Note: This option will increase the size of the coreboot image.
771
772 If unsure, say N.
773
774config DEBUG_SMI
775 bool "Output verbose SMI debug messages"
776 default n
777 depends on HAVE_SMI_HANDLER
Nico Huber9e53db42018-06-05 22:34:08 +0200778 select SPI_FLASH_SMM if SPI_CONSOLE || CONSOLE_SPI_FLASH
Uwe Hermann01ce6012010-03-05 10:03:50 +0000779 help
780 This option enables additional SMI related debug messages.
781
782 Note: This option will increase the size of the coreboot image.
783
784 If unsure, say N.
785
Uwe Hermanna953f372010-11-10 00:14:32 +0000786# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
787# printk(BIOS_DEBUG, ...) calls.
788config DEBUG_MALLOC
Stefan Reinauer95a63962012-11-13 17:00:01 -0800789 prompt "Output verbose malloc debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
790 bool
Uwe Hermanna953f372010-11-10 00:14:32 +0000791 default n
Uwe Hermanna953f372010-11-10 00:14:32 +0000792 help
793 This option enables additional malloc related debug messages.
794
795 Note: This option will increase the size of the coreboot image.
796
797 If unsure, say N.
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300798
799# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
800# printk(BIOS_DEBUG, ...) calls.
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300801config DEBUG_ACPI
Stefan Reinauer95a63962012-11-13 17:00:01 -0800802 prompt "Output verbose ACPI debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
803 bool
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300804 default n
805 help
806 This option enables additional ACPI related debug messages.
807
808 Note: This option will slightly increase the size of the coreboot image.
809
810 If unsure, say N.
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300811
Kyösti Mälkki66277952018-12-31 15:22:34 +0200812config DEBUG_CONSOLE_INIT
813 bool "Debug console initialisation code"
814 default n
815 help
816 With this option printk()'s are attempted before console hardware
817 initialisation has been completed. Your mileage may vary.
818
819 Typically you will need to modify source in console_hw_init() such
820 that a working console appears before the one you want to debug.
821
822 If unsure, say N.
823
Uwe Hermanna953f372010-11-10 00:14:32 +0000824# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
825# printk(BIOS_DEBUG, ...) calls.
Myles Watson6c9bc012010-09-07 22:30:15 +0000826config REALMODE_DEBUG
Stefan Reinauer95a63962012-11-13 17:00:01 -0800827 prompt "Enable debug messages for option ROM execution" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
828 bool
Myles Watson6c9bc012010-09-07 22:30:15 +0000829 default n
Peter Stuge5015f792010-11-10 02:00:32 +0000830 depends on PCI_OPTION_ROM_RUN_REALMODE
Myles Watson6c9bc012010-09-07 22:30:15 +0000831 help
832 This option enables additional x86emu related debug messages.
833
834 Note: This option will increase the time to emulate a ROM.
835
836 If unsure, say N.
837
Uwe Hermann01ce6012010-03-05 10:03:50 +0000838config X86EMU_DEBUG
839 bool "Output verbose x86emu debug messages"
840 default n
841 depends on PCI_OPTION_ROM_RUN_YABEL
842 help
843 This option enables additional x86emu related debug messages.
844
845 Note: This option will increase the size of the coreboot image.
846
847 If unsure, say N.
848
849config X86EMU_DEBUG_JMP
850 bool "Trace JMP/RETF"
851 default n
852 depends on X86EMU_DEBUG
853 help
854 Print information about JMP and RETF opcodes from x86emu.
855
856 Note: This option will increase the size of the coreboot image.
857
858 If unsure, say N.
859
860config X86EMU_DEBUG_TRACE
861 bool "Trace all opcodes"
862 default n
863 depends on X86EMU_DEBUG
864 help
865 Print _all_ opcodes that are executed by x86emu.
Stefan Reinauer14e22772010-04-27 06:56:47 +0000866
Uwe Hermann01ce6012010-03-05 10:03:50 +0000867 WARNING: This will produce a LOT of output and take a long time.
868
869 Note: This option will increase the size of the coreboot image.
870
871 If unsure, say N.
872
873config X86EMU_DEBUG_PNP
874 bool "Log Plug&Play accesses"
875 default n
876 depends on X86EMU_DEBUG
877 help
878 Print Plug And Play accesses made by option ROMs.
879
880 Note: This option will increase the size of the coreboot image.
881
882 If unsure, say N.
883
884config X86EMU_DEBUG_DISK
885 bool "Log Disk I/O"
886 default n
887 depends on X86EMU_DEBUG
888 help
889 Print Disk I/O related messages.
890
891 Note: This option will increase the size of the coreboot image.
892
893 If unsure, say N.
894
895config X86EMU_DEBUG_PMM
896 bool "Log PMM"
897 default n
898 depends on X86EMU_DEBUG
899 help
900 Print messages related to POST Memory Manager (PMM).
901
902 Note: This option will increase the size of the coreboot image.
903
904 If unsure, say N.
905
906
907config X86EMU_DEBUG_VBE
908 bool "Debug VESA BIOS Extensions"
909 default n
910 depends on X86EMU_DEBUG
911 help
912 Print messages related to VESA BIOS Extension (VBE) functions.
913
914 Note: This option will increase the size of the coreboot image.
915
916 If unsure, say N.
917
918config X86EMU_DEBUG_INT10
919 bool "Redirect INT10 output to console"
920 default n
921 depends on X86EMU_DEBUG
922 help
923 Let INT10 (i.e. character output) calls print messages to debug output.
924
925 Note: This option will increase the size of the coreboot image.
926
927 If unsure, say N.
928
929config X86EMU_DEBUG_INTERRUPTS
930 bool "Log intXX calls"
931 default n
932 depends on X86EMU_DEBUG
933 help
934 Print messages related to interrupt handling.
935
936 Note: This option will increase the size of the coreboot image.
937
938 If unsure, say N.
939
940config X86EMU_DEBUG_CHECK_VMEM_ACCESS
941 bool "Log special memory accesses"
942 default n
943 depends on X86EMU_DEBUG
944 help
945 Print messages related to accesses to certain areas of the virtual
946 memory (e.g. BDA (BIOS Data Area) or interrupt vectors)
947
948 Note: This option will increase the size of the coreboot image.
949
950 If unsure, say N.
951
952config X86EMU_DEBUG_MEM
953 bool "Log all memory accesses"
954 default n
955 depends on X86EMU_DEBUG
956 help
957 Print memory accesses made by option ROM.
958 Note: This also includes accesses to fetch instructions.
959
960 Note: This option will increase the size of the coreboot image.
961
962 If unsure, say N.
963
964config X86EMU_DEBUG_IO
965 bool "Log IO accesses"
966 default n
967 depends on X86EMU_DEBUG
968 help
969 Print I/O accesses made by option ROM.
970
971 Note: This option will increase the size of the coreboot image.
972
973 If unsure, say N.
974
Denis 'GNUtoo' Carikli4cdc5d62013-05-15 00:19:49 +0200975config X86EMU_DEBUG_TIMINGS
976 bool "Output timing information"
977 default n
978 depends on X86EMU_DEBUG && UDELAY_LAPIC && HAVE_MONOTONIC_TIMER
979 help
980 Print timing information needed by i915tool.
981
982 If unsure, say N.
983
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700984config 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
Stefan Reinauer8e073822012-04-04 00:07:22 +0200991if SOUTHBRIDGE_INTEL_BD82X6X && DEFAULT_CONSOLE_LOGLEVEL_8
992# Only visible with the right southbridge and loglevel.
993config DEBUG_INTEL_ME
994 bool "Verbose logging for Intel Management Engine"
995 default n
996 help
997 Enable verbose logging for Intel Management Engine driver that
998 is present on Intel 6-series chipsets.
999endif
1000
Rudolf Marek7f0e9302011-09-02 23:23:41 +02001001config TRACE
1002 bool "Trace function calls"
1003 default n
1004 help
1005 If enabled, every function will print information to console once
1006 the function is entered. The syntax is ~0xaaaabbbb(0xccccdddd)
1007 the 0xaaaabbbb is the actual function and 0xccccdddd is EIP
Ben Gardner8420ad42015-11-18 10:46:53 -06001008 of calling function. Please note some printk related functions
Rudolf Marek7f0e9302011-09-02 23:23:41 +02001009 are omitted from trace to have good looking console dumps.
Stefan Reinauerd37ab452012-12-18 16:23:28 -08001010
1011config DEBUG_COVERAGE
1012 bool "Debug code coverage"
1013 default n
1014 depends on COVERAGE
1015 help
1016 If enabled, the code coverage hooks in coreboot will output some
1017 information about the coverage data that is dumped.
1018
Jonathan Neuschäferfc04f9b2016-06-29 21:59:32 +02001019config DEBUG_BOOT_STATE
1020 bool "Debug boot state machine"
1021 default n
1022 help
1023 Control debugging of the boot state machine. When selected displays
1024 the state boundaries in ramstage.
1025
Nico Hubere84e6252016-10-05 17:43:56 +02001026config DEBUG_ADA_CODE
1027 bool "Compile debug code in Ada sources"
1028 default n
1029 help
1030 Add the compiler switch `-gnata` to compile code guarded by
1031 `pragma Debug`.
1032
Simon Glass46255f72018-07-12 15:26:07 -06001033config HAVE_EM100_SUPPORT
1034 bool "Platform can support the Dediprog EM100 SPI emulator"
1035 help
1036 This is enabled by platforms which can support using the EM100.
1037
1038config EM100
1039 bool "Configure image for EM100 usage"
1040 depends on HAVE_EM100_SUPPORT
1041 help
1042 The Dediprog EM100 SPI emulator allows fast loading of new SPI images
1043 over USB. However it only supports a maximum SPI clock of 20MHz and
1044 single data output. Enable this option to use a 20MHz SPI clock and
1045 disable "Dual Output Fast Read" Support.
1046
1047 On AMD platforms this changes the SPI speed at run-time if the
1048 mainboard code supports this. On supported Intel platforms this works
1049 by changing the settings in the descriptor.bin file.
1050
Uwe Hermann168b11b2009-10-07 16:15:40 +00001051endmenu
1052
Martin Roth8e4aafb2016-12-15 15:25:15 -07001053
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.
Nico Huber3db76532017-05-18 18:07:34 +02001057
1058source "src/lib/Kconfig"
1059
Myles Watsond73c1b52009-10-26 15:14:07 +00001060config ENABLE_APIC_EXT_ID
1061 bool
1062 default n
Myles Watson2e672732009-11-12 16:38:03 +00001063
1064config WARNINGS_ARE_ERRORS
1065 bool
Edward O'Callaghan63f6dc72014-11-18 03:17:54 +11001066 default y
Patrick Georgi436f99b2009-11-27 16:55:13 +00001067
Peter Stuge51eafde2010-10-13 06:23:02 +00001068# The four POWER_BUTTON_DEFAULT_ENABLE, POWER_BUTTON_DEFAULT_DISABLE,
1069# POWER_BUTTON_FORCE_ENABLE and POWER_BUTTON_FORCE_DISABLE options are
1070# mutually exclusive. One of these options must be selected in the
1071# mainboard Kconfig if the chipset supports enabling and disabling of
1072# the power button. Chipset code uses the ENABLE_POWER_BUTTON option set
1073# in mainboard/Kconfig to know if the button should be enabled or not.
1074
1075config POWER_BUTTON_DEFAULT_ENABLE
1076 def_bool n
1077 help
1078 Select when the board has a power button which can optionally be
1079 disabled by the user.
1080
1081config POWER_BUTTON_DEFAULT_DISABLE
1082 def_bool n
1083 help
1084 Select when the board has a power button which can optionally be
1085 enabled by the user, e.g. when the board ships with a jumper over
1086 the power switch contacts.
1087
1088config POWER_BUTTON_FORCE_ENABLE
1089 def_bool n
1090 help
1091 Select when the board requires that the power button is always
1092 enabled.
1093
1094config POWER_BUTTON_FORCE_DISABLE
1095 def_bool n
1096 help
1097 Select when the board requires that the power button is always
1098 disabled, e.g. when it has been hardwired to ground.
1099
1100config POWER_BUTTON_IS_OPTIONAL
1101 bool
1102 default y if POWER_BUTTON_DEFAULT_ENABLE || POWER_BUTTON_DEFAULT_DISABLE
1103 default n if !(POWER_BUTTON_DEFAULT_ENABLE || POWER_BUTTON_DEFAULT_DISABLE)
1104 help
1105 Internal option that controls ENABLE_POWER_BUTTON visibility.
Duncan Laurie72748002013-10-31 08:26:23 -07001106
1107config REG_SCRIPT
1108 bool
Duncan Laurie72748002013-10-31 08:26:23 -07001109 default n
1110 help
1111 Internal option that controls whether we compile in register scripts.
Furquan Shaikh99ac98f2014-04-23 10:18:48 -07001112
Furquan Shaikh99ac98f2014-04-23 10:18:48 -07001113config MAX_REBOOT_CNT
1114 int
1115 default 3
Timothy Pearson17ada2e2015-03-18 01:31:34 -05001116 help
1117 Internal option that sets the maximum number of bootblock executions allowed
1118 with the normal image enabled before assuming the normal image is defective
Vadim Bendebury9c9c3362014-07-23 09:40:02 -07001119 and switching to the fallback image.
Martin Roth59ff3402016-02-09 09:06:46 -07001120
Martin Roth8e4aafb2016-12-15 15:25:15 -07001121config UNCOMPRESSED_RAMSTAGE
1122 bool
1123
1124config NO_XIP_EARLY_STAGES
1125 bool
1126 default n if ARCH_X86
1127 default y
1128 help
1129 Identify if early stages are eXecute-In-Place(XIP).
1130
Martin Roth8e4aafb2016-12-15 15:25:15 -07001131config EARLY_CBMEM_LIST
1132 bool
1133 default n
1134 help
1135 Enable display of CBMEM during romstage and postcar.
1136
1137config RELOCATABLE_MODULES
1138 bool
1139 help
1140 If RELOCATABLE_MODULES is selected then support is enabled for
1141 building relocatable modules in the RAM stage. Those modules can be
1142 loaded anywhere and all the relocations are handled automatically.
1143
1144config NO_STAGE_CACHE
1145 bool
Kyösti Mälkkia8c0cb32018-06-25 15:38:45 +03001146 default y if !HAVE_ACPI_RESUME
Martin Roth8e4aafb2016-12-15 15:25:15 -07001147 help
1148 Do not save any component in stage cache for resume path. On resume,
1149 all components would be read back from CBFS again.
1150
1151config GENERIC_GPIO_LIB
1152 bool
1153 help
1154 If enabled, compile the generic GPIO library. A "generic" GPIO
1155 implies configurability usually found on SoCs, particularly the
1156 ability to control internal pull resistors.
1157
Martin Roth8e4aafb2016-12-15 15:25:15 -07001158config BOOTBLOCK_CUSTOM
1159 # To be selected by arch, SoC or mainboard if it does not want use the normal
1160 # src/lib/bootblock.c#main() C entry point.
1161 bool
1162
1163config C_ENVIRONMENT_BOOTBLOCK
1164 # To be selected by arch or platform if a C environment is available during the
1165 # bootblock. Normally this signifies availability of RW memory (e.g. SRAM).
1166 bool
1167
Martin Roth75e5cb72016-12-15 15:05:37 -07001168###############################################################################
1169# Set default values for symbols created before mainboards. This allows the
1170# option to be displayed in the general menu, but the default to be loaded in
1171# the mainboard if desired.
1172config COMPRESS_RAMSTAGE
1173 default y if !UNCOMPRESSED_RAMSTAGE
1174
1175config COMPRESS_PRERAM_STAGES
1176 depends on !ARCH_X86
1177 default y
1178
1179config INCLUDE_CONFIG_FILE
1180 default y
1181
Martin Roth75e5cb72016-12-15 15:05:37 -07001182config BOOTSPLASH_FILE
1183 depends on BOOTSPLASH_IMAGE
1184 default "bootsplash.jpg"
1185
1186config CBFS_SIZE
1187 default ROM_SIZE
Subrata Banikb5962a92019-06-08 12:29:02 +05301188
1189config HAVE_BOOTBLOCK
1190 bool
1191 default y
1192
1193config HAVE_VERSTAGE
1194 bool
1195 depends on VBOOT_SEPARATE_VERSTAGE
1196 default y
1197
1198config HAVE_ROMSTAGE
1199 bool
1200 default y
1201
1202config HAVE_POSTCAR
1203 bool
1204 depends on POSTCAR_STAGE
1205 default y
1206
1207config HAVE_RAMSTAGE
1208 bool
1209 default n if RAMPAYLOAD
1210 default y