From e064462e6be553bf9601a1d2d0b79f2eded47381 Mon Sep 17 00:00:00 2001 From: Subrata Banik Date: Mon, 14 Mar 2022 01:43:32 +0530 Subject: crossystem: Add support for MTL gpiochip On Meteor Lake platform, the pinctrl (gpiochip) driver label is "INTC1083:00", hence declare it properly. BUG=b:224325352 TEST=Test pending Signed-off-by: Subrata Banik Change-Id: I9c1583972e71ae472c8b3f360eda34611c8c8f0c Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/vboot_reference/+/3520099 Reviewed-by: Tim Wawrzynczak Tested-by: Subrata Banik Commit-Queue: Subrata Banik Auto-Submit: Subrata Banik --- host/arch/x86/lib/crossystem_arch.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/host/arch/x86/lib/crossystem_arch.c b/host/arch/x86/lib/crossystem_arch.c index d48cf877..4040ddcc 100644 --- a/host/arch/x86/lib/crossystem_arch.c +++ b/host/arch/x86/lib/crossystem_arch.c @@ -734,6 +734,8 @@ static const struct GpioChipset chipsets_supported[] = { { "INTC1055:00", FindGpioChipOffsetByLabel }, { "INTC1056:00", FindGpioChipOffsetByLabel }, { "INTC1057:00", FindGpioChipOffsetByLabel }, + /* INTC108x are for Meteor Lake */ + { "INTC1083:00", FindGpioChipOffsetByLabel }, /* INT3453 are for GLK */ { "INT3453:00", FindGpioChipOffsetByLabel }, { "INT3453:01", FindGpioChipOffsetByLabel }, -- cgit v1.2.1