From 0eba73228f17489f8b4d4e736d800e88fb4001f2 Mon Sep 17 00:00:00 2001 From: Tim Wawrzynczak Date: Tue, 20 Sep 2022 11:47:02 -0600 Subject: mb/google/brya/acpi: Don't clear GC6 flag after GC6 entry According to Nvidia, the GC6 flag (DFEN) should not get cleared after a successful GC6 entry; the kernel driver will not re-inform ACPI that the exit should be GC6 exit as well. BUG=b:243888246 BRANCH=brya TEST=tested by Nvidia Signed-off-by: Tim Wawrzynczak Change-Id: I220795928d03f269de48278ea0ab57de7253fad5 Reviewed-on: https://review.coreboot.org/c/coreboot/+/67745 Reviewed-by: Tarun Tuli Tested-by: build bot (Jenkins) --- src/mainboard/google/brya/acpi/power.asl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mainboard/google/brya/acpi/power.asl b/src/mainboard/google/brya/acpi/power.asl index a38429701071..f2bcacb121df 100644 --- a/src/mainboard/google/brya/acpi/power.asl +++ b/src/mainboard/google/brya/acpi/power.asl @@ -338,6 +338,7 @@ Method (NPON, 0, Serialized) /* Handle deferred GC6 vs. poweroff request */ Method (NPOF, 0, Serialized) { + /* Don't touch the `DFEN` flag until the GC6 exit. */ If (DFEN == GC6_DEFER_ENABLE) { /* Deferred GC6 entry */ @@ -345,8 +346,6 @@ Method (NPOF, 0, Serialized) { GC6I () } - - DFEN = GC6_DEFER_DISABLE } Else { -- cgit v1.2.3