From: Denis Benato <denis.benato@linux.dev>
To: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>,
"Marcus Grenängen" <marcus@grenangen.se>
Cc: platform-driver-x86@vger.kernel.org, linux-input@vger.kernel.org,
LKML <linux-kernel@vger.kernel.org>,
luke@ljones.dev, Hans de Goede <hansg@kernel.org>,
jikos@kernel.org, bentiss@kernel.org, corentin.chary@gmail.com
Subject: Re: [PATCH v3 1/3] HID: asus: export asus_hid_fnlock_set() for direct fn-lock control
Date: Mon, 27 Jul 2026 23:01:55 +0200 [thread overview]
Message-ID: <583d411e-07c8-45f7-9919-c01247cad718@linux.dev> (raw)
In-Reply-To: <ad587675-cef3-f5b5-eb39-0f76dea8d617@linux.intel.com>
On 7/27/26 13:09, Ilpo Järvinen wrote:
> On Thu, 7 May 2026, Marcus Grenängen wrote:
>
>> Some ASUS platforms cannot control fn-lock via WMI DEVS and must send a
>> HID feature report directly to the N-Key keyboard device instead.
>>
>> Add a module-level fnlock_hdev pointer (protected by a mutex) that is set
>> at probe time for devices with QUIRK_HID_FN_LOCK and cleared at remove.
>> Export asus_hid_fnlock_set(bool) so that asus-armoury can call into
>> hid-asus without a circular dependency.
>>
>> Signed-off-by: Marcus Grenängen <marcus@grenangen.se>
>> ---
>> drivers/hid/hid-asus.c | 44 +++++++++++++++++++++-
>> include/linux/platform_data/x86/asus-wmi.h | 15 ++++++++
>> 2 files changed, 58 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/hid/hid-asus.c b/drivers/hid/hid-asus.c
>> index d34d74df3dc0..402ba9d5e982 100644
>> --- a/drivers/hid/hid-asus.c
>> +++ b/drivers/hid/hid-asus.c
>> @@ -584,6 +584,39 @@ static void asus_sync_fn_lock(struct work_struct *work)
>> asus_kbd_set_fn_lock(drvdata->hdev, drvdata->fn_lock);
>> }
>>
>> +/*
>> + * Module-level reference to the HID device that handles fn-lock via feature
>> + * report. Set at probe and cleared at remove for QUIRK_HID_FN_LOCK devices.
>> + * Protected by fnlock_hdev_lock.
>> + */
>> +static DEFINE_MUTEX(fnlock_hdev_lock);
>> +static struct hid_device *fnlock_hdev;
>> +
>> +/**
>> + * asus_hid_fnlock_set() - Set fn-lock state directly via HID feature report.
>> + * @enabled: true to lock fn (F1-F12 primary), false to unlock.
>> + *
>> + * Called by asus-armoury on platforms where the WMI DEVS path for fn-lock is
>> + * non-functional (e.g. ASUS ProArt P16, N-Key keyboard product ID 0x19B6).
>> + *
>> + * Returns: 0 on success, -ENODEV if no fn-lock capable HID device is present.
>> + */
>> +int asus_hid_fnlock_set(bool enabled)
>> +{
>> + int ret;
>> +
>> + guard(mutex)(&fnlock_hdev_lock);
>> + if (!fnlock_hdev)
>> + return -ENODEV;
>> +
>> + ret = asus_kbd_set_fn_lock(fnlock_hdev, enabled);
>> + if (ret < 0)
>> + return ret;
>> +
>> + return 0;
>> +}
>> +EXPORT_SYMBOL_GPL(asus_hid_fnlock_set);
>> +
>> static void asus_schedule_work(struct asus_kbd_leds *led)
>> {
>> unsigned long flags;
>> @@ -969,6 +1002,8 @@ static int asus_input_configured(struct hid_device *hdev, struct hid_input *hi)
>> drvdata->fn_lock = true;
>> INIT_WORK(&drvdata->fn_lock_sync_work, asus_sync_fn_lock);
>> asus_kbd_set_fn_lock(hdev, true);
>> + guard(mutex)(&fnlock_hdev_lock);
>> + fnlock_hdev = hdev;
>> }
>>
>> if (drvdata->tp) {
>> @@ -1008,6 +1043,8 @@ static int asus_input_configured(struct hid_device *hdev, struct hid_input *hi)
>> drvdata->fn_lock = true;
>> INIT_WORK(&drvdata->fn_lock_sync_work, asus_sync_fn_lock);
>> asus_kbd_set_fn_lock(hdev, true);
>> + guard(mutex)(&fnlock_hdev_lock);
>> + fnlock_hdev = hdev;
> What's going on with this patch? Why this context appears more than once
> on different lines???
Hi Ilpo,
I think this patch has been taken by HID already as I had to resolve another issue with it:
mutex usage in atomic context; you can read out more here:
https://lore.kernel.org/all/20260619001103.1189200-2-denis.benato@linux.dev/
The main idea as I understood it is that to activate the fn key, do things, and then
deactivate it: the problem in this logic comes from the fact that using true both time
is very likely an oversight and it should have been true -> false.
I requested clarification too but still haven't got any response yet.
Let me know if I can do something.
Thanks,
Denis
> I even wasted my time on checking what hid tree has queued, and came up
> zero explanation (as expected).
>
> --
> i.
next prev parent reply other threads:[~2026-07-27 21:02 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-30 8:05 [PATCH] platform/x86: asus-wmi: fix fn-lock on platforms where WMI DEVS is a no-op Marcus Grenängen
2026-05-01 15:03 ` Denis Benato
2026-05-06 19:33 ` [PATCH v2 0/3] platform/x86: fix fn-lock on ASUS ProArt P16 (WMI DEVS no-op) Marcus Grenängen
2026-05-06 19:33 ` [PATCH v2 1/3] HID: asus: export asus_hid_fnlock_notify() for direct fn-lock control Marcus Grenängen
2026-05-06 22:00 ` Randy Dunlap
2026-05-06 22:17 ` Denis Benato
2026-05-07 9:29 ` [PATCH v3 0/3] platform/x86: fix fn-lock on ASUS ProArt P16 (WMI DEVS no-op) Marcus Grenängen
2026-05-07 9:29 ` [PATCH v3 1/3] HID: asus: export asus_hid_fnlock_set() for direct fn-lock control Marcus Grenängen
2026-07-27 11:09 ` Ilpo Järvinen
2026-07-27 21:01 ` Denis Benato [this message]
2026-05-07 9:29 ` [PATCH v3 2/3] platform/x86: asus-nb-wmi: add fnlock_use_hid quirk and asus_wmi_fnlock_use_hid() Marcus Grenängen
2026-05-07 9:29 ` [PATCH v3 3/3] platform/x86: asus-armoury: add fn_lock firmware attribute Marcus Grenängen
2026-05-06 19:33 ` [PATCH v2 2/3] platform/x86: asus-nb-wmi: add fnlock_use_hid quirk for ProArt P16 Marcus Grenängen
2026-05-06 19:33 ` [PATCH v2 3/3] platform/x86: asus-armoury: add fn_lock firmware attribute Marcus Grenängen
2026-05-06 22:10 ` Denis Benato
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=583d411e-07c8-45f7-9919-c01247cad718@linux.dev \
--to=denis.benato@linux.dev \
--cc=bentiss@kernel.org \
--cc=corentin.chary@gmail.com \
--cc=hansg@kernel.org \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=jikos@kernel.org \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luke@ljones.dev \
--cc=marcus@grenangen.se \
--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