mainboard/google/coral: Override VBT selection for epaulette

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:78541692
BRANCH=master
TEST=emerge-coral depthcharge coreboot chromeos-bootimage
     Run on DUT and check panel sequence meets spec.

Change-Id: I5f9103aca7871095a828a74cd6a97e1951adb81f
Signed-off-by: Ren Kuo <Ren.Kuo@quantatw.com>
Reviewed-on: https://review.coreboot.org/26214
Reviewed-by: Ren Kuo <ren.kuo@quantatw.com>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
ren kuo 2018-05-10 19:30:33 +08:00 committed by Patrick Georgi
parent 88c9d98b64
commit f064c75ae2
1 changed files with 10 additions and 0 deletions

View File

@ -30,6 +30,10 @@ enum {
SKU_5_LAVA = 5, SKU_5_LAVA = 5,
SKU_9_LAVA = 9, SKU_9_LAVA = 9,
SKU_10_LAVA = 10, SKU_10_LAVA = 10,
SKU_13_EPAULETTE = 13,
SKU_14_EPAULETTE = 14,
SKU_15_EPAULETTE = 15,
SKU_16_EPAULETTE = 16,
SKU_61_ASTRONAUT = 61, SKU_61_ASTRONAUT = 61,
SKU_62_ASTRONAUT = 62, SKU_62_ASTRONAUT = 62,
SKU_160_NASHER = 160, SKU_160_NASHER = 160,
@ -109,6 +113,12 @@ const char *mainboard_vbt_filename(void)
case SKU_3_SANTA: case SKU_3_SANTA:
return "vbt-santa.bin"; return "vbt-santa.bin";
break; break;
case SKU_13_EPAULETTE:
case SKU_14_EPAULETTE:
case SKU_15_EPAULETTE:
case SKU_16_EPAULETTE:
return "vbt-epaulette.bin";
break;
case SKU_160_NASHER: case SKU_160_NASHER:
case SKU_161_NASHER: case SKU_161_NASHER:
case SKU_162_NASHER: case SKU_162_NASHER: