blob: 216ce0bb3bbc27561cb66baa012055d795b1b8dd [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##
16## You should have received a copy of the GNU General Public License
17## along with this program; if not, write to the Free Software
18## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Patrick Georgi0588d192009-08-12 15:00:51 +000019##
20
Uwe Hermannad8c95f2012-04-12 22:00:03 +020021mainmenu "coreboot configuration"
Patrick Georgi0588d192009-08-12 15:00:51 +000022
Uwe Hermannc04be932009-10-05 13:55:28 +000023menu "General setup"
24
Uwe Hermanna29ad5c2009-10-18 18:35:50 +000025config EXPERT
26 bool "Expert mode"
27 help
28 This allows you to select certain advanced configuration options.
29
30 Warning: Only enable this option if you really know what you are
31 doing! You have been warned!
32
Uwe Hermannc04be932009-10-05 13:55:28 +000033config LOCALVERSION
Uwe Hermann168b11b2009-10-07 16:15:40 +000034 string "Local version string"
Uwe Hermannc04be932009-10-05 13:55:28 +000035 help
36 Append an extra string to the end of the coreboot version.
37
Uwe Hermann168b11b2009-10-07 16:15:40 +000038 This can be useful if, for instance, you want to append the
39 respective board's hostname or some other identifying string to
40 the coreboot version number, so that you can easily distinguish
41 boot logs of different boards from each other.
42
Patrick Georgi4b8a2412010-02-09 19:35:16 +000043config CBFS_PREFIX
44 string "CBFS prefix to use"
45 default "fallback"
46 help
47 Select the prefix to all files put into the image. It's "fallback"
48 by default, "normal" is a common alternative.
49
Patrick Georgi23d89cc2010-03-16 01:17:19 +000050choice
Uwe Hermannad8c95f2012-04-12 22:00:03 +020051 prompt "Compiler to use"
Patrick Georgi23d89cc2010-03-16 01:17:19 +000052 default COMPILER_GCC
53 help
54 This option allows you to select the compiler used for building
55 coreboot.
56
57config COMPILER_GCC
58 bool "GCC"
Uwe Hermannad8c95f2012-04-12 22:00:03 +020059 help
60 Use the GNU Compiler Collection (GCC) to build coreboot.
61
62 For details see http://gcc.gnu.org.
63
Patrick Georgi23d89cc2010-03-16 01:17:19 +000064config COMPILER_LLVM_CLANG
65 bool "LLVM/clang"
Uwe Hermannad8c95f2012-04-12 22:00:03 +020066 help
67 Use LLVM/clang to build coreboot.
68
69 For details see http://clang.llvm.org.
70
Patrick Georgi23d89cc2010-03-16 01:17:19 +000071endchoice
72
Patrick Georgi020f51f2010-03-14 21:25:03 +000073config SCANBUILD_ENABLE
Uwe Hermannad8c95f2012-04-12 22:00:03 +020074 bool "Build with scan-build for static code analysis"
Patrick Georgi020f51f2010-03-14 21:25:03 +000075 default n
76 help
Uwe Hermannad8c95f2012-04-12 22:00:03 +020077 Changes the build process to use scan-build (a utility for
78 running the clang static code analyzer from the command line).
79
80 Requires the scan-build utility in your system $PATH.
81
82 For details see http://clang-analyzer.llvm.org/scan-build.html.
Patrick Georgi020f51f2010-03-14 21:25:03 +000083
84config SCANBUILD_REPORT_LOCATION
Uwe Hermannad8c95f2012-04-12 22:00:03 +020085 string "Directory for the scan-build report(s)"
Patrick Georgi020f51f2010-03-14 21:25:03 +000086 default ""
87 depends on SCANBUILD_ENABLE
88 help
Uwe Hermannad8c95f2012-04-12 22:00:03 +020089 Directory where the scan-build reports should be stored in. The
90 reports are stored in subdirectories of the form 'yyyy-mm-dd-*'
91 in the specified directory.
92
93 If this setting is left empty, the coreboot top-level directory
94 will be used to store the report subdirectories.
Patrick Georgi020f51f2010-03-14 21:25:03 +000095
Patrick Georgi516a2a72010-03-25 21:45:25 +000096config CCACHE
Uwe Hermannad8c95f2012-04-12 22:00:03 +020097 bool "Use ccache to speed up (re)compilation"
Patrick Georgi516a2a72010-03-25 21:45:25 +000098 default n
99 help
100 Enables the use of ccache for faster builds.
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200101
102 Requires the ccache utility in your system $PATH.
103
104 For details see https://ccache.samba.org.
Patrick Georgi516a2a72010-03-25 21:45:25 +0000105
Stefan Reinauer9bf78102010-08-09 13:28:18 +0000106config SCONFIG_GENPARSER
107 bool "Generate SCONFIG parser using flex and bison"
108 default n
109 depends on EXPERT
110 help
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200111 Enable this option if you are working on the sconfig device tree
112 parser and made changes to sconfig.l and sconfig.y.
113
Stefan Reinauer9bf78102010-08-09 13:28:18 +0000114 Otherwise, say N.
115
Joe Korty6d772522010-05-19 18:41:15 +0000116config USE_OPTION_TABLE
117 bool "Use CMOS for configuration values"
118 default n
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000119 depends on HAVE_OPTION_TABLE
Joe Korty6d772522010-05-19 18:41:15 +0000120 help
121 Enable this option if coreboot shall read options from the "CMOS"
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200122 NVRAM instead of using hard-coded values.
Joe Korty6d772522010-05-19 18:41:15 +0000123
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000124config COMPRESS_RAMSTAGE
125 bool "Compress ramstage with LZMA"
126 default y
127 help
128 Compress ramstage to save memory in the flash image. Note
129 that decompression might slow down booting if the boot flash
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200130 is connected through a slow link (i.e. SPI).
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000131
Cristian Măgherușan-Stanciud367b002011-06-19 03:03:28 +0200132config INCLUDE_CONFIG_FILE
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200133 bool "Include the coreboot .config file into the ROM image"
Cristian Măgherușan-Stanciud367b002011-06-19 03:03:28 +0200134 default y
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200135 help
136 Include the .config file that was used to compile coreboot
137 in the (CBFS) ROM image. This is useful if you want to know which
138 options were used to build a specific coreboot.rom image.
139
140 Saying Y here will increase the image size by 2-3kB.
141
142 You can use the following command to easily list the options:
143
144 grep -a CONFIG_ coreboot.rom
145
146 Alternatively, you can also use cbfstool to print the image
147 contents (including the raw 'config' item we're looking for).
148
149 Example:
150
151 $ cbfstool coreboot.rom print
152 coreboot.rom: 4096 kB, bootblocksize 1008, romsize 4194304,
153 offset 0x0
154 Alignment: 64 bytes
Steve Goodrichf0269122012-05-18 11:18:47 -0600155
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200156 Name Offset Type Size
157 cmos_layout.bin 0x0 cmos layout 1159
158 fallback/romstage 0x4c0 stage 339756
159 fallback/coreboot_ram 0x53440 stage 186664
160 fallback/payload 0x80dc0 payload 51526
161 config 0x8d740 raw 3324
162 (empty) 0x8e480 null 3610440
Cristian Măgherușan-Stanciud367b002011-06-19 03:03:28 +0200163
Vadim Bendeburye6b6aff2011-09-20 16:46:46 -0700164config EARLY_CBMEM_INIT
165 bool "Initialize CBMEM while in ROM stage"
166 default n
167 help
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200168 Make coreboot initialize the cbmem structures while running in ROM
169 stage. This could be useful when the ROM stage wants to communicate
Vadim Bendeburye6b6aff2011-09-20 16:46:46 -0700170 some, for instance, execution timestamps.
171
Vadim Bendebury9202473d2011-09-21 14:46:43 -0700172config COLLECT_TIMESTAMPS
173 bool "Create a table of timestamps collected during boot"
174 depends on EARLY_CBMEM_INIT
175 help
Uwe Hermannad8c95f2012-04-12 22:00:03 +0200176 Make coreboot create a table of timer-ID/timer-value pairs to
177 allow measuring time spent at different phases of the boot process.
178
Patrick Georgi7e9b9d82012-04-30 21:06:10 +0200179config USE_BLOBS
180 bool "Allow use of binary-only repository"
181 default n
182 help
183 This draws in the blobs repository, which contains binary files that
184 might be required for some chipsets or boards.
185 This flag ensures that a "Free" option remains available for users.
186
187config REQUIRES_BLOB
188 bool
189 default n
190 help
191 This option can be configured by boards that require the blobs
192 repository for the default configuration. It will make the build
193 fail if USE_BLOBS is disabled. Users that still desire to do a
194 coreboot build for such a board can override this manually, but
195 this option serves as warning that it might fail.
196
Uwe Hermannc04be932009-10-05 13:55:28 +0000197endmenu
198
Patrick Georgi0588d192009-08-12 15:00:51 +0000199source src/mainboard/Kconfig
Stefan Reinauer8aedcbc2010-12-16 23:37:17 +0000200
201# This option is used to set the architecture of a mainboard to X86.
202# It is usually set in mainboard/*/Kconfig.
203config ARCH_X86
204 bool
205 default n
206
207if ARCH_X86
Stefan Reinauer8677a232010-12-11 20:33:41 +0000208source src/arch/x86/Kconfig
Stefan Reinauer8aedcbc2010-12-16 23:37:17 +0000209endif
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000210
211menu "Chipset"
212
213comment "CPU"
Patrick Georgi0588d192009-08-12 15:00:51 +0000214source src/cpu/Kconfig
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000215comment "Northbridge"
216source src/northbridge/Kconfig
217comment "Southbridge"
218source src/southbridge/Kconfig
219comment "Super I/O"
220source src/superio/Kconfig
Sven Schnelle7592e8b2011-01-27 11:43:03 +0000221comment "Embedded Controllers"
222source src/ec/Kconfig
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000223
224endmenu
Patrick Georgi0588d192009-08-12 15:00:51 +0000225
Stefan Reinauer95a63962012-11-13 17:00:01 -0800226source src/devices/Kconfig
227
Rudolf Marekd9c25492010-05-16 15:31:53 +0000228menu "Generic Drivers"
229source src/drivers/Kconfig
230endmenu
231
Patrick Georgi0588d192009-08-12 15:00:51 +0000232config HEAP_SIZE
233 hex
Myles Watson04000f42009-10-16 19:12:49 +0000234 default 0x4000
Patrick Georgi0588d192009-08-12 15:00:51 +0000235
Patrick Georgi0588d192009-08-12 15:00:51 +0000236config MAX_CPUS
237 int
238 default 1
239
240config MMCONF_SUPPORT_DEFAULT
241 bool
242 default n
243
244config MMCONF_SUPPORT
245 bool
246 default n
247
Patrick Georgi0588d192009-08-12 15:00:51 +0000248source src/console/Kconfig
249
Stefan Reinauer4885daa2011-04-26 23:47:04 +0000250# This should default to N and be set by SuperI/O drivers that have an UART
251config HAVE_UART_IO_MAPPED
252 bool
253 default y
254
255config HAVE_UART_MEMORY_MAPPED
256 bool
257 default n
258
Patrick Georgi0588d192009-08-12 15:00:51 +0000259config HAVE_ACPI_RESUME
260 bool
261 default n
262
Stefan Reinauerc4f1a772010-06-05 10:03:08 +0000263config HAVE_ACPI_SLIC
264 bool
265 default n
266
Patrick Georgi0588d192009-08-12 15:00:51 +0000267config ACPI_SSDTX_NUM
268 int
269 default 0
270
Patrick Georgi0588d192009-08-12 15:00:51 +0000271config HAVE_HARD_RESET
272 bool
Uwe Hermann748475b2009-10-09 11:47:21 +0000273 default n
Patrick Georgi37bdb872010-02-27 08:39:04 +0000274 help
275 This variable specifies whether a given board has a hard_reset
276 function, no matter if it's provided by board code or chipset code.
277
Patrick Georgi0588d192009-08-12 15:00:51 +0000278config HAVE_INIT_TIMER
279 bool
Patrick Georgi1f807fd2010-01-04 20:09:27 +0000280 default n if UDELAY_IO
Myles Watsond73c1b52009-10-26 15:14:07 +0000281 default y
Patrick Georgi0588d192009-08-12 15:00:51 +0000282
zbaof7223732012-04-13 13:42:15 +0800283config HIGH_SCRATCH_MEMORY_SIZE
284 hex
285 default 0x0
286
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000287config USE_OPTION_TABLE
288 bool
289 default n
290
Patrick Georgi0588d192009-08-12 15:00:51 +0000291config HAVE_OPTION_TABLE
292 bool
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000293 default n
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000294 help
295 This variable specifies whether a given board has a cmos.layout
296 file containing NVRAM/CMOS bit definitions.
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000297 It defaults to 'n' but can be selected in mainboard/*/Kconfig.
Patrick Georgi0588d192009-08-12 15:00:51 +0000298
Patrick Georgi0588d192009-08-12 15:00:51 +0000299config PIRQ_ROUTE
300 bool
301 default n
302
303config HAVE_SMI_HANDLER
304 bool
305 default n
306
307config PCI_IO_CFG_EXT
308 bool
309 default n
310
311config IOAPIC
312 bool
313 default n
314
Stefan Reinauer5b635792012-08-16 14:05:42 -0700315config CBFS_SIZE
316 hex
317 default ROM_SIZE
318
319config CACHE_ROM_SIZE
320 hex
321 default CBFS_SIZE
322
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000323# TODO: Can probably be removed once all chipsets have kconfig options for it.
Uwe Hermann70b0cf22009-10-04 17:15:39 +0000324config VIDEO_MB
325 int
Uwe Hermann63a8f2a2009-10-26 21:42:13 +0000326 default 0
Uwe Hermann70b0cf22009-10-04 17:15:39 +0000327
Myles Watson45bb25f2009-09-22 18:49:08 +0000328config USE_WATCHDOG_ON_BOOT
329 bool
330 default n
331
332config VGA
333 bool
334 default n
335 help
336 Build board-specific VGA code.
337
338config GFXUMA
339 bool
Myles Watsond73c1b52009-10-26 15:14:07 +0000340 default n
Myles Watson45bb25f2009-09-22 18:49:08 +0000341 help
342 Enable Unified Memory Architecture for graphics.
343
Myles Watsonb8e20272009-10-15 13:35:47 +0000344config HAVE_ACPI_TABLES
345 bool
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000346 help
347 This variable specifies whether a given board has ACPI table support.
348 It is usually set in mainboard/*/Kconfig.
349 Whether or not the ACPI tables are actually generated by coreboot
350 is configurable by the user via GENERATE_ACPI_TABLES.
Myles Watsonb8e20272009-10-15 13:35:47 +0000351
352config HAVE_MP_TABLE
353 bool
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000354 help
355 This variable specifies whether a given board has MP table support.
356 It is usually set in mainboard/*/Kconfig.
357 Whether or not the MP table is actually generated by coreboot
358 is configurable by the user via GENERATE_MP_TABLE.
Myles Watsonb8e20272009-10-15 13:35:47 +0000359
360config HAVE_PIRQ_TABLE
361 bool
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000362 help
363 This variable specifies whether a given board has PIRQ table support.
364 It is usually set in mainboard/*/Kconfig.
365 Whether or not the PIRQ table is actually generated by coreboot
366 is configurable by the user via GENERATE_PIRQ_TABLE.
Myles Watsonb8e20272009-10-15 13:35:47 +0000367
Alexandru Gagniuc70c660f2012-08-23 02:32:58 -0500368config MAX_PIRQ_LINKS
369 int
370 default 4
371 help
372 This variable specifies the number of PIRQ interrupt links which are
373 routable. On most chipsets, this is 4, INTA through INTD. Some
374 chipsets offer more than four links, commonly up to INTH. They may
375 also have a separate link for ATA or IOAPIC interrupts. When the PIRQ
376 table specifies links greater than 4, pirq_route_irqs will not
377 function properly, unless this variable is correctly set.
378
Myles Watsond73c1b52009-10-26 15:14:07 +0000379#These Options are here to avoid "undefined" warnings.
380#The actual selection and help texts are in the following menu.
381
382config GENERATE_ACPI_TABLES
Myles Watsonb8e20272009-10-15 13:35:47 +0000383 bool
Myles Watsond73c1b52009-10-26 15:14:07 +0000384 default HAVE_ACPI_TABLES
385
386config GENERATE_MP_TABLE
387 bool
Kyösti Mälkki651339b2012-08-25 00:21:44 +0300388 default HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC
Myles Watsond73c1b52009-10-26 15:14:07 +0000389
390config GENERATE_PIRQ_TABLE
391 bool
392 default HAVE_PIRQ_TABLE
393
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200394config GENERATE_SMBIOS_TABLES
395 bool
396 default y
397
Uwe Hermann168b11b2009-10-07 16:15:40 +0000398menu "System tables"
Myles Watson45bb25f2009-09-22 18:49:08 +0000399
Myles Watsonb8e20272009-10-15 13:35:47 +0000400config WRITE_HIGH_TABLES
Myles Watson45bb25f2009-09-22 18:49:08 +0000401 bool "Write 'high' tables to avoid being overwritten in F segment"
402 default y
403
404config MULTIBOOT
Uwe Hermann168b11b2009-10-07 16:15:40 +0000405 bool "Generate Multiboot tables (for GRUB2)"
Ronald G. Minnich7f91d922009-11-09 17:56:47 +0000406 default y
Myles Watson45bb25f2009-09-22 18:49:08 +0000407
Myles Watsonb8e20272009-10-15 13:35:47 +0000408config GENERATE_ACPI_TABLES
409 depends on HAVE_ACPI_TABLES
Myles Watson45bb25f2009-09-22 18:49:08 +0000410 bool "Generate ACPI tables"
Myles Watsonb8e20272009-10-15 13:35:47 +0000411 default y
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000412 help
413 Generate ACPI tables for this board.
414
415 If unsure, say Y.
Myles Watson45bb25f2009-09-22 18:49:08 +0000416
Myles Watsonb8e20272009-10-15 13:35:47 +0000417config GENERATE_MP_TABLE
Kyösti Mälkki651339b2012-08-25 00:21:44 +0300418 depends on HAVE_MP_TABLE || DRIVERS_GENERIC_IOAPIC
Myles Watson45bb25f2009-09-22 18:49:08 +0000419 bool "Generate an MP table"
Myles Watsonb8e20272009-10-15 13:35:47 +0000420 default y
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000421 help
422 Generate an MP table (conforming to the Intel MultiProcessor
423 specification 1.4) for this board.
424
425 If unsure, say Y.
Myles Watson45bb25f2009-09-22 18:49:08 +0000426
Myles Watsonb8e20272009-10-15 13:35:47 +0000427config GENERATE_PIRQ_TABLE
428 depends on HAVE_PIRQ_TABLE
Myles Watson45bb25f2009-09-22 18:49:08 +0000429 bool "Generate a PIRQ table"
Myles Watsonb8e20272009-10-15 13:35:47 +0000430 default y
Uwe Hermann6ba13bb2009-10-15 17:49:07 +0000431 help
432 Generate a PIRQ table for this board.
433
434 If unsure, say Y.
Myles Watson45bb25f2009-09-22 18:49:08 +0000435
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200436config GENERATE_SMBIOS_TABLES
437 depends on ARCH_X86
438 bool "Generate SMBIOS tables"
439 default y
440 help
441 Generate SMBIOS tables for this board.
442
443 If unsure, say Y.
444
Myles Watson45bb25f2009-09-22 18:49:08 +0000445endmenu
446
Patrick Georgi0588d192009-08-12 15:00:51 +0000447menu "Payload"
448
Patrick Georgi0588d192009-08-12 15:00:51 +0000449choice
Uwe Hermann168b11b2009-10-07 16:15:40 +0000450 prompt "Add a payload"
Stefan Reinauerf1939bb2010-12-30 17:39:50 +0000451 default PAYLOAD_NONE if !ARCH_X86
452 default PAYLOAD_SEABIOS if ARCH_X86
Patrick Georgi0588d192009-08-12 15:00:51 +0000453
Uwe Hermann168b11b2009-10-07 16:15:40 +0000454config PAYLOAD_NONE
455 bool "None"
456 help
457 Select this option if you want to create an "empty" coreboot
458 ROM image for a certain mainboard, i.e. a coreboot ROM image
459 which does not yet contain a payload.
460
461 For such an image to be useful, you have to use 'cbfstool'
462 to add a payload to the ROM image later.
463
Patrick Georgi0588d192009-08-12 15:00:51 +0000464config PAYLOAD_ELF
Uwe Hermann168b11b2009-10-07 16:15:40 +0000465 bool "An ELF executable payload"
Patrick Georgi0588d192009-08-12 15:00:51 +0000466 help
467 Select this option if you have a payload image (an ELF file)
468 which coreboot should run as soon as the basic hardware
469 initialization is completed.
470
471 You will be able to specify the location and file name of the
472 payload image later.
Patrick Georgi0588d192009-08-12 15:00:51 +0000473
Stefan Reinauerf1939bb2010-12-30 17:39:50 +0000474config PAYLOAD_SEABIOS
475 bool "SeaBIOS"
476 depends on ARCH_X86
477 help
478 Select this option if you want to build a coreboot image
479 with a SeaBIOS payload. If you don't know what this is
480 about, just leave it enabled.
481
482 See http://coreboot.org/Payloads for more information.
483
Stefan Reinauere50952f2011-04-15 03:34:05 +0000484config PAYLOAD_FILO
485 bool "FILO"
486 help
487 Select this option if you want to build a coreboot image
488 with a FILO payload. If you don't know what this is
489 about, just leave it enabled.
490
491 See http://coreboot.org/Payloads for more information.
492
Stefan Reinauerf1939bb2010-12-30 17:39:50 +0000493endchoice
494
495choice
496 prompt "SeaBIOS version"
497 default SEABIOS_STABLE
498 depends on PAYLOAD_SEABIOS
499
500config SEABIOS_STABLE
Peter Stuge9b48ef22012-10-16 02:25:07 +0200501 bool "1.7.1"
Stefan Reinauerf1939bb2010-12-30 17:39:50 +0000502 help
503 Stable SeaBIOS version
504config SEABIOS_MASTER
505 bool "master"
506 help
507 Newest SeaBIOS version
Patrick Georgi0588d192009-08-12 15:00:51 +0000508endchoice
509
Stefan Reinauere50952f2011-04-15 03:34:05 +0000510choice
511 prompt "FILO version"
512 default FILO_STABLE
513 depends on PAYLOAD_FILO
514
515config FILO_STABLE
516 bool "0.6.0"
517 help
518 Stable FILO version
519config FILO_MASTER
520 bool "HEAD"
521 help
522 Newest FILO version
523endchoice
524
Stefan Reinauerbccbbe62010-12-19 21:20:14 +0000525config PAYLOAD_FILE
Cristi Magherusanb5034d42009-08-17 14:47:32 +0000526 string "Payload path and filename"
Patrick Georgi0588d192009-08-12 15:00:51 +0000527 depends on PAYLOAD_ELF
528 default "payload.elf"
529 help
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +0000530 The path and filename of the ELF executable file to use as payload.
Patrick Georgi0588d192009-08-12 15:00:51 +0000531
Stefan Reinauerf1939bb2010-12-30 17:39:50 +0000532config PAYLOAD_FILE
533 depends on PAYLOAD_SEABIOS
Stefan Reinaueraff6dc22012-01-21 10:34:22 -0800534 default "$(obj)/seabios/out/bios.bin.elf"
Stefan Reinauerf1939bb2010-12-30 17:39:50 +0000535
Stefan Reinauere50952f2011-04-15 03:34:05 +0000536config PAYLOAD_FILE
537 depends on PAYLOAD_FILO
538 default "payloads/external/FILO/filo/build/filo.elf"
539
Uwe Hermann168b11b2009-10-07 16:15:40 +0000540# TODO: Defined if no payload? Breaks build?
541config COMPRESSED_PAYLOAD_LZMA
542 bool "Use LZMA compression for payloads"
543 default y
Stefan Reinauere50952f2011-04-15 03:34:05 +0000544 depends on PAYLOAD_ELF || PAYLOAD_SEABIOS || PAYLOAD_FILO
Uwe Hermann168b11b2009-10-07 16:15:40 +0000545 help
546 In order to reduce the size payloads take up in the ROM chip
547 coreboot can compress them using the LZMA algorithm.
548
Myles Watson04000f42009-10-16 19:12:49 +0000549config COMPRESSED_PAYLOAD_NRV2B
Peter Stuged7b37b02009-10-17 03:00:04 +0000550 bool
Myles Watson04000f42009-10-16 19:12:49 +0000551 default n
552
Peter Stugea758ca22009-09-17 16:21:31 +0000553endmenu
554
Uwe Hermann168b11b2009-10-07 16:15:40 +0000555menu "Debugging"
556
557# TODO: Better help text and detailed instructions.
Patrick Georgi0588d192009-08-12 15:00:51 +0000558config GDB_STUB
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +0000559 bool "GDB debugging support"
Rudolf Marek65888022012-03-25 20:51:16 +0200560 default n
Patrick Georgi0588d192009-08-12 15:00:51 +0000561 help
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +0000562 If enabled, you will be able to set breakpoints for gdb debugging.
Stefan Reinauer8677a232010-12-11 20:33:41 +0000563 See src/arch/x86/lib/c_start.S for details.
Patrick Georgi0588d192009-08-12 15:00:51 +0000564
Denis 'GNUtoo' Cariklie4cece02012-06-22 15:56:37 +0200565config GDB_WAIT
566 bool "Wait for a GDB connection"
567 default n
568 depends on GDB_STUB
569 help
570 If enabled, coreboot will wait for a GDB connection.
571
Stefan Reinauerfe422182012-05-02 16:33:18 -0700572config DEBUG_CBFS
573 bool "Output verbose CBFS debug messages"
574 default n
575 depends on TPM
576 help
577 This option enables additional CBFS related debug messages.
578
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000579config HAVE_DEBUG_RAM_SETUP
580 def_bool n
581
Uwe Hermann01ce6012010-03-05 10:03:50 +0000582config DEBUG_RAM_SETUP
583 bool "Output verbose RAM init debug messages"
584 default n
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000585 depends on HAVE_DEBUG_RAM_SETUP
Uwe Hermann01ce6012010-03-05 10:03:50 +0000586 help
587 This option enables additional RAM init related debug messages.
588 It is recommended to enable this when debugging issues on your
589 board which might be RAM init related.
590
591 Note: This option will increase the size of the coreboot image.
592
593 If unsure, say N.
594
Patrick Georgie82618d2010-10-01 14:50:12 +0000595config HAVE_DEBUG_CAR
596 def_bool n
597
Peter Stuge5015f792010-11-10 02:00:32 +0000598config DEBUG_CAR
599 def_bool n
600 depends on HAVE_DEBUG_CAR
601
602if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
Uwe Hermanna953f372010-11-10 00:14:32 +0000603# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
604# printk(BIOS_DEBUG, ...) calls.
Patrick Georgie82618d2010-10-01 14:50:12 +0000605config DEBUG_CAR
606 bool "Output verbose Cache-as-RAM debug messages"
607 default n
Peter Stuge5015f792010-11-10 02:00:32 +0000608 depends on HAVE_DEBUG_CAR
Patrick Georgie82618d2010-10-01 14:50:12 +0000609 help
610 This option enables additional CAR related debug messages.
Peter Stuge5015f792010-11-10 02:00:32 +0000611endif
Patrick Georgie82618d2010-10-01 14:50:12 +0000612
Myles Watson80e914ff2010-06-01 19:25:31 +0000613config DEBUG_PIRQ
614 bool "Check PIRQ table consistency"
615 default n
616 depends on GENERATE_PIRQ_TABLE
617 help
618 If unsure, say N.
619
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000620config HAVE_DEBUG_SMBUS
621 def_bool n
622
Uwe Hermann01ce6012010-03-05 10:03:50 +0000623config DEBUG_SMBUS
624 bool "Output verbose SMBus debug messages"
625 default n
Jens Rottmann0d11f2d2010-08-26 12:46:02 +0000626 depends on HAVE_DEBUG_SMBUS
Uwe Hermann01ce6012010-03-05 10:03:50 +0000627 help
628 This option enables additional SMBus (and SPD) debug messages.
629
630 Note: This option will increase the size of the coreboot image.
631
632 If unsure, say N.
633
634config DEBUG_SMI
635 bool "Output verbose SMI debug messages"
636 default n
637 depends on HAVE_SMI_HANDLER
638 help
639 This option enables additional SMI related debug messages.
640
641 Note: This option will increase the size of the coreboot image.
642
643 If unsure, say N.
644
Stefan Reinauerbc0f7a62010-08-01 15:41:14 +0000645config DEBUG_SMM_RELOCATION
646 bool "Debug SMM relocation code"
647 default n
648 depends on HAVE_SMI_HANDLER
649 help
650 This option enables additional SMM handler relocation related
651 debug messages.
652
653 Note: This option will increase the size of the coreboot image.
654
655 If unsure, say N.
656
Uwe Hermanna953f372010-11-10 00:14:32 +0000657# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
658# printk(BIOS_DEBUG, ...) calls.
659config DEBUG_MALLOC
Stefan Reinauer95a63962012-11-13 17:00:01 -0800660 prompt "Output verbose malloc debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
661 bool
Uwe Hermanna953f372010-11-10 00:14:32 +0000662 default n
Uwe Hermanna953f372010-11-10 00:14:32 +0000663 help
664 This option enables additional malloc related debug messages.
665
666 Note: This option will increase the size of the coreboot image.
667
668 If unsure, say N.
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300669
670# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
671# printk(BIOS_DEBUG, ...) calls.
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300672config DEBUG_ACPI
Stefan Reinauer95a63962012-11-13 17:00:01 -0800673 prompt "Output verbose ACPI debug messages" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
674 bool
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300675 default n
676 help
677 This option enables additional ACPI related debug messages.
678
679 Note: This option will slightly increase the size of the coreboot image.
680
681 If unsure, say N.
Cristian Măgherușan-Stanciu9f52ea42011-07-02 00:44:39 +0300682
Uwe Hermanna953f372010-11-10 00:14:32 +0000683# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
684# printk(BIOS_DEBUG, ...) calls.
Myles Watson6c9bc012010-09-07 22:30:15 +0000685config REALMODE_DEBUG
Stefan Reinauer95a63962012-11-13 17:00:01 -0800686 prompt "Enable debug messages for option ROM execution" if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
687 bool
Myles Watson6c9bc012010-09-07 22:30:15 +0000688 default n
Peter Stuge5015f792010-11-10 02:00:32 +0000689 depends on PCI_OPTION_ROM_RUN_REALMODE
Myles Watson6c9bc012010-09-07 22:30:15 +0000690 help
691 This option enables additional x86emu related debug messages.
692
693 Note: This option will increase the time to emulate a ROM.
694
695 If unsure, say N.
696
Uwe Hermann01ce6012010-03-05 10:03:50 +0000697config X86EMU_DEBUG
698 bool "Output verbose x86emu debug messages"
699 default n
700 depends on PCI_OPTION_ROM_RUN_YABEL
701 help
702 This option enables additional x86emu related debug messages.
703
704 Note: This option will increase the size of the coreboot image.
705
706 If unsure, say N.
707
708config X86EMU_DEBUG_JMP
709 bool "Trace JMP/RETF"
710 default n
711 depends on X86EMU_DEBUG
712 help
713 Print information about JMP and RETF opcodes from x86emu.
714
715 Note: This option will increase the size of the coreboot image.
716
717 If unsure, say N.
718
719config X86EMU_DEBUG_TRACE
720 bool "Trace all opcodes"
721 default n
722 depends on X86EMU_DEBUG
723 help
724 Print _all_ opcodes that are executed by x86emu.
Stefan Reinauer14e22772010-04-27 06:56:47 +0000725
Uwe Hermann01ce6012010-03-05 10:03:50 +0000726 WARNING: This will produce a LOT of output and take a long time.
727
728 Note: This option will increase the size of the coreboot image.
729
730 If unsure, say N.
731
732config X86EMU_DEBUG_PNP
733 bool "Log Plug&Play accesses"
734 default n
735 depends on X86EMU_DEBUG
736 help
737 Print Plug And Play accesses made by option ROMs.
738
739 Note: This option will increase the size of the coreboot image.
740
741 If unsure, say N.
742
743config X86EMU_DEBUG_DISK
744 bool "Log Disk I/O"
745 default n
746 depends on X86EMU_DEBUG
747 help
748 Print Disk I/O related messages.
749
750 Note: This option will increase the size of the coreboot image.
751
752 If unsure, say N.
753
754config X86EMU_DEBUG_PMM
755 bool "Log PMM"
756 default n
757 depends on X86EMU_DEBUG
758 help
759 Print messages related to POST Memory Manager (PMM).
760
761 Note: This option will increase the size of the coreboot image.
762
763 If unsure, say N.
764
765
766config X86EMU_DEBUG_VBE
767 bool "Debug VESA BIOS Extensions"
768 default n
769 depends on X86EMU_DEBUG
770 help
771 Print messages related to VESA BIOS Extension (VBE) functions.
772
773 Note: This option will increase the size of the coreboot image.
774
775 If unsure, say N.
776
777config X86EMU_DEBUG_INT10
778 bool "Redirect INT10 output to console"
779 default n
780 depends on X86EMU_DEBUG
781 help
782 Let INT10 (i.e. character output) calls print messages to debug output.
783
784 Note: This option will increase the size of the coreboot image.
785
786 If unsure, say N.
787
788config X86EMU_DEBUG_INTERRUPTS
789 bool "Log intXX calls"
790 default n
791 depends on X86EMU_DEBUG
792 help
793 Print messages related to interrupt handling.
794
795 Note: This option will increase the size of the coreboot image.
796
797 If unsure, say N.
798
799config X86EMU_DEBUG_CHECK_VMEM_ACCESS
800 bool "Log special memory accesses"
801 default n
802 depends on X86EMU_DEBUG
803 help
804 Print messages related to accesses to certain areas of the virtual
805 memory (e.g. BDA (BIOS Data Area) or interrupt vectors)
806
807 Note: This option will increase the size of the coreboot image.
808
809 If unsure, say N.
810
811config X86EMU_DEBUG_MEM
812 bool "Log all memory accesses"
813 default n
814 depends on X86EMU_DEBUG
815 help
816 Print memory accesses made by option ROM.
817 Note: This also includes accesses to fetch instructions.
818
819 Note: This option will increase the size of the coreboot image.
820
821 If unsure, say N.
822
823config X86EMU_DEBUG_IO
824 bool "Log IO accesses"
825 default n
826 depends on X86EMU_DEBUG
827 help
828 Print I/O accesses made by option ROM.
829
830 Note: This option will increase the size of the coreboot image.
831
832 If unsure, say N.
833
Stefan Reinauerdfb098d2011-11-17 12:50:54 -0800834config DEBUG_TPM
835 bool "Output verbose TPM debug messages"
836 default n
837 depends on TPM
838 help
839 This option enables additional TPM related debug messages.
840
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700841config DEBUG_SPI_FLASH
842 bool "Output verbose SPI flash debug messages"
843 default n
844 depends on SPI_FLASH
845 help
846 This option enables additional SPI flash related debug messages.
847
Stefan Reinauer8e073822012-04-04 00:07:22 +0200848if SOUTHBRIDGE_INTEL_BD82X6X && DEFAULT_CONSOLE_LOGLEVEL_8
849# Only visible with the right southbridge and loglevel.
850config DEBUG_INTEL_ME
851 bool "Verbose logging for Intel Management Engine"
852 default n
853 help
854 Enable verbose logging for Intel Management Engine driver that
855 is present on Intel 6-series chipsets.
856endif
857
Stefan Reinauer5c503922010-03-13 22:07:15 +0000858config LLSHELL
859 bool "Built-in low-level shell"
860 default n
861 help
862 If enabled, you will have a low level shell to examine your machine.
863 Put llshell() in your (romstage) code to start the shell.
Stefan Reinauer8677a232010-12-11 20:33:41 +0000864 See src/arch/x86/llshell/llshell.inc for details.
Stefan Reinauer5c503922010-03-13 22:07:15 +0000865
Rudolf Marek7f0e9302011-09-02 23:23:41 +0200866config TRACE
867 bool "Trace function calls"
868 default n
869 help
870 If enabled, every function will print information to console once
871 the function is entered. The syntax is ~0xaaaabbbb(0xccccdddd)
872 the 0xaaaabbbb is the actual function and 0xccccdddd is EIP
873 of calling function. Please note some printk releated functions
874 are omitted from trace to have good looking console dumps.
Uwe Hermann168b11b2009-10-07 16:15:40 +0000875endmenu
876
Myles Watsond73c1b52009-10-26 15:14:07 +0000877# These probably belong somewhere else, but they are needed somewhere.
878config AP_CODE_IN_CAR
879 bool
880 default n
881
Jonathan Kollasche5b75072010-10-07 23:02:06 +0000882config RAMINIT_SYSINFO
883 bool
884 default n
885
Myles Watsond73c1b52009-10-26 15:14:07 +0000886config ENABLE_APIC_EXT_ID
887 bool
888 default n
Myles Watson2e672732009-11-12 16:38:03 +0000889
890config WARNINGS_ARE_ERRORS
891 bool
Stefan Reinauer6f57b512010-07-08 16:41:05 +0000892 default y
Patrick Georgi436f99b2009-11-27 16:55:13 +0000893
Peter Stuge51eafde2010-10-13 06:23:02 +0000894# The four POWER_BUTTON_DEFAULT_ENABLE, POWER_BUTTON_DEFAULT_DISABLE,
895# POWER_BUTTON_FORCE_ENABLE and POWER_BUTTON_FORCE_DISABLE options are
896# mutually exclusive. One of these options must be selected in the
897# mainboard Kconfig if the chipset supports enabling and disabling of
898# the power button. Chipset code uses the ENABLE_POWER_BUTTON option set
899# in mainboard/Kconfig to know if the button should be enabled or not.
900
901config POWER_BUTTON_DEFAULT_ENABLE
902 def_bool n
903 help
904 Select when the board has a power button which can optionally be
905 disabled by the user.
906
907config POWER_BUTTON_DEFAULT_DISABLE
908 def_bool n
909 help
910 Select when the board has a power button which can optionally be
911 enabled by the user, e.g. when the board ships with a jumper over
912 the power switch contacts.
913
914config POWER_BUTTON_FORCE_ENABLE
915 def_bool n
916 help
917 Select when the board requires that the power button is always
918 enabled.
919
920config POWER_BUTTON_FORCE_DISABLE
921 def_bool n
922 help
923 Select when the board requires that the power button is always
924 disabled, e.g. when it has been hardwired to ground.
925
926config POWER_BUTTON_IS_OPTIONAL
927 bool
928 default y if POWER_BUTTON_DEFAULT_ENABLE || POWER_BUTTON_DEFAULT_DISABLE
929 default n if !(POWER_BUTTON_DEFAULT_ENABLE || POWER_BUTTON_DEFAULT_DISABLE)
930 help
931 Internal option that controls ENABLE_POWER_BUTTON visibility.
932
Stefan Reinauerb89a7612012-03-30 01:01:51 +0200933source src/vendorcode/Kconfig