From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: Kurt Borja <kuurtb@gmail.com>
Cc: Armin Wolf <W_Armin@gmx.de>, Hans de Goede <hdegoede@redhat.com>,
platform-driver-x86@vger.kernel.org,
Dell.Client.Kernel@dell.com, LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v6 05/12] platform/x86: alienware-wmi-wmax: Improve platform profile probe
Date: Fri, 28 Mar 2025 17:03:18 +0200 (EET) [thread overview]
Message-ID: <a9a21cb9-a0aa-4450-4573-51fbc674c9cc@linux.intel.com> (raw)
In-Reply-To: <20250313-hwm-v6-5-17b57f787d77@gmail.com>
On Thu, 13 Mar 2025, Kurt Borja wrote:
> Get and store the AWCC system description in alienware_awcc_setup()
> instead of awcc_platform_profile_probe() and add a check for integer
> overflows to avoid misbehaviors.
>
> While at it, replace set_bit() with it's non-atomic version __set_bit()
> because `choices` belong to this thread only.
>
> Reviewed-by: Armin Wolf <W_Armin@gmx.de>
> Signed-off-by: Kurt Borja <kuurtb@gmail.com>
> ---
> drivers/platform/x86/dell/alienware-wmi-wmax.c | 61 +++++++++++++++++++-------
> 1 file changed, 46 insertions(+), 15 deletions(-)
>
> diff --git a/drivers/platform/x86/dell/alienware-wmi-wmax.c b/drivers/platform/x86/dell/alienware-wmi-wmax.c
> index a8a13779793abbcc8d1263474cac6227d524a6f5..0530f25b956f73f47c0354f40dac2910448c894e 100644
> --- a/drivers/platform/x86/dell/alienware-wmi-wmax.c
> +++ b/drivers/platform/x86/dell/alienware-wmi-wmax.c
> @@ -38,6 +38,9 @@
> /* Some IDs have a BIT(8) flag that we ignore */
> #define AWCC_RESOURCE_ID_MASK GENMASK(7, 0)
>
> +/* Arbitrary limit based on supported models */
> +#define AWCC_MAX_RES_COUNT 16
> +
> static bool force_platform_profile;
> module_param_unsafe(force_platform_profile, bool, 0);
> MODULE_PARM_DESC(force_platform_profile, "Forces auto-detecting thermal profiles without checking if WMI thermal backend is available");
> @@ -212,6 +215,17 @@ struct wmax_u32_args {
>
> struct awcc_priv {
> struct wmi_device *wdev;
> + union {
> + u32 system_description;
> + struct {
> + u8 fan_count;
> + u8 temp_count;
> + u8 unknown_count;
> + u8 profile_count;
> + };
> + u8 res_count[4];
> + };
> +
> struct device *ppdev;
> u8 supported_profiles[PLATFORM_PROFILE_LAST];
> };
> @@ -624,37 +638,40 @@ static int awcc_platform_profile_probe(void *drvdata, unsigned long *choices)
> enum platform_profile_option profile;
> struct awcc_priv *priv = drvdata;
> enum awcc_thermal_profile mode;
> - u8 sys_desc[4];
> - u32 first_mode;
> + u8 id, offset = 0;
> u32 out_data;
> int ret;
> - u8 id;
>
> - ret = awcc_thermal_information(priv->wdev, AWCC_OP_GET_SYSTEM_DESCRIPTION,
> - 0, (u32 *) &sys_desc);
> - if (ret < 0)
> - return ret;
> -
> - first_mode = sys_desc[0] + sys_desc[1];
> -
> - for (u32 i = 0; i < sys_desc[3]; i++) {
> - ret = awcc_op_get_resource_id(priv->wdev, i + first_mode, &out_data);
> + /*
> + * Thermal profile IDs are listed last at offset
> + * fan_count + temp_count + unknown_count
> + */
> + for (unsigned int i = 0; i < ARRAY_SIZE(priv->res_count) - 1; i++)
> + offset += priv->res_count[i];
Doesn't this change go slightly beyond what its changelog describes, could
you please amend the changelog to explain it.
>
> + for (unsigned int i = 0; i < priv->profile_count; i++) {
> + ret = awcc_op_get_resource_id(priv->wdev, i + offset, &out_data);
> if (ret == -EIO)
> return ret;
>
> + /*
> + * Some devices report an incorrect number of thermal profiles
> + * so the resource ID list may end prematurely
> + */
> if (ret == -EBADRQC)
> break;
>
> id = FIELD_GET(AWCC_RESOURCE_ID_MASK, out_data);
> - if (!is_awcc_thermal_profile_id(id))
> + if (!is_awcc_thermal_profile_id(id)) {
> + dev_dbg(&priv->wdev->dev, "Unmapped thermal profile ID 0x%02x\n", id);
> continue;
> + }
>
> mode = FIELD_GET(AWCC_THERMAL_MODE_MASK, id);
> profile = awcc_mode_to_platform_profile[mode];
> priv->supported_profiles[profile] = id;
>
> - set_bit(profile, choices);
> + __set_bit(profile, choices);
> }
>
> if (bitmap_empty(choices, PLATFORM_PROFILE_LAST))
> @@ -664,7 +681,7 @@ static int awcc_platform_profile_probe(void *drvdata, unsigned long *choices)
> priv->supported_profiles[PLATFORM_PROFILE_PERFORMANCE] =
> AWCC_THERMAL_MODE_GMODE;
>
> - set_bit(PLATFORM_PROFILE_PERFORMANCE, choices);
> + __set_bit(PLATFORM_PROFILE_PERFORMANCE, choices);
> }
>
> return 0;
> @@ -695,6 +712,20 @@ static int alienware_awcc_setup(struct wmi_device *wdev)
> if (!priv)
> return -ENOMEM;
>
> + ret = awcc_thermal_information(wdev, AWCC_OP_GET_SYSTEM_DESCRIPTION,
> + 0, &priv->system_description);
> + if (ret < 0)
> + return ret;
> +
> + /* Sanity check */
> + for (unsigned int i = 0; i < ARRAY_SIZE(priv->res_count); i++) {
> + if (priv->res_count[i] > AWCC_MAX_RES_COUNT) {
> + dev_err(&wdev->dev, "Malformed system description: 0x%08x\n",
> + priv->system_description);
> + return -ENXIO;
> + }
> + }
> +
> priv->wdev = wdev;
> dev_set_drvdata(&wdev->dev, priv);
>
>
>
--
i.
next prev parent reply other threads:[~2025-03-28 15:03 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-13 14:29 [PATCH v6 00/12] platform/x86: alienware-wmi-wmax: HWMON support + DebugFS + Improvements Kurt Borja
2025-03-13 14:29 ` [PATCH v6 01/12] platform/x86: alienware-wmi-wmax: Rename thermal related symbols Kurt Borja
2025-03-28 14:02 ` Ilpo Järvinen
2025-03-13 14:29 ` [PATCH v6 02/12] platform/x86: alienware-wmi-wmax: Refactor is_awcc_thermal_mode() Kurt Borja
2025-03-28 14:17 ` Ilpo Järvinen
2025-03-28 21:10 ` Kurt Borja
2025-03-13 14:29 ` [PATCH v6 03/12] platform/x86: alienware-wmi-wmax: Improve internal AWCC API Kurt Borja
2025-03-28 14:51 ` Ilpo Järvinen
2025-03-28 21:16 ` Kurt Borja
2025-03-31 16:06 ` Ilpo Järvinen
2025-03-13 14:29 ` [PATCH v6 04/12] platform/x86: alienware-wmi-wmax: Modify supported_thermal_profiles[] Kurt Borja
2025-03-13 14:30 ` [PATCH v6 05/12] platform/x86: alienware-wmi-wmax: Improve platform profile probe Kurt Borja
2025-03-28 15:03 ` Ilpo Järvinen [this message]
2025-03-28 21:18 ` Kurt Borja
2025-03-13 14:30 ` [PATCH v6 06/12] platform/x86: alienware-wmi-wmax: Add support for the "custom" thermal profile Kurt Borja
2025-03-28 15:05 ` Ilpo Järvinen
2025-03-13 14:30 ` [PATCH v6 07/12] platform/x86: alienware-wmi-wmax: Add HWMON support Kurt Borja
2025-03-13 14:30 ` [PATCH v6 08/12] platform/x86: alienware-wmi-wmax: Add support for manual fan control Kurt Borja
2025-03-28 16:15 ` Ilpo Järvinen
2025-03-13 14:30 ` [PATCH v6 09/12] platform/x86: alienware-wmi-wmax: Add a DebugFS interface Kurt Borja
2025-03-28 16:18 ` Ilpo Järvinen
2025-03-28 21:25 ` Kurt Borja
2025-03-13 14:30 ` [PATCH v6 10/12] Documentation: wmi: Improve and update alienware-wmi documentation Kurt Borja
2025-03-13 14:30 ` [PATCH v6 11/12] Documentation: admin-guide: laptops: Add documentation for alienware-wmi Kurt Borja
2025-03-28 16:22 ` Ilpo Järvinen
2025-03-13 14:30 ` [PATCH v6 12/12] Documentation: ABI: Add sysfs platform and debugfs ABI " Kurt Borja
2025-03-17 0:32 ` [PATCH v6 00/12] platform/x86: alienware-wmi-wmax: HWMON support + DebugFS + Improvements Armin Wolf
2025-03-25 20:14 ` Kurt Borja
2025-03-26 8:34 ` Ilpo Järvinen
2025-03-26 14:11 ` Kurt Borja
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=a9a21cb9-a0aa-4450-4573-51fbc674c9cc@linux.intel.com \
--to=ilpo.jarvinen@linux.intel.com \
--cc=Dell.Client.Kernel@dell.com \
--cc=W_Armin@gmx.de \
--cc=hdegoede@redhat.com \
--cc=kuurtb@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--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