From d0dc50cf6b514c3260cb423088eb56172da1c992 Mon Sep 17 00:00:00 2001 From: Raul E Rangel Date: Mon, 25 Apr 2022 12:23:27 -0600 Subject: [PATCH] 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 Change-Id: Iad45bcda326597ebfc8b9c403de5b4a934b0bbc6 Reviewed-on: https://review.coreboot.org/c/coreboot/+/63841 Reviewed-by: Karthik Ramasubramanian Reviewed-by: Felix Held Tested-by: build bot (Jenkins) --- src/soc/amd/sabrina/acpi/soc.asl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/soc/amd/sabrina/acpi/soc.asl b/src/soc/amd/sabrina/acpi/soc.asl index f5a41a17cf..b4d220a716 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 () */ }