Linux Power Management development
 help / color / mirror / Atom feed
From: srinivas pandruvada <srinivas.pandruvada@linux.intel.com>
To: Henry Tseng <henrytseng@qnap.com>,
	"Rafael J. Wysocki" <rafael@kernel.org>,
	 Len Brown <lenb@kernel.org>,
	Viresh Kumar <viresh.kumar@linaro.org>
Cc: linux-pm@vger.kernel.org, SW Chen <swchen@qnap.com>,
	Kevin Ko <kevinko@qnap.com>
Subject: Re: [PATCH] cpufreq: intel_pstate: Use CPPC to get scaling factor for Bartlett Lake
Date: Wed, 06 May 2026 05:15:49 -0700	[thread overview]
Message-ID: <7d47a806110c750c47c4b473f45eff6d7f3ebc18.camel@linux.intel.com> (raw)
In-Reply-To: <20260506095157.1591221-1-henrytseng@qnap.com>

On Wed, 2026-05-06 at 17:51 +0800, Henry Tseng wrote:
> Previously, hwp_get_cpu_scaling() returned INTEL_PSTATE_CORE_SCALING
> (100000) as the scaling factor for non-hybrid CPUs.  However, this
> value is too large for Bartlett Lake processors, where HWP
> performance levels do not map 1:1 to PERF_CTL P-state ratios.
> 
> Per the Intel datasheet [1], the Intel Core 9 273PE specifies:
> 
>   Performance-cores:                                 12
>   Efficient-cores:                                   0
>   Max Turbo Frequency:                               5.7 GHz
>   Intel Thermal Velocity Boost Frequency:            5.7 GHz
>   Intel Turbo Boost Max Technology 3.0 Frequency:    5.6 GHz
>   Performance-core Max Turbo Frequency:              5.4 GHz
>   Performance-core Base Frequency:                   2.3 GHz
> 
> Because this CPU has no E-cores and does not report
> X86_FEATURE_HYBRID_CPU, hwp_get_cpu_scaling() returns 100000.  In
> intel_pstate_get_cpu_pstates(), the condition
> cpu->pstate.scaling == perf_ctl_scaling then takes the early path
> that simply multiplies HWP performance levels by 100000, producing
> cpuinfo_max_freq values that exceed the documented maximum turbo
> frequency:
> 
>   intel_pstate: CPU0: PERF_CTL turbo = 57
>   intel_pstate: CPU0: HWP_CAP guaranteed = 30
>   intel_pstate: CPU0: HWP_CAP highest = 70
>   intel_pstate: CPU0: HWP-to-frequency scaling factor: 100000
>   intel_pstate: set_policy cpuinfo.max 7000000 policy->max 7000000
>   ...
>   intel_pstate: CPU12: HWP_CAP highest = 73
>   intel_pstate: CPU12: HWP-to-frequency scaling factor: 100000
>   intel_pstate: set_policy cpuinfo.max 7300000 policy->max 7300000
> 
> To avoid impacting traditional non-hybrid CPUs, introduce a new
> intel_cppc_scaling_ids[] table that lists non-hybrid CPU models
> requiring dynamic scaling factor computation via CPPC.  CPUs in
> this list call intel_pstate_cppc_get_scaling() instead of
> core_get_scaling().
> 
> Because the scaling factor is now obtained from CPPC,
> intel_pstate_hybrid_hwp_adjust() no longer takes the early return
> on these CPUs.  To prevent hwp_is_hybrid from being set incorrectly
> on non-hybrid systems (which would enable asymmetric capacity
> scaling and disable ITMT), guard the assignment with
> X86_FEATURE_HYBRID_CPU.
> 
> Since intel_pstate_hybrid_hwp_adjust() now also handles non-hybrid
> processors, rename it to intel_pstate_hwp_adjust() and update the
> kerneldoc and inline comments accordingly.
> 
> After this patch (Intel Core 9 273PE):
> 
>   intel_pstate: CPU0: PERF_CTL turbo = 57
>   intel_pstate: CPU0: HWP_CAP guaranteed = 30
>   intel_pstate: CPU0: HWP_CAP highest = 70
>   intel_pstate: CPU0: HWP-to-frequency scaling factor: 79310
>   intel_pstate: set_policy cpuinfo.max 5500000 policy->max 5500000
>   ...
>   intel_pstate: CPU12: HWP_CAP highest = 73
>   intel_pstate: CPU12: HWP-to-frequency scaling factor: 79310
>   intel_pstate: set_policy cpuinfo.max 5700000 policy->max 5700000
> 
> The scaling factor 79310 is computed from CPPC
> nominal_freq=2300 MHz and nominal_perf=29.
> 

