diff options
author | Tim Wawrzynczak <twawrzynczak@chromium.org> | 2022-06-30 14:38:19 -0600 |
---|---|---|
committer | Tim Wawrzynczak <twawrzynczak@chromium.org> | 2022-07-13 16:11:02 +0000 |
commit | bebdd4fb8a574c6fccbcf3e68ee8eff9ae0274b1 (patch) | |
tree | 6cec5585d25b9a5dffd262a48f78b5561207e599 | |
parent | 21b187872ec42ad9869db0a19e0ce39a0292b3d3 (diff) |
mb/google/brya/acpi: Fix GPIO assignment for GPIO_GPU_NVVDD_EN
GPIO_GPU_NVVDD_EN is incorrectly (duplicately) assigned to GPP_A19 in
power.asl, but a double check of the schematic shows that the actual pad
is GPP_A17, so this patch fixes that.
Signed-off-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Change-Id: I4432b50c737508b7e0d595423d614a723d2499c4
Reviewed-on: https://review.coreboot.org/c/coreboot/+/65580
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
-rw-r--r-- | src/mainboard/google/brya/acpi/power.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/brya/acpi/power.asl b/src/mainboard/google/brya/acpi/power.asl index cd80c5010d..e52ff8753c 100644 --- a/src/mainboard/google/brya/acpi/power.asl +++ b/src/mainboard/google/brya/acpi/power.asl @@ -15,7 +15,7 @@ #define GPIO_GPU_PERST_L GPP_B3 #define GPIO_GPU_ALLRAILS_PG GPP_E5 -#define GPIO_GPU_NVVDD_EN GPP_A19 +#define GPIO_GPU_NVVDD_EN GPP_A17 #define GC6_DEFER_TYPE_EXIT_GC6 3 |