Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/33738
Change subject: device/Kconfig: Add HAVE_EXT_GFX kconfig ......................................................................
device/Kconfig: Add HAVE_EXT_GFX kconfig
This patch creates new kconfig option to bring display over external PCI based GFX card. CONFIG_ENABLE_EXT_GFX to select all required kconfig to launch legacy oprom from pci based GFX card.
Change-Id: I8ebde69e38defbe3321eb5e5bbd632c209ae2cd8 Signed-off-by: Subrata Banik subrata.banik@intel.com --- M src/device/Kconfig 1 file changed, 16 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/38/33738/1
diff --git a/src/device/Kconfig b/src/device/Kconfig index 0539062..0ee6158 100644 --- a/src/device/Kconfig +++ b/src/device/Kconfig @@ -682,4 +682,20 @@ I2C controller is not (yet) available. The platform code needs to provide bindings to manually toggle I2C lines.
+config HAVE_EXT_GFX + bool + +config ENABLE_EXT_GFX + bool "Enable Display over external PCI GFX card" + default n + depends on HAVE_EXT_GFX + select VGA_ROM_RUN + select ALWAYS_LOAD_OPROM + select ALWAYS_RUN_OPROM + select ON_DEVICE_ROM_LOAD + select FRAMEBUFFER_SET_VESA_MODE + help + Its possible to bring display through external graphics card in coreboot. + This option enables graphics initialization with external graphics card. + endmenu