* [PATCH v2 0/1] gpiolib: acpi: Add quirk for Dell Precision 7780 @ 2025-12-06 18:04 Askar Safin 2025-12-06 18:04 ` [PATCH v2 1/1] " Askar Safin 2025-12-08 4:46 ` [PATCH v2 0/1] " Bartosz Golaszewski 0 siblings, 2 replies; 6+ messages in thread From: Askar Safin @ 2025-12-06 18:04 UTC (permalink / raw) To: Mika Westerberg, Andy Shevchenko, Linus Walleij, Bartosz Golaszewski, linux-gpio, linux-acpi, linux-kernel Cc: regressions, Dell.Client.Kernel, Mario Limonciello, patches v1: https://lore.kernel.org/linux-patches/20251205230724.2374682-1-safinaskar@gmail.com/ v1 -> v2 changes: changed tags Askar Safin (1): gpiolib: acpi: Add quirk for Dell Precision 7780 drivers/gpio/gpiolib-acpi-quirks.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) base-commit: 7d0a66e4bb9081d75c82ec4957c50034cb0ea449 (v6.18) -- 2.47.3 ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v2 1/1] gpiolib: acpi: Add quirk for Dell Precision 7780 2025-12-06 18:04 [PATCH v2 0/1] gpiolib: acpi: Add quirk for Dell Precision 7780 Askar Safin @ 2025-12-06 18:04 ` Askar Safin 2025-12-06 21:52 ` Andy Shevchenko 2025-12-08 4:46 ` [PATCH v2 0/1] " Bartosz Golaszewski 1 sibling, 1 reply; 6+ messages in thread From: Askar Safin @ 2025-12-06 18:04 UTC (permalink / raw) To: Mika Westerberg, Andy Shevchenko, Linus Walleij, Bartosz Golaszewski, linux-gpio, linux-acpi, linux-kernel Cc: regressions, Dell.Client.Kernel, Mario Limonciello, patches, stable Dell Precision 7780 often wakes up on its own from suspend. Sometimes wake up happens immediately (i. e. within 7 seconds), sometimes it happens after, say, 30 minutes. Fixes: 1796f808e4bb ("HID: i2c-hid: acpi: Stop setting wakeup_capable") Link: https://lore.kernel.org/linux-i2c/197ae95ffd8.dc819e60457077.7692120488609091556@zohomail.com/ Cc: <stable@vger.kernel.org> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Askar Safin <safinaskar@gmail.com> --- drivers/gpio/gpiolib-acpi-quirks.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/drivers/gpio/gpiolib-acpi-quirks.c b/drivers/gpio/gpiolib-acpi-quirks.c index 7b95d1b03361..a0116f004975 100644 --- a/drivers/gpio/gpiolib-acpi-quirks.c +++ b/drivers/gpio/gpiolib-acpi-quirks.c @@ -370,6 +370,28 @@ static const struct dmi_system_id gpiolib_acpi_quirks[] __initconst = { .ignore_wake = "ASCP1A00:00@8", }, }, + { + /* + * Spurious wakeups, likely from touchpad controller + * Dell Precision 7780 + * Found in BIOS 1.24.1 + * + * Found in touchpad firmware, installed by Dell Touchpad Firmware Update Utility version 1160.4196.9, A01 + * ( Dell-Touchpad-Firmware-Update-Utility_VYGNN_WIN64_1160.4196.9_A00.EXE ), + * released on 11 Jul 2024 + * + * https://lore.kernel.org/linux-i2c/197ae95ffd8.dc819e60457077.7692120488609091556@zohomail.com/ + */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_FAMILY, "Precision"), + DMI_MATCH(DMI_PRODUCT_NAME, "Precision 7780"), + DMI_MATCH(DMI_BOARD_NAME, "0C6JVW"), + }, + .driver_data = &(struct acpi_gpiolib_dmi_quirk) { + .ignore_wake = "VEN_0488:00@355", + }, + }, {} /* Terminating entry */ }; -- 2.47.3 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v2 1/1] gpiolib: acpi: Add quirk for Dell Precision 7780 2025-12-06 18:04 ` [PATCH v2 1/1] " Askar Safin @ 2025-12-06 21:52 ` Andy Shevchenko 2025-12-07 7:12 ` Bartosz Golaszewski 0 siblings, 1 reply; 6+ messages in thread From: Andy Shevchenko @ 2025-12-06 21:52 UTC (permalink / raw) To: Askar Safin Cc: Mika Westerberg, Linus Walleij, Bartosz Golaszewski, linux-gpio, linux-acpi, linux-kernel, regressions, Dell.Client.Kernel, Mario Limonciello, patches, stable On Sat, Dec 06, 2025 at 06:04:13PM +0000, Askar Safin wrote: > Dell Precision 7780 often wakes up on its own from suspend. Sometimes > wake up happens immediately (i. e. within 7 seconds), sometimes it happens > after, say, 30 minutes. Bart, up to you, if you want to take this. But I can do with a usual route via my tree. -- With Best Regards, Andy Shevchenko ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2 1/1] gpiolib: acpi: Add quirk for Dell Precision 7780 2025-12-06 21:52 ` Andy Shevchenko @ 2025-12-07 7:12 ` Bartosz Golaszewski 2025-12-07 22:38 ` Andy Shevchenko 0 siblings, 1 reply; 6+ messages in thread From: Bartosz Golaszewski @ 2025-12-07 7:12 UTC (permalink / raw) To: Andy Shevchenko Cc: Askar Safin, Mika Westerberg, Linus Walleij, linux-gpio, linux-acpi, linux-kernel, regressions, Dell.Client.Kernel, Mario Limonciello, patches, stable On Sat, Dec 6, 2025 at 10:52 PM Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote: > > On Sat, Dec 06, 2025 at 06:04:13PM +0000, Askar Safin wrote: > > Dell Precision 7780 often wakes up on its own from suspend. Sometimes > > wake up happens immediately (i. e. within 7 seconds), sometimes it happens > > after, say, 30 minutes. > > Bart, up to you, if you want to take this. But I can do with a usual route via > my tree. > I already have a bunch of fixes queued for next week so I guess it'll be less hassle and the fastest option if I take it. Bartosz ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2 1/1] gpiolib: acpi: Add quirk for Dell Precision 7780 2025-12-07 7:12 ` Bartosz Golaszewski @ 2025-12-07 22:38 ` Andy Shevchenko 0 siblings, 0 replies; 6+ messages in thread From: Andy Shevchenko @ 2025-12-07 22:38 UTC (permalink / raw) To: Bartosz Golaszewski Cc: Askar Safin, Mika Westerberg, Linus Walleij, linux-gpio, linux-acpi, linux-kernel, regressions, Dell.Client.Kernel, Mario Limonciello, patches, stable On Sun, Dec 07, 2025 at 08:12:13AM +0100, Bartosz Golaszewski wrote: > On Sat, Dec 6, 2025 at 10:52 PM Andy Shevchenko > <andriy.shevchenko@linux.intel.com> wrote: > > > > On Sat, Dec 06, 2025 at 06:04:13PM +0000, Askar Safin wrote: > > > Dell Precision 7780 often wakes up on its own from suspend. Sometimes > > > wake up happens immediately (i. e. within 7 seconds), sometimes it happens > > > after, say, 30 minutes. > > > > Bart, up to you, if you want to take this. But I can do with a usual route via > > my tree. > > I already have a bunch of fixes queued for next week so I guess it'll > be less hassle and the fastest option if I take it. Cool, thanks! -- With Best Regards, Andy Shevchenko ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2 0/1] gpiolib: acpi: Add quirk for Dell Precision 7780 2025-12-06 18:04 [PATCH v2 0/1] gpiolib: acpi: Add quirk for Dell Precision 7780 Askar Safin 2025-12-06 18:04 ` [PATCH v2 1/1] " Askar Safin @ 2025-12-08 4:46 ` Bartosz Golaszewski 1 sibling, 0 replies; 6+ messages in thread From: Bartosz Golaszewski @ 2025-12-08 4:46 UTC (permalink / raw) To: Mika Westerberg, Andy Shevchenko, Linus Walleij, Bartosz Golaszewski, linux-gpio, linux-acpi, linux-kernel, Askar Safin Cc: Bartosz Golaszewski, regressions, Dell.Client.Kernel, Mario Limonciello, patches On Sat, 06 Dec 2025 18:04:12 +0000, Askar Safin wrote: > v1: https://lore.kernel.org/linux-patches/20251205230724.2374682-1-safinaskar@gmail.com/ > > v1 -> v2 changes: changed tags > > Askar Safin (1): > gpiolib: acpi: Add quirk for Dell Precision 7780 > > [...] Applied, thanks! [1/1] gpiolib: acpi: Add quirk for Dell Precision 7780 https://git.kernel.org/brgl/linux/c/2d967310c49ed93ac11cef408a55ddf15c3dd52e Best regards, -- Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com> ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-12-08 4:46 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-12-06 18:04 [PATCH v2 0/1] gpiolib: acpi: Add quirk for Dell Precision 7780 Askar Safin 2025-12-06 18:04 ` [PATCH v2 1/1] " Askar Safin 2025-12-06 21:52 ` Andy Shevchenko 2025-12-07 7:12 ` Bartosz Golaszewski 2025-12-07 22:38 ` Andy Shevchenko 2025-12-08 4:46 ` [PATCH v2 0/1] " Bartosz Golaszewski
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox