summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSubrata Banik <subrata.banik@intel.com>2021-07-16 13:35:00 +0530
committerSubrata Banik <subrata.banik@intel.com>2021-07-17 09:51:15 +0000
commit94f94f8fb380b20858052144ab143b20ab7bf413 (patch)
tree1a8b516b0dbcba5e1cd800b93cfeb40a38dab22f
parentdbb4e4b24139dcc76e897ea098637a697c81b5d9 (diff)
downloadcoreboot-94f94f8fb380b20858052144ab143b20ab7bf413.tar.gz
coreboot-94f94f8fb380b20858052144ab143b20ab7bf413.tar.bz2
coreboot-94f94f8fb380b20858052144ab143b20ab7bf413.zip
soc/intel/jasperlake: Make use of `cpu/intel/cpu_ids.h'
Remove inclusion of mp_init.h for getting CPUIDs and use dedicated cpu_ids.h file in SoC directory. Change-Id: Iefc19bc81125f422b8d4fc2f4af60622e7d28c0f Signed-off-by: Subrata Banik <subrata.banik@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/56377 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
-rw-r--r--src/soc/intel/jasperlake/bootblock/report_platform.c2
-rw-r--r--src/soc/intel/jasperlake/fsp_params.c1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/soc/intel/jasperlake/bootblock/report_platform.c b/src/soc/intel/jasperlake/bootblock/report_platform.c
index a588b75945a1..241e17285d96 100644
--- a/src/soc/intel/jasperlake/bootblock/report_platform.c
+++ b/src/soc/intel/jasperlake/bootblock/report_platform.c
@@ -3,12 +3,12 @@
#include <arch/cpu.h>
#include <device/pci_ops.h>
#include <console/console.h>
+#include <cpu/intel/cpu_ids.h>
#include <cpu/intel/microcode.h>
#include <cpu/x86/msr.h>
#include <cpu/x86/name.h>
#include <device/pci.h>
#include <device/pci_ids.h>
-#include <intelblocks/mp_init.h>
#include <soc/bootblock.h>
#include <soc/pch.h>
#include <soc/pci_devs.h>
diff --git a/src/soc/intel/jasperlake/fsp_params.c b/src/soc/intel/jasperlake/fsp_params.c
index 45bed5e4b85c..0ad65e408c2a 100644
--- a/src/soc/intel/jasperlake/fsp_params.c
+++ b/src/soc/intel/jasperlake/fsp_params.c
@@ -6,7 +6,6 @@
#include <fsp/ppi/mp_service_ppi.h>
#include <fsp/util.h>
#include <intelblocks/lpss.h>
-#include <intelblocks/mp_init.h>
#include <intelblocks/pmclib.h>
#include <intelblocks/xdci.h>
#include <intelpch/lockdown.h>