summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSubrata Banik <subratabanik@google.com>2022-03-14 01:43:32 +0530
committerCommit Bot <commit-bot@chromium.org>2022-03-15 12:51:19 +0000
commite064462e6be553bf9601a1d2d0b79f2eded47381 (patch)
treed996853c87cdeca84bda6a88020d864b1b803ead
parent660c41fbf07015af212aadba8395439f137789e8 (diff)
downloadvboot-e064462e6be553bf9601a1d2d0b79f2eded47381.tar.gz
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 <subratabanik@google.com> Change-Id: I9c1583972e71ae472c8b3f360eda34611c8c8f0c Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/vboot_reference/+/3520099 Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Tested-by: Subrata Banik <subratabanik@chromium.org> Commit-Queue: Subrata Banik <subratabanik@chromium.org> Auto-Submit: Subrata Banik <subratabanik@chromium.org>
-rw-r--r--host/arch/x86/lib/crossystem_arch.c2
1 files changed, 2 insertions, 0 deletions
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 },