[PATCH] USB: input/touchkitusb: handle multiple packets
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / usb / input / touchkitusb.c
blob3b3c7b4120a26c51fb8e8af875f75aa02a201242
1 /******************************************************************************
2 * touchkitusb.c -- Driver for eGalax TouchKit USB Touchscreens
4 * Copyright (C) 2004-2005 by Daniel Ritz <daniel.ritz@gmx.ch>
5 * Copyright (C) by Todd E. Johnson (mtouchusb.c)
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 * Based upon mtouchusb.c
23 *****************************************************************************/
25 //#define DEBUG
27 #include <linux/config.h>
28 #include <linux/kernel.h>
29 #include <linux/slab.h>
30 #include <linux/input.h>
31 #include <linux/module.h>
32 #include <linux/init.h>
33 #include <linux/usb.h>
34 #include <linux/usb_input.h>
36 #define TOUCHKIT_MIN_XC 0x0
37 #define TOUCHKIT_MAX_XC 0x07ff
38 #define TOUCHKIT_XC_FUZZ 0x0
39 #define TOUCHKIT_XC_FLAT 0x0
40 #define TOUCHKIT_MIN_YC 0x0
41 #define TOUCHKIT_MAX_YC 0x07ff
42 #define TOUCHKIT_YC_FUZZ 0x0
43 #define TOUCHKIT_YC_FLAT 0x0
44 #define TOUCHKIT_REPORT_DATA_SIZE 16
46 #define TOUCHKIT_DOWN 0x01
48 #define TOUCHKIT_PKT_TYPE_MASK 0xFE
49 #define TOUCHKIT_PKT_TYPE_REPT 0x80
50 #define TOUCHKIT_PKT_TYPE_DIAG 0x0A
52 #define DRIVER_VERSION "v0.1"
53 #define DRIVER_AUTHOR "Daniel Ritz <daniel.ritz@gmx.ch>"
54 #define DRIVER_DESC "eGalax TouchKit USB HID Touchscreen Driver"
56 static int swap_xy;
57 module_param(swap_xy, bool, 0644);
58 MODULE_PARM_DESC(swap_xy, "If set X and Y axes are swapped.");
60 struct touchkit_usb {
61 unsigned char *data;
62 dma_addr_t data_dma;
63 char buffer[TOUCHKIT_REPORT_DATA_SIZE];
64 int buf_len;
65 struct urb *irq;
66 struct usb_device *udev;
67 struct input_dev *input;
68 char name[128];
69 char phys[64];
72 static struct usb_device_id touchkit_devices[] = {
73 {USB_DEVICE(0x3823, 0x0001)},
74 {USB_DEVICE(0x0123, 0x0001)},
75 {USB_DEVICE(0x0eef, 0x0001)},
76 {USB_DEVICE(0x0eef, 0x0002)},
80 /* helpers to read the data */
81 static inline int touchkit_get_touched(char *data)
83 return (data[0] & TOUCHKIT_DOWN) ? 1 : 0;
86 static inline int touchkit_get_x(char *data)
88 return ((data[3] & 0x0F) << 7) | (data[4] & 0x7F);
91 static inline int touchkit_get_y(char *data)
93 return ((data[1] & 0x0F) << 7) | (data[2] & 0x7F);
97 /* processes one input packet. */
98 static void touchkit_process_pkt(struct touchkit_usb *touchkit,
99 struct pt_regs *regs, char *pkt)
101 int x, y;
103 /* only process report packets */
104 if ((pkt[0] & TOUCHKIT_PKT_TYPE_MASK) != TOUCHKIT_PKT_TYPE_REPT)
105 return;
107 if (swap_xy) {
108 y = touchkit_get_x(pkt);
109 x = touchkit_get_y(pkt);
110 } else {
111 x = touchkit_get_x(pkt);
112 y = touchkit_get_y(pkt);
115 input_regs(touchkit->input, regs);
116 input_report_key(touchkit->input, BTN_TOUCH, touchkit_get_touched(pkt));
117 input_report_abs(touchkit->input, ABS_X, x);
118 input_report_abs(touchkit->input, ABS_Y, y);
119 input_sync(touchkit->input);
123 static int touchkit_get_pkt_len(char *buf)
125 switch (buf[0] & TOUCHKIT_PKT_TYPE_MASK) {
126 case TOUCHKIT_PKT_TYPE_REPT:
127 return 5;
129 case TOUCHKIT_PKT_TYPE_DIAG:
130 return buf[1] + 2;
133 return 0;
136 static void touchkit_process(struct touchkit_usb *touchkit, int len,
137 struct pt_regs *regs)
139 char *buffer;
140 int pkt_len, buf_len, pos;
142 /* if the buffer contains data, append */
143 if (unlikely(touchkit->buf_len)) {
144 int tmp;
146 /* if only 1 byte in buffer, add another one to get length */
147 if (touchkit->buf_len == 1)
148 touchkit->buffer[1] = touchkit->data[0];
150 pkt_len = touchkit_get_pkt_len(touchkit->buffer);
152 /* unknown packet: drop everything */
153 if (!pkt_len)
154 return;
156 /* append, process */
157 tmp = pkt_len - touchkit->buf_len;
158 memcpy(touchkit->buffer + touchkit->buf_len, touchkit->data, tmp);
159 touchkit_process_pkt(touchkit, regs, touchkit->buffer);
161 buffer = touchkit->data + tmp;
162 buf_len = len - tmp;
163 } else {
164 buffer = touchkit->data;
165 buf_len = len;
168 /* only one byte left in buffer */
169 if (unlikely(buf_len == 1)) {
170 touchkit->buffer[0] = buffer[0];
171 touchkit->buf_len = 1;
172 return;
175 /* loop over the buffer */
176 pos = 0;
177 while (pos < buf_len) {
178 /* get packet len */
179 pkt_len = touchkit_get_pkt_len(buffer + pos);
181 /* unknown packet: drop everything */
182 if (unlikely(!pkt_len))
183 return;
185 /* full packet: process */
186 if (likely(pkt_len <= buf_len)) {
187 touchkit_process_pkt(touchkit, regs, buffer + pos);
188 } else {
189 /* incomplete packet: save in buffer */
190 memcpy(touchkit->buffer, buffer + pos, buf_len - pos);
191 touchkit->buf_len = buf_len - pos;
193 pos += pkt_len;
198 static void touchkit_irq(struct urb *urb, struct pt_regs *regs)
200 struct touchkit_usb *touchkit = urb->context;
201 int retval;
203 switch (urb->status) {
204 case 0:
205 /* success */
206 break;
207 case -ETIMEDOUT:
208 /* this urb is timing out */
209 dbg("%s - urb timed out - was the device unplugged?",
210 __FUNCTION__);
211 return;
212 case -ECONNRESET:
213 case -ENOENT:
214 case -ESHUTDOWN:
215 /* this urb is terminated, clean up */
216 dbg("%s - urb shutting down with status: %d",
217 __FUNCTION__, urb->status);
218 return;
219 default:
220 dbg("%s - nonzero urb status received: %d",
221 __FUNCTION__, urb->status);
222 goto exit;
225 touchkit_process(touchkit, urb->actual_length, regs);
227 exit:
228 retval = usb_submit_urb(urb, GFP_ATOMIC);
229 if (retval)
230 err("%s - usb_submit_urb failed with result: %d",
231 __FUNCTION__, retval);
234 static int touchkit_open(struct input_dev *input)
236 struct touchkit_usb *touchkit = input->private;
238 touchkit->irq->dev = touchkit->udev;
240 if (usb_submit_urb(touchkit->irq, GFP_ATOMIC))
241 return -EIO;
243 return 0;
246 static void touchkit_close(struct input_dev *input)
248 struct touchkit_usb *touchkit = input->private;
250 usb_kill_urb(touchkit->irq);
253 static int touchkit_alloc_buffers(struct usb_device *udev,
254 struct touchkit_usb *touchkit)
256 touchkit->data = usb_buffer_alloc(udev, TOUCHKIT_REPORT_DATA_SIZE,
257 SLAB_ATOMIC, &touchkit->data_dma);
259 if (!touchkit->data)
260 return -1;
262 return 0;
265 static void touchkit_free_buffers(struct usb_device *udev,
266 struct touchkit_usb *touchkit)
268 if (touchkit->data)
269 usb_buffer_free(udev, TOUCHKIT_REPORT_DATA_SIZE,
270 touchkit->data, touchkit->data_dma);
273 static int touchkit_probe(struct usb_interface *intf,
274 const struct usb_device_id *id)
276 struct touchkit_usb *touchkit;
277 struct input_dev *input_dev;
278 struct usb_host_interface *interface;
279 struct usb_endpoint_descriptor *endpoint;
280 struct usb_device *udev = interface_to_usbdev(intf);
282 interface = intf->cur_altsetting;
283 endpoint = &interface->endpoint[0].desc;
285 touchkit = kzalloc(sizeof(struct touchkit_usb), GFP_KERNEL);
286 input_dev = input_allocate_device();
287 if (!touchkit || !input_dev)
288 goto out_free;
290 if (touchkit_alloc_buffers(udev, touchkit))
291 goto out_free;
293 touchkit->irq = usb_alloc_urb(0, GFP_KERNEL);
294 if (!touchkit->irq) {
295 dbg("%s - usb_alloc_urb failed: touchkit->irq", __FUNCTION__);
296 goto out_free_buffers;
299 touchkit->udev = udev;
300 touchkit->input = input_dev;
302 if (udev->manufacturer)
303 strlcpy(touchkit->name, udev->manufacturer, sizeof(touchkit->name));
305 if (udev->product) {
306 if (udev->manufacturer)
307 strlcat(touchkit->name, " ", sizeof(touchkit->name));
308 strlcat(touchkit->name, udev->product, sizeof(touchkit->name));
311 if (!strlen(touchkit->name))
312 snprintf(touchkit->name, sizeof(touchkit->name),
313 "USB Touchscreen %04x:%04x",
314 le16_to_cpu(udev->descriptor.idVendor),
315 le16_to_cpu(udev->descriptor.idProduct));
317 usb_make_path(udev, touchkit->phys, sizeof(touchkit->phys));
318 strlcpy(touchkit->phys, "/input0", sizeof(touchkit->phys));
320 input_dev->name = touchkit->name;
321 input_dev->phys = touchkit->phys;
322 usb_to_input_id(udev, &input_dev->id);
323 input_dev->cdev.dev = &intf->dev;
324 input_dev->private = touchkit;
325 input_dev->open = touchkit_open;
326 input_dev->close = touchkit_close;
328 input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
329 input_dev->keybit[LONG(BTN_TOUCH)] = BIT(BTN_TOUCH);
330 input_set_abs_params(input_dev, ABS_X, TOUCHKIT_MIN_XC, TOUCHKIT_MAX_XC,
331 TOUCHKIT_XC_FUZZ, TOUCHKIT_XC_FLAT);
332 input_set_abs_params(input_dev, ABS_Y, TOUCHKIT_MIN_YC, TOUCHKIT_MAX_YC,
333 TOUCHKIT_YC_FUZZ, TOUCHKIT_YC_FLAT);
335 usb_fill_int_urb(touchkit->irq, touchkit->udev,
336 usb_rcvintpipe(touchkit->udev, 0x81),
337 touchkit->data, TOUCHKIT_REPORT_DATA_SIZE,
338 touchkit_irq, touchkit, endpoint->bInterval);
340 input_register_device(touchkit->input);
342 usb_set_intfdata(intf, touchkit);
343 return 0;
345 out_free_buffers:
346 touchkit_free_buffers(udev, touchkit);
347 out_free:
348 input_free_device(input_dev);
349 kfree(touchkit);
350 return -ENOMEM;
353 static void touchkit_disconnect(struct usb_interface *intf)
355 struct touchkit_usb *touchkit = usb_get_intfdata(intf);
357 dbg("%s - called", __FUNCTION__);
359 if (!touchkit)
360 return;
362 dbg("%s - touchkit is initialized, cleaning up", __FUNCTION__);
363 usb_set_intfdata(intf, NULL);
364 usb_kill_urb(touchkit->irq);
365 input_unregister_device(touchkit->input);
366 usb_free_urb(touchkit->irq);
367 touchkit_free_buffers(interface_to_usbdev(intf), touchkit);
368 kfree(touchkit);
371 MODULE_DEVICE_TABLE(usb, touchkit_devices);
373 static struct usb_driver touchkit_driver = {
374 .name = "touchkitusb",
375 .probe = touchkit_probe,
376 .disconnect = touchkit_disconnect,
377 .id_table = touchkit_devices,
380 static int __init touchkit_init(void)
382 return usb_register(&touchkit_driver);
385 static void __exit touchkit_cleanup(void)
387 usb_deregister(&touchkit_driver);
390 module_init(touchkit_init);
391 module_exit(touchkit_cleanup);
393 MODULE_AUTHOR(DRIVER_AUTHOR);
394 MODULE_DESCRIPTION(DRIVER_DESC);
395 MODULE_LICENSE("GPL");