aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2024-04-19 17:08:08 +0200
committerFelix Held <felix-coreboot@felixheld.de>2024-04-22 18:37:07 +0000
commit3a988ccebfadf16671f460484794cc573b993e8b (patch)
tree08db1422d439f5a96fa1395ba0f9427a8971cef8 /src/soc/amd
parentd7427c6dc84a808611886f582d8aded467b50abc (diff)
soc/amd/phoenix/acpi: call acpi_add_opensil_tables in openSIL case
Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Ifdfdbf193bd96a6dda72a2f23d51925fd369aa01 Reviewed-on: https://review.coreboot.org/c/coreboot/+/82013 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Diffstat (limited to 'src/soc/amd')
-rw-r--r--src/soc/amd/phoenix/acpi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/amd/phoenix/acpi.c b/src/soc/amd/phoenix/acpi.c
index 606a45ff62..c96d80c5fb 100644
--- a/src/soc/amd/phoenix/acpi.c
+++ b/src/soc/amd/phoenix/acpi.c
@@ -72,6 +72,8 @@ unsigned long soc_acpi_write_tables(const struct device *device, unsigned long c
if (CONFIG(PLATFORM_USES_FSP2_0))
current = acpi_add_fsp_tables(current, rsdp);
+ else
+ current = acpi_add_opensil_tables(current, rsdp);
return current;
}