2 * HID driver for some a4tech "special" devices
4 * Copyright (c) 1999 Andreas Gal
5 * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
6 * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
7 * Copyright (c) 2006-2007 Jiri Kosina
8 * Copyright (c) 2008 Jiri Slaby
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the Free
14 * Software Foundation; either version 2 of the License, or (at your option)
18 #include <linux/device.h>
19 #include <linux/input.h>
20 #include <linux/hid.h>
21 #include <linux/module.h>
22 #include <linux/slab.h>
26 #define A4_2WHEEL_MOUSE_HACK_7 0x01
27 #define A4_2WHEEL_MOUSE_HACK_B8 0x02
29 #define A4_WHEEL_ORIENTATION (HID_UP_GENDESK | 0x000000b8)
33 unsigned int hw_wheel
;
37 static int a4_input_mapping(struct hid_device
*hdev
, struct hid_input
*hi
,
38 struct hid_field
*field
, struct hid_usage
*usage
,
39 unsigned long **bit
, int *max
)
41 struct a4tech_sc
*a4
= hid_get_drvdata(hdev
);
43 if (a4
->quirks
& A4_2WHEEL_MOUSE_HACK_B8
&&
44 usage
->hid
== A4_WHEEL_ORIENTATION
) {
46 * We do not want to have this usage mapped to anything as it's
47 * nonstandard and doesn't really behave like an HID report.
48 * It's only selecting the orientation (vertical/horizontal) of
49 * the previous mouse wheel report. The input_events will be
50 * generated once both reports are recorded in a4_event().
59 static int a4_input_mapped(struct hid_device
*hdev
, struct hid_input
*hi
,
60 struct hid_field
*field
, struct hid_usage
*usage
,
61 unsigned long **bit
, int *max
)
63 struct a4tech_sc
*a4
= hid_get_drvdata(hdev
);
65 if (usage
->type
== EV_REL
&& usage
->code
== REL_WHEEL
)
66 set_bit(REL_HWHEEL
, *bit
);
68 if ((a4
->quirks
& A4_2WHEEL_MOUSE_HACK_7
) && usage
->hid
== 0x00090007)
74 static int a4_event(struct hid_device
*hdev
, struct hid_field
*field
,
75 struct hid_usage
*usage
, __s32 value
)
77 struct a4tech_sc
*a4
= hid_get_drvdata(hdev
);
78 struct input_dev
*input
;
80 if (!(hdev
->claimed
& HID_CLAIMED_INPUT
) || !field
->hidinput
)
83 input
= field
->hidinput
->input
;
85 if (a4
->quirks
& A4_2WHEEL_MOUSE_HACK_B8
) {
86 if (usage
->type
== EV_REL
&& usage
->code
== REL_WHEEL
) {
87 a4
->delayed_value
= value
;
91 if (usage
->hid
== A4_WHEEL_ORIENTATION
) {
92 input_event(input
, EV_REL
, value
? REL_HWHEEL
:
93 REL_WHEEL
, a4
->delayed_value
);
98 if ((a4
->quirks
& A4_2WHEEL_MOUSE_HACK_7
) && usage
->hid
== 0x00090007) {
99 a4
->hw_wheel
= !!value
;
103 if (usage
->code
== REL_WHEEL
&& a4
->hw_wheel
) {
104 input_event(input
, usage
->type
, REL_HWHEEL
, value
);
111 static int a4_probe(struct hid_device
*hdev
, const struct hid_device_id
*id
)
113 struct a4tech_sc
*a4
;
116 a4
= devm_kzalloc(&hdev
->dev
, sizeof(*a4
), GFP_KERNEL
);
118 hid_err(hdev
, "can't alloc device descriptor\n");
122 a4
->quirks
= id
->driver_data
;
124 hid_set_drvdata(hdev
, a4
);
126 ret
= hid_parse(hdev
);
128 hid_err(hdev
, "parse failed\n");
132 ret
= hid_hw_start(hdev
, HID_CONNECT_DEFAULT
);
134 hid_err(hdev
, "hw start failed\n");
141 static const struct hid_device_id a4_devices
[] = {
142 { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH
, USB_DEVICE_ID_A4TECH_WCP32PU
),
143 .driver_data
= A4_2WHEEL_MOUSE_HACK_7
},
144 { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH
, USB_DEVICE_ID_A4TECH_X5_005D
),
145 .driver_data
= A4_2WHEEL_MOUSE_HACK_B8
},
146 { HID_USB_DEVICE(USB_VENDOR_ID_A4TECH
, USB_DEVICE_ID_A4TECH_RP_649
),
147 .driver_data
= A4_2WHEEL_MOUSE_HACK_B8
},
150 MODULE_DEVICE_TABLE(hid
, a4_devices
);
152 static struct hid_driver a4_driver
= {
154 .id_table
= a4_devices
,
155 .input_mapping
= a4_input_mapping
,
156 .input_mapped
= a4_input_mapped
,
160 module_hid_driver(a4_driver
);
162 MODULE_LICENSE("GPL");