]> Git Repo - linux.git/commitdiff
HID: multitouch: handle external buttons for Precision Touchpads
authorBenjamin Tissoires <[email protected]>
Fri, 25 Nov 2016 10:08:10 +0000 (11:08 +0100)
committerJiri Kosina <[email protected]>
Mon, 28 Nov 2016 13:37:00 +0000 (14:37 +0100)
According to https://msdn.microsoft.com/en-us/library/windows/hardware/mt604195(v=vs.85).aspx
external buttons have some weird usage mapping:
- Button 2 Indicates Button State for external button for primary
  (default left) clicking.
- Button 3 Indicates Button State for external button for secondary
  (default right) clicking.

So in the current state, the buttons are mapped to right and middle.
Move the usage by one to correctly map the external buttons.

Tested-by: Chris Chiu <[email protected]>
Signed-off-by: Benjamin Tissoires <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
drivers/hid/hid-multitouch.c

index fb6f1f4472795700c1f12889c405b9350b4ebcb0..a65a4c5894a503c32346b74fae083f29eb255c9c 100644 (file)
@@ -567,6 +567,14 @@ static int mt_touch_input_mapping(struct hid_device *hdev, struct hid_input *hi,
 
        case HID_UP_BUTTON:
                code = BTN_MOUSE + ((usage->hid - 1) & HID_USAGE);
+               /*
+                * MS PTP spec says that external buttons left and right have
+                * usages 2 and 3.
+                */
+               if (cls->name == MT_CLS_WIN_8 &&
+                   field->application == HID_DG_TOUCHPAD &&
+                   (usage->hid & HID_USAGE) > 1)
+                       code--;
                hid_map_usage(hi, usage, bit, max, EV_KEY, code);
                input_set_capability(hi->input, EV_KEY, code);
                return 1;
This page took 0.06099 seconds and 4 git commands to generate.