linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Huang Rui <ray.huang@amd.com>
To: "Yuan, Perry" <Perry.Yuan@amd.com>
Cc: "rafael.j.wysocki@intel.com" <rafael.j.wysocki@intel.com>,
	"viresh.kumar@linaro.org" <viresh.kumar@linaro.org>,
	"Limonciello, Mario" <Mario.Limonciello@amd.com>,
	"Sharma, Deepak" <Deepak.Sharma@amd.com>,
	"Karny, Wyes" <Wyes.Karny@amd.com>,
	"Shenoy, Gautham Ranjal" <gautham.shenoy@amd.com>,
	"Li, Sun peng (Leo)" <Sunpeng.Li@amd.com>,
	"Huang, Shimmer" <Shimmer.Huang@amd.com>,
	"Du, Xiaojian" <Xiaojian.Du@amd.com>,
	"Meng, Li (Jassmine)" <Li.Meng@amd.com>,
	"linux-pm@vger.kernel.org" <linux-pm@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2 3/4] cpufreq: amd-pstate: Add a kernel config option to set default mode
Date: Tue, 20 Jun 2023 23:02:20 +0800	[thread overview]
Message-ID: <ZJG/fGLWmRlyXz4a@amd.com> (raw)
In-Reply-To: <20230615063300.4030172-1-perry.yuan@amd.com>

On Thu, Jun 15, 2023 at 02:33:00PM +0800, Yuan, Perry wrote:
> From: Mario Limonciello <mario.limonciello@amd.com>
> 
> Users are having more success with amd-pstate since the introduction
> of EPP and Guided modes.  To expose the driver to more users by default
> introduce a kernel configuration option for setting the default mode.
> 
> Users can use an integer to map out which default mode they want to use
> in lieu of a kernel command line option.
> 
> This will default to EPP, but only if:
> 1) The CPU supports an MSR.
> 2) The system profile is identified
> 3) The system profile is identified as a non-server by the FADT.
> 
> Link: https://gitlab.freedesktop.org/hadess/power-profiles-daemon/-/merge_requests/121
> Reviewed-by: Gautham R. Shenoy <gautham.shenoy@amd.com>
> Co-developed-by: Perry Yuan <perry.yuan@amd.com>
> Signed-off-by: Perry Yuan <perry.yuan@amd.com>
> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>

Acked-by: Huang Rui <ray.huang@amd.com>

