aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/xeon_sp/include
diff options
context:
space:
mode:
authorMarc Jones <marcjones@sysproconsulting.com>2020-12-02 16:25:16 -0700
committerPatrick Georgi <pgeorgi@google.com>2020-12-05 08:10:33 +0000
commitc987e65eb4391aeb2fecd8461e879424be20dd08 (patch)
treeeb0c1bea297d16728b69c00db16120c7405c28f6 /src/soc/intel/xeon_sp/include
parent2c9d65b51b9ed5af092434d1172a43628ef068d5 (diff)
soc/intel/xeon_sp: Don't use common block acpi.h
Don't use the common block acpi.h when we aren't using the COMMON_ACPI config. Fixes a dependency build issue in an upcoming commit. Change-Id: I3b80f7bbdf81e594fdde5b750c666edd8ca7268d Signed-off-by: Marc Jones <marcjones@sysproconsulting.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48254 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Jay Talbott <JayTalbott@sysproconsulting.com> Reviewed-by: Jonathan Zhang <jonzhang@fb.com>
Diffstat (limited to 'src/soc/intel/xeon_sp/include')
-rw-r--r--src/soc/intel/xeon_sp/include/soc/acpi.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/soc/intel/xeon_sp/include/soc/acpi.h b/src/soc/intel/xeon_sp/include/soc/acpi.h
index 60d6321be4..2f22c621e2 100644
--- a/src/soc/intel/xeon_sp/include/soc/acpi.h
+++ b/src/soc/intel/xeon_sp/include/soc/acpi.h
@@ -19,8 +19,13 @@ typedef struct {
unsigned long northbridge_write_acpi_tables(const struct device *device,
unsigned long current, struct acpi_rsdp *rsdp);
-
-
+unsigned long southbridge_write_acpi_tables(const struct device *device,
+ unsigned long current, struct acpi_rsdp *rsdp);
+uint32_t soc_read_sci_irq_select(void);
+int soc_madt_sci_irq_polarity(int sci);
+void soc_power_states_generation(int core, int cores_per_package);
+acpi_tstate_t *soc_get_tss_table(int *entries);
+acpi_cstate_t *soc_get_cstate_map(size_t *entries);
int calculate_power(int tdp, int p1_ratio, int ratio);
void uncore_inject_dsdt(const struct device *device);
unsigned long xeonsp_acpi_create_madt_lapics(unsigned long current);