mb/google/octopus: Garfour override VBT selection

Disable DRRS in VBT to solve panel flick issue

SKU ID
49/51 will use vbt_garfour.bin
50/52 will use vbt_garfour_hdmi.bin

BUG=b:177783330
BRANCH=octopus
TEST=emerge-octopus coreboot chromeos-bootimage
     check /run/debug/i915_drrs_status shows DRRS supported NO.

Cq-Depend: chrome-internal:3534569
Change-Id: I5ebb66ec043a6b409dd5abbc31da417f50dbad5c
Signed-off-by: Tony Huang <tony-huang@quanta.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49635
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Tony Huang 2021-01-18 14:11:20 +08:00 committed by Patrick Georgi
parent 9f5c365e6d
commit 8ab253c9a9
1 changed files with 5 additions and 1 deletions

View File

@ -19,9 +19,13 @@ const char *mainboard_vbt_filename(void)
switch (sku_id) {
case SKU_9_HDMI:
case SKU_19_HDMI_TS:
return "vbt_garg_hdmi.bin";
case SKU_49_2A2C_TS:
case SKU_51_2A2C:
return "vbt_garfour.bin";
case SKU_50_HDMI:
case SKU_52_HDMI_TS:
return "vbt_garg_hdmi.bin";
return "vbt_garfour_hdmi.bin";
default:
return "vbt.bin";
}