Skip to content

Commit eb09074

Browse files
tuxedo-wsedtor
authored andcommitted
Input: i8042 - add quirk for TUXEDO Gemini 17 Gen1/Clevo PD70PN
The touchpad of this device is both connected via PS/2 and i2c. This causes strange behavior when both driver fight for control. The easy fix is to prevent the PS/2 driver from accessing the mouse port as the full feature set of the touchpad is only supported in the i2c interface anyway. The strange behavior in this case is, that when an external screen is connected and the notebook is closed, the pointer on the external screen is moving to the lower right corner. When the notebook is opened again, this movement stops, but the touchpad clicks are unresponsive afterwards until reboot. Signed-off-by: Werner Sembach <[email protected]> Cc: [email protected] Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Dmitry Torokhov <[email protected]>
1 parent 2479191 commit eb09074

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

drivers/input/serio/i8042-acpipnpio.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1281,6 +1281,13 @@ static const struct dmi_system_id i8042_dmi_quirk_table[] __initconst = {
12811281
.driver_data = (void *)(SERIO_QUIRK_NOMUX | SERIO_QUIRK_RESET_ALWAYS |
12821282
SERIO_QUIRK_NOLOOP | SERIO_QUIRK_NOPNP)
12831283
},
1284+
/* See comment on TUXEDO InfinityBook S17 Gen6 / Clevo NS70MU above */
1285+
{
1286+
.matches = {
1287+
DMI_MATCH(DMI_BOARD_NAME, "PD5x_7xPNP_PNR_PNN_PNT"),
1288+
},
1289+
.driver_data = (void *)(SERIO_QUIRK_NOAUX)
1290+
},
12841291
{
12851292
.matches = {
12861293
DMI_MATCH(DMI_BOARD_NAME, "X170SM"),

0 commit comments

Comments
 (0)