Skip to content

Commit 782eea0

Browse files
tuxedo-wseandy-shev
authored andcommitted
gpiolib: acpi: Add a ignore wakeup quirk for Clevo NL5xNU
commit 1796f80 ("HID: i2c-hid: acpi: Stop setting wakeup_capable") changed the policy such that I2C touchpads may be able to wake up the system by default if the system is configured as such. However on Clevo NL5xNU there is a mistake in the ACPI tables that the TP_ATTN# signal connected to GPIO 9 is configured as ActiveLow and level triggered but connected to a pull up. As soon as the system suspends the touchpad loses power and then the system wakes up. To avoid this problem, introduce a quirk for this model that will prevent the wakeup capability for being set for GPIO 9. This patch is analoge to a very similar patch for NL5xRU, just the DMI string changed. Signed-off-by: Werner Sembach <wse@tuxedocomputers.com> Cc: stable@vger.kernel.org Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
1 parent af3b462 commit 782eea0

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

drivers/gpio/gpiolib-acpi.c

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1613,6 +1613,19 @@ static const struct dmi_system_id gpiolib_acpi_quirks[] __initconst = {
16131613
.ignore_interrupt = "AMDI0030:00@18",
16141614
},
16151615
},
1616+
{
1617+
/*
1618+
* Spurious wakeups from TP_ATTN# pin
1619+
* Found in BIOS 1.7.8
1620+
* https://gitlab.freedesktop.org/drm/amd/-/issues/1722#note_1720627
1621+
*/
1622+
.matches = {
1623+
DMI_MATCH(DMI_BOARD_NAME, "NL5xNU"),
1624+
},
1625+
.driver_data = &(struct acpi_gpiolib_dmi_quirk) {
1626+
.ignore_wake = "ELAN0415:00@9",
1627+
},
1628+
},
16161629
{
16171630
/*
16181631
* Spurious wakeups from TP_ATTN# pin

0 commit comments

Comments
 (0)