aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/xeon_sp/skx/soc_acpi.c
diff options
context:
space:
mode:
authorMarc Jones <marcjones@sysproconsulting.com>2020-10-31 15:29:14 -0600
committerMarc Jones <marc@marcjonesconsulting.com>2020-11-03 17:20:23 +0000
commit2c707160a92ebb36577b886db6dc9a5ac8770163 (patch)
tree17d1d25e6f1a81afdda7302985ab5f7085b149c6 /src/soc/intel/xeon_sp/skx/soc_acpi.c
parent995a7e25a1b84f01a07dacca043ec8cd17a5efd3 (diff)
soc/intel/xeon_sp/acpi: Fix uncore dsdt for multiple cpus
Fix the asl to use CONFIG_MAX_CPUS to create entries for multiple cpu uncores. Don't add the RTxx resource entries multiple times. The function is called for each CPUs. Change-Id: Ia4eb9716ae4bd72fb4eb98649105be629623cbef Signed-off-by: Marc Jones <marcjones@sysproconsulting.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47060 Reviewed-by: Jay Talbott <JayTalbott@sysproconsulting.com> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/xeon_sp/skx/soc_acpi.c')
-rw-r--r--src/soc/intel/xeon_sp/skx/soc_acpi.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/soc/intel/xeon_sp/skx/soc_acpi.c b/src/soc/intel/xeon_sp/skx/soc_acpi.c
index df2550c54a..b3926193da 100644
--- a/src/soc/intel/xeon_sp/skx/soc_acpi.c
+++ b/src/soc/intel/xeon_sp/skx/soc_acpi.c
@@ -104,6 +104,10 @@ void uncore_inject_dsdt(const struct device *device)
const IIO_UDS *hob = fsp_find_extension_hob_by_guid(uds_guid, &hob_size);
assert(hob != NULL && hob_size != 0);
+ /* Only add RTxx entries once. */
+ if (device->bus->secondary != 0)
+ return;
+
acpigen_write_scope("\\_SB");
for (int socket = 0; socket < hob->PlatformData.numofIIO; ++socket) {
IIO_RESOURCE_INSTANCE iio_resource =