From cbcd8a02fc8d5c251ef61a681d6e6cfa0c9a8965 Mon Sep 17 00:00:00 2001 From: Amanda Huang Date: Thu, 22 Oct 2020 10:31:39 +0800 Subject: mb/google/octopus/var/fleex: Add new SKU for LTE touch New SKU ID 5 is used for LTE touch SKU. This patch does LTE power off for LTE sku and only use Wifi SAR table for non-LTE sku. BUG=b:168001586 BRANCH=octopus TEST=Check no SAR table can be loaded with sku id 4 and 5. Change-Id: Ic0405d3e52aa813bbb1f350966a9e2825e595ce4 Signed-off-by: Amanda Huang Reviewed-on: https://review.coreboot.org/c/coreboot/+/46643 Reviewed-by: EricR Lai Tested-by: build bot (Jenkins) --- src/mainboard/google/octopus/variants/fleex/variant.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mainboard/google/octopus/variants') diff --git a/src/mainboard/google/octopus/variants/fleex/variant.c b/src/mainboard/google/octopus/variants/fleex/variant.c index f1ec818bb3..522faa9d7b 100644 --- a/src/mainboard/google/octopus/variants/fleex/variant.c +++ b/src/mainboard/google/octopus/variants/fleex/variant.c @@ -5,11 +5,11 @@ #include #include -#define LTE_SKU 4 +#define MIN_LTE_SKU 4 static bool is_lte_sku(void) { - return (google_chromeec_get_board_sku() == LTE_SKU); + return (google_chromeec_get_board_sku() >= MIN_LTE_SKU); } void variant_smi_sleep(u8 slp_typ) -- cgit v1.2.3