Input: elantech - discard the first 2 positions on some firmwares

According to the Dell/Ubuntu driver, what was previously observed as
"jumpy cursor" corresponds to the hardware sending incorrect data for
the first two reports of a one touch finger. So let's use the same
workaround as in the other driver. Also, detect another firmware
version with the same behaviour, as in the other driver.

Signed-off-by: Éric Piel <eric.piel@tremplin-utc.net>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
Éric Piel 2010-08-05 23:51:49 -07:00 committed by Dmitry Torokhov
parent 7be3c13425
commit 7f29f17b57
2 changed files with 14 additions and 14 deletions

View file

@ -185,7 +185,6 @@ static void elantech_report_absolute_v1(struct psmouse *psmouse)
struct elantech_data *etd = psmouse->private; struct elantech_data *etd = psmouse->private;
unsigned char *packet = psmouse->packet; unsigned char *packet = psmouse->packet;
int fingers; int fingers;
static int old_fingers;
if (etd->fw_version < 0x020000) { if (etd->fw_version < 0x020000) {
/* /*
@ -203,10 +202,13 @@ static void elantech_report_absolute_v1(struct psmouse *psmouse)
} }
if (etd->jumpy_cursor) { if (etd->jumpy_cursor) {
/* Discard packets that are likely to have bogus coordinates */ if (fingers != 1) {
if (fingers > old_fingers) { etd->single_finger_reports = 0;
} else if (etd->single_finger_reports < 2) {
/* Discard first 2 reports of one finger, bogus */
etd->single_finger_reports++;
elantech_debug("discarding packet\n"); elantech_debug("discarding packet\n");
goto discard_packet_v1; return;
} }
} }
@ -238,9 +240,6 @@ static void elantech_report_absolute_v1(struct psmouse *psmouse)
} }
input_sync(dev); input_sync(dev);
discard_packet_v1:
old_fingers = fingers;
} }
/* /*
@ -733,13 +732,13 @@ int elantech_init(struct psmouse *psmouse)
etd->capabilities = param[0]; etd->capabilities = param[0];
/* /*
* This firmware seems to suffer from misreporting coordinates when * This firmware suffers from misreporting coordinates when
* a touch action starts causing the mouse cursor or scrolled page * a touch action starts causing the mouse cursor or scrolled page
* to jump. Enable a workaround. * to jump. Enable a workaround.
*/ */
if (etd->fw_version == 0x020022) { if (etd->fw_version == 0x020022 || etd->fw_version == 0x020600) {
pr_info("firmware version 2.0.34 detected, enabling jumpy cursor workaround\n"); pr_info("firmware version 2.0.34/2.6.0 detected, enabling jumpy cursor workaround\n");
etd->jumpy_cursor = 1; etd->jumpy_cursor = true;
} }
if (elantech_set_absolute_mode(psmouse)) { if (elantech_set_absolute_mode(psmouse)) {

View file

@ -100,10 +100,11 @@ struct elantech_data {
unsigned char reg_26; unsigned char reg_26;
unsigned char debug; unsigned char debug;
unsigned char capabilities; unsigned char capabilities;
unsigned char paritycheck; bool paritycheck;
unsigned char jumpy_cursor; bool jumpy_cursor;
unsigned char hw_version; unsigned char hw_version;
unsigned int fw_version; unsigned int fw_version;
unsigned int single_finger_reports;
unsigned char parity[256]; unsigned char parity[256];
}; };