> ---
>  drivers/cpufreq/Kconfig.x86  | 17 +++++++++
>  drivers/cpufreq/amd-pstate.c | 73 ++++++++++++++++++++++++------------
>  include/linux/amd-pstate.h   |  4 +-
>  3 files changed, 68 insertions(+), 26 deletions(-)
> 
> diff --git a/drivers/cpufreq/Kconfig.x86 b/drivers/cpufreq/Kconfig.x86
> index 00476e94db90..438c9e75a04d 100644
> --- a/drivers/cpufreq/Kconfig.x86
> +++ b/drivers/cpufreq/Kconfig.x86
> @@ -51,6 +51,23 @@ config X86_AMD_PSTATE
>  
>  	  If in doubt, say N.
>  
> +config X86_AMD_PSTATE_DEFAULT_MODE
> +	int "AMD Processor P-State default mode"
> +	depends on X86_AMD_PSTATE
> +	default 3 if X86_AMD_PSTATE
> +	range 1 4
> +	help
> +	  Select the default mode the amd-pstate driver will use on
> +	  supported hardware.
> +	  The value set has the following meanings:
> +		1 -> Disabled
> +		2 -> Passive
> +		3 -> Active (EPP)
> +		4 -> Guided
> +
> +	  For details, take a look at:
> +	  <file:Documentation/admin-guide/pm/amd-pstate.rst>.
> +
>  config X86_AMD_PSTATE_UT
>  	tristate "selftest for AMD Processor P-State driver"
>  	depends on X86 && ACPI_PROCESSOR
> diff --git a/drivers/cpufreq/amd-pstate.c b/drivers/cpufreq/amd-pstate.c
> index c9d296ebf81e..b400d1ee8e64 100644
> --- a/drivers/cpufreq/amd-pstate.c
> +++ b/drivers/cpufreq/amd-pstate.c
> @@ -62,7 +62,7 @@
>  static struct cpufreq_driver *current_pstate_driver;
>  static struct cpufreq_driver amd_pstate_driver;
>  static struct cpufreq_driver amd_pstate_epp_driver;
> -static int cppc_state = AMD_PSTATE_DISABLE;
> +static int cppc_state = AMD_PSTATE_UNDEFINED;
>  
>  /*
>   * AMD Energy Preference Performance (EPP)
> @@ -1363,6 +1363,25 @@ static struct cpufreq_driver amd_pstate_epp_driver = {
>  	.attr		= amd_pstate_epp_attr,
>  };
>  
> +static int __init amd_pstate_set_driver(int mode_idx)
> +{
> +	if (mode_idx >= AMD_PSTATE_DISABLE && mode_idx < AMD_PSTATE_MAX) {
> +		cppc_state = mode_idx;
> +		if (cppc_state == AMD_PSTATE_DISABLE)
> +			pr_info("driver is explicitly disabled\n");
> +
> +		if (cppc_state == AMD_PSTATE_ACTIVE)
> +			current_pstate_driver = &amd_pstate_epp_driver;
> +
> +		if (cppc_state == AMD_PSTATE_PASSIVE || cppc_state == AMD_PSTATE_GUIDED)
> +			current_pstate_driver = &amd_pstate_driver;
> +
> +		return 0;
> +	}
> +
> +	return -EINVAL;
> +}
> +
>  static int __init amd_pstate_init(void)
>  {
>  	struct device *dev_root;
> @@ -1370,15 +1389,6 @@ static int __init amd_pstate_init(void)
>  
>  	if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD)
>  		return -ENODEV;
> -	/*
> -	 * by default the pstate driver is disabled to load
> -	 * enable the amd_pstate passive mode driver explicitly
> -	 * with amd_pstate=passive or other modes in kernel command line
> -	 */
> -	if (cppc_state == AMD_PSTATE_DISABLE) {
> -		pr_info("driver load is disabled, boot with specific mode to enable this\n");
> -		return -ENODEV;
> -	}
>  
>  	if (!acpi_cpc_valid()) {
>  		pr_warn_once("the _CPC object is not present in SBIOS or ACPI disabled\n");
> @@ -1389,6 +1399,33 @@ static int __init amd_pstate_init(void)
>  	if (cpufreq_get_current_driver())
>  		return -EEXIST;
>  
> +	switch (cppc_state) {
> +	case AMD_PSTATE_UNDEFINED:
> +		/* Disable on the following configs by default:
> +		 * 1. Undefined platforms
> +		 * 2. Server platforms
> +		 * 3. Shared memory designs
> +		 */
> +		if (acpi_pm_profile_undefined() ||
> +		    acpi_pm_profile_server() ||
> +		    !boot_cpu_has(X86_FEATURE_CPPC)) {
> +			pr_info("driver load is disabled, boot with specific mode to enable this\n");
> +			return -ENODEV;
> +		}
> +		ret = amd_pstate_set_driver(CONFIG_X86_AMD_PSTATE_DEFAULT_MODE);
> +		if (ret)
> +			return ret;
> +		break;
> +	case AMD_PSTATE_DISABLE:
> +		return -ENODEV;
> +	case AMD_PSTATE_PASSIVE:
> +	case AMD_PSTATE_ACTIVE:
> +	case AMD_PSTATE_GUIDED:
> +		break;
> +	default:
> +		return -EINVAL;
> +	}
> +
>  	/* capability check */
>  	if (boot_cpu_has(X86_FEATURE_CPPC)) {
>  		pr_debug("AMD CPPC MSR based functionality is supported\n");
> @@ -1441,21 +1478,7 @@ static int __init amd_pstate_param(char *str)
>  	size = strlen(str);
>  	mode_idx = get_mode_idx_from_str(str, size);
>  
> -	if (mode_idx >= AMD_PSTATE_DISABLE && mode_idx < AMD_PSTATE_MAX) {
> -		cppc_state = mode_idx;
> -		if (cppc_state == AMD_PSTATE_DISABLE)
> -			pr_info("driver is explicitly disabled\n");
> -
> -		if (cppc_state == AMD_PSTATE_ACTIVE)
> -			current_pstate_driver = &amd_pstate_epp_driver;
> -
> -		if (cppc_state == AMD_PSTATE_PASSIVE || cppc_state == AMD_PSTATE_GUIDED)
> -			current_pstate_driver = &amd_pstate_driver;
> -
> -		return 0;
> -	}
> -
> -	return -EINVAL;
> +	return amd_pstate_set_driver(mode_idx);
>  }
>  early_param("amd_pstate", amd_pstate_param);
>  
> diff --git a/include/linux/amd-pstate.h b/include/linux/amd-pstate.h
> index c10ebf8c42e6..446394f84606 100644
> --- a/include/linux/amd-pstate.h
> +++ b/include/linux/amd-pstate.h
> @@ -94,7 +94,8 @@ struct amd_cpudata {
>   * enum amd_pstate_mode - driver working mode of amd pstate
>   */
>  enum amd_pstate_mode {
> -	AMD_PSTATE_DISABLE = 0,
> +	AMD_PSTATE_UNDEFINED = 0,
> +	AMD_PSTATE_DISABLE,
>  	AMD_PSTATE_PASSIVE,
>  	AMD_PSTATE_ACTIVE,
>  	AMD_PSTATE_GUIDED,
> @@ -102,6 +103,7 @@ enum amd_pstate_mode {
>  };
>  
>  static const char * const amd_pstate_mode_string[] = {
> +	[AMD_PSTATE_UNDEFINED]   = "undefined",
>  	[AMD_PSTATE_DISABLE]     = "disable",
>  	[AMD_PSTATE_PASSIVE]     = "passive",
>  	[AMD_PSTATE_ACTIVE]      = "active",
> -- 
> 2.34.1
> 

      reply	other threads:[~2023-06-20 15:04 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-15  6:33 [PATCH v2 3/4] cpufreq: amd-pstate: Add a kernel config option to set default mode Perry Yuan
2023-06-20 15:02 ` Huang Rui [this message]

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=ZJG/fGLWmRlyXz4a@amd.com \
    --to=ray.huang@amd.com \
    --cc=Deepak.Sharma@amd.com \
    --cc=Li.Meng@amd.com \
    --cc=Mario.Limonciello@amd.com \
    --cc=Perry.Yuan@amd.com \
    --cc=Shimmer.Huang@amd.com \
    --cc=Sunpeng.Li@amd.com \
    --cc=Wyes.Karny@amd.com \
    --cc=Xiaojian.Du@amd.com \
    --cc=gautham.shenoy@amd.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=rafael.j.wysocki@intel.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;
as well as URLs for NNTP newsgroup(s).