blob: 5be513c363e3681b29c8f04acc55928e1466284d [file] [log] [blame]
Stephane Chatty0c3910c2010-04-10 16:43:08 +02001/*
2 * HID driver for eGalax dual-touch panels
3 *
4 * Copyright (c) 2010 Stephane Chatty <chatty@enac.fr>
5 *
6 */
7
8/*
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the Free
11 * Software Foundation; either version 2 of the License, or (at your option)
12 * any later version.
13 */
14
15#include <linux/device.h>
16#include <linux/hid.h>
17#include <linux/module.h>
18#include <linux/usb.h>
Jiri Kosinac872b0f2010-04-10 21:29:09 +020019#include <linux/slab.h>
Stephane Chatty0c3910c2010-04-10 16:43:08 +020020#include "usbhid/usbhid.h"
21
22MODULE_AUTHOR("Stephane Chatty <chatty@enac.fr>");
23MODULE_DESCRIPTION("eGalax dual-touch panel");
24MODULE_LICENSE("GPL");
25
26#include "hid-ids.h"
27
28struct egalax_data {
29 __u16 x, y, z;
30 __u8 id;
31 bool first; /* is this the first finger in the frame? */
32 bool valid; /* valid finger data, or just placeholder? */
33 bool activity; /* at least one active finger previously? */
Philipp Merkelf5166112010-10-01 15:38:59 +020034 __u16 lastx, lasty, lastz; /* latest valid (x, y, z) in the frame */
Stephane Chatty0c3910c2010-04-10 16:43:08 +020035};
36
Henrik Rydberg4a864182010-11-27 17:56:17 +010037static void set_abs(struct input_dev *input, unsigned int code,
38 struct hid_field *field, int snratio)
39{
40 int fmin = field->logical_minimum;
41 int fmax = field->logical_maximum;
42 int fuzz = snratio ? (fmax - fmin) / snratio : 0;
43 input_set_abs_params(input, code, fmin, fmax, fuzz, 0);
44}
45
Stephane Chatty0c3910c2010-04-10 16:43:08 +020046static int egalax_input_mapping(struct hid_device *hdev, struct hid_input *hi,
47 struct hid_field *field, struct hid_usage *usage,
48 unsigned long **bit, int *max)
49{
Henrik Rydberg4a864182010-11-27 17:56:17 +010050 struct input_dev *input = hi->input;
51
Stephane Chatty0c3910c2010-04-10 16:43:08 +020052 switch (usage->hid & HID_USAGE_PAGE) {
53
54 case HID_UP_GENDESK:
55 switch (usage->hid) {
56 case HID_GD_X:
57 hid_map_usage(hi, usage, bit, max,
58 EV_ABS, ABS_MT_POSITION_X);
Henrik Rydberg4a864182010-11-27 17:56:17 +010059 set_abs(input, ABS_MT_POSITION_X, field, 0);
Stephane Chatty0c3910c2010-04-10 16:43:08 +020060 /* touchscreen emulation */
Henrik Rydberg4a864182010-11-27 17:56:17 +010061 set_abs(input, ABS_X, field, 0);
Stephane Chatty0c3910c2010-04-10 16:43:08 +020062 return 1;
63 case HID_GD_Y:
64 hid_map_usage(hi, usage, bit, max,
65 EV_ABS, ABS_MT_POSITION_Y);
Henrik Rydberg4a864182010-11-27 17:56:17 +010066 set_abs(input, ABS_MT_POSITION_Y, field, 0);
Stephane Chatty0c3910c2010-04-10 16:43:08 +020067 /* touchscreen emulation */
Henrik Rydberg4a864182010-11-27 17:56:17 +010068 set_abs(input, ABS_Y, field, 0);
Stephane Chatty0c3910c2010-04-10 16:43:08 +020069 return 1;
70 }
71 return 0;
72
73 case HID_UP_DIGITIZER:
74 switch (usage->hid) {
75 case HID_DG_TIPSWITCH:
76 /* touchscreen emulation */
77 hid_map_usage(hi, usage, bit, max, EV_KEY, BTN_TOUCH);
Henrik Rydberg4a864182010-11-27 17:56:17 +010078 input_set_capability(input, EV_KEY, BTN_TOUCH);
Stephane Chatty0c3910c2010-04-10 16:43:08 +020079 return 1;
80 case HID_DG_INRANGE:
81 case HID_DG_CONFIDENCE:
82 case HID_DG_CONTACTCOUNT:
83 case HID_DG_CONTACTMAX:
84 return -1;
85 case HID_DG_CONTACTID:
86 hid_map_usage(hi, usage, bit, max,
87 EV_ABS, ABS_MT_TRACKING_ID);
Henrik Rydberg4a864182010-11-27 17:56:17 +010088 set_abs(input, ABS_MT_TRACKING_ID, field, 0);
Stephane Chatty0c3910c2010-04-10 16:43:08 +020089 return 1;
90 case HID_DG_TIPPRESSURE:
91 hid_map_usage(hi, usage, bit, max,
92 EV_ABS, ABS_MT_PRESSURE);
Henrik Rydberg4a864182010-11-27 17:56:17 +010093 set_abs(input, ABS_MT_PRESSURE, field, 0);
Philipp Merkelf5166112010-10-01 15:38:59 +020094 /* touchscreen emulation */
Henrik Rydberg4a864182010-11-27 17:56:17 +010095 set_abs(input, ABS_PRESSURE, field, 0);
Stephane Chatty0c3910c2010-04-10 16:43:08 +020096 return 1;
97 }
98 return 0;
99 }
100
101 /* ignore others (from other reports we won't get anyway) */
102 return -1;
103}
104
105static int egalax_input_mapped(struct hid_device *hdev, struct hid_input *hi,
106 struct hid_field *field, struct hid_usage *usage,
107 unsigned long **bit, int *max)
108{
Henrik Rydberg4a864182010-11-27 17:56:17 +0100109 /* tell hid-input to skip setup of these event types */
Stephane Chatty0c3910c2010-04-10 16:43:08 +0200110 if (usage->type == EV_KEY || usage->type == EV_ABS)
Henrik Rydberg4a864182010-11-27 17:56:17 +0100111 set_bit(usage->type, hi->input->evbit);
112 return -1;
Stephane Chatty0c3910c2010-04-10 16:43:08 +0200113}
114
115/*
116 * this function is called when a whole finger has been parsed,
117 * so that it can decide what to send to the input layer.
118 */
119static void egalax_filter_event(struct egalax_data *td, struct input_dev *input)
120{
121 td->first = !td->first; /* touchscreen emulation */
122
123 if (td->valid) {
124 /* emit multitouch events */
125 input_event(input, EV_ABS, ABS_MT_TRACKING_ID, td->id);
Philipp Merkelf5166112010-10-01 15:38:59 +0200126 input_event(input, EV_ABS, ABS_MT_POSITION_X, td->x >> 3);
127 input_event(input, EV_ABS, ABS_MT_POSITION_Y, td->y >> 3);
Stephane Chatty0c3910c2010-04-10 16:43:08 +0200128 input_event(input, EV_ABS, ABS_MT_PRESSURE, td->z);
129
130 input_mt_sync(input);
131
132 /*
133 * touchscreen emulation: store (x, y) as
134 * the last valid values in this frame
135 */
136 td->lastx = td->x;
137 td->lasty = td->y;
Philipp Merkelf5166112010-10-01 15:38:59 +0200138 td->lastz = td->z;
Stephane Chatty0c3910c2010-04-10 16:43:08 +0200139 }
140
141 /*
142 * touchscreen emulation: if this is the second finger and at least
143 * one in this frame is valid, the latest valid in the frame is
144 * the oldest on the panel, the one we want for single touch
145 */
146 if (!td->first && td->activity) {
Philipp Merkelf5166112010-10-01 15:38:59 +0200147 input_event(input, EV_ABS, ABS_X, td->lastx >> 3);
148 input_event(input, EV_ABS, ABS_Y, td->lasty >> 3);
149 input_event(input, EV_ABS, ABS_PRESSURE, td->lastz);
Stephane Chatty0c3910c2010-04-10 16:43:08 +0200150 }
151
152 if (!td->valid) {
153 /*
154 * touchscreen emulation: if the first finger is invalid
155 * and there previously was finger activity, this is a release
156 */
157 if (td->first && td->activity) {
158 input_event(input, EV_KEY, BTN_TOUCH, 0);
159 td->activity = false;
160 }
161 return;
162 }
163
164
165 /* touchscreen emulation: if no previous activity, emit touch event */
166 if (!td->activity) {
167 input_event(input, EV_KEY, BTN_TOUCH, 1);
168 td->activity = true;
169 }
170}
171
172
173static int egalax_event(struct hid_device *hid, struct hid_field *field,
174 struct hid_usage *usage, __s32 value)
175{
176 struct egalax_data *td = hid_get_drvdata(hid);
177
Chris Ball83e44912010-08-16 16:01:28 +0200178 /* Note, eGalax has two product lines: the first is resistive and
179 * uses a standard parallel multitouch protocol (product ID ==
180 * 48xx). The second is capacitive and uses an unusual "serial"
181 * protocol with a different message for each multitouch finger
182 * (product ID == 72xx). We do not yet generate a correct event
183 * sequence for the capacitive/serial protocol.
184 */
Stephane Chatty0c3910c2010-04-10 16:43:08 +0200185 if (hid->claimed & HID_CLAIMED_INPUT) {
186 struct input_dev *input = field->hidinput->input;
187
188 switch (usage->hid) {
189 case HID_DG_INRANGE:
190 case HID_DG_CONFIDENCE:
191 /* avoid interference from generic hidinput handling */
192 break;
193 case HID_DG_TIPSWITCH:
194 td->valid = value;
195 break;
196 case HID_DG_TIPPRESSURE:
197 td->z = value;
198 break;
199 case HID_DG_CONTACTID:
200 td->id = value;
201 break;
202 case HID_GD_X:
203 td->x = value;
204 break;
205 case HID_GD_Y:
206 td->y = value;
207 /* this is the last field in a finger */
208 egalax_filter_event(td, input);
209 break;
210 case HID_DG_CONTACTCOUNT:
211 /* touch emulation: this is the last field in a frame */
212 td->first = false;
213 break;
214
215 default:
216 /* fallback to the generic hidinput handling */
217 return 0;
218 }
219 }
220
221 /* we have handled the hidinput part, now remains hiddev */
222 if (hid->claimed & HID_CLAIMED_HIDDEV && hid->hiddev_hid_event)
223 hid->hiddev_hid_event(hid, field, usage, value);
224
225 return 1;
226}
227
228static int egalax_probe(struct hid_device *hdev, const struct hid_device_id *id)
229{
230 int ret;
231 struct egalax_data *td;
232 struct hid_report *report;
233
234 td = kmalloc(sizeof(struct egalax_data), GFP_KERNEL);
235 if (!td) {
236 dev_err(&hdev->dev, "cannot allocate eGalax data\n");
237 return -ENOMEM;
238 }
239 hid_set_drvdata(hdev, td);
240
241 ret = hid_parse(hdev);
242 if (ret)
243 goto end;
244
245 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
246 if (ret)
247 goto end;
248
249 report = hdev->report_enum[HID_FEATURE_REPORT].report_id_hash[5];
250 if (report) {
251 report->field[0]->value[0] = 2;
252 usbhid_submit_report(hdev, report, USB_DIR_OUT);
253 }
254
255end:
256 if (ret)
257 kfree(td);
258
259 return ret;
260}
261
262static void egalax_remove(struct hid_device *hdev)
263{
264 hid_hw_stop(hdev);
265 kfree(hid_get_drvdata(hdev));
266 hid_set_drvdata(hdev, NULL);
267}
268
269static const struct hid_device_id egalax_devices[] = {
270 { HID_USB_DEVICE(USB_VENDOR_ID_DWAV,
271 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH) },
Chris Ball83e44912010-08-16 16:01:28 +0200272 { HID_USB_DEVICE(USB_VENDOR_ID_DWAV,
273 USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH1) },
Stephane Chatty0c3910c2010-04-10 16:43:08 +0200274 { }
275};
276MODULE_DEVICE_TABLE(hid, egalax_devices);
277
278static const struct hid_usage_id egalax_grabbed_usages[] = {
279 { HID_ANY_ID, HID_ANY_ID, HID_ANY_ID },
280 { HID_ANY_ID - 1, HID_ANY_ID - 1, HID_ANY_ID - 1}
281};
282
283static struct hid_driver egalax_driver = {
284 .name = "egalax-touch",
285 .id_table = egalax_devices,
286 .probe = egalax_probe,
287 .remove = egalax_remove,
288 .input_mapping = egalax_input_mapping,
289 .input_mapped = egalax_input_mapped,
290 .usage_table = egalax_grabbed_usages,
291 .event = egalax_event,
292};
293
294static int __init egalax_init(void)
295{
296 return hid_register_driver(&egalax_driver);
297}
298
299static void __exit egalax_exit(void)
300{
301 hid_unregister_driver(&egalax_driver);
302}
303
304module_init(egalax_init);
305module_exit(egalax_exit);
306