diff options
author | Laura Abbott <labbott@redhat.com> | 2018-02-05 11:20:04 -0800 |
---|---|---|
committer | Laura Abbott <labbott@redhat.com> | 2018-02-05 11:35:34 -0800 |
commit | c41960f76806a516b0c4fd1953779fcd20bc7633 (patch) | |
tree | b71e9707b6ad3b47e8f80bddf5874777d6582b10 /0003-HID-multitouch-Combine-all-left-button-events-in-a-f.patch | |
parent | 622598fecff89da5536a5182e8f9dd5527b8471e (diff) | |
download | kernel-c41960f76806a516b0c4fd1953779fcd20bc7633.tar.gz kernel-c41960f76806a516b0c4fd1953779fcd20bc7633.tar.xz kernel-c41960f76806a516b0c4fd1953779fcd20bc7633.zip |
Linux v4.15
Diffstat (limited to '0003-HID-multitouch-Combine-all-left-button-events-in-a-f.patch')
-rw-r--r-- | 0003-HID-multitouch-Combine-all-left-button-events-in-a-f.patch | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/0003-HID-multitouch-Combine-all-left-button-events-in-a-f.patch b/0003-HID-multitouch-Combine-all-left-button-events-in-a-f.patch new file mode 100644 index 000000000..7fda714cb --- /dev/null +++ b/0003-HID-multitouch-Combine-all-left-button-events-in-a-f.patch @@ -0,0 +1,78 @@ +From 1719566899e5a69b4ba767beb07dab7ceb9ae5a8 Mon Sep 17 00:00:00 2001 +From: Hans de Goede <hdegoede@redhat.com> +Date: Wed, 22 Nov 2017 12:57:10 +0100 +Subject: [PATCH v2 3/3] HID: multitouch: Combine all left-button events in a + frame + +According to the Win8 Precision Touchpad spec, inside the HID_UP_BUTTON +usage-page usage 1 is for a clickpad getting clicked, 2 for an external +left button and 3 for an external right button. Since Linux uses +BTN_LEFT for a clickpad being clicked we end up mapping both usage 1 +and 2 to BTN_LEFT and if a single report contains both then we ended +up always reporting the value of both in a single SYN, e.g. : +BTN_LEFT 1, BTN_LEFT 0, SYN. This happens for example with Hantick +HTT5288 i2c mt touchpads. + +This commit fixes this by not immediately reporting left button when we +parse the report, but instead storing or-ing together the values and +reporting the result from mt_sync_frame() when we've a complete frame. + +Signed-off-by: Hans de Goede <hdegoede@redhat.com> +Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> +Signed-off-by: Jiri Kosina <jkosina@suse.cz> +--- + drivers/hid/hid-multitouch.c | 20 ++++++++++++++++++++ + 1 file changed, 20 insertions(+) + +diff --git a/drivers/hid/hid-multitouch.c b/drivers/hid/hid-multitouch.c +index 760c4a042e6a..76088f2cf598 100644 +--- a/drivers/hid/hid-multitouch.c ++++ b/drivers/hid/hid-multitouch.c +@@ -122,6 +122,7 @@ struct mt_device { + int scantime_index; /* scantime field index in the report */ + int scantime_val_index; /* scantime value index in the field */ + int prev_scantime; /* scantime reported in the previous packet */ ++ int left_button_state; /* left button state */ + unsigned last_slot_field; /* the last field of a slot */ + unsigned mt_report_id; /* the report ID of the multitouch device */ + unsigned long initial_quirks; /* initial quirks state */ +@@ -743,10 +744,16 @@ static void mt_complete_slot(struct mt_device *td, struct input_dev *input) + */ + static void mt_sync_frame(struct mt_device *td, struct input_dev *input) + { ++ __s32 cls = td->mtclass.name; ++ ++ if (cls == MT_CLS_WIN_8 || cls == MT_CLS_WIN_8_DUAL) ++ input_event(input, EV_KEY, BTN_LEFT, td->left_button_state); ++ + input_mt_sync_frame(input); + input_event(input, EV_MSC, MSC_TIMESTAMP, td->timestamp); + input_sync(input); + td->num_received = 0; ++ td->left_button_state = 0; + if (test_bit(MT_IO_FLAGS_ACTIVE_SLOTS, &td->mt_io_flags)) + set_bit(MT_IO_FLAGS_PENDING_SLOTS, &td->mt_io_flags); + else +@@ -857,6 +864,19 @@ static void mt_process_mt_event(struct hid_device *hid, struct hid_field *field, + !first_packet) + return; + ++ /* ++ * For Win8 PTP touchpads we map both the clickpad click ++ * and any "external" left buttons to BTN_LEFT if a ++ * device claims to have both we need to report 1 for ++ * BTN_LEFT if either is pressed, so we or all values ++ * together and report the result in mt_sync_frame(). ++ */ ++ if ((cls == MT_CLS_WIN_8 || cls == MT_CLS_WIN_8_DUAL) && ++ usage->type == EV_KEY && usage->code == BTN_LEFT) { ++ td->left_button_state |= value; ++ return; ++ } ++ + if (usage->type) + input_event(input, usage->type, usage->code, + value); +-- +2.14.3 + |