From 8143d03d514377a67f520f0a66c4344ffcb6d35d Mon Sep 17 00:00:00 2001 From: Felix Held Date: Tue, 4 May 2021 21:20:06 +0200 Subject: soc/amd/cezanne/agesa_acpi: add add_agesa_fsp_acpi_table call this adds the ALIB SSDT that gets passed from the FSP to coreboot via a HOB. BUG=b:185481298 Signed-off-by: Felix Held Change-Id: I8a7dae5789eee442b321ddf276494eb53fc5f499 Reviewed-on: https://review.coreboot.org/c/coreboot/+/52904 Tested-by: build bot (Jenkins) Reviewed-by: Matt Papageorge Reviewed-by: Raul Rangel --- src/soc/amd/cezanne/agesa_acpi.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/soc/amd') diff --git a/src/soc/amd/cezanne/agesa_acpi.c b/src/soc/amd/cezanne/agesa_acpi.c index 8084e4d5eb..35114a1a60 100644 --- a/src/soc/amd/cezanne/agesa_acpi.c +++ b/src/soc/amd/cezanne/agesa_acpi.c @@ -3,11 +3,15 @@ #include #include #include +#include #include #include uintptr_t agesa_write_acpi_tables(const struct device *device, uintptr_t current, acpi_rsdp_t *rsdp) { + /* add ALIB SSDT from HOB */ + current = add_agesa_fsp_acpi_table(AMD_FSP_ACPI_ALIB_HOB_GUID, "ALIB", rsdp, current); + return current; } -- cgit v1.2.3