Christian Gmeiner has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/68097 )
Change subject: soc/intel/ehl: Support maximum memory frequency selection ......................................................................
soc/intel/ehl: Support maximum memory frequency selection
Makes it possible to configure the maximum allwed/supported DDR memory frequency on a per mainboard basis.
Test - Define maximum memory frequency in mainboard devicetree.cb - Boot into Linux and run 'sudo dmidecode --type 17' to check memory speed - Boot into Linux and run 'phoronix-test-suite benchmark ramspeed'
Change-Id: I9e0c7225e2141e675a20b8e3f0dbe8c0b3a29b28 Signed-off-by: Christian Gmeiner christian.gmeiner@gmail.com --- M src/soc/intel/elkhartlake/chip.h M src/soc/intel/elkhartlake/romstage/fsp_params.c 2 files changed, 34 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/97/68097/1
diff --git a/src/soc/intel/elkhartlake/chip.h b/src/soc/intel/elkhartlake/chip.h index 68810f4..d63844f 100644 --- a/src/soc/intel/elkhartlake/chip.h +++ b/src/soc/intel/elkhartlake/chip.h @@ -444,6 +444,16 @@ bool PsePwmPinEn[16]; /* PSE Console Shell */ bool PseShellEn; + + /* + * DDR Frequency Limit + * + * Maximum Memory Frequency Selections in Mhz. + * Values: 1067, 1200, 1333, 1400, 1600, 1800, 1867, 2000, 2133, + * 2200, 2400, 2600, 2667, 2800, 2933, 3000, 3200, 3467, + * 3600, 3733, 4000, 4200, 4267 and 0 for Auto. + */ + uint16_t max_dram_speed_mts; };
typedef struct soc_intel_elkhartlake_config config_t; diff --git a/src/soc/intel/elkhartlake/romstage/fsp_params.c b/src/soc/intel/elkhartlake/romstage/fsp_params.c index 5c8c995..d2d118a 100644 --- a/src/soc/intel/elkhartlake/romstage/fsp_params.c +++ b/src/soc/intel/elkhartlake/romstage/fsp_params.c @@ -123,6 +123,12 @@ } /* PSE (Intel Programmable Services Engine) switch */ m_cfg->PchPseEnable = CONFIG(PSE_ENABLE) && cbfs_file_exists("pse.bin"); + + /* DDR Frequency Limit */ + if (config->max_dram_speed_mts) { + m_cfg->DdrFreqLimit = config->max_dram_speed_mts; + m_cfg->DdrSpeedControl = 1; + } }
void platform_fsp_memory_init_params_cb(FSPM_UPD *mupd, uint32_t version)