soc/intel/adl: Disable D3cold when legacy S3 is enabled
D3Cold isn't supported in S3. Signed-off-by: Lean Sheng Tan <sheng.tan@9elements.com> Change-Id: I072f47737ef38c44b6a676019e9a73868ff17e5e Reviewed-on: https://review.coreboot.org/c/coreboot/+/67413 Reviewed-by: Sean Rhodes <sean@starlabs.systems> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
ff7725e742
commit
cf46099979
|
@ -646,7 +646,7 @@ static void fill_fsps_tcss_params(FSP_S_CONFIG *s_cfg,
|
||||||
|
|
||||||
/* D3Hot and D3Cold for TCSS */
|
/* D3Hot and D3Cold for TCSS */
|
||||||
s_cfg->D3HotEnable = !config->tcss_d3_hot_disable;
|
s_cfg->D3HotEnable = !config->tcss_d3_hot_disable;
|
||||||
s_cfg->D3ColdEnable = !config->tcss_d3_cold_disable;
|
s_cfg->D3ColdEnable = !CONFIG(SOC_INTEL_ALDERLAKE_S3) && !config->tcss_d3_cold_disable;
|
||||||
|
|
||||||
s_cfg->UsbTcPortEn = 0;
|
s_cfg->UsbTcPortEn = 0;
|
||||||
for (int i = 0; i < MAX_TYPE_C_PORTS; i++) {
|
for (int i = 0; i < MAX_TYPE_C_PORTS; i++) {
|
||||||
|
|
Loading…
Reference in New Issue