From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: Armin Wolf <W_Armin@gmx.de>
Cc: Dell.Client.Kernel@dell.com, pali@kernel.org,
mjg59@srcf.ucam.org, soyer@irl.hu,
Hans de Goede <hansg@kernel.org>,
platform-driver-x86@vger.kernel.org,
LKML <linux-kernel@vger.kernel.org>,
linux@roeck-us.net, linux-hwmon@vger.kernel.org,
mario.limonciello@amd.com
Subject: Re: [PATCH v5 1/9] platform/x86: dell-descriptor: Use new buffer-based WMI API
Date: Tue, 9 Jun 2026 13:58:14 +0300 (EEST) [thread overview]
Message-ID: <c87a0403-6339-7ac3-9a90-3b5bca87bb7d@linux.intel.com> (raw)
In-Reply-To: <20260605205937.530897-2-W_Armin@gmx.de>
On Fri, 5 Jun 2026, Armin Wolf wrote:
> Use the new buffer-based WMI API to also support ACPI firmware
> implementations that do not use ACPI buffers for the descriptor.
>
> Signed-off-by: Armin Wolf <W_Armin@gmx.de>
> ---
> .../platform/x86/dell/dell-wmi-descriptor.c | 108 ++++++++----------
> 1 file changed, 48 insertions(+), 60 deletions(-)
>
> diff --git a/drivers/platform/x86/dell/dell-wmi-descriptor.c b/drivers/platform/x86/dell/dell-wmi-descriptor.c
> index c2a180202719..5f5e9f38988e 100644
> --- a/drivers/platform/x86/dell/dell-wmi-descriptor.c
> +++ b/drivers/platform/x86/dell/dell-wmi-descriptor.c
> @@ -7,14 +7,34 @@
>
> #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
>
> -#include <linux/acpi.h>
> +#include <linux/cleanup.h>
> +#include <linux/compiler_attributes.h>
> #include <linux/list.h>
> #include <linux/module.h>
> +#include <linux/types.h>
> #include <linux/wmi.h>
> #include "dell-wmi-descriptor.h"
>
> #define DELL_WMI_DESCRIPTOR_GUID "8D9DDCBC-A997-11DA-B012-B622A1EF5492"
>
> +/*
> + * Descriptor buffer is 128 byte long and contains:
> + *
> + * Name Offset Length Value
> + * Vendor Signature 0 4 "DELL"
> + * Object Signature 4 4 " WMI"
> + * WMI Interface Version 8 4 <version>
> + * WMI buffer length 12 4 <length>
> + * WMI hotfix number 16 4 <hotfix>
> + */
> +struct descriptor {
> + char vendor_signature[4];
> + char object_signature[4];
I suggest adding comment that these are not NUL terminated strings, it's
a bit trappy.
> + __le32 interface_version;
> + __le32 buffer_length;
> + __le32 hotfix_number;
> +} __packed;
> +
> struct descriptor_priv {
> struct list_head list;
> u32 interface_version;
> @@ -88,77 +108,47 @@ bool dell_wmi_get_hotfix(u32 *hotfix)
> }
> EXPORT_SYMBOL_GPL(dell_wmi_get_hotfix);
>
> -/*
> - * Descriptor buffer is 128 byte long and contains:
> - *
> - * Name Offset Length Value
> - * Vendor Signature 0 4 "DELL"
> - * Object Signature 4 4 " WMI"
> - * WMI Interface Version 8 4 <version>
> - * WMI buffer length 12 4 <length>
> - * WMI hotfix number 16 4 <hotfix>
> - */
> -static int dell_wmi_descriptor_probe(struct wmi_device *wdev,
> - const void *context)
> +static int dell_wmi_descriptor_probe(struct wmi_device *wdev, const void *context)
> {
> - union acpi_object *obj = NULL;
> + struct descriptor *desc __free(kfree) = NULL;
This should not be here but down where the real assignment is. I'm pretty
sure the placement of __free() was discussed earlier in the context of the
wmi refactor patches.
--
i.
> struct descriptor_priv *priv;
> - u32 *buffer;
> + struct wmi_buffer buffer;
> int ret;
>
> - obj = wmidev_block_query(wdev, 0);
> - if (!obj) {
> - dev_err(&wdev->dev, "failed to read Dell WMI descriptor\n");
> - ret = -EIO;
> - goto out;
> - }
> -
> - if (obj->type != ACPI_TYPE_BUFFER) {
> - dev_err(&wdev->dev, "Dell descriptor has wrong type\n");
> - ret = -EINVAL;
> + ret = wmidev_query_block(wdev, 0, &buffer, sizeof(*desc));
> + if (ret < 0) {
> descriptor_valid = ret;
> - goto out;
> + return ret;
> }
>
> - /* Although it's not technically a failure, this would lead to
> - * unexpected behavior
> - */
> - if (obj->buffer.length != 128) {
> - dev_err(&wdev->dev,
> - "Dell descriptor buffer has unexpected length (%d)\n",
> - obj->buffer.length);
> - ret = -EINVAL;
> - descriptor_valid = ret;
> - goto out;
> - }
> + desc = buffer.data;
>
> - buffer = (u32 *)obj->buffer.pointer;
> + if (strncmp(desc->vendor_signature, "DELL", sizeof(desc->vendor_signature))) {
> + dev_err(&wdev->dev, "Dell descriptor buffer has invalid vendor signature (%4ph)\n",
> + desc->vendor_signature);
> + descriptor_valid = -ENOMSG;
> + return -ENOMSG;
> + }
>
> - if (strncmp(obj->string.pointer, "DELL WMI", 8) != 0) {
> - dev_err(&wdev->dev, "Dell descriptor buffer has invalid signature (%8ph)\n",
> - buffer);
> - ret = -EINVAL;
> - descriptor_valid = ret;
> - goto out;
> + if (strncmp(desc->object_signature, " WMI", sizeof(desc->object_signature))) {
> + dev_err(&wdev->dev, "Dell descriptor buffer has invalid object signature (%4ph)\n",
> + desc->object_signature);
> + descriptor_valid = -ENOMSG;
> + return -ENOMSG;
> }
> descriptor_valid = 0;
>
> - if (buffer[2] != 0 && buffer[2] != 1)
> - dev_warn(&wdev->dev, "Dell descriptor buffer has unknown version (%lu)\n",
> - (unsigned long) buffer[2]);
> -
> - priv = devm_kzalloc(&wdev->dev, sizeof(struct descriptor_priv),
> - GFP_KERNEL);
> + if (le32_to_cpu(desc->interface_version) > 1)
> + dev_warn(&wdev->dev, "Dell descriptor buffer has unknown version (%u)\n",
> + le32_to_cpu(desc->interface_version));
>
> - if (!priv) {
> - ret = -ENOMEM;
> - goto out;
> - }
> + priv = devm_kzalloc(&wdev->dev, sizeof(*priv), GFP_KERNEL);
> + if (!priv)
> + return -ENOMEM;
>
> - priv->interface_version = buffer[2];
> - priv->size = buffer[3];
> - priv->hotfix = buffer[4];
> - ret = 0;
> + priv->interface_version = le32_to_cpu(desc->interface_version);
> + priv->size = le32_to_cpu(desc->buffer_length);
> + priv->hotfix = le32_to_cpu(desc->hotfix_number);
> dev_set_drvdata(&wdev->dev, priv);
> mutex_lock(&list_mutex);
> list_add_tail(&priv->list, &wmi_list);
> @@ -169,8 +159,6 @@ static int dell_wmi_descriptor_probe(struct wmi_device *wdev,
> (unsigned long) priv->size,
> (unsigned long) priv->hotfix);
>
> -out:
> - kfree(obj);
> return ret;
> }
>
>
next prev parent reply other threads:[~2026-06-09 10:58 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-05 20:59 [PATCH v5 0/9] Convert most Dell WMI drivers to use the new buffer-based API Armin Wolf
2026-06-05 20:59 ` [PATCH v5 1/9] platform/x86: dell-descriptor: Use new buffer-based WMI API Armin Wolf
2026-06-09 10:58 ` Ilpo Järvinen [this message]
2026-06-05 20:59 ` [PATCH v5 2/9] platform/x86: dell-privacy: " Armin Wolf
2026-06-05 20:59 ` [PATCH v5 3/9] platform/x86: dell-smbios-wmi: " Armin Wolf
2026-06-05 20:59 ` [PATCH v5 4/9] platform/x86: dell-wmi-base: " Armin Wolf
2026-06-09 11:16 ` Ilpo Järvinen
2026-06-05 20:59 ` [PATCH v5 5/9] platform/x86: dell-ddv: " Armin Wolf
2026-06-05 20:59 ` [PATCH v5 6/9] hwmon: (dell-smm) " Armin Wolf
2026-06-09 11:32 ` Ilpo Järvinen
2026-06-05 20:59 ` [PATCH v5 7/9] platform/wmi: Make wmi_bus_class const Armin Wolf
2026-06-09 11:33 ` Ilpo Järvinen
2026-06-05 20:59 ` [PATCH v5 8/9] platform/wmi: Make sysfs attributes const Armin Wolf
2026-06-09 11:34 ` Ilpo Järvinen
2026-06-05 20:59 ` [PATCH v5 9/9] modpost: Handle malformed WMI GUID strings 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=c87a0403-6339-7ac3-9a90-3b5bca87bb7d@linux.intel.com \
--to=ilpo.jarvinen@linux.intel.com \
--cc=Dell.Client.Kernel@dell.com \
--cc=W_Armin@gmx.de \
--cc=hansg@kernel.org \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=mario.limonciello@amd.com \
--cc=mjg59@srcf.ucam.org \
--cc=pali@kernel.org \
--cc=platform-driver-x86@vger.kernel.org \
--cc=soyer@irl.hu \
/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
Powered by JetHome