From: Hans de Goede <hdegoede@redhat.com>
To: "Gašper Nemgar" <gasper.nemgar@gmail.com>, ikepanhc@gmail.com
Cc: ilpo.jarvinen@linux.intel.com, linux-kernel@vger.kernel.org,
platform-driver-x86@vger.kernel.org
Subject: Re: [PATCHv4] platform/x86: ideapad-laptop: added support for some new buttons
Date: Fri, 11 Apr 2025 16:34:28 +0200 [thread overview]
Message-ID: <347b59ca-e655-4064-aefd-a8355d426962@redhat.com> (raw)
In-Reply-To: <20250410212937.28772-1-gasper.nemgar@gmail.com>
Hi Gašper,
On 10-Apr-25 11:29 PM, Gašper Nemgar wrote:
> Added entries to unsuported wmi codes in ideapad_keymap[]
> and one check in wmi_nofify in order to get wmi code 0x13d to trigger platform_profile_cycle
>
> Signed-off-by: Gašper Nemgar <gasper.nemgar@gmail.com>"
> ---
> Changes in v4:
> - Changed performace button to KE_IGNORE
> Changes in v3:
> - Minor changes
> Changes in v2:
> - Added more codes that trigger with key combos (Fn+N, Fn+M, ...)
> - Added performence toggle in wmi_notify()
> Changes in v1:
> - Added codes for buttons on laptop(performance, star, ...)
> ---
> drivers/platform/x86/ideapad-laptop.c | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/drivers/platform/x86/ideapad-laptop.c b/drivers/platform/x86/ideapad-laptop.c
> index 17a09b778..72d3306ef 100644
> --- a/drivers/platform/x86/ideapad-laptop.c
> +++ b/drivers/platform/x86/ideapad-laptop.c
> @@ -1294,6 +1294,16 @@ static const struct key_entry ideapad_keymap[] = {
> /* Specific to some newer models */
> { KE_KEY, 0x3e | IDEAPAD_WMI_KEY, { KEY_MICMUTE } },
> { KE_KEY, 0x3f | IDEAPAD_WMI_KEY, { KEY_RFKILL } },
> + /* Star- (User Asignable Key) */
> + { KE_KEY, 0x44 | IDEAPAD_WMI_KEY, { KEY_PROG1 } },
> + /* Eye */
> + { KE_KEY, 0x45 | IDEAPAD_WMI_KEY, { KEY_PROG3 } },
> + /* Performance toggle also Fn+Q, handled inside ideapad_wmi_notify() */
> + { KE_IGNORE, 0x3d | IDEAPAD_WMI_KEY, { KEY_PROG4 } },
I missed that below there is a "if (priv->dytc)" conditional,
this means that it would still be good to send KEY_PROG4
when a keycode of 0x3d is received on laptops where
DYTC platform-profile support is lacking.
For v5, please change this back to KE_KEY so that KEY_PROG4 will
be send when the "if (priv->dytc)" check fails. Sorry about this.
Note please also address Alok's review remarks for version 5.
Regards,
Hans
> + /* shift + prtsc */
> + { KE_KEY, 0x2d | IDEAPAD_WMI_KEY, { KEY_CUT } },
> + { KE_KEY, 0x29 | IDEAPAD_WMI_KEY, { KEY_TOUCHPAD_TOGGLE } },
> + { KE_KEY, 0x2a | IDEAPAD_WMI_KEY, { KEY_ROOT_MENU } },
>
> { KE_END },
> };
> @@ -2080,6 +2090,14 @@ static void ideapad_wmi_notify(struct wmi_device *wdev, union acpi_object *data)
> dev_dbg(&wdev->dev, "WMI fn-key event: 0x%llx\n",
> data->integer.value);
>
> + /* performance button triggered by 0x3d */
> + if (data->integer.value == 0x3d) {
> + if (priv->dytc) {
> + platform_profile_cycle();
> + break;
> + }
> + }
> +
> /* 0x02 FnLock, 0x03 Esc */
> if (data->integer.value == 0x02 || data->integer.value == 0x03)
> ideapad_fn_lock_led_notify(priv, data->integer.value == 0x02);
next prev parent reply other threads:[~2025-04-11 14:34 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-10 21:29 [PATCHv4] platform/x86: ideapad-laptop: added support for some new buttons Gašper Nemgar
2025-04-11 4:41 ` ALOK TIWARI
2025-04-11 14:34 ` Hans de Goede [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-04-03 13:04 Gašper Nemgar
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=347b59ca-e655-4064-aefd-a8355d426962@redhat.com \
--to=hdegoede@redhat.com \
--cc=gasper.nemgar@gmail.com \
--cc=ikepanhc@gmail.com \
--cc=ilpo.jarvinen@linux.intel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.