From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: Denis Benato <denis.benato@linux.dev>
Cc: LKML <linux-kernel@vger.kernel.org>,
platform-driver-x86@vger.kernel.org,
Hans de Goede <hansg@kernel.org>,
"Luke D . Jones" <luke@ljones.dev>,
Mateusz Schyboll <dragonn@op.pl>,
Denis Benato <benato.denis96@gmail.com>
Subject: Re: [PATCH 2/2] platform/x86: asus-wmi: fix screenpad brightness scaling
Date: Mon, 23 Feb 2026 16:42:06 +0200 (EET) [thread overview]
Message-ID: <fc9bf191-5795-e29d-7e64-b2bb97d8639b@linux.intel.com> (raw)
In-Reply-To: <20260212220252.1526337-3-denis.benato@linux.dev>
On Thu, 12 Feb 2026, Denis Benato wrote:
> Fix incorrect brightness scaling by removing the inconsistent use of an
> arbitrary minimum.
>
> Signed-off-by: Denis Benato <denis.benato@linux.dev>
> Signed-off-by: Luke Jones <luke@ljones.dev>
Should this have a Fixes tag?
> ---
> drivers/platform/x86/asus-wmi.c | 16 ++++++----------
> 1 file changed, 6 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/platform/x86/asus-wmi.c b/drivers/platform/x86/asus-wmi.c
> index 4130dae37e15..5443aaf99e38 100644
> --- a/drivers/platform/x86/asus-wmi.c
> +++ b/drivers/platform/x86/asus-wmi.c
> @@ -125,7 +125,6 @@ module_param(fnlock_default, bool, 0444);
> #define NVIDIA_TEMP_MIN 75
> #define NVIDIA_TEMP_MAX 87
>
> -#define ASUS_SCREENPAD_BRIGHT_MIN 20
> #define ASUS_SCREENPAD_BRIGHT_MAX 255
> #define ASUS_SCREENPAD_BRIGHT_DEFAULT 60
>
> @@ -4243,13 +4242,13 @@ static int read_screenpad_brightness(struct backlight_device *bd)
> return err;
> /* The device brightness can only be read if powered, so return stored */
> if (err == BACKLIGHT_POWER_OFF)
> - return asus->driver->screenpad_brightness - ASUS_SCREENPAD_BRIGHT_MIN;
> + return bd->props.brightness;
>
> err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_SCREENPAD_LIGHT, &retval);
> if (err < 0)
> return err;
>
> - return (retval & ASUS_WMI_DSTS_BRIGHTNESS_MASK) - ASUS_SCREENPAD_BRIGHT_MIN;
> + return (retval & ASUS_WMI_DSTS_BRIGHTNESS_MASK);
> }
>
> static int update_screenpad_bl_status(struct backlight_device *bd)
> @@ -4289,22 +4288,19 @@ static int asus_screenpad_init(struct asus_wmi *asus)
> int err, power;
> int brightness = 0;
>
> - power = read_screenpad_backlight_power(asus);
> + power = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_SCREENPAD_POWER);
> if (power < 0)
> return power;
>
> - if (power != BACKLIGHT_POWER_OFF) {
> + if (power) {
> err = asus_wmi_get_devstate(asus, ASUS_WMI_DEVID_SCREENPAD_LIGHT, &brightness);
> if (err < 0)
> return err;
> }
> - /* default to an acceptable min brightness on boot if too low */
> - if (brightness < ASUS_SCREENPAD_BRIGHT_MIN)
> - brightness = ASUS_SCREENPAD_BRIGHT_DEFAULT;
This doesn't seem to be related to the scaling but looks a lowerbound?
Probably removing it would warrant own patch + justification, IMO.
> memset(&props, 0, sizeof(struct backlight_properties));
> props.type = BACKLIGHT_RAW; /* ensure this bd is last to be picked */
> - props.max_brightness = ASUS_SCREENPAD_BRIGHT_MAX - ASUS_SCREENPAD_BRIGHT_MIN;
> + props.max_brightness = ASUS_SCREENPAD_BRIGHT_MAX;
> bd = backlight_device_register("asus_screenpad",
> &asus->platform_device->dev, asus,
> &asus_screenpad_bl_ops, &props);
> @@ -4315,7 +4311,7 @@ static int asus_screenpad_init(struct asus_wmi *asus)
>
> asus->screenpad_backlight_device = bd;
> asus->driver->screenpad_brightness = brightness;
> - bd->props.brightness = brightness - ASUS_SCREENPAD_BRIGHT_MIN;
> + bd->props.brightness = brightness;
> bd->props.power = power;
> backlight_update_status(bd);
>
>
--
i.
prev parent reply other threads:[~2026-02-23 14:42 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-12 22:02 [PATCH 0/2] platform/x86: asus-wmi: fix screenpad brightness/power management Denis Benato
2026-02-12 22:02 ` [PATCH 1/2] platform/x86: asus-wmi: adjust screenpad power/brightness handling Denis Benato
2026-02-23 14:38 ` Ilpo Järvinen
2026-02-23 18:15 ` Denis Benato
2026-02-24 4:15 ` luke
2026-02-24 20:42 ` Denis Benato
2026-02-12 22:02 ` [PATCH 2/2] platform/x86: asus-wmi: fix screenpad brightness scaling Denis Benato
2026-02-23 14:42 ` Ilpo Järvinen [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=fc9bf191-5795-e29d-7e64-b2bb97d8639b@linux.intel.com \
--to=ilpo.jarvinen@linux.intel.com \
--cc=benato.denis96@gmail.com \
--cc=denis.benato@linux.dev \
--cc=dragonn@op.pl \
--cc=hansg@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luke@ljones.dev \
--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