aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSridhar Siricilla <sridhar.siricilla@intel.com>2022-12-05 22:04:49 +0530
committerSridhar Siricilla <sridhar.siricilla@intel.com>2022-12-22 06:40:56 +0000
commit193f39bfd538bb00c75a6ec2651b802636840910 (patch)
tree5210d53877e17c4bfe88abc4dd18ed25c2cdb033 /src
parent78b29f456717eaac969e35f07ccbcd3c881c5ee0 (diff)
soc/intel/meteorlake: Update scaling factor MTL big core
The patch updates the scaling factor for MTL big core. TEST=Build the Rex code Signed-off-by: Sridhar Siricilla <sridhar.siricilla@intel.com> Change-Id: Ife069fb29f4e913c5ef1af1f719b3392a70c55c5 Reviewed-on: https://review.coreboot.org/c/coreboot/+/70355 Reviewed-by: Ravishankar Sarawadi <ravishankar.sarawadi@intel.com> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Reviewed-by: Subrata Banik <subratabanik@google.com> Reviewed-by: Kapil Porwal <kapilporwal@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r--src/soc/intel/meteorlake/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/meteorlake/cpu.c b/src/soc/intel/meteorlake/cpu.c
index fbf625e1c2..e0ac726542 100644
--- a/src/soc/intel/meteorlake/cpu.c
+++ b/src/soc/intel/meteorlake/cpu.c
@@ -89,7 +89,7 @@ enum core_type get_soc_cpu_type(void)
void soc_get_scaling_factor(u16 *big_core_scal_factor, u16 *small_core_scal_factor)
{
- *big_core_scal_factor = 127;
+ *big_core_scal_factor = 125;
*small_core_scal_factor = 100;
}