From: Wyes Karny <wyes.karny@amd.com>
To: Rafael J Wysocki <rafael@kernel.org>,
Huang Rui <ray.huang@amd.com>, Jonathan Corbet <corbet@lwn.net>,
Viresh Kumar <viresh.kumar@linaro.org>,
<Mario.Limonciello@amd.com>, <Perry.Yuan@amd.com>,
Ananth Narayan <ananth.narayan@amd.com>, <gautham.shenoy@amd.com>
Cc: <linux-doc@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<linux-pm@vger.kernel.org>, Bagas Sanjaya <bagasdotme@gmail.com>,
<santosh.shukla@amd.com>, Wyes Karny <wyes.karny@amd.com>
Subject: [PATCH v2 5/6] cpufreq: amd_pstate: Add guided mode control support via sysfs
Date: Fri, 13 Jan 2023 05:21:40 +0000 [thread overview]
Message-ID: <20230113052141.2874296-6-wyes.karny@amd.com> (raw)
In-Reply-To: <20230113052141.2874296-1-wyes.karny@amd.com>
amd_pstate driver's `status` sysfs entry helps to control the driver's
mode dynamically by user. After the addition of guided mode the
combinations of mode transitions have been increased (16 combinations).
Therefore optimise the amd_pstate_update_status function by implementing
a state transition table.
There are 4 states amd_pstate supports, namely: 'disable', 'passive',
'active', and 'guided'. The transition from any state to any other
state is possible after this change. Only if the state requested matches
with the current state then -EBUSY value is returned.
Sysfs interface:
To disable amd_pstate driver:
# echo disable > /sys/devices/system/cpu/amd_pstate/status
To enable passive mode:
# echo passive > /sys/devices/system/cpu/amd_pstate/status
To change mode to active:
# echo active > /sys/devices/system/cpu/amd_pstate/status
To change mode to guided:
# echo guided > /sys/devices/system/cpu/amd_pstate/status
Signed-off-by: Wyes Karny <wyes.karny@amd.com>
---
drivers/cpufreq/amd-pstate.c | 144 ++++++++++++++++++++++++++---------
1 file changed, 109 insertions(+), 35 deletions(-)
diff --git a/drivers/cpufreq/amd-pstate.c b/drivers/cpufreq/amd-pstate.c
index 20d78dad712d..4a2b559fd712 100644
--- a/drivers/cpufreq/amd-pstate.c
+++ b/drivers/cpufreq/amd-pstate.c
@@ -65,6 +65,8 @@ static struct cpufreq_driver amd_pstate_epp_driver;
static int cppc_state = AMD_PSTATE_DISABLE;
struct kobject *amd_pstate_kobj;
+typedef int (*cppc_mode_transition_fn)(int);
+
static inline int get_mode_idx_from_str(const char *str, size_t size)
{
int i;
@@ -806,55 +808,127 @@ static ssize_t amd_pstate_show_status(char *buf)
static void amd_pstate_driver_cleanup(void)
{
+ amd_pstate_enable(false);
+ cppc_state = AMD_PSTATE_DISABLE;
default_pstate_driver = NULL;
}
-static int amd_pstate_update_status(const char *buf, size_t size)
+static int amd_pstate_register_driver(int mode)
{
int ret;
- int mode_idx;
- if (size > 7 || size < 3)
+ if (mode == AMD_PSTATE_PASSIVE || mode == AMD_PSTATE_GUIDED)
+ default_pstate_driver = &amd_pstate_driver;
+ else if (mode == AMD_PSTATE_ACTIVE)
+ default_pstate_driver = &amd_pstate_epp_driver;
+ else
return -EINVAL;
- mode_idx = get_mode_idx_from_str(buf, size);
- switch(mode_idx) {
- case AMD_PSTATE_DISABLE:
- if (!default_pstate_driver)
- return -EINVAL;
- if (cppc_state == AMD_PSTATE_ACTIVE)
- return -EBUSY;
- ret = cpufreq_unregister_driver(default_pstate_driver);
+ ret = cpufreq_register_driver(default_pstate_driver);
+ if (ret) {
amd_pstate_driver_cleanup();
- break;
- case AMD_PSTATE_PASSIVE:
- if (default_pstate_driver) {
- if (default_pstate_driver == &amd_pstate_driver)
- return 0;
- cpufreq_unregister_driver(default_pstate_driver);
- cppc_state = AMD_PSTATE_PASSIVE;
- default_pstate_driver = &amd_pstate_driver;
- }
+ return ret;
+ }
- ret = cpufreq_register_driver(default_pstate_driver);
- break;
- case AMD_PSTATE_ACTIVE:
- if (default_pstate_driver) {
- if (default_pstate_driver == &amd_pstate_epp_driver)
- return 0;
- cpufreq_unregister_driver(default_pstate_driver);
- default_pstate_driver = &amd_pstate_epp_driver;
- cppc_state = AMD_PSTATE_ACTIVE;
+ cppc_state = mode;
+ return 0;
+}
+
+static int amd_pstate_unregister_driver(int dummy)
+{
+ int ret;
+
+ ret = cpufreq_unregister_driver(default_pstate_driver);
+
+ if (ret)
+ return ret;
+
+ amd_pstate_driver_cleanup();
+ return 0;
+}
+
+static void amd_pstate_change_mode_without_dvr_change(int mode)
+{
+ int cpu = 0;
+
+ cppc_state = mode;
+ if (!boot_cpu_has(X86_FEATURE_CPPC)) {
+ if (cppc_state == AMD_PSTATE_PASSIVE) {
+ for_each_present_cpu(cpu) {
+ cppc_set_auto_sel(cpu, 0);
+ }
+ } else if (cppc_state == AMD_PSTATE_GUIDED) {
+ for_each_present_cpu(cpu) {
+ cppc_set_auto_sel(cpu, 1);
+ }
}
+ }
+}
- ret = cpufreq_register_driver(default_pstate_driver);
- break;
- default:
- break;
- ret = -EINVAL;
+static int amd_pstate_change_driver_mode(int mode)
+{
+ int ret;
+
+ if ((mode == AMD_PSTATE_GUIDED && cppc_state == AMD_PSTATE_PASSIVE) ||
+ (mode == AMD_PSTATE_PASSIVE && cppc_state == AMD_PSTATE_GUIDED)) {
+ amd_pstate_change_mode_without_dvr_change(mode);
+ return 0;
}
- return ret;
+ ret = amd_pstate_unregister_driver(0);
+ if (ret)
+ return ret;
+
+ ret = amd_pstate_register_driver(mode);
+ if (ret)
+ return ret;
+
+ return 0;
+}
+
+/* Mode transition table */
+cppc_mode_transition_fn mode_state_machine[AMD_PSTATE_MAX][AMD_PSTATE_MAX] = {
+ [AMD_PSTATE_DISABLE] = {
+ [AMD_PSTATE_DISABLE] = NULL,
+ [AMD_PSTATE_PASSIVE] = amd_pstate_register_driver,
+ [AMD_PSTATE_ACTIVE] = amd_pstate_register_driver,
+ [AMD_PSTATE_GUIDED] = amd_pstate_register_driver,
+ },
+ [AMD_PSTATE_PASSIVE] = {
+ [AMD_PSTATE_DISABLE] = amd_pstate_unregister_driver,
+ [AMD_PSTATE_PASSIVE] = NULL,
+ [AMD_PSTATE_ACTIVE] = amd_pstate_change_driver_mode,
+ [AMD_PSTATE_GUIDED] = amd_pstate_change_driver_mode,
+ },
+ [AMD_PSTATE_ACTIVE] = {
+ [AMD_PSTATE_DISABLE] = amd_pstate_unregister_driver,
+ [AMD_PSTATE_PASSIVE] = amd_pstate_change_driver_mode,
+ [AMD_PSTATE_ACTIVE] = NULL,
+ [AMD_PSTATE_GUIDED] = amd_pstate_change_driver_mode,
+ },
+ [AMD_PSTATE_GUIDED] = {
+ [AMD_PSTATE_DISABLE] = amd_pstate_unregister_driver,
+ [AMD_PSTATE_PASSIVE] = amd_pstate_change_driver_mode,
+ [AMD_PSTATE_ACTIVE] = amd_pstate_change_driver_mode,
+ [AMD_PSTATE_GUIDED] = NULL,
+ },
+};
+
+static int amd_pstate_update_status(const char *buf, size_t size)
+{
+ int mode_idx;
+
+ if (size > 7 || size < 3)
+ return -EINVAL;
+ mode_idx = get_mode_idx_from_str(buf, size);
+
+ if (mode_idx < 0 || mode_idx >= AMD_PSTATE_MAX)
+ return -EINVAL;
+
+ if (mode_state_machine[cppc_state][mode_idx])
+ return mode_state_machine[cppc_state][mode_idx](mode_idx);
+
+ return -EBUSY;
}
static ssize_t show_status(struct kobject *kobj,
--
2.34.1
next prev parent reply other threads:[~2023-01-13 5:26 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-13 5:21 [PATCH v2 0/6] amd_pstate: Add guided autonomous mode support Wyes Karny
2023-01-13 5:21 ` [PATCH v2 1/6] acpi: cppc: Add min and max perf reg writing support Wyes Karny
2023-01-13 5:37 ` Mario Limonciello
2023-01-13 6:31 ` Wyes Karny
2023-01-13 5:21 ` [PATCH v2 2/6] acpi: cppc: Add auto select register read/write support Wyes Karny
2023-01-13 5:52 ` Mario Limonciello
2023-01-13 5:21 ` [PATCH v2 3/6] cpufreq: amd_pstate: Add guided autonomous mode Wyes Karny
2023-01-13 5:58 ` Mario Limonciello
2023-01-13 5:21 ` [PATCH v2 4/6] Documentation: amd_pstate: Move amd_pstate param to alphabetical order Wyes Karny
2023-01-13 5:38 ` Mario Limonciello
2023-01-13 5:21 ` Wyes Karny [this message]
2023-01-13 5:48 ` [PATCH v2 5/6] cpufreq: amd_pstate: Add guided mode control support via sysfs Mario Limonciello
2023-01-13 6:38 ` Wyes Karny
2023-01-13 5:21 ` [PATCH v2 6/6] Documentation: amd_pstate: Update amd_pstate status sysfs for guided Wyes Karny
2023-01-13 5:50 ` Mario Limonciello
2023-01-13 6:39 ` Wyes Karny
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=20230113052141.2874296-6-wyes.karny@amd.com \
--to=wyes.karny@amd.com \
--cc=Mario.Limonciello@amd.com \
--cc=Perry.Yuan@amd.com \
--cc=ananth.narayan@amd.com \
--cc=bagasdotme@gmail.com \
--cc=corbet@lwn.net \
--cc=gautham.shenoy@amd.com \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=rafael@kernel.org \
--cc=ray.huang@amd.com \
--cc=santosh.shukla@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