diff options
author | ren kuo <ren.kuo@quantatw.com> | 2017-11-03 18:00:11 +0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2017-11-06 13:55:46 +0000 |
commit | 6d53c6bc6a248439de78d498a13441a6925ab713 (patch) | |
tree | 8d6f787e239326c1b27923fb541bddd9073f2a65 /src/mainboard/google/reef/variants | |
parent | 64f87f35412b24509123860b7cf6bdc9e6fab9f9 (diff) |
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)
CQ-DEPEND=CL:*496012
BUG=b:67756548
BRANCH=master
TEST=emerge-coral depthcharge coreboot chromeos-bootimage
Run on DUT and check panel sequence meets spec.
Change-Id: I580567decfccd78366c37181255015ac2cd76493
Signed-off-by: Ren Kuo <Ren.Kuo@quantatw.com>
Reviewed-on: https://review.coreboot.org/22306
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Ren Kuo <ren.kuo@quantatw.com>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/mainboard/google/reef/variants')
-rw-r--r-- | src/mainboard/google/reef/variants/coral/mainboard.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainboard/google/reef/variants/coral/mainboard.c b/src/mainboard/google/reef/variants/coral/mainboard.c index e461163bdc..5e61a3a4ed 100644 --- a/src/mainboard/google/reef/variants/coral/mainboard.c +++ b/src/mainboard/google/reef/variants/coral/mainboard.c @@ -89,6 +89,10 @@ const char *mainboard_vbt_filename(void) 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"; |