summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/zork/variants
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2020-07-14 10:49:25 -0600
committerFelix Held <felix-coreboot@felixheld.de>2020-07-20 14:01:09 +0000
commit030bace5626888d50b0168e75c1e034fbe6a15d6 (patch)
tree7072ac0f94f61290e98ee92afbf231c9721cecae /src/mainboard/google/zork/variants
parentdce0ce954fa215bad99f7523e6767eb4cd5f7332 (diff)
downloadcoreboot-030bace5626888d50b0168e75c1e034fbe6a15d6.tar.gz
coreboot-030bace5626888d50b0168e75c1e034fbe6a15d6.tar.bz2
coreboot-030bace5626888d50b0168e75c1e034fbe6a15d6.zip
mb/google/zork: Delete sleep.asl
These methods are empty and the kernel treats these as optional. BUG=b:153001807, b:154756391 TEST=Suspend and resume trembyle Signed-off-by: Raul E Rangel <rrangel@chromium.org> Change-Id: I5f2b375c1186951f95b7ac44dc7158a0299013a1 Reviewed-on: https://review.coreboot.org/c/coreboot/+/43465 Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/zork/variants')
-rw-r--r--src/mainboard/google/zork/variants/baseboard/include/baseboard/acpi/sleep.asl48
-rw-r--r--src/mainboard/google/zork/variants/berknip/include/variant/acpi/sleep.asl3
-rw-r--r--src/mainboard/google/zork/variants/dalboz/include/variant/acpi/sleep.asl3
-rw-r--r--src/mainboard/google/zork/variants/ezkinil/include/variant/acpi/sleep.asl3
-rw-r--r--src/mainboard/google/zork/variants/morphius/include/variant/acpi/sleep.asl3
-rw-r--r--src/mainboard/google/zork/variants/trembyle/include/variant/acpi/sleep.asl3
-rw-r--r--src/mainboard/google/zork/variants/vilboz/include/variant/acpi/sleep.asl3
-rw-r--r--src/mainboard/google/zork/variants/woomax/include/variant/acpi/sleep.asl3
8 files changed, 0 insertions, 69 deletions
diff --git a/src/mainboard/google/zork/variants/baseboard/include/baseboard/acpi/sleep.asl b/src/mainboard/google/zork/variants/baseboard/include/baseboard/acpi/sleep.asl
deleted file mode 100644
index 4a62ecf2dbdd..000000000000
--- a/src/mainboard/google/zork/variants/baseboard/include/baseboard/acpi/sleep.asl
+++ /dev/null
@@ -1,48 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-
-/*
-* \_PTS - Prepare to Sleep method
-*
-* Entry:
-* Arg0=The value of the sleeping state S1=1, S2=2, etc
-*
-* Exit:
-* -none-
-*
-* The _PTS control method is executed at the beginning of the sleep process
-* for S1-S5. The sleeping value is passed to the _PTS control method. This
-* control method may be executed a relatively long time before entering the
-* sleep state and the OS may abort the operation without notification to
-* the ACPI driver. This method cannot modify the configuration or power
-* state of any device in the system.
-*/
-Method(_PTS, 1) {
- /* DBGO("\\_PTS\n") */
- /* DBGO("From S0 to S") */
- /* DBGO(Arg0) */
- /* DBGO("\n") */
-} /* End Method(\_PTS) */
-
-/*
-* \_WAK System Wake method
-*
-* Entry:
-* Arg0=The value of the sleeping state S1=1, S2=2
-*
-* Exit:
-* Return package of 2 DWords
-* Dword 1 - Status
-* 0x00000000 wake succeeded
-* 0x00000001 Wake was signaled but failed due to lack of power
-* 0x00000002 Wake was signaled but failed due to thermal condition
-* Dword 2 - Power Supply state
-* if non-zero the effective S-state the power supply entered
-*/
-Method(\_WAK, 1) {
- /* DBGO("\\_WAK\n") */
- /* DBGO("From S") */
- /* DBGO(Arg0) */
- /* DBGO(" to S0\n") */
-
- Return(Package(){Zero, Zero})
-} /* End Method(\_WAK) */
diff --git a/src/mainboard/google/zork/variants/berknip/include/variant/acpi/sleep.asl b/src/mainboard/google/zork/variants/berknip/include/variant/acpi/sleep.asl
deleted file mode 100644
index 8177a9df2a8f..000000000000
--- a/src/mainboard/google/zork/variants/berknip/include/variant/acpi/sleep.asl
+++ /dev/null
@@ -1,3 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-
-#include <baseboard/acpi/sleep.asl>
diff --git a/src/mainboard/google/zork/variants/dalboz/include/variant/acpi/sleep.asl b/src/mainboard/google/zork/variants/dalboz/include/variant/acpi/sleep.asl
deleted file mode 100644
index 8177a9df2a8f..000000000000
--- a/src/mainboard/google/zork/variants/dalboz/include/variant/acpi/sleep.asl
+++ /dev/null
@@ -1,3 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-
-#include <baseboard/acpi/sleep.asl>
diff --git a/src/mainboard/google/zork/variants/ezkinil/include/variant/acpi/sleep.asl b/src/mainboard/google/zork/variants/ezkinil/include/variant/acpi/sleep.asl
deleted file mode 100644
index 8177a9df2a8f..000000000000
--- a/src/mainboard/google/zork/variants/ezkinil/include/variant/acpi/sleep.asl
+++ /dev/null
@@ -1,3 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-
-#include <baseboard/acpi/sleep.asl>
diff --git a/src/mainboard/google/zork/variants/morphius/include/variant/acpi/sleep.asl b/src/mainboard/google/zork/variants/morphius/include/variant/acpi/sleep.asl
deleted file mode 100644
index 8177a9df2a8f..000000000000
--- a/src/mainboard/google/zork/variants/morphius/include/variant/acpi/sleep.asl
+++ /dev/null
@@ -1,3 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-
-#include <baseboard/acpi/sleep.asl>
diff --git a/src/mainboard/google/zork/variants/trembyle/include/variant/acpi/sleep.asl b/src/mainboard/google/zork/variants/trembyle/include/variant/acpi/sleep.asl
deleted file mode 100644
index 8177a9df2a8f..000000000000
--- a/src/mainboard/google/zork/variants/trembyle/include/variant/acpi/sleep.asl
+++ /dev/null
@@ -1,3 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-
-#include <baseboard/acpi/sleep.asl>
diff --git a/src/mainboard/google/zork/variants/vilboz/include/variant/acpi/sleep.asl b/src/mainboard/google/zork/variants/vilboz/include/variant/acpi/sleep.asl
deleted file mode 100644
index 8177a9df2a8f..000000000000
--- a/src/mainboard/google/zork/variants/vilboz/include/variant/acpi/sleep.asl
+++ /dev/null
@@ -1,3 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-
-#include <baseboard/acpi/sleep.asl>
diff --git a/src/mainboard/google/zork/variants/woomax/include/variant/acpi/sleep.asl b/src/mainboard/google/zork/variants/woomax/include/variant/acpi/sleep.asl
deleted file mode 100644
index 8177a9df2a8f..000000000000
--- a/src/mainboard/google/zork/variants/woomax/include/variant/acpi/sleep.asl
+++ /dev/null
@@ -1,3 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-
-#include <baseboard/acpi/sleep.asl>