summaryrefslogtreecommitdiff
path: root/src/soc/intel/meteorlake
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/meteorlake')
-rw-r--r--src/soc/intel/meteorlake/Kconfig8
-rw-r--r--src/soc/intel/meteorlake/cpu.c6
2 files changed, 8 insertions, 6 deletions
diff --git a/src/soc/intel/meteorlake/Kconfig b/src/soc/intel/meteorlake/Kconfig
index 7f9b9419a9..ce56e6b8d0 100644
--- a/src/soc/intel/meteorlake/Kconfig
+++ b/src/soc/intel/meteorlake/Kconfig
@@ -211,6 +211,14 @@ config PCR_BASE_ADDRESS
config ECAM_MMCONF_BASE_ADDRESS
default 0xc0000000
+config SOC_INTEL_PERFORMANCE_CORE_SCALE_FACTOR
+ int
+ default 125
+
+config SOC_INTEL_EFFICIENT_CORE_SCALE_FACTOR
+ int
+ default 100
+
config CPU_BCLK_MHZ
int
default 100
diff --git a/src/soc/intel/meteorlake/cpu.c b/src/soc/intel/meteorlake/cpu.c
index b299cc89cf..c6d22eef9f 100644
--- a/src/soc/intel/meteorlake/cpu.c
+++ b/src/soc/intel/meteorlake/cpu.c
@@ -87,12 +87,6 @@ enum core_type get_soc_cpu_type(void)
return CPUID_CORE_TYPE_INTEL_CORE;
}
-void soc_get_scaling_factor(u16 *perf_core_scal_factor, u16 *eff_core_scal_factor)
-{
- *perf_core_scal_factor = 125;
- *eff_core_scal_factor = 100;
-}
-
bool soc_is_nominal_freq_supported(void)
{
return true;