X86 platform drivers
 help / color / mirror / Atom feed
From: Hans de Goede <hansg@kernel.org>
To: David Stephenson <git@davidstephenson.net>,
	Sebastian Reichel <sre@kernel.org>
Cc: platform-driver-x86@vger.kernel.org
Subject: Re: [PATCH] platform: arm64: thinkpad-t14s-ec: don't send KEY_KBDILLUMTOGGLE on Fn+Space
Date: Wed, 26 Aug 2026 11:09:05 +0200	[thread overview]
Message-ID: <8cf8ef11-0d21-4d09-ba8c-004132a3a0a7@kernel.org> (raw)
In-Reply-To: <20260825193556.133277-1-git@davidstephenson.net>

Hi,

On 25-Aug-26 21:36, David Stephenson wrote:
> On the T14s, the EC already steps the keyboard backlight when you press
> Fn+Space: off, then low, then high.
> 
> We report that change with t14s_kbd_bl_update() (brightness_hw_changed).
> We then also send KEY_KBDILLUMTOGGLE.
> 
> The extra key is the problem. Desktops treat it as "please toggle the
> light." GNOME calls Keyboard.Toggle() and changes the LED itself. That
> fights the EC's three steps. The on-screen bar also stays empty,
> because Toggle() always returns 0%.
> 
> thinkpad_acpi on x86 already skips the key when the firmware changed
> the light. It only uses brightness_hw_changed. Do the same here: keep
> the LED update, do not send KEY_KBDILLUMTOGGLE.
> 
> Tested on a Lenovo ThinkPad T14s Gen 6 (21N1, Snapdragon X Elite) with
> GNOME. After this change the OSD bar tracks off / 50% / 100%.
> 
> Signed-off-by: David Stephenson <git@davidstephenson.net>

Thanks, patch looks good to me:

Reviewed-by: Hans de Goede <johannes.goede@oss.qualcomm.com>

Regards,

Hans



> ---
>  drivers/platform/arm64/lenovo-thinkpad-t14s.c | 8 +++++++-
>  1 file changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/platform/arm64/lenovo-thinkpad-t14s.c b/drivers/platform/arm64/lenovo-thinkpad-t14s.c
> index 5590302a5..22d20a907 100644
> --- a/drivers/platform/arm64/lenovo-thinkpad-t14s.c
> +++ b/drivers/platform/arm64/lenovo-thinkpad-t14s.c
> @@ -488,8 +488,14 @@ static irqreturn_t t14s_ec_irq_handler(int irq, void *data)
>  	case T14S_EC_EVT_NONE:
>  		break;
>  	case T14S_EC_EVT_KEY_FN_SPACE:
> +		/*
> +		 * Firmware already cycles the keyboard backlight
> +		 * (off / low / high). Notify userspace through the LED
> +		 * class only. Emitting KEY_KBDILLUMTOGGLE as well makes
> +		 * desktop environments toggle the LED a second time.
> +		 */
>  		t14s_kbd_bl_update(ec);
> -		fallthrough;
> +		break;
>  	case T14S_EC_EVT_KEY_FN_F4:
>  	case T14S_EC_EVT_KEY_FN_F7:
>  	case T14S_EC_EVT_KEY_FN_4:


      reply	other threads:[~2026-08-26  9:09 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-25 19:36 [PATCH] platform: arm64: thinkpad-t14s-ec: don't send KEY_KBDILLUMTOGGLE on Fn+Space David Stephenson
2026-08-26  9:09 ` Hans de Goede [this message]

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=8cf8ef11-0d21-4d09-ba8c-004132a3a0a7@kernel.org \
    --to=hansg@kernel.org \
    --cc=git@davidstephenson.net \
    --cc=platform-driver-x86@vger.kernel.org \
    --cc=sre@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