diff options
author | Patrick Rudolph <siro@das-labor.org> | 2017-07-17 19:53:56 +0200 |
---|---|---|
committer | Patrick Rudolph <siro@das-labor.org> | 2017-09-04 15:34:10 +0000 |
commit | 4c17098fafddefbaa1e7ff5c5ceb5028aa127f00 (patch) | |
tree | e9bb974fd6c8757e4a745ec900b102dc8a9e7b65 /src/device/Kconfig | |
parent | 1918c81d65ecfdcb64fa811debd919b2a25cf47d (diff) |
Kconfig: Move and rename ADD_VBT_DATA_FILE
Move ADD_VBT_DATA_FILE to "Devices" menu and rename it to
INTEL_GMA_ADD_VBT_DATA_FILE.
Depend on Intel platforms to avoid confusing users of non-Intel platforms.
The Intel GMA driver will use the vbt.bin, if present, to fill the
ACPI OpRegion.
Change-Id: I688bac339c32e9c856642a0f4bd5929beef06409
Signed-off-by: Patrick Rudolph <siro@das-labor.org>
Reviewed-on: https://review.coreboot.org/20619
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/device/Kconfig')
-rw-r--r-- | src/device/Kconfig | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/device/Kconfig b/src/device/Kconfig index a5b8247cde..28298d55d3 100644 --- a/src/device/Kconfig +++ b/src/device/Kconfig @@ -591,6 +591,20 @@ config VGA_BIOS_ID Under GNU/Linux you can run `lspci -nn` to list the IDs of your PCI devices. +config INTEL_GMA_ADD_VBT_DATA_FILE + depends on SOC_INTEL_COMMON || CPU_INTEL_COMMON + bool "Add a Video Bios Table (VBT) binary to CBFS" + help + Add a VBT data file to CBFS. The VBT describes the integrated + GPU and connections, and is needed by the GOP driver integrated into + FSP and the OS driver in order to initialize the display. + +config INTEL_GMA_VBT_FILE + string "VBT binary path and filename" + depends on INTEL_GMA_ADD_VBT_DATA_FILE + help + The path and filename of the VBT binary. + config INTEL_MBI bool "Add an MBI image" depends on NORTHBRIDGE_INTEL_I82830 |