From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>,
Hans de Goede <hansg@kernel.org>
Cc: platform-driver-x86@vger.kernel.org, mario.limonciello@amd.com,
Yijun.Shen@Dell.com, Sanket.Goswami@amd.com
Subject: Re: [PATCH v3 5/7] platform/x86/amd/pmf: Move debug helper functions to UAPI header
Date: Wed, 25 Mar 2026 15:39:57 +0200 (EET) [thread overview]
Message-ID: <c2678400-a4af-03e6-9948-33dd5a486c5c@linux.intel.com> (raw)
In-Reply-To: <20260301131124.1370565-6-Shyam-sundar.S-k@amd.com>
On Sun, 1 Mar 2026, Shyam Sundar S K wrote:
> These debug helper functions convert enumerated values to appropriate
> message and can be useful for userspace tools and other kernel components
> that need to interpret AMD PMF state values.
>
> By making them inline functions in the UAPI header, they become available
> to both kernel and userspace without code duplication.
>
> Co-developed-by: Sanket Goswami <Sanket.Goswami@amd.com>
> Signed-off-by: Sanket Goswami <Sanket.Goswami@amd.com>
> Signed-off-by: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
Here too I'm not happy with the naming and I'm a little skeptical about
the sharing string conversion helpers as well.
Hans,
do you have something to say on having this kind of string conversions in
an uapi header?
> ---
> drivers/platform/x86/amd/pmf/spc.c | 54 --------------
> drivers/platform/x86/amd/pmf/util.c | 12 ----
> include/uapi/linux/amd-pmf.h | 105 ++++++++++++++++++++++++++++
> 3 files changed, 105 insertions(+), 66 deletions(-)
>
> diff --git a/drivers/platform/x86/amd/pmf/spc.c b/drivers/platform/x86/amd/pmf/spc.c
> index a40419b5e1b7..f91feaac5238 100644
> --- a/drivers/platform/x86/amd/pmf/spc.c
> +++ b/drivers/platform/x86/amd/pmf/spc.c
> @@ -18,60 +18,6 @@
> #include "pmf.h"
>
> #ifdef CONFIG_AMD_PMF_DEBUG
> -static const char *platform_type_as_str(u16 platform_type)
> -{
> - switch (platform_type) {
> - case CLAMSHELL:
> - return "CLAMSHELL";
> - case FLAT:
> - return "FLAT";
> - case TENT:
> - return "TENT";
> - case STAND:
> - return "STAND";
> - case TABLET:
> - return "TABLET";
> - case BOOK:
> - return "BOOK";
> - case PRESENTATION:
> - return "PRESENTATION";
> - case PULL_FWD:
> - return "PULL_FWD";
> - default:
> - return "UNKNOWN";
> - }
> -}
> -
> -static const char *laptop_placement_as_str(u16 device_state)
> -{
> - switch (device_state) {
> - case ON_TABLE:
> - return "ON_TABLE";
> - case ON_LAP_MOTION:
> - return "ON_LAP_MOTION";
> - case IN_BAG:
> - return "IN_BAG";
> - case OUT_OF_BAG:
> - return "OUT_OF_BAG";
> - default:
> - return "UNKNOWN";
> - }
> -}
> -
> -static const char *ta_slider_as_str(unsigned int state)
> -{
> - switch (state) {
> - case TA_BEST_PERFORMANCE:
> - return "PERFORMANCE";
> - case TA_BETTER_PERFORMANCE:
> - return "BALANCED";
> - case TA_BEST_BATTERY:
> - return "POWER_SAVER";
> - default:
> - return "Unknown TA Slider State";
> - }
> -}
> -
> static u32 amd_pmf_get_ta_custom_bios_inputs(struct ta_pmf_enact_table *in, int index)
> {
> switch (index) {
> diff --git a/drivers/platform/x86/amd/pmf/util.c b/drivers/platform/x86/amd/pmf/util.c
> index 9a14467f412c..20dc7aa9f250 100644
> --- a/drivers/platform/x86/amd/pmf/util.c
> +++ b/drivers/platform/x86/amd/pmf/util.c
> @@ -18,18 +18,6 @@
>
> #define AMD_PMF_IOCTL_VERSION 0x02
>
> -/* Convert BIOS input control code to array index (0-9) */
> -static int amd_pmf_get_bios_idx(u32 control_code)
> -{
> - if (control_code >= IOCTL_BIOS_INPUT_1 && control_code <= IOCTL_BIOS_INPUT_10)
> - return control_code - IOCTL_BIOS_INPUT_1;
> -
> - if (control_code >= IOCTL_BIOS_OUTPUT_1 && control_code <= IOCTL_BIOS_OUTPUT_10)
> - return control_code - IOCTL_BIOS_OUTPUT_1;
> -
> - return -EINVAL;
> -}
> -
> static long long amd_pmf_populate_bios_input(struct ta_pmf_enact_table *in, u32 control_code)
> {
> u32 idx;
> diff --git a/include/uapi/linux/amd-pmf.h b/include/uapi/linux/amd-pmf.h
> index 00fab9269238..e2125b304b83 100644
> --- a/include/uapi/linux/amd-pmf.h
> +++ b/include/uapi/linux/amd-pmf.h
> @@ -14,6 +14,7 @@
> #ifndef _UAPI_LINUX_AMD_PMF_H
> #define _UAPI_LINUX_AMD_PMF_H
>
> +#include <linux/errno.h>
> #include <linux/ioctl.h>
> #include <linux/types.h>
>
> @@ -106,6 +107,88 @@ enum platform_type {
> PTYPE_INVALID = 0xf,
> };
>
> +/**
> + * platform_type_as_str() - Convert platform type enum to string
> + * @platform_type: The platform type value to convert
> + *
> + * Returns a human-readable string representation of the platform type.
> + *
> + * Return: Constant string describing the platform type, or "UNKNOWN"
> + * if the value is not recognized.
> + */
> +static inline const char *platform_type_as_str(unsigned int platform_type)
> +{
> + switch (platform_type) {
> + case CLAMSHELL:
> + return "CLAMSHELL";
> + case FLAT:
> + return "FLAT";
> + case TENT:
> + return "TENT";
> + case STAND:
> + return "STAND";
> + case TABLET:
> + return "TABLET";
> + case BOOK:
> + return "BOOK";
> + case PRESENTATION:
> + return "PRESENTATION";
> + case PULL_FWD:
> + return "PULL_FWD";
> + default:
> + return "UNKNOWN";
> + }
> +}
> +
> +/**
> + * laptop_placement_as_str() - Convert laptop placement enum to string
> + * @device_state: The laptop placement value to convert
> + *
> + * Returns a human-readable string representation of the laptop placement.
> + *
> + * Return: Constant string describing the placement, or "UNKNOWN"
> + * if the value is not recognized.
> + */
> +static inline const char *laptop_placement_as_str(unsigned int device_state)
> +{
> + switch (device_state) {
> + case ON_TABLE:
> + return "ON_TABLE";
> + case ON_LAP_MOTION:
> + return "ON_LAP_MOTION";
> + case IN_BAG:
> + return "IN_BAG";
> + case OUT_OF_BAG:
> + return "OUT_OF_BAG";
> + default:
> + return "UNKNOWN";
> + }
> +}
> +
> +/**
> + * ta_slider_as_str() - Convert TA slider enum to string
> + * @state: The TA slider state value to convert
> + *
> + * Returns a human-readable string representation of the power slider
> + * position suitable for display purposes.
> + *
> + * Return: Constant string describing the slider state, or
> + * "Unknown TA Slider State" if the value is not recognized.
> + */
> +static inline const char *ta_slider_as_str(unsigned int state)
> +{
> + switch (state) {
> + case TA_BEST_PERFORMANCE:
> + return "PERFORMANCE";
> + case TA_BETTER_PERFORMANCE:
> + return "BALANCED";
> + case TA_BEST_BATTERY:
> + return "POWER_SAVER";
> + default:
> + return "Unknown TA Slider State";
> + }
> +}
> +
> /**
> * enum pmf_ioctl_id - Control codes for PMF ioctl operations
> * @IOCTL_POWER_SOURCE: Query current power source (AC/DC)
> @@ -197,6 +280,28 @@ enum pmf_ioctl_id {
> IOCTL_FEATURE_DYNAMIC_POWER_SLIDER_DC
> };
>
> +/**
> + * amd_pmf_get_bios_idx() - Convert BIOS control code to array index
> + * @control_code: The BIOS input or output control code
> + *
> + * Converts a BIOS input (IOCTL_BIOS_INPUT_1 to IOCTL_BIOS_INPUT_10) or
> + * BIOS output (IOCTL_BIOS_OUTPUT_1 to IOCTL_BIOS_OUTPUT_10) control code
> + * to a zero-based array index (0-9).
> + *
> + * Return: Array index (0-9) on success, -EINVAL if the control code
> + * is not a valid BIOS input or output code.
> + */
> +static inline int amd_pmf_get_bios_idx(unsigned int control_code)
> +{
> + if (control_code >= IOCTL_BIOS_INPUT_1 && control_code <= IOCTL_BIOS_INPUT_10)
> + return control_code - IOCTL_BIOS_INPUT_1;
> +
> + if (control_code >= IOCTL_BIOS_OUTPUT_1 && control_code <= IOCTL_BIOS_OUTPUT_10)
> + return control_code - IOCTL_BIOS_OUTPUT_1;
> +
> + return -EINVAL;
> +}
> +
> /**
> * struct amd_pmf_ioctl_info - Structure for PMF ioctl data exchange
> * @control_code: Input parameter specifying which data to query (enum pmf_ioctl_id)
>
--
i.
next prev parent reply other threads:[~2026-03-25 13:47 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-01 13:11 [PATCH v3 0/7] platform/x86/amd/pmf: Introduce PMF util layer with userspace interface Shyam Sundar S K
2026-03-01 13:11 ` [PATCH v3 1/7] platform/x86/amd/pmf: Add util layer and userspace misc device interface Shyam Sundar S K
2026-03-01 18:45 ` Randy Dunlap
2026-03-03 15:22 ` Shyam Sundar S K
2026-03-25 13:16 ` Ilpo Järvinen
2026-03-25 13:18 ` Ilpo Järvinen
2026-03-25 14:05 ` Ilpo Järvinen
2026-03-30 12:12 ` Shyam Sundar S K
2026-03-30 15:10 ` Ilpo Järvinen
2026-03-01 13:11 ` [PATCH v3 2/7] platform/x86/amd/pmf: cache BIOS output values for user-space metrics via util IOCTL Shyam Sundar S K
2026-03-25 14:08 ` Ilpo Järvinen
2026-03-01 13:11 ` [PATCH v3 3/7] platform/x86/amd/pmf: Add feature discovery support to util interface Shyam Sundar S K
2026-03-25 14:07 ` Ilpo Järvinen
2026-03-30 11:41 ` Shyam Sundar S K
2026-03-01 13:11 ` [PATCH v3 4/7] platform/x86/amd/pmf: Store commonly used enums in the header file Shyam Sundar S K
2026-03-25 13:34 ` Ilpo Järvinen
2026-03-01 13:11 ` [PATCH v3 5/7] platform/x86/amd/pmf: Move debug helper functions to UAPI header Shyam Sundar S K
2026-03-25 13:39 ` Ilpo Järvinen [this message]
2026-03-30 11:45 ` Shyam Sundar S K
2026-03-01 13:11 ` [PATCH v3 6/7] platform/x86/amd/pmf: Introduce AMD PMF testing tool for driver metrics and features Shyam Sundar S K
2026-03-25 13:54 ` Ilpo Järvinen
2026-03-25 15:07 ` Mario Limonciello
2026-03-26 10:20 ` Ilpo Järvinen
2026-03-30 11:42 ` Shyam Sundar S K
2026-03-01 13:11 ` [PATCH v3 7/7] Documentation/ABI: add testing entry for AMD PMF misc device interface Shyam Sundar S K
2026-03-25 13:58 ` Ilpo Järvinen
2026-03-25 15:08 ` Mario Limonciello
2026-03-26 10:14 ` Ilpo Järvinen
2026-03-02 19:36 ` [PATCH v3 0/7] platform/x86/amd/pmf: Introduce PMF util layer with userspace interface Mario Limonciello
2026-03-03 15:23 ` Shyam Sundar S K
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=c2678400-a4af-03e6-9948-33dd5a486c5c@linux.intel.com \
--to=ilpo.jarvinen@linux.intel.com \
--cc=Sanket.Goswami@amd.com \
--cc=Shyam-sundar.S-k@amd.com \
--cc=Yijun.Shen@Dell.com \
--cc=hansg@kernel.org \
--cc=mario.limonciello@amd.com \
--cc=platform-driver-x86@vger.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