linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1] gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-05
@ 2025-08-27 17:58 Antheas Kapenekakis
  2025-08-28  5:10 ` Mika Westerberg
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Antheas Kapenekakis @ 2025-08-27 17:58 UTC (permalink / raw)
  To: linux-gpio
  Cc: linux-acpi, linux-kernel, Mika Westerberg, Andy Shevchenko,
	Linus Walleij, Bartosz Golaszewski, Mario Limonciello,
	Antheas Kapenekakis

Same issue as G1619-04 in commit 805c74eac8cb ("gpiolib: acpi: Ignore
touchpad wakeup on GPD G1619-04"), Strix Point lineup uses 05.

Signed-off-by: Antheas Kapenekakis <lkml@antheas.dev>
---
 drivers/gpio/gpiolib-acpi-quirks.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/drivers/gpio/gpiolib-acpi-quirks.c b/drivers/gpio/gpiolib-acpi-quirks.c
index c13545dce349..bb63138c4b5b 100644
--- a/drivers/gpio/gpiolib-acpi-quirks.c
+++ b/drivers/gpio/gpiolib-acpi-quirks.c
@@ -317,6 +317,18 @@ static const struct dmi_system_id gpiolib_acpi_quirks[] __initconst = {
 			.ignore_wake = "PNP0C50:00@8",
 		},
 	},
+	{
+		/*
+		 * Same as G1619-04. New model.
+		 */
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "GPD"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "G1619-05"),
+		},
+		.driver_data = &(struct acpi_gpiolib_dmi_quirk) {
+			.ignore_wake = "PNP0C50:00@8",
+		},
+	},
 	{
 		/*
 		 * Spurious wakeups from GPIO 11

base-commit: 1b237f190eb3d36f52dffe07a40b5eb210280e00
-- 
2.51.0



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH v1] gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-05
  2025-08-27 17:58 [PATCH v1] gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-05 Antheas Kapenekakis
@ 2025-08-28  5:10 ` Mika Westerberg
  2025-08-28 15:20   ` Limonciello, Mario
  2025-08-30 19:51 ` Bartosz Golaszewski
  2025-09-01  9:04 ` Andy Shevchenko
  2 siblings, 1 reply; 7+ messages in thread
From: Mika Westerberg @ 2025-08-28  5:10 UTC (permalink / raw)
  To: Antheas Kapenekakis
  Cc: linux-gpio, linux-acpi, linux-kernel, Mika Westerberg,
	Andy Shevchenko, Linus Walleij, Bartosz Golaszewski,
	Mario Limonciello

On Wed, Aug 27, 2025 at 07:58:42PM +0200, Antheas Kapenekakis wrote:
> Same issue as G1619-04 in commit 805c74eac8cb ("gpiolib: acpi: Ignore
> touchpad wakeup on GPD G1619-04"), Strix Point lineup uses 05.
> 
> Signed-off-by: Antheas Kapenekakis <lkml@antheas.dev>

Reviewed-by: Mika Westerberg <westeri@kernel.org>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v1] gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-05
  2025-08-28  5:10 ` Mika Westerberg
@ 2025-08-28 15:20   ` Limonciello, Mario
  2025-08-28 15:55     ` Antheas Kapenekakis
  0 siblings, 1 reply; 7+ messages in thread
From: Limonciello, Mario @ 2025-08-28 15:20 UTC (permalink / raw)
  To: Mika Westerberg, Antheas Kapenekakis
  Cc: linux-gpio@vger.kernel.org, linux-acpi@vger.kernel.org,
	linux-kernel@vger.kernel.org, Mika Westerberg, Andy Shevchenko,
	Linus Walleij, Bartosz Golaszewski

On 8/28/25 12:10 AM, Mika Westerberg wrote:
> On Wed, Aug 27, 2025 at 07:58:42PM +0200, Antheas Kapenekakis wrote:
>> Same issue as G1619-04 in commit 805c74eac8cb ("gpiolib: acpi: Ignore
>> touchpad wakeup on GPD G1619-04"), Strix Point lineup uses 05.
>>
>> Signed-off-by: Antheas Kapenekakis <lkml@antheas.dev>
> 
> Reviewed-by: Mika Westerberg <westeri@kernel.org>

Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>

However as this is the second year in a row with this exact same issue I 
would also ask if you can please contact the manufacturer to fix it in 
the BIOS for future models so we can hopefully stop accumulating quirks.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v1] gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-05
  2025-08-28 15:20   ` Limonciello, Mario
@ 2025-08-28 15:55     ` Antheas Kapenekakis
  0 siblings, 0 replies; 7+ messages in thread
From: Antheas Kapenekakis @ 2025-08-28 15:55 UTC (permalink / raw)
  To: Limonciello, Mario
  Cc: Mika Westerberg, linux-gpio@vger.kernel.org,
	linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org,
	Mika Westerberg, Andy Shevchenko, Linus Walleij,
	Bartosz Golaszewski

