From b6adca6689753bdbe798cd1e0a56f8a4df749445 Mon Sep 17 00:00:00 2001 From: Tim Wawrzynczak Date: Mon, 10 Feb 2020 13:14:36 -0700 Subject: hatch: Add check for convertible SKUs in lid_angle_peripheral_enable Check for a convertible SKU before turning off the keyboard in the switch to tablet mode. See go/hatch-skus for the list. BUG=b:125936966 BRANCH=firmware-hatch-12672.B TEST=On Kohaku, artificially force SKU to both convertible and non-convertible SKUs, switch to tablet mode, and then check whether Alt-Volup-R reboots the EC. Change-Id: Id29644c4e050705203b860324f14b1b87bc4ccf4 Signed-off-by: Tim Wawrzynczak Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2047630 Reviewed-by: Paul Fagerburg --- board/helios/board.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'board/helios') diff --git a/board/helios/board.c b/board/helios/board.c index 008cdd6e96..dd0b2c87a3 100644 --- a/board/helios/board.c +++ b/board/helios/board.c @@ -405,3 +405,10 @@ int board_tcpc_post_init(int port) return rv; } + +bool board_is_convertible(void) +{ + const uint8_t sku = get_board_sku(); + + return (sku == 255) || (sku == 1); +} -- cgit v1.2.1