summaryrefslogtreecommitdiff
path: root/src/mainboard/google/brya/mainboard.asl
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/brya/mainboard.asl')
-rw-r--r--src/mainboard/google/brya/mainboard.asl26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/mainboard/google/brya/mainboard.asl b/src/mainboard/google/brya/mainboard.asl
deleted file mode 100644
index 8ca694d152..0000000000
--- a/src/mainboard/google/brya/mainboard.asl
+++ /dev/null
@@ -1,26 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-
-#include <baseboard/gpio.h>
-
-#if CONFIG(HAVE_SLP_S0_GATE)
-/*
- * S0ix Entry/Exit Notifications
- * Called from \_SB.PEPD._DSM
- */
-Method (MS0X, 1, Serialized)
-{
- If (Arg0 == 1) {
- /*
- * On S0ix entry, clear the SLP_S0_GATE pin, so that the rest of
- * the platform can transition to its low power state as well.
- */
- \_SB.PCI0.CTXS(GPIO_SLP_S0_GATE);
- } Else {
- /*
- * On S0ix exit, set the SLP_S0_GATE pin, so that the rest of
- * the platform will resume from its low power state.
- */
- \_SB.PCI0.STXS(GPIO_SLP_S0_GATE);
- }
-}
-#endif