summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/sabrina
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2022-04-25 12:23:27 -0600
committerFelix Held <felix-coreboot@felixheld.de>2022-04-27 11:32:29 +0000
commitd0dc50cf6b514c3260cb423088eb56172da1c992 (patch)
tree628d54825585c10716d372a0eb6de3e5d80c953a /src/soc/amd/sabrina
parent5cf02a4ecdcf4c93a281289fa51dff90bdddd36f (diff)
downloadcoreboot-d0dc50cf6b514c3260cb423088eb56172da1c992.tar.gz
coreboot-d0dc50cf6b514c3260cb423088eb56172da1c992.tar.bz2
coreboot-d0dc50cf6b514c3260cb423088eb56172da1c992.zip
soc/amd/sabrina/acpi: Disable ALIB calls
We don't currently have ALIB plumbed through. Disable the ALIB call to remove ACPI errors during boot. BUG=b:228496169 TEST=Boot skyrim and no longer see ALIB errors Signed-off-by: Raul E Rangel <rrangel@chromium.org> Change-Id: Iad45bcda326597ebfc8b9c403de5b4a934b0bbc6 Reviewed-on: https://review.coreboot.org/c/coreboot/+/63841 Reviewed-by: Karthik Ramasubramanian <kramasub@google.com> Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/sabrina')
-rw-r--r--src/soc/amd/sabrina/acpi/soc.asl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/amd/sabrina/acpi/soc.asl b/src/soc/amd/sabrina/acpi/soc.asl
index f5a41a17cfd1..b4d220a71629 100644
--- a/src/soc/amd/sabrina/acpi/soc.asl
+++ b/src/soc/amd/sabrina/acpi/soc.asl
@@ -39,5 +39,6 @@ Scope(\_SB) {
Method (PNOT)
{
/* Report AC/DC state to ALIB using WAL1() */
- \WAL1 ()
+ /* TODO: b/228496169 - Re-enable */
+ /* \WAL1 () */
}