aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/stoneyridge/acpi/sleepstates.asl
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-09-24 15:47:34 +0200
committerPatrick Georgi <pgeorgi@google.com>2021-02-01 08:47:17 +0000
commit86846439113a370b0eab341b50dcd4cf1679b7ec (patch)
tree2497c37d4b7d38dd41fafd20eea5558986708992 /src/soc/amd/stoneyridge/acpi/sleepstates.asl
parent11fdb17564bd4d3e3539c9855be88dd7e5fd8061 (diff)
soc/amd/stoneyridge/acpi: Convert to ASL 2.0 syntax
Generated dsdt.dsl files are same. Change-Id: Ife9bb37817815beec6dad4bc791abba4d91abe00 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/45690 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/soc/amd/stoneyridge/acpi/sleepstates.asl')
-rw-r--r--src/soc/amd/stoneyridge/acpi/sleepstates.asl12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/soc/amd/stoneyridge/acpi/sleepstates.asl b/src/soc/amd/stoneyridge/acpi/sleepstates.asl
index 88c6efc960..9d85062fde 100644
--- a/src/soc/amd/stoneyridge/acpi/sleepstates.asl
+++ b/src/soc/amd/stoneyridge/acpi/sleepstates.asl
@@ -3,25 +3,25 @@
/* S1 support: bit 0, S2 Support: bit 1, etc. S0 & S5 assumed */
Name(SSFG, 0x09)
If (CONFIG(HAVE_ACPI_RESUME)) {
- Store(0x0D, SSFG)
+ SSFG = 0x0d
}
If (CONFIG(DISABLE_ACPI_HIBERNATE)) {
- Store(And(SSFG, 0xF7), SSFG)
+ SSFG &= 0xf7
}
/* Supported sleep states: */
Name(\_S0, Package () {0x00, 0x00, 0x00, 0x00} ) /* (S0) - working state */
-If (And(SSFG, 0x01)) {
+If (SSFG & 0x01) {
Name(\_S1, Package () {0x01, 0x01, 0x00, 0x00} ) /* (S1) - sleeping w/CPU context */
}
-If (And(SSFG, 0x02)) {
+If (SSFG & 0x02) {
Name(\_S2, Package () {0x02, 0x02, 0x00, 0x00} ) /* (S2) - "light" Suspend to RAM */
}
-If (And(SSFG, 0x04)) {
+If (SSFG & 0x04) {
Name(\_S3, Package () {0x03, 0x03, 0x00, 0x00} ) /* (S3) - Suspend to RAM */
}
-If (And(SSFG, 0x08)) {
+If (SSFG & 0x08) {
Name(\_S4, Package () {0x04, 0x04, 0x00, 0x00} ) /* (S4) - Suspend to Disk */
}