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>
This commit is contained in:
Tony Huang 2021-05-19 11:48:28 +08:00 committed by Patrick Georgi
parent 576f3d00f9
commit fae418777d
1 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,8 @@ const char *get_wifi_sar_cbfs_filename(void)
const char *mainboard_vbt_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_drawman.bin";
return "vbt.bin"; return "vbt.bin";