Input: elantech - force relative mode on a certain module
authorKT Liao <kt.liao@emc.com.tw>
Mon, 12 Dec 2016 19:03:42 +0000 (11:03 -0800)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Fri, 12 May 2017 01:00:32 +0000 (18:00 -0700)
One of Elan modules with sample version is 0x74 and hw_version is 0x03 has
a bug in absolute mode implementation, so let it run in default PS/2
relative mode.

Signed-off-by: KT Liao <kt.liao@emc.com.tw>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/mouse/elantech.c

index efc8ec3423514ad33dd2ebaf0c861d41bb960140..3dbab0727376c2ff79956a69fbde2a3da6ee5423 100644 (file)
@@ -1687,6 +1687,17 @@ int elantech_init(struct psmouse *psmouse)
                             etd->samples[0], etd->samples[1], etd->samples[2]);
        }
 
+       if (etd->samples[1] == 0x74 && etd->hw_version == 0x03) {
+               /*
+                * This module has a bug which makes absolute mode
+                * unusable, so let's abort so we'll be using standard
+                * PS/2 protocol.
+                */
+               psmouse_info(psmouse,
+                            "absolute mode broken, forcing standard PS/2 protocol\n");
+               goto init_fail;
+       }
+
        if (elantech_set_absolute_mode(psmouse)) {
                psmouse_err(psmouse,
                            "failed to put touchpad into absolute mode.\n");