Patrick Rudolph has uploaded this change for review. ( https://review.coreboot.org/20117
Change subject: mb/lenovo/t430: Enable libgfxinit ......................................................................
mb/lenovo/t430: Enable libgfxinit
Enable libgfxinit.
Tested on Lenovo T430: * LVDS * VGA * DP (using DP->HDMI adapter)
All three ports are working. The LVDS port is garbled under linux when VGA or DP is connected, likely due to missing VBT.
Change-Id: I665661e93724072d1e8412cfcc0e818f824c8cb0 Signed-off-by: Patrick Rudolph siro@das-labor.org --- M src/mainboard/lenovo/t430/Kconfig M src/mainboard/lenovo/t430/Makefile.inc 2 files changed, 4 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/17/20117/1
diff --git a/src/mainboard/lenovo/t430/Kconfig b/src/mainboard/lenovo/t430/Kconfig index ea46e23..df22c3e 100644 --- a/src/mainboard/lenovo/t430/Kconfig +++ b/src/mainboard/lenovo/t430/Kconfig @@ -22,6 +22,8 @@ select USE_NATIVE_RAMINIT select ENABLE_VMX select DRIVERS_LENOVO_HYBRID_GRAPHICS + select MAINBOARD_HAS_LIBGFXINIT + select GFX_GMA_INTERNAL_IS_LVDS
config HAVE_IFD_BIN bool diff --git a/src/mainboard/lenovo/t430/Makefile.inc b/src/mainboard/lenovo/t430/Makefile.inc index ae84209..794b5cd 100644 --- a/src/mainboard/lenovo/t430/Makefile.inc +++ b/src/mainboard/lenovo/t430/Makefile.inc @@ -2,3 +2,5 @@ romstage-y += gpio.c ramstage-y += acpi_tables.c smm-y += smihandler.c + +ramstage-$(CONFIG_MAINBOARD_USE_LIBGFXINIT) += gma-mainboard.ads