Linux Power Management development
 help / color / mirror / Atom feed
From: srinivas pandruvada <srinivas.pandruvada@linux.intel.com>
To: Kuppuswamy Sathyanarayanan
	<sathyanarayanan.kuppuswamy@linux.intel.com>,
	"Rafael J . Wysocki"	 <rafael@kernel.org>
Cc: linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v1] powercap: intel_rapl: Consolidate PL4 and PMU support flags into rapl_defaults
Date: Mon, 23 Mar 2026 11:20:02 -0700	[thread overview]
Message-ID: <ed821010a38d535bd123e3d1999d3fd722ccd1ba.camel@linux.intel.com> (raw)
In-Reply-To: <20260313190052.2370963-1-sathyanarayanan.kuppuswamy@linux.intel.com>

On Fri, 2026-03-13 at 12:00 -0700, Kuppuswamy Sathyanarayanan wrote:
> Currently, PL4 and MSR-based RAPL PMU support are detected using
> separate CPU ID tables (pl4_support_ids and pmu_support_ids) in the
> MSR driver probe path. This creates a maintenance burden since adding
> a new CPU requires updates in two places: the rapl_ids table and one
> or both of these capability tables.
> 
> Consolidate PL4 and PMU capability information directly into
> struct rapl_defaults by adding msr_pl4_support and msr_pmu_support
> flags. This allows per-CPU capability to be expressed in a single
> place alongside other per-CPU defaults, eliminating the duplicate
> CPU ID tables entirely.
> 
> No functional changes are intended.
> 
> Co-developed-by: Zhang Rui <rui.zhang@intel.com>
> Signed-off-by: Zhang Rui <rui.zhang@intel.com>
> Signed-off-by: Kuppuswamy Sathyanarayanan
> <sathyanarayanan.kuppuswamy@linux.intel.com>


Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>


