Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

HID: input: fix a4tech horizontal wheel custom usage

Some a4tech mice use the 'GenericDesktop.00b8' usage to inform whether
the previous wheel report was horizontal or vertical. Before
c01908a14bf73 ("HID: input: add mapping for "Toggle Display" key") this
usage was being mapped to 'Relative.Misc'. After the patch it's simply
ignored (usage->type == 0 & usage->code == 0). Which ultimately makes
hid-a4tech ignore the WHEEL/HWHEEL selection event, as it has no
usage->type.

We shouldn't rely on a mapping for that usage as it's nonstandard and
doesn't really map to an input event. So we bypass the mapping and make
sure the custom event handling properly handles both reports.

Fixes: c01908a14bf73 ("HID: input: add mapping for "Toggle Display" key")
Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

Nicolas Saenz Julienne and committed by
Jiri Kosina
1c703b53 49869d2e

+27 -3
+27 -3
drivers/hid/hid-a4tech.c
··· 23 23 #define A4_2WHEEL_MOUSE_HACK_7 0x01 24 24 #define A4_2WHEEL_MOUSE_HACK_B8 0x02 25 25 26 + #define A4_WHEEL_ORIENTATION (HID_UP_GENDESK | 0x000000b8) 27 + 26 28 struct a4tech_sc { 27 29 unsigned long quirks; 28 30 unsigned int hw_wheel; 29 31 __s32 delayed_value; 30 32 }; 33 + 34 + static int a4_input_mapping(struct hid_device *hdev, struct hid_input *hi, 35 + struct hid_field *field, struct hid_usage *usage, 36 + unsigned long **bit, int *max) 37 + { 38 + struct a4tech_sc *a4 = hid_get_drvdata(hdev); 39 + 40 + if (a4->quirks & A4_2WHEEL_MOUSE_HACK_B8 && 41 + usage->hid == A4_WHEEL_ORIENTATION) { 42 + /* 43 + * We do not want to have this usage mapped to anything as it's 44 + * nonstandard and doesn't really behave like an HID report. 45 + * It's only selecting the orientation (vertical/horizontal) of 46 + * the previous mouse wheel report. The input_events will be 47 + * generated once both reports are recorded in a4_event(). 48 + */ 49 + return -1; 50 + } 51 + 52 + return 0; 53 + 54 + } 31 55 32 56 static int a4_input_mapped(struct hid_device *hdev, struct hid_input *hi, 33 57 struct hid_field *field, struct hid_usage *usage, ··· 76 52 struct a4tech_sc *a4 = hid_get_drvdata(hdev); 77 53 struct input_dev *input; 78 54 79 - if (!(hdev->claimed & HID_CLAIMED_INPUT) || !field->hidinput || 80 - !usage->type) 55 + if (!(hdev->claimed & HID_CLAIMED_INPUT) || !field->hidinput) 81 56 return 0; 82 57 83 58 input = field->hidinput->input; ··· 87 64 return 1; 88 65 } 89 66 90 - if (usage->hid == 0x000100b8) { 67 + if (usage->hid == A4_WHEEL_ORIENTATION) { 91 68 input_event(input, EV_REL, value ? REL_HWHEEL : 92 69 REL_WHEEL, a4->delayed_value); 93 70 input_event(input, EV_REL, value ? REL_HWHEEL_HI_RES : ··· 154 131 static struct hid_driver a4_driver = { 155 132 .name = "a4tech", 156 133 .id_table = a4_devices, 134 + .input_mapping = a4_input_mapping, 157 135 .input_mapped = a4_input_mapped, 158 136 .event = a4_event, 159 137 .probe = a4_probe,