soc/intel/{tgl,adl}: Hook up D3ColdEnable UPD to D3COLD_SUPPORT
Select NO_S0IX_SUPPORT for `starlabs/starbook` and `atlas/prodrive` so their configurations are unchanged. Signed-off-by: Sean Rhodes <sean@starlabs.systems> Change-Id: I718952165daa6471f11e8025e745fe7c249d3b46 Reviewed-on: https://review.coreboot.org/c/coreboot/+/72800 Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
dbb97c3243
commit
6bfca1b689
5 changed files with 5 additions and 6 deletions
|
|
@ -648,7 +648,7 @@ static void fill_fsps_tcss_params(FSP_S_CONFIG *s_cfg,
|
|||
|
||||
/* D3Hot and D3Cold for TCSS */
|
||||
s_cfg->D3HotEnable = !config->tcss_d3_hot_disable;
|
||||
s_cfg->D3ColdEnable = !CONFIG(SOC_INTEL_ALDERLAKE_S3) && !config->tcss_d3_cold_disable;
|
||||
s_cfg->D3ColdEnable = CONFIG(D3COLD_SUPPORT) && !config->tcss_d3_cold_disable;
|
||||
|
||||
s_cfg->UsbTcPortEn = 0;
|
||||
for (int i = 0; i < MAX_TYPE_C_PORTS; i++) {
|
||||
|
|
|
|||
|
|
@ -323,11 +323,12 @@ void platform_fsp_silicon_init_params_cb(FSPS_UPD *supd)
|
|||
|
||||
/* D3Hot and D3Cold for TCSS */
|
||||
params->D3HotEnable = !config->TcssD3HotDisable;
|
||||
|
||||
cpu_id = cpu_get_cpuid();
|
||||
if (cpu_id == CPUID_TIGERLAKE_A0)
|
||||
params->D3ColdEnable = 0;
|
||||
else
|
||||
params->D3ColdEnable = !config->TcssD3ColdDisable;
|
||||
params->D3ColdEnable = CONFIG(D3COLD_SUPPORT);
|
||||
|
||||
params->UsbTcPortEn = config->UsbTcPortEn;
|
||||
params->TcssAuxOri = config->TcssAuxOri;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue