From 93ffdee5ed1e6ffc2c2f16d0b53a95c2b8b8d57b Mon Sep 17 00:00:00 2001 From: Naresh Solanki Date: Fri, 6 Oct 2023 14:35:58 +0200 Subject: soc/intel/xeon/spr: Enforce POR frequency setting For RMT build, add kconfig option to enforce Plan Of Record restriction on DDR5 frequency & voltage settings. Change-Id: Ibfcaaf47fec3bd5d8a858309918b3af2f8d976e9 Signed-off-by: Naresh Solanki Reviewed-on: https://review.coreboot.org/c/coreboot/+/79650 Tested-by: build bot (Jenkins) Reviewed-by: Lean Sheng Tan --- src/soc/intel/xeon_sp/spr/Kconfig | 8 ++++++++ src/soc/intel/xeon_sp/spr/romstage.c | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/soc/intel/xeon_sp/spr/Kconfig b/src/soc/intel/xeon_sp/spr/Kconfig index b1c4c783b7..396072448d 100644 --- a/src/soc/intel/xeon_sp/spr/Kconfig +++ b/src/soc/intel/xeon_sp/spr/Kconfig @@ -187,4 +187,12 @@ config ENABLE_RMT help Enable Rank Margining Tool. This option is intended for debugging and validation and should normally be disabled. + +config RMT_MEM_POR_FREQ + bool "Enforce Plan Of Record restrictions for DDR5 frequency and voltage" + default n + depends on ENABLE_RMT + help + When RMT is enabled. Select this option to enforce Intel Plan Of Record(POR) + restriction on DDR5 frequency & voltage settings. endif diff --git a/src/soc/intel/xeon_sp/spr/romstage.c b/src/soc/intel/xeon_sp/spr/romstage.c index 2b377a4d6b..4cce21f249 100644 --- a/src/soc/intel/xeon_sp/spr/romstage.c +++ b/src/soc/intel/xeon_sp/spr/romstage.c @@ -279,7 +279,8 @@ void platform_fsp_memory_init_params_cb(FSPM_UPD *mupd, uint32_t version) mupd->FspmConfig.serialDebugMsgLvl = 0x3; mupd->FspmConfig.AllowedSocketsInParallel = 0x1; mupd->FspmConfig.EnforcePopulationPor = 0x1; - mupd->FspmConfig.EnforceDdrMemoryFreqPor = 0x0; + if (CONFIG(RMT_MEM_POR_FREQ)) + mupd->FspmConfig.EnforceDdrMemoryFreqPor = 0x0; } /* SPR-FSP has no UPD to disable HDA, so do it manually here... */ -- cgit v1.2.3