On Thu, 28 Aug 2025 at 17:21, Limonciello, Mario
<Mario.Limonciello@amd.com> wrote:
>
> On 8/28/25 12:10 AM, Mika Westerberg wrote:
> > On Wed, Aug 27, 2025 at 07:58:42PM +0200, Antheas Kapenekakis wrote:
> >> Same issue as G1619-04 in commit 805c74eac8cb ("gpiolib: acpi: Ignore
> >> touchpad wakeup on GPD G1619-04"), Strix Point lineup uses 05.
> >>
> >> Signed-off-by: Antheas Kapenekakis <lkml@antheas.dev>
> >
> > Reviewed-by: Mika Westerberg <westeri@kernel.org>
>
> Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>
>
> However as this is the second year in a row with this exact same issue I
> would also ask if you can please contact the manufacturer to fix it in
> the BIOS for future models so we can hopefully stop accumulating quirks.

Thanks for reminding me. I emailed OneXPlayer to remind them about the
thermal zone issue and will try to bring it up to GPD next time I am
in contact with them. However, it has been close to a year since I had
contact with them. But they say we support the GPD Win 5 (we do not
and it is not released) so it will happen eventually.

I have had this quirk now for around half a year and I am slowly going
through my backlog.

Antheas


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v1] gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-05
  2025-08-27 17:58 [PATCH v1] gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-05 Antheas Kapenekakis
  2025-08-28  5:10 ` Mika Westerberg
@ 2025-08-30 19:51 ` Bartosz Golaszewski
  2025-09-01  6:07   ` Andy Shevchenko
  2025-09-01  9:04 ` Andy Shevchenko
  2 siblings, 1 reply; 7+ messages in thread
From: Bartosz Golaszewski @ 2025-08-30 19:51 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: linux-gpio, linux-acpi, linux-kernel, Mika Westerberg,
	Linus Walleij, Mario Limonciello, Antheas Kapenekakis

On Wed, Aug 27, 2025 at 8:00 PM Antheas Kapenekakis <lkml@antheas.dev> wrote:
>
> Same issue as G1619-04 in commit 805c74eac8cb ("gpiolib: acpi: Ignore
> touchpad wakeup on GPD G1619-04"), Strix Point lineup uses 05.
>
> Signed-off-by: Antheas Kapenekakis <lkml@antheas.dev>
> ---

Andy, should I take it directly through the GPIO tree?

Bart

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v1] gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-05
  2025-08-30 19:51 ` Bartosz Golaszewski
@ 2025-09-01  6:07   ` Andy Shevchenko
  0 siblings, 0 replies; 7+ messages in thread
From: Andy Shevchenko @ 2025-09-01  6:07 UTC (permalink / raw)
  To: Bartosz Golaszewski
  Cc: linux-gpio, linux-acpi, linux-kernel, Mika Westerberg,
	Linus Walleij, Mario Limonciello, Antheas Kapenekakis

On Sat, Aug 30, 2025 at 09:51:19PM +0200, Bartosz Golaszewski wrote:
> On Wed, Aug 27, 2025 at 8:00 PM Antheas Kapenekakis <lkml@antheas.dev> wrote:
> >
> > Same issue as G1619-04 in commit 805c74eac8cb ("gpiolib: acpi: Ignore
> > touchpad wakeup on GPD G1619-04"), Strix Point lineup uses 05.
> >
> > Signed-off-by: Antheas Kapenekakis <lkml@antheas.dev>
> > ---
> 
> Andy, should I take it directly through the GPIO tree?

Nope, I have already something, I will take it, thanks!

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v1] gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-05
  2025-08-27 17:58 [PATCH v1] gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-05 Antheas Kapenekakis
  2025-08-28  5:10 ` Mika Westerberg
  2025-08-30 19:51 ` Bartosz Golaszewski
@ 2025-09-01  9:04 ` Andy Shevchenko
  2 siblings, 0 replies; 7+ messages in thread
From: Andy Shevchenko @ 2025-09-01  9:04 UTC (permalink / raw)
  To: Antheas Kapenekakis
  Cc: linux-gpio, linux-acpi, linux-kernel, Mika Westerberg,
	Linus Walleij, Bartosz Golaszewski, Mario Limonciello

On Wed, Aug 27, 2025 at 07:58:42PM +0200, Antheas Kapenekakis wrote:
> Same issue as G1619-04 in commit 805c74eac8cb ("gpiolib: acpi: Ignore
> touchpad wakeup on GPD G1619-04"), Strix Point lineup uses 05.

Pushed to my review and testing queue, thanks!

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2025-09-01  9:04 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-27 17:58 [PATCH v1] gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-05 Antheas Kapenekakis
2025-08-28  5:10 ` Mika Westerberg
2025-08-28 15:20   ` Limonciello, Mario
2025-08-28 15:55     ` Antheas Kapenekakis
2025-08-30 19:51 ` Bartosz Golaszewski
2025-09-01  6:07   ` Andy Shevchenko
2025-09-01  9:04 ` Andy Shevchenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).