soc/intel/meteorlake: Disable MRC fast boot

MRC fast boot causes issues with memory init reusing invalid values
when DIMMs are switched.

Change-Id: Ia053982f747b2e794b974b84d57a9ead61ddd2ea
Signed-off-by: Jeremy Soller <jackpot51@gmail.com>
This commit is contained in:
Jeremy Soller
2024-03-21 11:45:20 -06:00
parent b1996b212b
commit 22a3cb788d

View File

@@ -164,8 +164,8 @@ static void fill_fspm_mrc_params(FSP_M_CONFIG *m_cfg,
m_cfg->RMT = config->rmt;
m_cfg->RMC = 0;
m_cfg->MarginLimitCheck = 0;
/* Enable MRC Fast Boot */
m_cfg->MrcFastBoot = 1;
/* Disable MRC Fast Boot */
m_cfg->MrcFastBoot = 0;
m_cfg->LowerBasicMemTestSize = config->lower_basic_mem_test_size;
}