diff options
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/meteorlake/Kconfig | 12 | ||||
-rw-r--r-- | src/soc/intel/meteorlake/romstage/fsp_params.c | 2 |
2 files changed, 9 insertions, 5 deletions
diff --git a/src/soc/intel/meteorlake/Kconfig b/src/soc/intel/meteorlake/Kconfig index 0bcbcf25d0..7e1353a9a3 100644 --- a/src/soc/intel/meteorlake/Kconfig +++ b/src/soc/intel/meteorlake/Kconfig @@ -5,18 +5,22 @@ config SOC_INTEL_METEORLAKE type using the `SOC_INTEL_METEORLAKE_*` options instead of selecting this option directly. -config SOC_INTEL_METEORLAKE_U_P +config SOC_INTEL_METEORLAKE_U_H bool select SOC_INTEL_METEORLAKE help - Choose this option if your mainboard has a MTL-U (15W) or MTL-P (28W) SoC. - Note, MTL-U/P SoC combines Compute, GFX, SoC and IOE die. + Choose this option if your mainboard has a MTL-U (9W or 15W) + or MTL-H (28W or 45W) SoC. + + Note, the MTL-U/H-Processor Line offered in a 1-Chip Platform + that includes the Compute, SOC, GT, and IOE tile on the same + package. config SOC_INTEL_METEORLAKE_S bool select SOC_INTEL_METEORLAKE help - Choose this option if your mainboard has a MTL-S (45W) SoC. + Choose this option if your mainboard has a MTL-S (35W or 65W) SoC. Note, MTL-S SoC combines Compute, GFX, SoC, IOE and PCH die. if SOC_INTEL_METEORLAKE diff --git a/src/soc/intel/meteorlake/romstage/fsp_params.c b/src/soc/intel/meteorlake/romstage/fsp_params.c index bdc4f7ae61..40b7c47018 100644 --- a/src/soc/intel/meteorlake/romstage/fsp_params.c +++ b/src/soc/intel/meteorlake/romstage/fsp_params.c @@ -73,7 +73,7 @@ static void fill_fspm_pcie_rp_params(FSP_M_CONFIG *m_cfg, } /* PCIE ports */ - if (CONFIG(SOC_INTEL_METEORLAKE_U_P)) { + if (CONFIG(SOC_INTEL_METEORLAKE_U_H)) { m_cfg->PcieRpEnableMask = pcie_rp_enable_mask(get_pcie_rp_table()); m_cfg->PchPcieRpEnableMask = 0; /* Don't care about PCH PCIE RP Mask */ pcie_rp_init(m_cfg, m_cfg->PcieRpEnableMask, config->pcie_rp, |