V Sowmya has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/42453 )
Change subject: soc/intel/jasperlake: Enable the SkipCpuReplacementCheck ......................................................................
soc/intel/jasperlake: Enable the SkipCpuReplacementCheck
This patch enable the fspm upd to SkipCpuReplacementCheck.
Change-Id: I63fcdab3686322406cf7c24fc26cbb535cc58c8d Signed-off-by: V Sowmya v.sowmya@intel.com --- M src/soc/intel/jasperlake/romstage/fsp_params.c 1 file changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/53/42453/1
diff --git a/src/soc/intel/jasperlake/romstage/fsp_params.c b/src/soc/intel/jasperlake/romstage/fsp_params.c index d9063b0..dbfb9b5 100644 --- a/src/soc/intel/jasperlake/romstage/fsp_params.c +++ b/src/soc/intel/jasperlake/romstage/fsp_params.c @@ -113,6 +113,9 @@ ARRAY_SIZE(config->PchHdaAudioLinkSndwEnable), "copy buffer overflow!"); memcpy(m_cfg->PchHdaAudioLinkSndwEnable, config->PchHdaAudioLinkSndwEnable, sizeof(config->PchHdaAudioLinkSndwEnable)); + + /* Setting this option to skip CPU replacement check */ + m_cfg->SkipCpuReplacementCheck = 1; }
void platform_fsp_memory_init_params_cb(FSPM_UPD *mupd, uint32_t version)