diff options
author | Tarun Tuli <taruntuli@google.com> | 2023-04-26 13:44:10 +0000 |
---|---|---|
committer | Eric Lai <eric_lai@quanta.corp-partner.google.com> | 2023-04-27 02:47:07 +0000 |
commit | 7971e7940c8f034c0b23723ec7ac520f63d69003 (patch) | |
tree | 114bd9764a34f12314df90aef298039859edf1ce | |
parent | 8120cb41667c1ec0547904d41bd0841f96aa28bd (diff) |
mb/google/brya/variants/hades: Correct and swap NV33 signals
The signals for the NV33 regulator were swapped (enable and power
good). Switch these back to the way they should be:
GPIO_NV33_PWR_EN GPP_E1
GPIO_NV33_PG GPP_E2
BUG=b:269371363
TEST=builds
Signed-off-by: Tarun Tuli <taruntuli@google.com>
Change-Id: Ic2a53103e1feadd7ecebd4bed02dcc34410b8e3b
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74693
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Reviewed-by: Nick Vaccaro <nvaccaro@google.com>
Reviewed-by: Ivy Jian <ivy.jian@quanta.corp-partner.google.com>
-rw-r--r-- | src/mainboard/google/brya/acpi/power.asl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/brya/acpi/power.asl b/src/mainboard/google/brya/acpi/power.asl index 23759f6b36..186b10977f 100644 --- a/src/mainboard/google/brya/acpi/power.asl +++ b/src/mainboard/google/brya/acpi/power.asl @@ -14,8 +14,8 @@ External (\_SB.PCI0.PMC.IPCS, MethodObj) #else #define GPIO_1V8_PWR_EN GPP_E11 -#define GPIO_NV33_PWR_EN GPP_E2 -#define GPIO_NV33_PG GPP_E1 +#define GPIO_NV33_PWR_EN GPP_E1 +#define GPIO_NV33_PG GPP_E2 #endif #define GPIO_1V8_PG GPP_E20 |