aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/xeon_sp/pch.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/xeon_sp/pch.c')
-rw-r--r--src/soc/intel/xeon_sp/pch.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/soc/intel/xeon_sp/pch.c b/src/soc/intel/xeon_sp/pch.c
index 2b35223d16..8de7743d94 100644
--- a/src/soc/intel/xeon_sp/pch.c
+++ b/src/soc/intel/xeon_sp/pch.c
@@ -5,7 +5,9 @@
#include <soc/pcr_ids.h>
#include <intelblocks/pcr.h>
#include <intelblocks/rtc.h>
+#include <intelblocks/p2sb.h>
#include <soc/bootblock.h>
+#include <soc/pch.h>
#include <soc/pmc.h>
#include <console/console.h>
@@ -51,3 +53,20 @@ void bootblock_pch_init(void)
*/
soc_config_acpibase();
}
+
+void override_hpet_ioapic_bdf(void)
+{
+ union p2sb_bdf ioapic_bdf = {
+ .bus = PCH_IOAPIC_BUS_NUMBER,
+ .dev = PCH_IOAPIC_DEV_NUM,
+ .fn = PCH_IOAPIC_FUNC_NUM,
+ };
+ union p2sb_bdf hpet_bdf = {
+ .bus = HPET_BUS_NUM,
+ .dev = HPET_DEV_NUM,
+ .fn = HPET0_FUNC_NUM,
+ };
+
+ p2sb_set_ioapic_bdf(ioapic_bdf);
+ p2sb_set_hpet_bdf(hpet_bdf);
+}