Ren Kuo has uploaded this change for review. ( https://review.coreboot.org/22306
Change subject: mainboard/google/coral: Override VBT selection for astronaut ......................................................................
mainboard/google/coral: Override VBT selection for astronaut
Current VBT setting for T8 is only 1ms which is under Innolux N116BCA-EA1 panel's spec.
Modify T8 to 100ms. (Innolux's panel's spec requires T8 needs to be greater than 80ms)
BUG=b:67756548 BRANCH=master TEST=emerge-coral depthcharge coreboot chromeos-bootimage Run on DUT and check panel sequence meets spec. CQ-DEPEND=CL:*493633#
Signed-off-by: Ren Kuo Ren.Kuo@quantatw.com
Change-Id: I580567decfccd78366c37181255015ac2cd76493 --- M src/mainboard/google/reef/variants/coral/mainboard.c 1 file changed, 4 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/06/22306/1
diff --git a/src/mainboard/google/reef/variants/coral/mainboard.c b/src/mainboard/google/reef/variants/coral/mainboard.c index e461163..5e61a3a 100644 --- a/src/mainboard/google/reef/variants/coral/mainboard.c +++ b/src/mainboard/google/reef/variants/coral/mainboard.c @@ -89,6 +89,10 @@ int sku_id = variant_board_sku();
switch (sku_id) { + case SKU_0_ASTRONAUT: + case SKU_1_ASTRONAUT: + return "vbt-astronaut.bin"; + break; case SKU_2_SANTA: case SKU_3_SANTA: return "vbt-santa.bin";