From: Antheas Kapenekakis <lkml@antheas.dev>
To: mario.limonciello@amd.com, mpearson-lenovo@squebb.ca
Cc: ilpo.jarvinen@linux.intel.com, lenb@kernel.org,
linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org,
platform-driver-x86@vger.kernel.org, rafael@kernel.org,
hdegoede@redhat.com, me@kylegospodneti.ch,
Antheas Kapenekakis <lkml@antheas.dev>
Subject: [PATCH 3/3] ACPI: platform_profile: Do not hide options missing in secondary handlers
Date: Mon, 24 Feb 2025 20:50:59 +0100 [thread overview]
Message-ID: <20250224195059.10185-4-lkml@antheas.dev> (raw)
In-Reply-To: <20250224195059.10185-1-lkml@antheas.dev>
In the legacy endpoint, previously, only the options common to all
handlers were exposed. This causes an issue when the primary handler
of the device has its options hidden, as it results in a performance
degradation.
Therefore, this commit introduces the concept of secondary handlers.
These are handlers that are able to accept all options and do not
partake in the process of selecting which profiles are visible.
These handlers still have a probe function which is used for their
endpoint and their endpoint works normally and will block other
options. However, when called from the legacy endpoint, all options
will be sent to them. It is the expectation that secondary handlers
will pick the closest profile they have to what was sent.
In the absence of a primary handler, the options shown in the legacy
endpoint will be the union of all options of all secondary handlers.
Signed-off-by: Antheas Kapenekakis <lkml@antheas.dev>
---
drivers/acpi/platform_profile.c | 57 ++++++++++++++++++++++++++++-----
1 file changed, 49 insertions(+), 8 deletions(-)
diff --git a/drivers/acpi/platform_profile.c b/drivers/acpi/platform_profile.c
index 2ad53cc6aae5..55e8bb6adf8e 100644
--- a/drivers/acpi/platform_profile.c
+++ b/drivers/acpi/platform_profile.c
@@ -63,17 +63,18 @@ static ssize_t _commmon_choices_show(unsigned long *choices, char *buf)
* _store_class_profile - Set the profile for a class device
* @dev: The class device
* @data: The profile to set
+ * @enforce_valid: For secondary handlers, enforce that the profile is valid
*
* Return: 0 on success, -errno on failure
*/
-static int _store_class_profile(struct device *dev, void *data)
+static int _store_class_profile(struct device *dev, void *data, bool enforce_valid)
{
struct platform_profile_handler *handler;
int *bit = (int *)data;
lockdep_assert_held(&profile_lock);
handler = to_pprof_handler(dev);
- if (!test_bit(*bit, handler->choices))
+ if ((enforce_valid || !handler->ops->secondary) && !test_bit(*bit, handler->choices))
return -EOPNOTSUPP;
return handler->ops->profile_set(dev, *bit);
@@ -204,7 +205,7 @@ static ssize_t profile_store(struct device *dev,
return -EINVAL;
scoped_cond_guard(mutex_intr, return -ERESTARTSYS, &profile_lock) {
- ret = _store_class_profile(dev, &index);
+ ret = _store_class_profile(dev, &index, true);
if (ret)
return ret;
}
@@ -243,21 +244,37 @@ static const struct class platform_profile_class = {
*
* Return: 0 on success, -errno on failure
*/
-static int _aggregate_choices(struct device *dev, void *data)
+static int _aggregate_choices(struct device *dev, void *data, bool secondary)
{
struct platform_profile_handler *handler;
unsigned long *aggregate = data;
lockdep_assert_held(&profile_lock);
handler = to_pprof_handler(dev);
+
+ if (handler->ops->secondary != secondary)
+ return 0;
+
if (test_bit(PLATFORM_PROFILE_LAST, aggregate))
bitmap_copy(aggregate, handler->choices, PLATFORM_PROFILE_LAST);
+ else if (handler->ops->secondary)
+ bitmap_or(aggregate, handler->choices, aggregate, PLATFORM_PROFILE_LAST);
else
bitmap_and(aggregate, handler->choices, aggregate, PLATFORM_PROFILE_LAST);
return 0;
}
+static int _aggregate_choices_primary(struct device *dev, void *data)
+{
+ return _aggregate_choices(dev, data, false);
+}
+
+static int _aggregate_choices_secondary(struct device *dev, void *data)
+{
+ return _aggregate_choices(dev, data, true);
+}
+
/**
* platform_profile_choices_show - Show the available profile choices for legacy sysfs interface
* @dev: The device
@@ -276,9 +293,16 @@ static ssize_t platform_profile_choices_show(struct device *dev,
set_bit(PLATFORM_PROFILE_LAST, aggregate);
scoped_cond_guard(mutex_intr, return -ERESTARTSYS, &profile_lock) {
err = class_for_each_device(&platform_profile_class, NULL,
- aggregate, _aggregate_choices);
+ aggregate, _aggregate_choices_primary);
if (err)
return err;
+
+ if (test_bit(PLATFORM_PROFILE_LAST, aggregate)) {
+ err = class_for_each_device(&platform_profile_class, NULL,
+ aggregate, _aggregate_choices_secondary);
+ if (err)
+ return err;
+ }
}
/* no profile handler registered any more */
@@ -325,7 +349,7 @@ static int _store_and_notify(struct device *dev, void *data)
enum platform_profile_option *profile = data;
int err;
- err = _store_class_profile(dev, profile);
+ err = _store_class_profile(dev, profile, false);
if (err)
return err;
return _notify_class_profile(dev, NULL);
@@ -384,9 +408,18 @@ static ssize_t platform_profile_store(struct device *dev,
set_bit(PLATFORM_PROFILE_LAST, choices);
scoped_cond_guard(mutex_intr, return -ERESTARTSYS, &profile_lock) {
ret = class_for_each_device(&platform_profile_class, NULL,
- choices, _aggregate_choices);
+ choices, _aggregate_choices_primary);
if (ret)
return ret;
+
+ if (test_bit(PLATFORM_PROFILE_LAST, choices)) {
+ ret = class_for_each_device(
+ &platform_profile_class, NULL, choices,
+ _aggregate_choices_secondary);
+ if (ret)
+ return ret;
+ }
+
if (!test_bit(i, choices))
return -EOPNOTSUPP;
@@ -470,10 +503,18 @@ int platform_profile_cycle(void)
return -EINVAL;
err = class_for_each_device(&platform_profile_class, NULL,
- choices, _aggregate_choices);
+ choices, _aggregate_choices_primary);
if (err)
return err;
+ if (test_bit(PLATFORM_PROFILE_LAST, choices)) {
+ err = class_for_each_device(
+ &platform_profile_class, NULL, choices,
+ _aggregate_choices_secondary);
+ if (err)
+ return err;
+ }
+
/* never iterate into a custom if all drivers supported it */
clear_bit(PLATFORM_PROFILE_CUSTOM, choices);
--
2.48.1
next prev parent reply other threads:[~2025-02-24 19:51 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-24 19:50 [PATCH 0/3] ACPI: platform_profile: fix legacy sysfs with multiple handlers Antheas Kapenekakis
2025-02-24 19:50 ` [PATCH 1/3] ACPI: platform_profile: Add support for secondary handlers Antheas Kapenekakis
2025-02-24 19:50 ` [PATCH 2/3] ACPI: platform_profile: add all options to amd-pmf as a secondary handler Antheas Kapenekakis
2025-02-24 19:50 ` Antheas Kapenekakis [this message]
2025-02-27 17:48 ` [PATCH 3/3] ACPI: platform_profile: Do not hide options missing in secondary handlers kernel test robot
2025-02-24 20:27 ` [PATCH 0/3] ACPI: platform_profile: fix legacy sysfs with multiple handlers Mario Limonciello
2025-02-24 20:31 ` Antheas Kapenekakis
2025-02-24 20:52 ` Mark Pearson
2025-02-24 21:08 ` Antheas Kapenekakis
2025-02-24 21:51 ` Luke Jones
2025-02-24 21:58 ` Antheas Kapenekakis
2025-02-24 22:49 ` Armin Wolf
2025-02-24 22:55 ` Antheas Kapenekakis
2025-02-24 22:58 ` Antheas Kapenekakis
2025-02-25 20:22 ` Rafael J. Wysocki
2025-02-25 20:24 ` Antheas Kapenekakis
2025-02-26 20:03 ` Rafael J. Wysocki
2025-02-26 22:15 ` Antheas Kapenekakis
2025-02-25 1:34 ` Luke Jones
2025-02-25 2:26 ` Antheas Kapenekakis
2025-02-25 15:56 ` Armin Wolf
2025-02-25 16:27 ` Antheas Kapenekakis
2025-02-24 22:42 ` Armin Wolf
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=20250224195059.10185-4-lkml@antheas.dev \
--to=lkml@antheas.dev \
--cc=hdegoede@redhat.com \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mario.limonciello@amd.com \
--cc=me@kylegospodneti.ch \
--cc=mpearson-lenovo@squebb.ca \
--cc=platform-driver-x86@vger.kernel.org \
--cc=rafael@kernel.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