aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/xeon_sp/cpx
diff options
context:
space:
mode:
authorMarc Jones <marcjones@sysproconsulting.com>2020-10-19 13:46:59 -0600
committerMarc Jones <marc@marcjonesconsulting.com>2020-10-22 21:35:11 +0000
commit521a03f30331ff89f3ac8d94cad03b8443ebf4ff (patch)
treef56d4f6ac15d2d42a5541df4e29e76f68f083d1f /src/soc/intel/xeon_sp/cpx
parent8066fda9ed53da095b17188e3b96265810534985 (diff)
soc/intel/xeon_sp: Move uncore_inject_dsdt() call
Prepare for common ACPI code. Move uncore_inject_dsdt() to the uncore device acpi_inject_dsdt call. Change-Id: Ida106238690eb1af17759ba6dbe4cb94344e3a94 Signed-off-by: Marc Jones <marcjones@sysproconsulting.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46596 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/soc/intel/xeon_sp/cpx')
-rw-r--r--src/soc/intel/xeon_sp/cpx/acpi.c3
-rw-r--r--src/soc/intel/xeon_sp/cpx/soc_acpi.c6
2 files changed, 1 insertions, 8 deletions
diff --git a/src/soc/intel/xeon_sp/cpx/acpi.c b/src/soc/intel/xeon_sp/cpx/acpi.c
index 658c951648..5a908dabbf 100644
--- a/src/soc/intel/xeon_sp/cpx/acpi.c
+++ b/src/soc/intel/xeon_sp/cpx/acpi.c
@@ -214,9 +214,6 @@ void southbridge_inject_dsdt(const struct device *device)
acpigen_write_name_dword("NVSA", (uint32_t)gnvs);
acpigen_pop_len();
}
-
- /* Add IIOStack ACPI Resource Templates */
- uncore_inject_dsdt();
}
int calculate_power(int tdp, int p1_ratio, int ratio)
diff --git a/src/soc/intel/xeon_sp/cpx/soc_acpi.c b/src/soc/intel/xeon_sp/cpx/soc_acpi.c
index cf84334449..19d196d351 100644
--- a/src/soc/intel/xeon_sp/cpx/soc_acpi.c
+++ b/src/soc/intel/xeon_sp/cpx/soc_acpi.c
@@ -57,11 +57,7 @@ void soc_fill_fadt(acpi_fadt_t *fadt)
ACPI_FADT_S4_RTC_WAKE);
}
-/*
- * Currently called in southbridge_inject_dsdt(). Change to soc_southbridge_inject_dsdt()
- * with a call from the common/function or find another way to call this at the correct place
- */
-void uncore_inject_dsdt(void)
+void uncore_inject_dsdt(const struct device *device)
{
struct iiostack_resource stack_info = {0};