aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/icelake/fsp_params.c
diff options
context:
space:
mode:
authorSubrata Banik <subrata.banik@intel.com>2019-11-14 11:30:43 +0530
committerPatrick Georgi <pgeorgi@google.com>2019-11-22 10:44:39 +0000
commit94146009a190383a581618fd969bf2276fb73585 (patch)
treecd47386daf14f2251dcd4eb43ee2f497517659b6 /src/soc/intel/icelake/fsp_params.c
parent53509cf15aeba1a7afa262ca4d3ddb77f019ba00 (diff)
soc/intel/icelake: Make CpuMpPpi implementation default for ICL
TEST=Could able to build and boot ICL DE system Change-Id: Icd71ec99f06434896c73cff5a52cd3a5ad6ce5f3 Signed-off-by: Subrata Banik <subrata.banik@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36839 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/soc/intel/icelake/fsp_params.c')
-rw-r--r--src/soc/intel/icelake/fsp_params.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/soc/intel/icelake/fsp_params.c b/src/soc/intel/icelake/fsp_params.c
index 62c69da2f2..448b82c7d8 100644
--- a/src/soc/intel/icelake/fsp_params.c
+++ b/src/soc/intel/icelake/fsp_params.c
@@ -84,12 +84,10 @@ void platform_fsp_silicon_init_params_cb(FSPS_UPD *supd)
for (i = 0; i < ARRAY_SIZE(params->Usb3OverCurrentPin); i++)
params->Usb3OverCurrentPin[i] = 0;
- if (CONFIG(USE_INTEL_FSP_TO_CALL_COREBOOT_PUBLISH_MP_PPI)) {
- params->CpuMpPpi = (uintptr_t) mp_fill_ppi_services_data();
- params->SkipMpInit = 0;
- } else {
- params->SkipMpInit = !CONFIG_USE_INTEL_FSP_MP_INIT;
- }
+ /* Mandatory to make use of CpuMpPpi implementation from ICL onwards */
+ params->CpuMpPpi = (uintptr_t) mp_fill_ppi_services_data();
+ /* TODO: Remove me as SkipMpInit is getting deprecated */
+ params->SkipMpInit = 0;
mainboard_silicon_init_params(params);