aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel
diff options
context:
space:
mode:
authorCurtis Chen <curtis.chen@intel.com>2022-03-10 11:51:38 +0800
committerFelix Held <felix-coreboot@felixheld.de>2022-03-17 14:30:13 +0000
commit3fc3e6c6095589849f5523f583ff946e051799c7 (patch)
tree222c392bb9c13ba51bea5f8dbf0dd256926696c8 /src/soc/intel
parent73ad818bc9222aea695e0e8e5ffe53c20633a33f (diff)
soc/intel/alderlake: Update ADL-P id list of th VccIn Aux Imon IccMax values
Add ADL-P MCH ID 4, 8, 9, 10 into this list. BUG=b:222038287 BRANCH=firmware-brya-14505.B TEST=Build and check fsp log to confirm the settings are set properly. Signed-off-by: Curtis Chen <curtis.chen@intel.com> Change-Id: I2cee31ba56e0b142c50a745c453968635e86296e Reviewed-on: https://review.coreboot.org/c/coreboot/+/62727 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: YH Lin <yueherngl@google.com> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Diffstat (limited to 'src/soc/intel')
-rw-r--r--src/soc/intel/alderlake/fsp_params.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/soc/intel/alderlake/fsp_params.c b/src/soc/intel/alderlake/fsp_params.c
index f0e0ac2c6f..2f3027d252 100644
--- a/src/soc/intel/alderlake/fsp_params.c
+++ b/src/soc/intel/alderlake/fsp_params.c
@@ -311,9 +311,13 @@ static uint16_t get_vccin_aux_imon_iccmax(void)
switch (mch_id) {
case PCI_DID_INTEL_ADL_P_ID_1:
case PCI_DID_INTEL_ADL_P_ID_3:
+ case PCI_DID_INTEL_ADL_P_ID_4:
case PCI_DID_INTEL_ADL_P_ID_5:
case PCI_DID_INTEL_ADL_P_ID_6:
case PCI_DID_INTEL_ADL_P_ID_7:
+ case PCI_DID_INTEL_ADL_P_ID_8:
+ case PCI_DID_INTEL_ADL_P_ID_9:
+ case PCI_DID_INTEL_ADL_P_ID_10:
tdp = get_cpu_tdp();
if (tdp == TDP_45W)
return ICC_MAX_TDP_45W;