This is a special embedded processor, so to reduce enabling effort by 
in BIOS, why not just add

diff --git a/drivers/cpufreq/intel_pstate.c
b/drivers/cpufreq/intel_pstate.c
index ec4abe374573..763598ca13cd 100644
--- a/drivers/cpufreq/intel_pstate.c
+++ b/drivers/cpufreq/intel_pstate.c
@@ -3732,6 +3732,7 @@ static const struct x86_cpu_id
intel_hybrid_scaling_factor[] = {
        X86_MATCH_VFM(INTEL_RAPTORLAKE, HYBRID_SCALING_FACTOR_ADL),
        X86_MATCH_VFM(INTEL_RAPTORLAKE_P, HYBRID_SCALING_FACTOR_ADL),
        X86_MATCH_VFM(INTEL_RAPTORLAKE_S, HYBRID_SCALING_FACTOR_ADL),
+       X86_MATCH_VFM(INTEL_BARTLETTLAKE, HYBRID_SCALING_FACTOR_ADL),
        X86_MATCH_VFM(INTEL_METEORLAKE_L, HYBRID_SCALING_FACTOR_MTL),
        X86_MATCH_VFM(INTEL_LUNARLAKE_M, HYBRID_SCALING_FACTOR_LNL),
        {}

CPPC scaling introduces rounding issues for some frequency. This will
avoid introducing another CPU model list.

Thanks,
Srinivas



> The resulting sysfs values are:
> 
>   $ cat /sys/devices/system/cpu/cpufreq/policy*/cpuinfo_max_freq
>   5500000  (20 CPUs with HWP_CAP highest = 70)
>   5700000  ( 4 CPUs with HWP_CAP highest = 73)
>   $ cat /sys/devices/system/cpu/cpufreq/policy*/scaling_max_freq
>   5500000
>   5700000
> 
> The reported maximum turbo frequency now matches the datasheet's
> Max Turbo Frequency of 5.7 GHz.
> 
> [1]
> https://www.intel.com/content/www/us/en/products/sku/245717/intel-core-9-processor-273pe-36m-cache-up-to-5-70-ghz/specifications.html
> 
> Signed-off-by: Henry Tseng <henrytseng@qnap.com>
> ---
>  drivers/cpufreq/intel_pstate.c | 37 +++++++++++++++++++++++---------
> --
>  1 file changed, 25 insertions(+), 12 deletions(-)
> 
> diff --git a/drivers/cpufreq/intel_pstate.c
> b/drivers/cpufreq/intel_pstate.c
> index 1292da53e5fc..4d3dbea19eb7 100644
> --- a/drivers/cpufreq/intel_pstate.c
> +++ b/drivers/cpufreq/intel_pstate.c
> @@ -557,17 +557,17 @@ static int intel_pstate_freq_to_hwp(struct
> cpudata *cpu, int freq)
>  }
>  
>  /**
> - * intel_pstate_hybrid_hwp_adjust - Calibrate HWP performance
> levels.
> + * intel_pstate_hwp_adjust - Calibrate HWP performance levels.
>   * @cpu: Target CPU.
>   *
> - * On hybrid processors, HWP may expose more performance levels than
> there are
> + * On some processors, HWP may expose more performance levels than
> there are
>   * P-states accessible through the PERF_CTL interface.  If that
> happens, the
>   * scaling factor between HWP performance levels and CPU frequency
> will be less
>   * than the scaling factor between P-state values and CPU frequency.
>   *
>   * In that case, adjust the CPU parameters used in computations
> accordingly.
>   */
> -static void intel_pstate_hybrid_hwp_adjust(struct cpudata *cpu)
> +static void intel_pstate_hwp_adjust(struct cpudata *cpu)
>  {
>  	int perf_ctl_max_phys = cpu->pstate.max_pstate_physical;
>  	int perf_ctl_scaling = cpu->pstate.perf_ctl_scaling;
> @@ -585,7 +585,8 @@ static void intel_pstate_hybrid_hwp_adjust(struct
> cpudata *cpu)
>  	if (scaling == perf_ctl_scaling)
>  		return;
>  
> -	hwp_is_hybrid = true;
> +	if (cpu_feature_enabled(X86_FEATURE_HYBRID_CPU))
> +		hwp_is_hybrid = true;
>  
>  	cpu->pstate.turbo_freq = rounddown(cpu->pstate.turbo_pstate
> * scaling,
>  					   perf_ctl_scaling);
> @@ -1815,6 +1816,7 @@ static const struct attribute_group
> intel_pstate_attr_group = {
>  };
>  
>  static const struct x86_cpu_id intel_pstate_cpu_ee_disable_ids[];
> +static const struct x86_cpu_id intel_cppc_scaling_ids[];
>  
>  static struct kobject *intel_pstate_kobject;
>  
> @@ -2285,15 +2287,16 @@ static int hwp_get_cpu_scaling(int cpu)
>  		return core_get_scaling();
>  	}
>  
> -	/* Use core scaling on non-hybrid systems. */
> -	if (!cpu_feature_enabled(X86_FEATURE_HYBRID_CPU))
> -		return core_get_scaling();
> -
>  	/*
> -	 * The system is hybrid, but the hybrid scaling factor is
> not known or
> -	 * the CPU type is not one of the above, so use CPPC to
> compute the
> -	 * scaling factor for this CPU.
> +	 * Use core scaling on non-hybrid systems, except for those
> whose
> +	 * perf-to-frequency scaling factor differs from the default
> +	 * (e.g. Bartlett Lake) and must be computed via CPPC.
>  	 */
> +	if (!cpu_feature_enabled(X86_FEATURE_HYBRID_CPU) &&
> +	    !x86_match_cpu(intel_cppc_scaling_ids))
> +		return core_get_scaling();
> +
> +	/* Compute the scaling factor via CPPC. */
>  	return intel_pstate_cppc_get_scaling(cpu);
>  }
>  
> @@ -2328,7 +2331,7 @@ static void intel_pstate_get_cpu_pstates(struct
> cpudata *cpu)
>  
>  		if (pstate_funcs.get_cpu_scaling) {
>  			cpu->pstate.scaling =
> pstate_funcs.get_cpu_scaling(cpu->cpu);
> -			intel_pstate_hybrid_hwp_adjust(cpu);
> +			intel_pstate_hwp_adjust(cpu);
>  		} else {
>  			cpu->pstate.scaling = perf_ctl_scaling;
>  		}
> @@ -3739,6 +3742,16 @@ static const struct x86_cpu_id
> intel_hybrid_scaling_factor[] = {
>  	{}
>  };
>  
> +/*
> + * Non-hybrid CPUs whose perf-to-frequency scaling factor differs
> from
> + * INTEL_PSTATE_CORE_SCALING. For these, compute the scaling factor
> + * dynamically via CPPC.
> + */
> +static const struct x86_cpu_id intel_cppc_scaling_ids[] = {
> +	X86_MATCH_VFM(INTEL_BARTLETTLAKE, NULL),
> +	{}
> +};
> +
>  static bool hwp_check_epp(void)
>  {
>  	if (boot_cpu_has(X86_FEATURE_HWP_EPP))

  reply	other threads:[~2026-05-06 12:15 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-06  9:51 [PATCH] cpufreq: intel_pstate: Use CPPC to get scaling factor for Bartlett Lake Henry Tseng
2026-05-06 12:15 ` srinivas pandruvada [this message]
2026-05-07  9:25   ` Henry Tseng
2026-05-07 14:47     ` srinivas pandruvada
2026-05-08  6:37       ` Henry Tseng

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=7d47a806110c750c47c4b473f45eff6d7f3ebc18.camel@linux.intel.com \
    --to=srinivas.pandruvada@linux.intel.com \
    --cc=henrytseng@qnap.com \
    --cc=kevinko@qnap.com \
    --cc=lenb@kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=rafael@kernel.org \
    --cc=swchen@qnap.com \
    --cc=viresh.kumar@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox