aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Wawrzynczak <twawrzynczak@chromium.org>2022-06-30 10:12:11 -0600
committerTim Wawrzynczak <twawrzynczak@chromium.org>2022-07-13 16:10:36 +0000
commit21b187872ec42ad9869db0a19e0ce39a0292b3d3 (patch)
treee9b4a2e6e7d6b44281d147cff9af3d04cd76b211
parent52ccd293d7814a5495b2e679f31f41c030643c8e (diff)
mb/google/brya/acpi: Remove NV_33 power rail from GC6 entry/exit sequences
I misread my notes when writing the code for the GC6I/GC6O Methods, and accidentally included NV_33 in the GC6 sequence, which is incorrect (confirmed in the Hardware Design Guide). This patch removes the code that brings NV_33 up and down during the GC6 sequences. BUG=b:236676400 TEST=build Signed-off-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Change-Id: Iaa6c5ef3d7b1edbe13257f99013ab0e4382bdbf5 Reviewed-on: https://review.coreboot.org/c/coreboot/+/65565 Reviewed-by: Robert Zieba <robertzieba@google.com> 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.asl12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/mainboard/google/brya/acpi/power.asl b/src/mainboard/google/brya/acpi/power.asl
index daaba74385..cd80c5010d 100644
--- a/src/mainboard/google/brya/acpi/power.asl
+++ b/src/mainboard/google/brya/acpi/power.asl
@@ -78,12 +78,6 @@ Method (GC6I, 0, Serialized)
/* Deassert EN_PCH_PPVAR_GPU_FBVDDQ (active-low) */
\_SB.PCI0.STXS (GPIO_FBVDD_PWR_EN)
- /* Deassert EN_PP3300_GPU */
- \_SB.PCI0.CTXS (GPIO_NV33_PWR_EN)
-
- /* Wait for de-assertion of PG_PP3300_GPU */
- GPPL (GPIO_NV33_PG, 0, 20)
-
GC6E = GC6_STATE_ENTERED
}
@@ -92,12 +86,6 @@ Method (GC6O, 0, Serialized)
{
GC6E = GC6_STATE_TRANSITION
- /* Assert EN_PP3300_GPU */
- \_SB.PCI0.STXS (GPIO_NV33_PWR_EN)
-
- /* Wait for assertion of PG_PP3300_GPU */
- GPPL (GPIO_NV33_PG, 1, 20)
-
/* Deassert GPU_PERST_L */
\_SB.PCI0.CTXS (GPIO_GPU_PERST_L)