soc/intel/ehl: Support maximum memory frequency selection
Makes it possible to configure the maximum allowed/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> Reviewed-on: https://review.coreboot.org/c/coreboot/+/68097 Reviewed-by: Werner Zeh <werner.zeh@siemens.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com>
This commit is contained in:
parent
803241c03e
commit
d8fd2deda1
|
@ -444,6 +444,16 @@ struct soc_intel_elkhartlake_config {
|
||||||
bool PsePwmPinEn[16];
|
bool PsePwmPinEn[16];
|
||||||
/* PSE Console Shell */
|
/* PSE Console Shell */
|
||||||
bool PseShellEn;
|
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;
|
typedef struct soc_intel_elkhartlake_config config_t;
|
||||||
|
|
|
@ -123,6 +123,12 @@ static void soc_memory_init_params(FSP_M_CONFIG *m_cfg,
|
||||||
}
|
}
|
||||||
/* PSE (Intel Programmable Services Engine) switch */
|
/* PSE (Intel Programmable Services Engine) switch */
|
||||||
m_cfg->PchPseEnable = CONFIG(PSE_ENABLE) && cbfs_file_exists("pse.bin");
|
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)
|
void platform_fsp_memory_init_params_cb(FSPM_UPD *mupd, uint32_t version)
|
||||||
|
|
Loading…
Reference in New Issue