diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/amd/olivehill/acpi/sleep.asl | 6 | ||||
-rw-r--r-- | src/mainboard/asrock/imb-a180/acpi/sleep.asl | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/mainboard/amd/olivehill/acpi/sleep.asl b/src/mainboard/amd/olivehill/acpi/sleep.asl index dd0d9a41cc..fc04ecc2d5 100644 --- a/src/mainboard/amd/olivehill/acpi/sleep.asl +++ b/src/mainboard/amd/olivehill/acpi/sleep.asl @@ -36,6 +36,10 @@ Name(WKST,Package(){Zero, Zero}) * the ACPI driver. This method cannot modify the configuration or power * state of any device in the system. */ + +External(\_SB.APTS, MethodObj) +External(\_SB.AWAK, MethodObj) + Method(_PTS, 1) { /* DBGO("\\_PTS\n") */ /* DBGO("From S0 to S") */ @@ -46,6 +50,7 @@ Method(_PTS, 1) { Store(0, Index(WKST,0)) Store(0, Index(WKST,1)) Store(7, UPWS) + \_SB.APTS(Arg0) } /* End Method(\_PTS) */ /* @@ -84,6 +89,7 @@ Method(\_WAK, 1) { /* DBGO("From S") */ /* DBGO(Arg0) */ /* DBGO(" to S0\n") */ + \_SB.AWAK(Arg0) Return(WKST) } /* End Method(\_WAK) */ diff --git a/src/mainboard/asrock/imb-a180/acpi/sleep.asl b/src/mainboard/asrock/imb-a180/acpi/sleep.asl index dd0d9a41cc..fc04ecc2d5 100644 --- a/src/mainboard/asrock/imb-a180/acpi/sleep.asl +++ b/src/mainboard/asrock/imb-a180/acpi/sleep.asl @@ -36,6 +36,10 @@ Name(WKST,Package(){Zero, Zero}) * the ACPI driver. This method cannot modify the configuration or power * state of any device in the system. */ + +External(\_SB.APTS, MethodObj) +External(\_SB.AWAK, MethodObj) + Method(_PTS, 1) { /* DBGO("\\_PTS\n") */ /* DBGO("From S0 to S") */ @@ -46,6 +50,7 @@ Method(_PTS, 1) { Store(0, Index(WKST,0)) Store(0, Index(WKST,1)) Store(7, UPWS) + \_SB.APTS(Arg0) } /* End Method(\_PTS) */ /* @@ -84,6 +89,7 @@ Method(\_WAK, 1) { /* DBGO("From S") */ /* DBGO(Arg0) */ /* DBGO(" to S0\n") */ + \_SB.AWAK(Arg0) Return(WKST) } /* End Method(\_WAK) */ |