The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Mario Limonciello <mario.limonciello@amd.com>
To: Swapnil Sapkal <swapnil.sapkal@amd.com>
Cc: ray.huang@amd.com, dhananjay.ugwekar@amd.com, perry.yuan@amd.com,
	viresh.kumar@linaro.org, linux-pm@vger.kernel.org,
	linux-kernel@vger.kernel.org, rafael@kernel.org,
	gautham.shenoy@amd.com
Subject: Re: [PATCH] amd-pstate-ut: Reset amd-pstate driver mode after running selftests
Date: Mon, 5 May 2025 12:00:02 -0500	[thread overview]
Message-ID: <05544c19-d4fe-4561-bd8a-cc6624353a99@amd.com> (raw)
In-Reply-To: <20250430064206.7402-1-swapnil.sapkal@amd.com>

On 4/30/2025 1:42 AM, Swapnil Sapkal wrote:
> In amd-pstate-ut, one of the basic test is to switch between all
> possible mode combinations. After running this test the mode of the
> amd-pstate driver is active mode. Store and reset the mode to its original
> state.
> 
> Reviewed-by: Gautham R. Shenoy <gautham.shenoy@amd.com>
> Signed-off-by: Swapnil Sapkal <swapnil.sapkal@amd.com>

Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>

> ---
>   drivers/cpufreq/amd-pstate-ut.c | 19 ++++++++++++-------
>   drivers/cpufreq/amd-pstate.c    |  6 ++++++
>   drivers/cpufreq/amd-pstate.h    |  1 +
>   3 files changed, 19 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/cpufreq/amd-pstate-ut.c b/drivers/cpufreq/amd-pstate-ut.c
> index e671bc7d1550..30835d0e4994 100644
> --- a/drivers/cpufreq/amd-pstate-ut.c
> +++ b/drivers/cpufreq/amd-pstate-ut.c
> @@ -242,6 +242,8 @@ static int amd_pstate_set_mode(enum amd_pstate_mode mode)
>   static int amd_pstate_ut_check_driver(u32 index)
>   {
>   	enum amd_pstate_mode mode1, mode2 = AMD_PSTATE_DISABLE;
> +	enum amd_pstate_mode orig_mode = amd_pstate_get_status();
> +	int ret;
>   
>   	for (mode1 = AMD_PSTATE_DISABLE; mode1 < AMD_PSTATE_MAX; mode1++) {
>   		int ret = amd_pstate_set_mode(mode1);
> @@ -251,16 +253,19 @@ static int amd_pstate_ut_check_driver(u32 index)
>   			if (mode1 == mode2)
>   				continue;
>   			ret = amd_pstate_set_mode(mode2);
> -			if (ret) {
> -				pr_err("%s: failed to update status for %s->%s\n", __func__,
> -					amd_pstate_get_mode_string(mode1),
> -					amd_pstate_get_mode_string(mode2));
> -				return ret;
> -			}
> +			if (ret)
> +				goto out;
>   		}
>   	}
>   
> -	return 0;
> +out:
> +	if (ret)
> +		pr_warn("%s: failed to update status for %s->%s: %d\n", __func__,
> +			amd_pstate_get_mode_string(mode1),
> +			amd_pstate_get_mode_string(mode2), ret);
> +
> +	amd_pstate_set_mode(orig_mode);
> +	return ret;
>   }
>   
>   static int __init amd_pstate_ut_init(void)
> diff --git a/drivers/cpufreq/amd-pstate.c b/drivers/cpufreq/amd-pstate.c
> index b961f3a3b580..af08049fe96f 100644
> --- a/drivers/cpufreq/amd-pstate.c
> +++ b/drivers/cpufreq/amd-pstate.c
> @@ -1305,6 +1305,12 @@ static ssize_t amd_pstate_show_status(char *buf)
>   	return sysfs_emit(buf, "%s\n", amd_pstate_mode_string[cppc_state]);
>   }
>   
> +int amd_pstate_get_status(void)
> +{
> +	return cppc_state;
> +}
> +EXPORT_SYMBOL_GPL(amd_pstate_get_status);
> +
>   int amd_pstate_update_status(const char *buf, size_t size)
>   {
>   	int mode_idx;
> diff --git a/drivers/cpufreq/amd-pstate.h b/drivers/cpufreq/amd-pstate.h
> index fbe1c08d3f06..512d5d97806e 100644
> --- a/drivers/cpufreq/amd-pstate.h
> +++ b/drivers/cpufreq/amd-pstate.h
> @@ -119,6 +119,7 @@ enum amd_pstate_mode {
>   	AMD_PSTATE_MAX,
>   };
>   const char *amd_pstate_get_mode_string(enum amd_pstate_mode mode);
> +int amd_pstate_get_status(void);
>   int amd_pstate_update_status(const char *buf, size_t size);
>   
>   #endif /* _LINUX_AMD_PSTATE_H */


      reply	other threads:[~2025-05-05 17:00 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-30  6:42 [PATCH] amd-pstate-ut: Reset amd-pstate driver mode after running selftests Swapnil Sapkal
2025-05-05 17:00 ` Mario Limonciello [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=05544c19-d4fe-4561-bd8a-cc6624353a99@amd.com \
    --to=mario.limonciello@amd.com \
    --cc=dhananjay.ugwekar@amd.com \
    --cc=gautham.shenoy@amd.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=perry.yuan@amd.com \
    --cc=rafael@kernel.org \
    --cc=ray.huang@amd.com \
    --cc=swapnil.sapkal@amd.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