diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2022-05-25 18:34:08 +0200 |
---|---|---|
committer | Martin L Roth <gaumless@tutanota.com> | 2022-05-28 04:43:53 +0000 |
commit | 4baadff264c35f069665d13d830d8684fae6ebe2 (patch) | |
tree | 4bff95c8918f2df6385b1a232ac79b7fc1684599 /src | |
parent | 5110c9d7d5115b7948dd78544a8713693ac345b8 (diff) |
soc/amd/sabrina/acpi/soc.asl: re-enable WAL1 call in PNOT method
Now that the FSP provides the ALIB ACPI table via a HOB, the PNOT power
notify method can call WAL1 which will then call ALIB to communicate the
current AC/DC state to the SMU.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Ic966b73aa28f329207f8d840ca5fb5f2bf6ec9b7
Reviewed-on: https://review.coreboot.org/c/coreboot/+/64667
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/amd/sabrina/acpi/soc.asl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/soc/amd/sabrina/acpi/soc.asl b/src/soc/amd/sabrina/acpi/soc.asl index b4d220a716..f5a41a17cf 100644 --- a/src/soc/amd/sabrina/acpi/soc.asl +++ b/src/soc/amd/sabrina/acpi/soc.asl @@ -39,6 +39,5 @@ Scope(\_SB) { Method (PNOT) { /* Report AC/DC state to ALIB using WAL1() */ - /* TODO: b/228496169 - Re-enable */ - /* \WAL1 () */ + \WAL1 () } |