> ---
>  drivers/powercap/intel_rapl_msr.c | 83 ++++++++++++++---------------
> --
>  include/linux/intel_rapl.h        |  2 +
>  2 files changed, 38 insertions(+), 47 deletions(-)
> 
> diff --git a/drivers/powercap/intel_rapl_msr.c
> b/drivers/powercap/intel_rapl_msr.c
> index cfb35973f0b5..a34543e66446 100644
> --- a/drivers/powercap/intel_rapl_msr.c
> +++ b/drivers/powercap/intel_rapl_msr.c
> @@ -216,33 +216,6 @@ static int rapl_msr_write_raw(int cpu, struct
> reg_action *ra)
>  	return ra->err;
>  }
>  
> -/* List of verified CPUs. */
> -static const struct x86_cpu_id pl4_support_ids[] = {
> -	X86_MATCH_VFM(INTEL_ICELAKE_L, NULL),
> -	X86_MATCH_VFM(INTEL_TIGERLAKE_L, NULL),
> -	X86_MATCH_VFM(INTEL_ALDERLAKE, NULL),
> -	X86_MATCH_VFM(INTEL_ALDERLAKE_L, NULL),
> -	X86_MATCH_VFM(INTEL_ATOM_GRACEMONT, NULL),
> -	X86_MATCH_VFM(INTEL_RAPTORLAKE, NULL),
> -	X86_MATCH_VFM(INTEL_RAPTORLAKE_P, NULL),
> -	X86_MATCH_VFM(INTEL_METEORLAKE, NULL),
> -	X86_MATCH_VFM(INTEL_METEORLAKE_L, NULL),
> -	X86_MATCH_VFM(INTEL_ARROWLAKE_U, NULL),
> -	X86_MATCH_VFM(INTEL_ARROWLAKE_H, NULL),
> -	X86_MATCH_VFM(INTEL_PANTHERLAKE_L, NULL),
> -	X86_MATCH_VFM(INTEL_WILDCATLAKE_L, NULL),
> -	X86_MATCH_VFM(INTEL_NOVALAKE, NULL),
> -	X86_MATCH_VFM(INTEL_NOVALAKE_L, NULL),
> -	{}
> -};
> -
> -/* List of MSR-based RAPL PMU support CPUs */
> -static const struct x86_cpu_id pmu_support_ids[] = {
> -	X86_MATCH_VFM(INTEL_PANTHERLAKE_L, NULL),
> -	X86_MATCH_VFM(INTEL_WILDCATLAKE_L, NULL),
> -	{}
> -};
> -
>  static int rapl_check_unit_atom(struct rapl_domain *rd)
>  {
>  	struct reg_action ra;
> @@ -420,6 +393,23 @@ static const struct rapl_defaults
> rapl_defaults_amd = {
>  	.check_unit = rapl_default_check_unit,
>  };
>  
> +static const struct rapl_defaults rapl_defaults_core_pl4 = {
> +	.floor_freq_reg_addr = 0,
> +	.check_unit = rapl_default_check_unit,
> +	.set_floor_freq = rapl_default_set_floor_freq,
> +	.compute_time_window = rapl_default_compute_time_window,
> +	.msr_pl4_support = 1,
> +};
> +
> +static const struct rapl_defaults rapl_defaults_core_pl4_pmu = {
> +	.floor_freq_reg_addr = 0,
> +	.check_unit = rapl_default_check_unit,
> +	.set_floor_freq = rapl_default_set_floor_freq,
> +	.compute_time_window = rapl_default_compute_time_window,
> +	.msr_pl4_support = 1,
> +	.msr_pmu_support = 1,
> +};
> +
>  static const struct x86_cpu_id rapl_ids[]  = {
>  	X86_MATCH_VFM(INTEL_SANDYBRIDGE,		&rapl_defaul
> ts_core),
>  	X86_MATCH_VFM(INTEL_SANDYBRIDGE_X,		&rapl_defaul
> ts_core),
> @@ -443,35 +433,35 @@ static const struct x86_cpu_id rapl_ids[]  = {
>  	X86_MATCH_VFM(INTEL_KABYLAKE_L,			&rap
> l_defaults_core),
>  	X86_MATCH_VFM(INTEL_KABYLAKE,			&rapl_defaul
> ts_core),
>  	X86_MATCH_VFM(INTEL_CANNONLAKE_L,		&rapl_defaul
> ts_core),
> -
> 	X86_MATCH_VFM(INTEL_ICELAKE_L,			&rapl_defaults_core),
> +	X86_MATCH_VFM(INTEL_ICELAKE_L,			&rapl_defaul
> ts_core_pl4),
>  	X86_MATCH_VFM(INTEL_ICELAKE,			&rapl_defaul
> ts_core),
>  	X86_MATCH_VFM(INTEL_ICELAKE_NNPI,		&rapl_defaul
> ts_core),
>  	X86_MATCH_VFM(INTEL_ICELAKE_X,			&rapl_defaul
> ts_hsw_server),
>  	X86_MATCH_VFM(INTEL_ICELAKE_D,			&rapl_defaul
> ts_hsw_server),
>  	X86_MATCH_VFM(INTEL_COMETLAKE_L,		&rapl_defaul
> ts_core),
>  	X86_MATCH_VFM(INTEL_COMETLAKE,			&rapl_defaul
> ts_core),
> -
> 	X86_MATCH_VFM(INTEL_TIGERLAKE_L,		&rapl_defaults_core),
> +	X86_MATCH_VFM(INTEL_TIGERLAKE_L,		&rapl_defaul
> ts_core_pl4),
>  	X86_MATCH_VFM(INTEL_TIGERLAKE,			&rapl_defaul
> ts_core),
>  	X86_MATCH_VFM(INTEL_ROCKETLAKE,			&rap
> l_defaults_core),
> -
> 	X86_MATCH_VFM(INTEL_ALDERLAKE,			&rapl_defaults_core),
> -
> 	X86_MATCH_VFM(INTEL_ALDERLAKE_L,		&rapl_defaults_core),
> -
> 	X86_MATCH_VFM(INTEL_ATOM_GRACEMONT,		&rapl_defaults_core),
> -
> 	X86_MATCH_VFM(INTEL_RAPTORLAKE,			&rapl_defaults_core),
> -
> 	X86_MATCH_VFM(INTEL_RAPTORLAKE_P,		&rapl_defaults_core),
> +	X86_MATCH_VFM(INTEL_ALDERLAKE,			&rapl_defaul
> ts_core_pl4),
> +	X86_MATCH_VFM(INTEL_ALDERLAKE_L,		&rapl_defaul
> ts_core_pl4),
> +	X86_MATCH_VFM(INTEL_ATOM_GRACEMONT,		&rapl_defaul
> ts_core_pl4),
> +	X86_MATCH_VFM(INTEL_RAPTORLAKE,			&rap
> l_defaults_core_pl4),
> +	X86_MATCH_VFM(INTEL_RAPTORLAKE_P,		&rapl_defaul
> ts_core_pl4),
>  	X86_MATCH_VFM(INTEL_RAPTORLAKE_S,		&rapl_defaul
> ts_core),
>  	X86_MATCH_VFM(INTEL_BARTLETTLAKE,		&rapl_defaul
> ts_core),
> -
> 	X86_MATCH_VFM(INTEL_METEORLAKE,			&rapl_defaults_core),
> -
> 	X86_MATCH_VFM(INTEL_METEORLAKE_L,		&rapl_defaults_core),
> +	X86_MATCH_VFM(INTEL_METEORLAKE,			&rap
> l_defaults_core_pl4),
> +	X86_MATCH_VFM(INTEL_METEORLAKE_L,		&rapl_defaul
> ts_core_pl4),
>  	X86_MATCH_VFM(INTEL_SAPPHIRERAPIDS_X,		&rapl_defaul
> ts_spr_server),
>  	X86_MATCH_VFM(INTEL_EMERALDRAPIDS_X,		&rapl_defaul
> ts_spr_server),
>  	X86_MATCH_VFM(INTEL_LUNARLAKE_M,		&rapl_defaul
> ts_core),
> -
> 	X86_MATCH_VFM(INTEL_PANTHERLAKE_L,		&rapl_defaults_core),
> -
> 	X86_MATCH_VFM(INTEL_WILDCATLAKE_L,		&rapl_defaults_core),
> -
> 	X86_MATCH_VFM(INTEL_NOVALAKE,			&rapl_defaults_core),
> -
> 	X86_MATCH_VFM(INTEL_NOVALAKE_L,			&rapl_defaults_core),
> -
> 	X86_MATCH_VFM(INTEL_ARROWLAKE_H,		&rapl_defaults_core),
> +	X86_MATCH_VFM(INTEL_PANTHERLAKE_L,		&rapl_defaul
> ts_core_pl4_pmu),
> +	X86_MATCH_VFM(INTEL_WILDCATLAKE_L,		&rapl_defaul
> ts_core_pl4_pmu),
> +	X86_MATCH_VFM(INTEL_NOVALAKE,			&rapl_defaul
> ts_core_pl4),
> +	X86_MATCH_VFM(INTEL_NOVALAKE_L,			&rap
> l_defaults_core_pl4),
> +	X86_MATCH_VFM(INTEL_ARROWLAKE_H,		&rapl_defaul
> ts_core_pl4),
>  	X86_MATCH_VFM(INTEL_ARROWLAKE,			&rapl_defaul
> ts_core),
> -
> 	X86_MATCH_VFM(INTEL_ARROWLAKE_U,		&rapl_defaults_core),
> +	X86_MATCH_VFM(INTEL_ARROWLAKE_U,		&rapl_defaul
> ts_core_pl4),
>  	X86_MATCH_VFM(INTEL_LAKEFIELD,			&rapl_defaul
> ts_core),
>  
>  	X86_MATCH_VFM(INTEL_ATOM_SILVERMONT,		&rapl_defaul
> ts_byt),
> @@ -498,7 +488,6 @@ MODULE_DEVICE_TABLE(x86cpu, rapl_ids);
>  
>  static int rapl_msr_probe(struct platform_device *pdev)
>  {
> -	const struct x86_cpu_id *id =
> x86_match_cpu(pl4_support_ids);
>  	int ret;
>  
>  	switch (boot_cpu_data.x86_vendor) {
> @@ -518,16 +507,16 @@ static int rapl_msr_probe(struct
> platform_device *pdev)
>  	rapl_msr_priv->defaults = (const struct rapl_defaults
> *)pdev->dev.platform_data;
>  	rapl_msr_priv->rpi = rpi_msr;
>  
> -	if (id) {
> +	if (rapl_msr_priv->defaults->msr_pl4_support) {
>  		rapl_msr_priv->limits[RAPL_DOMAIN_PACKAGE] |=
> BIT(POWER_LIMIT4);
>  		rapl_msr_priv-
> >regs[RAPL_DOMAIN_PACKAGE][RAPL_DOMAIN_REG_PL4].msr =
>  			MSR_VR_CURRENT_CONFIG;
> -		pr_info("PL4 support detected.\n");
> +		pr_info("PL4 support detected (updated).\n");
>  	}
>  
> -	if (x86_match_cpu(pmu_support_ids)) {
> +	if (rapl_msr_priv->defaults->msr_pmu_support) {
>  		rapl_msr_pmu = true;
> -		pr_info("MSR-based RAPL PMU support enabled\n");
> +		pr_info("MSR-based RAPL PMU support enabled
> (updated)\n");
>  	}
>  
>  	rapl_msr_priv->control_type =
> powercap_register_control_type(NULL, "intel-rapl", NULL);
> diff --git a/include/linux/intel_rapl.h b/include/linux/intel_rapl.h
> index 01f290de3586..328004f605c3 100644
> --- a/include/linux/intel_rapl.h
> +++ b/include/linux/intel_rapl.h
> @@ -135,6 +135,8 @@ struct rapl_defaults {
>  	unsigned int dram_domain_energy_unit;
>  	unsigned int psys_domain_energy_unit;
>  	bool spr_psys_bits;
> +	bool msr_pl4_support;
> +	bool msr_pmu_support;
>  };
>  
>  #define PRIMITIVE_INFO_INIT(p, m, s, i, u, f) {	\

  reply	other threads:[~2026-03-23 18:20 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-13 19:00 [PATCH v1] powercap: intel_rapl: Consolidate PL4 and PMU support flags into rapl_defaults Kuppuswamy Sathyanarayanan
2026-03-23 18:20 ` srinivas pandruvada [this message]
2026-03-23 19:22   ` Rafael J. Wysocki

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=ed821010a38d535bd123e3d1999d3fd722ccd1ba.camel@linux.intel.com \
    --to=srinivas.pandruvada@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=rafael@kernel.org \
    --cc=sathyanarayanan.kuppuswamy@linux.intel.com \
    /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