soc/intel/cfl/vr_config: Add 8-core desktop CPU support
Add 8-core desktop CPU support by adding the corresponding PCI IDs. Tested using "Intel Core(TM) i7-9700E". Change-Id: I7a2e2e5fd1796deff81b032450242fb58031526d Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39691 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
6975e07997
commit
12b86b6433
|
@ -202,6 +202,7 @@ static uint16_t get_sku_icc_max(int domain)
|
||||||
|
|
||||||
return icc_max[domain];
|
return icc_max[domain];
|
||||||
}
|
}
|
||||||
|
case PCI_DEVICE_ID_INTEL_CFL_ID_S_DT_8: /* fallthrough */
|
||||||
case PCI_DEVICE_ID_INTEL_CFL_ID_S_S_8: {
|
case PCI_DEVICE_ID_INTEL_CFL_ID_S_S_8: {
|
||||||
uint16_t icc_max[NUM_VR_DOMAINS] = VR_CFG_ALL_DOMAINS_ICC(11.1, 193, 45, 45);
|
uint16_t icc_max[NUM_VR_DOMAINS] = VR_CFG_ALL_DOMAINS_ICC(11.1, 193, 45, 45);
|
||||||
|
|
||||||
|
@ -356,6 +357,7 @@ static uint16_t get_sku_ac_dc_loadline(const int domain)
|
||||||
}
|
}
|
||||||
return loadline[domain];
|
return loadline[domain];
|
||||||
}
|
}
|
||||||
|
case PCI_DEVICE_ID_INTEL_CFL_ID_S_DT_8: /* fallthrough */
|
||||||
case PCI_DEVICE_ID_INTEL_CFL_ID_S_S_8: {
|
case PCI_DEVICE_ID_INTEL_CFL_ID_S_S_8: {
|
||||||
/* FIXME: Loadline isn't specified for S-series, using H-series default */
|
/* FIXME: Loadline isn't specified for S-series, using H-series default */
|
||||||
const uint16_t loadline[NUM_VR_DOMAINS] =
|
const uint16_t loadline[NUM_VR_DOMAINS] =
|
||||||
|
|
Loading…
Reference in New Issue