soc/intel/adl: Add support to configure package c-state demotion

This patch adds the support to enable/disable package c-state demotion
feature from the devicetree based on mainboard requirement.

BUG=b:235005582
TEST=Build and boot to verify that the right value has been passed to
the FSP.

Signed-off-by: V Sowmya <v.sowmya@intel.com>
Change-Id: I9e254988bc3d20b9f9e42a605cc0ebd419ab49ad
Reviewed-on: https://review.coreboot.org/c/coreboot/+/65663
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Varshit B Pandya <varshit.b.pandya@intel.com>
Reviewed-by: Reka Norman <rekanorman@chromium.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Reviewed-by: Kangheui Won <khwon@chromium.org>
Reviewed-by: Subrata Banik <subratabanik@google.com>
This commit is contained in:
V Sowmya 2022-07-05 20:49:57 +05:30 committed by Subrata Banik
parent 1793eb4c8a
commit 4be8d9e80d
2 changed files with 9 additions and 0 deletions

View File

@ -614,6 +614,13 @@ struct soc_intel_alderlake_config {
* Workaround for Intel TA# 723158 to prevent possible display flicker.
*/
bool usb2_phy_sus_pg_disable;
/*
* Enable or Disable Package C-state Demotion.
* Default is set to 0.
* Set this to 1 in order to disable Package C-state demotion.
*/
bool disable_package_c_state_demotion;
};
typedef struct soc_intel_alderlake_config config_t;

View File

@ -965,6 +965,8 @@ static void fill_fsps_misc_power_params(FSP_S_CONFIG *s_cfg,
s_cfg->C1StateAutoDemotion = !config->disable_c1_state_auto_demotion;
s_cfg->VrPowerDeliveryDesign = config->vr_power_delivery_design;
s_cfg->PkgCStateDemotion = !config->disable_package_c_state_demotion;
}
static void fill_fsps_irq_params(FSP_S_CONFIG *s_cfg,