summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Huang <tony-huang@quanta.corp-partner.google.com>2021-05-19 11:48:28 +0800
committerPatrick Georgi <pgeorgi@google.com>2021-05-21 11:22:05 +0000
commitfae418777d00acb85a4b0977cfe21467df64fdf6 (patch)
tree3d089ddc976c1c923ffd0fec2fcf83166a8b6899
parent576f3d00f976d0895f105caf38ced5ff5537eceb (diff)
downloadcoreboot-fae418777d00acb85a4b0977cfe21467df64fdf6.tar.xz
mb/google/dedede/var/drawcia: Support HDMI VBT for Drawper
Drawper support LTE+HDMI, so use DB_PORTS_1A_HDMI_LTE to select HDMI VBT output for it. BUG=b:186393848 BRANCH=dedede TEST=Build and boot to OS check HDMI output works. Change-Id: Ibf34cce1e3cbfce8a71dce880c50f85db9295b1e Signed-off-by: Tony Huang <tony-huang@quanta.corp-partner.google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/54645 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
-rw-r--r--src/mainboard/google/dedede/variants/drawcia/variant.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainboard/google/dedede/variants/drawcia/variant.c b/src/mainboard/google/dedede/variants/drawcia/variant.c
index 9dc0028e7c..3b62855a87 100644
--- a/src/mainboard/google/dedede/variants/drawcia/variant.c
+++ b/src/mainboard/google/dedede/variants/drawcia/variant.c
@@ -14,7 +14,8 @@ const char *get_wifi_sar_cbfs_filename(void)
const char *mainboard_vbt_filename(void)
{
- if (fw_config_probe(FW_CONFIG(DB_PORTS, DB_PORTS_1A_HDMI)))
+ if (fw_config_probe(FW_CONFIG(DB_PORTS, DB_PORTS_1A_HDMI)) ||
+ fw_config_probe(FW_CONFIG(DB_PORTS, DB_PORTS_1A_HDMI_LTE)))
return "vbt_drawman.bin";
return "vbt.bin";