blob: d1f56941ca2254ccc223bed76e4172bd77937a87 [file] [log] [blame]
Patrick Georgi0588d192009-08-12 15:00:51 +00001##
2## This file is part of the coreboot project.
3##
Stefan Reinauerd650e992010-02-22 04:33:13 +00004## Copyright (C) 2007-2010 coresystems GmbH
Patrick Georgi0588d192009-08-12 15:00:51 +00005## (Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH)
6##
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
Uwe Hermannc70e9fc2010-02-15 23:10:19 +00009## the Free Software Foundation; version 2 of the License.
Patrick Georgi0588d192009-08-12 15:00:51 +000010##
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
Stefan Reinauer95a63962012-11-13 17:00:01 -080017menu "Devices"
Ronald G. Minnich69efaa02013-02-26 10:07:40 -080018
19# Only set this in the mainboard
20config MAINBOARD_HAS_NATIVE_VGA_INIT
21 bool
22 default n
23
Timothy Pearsonc522fc82015-02-02 18:25:34 -060024# FIXME Ugly hack to allow Z9s driver native framebuffer configuration
25config NATIVE_VGA_INIT_USE_EDID
26 bool
Nico Huber542e9482016-10-05 17:47:32 +020027 default n if DRIVERS_XGI_Z9S || MAINBOARD_USE_LIBGFXINIT
Timothy Pearsonc522fc82015-02-02 18:25:34 -060028 default y if !DRIVERS_XGI_Z9S
29
Vladimir Serbinenko160e9a02014-02-22 10:34:47 +010030config MAINBOARD_HAS_NATIVE_VGA_INIT_TEXTMODECFG
31 bool
32 default n
33
Ronald G. Minnich69efaa02013-02-26 10:07:40 -080034config MAINBOARD_DO_NATIVE_VGA_INIT
35 bool "Use native graphics initialization"
36 depends on MAINBOARD_HAS_NATIVE_VGA_INIT
37 default n
38 help
39 Some mainboards, such as the Google Link, allow initializing the display
40 without the need of a binary only VGA OPROM. Enabling this option may be
Paul Menzelfd3451d2014-01-03 09:45:57 +010041 faster, but also lacks flexibility in setting modes.
Ronald G. Minnich69efaa02013-02-26 10:07:40 -080042
43 If unsure, say N.
44
Nico Huber542e9482016-10-05 17:47:32 +020045config MAINBOARD_HAS_LIBGFXINIT
46 def_bool n
47 select MAINBOARD_HAS_NATIVE_VGA_INIT
48 help
49 Selected by mainboards that implement support for `libgfxinit`.
50 Usually this requires a list of ports to be probed for displays.
51
52config MAINBOARD_USE_LIBGFXINIT
53 bool "Use libgfxinit for native graphics initialization"
54 depends on MAINBOARD_DO_NATIVE_VGA_INIT
55 depends on MAINBOARD_HAS_LIBGFXINIT
Nico Huber66203df2016-11-07 17:24:47 +010056 select MAINBOARD_HAS_NATIVE_VGA_INIT_TEXTMODECFG
Nico Huber542e9482016-10-05 17:47:32 +020057 select RAMSTAGE_LIBHWBASE
58 default n
59 help
60 Use the SPARK library `libgfxinit` for the native graphics
61 initialization. This requires an Ada toolchain.
62
Uwe Hermann168b11b2009-10-07 16:15:40 +000063# TODO: Explain differences (if any) for onboard cards.
Patrick Georgi0588d192009-08-12 15:00:51 +000064config VGA_ROM_RUN
Stefan Reinauerafaa2572011-10-06 16:47:51 -070065 bool "Run VGA Option ROMs"
Peter Stugebe0ede42012-10-27 14:17:04 +020066 default n if PAYLOAD_SEABIOS
67 default y if !PAYLOAD_SEABIOS
Alexandru Gagniucfdbc1af2015-08-26 10:11:02 -040068 depends on PCI && !MAINBOARD_DO_NATIVE_VGA_INIT
Patrick Georgi0588d192009-08-12 15:00:51 +000069 help
Peter Stugeb6fa47c2012-10-27 13:45:51 +020070 Execute VGA Option ROMs in coreboot if found. This is required
71 to enable PCI/AGP/PCI-E video cards when not using a SeaBIOS
72 payload.
73
74 When using a SeaBIOS payload it runs all option ROMs with much
75 more complete BIOS interrupt services available than coreboot,
76 which some option ROMs require in order to function correctly.
77
78 If unsure, say N when using SeaBIOS as payload, Y otherwise.
Myles Watsone6804952009-08-28 14:36:12 +000079
Stefan Reinauer0a500842011-09-23 10:33:58 -070080config S3_VGA_ROM_RUN
Stefan Reinauerafaa2572011-10-06 16:47:51 -070081 bool "Re-run VGA Option ROMs on S3 resume"
Stefan Reinauer0a500842011-09-23 10:33:58 -070082 default y
83 depends on VGA_ROM_RUN && HAVE_ACPI_RESUME
84 help
Peter Stugeb6fa47c2012-10-27 13:45:51 +020085 Execute VGA Option ROMs in coreboot when resuming from S3 suspend.
86
87 When using a SeaBIOS payload it runs all option ROMs with much
88 more complete BIOS interrupt services available than coreboot,
89 which some option ROMs require in order to function correctly.
90
91 If unsure, say N when using SeaBIOS as payload, Y otherwise.
Stefan Reinauer0a500842011-09-23 10:33:58 -070092
Kyösti Mälkki580e5642014-05-01 16:31:34 +030093config ALWAYS_LOAD_OPROM
94 def_bool n
95 depends on VGA_ROM_RUN
96 help
Daniele Forsi53847a22014-07-22 18:00:56 +020097 Always load option ROMs if any are found. The decision to run
98 the ROM is still determined at runtime, but the distinction
Kyösti Mälkki580e5642014-05-01 16:31:34 +030099 between loading and not running comes into play for CHROMEOS.
100
Daniele Forsi53847a22014-07-22 18:00:56 +0200101 An example where this is required is that VBT (Video BIOS Tables)
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300102 are needed for the kernel's display driver to know how a piece of
103 hardware is configured to be used.
104
Patrick Rudolph647e34d2016-02-11 08:36:50 +0100105config ON_DEVICE_ROM_LOAD
106 bool "Load Option ROMs on PCI devices"
Peter Stugebe0ede42012-10-27 14:17:04 +0200107 default n if PAYLOAD_SEABIOS
108 default y if !PAYLOAD_SEABIOS
Alexandru Gagniucfdbc1af2015-08-26 10:11:02 -0400109 depends on PCI
Stefan Reinauerafaa2572011-10-06 16:47:51 -0700110 help
Patrick Rudolph647e34d2016-02-11 08:36:50 +0100111 Load Option ROMs stored on PCI/PCIe/AGP devices in coreboot.
Stefan Reinauerafaa2572011-10-06 16:47:51 -0700112
Peter Stugeb6fa47c2012-10-27 13:45:51 +0200113 If disabled, only Option ROMs stored in CBFS will be executed by
114 coreboot. If you are concerned about security, you might want to
115 disable this option, but it might leave your system in a state of
116 degraded functionality.
Stefan Reinauerafaa2572011-10-06 16:47:51 -0700117
Peter Stugeb6fa47c2012-10-27 13:45:51 +0200118 When using a SeaBIOS payload it runs all option ROMs with much
119 more complete BIOS interrupt services available than coreboot,
120 which some option ROMs require in order to function correctly.
121
122 If unsure, say N when using SeaBIOS as payload, Y otherwise.
Stefan Reinauerafaa2572011-10-06 16:47:51 -0700123
Patrick Georgi0588d192009-08-12 15:00:51 +0000124choice
Uwe Hermann168b11b2009-10-07 16:15:40 +0000125 prompt "Option ROM execution type"
Stefan Reinauer14be4d02010-01-31 21:46:12 +0000126 default PCI_OPTION_ROM_RUN_YABEL if !ARCH_X86
127 default PCI_OPTION_ROM_RUN_REALMODE if ARCH_X86
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100128 depends on VGA_ROM_RUN || GEODE_VSA
Uwe Hermann168b11b2009-10-07 16:15:40 +0000129
130config PCI_OPTION_ROM_RUN_REALMODE
Stefan Reinauerd650e992010-02-22 04:33:13 +0000131 prompt "Native mode"
Uwe Hermann168b11b2009-10-07 16:15:40 +0000132 bool
Stefan Reinauer14be4d02010-01-31 21:46:12 +0000133 depends on ARCH_X86
Myles Watson28412f52009-09-17 16:54:46 +0000134 help
Stefan Reinauerafaa2572011-10-06 16:47:51 -0700135 If you select this option, PCI Option ROMs will be executed
Stefan Reinauer14be4d02010-01-31 21:46:12 +0000136 natively on the CPU in real mode. No CPU emulation is involved,
137 so this is the fastest, but also the least secure option.
138 (only works on x86/x64 systems)
Patrick Georgi0588d192009-08-12 15:00:51 +0000139
Stefan Reinauerd650e992010-02-22 04:33:13 +0000140config PCI_OPTION_ROM_RUN_YABEL
Uwe Hermann548dbe72010-02-22 16:41:49 +0000141 prompt "Secure mode"
Uwe Hermann168b11b2009-10-07 16:15:40 +0000142 bool
Myles Watsone3df1212010-06-04 15:55:12 +0000143 depends on !GEODE_VSA
Uwe Hermann168b11b2009-10-07 16:15:40 +0000144 help
Stefan Reinauer14be4d02010-01-31 21:46:12 +0000145 If you select this option, the x86emu CPU emulator will be used to
Stefan Reinauerafaa2572011-10-06 16:47:51 -0700146 execute PCI Option ROMs.
Uwe Hermann548dbe72010-02-22 16:41:49 +0000147
Stefan Reinauerafaa2572011-10-06 16:47:51 -0700148 This option prevents Option ROMs from doing dirty tricks with the
Uwe Hermann548dbe72010-02-22 16:41:49 +0000149 system (such as installing SMM modules or hypervisors), but it is
Stefan Reinauerafaa2572011-10-06 16:47:51 -0700150 also significantly slower than the native Option ROM initialization
Uwe Hermann548dbe72010-02-22 16:41:49 +0000151 method.
152
Stefan Reinauerd650e992010-02-22 04:33:13 +0000153 This is the default choice for non-x86 systems.
Uwe Hermann548dbe72010-02-22 16:41:49 +0000154
Patrick Georgi0588d192009-08-12 15:00:51 +0000155endchoice
Uwe Hermann5ec2c2b2009-08-25 00:53:22 +0000156
Stefan Reinauer9a358532010-02-12 09:32:17 +0000157config YABEL_PCI_ACCESS_OTHER_DEVICES
Stefan Reinauerafaa2572011-10-06 16:47:51 -0700158 prompt "Allow Option ROMs to access other devices"
Stefan Reinauer9a358532010-02-12 09:32:17 +0000159 bool
160 depends on PCI_OPTION_ROM_RUN_YABEL
161 help
Stefan Reinauerafaa2572011-10-06 16:47:51 -0700162 Per default, YABEL only allows Option ROMs to access the PCI device
Stefan Reinauer9a358532010-02-12 09:32:17 +0000163 that they are associated with. However, this causes trouble for some
Stefan Reinauerafaa2572011-10-06 16:47:51 -0700164 onboard graphics chips whose Option ROM needs to reconfigure the
Uwe Hermann548dbe72010-02-22 16:41:49 +0000165 north bridge.
Stefan Reinauer9a358532010-02-12 09:32:17 +0000166
Patrick Georgic4b2a1b2012-07-20 13:44:50 +0200167config YABEL_PCI_FAKE_WRITING_OTHER_DEVICES_CONFIG
168 prompt "Fake success on writing other device's config space"
169 bool
170 depends on YABEL_PCI_ACCESS_OTHER_DEVICES
171 help
172 By default, YABEL aborts when the Option ROM tries to write to other
173 devices' config spaces. With this option enabled, the write doesn't
174 follow through, but the Option ROM is allowed to go on.
175 This can create issues such as hanging Option ROMs (if it depends on
176 that other register changing to the written value), so test for
177 impact before using this option.
178
Stefan Reinauer9a358532010-02-12 09:32:17 +0000179config YABEL_VIRTMEM_LOCATION
180 prompt "Location of YABEL's virtual memory"
181 hex
Alexandru Gagniucfdbc1af2015-08-26 10:11:02 -0400182 depends on PCI_OPTION_ROM_RUN_YABEL
Stefan Reinauer9a358532010-02-12 09:32:17 +0000183 default 0x1000000
184 help
185 YABEL requires 1MB memory for its CPU emulation. This memory is
186 normally located at 16MB.
187
Stefan Reinauerd650e992010-02-22 04:33:13 +0000188config YABEL_DIRECTHW
Uwe Hermann548dbe72010-02-22 16:41:49 +0000189 prompt "Direct hardware access"
Stefan Reinauerd650e992010-02-22 04:33:13 +0000190 bool
Stefan Reinauer91f14232012-12-07 16:55:12 -0800191 depends on PCI_OPTION_ROM_RUN_YABEL && ARCH_X86
Myles Watsone6804952009-08-28 14:36:12 +0000192 help
Stefan Reinauerd650e992010-02-22 04:33:13 +0000193 YABEL consists of two parts: It uses x86emu for the CPU emulation and
Uwe Hermann548dbe72010-02-22 16:41:49 +0000194 additionally provides a PC system emulation that filters bad device
195 and memory access (such as PCI config space access to other devices
196 than the initialized one).
197
Stefan Reinauerd650e992010-02-22 04:33:13 +0000198 When choosing this option, x86emu will pass through all hardware
Uwe Hermann548dbe72010-02-22 16:41:49 +0000199 accesses to memory and I/O devices to the underlying memory and I/O
Stefan Reinauerafaa2572011-10-06 16:47:51 -0700200 addresses. While this option prevents Option ROMs from doing dirty
Stefan Reinauerd650e992010-02-22 04:33:13 +0000201 tricks with the CPU (such as installing SMM modules or hypervisors),
202 they can still access all devices in the system.
203 Enable this option for a good compromise between security and speed.
204
Stefan Reinauerabc0c852010-11-22 08:09:50 +0000205config MULTIPLE_VGA_ADAPTERS
Myles Watson28412f52009-09-17 16:54:46 +0000206 bool
207 default n
208
Timothy Pearsonacbdade2015-10-17 04:36:47 -0500209config SMBUS_HAS_AUX_CHANNELS
210 bool
211 default n
212
Kyösti Mälkki36abdc42014-05-05 16:40:15 +0300213config SPD_CACHE
214 bool
215 default n
216
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800217config PCI
218 bool
219 default n
220
Kyösti Mälkki6f66f412016-12-01 22:08:18 +0200221if PCI
222
223config NO_MMCONF_SUPPORT
224 bool
Kyösti Mälkki3d15e102016-11-29 16:46:56 +0200225 default n
Kyösti Mälkki6f66f412016-12-01 22:08:18 +0200226
227config MMCONF_SUPPORT
228 bool
Kyösti Mälkki3d15e102016-11-29 16:46:56 +0200229 default !NO_MMCONF_SUPPORT
Kyösti Mälkki6f66f412016-12-01 22:08:18 +0200230
Ronald G. Minnich876d7e92009-08-28 14:23:38 +0000231config HYPERTRANSPORT_PLUGIN_SUPPORT
232 bool
Myles Watson74fb8f22009-09-24 15:09:11 +0000233 default n
Ronald G. Minnich876d7e92009-08-28 14:23:38 +0000234
235config PCIX_PLUGIN_SUPPORT
236 bool
Myles Watsoned035562009-09-22 21:29:32 +0000237 default y
Ronald G. Minnich876d7e92009-08-28 14:23:38 +0000238
Ronald G. Minnich876d7e92009-08-28 14:23:38 +0000239config CARDBUS_PLUGIN_SUPPORT
240 bool
Myles Watsoned035562009-09-22 21:29:32 +0000241 default y
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700242
Andrew Wub7bb70d2013-08-12 20:07:47 +0800243config AZALIA_PLUGIN_SUPPORT
244 bool
Andrew Wub7bb70d2013-08-12 20:07:47 +0800245 default n
246
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +0200247config PCIEXP_PLUGIN_SUPPORT
248 bool
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +0200249 default y
250
Kyösti Mälkki6f66f412016-12-01 22:08:18 +0200251endif # PCI
252
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +0200253if PCIEXP_PLUGIN_SUPPORT
254
Duncan Laurie90dcdd42011-10-25 14:15:11 -0700255config PCIEXP_COMMON_CLOCK
256 prompt "Enable PCIe Common Clock"
257 bool
258 default n
259 help
260 Detect and enable Common Clock on PCIe links.
261
262config PCIEXP_ASPM
263 prompt "Enable PCIe ASPM"
264 bool
265 default n
266 help
Jonathan Neuschäfer8c50e682016-12-27 16:31:28 +0100267 Detect and enable ASPM (Active State Power Management) on PCIe links.
Stefan Reinauer95a63962012-11-13 17:00:01 -0800268
Kane Chen18cb1342014-10-01 11:13:54 +0800269config PCIEXP_CLK_PM
270 prompt "Enable PCIe Clock Power Management"
271 bool
Kane Chen18cb1342014-10-01 11:13:54 +0800272 default n
273 help
274 Detect and enable Clock Power Management on PCIe.
275
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +0200276config PCIEXP_L1_SUB_STATE
277 prompt "Enable PCIe ASPM L1 SubState"
278 bool
Kyösti Mälkki6f66f412016-12-01 22:08:18 +0200279 depends on (MMCONF_SUPPORT || PCI_IO_CFG_EXT)
Kyösti Mälkki91bfa8e2016-11-20 20:39:56 +0200280 default n
281 help
282 Detect and enable ASPM on PCIe links.
283
284endif # PCIEXP_PLUGIN_SUPPORT
285
Kyösti Mälkki4c686f22014-02-14 12:45:09 +0200286config EARLY_PCI_BRIDGE
287 bool "Early PCI bridge"
288 depends on PCI
289 default n
290 help
291 While coreboot is executing code from ROM, the coreboot resource
292 allocator has not been running yet. Hence PCI devices living behind
293 a bridge are not yet visible to the system.
294
295 This option enables static configuration for a single pre-defined
296 PCI bridge function on bus 0.
297
298if EARLY_PCI_BRIDGE
299
300config EARLY_PCI_BRIDGE_DEVICE
301 hex "bridge device"
302 default 0x0
303
304config EARLY_PCI_BRIDGE_FUNCTION
305 hex "bridge function"
306 default 0x0
307
308config EARLY_PCI_MMIO_BASE
309 hex "MMIO window base"
310 default 0x0
311
312endif # EARLY_PCI_BRIDGE
313
Stefan Reinauer58470e32014-10-17 13:08:36 +0200314config SUBSYSTEM_VENDOR_ID
315 hex "Override PCI Subsystem Vendor ID"
316 depends on PCI
Martin Roth3b878122016-09-30 14:43:01 -0600317 default 0x0000
Stefan Reinauer58470e32014-10-17 13:08:36 +0200318 help
319 This config option will override the devicetree settings for
320 PCI Subsystem Vendor ID.
Stefan Reinauer95a63962012-11-13 17:00:01 -0800321
Stefan Reinauer58470e32014-10-17 13:08:36 +0200322config SUBSYSTEM_DEVICE_ID
323 hex "Override PCI Subsystem Device ID"
324 depends on PCI
Martin Roth3b878122016-09-30 14:43:01 -0600325 default 0x0000
Stefan Reinauer58470e32014-10-17 13:08:36 +0200326 help
327 This config option will override the devicetree settings for
328 PCI Subsystem Device ID.
Stefan Reinauer95a63962012-11-13 17:00:01 -0800329
330config VGA_BIOS
331 bool "Add a VGA BIOS image"
Vladimir Serbinenkod51a0892016-03-04 09:20:20 +0100332 depends on ARCH_X86
Stefan Reinauer95a63962012-11-13 17:00:01 -0800333 help
334 Select this option if you have a VGA BIOS image that you would
335 like to add to your ROM.
336
337 You will be able to specify the location and file name of the
338 image later.
339
340config VGA_BIOS_FILE
341 string "VGA BIOS path and filename"
342 depends on VGA_BIOS
343 default "vgabios.bin"
344 help
345 The path and filename of the file to use as VGA BIOS.
346
347config VGA_BIOS_ID
348 string "VGA device PCI IDs"
349 depends on VGA_BIOS
350 default "1106,3230"
351 help
352 The comma-separated PCI vendor and device ID that would associate
353 your VGA BIOS to your video card.
354
355 Example: 1106,3230
356
357 In the above example 1106 is the PCI vendor ID (in hex, but without
358 the "0x" prefix) and 3230 specifies the PCI device ID of the
359 video card (also in hex, without "0x" prefix).
360
Daniele Forsif2fb7d92014-07-17 11:59:41 +0200361 Under GNU/Linux you can run `lspci -nn` to list the IDs of your PCI devices.
362
Stefan Reinauer95a63962012-11-13 17:00:01 -0800363config INTEL_MBI
364 bool "Add an MBI image"
365 depends on NORTHBRIDGE_INTEL_I82830
366 help
367 Select this option if you have an Intel MBI image that you would
368 like to add to your ROM.
369
370 You will be able to specify the location and file name of the
371 image later.
372
373config MBI_FILE
374 string "Intel MBI path and filename"
375 depends on INTEL_MBI
376 default "mbi.bin"
377 help
378 The path and filename of the file to use as VGA BIOS.
379
Julius Werner37d7ac82014-05-05 18:03:46 -0700380config SOFTWARE_I2C
381 bool "Enable I2C controller emulation in software"
382 default n
383 help
384 This config option will enable code to override the i2c_transfer
385 routine with a (simple) software emulation of the protocol. This may
386 be useful for debugging or on platforms where a driver for the real
387 I2C controller is not (yet) available. The platform code needs to
388 provide bindings to manually toggle I2C lines.
Kyösti Mälkkia91e1e62014-12-31 10:36:08 +0200389
Stefan Reinauer95a63962012-11-13 17:00:01 -0800390endmenu
391
392menu "Display"
Ronald G. Minnich69efaa02013-02-26 10:07:40 -0800393 depends on PCI_OPTION_ROM_RUN_YABEL || PCI_OPTION_ROM_RUN_REALMODE || MAINBOARD_DO_NATIVE_VGA_INIT
Stefan Reinauer95a63962012-11-13 17:00:01 -0800394
395config FRAMEBUFFER_SET_VESA_MODE
Ronald G. Minnich69efaa02013-02-26 10:07:40 -0800396 prompt "Set framebuffer graphics resolution"
Stefan Reinauer95a63962012-11-13 17:00:01 -0800397 bool
398 depends on PCI_OPTION_ROM_RUN_YABEL || PCI_OPTION_ROM_RUN_REALMODE
399 help
Ronald G. Minnich69efaa02013-02-26 10:07:40 -0800400 Set VESA/native framebuffer mode (needed for bootsplash and graphical framebuffer console)
Stefan Reinauer95a63962012-11-13 17:00:01 -0800401
402choice
Ronald G. Minnich69efaa02013-02-26 10:07:40 -0800403 prompt "framebuffer graphics resolution"
Stefan Reinauer95a63962012-11-13 17:00:01 -0800404 default FRAMEBUFFER_VESA_MODE_117
Vladimir Serbinenkofb6d25f2014-02-21 08:38:27 +0100405 depends on FRAMEBUFFER_SET_VESA_MODE
Stefan Reinauer95a63962012-11-13 17:00:01 -0800406 help
407 This option sets the resolution used for the coreboot framebuffer (and
408 bootsplash screen).
409
410config FRAMEBUFFER_VESA_MODE_100
411 bool "640x400 256-color"
412
413config FRAMEBUFFER_VESA_MODE_101
414 bool "640x480 256-color"
415
416config FRAMEBUFFER_VESA_MODE_102
417 bool "800x600 16-color"
418
419config FRAMEBUFFER_VESA_MODE_103
420 bool "800x600 256-color"
421
422config FRAMEBUFFER_VESA_MODE_104
423 bool "1024x768 16-color"
424
425config FRAMEBUFFER_VESA_MODE_105
Daniele Forsied3d0e82014-07-19 15:40:40 +0200426 bool "1024x768 256-color"
Stefan Reinauer95a63962012-11-13 17:00:01 -0800427
428config FRAMEBUFFER_VESA_MODE_106
429 bool "1280x1024 16-color"
430
431config FRAMEBUFFER_VESA_MODE_107
432 bool "1280x1024 256-color"
433
434config FRAMEBUFFER_VESA_MODE_108
435 bool "80x60 text"
436
437config FRAMEBUFFER_VESA_MODE_109
438 bool "132x25 text"
439
440config FRAMEBUFFER_VESA_MODE_10A
441 bool "132x43 text"
442
443config FRAMEBUFFER_VESA_MODE_10B
444 bool "132x50 text"
445
446config FRAMEBUFFER_VESA_MODE_10C
447 bool "132x60 text"
448
449config FRAMEBUFFER_VESA_MODE_10D
450 bool "320x200 32k-color (1:5:5:5)"
451
452config FRAMEBUFFER_VESA_MODE_10E
453 bool "320x200 64k-color (5:6:5)"
454
455config FRAMEBUFFER_VESA_MODE_10F
456 bool "320x200 16.8M-color (8:8:8)"
457
458config FRAMEBUFFER_VESA_MODE_110
459 bool "640x480 32k-color (1:5:5:5)"
460
461config FRAMEBUFFER_VESA_MODE_111
462 bool "640x480 64k-color (5:6:5)"
463
464config FRAMEBUFFER_VESA_MODE_112
465 bool "640x480 16.8M-color (8:8:8)"
466
467config FRAMEBUFFER_VESA_MODE_113
468 bool "800x600 32k-color (1:5:5:5)"
469
470config FRAMEBUFFER_VESA_MODE_114
471 bool "800x600 64k-color (5:6:5)"
472
473config FRAMEBUFFER_VESA_MODE_115
474 bool "800x600 16.8M-color (8:8:8)"
475
476config FRAMEBUFFER_VESA_MODE_116
477 bool "1024x768 32k-color (1:5:5:5)"
478
479config FRAMEBUFFER_VESA_MODE_117
480 bool "1024x768 64k-color (5:6:5)"
481
482config FRAMEBUFFER_VESA_MODE_118
483 bool "1024x768 16.8M-color (8:8:8)"
484
485config FRAMEBUFFER_VESA_MODE_119
486 bool "1280x1024 32k-color (1:5:5:5)"
487
488config FRAMEBUFFER_VESA_MODE_11A
489 bool "1280x1024 64k-color (5:6:5)"
490
491config FRAMEBUFFER_VESA_MODE_11B
492 bool "1280x1024 16.8M-color (8:8:8)"
493
494config FRAMEBUFFER_VESA_MODE_USER
495 bool "Manually select VESA mode"
Ronald G. Minnich69efaa02013-02-26 10:07:40 -0800496 depends on !MAINBOARD_DO_NATIVE_VGA_INIT
Stefan Reinauer95a63962012-11-13 17:00:01 -0800497
498endchoice
499
500# Map the config names to an integer (KB).
501config FRAMEBUFFER_VESA_MODE
502 prompt "VESA mode" if FRAMEBUFFER_VESA_MODE_USER
503 hex
504 default 0x100 if FRAMEBUFFER_VESA_MODE_100
505 default 0x101 if FRAMEBUFFER_VESA_MODE_101
506 default 0x102 if FRAMEBUFFER_VESA_MODE_102
507 default 0x103 if FRAMEBUFFER_VESA_MODE_103
508 default 0x104 if FRAMEBUFFER_VESA_MODE_104
509 default 0x105 if FRAMEBUFFER_VESA_MODE_105
510 default 0x106 if FRAMEBUFFER_VESA_MODE_106
511 default 0x107 if FRAMEBUFFER_VESA_MODE_107
512 default 0x108 if FRAMEBUFFER_VESA_MODE_108
513 default 0x109 if FRAMEBUFFER_VESA_MODE_109
514 default 0x10A if FRAMEBUFFER_VESA_MODE_10A
515 default 0x10B if FRAMEBUFFER_VESA_MODE_10B
516 default 0x10C if FRAMEBUFFER_VESA_MODE_10C
517 default 0x10D if FRAMEBUFFER_VESA_MODE_10D
518 default 0x10E if FRAMEBUFFER_VESA_MODE_10E
519 default 0x10F if FRAMEBUFFER_VESA_MODE_10F
520 default 0x110 if FRAMEBUFFER_VESA_MODE_110
521 default 0x111 if FRAMEBUFFER_VESA_MODE_111
522 default 0x112 if FRAMEBUFFER_VESA_MODE_112
523 default 0x113 if FRAMEBUFFER_VESA_MODE_113
524 default 0x114 if FRAMEBUFFER_VESA_MODE_114
525 default 0x115 if FRAMEBUFFER_VESA_MODE_115
526 default 0x116 if FRAMEBUFFER_VESA_MODE_116
527 default 0x117 if FRAMEBUFFER_VESA_MODE_117
528 default 0x118 if FRAMEBUFFER_VESA_MODE_118
529 default 0x119 if FRAMEBUFFER_VESA_MODE_119
530 default 0x11A if FRAMEBUFFER_VESA_MODE_11A
531 default 0x11B if FRAMEBUFFER_VESA_MODE_11B
532 default 0x117 if FRAMEBUFFER_VESA_MODE_USER
533
534config FRAMEBUFFER_KEEP_VESA_MODE
535 prompt "Keep VESA framebuffer"
536 bool
Vladimir Serbinenko160e9a02014-02-22 10:34:47 +0100537 depends on PCI_OPTION_ROM_RUN_YABEL || PCI_OPTION_ROM_RUN_REALMODE || (MAINBOARD_HAS_NATIVE_VGA_INIT_TEXTMODECFG && MAINBOARD_DO_NATIVE_VGA_INIT)
Stefan Reinauer95a63962012-11-13 17:00:01 -0800538 help
539 This option keeps the framebuffer mode set after coreboot finishes
540 execution. If this option is enabled, coreboot will pass a
541 framebuffer entry in its coreboot table and the payload will need a
542 framebuffer driver. If this option is disabled, coreboot will switch
543 back to text mode before handing control to a payload.
544
545config BOOTSPLASH
546 prompt "Show graphical bootsplash"
547 bool
548 depends on FRAMEBUFFER_SET_VESA_MODE
549 help
Daniele Forsi53847a22014-07-22 18:00:56 +0200550 This option shows a graphical bootsplash screen. The graphics are
Stefan Reinauer95a63962012-11-13 17:00:01 -0800551 loaded from the CBFS file bootsplash.jpg.
552
Konstantin Aladyshev6544cb32015-01-24 18:52:10 +0400553 You can either specify the location and file name of the
554 image in the 'General' section or add it manually to CBFS, using,
555 for example, cbfstool.
Daniele Forsi53847a22014-07-22 18:00:56 +0200556
Stefan Reinauer95a63962012-11-13 17:00:01 -0800557endmenu