1 /******************************************************************************
3 * Driver for USB Touchscreens, supporting those devices:
5 * includes eTurboTouch CT-410/510/700
6 * - 3M/Microtouch EX II series
12 * - IRTOUCHSYSTEMS/UNITOP
15 * - GoTop Super_Q2/GogoPen/PenPower tablets
16 * - JASTEC USB touch controller/DigiTech DTR-02U
17 * - Zytronic capacitive touchscreen
19 * - Elo TouchSystems 2700 IntelliTouch
20 * - EasyTouch USB Dual/Multi touch controller from Data Modul
22 * Copyright (C) 2004-2007 by Daniel Ritz <daniel.ritz@gmx.ch>
23 * Copyright (C) by Todd E. Johnson (mtouchusb.c)
25 * This program is free software; you can redistribute it and/or
26 * modify it under the terms of the GNU General Public License as
27 * published by the Free Software Foundation; either version 2 of the
28 * License, or (at your option) any later version.
30 * This program is distributed in the hope that it will be useful, but
31 * WITHOUT ANY WARRANTY; without even the implied warranty of
32 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
33 * General Public License for more details.
35 * You should have received a copy of the GNU General Public License
36 * along with this program; if not, write to the Free Software
37 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
39 * Driver is based on touchkitusb.c
40 * - ITM parts are from itmtouch.c
41 * - 3M parts are from mtouchusb.c
42 * - PanJit parts are from an unmerged driver by Lanslott Gish
43 * - DMC TSC 10/25 are from Holger Schurig, with ideas from an unmerged
44 * driver from Marius Vollmer
46 *****************************************************************************/
50 #include <linux/kernel.h>
51 #include <linux/slab.h>
52 #include <linux/input.h>
53 #include <linux/module.h>
54 #include <linux/usb.h>
55 #include <linux/usb/input.h>
56 #include <linux/hid.h>
59 #define DRIVER_VERSION "v0.6"
60 #define DRIVER_AUTHOR "Daniel Ritz <daniel.ritz@gmx.ch>"
61 #define DRIVER_DESC "USB Touchscreen Driver"
64 module_param(swap_xy, bool, 0644);
65 MODULE_PARM_DESC(swap_xy, "If set X and Y axes are swapped.");
67 static bool hwcalib_xy;
68 module_param(hwcalib_xy, bool, 0644);
69 MODULE_PARM_DESC(hwcalib_xy, "If set hw-calibrated X/Y are used if available");
71 /* device specifc data/functions */
73 struct usbtouch_device_info {
76 int min_press, max_press;
80 * Always service the USB devices irq not just when the input device is
81 * open. This is useful when devices have a watchdog which prevents us
82 * from periodically polling the device. Leave this unset unless your
83 * touchscreen device requires it, as it does consume more of the USB
88 void (*process_pkt) (struct usbtouch_usb *usbtouch, unsigned char *pkt, int len);
91 * used to get the packet len. possible return values:
94 * < 0: -return value more bytes needed
96 int (*get_pkt_len) (unsigned char *pkt, int len);
98 int (*read_data) (struct usbtouch_usb *usbtouch, unsigned char *pkt);
99 int (*alloc) (struct usbtouch_usb *usbtouch);
100 int (*init) (struct usbtouch_usb *usbtouch);
101 void (*exit) (struct usbtouch_usb *usbtouch);
104 /* a usbtouch device */
105 struct usbtouch_usb {
109 unsigned char *buffer;
112 struct usb_interface *interface;
113 struct input_dev *input;
114 struct usbtouch_device_info *type;
135 DEVTYPE_IRTOUCH_HIRES,
137 DEVTYPE_GENERAL_TOUCH,
148 #define USB_DEVICE_HID_CLASS(vend, prod) \
149 .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS \
150 | USB_DEVICE_ID_MATCH_DEVICE, \
151 .idVendor = (vend), \
152 .idProduct = (prod), \
153 .bInterfaceClass = USB_INTERFACE_CLASS_HID
155 static const struct usb_device_id usbtouch_devices[] = {
156 #ifdef CONFIG_TOUCHSCREEN_USB_EGALAX
157 /* ignore the HID capable devices, handled by usbhid */
158 {USB_DEVICE_HID_CLASS(0x0eef, 0x0001), .driver_info = DEVTYPE_IGNORE},
159 {USB_DEVICE_HID_CLASS(0x0eef, 0x0002), .driver_info = DEVTYPE_IGNORE},
161 /* normal device IDs */
162 {USB_DEVICE(0x3823, 0x0001), .driver_info = DEVTYPE_EGALAX},
163 {USB_DEVICE(0x3823, 0x0002), .driver_info = DEVTYPE_EGALAX},
164 {USB_DEVICE(0x0123, 0x0001), .driver_info = DEVTYPE_EGALAX},
165 {USB_DEVICE(0x0eef, 0x0001), .driver_info = DEVTYPE_EGALAX},
166 {USB_DEVICE(0x0eef, 0x0002), .driver_info = DEVTYPE_EGALAX},
167 {USB_DEVICE(0x1234, 0x0001), .driver_info = DEVTYPE_EGALAX},
168 {USB_DEVICE(0x1234, 0x0002), .driver_info = DEVTYPE_EGALAX},
171 #ifdef CONFIG_TOUCHSCREEN_USB_PANJIT
172 {USB_DEVICE(0x134c, 0x0001), .driver_info = DEVTYPE_PANJIT},
173 {USB_DEVICE(0x134c, 0x0002), .driver_info = DEVTYPE_PANJIT},
174 {USB_DEVICE(0x134c, 0x0003), .driver_info = DEVTYPE_PANJIT},
175 {USB_DEVICE(0x134c, 0x0004), .driver_info = DEVTYPE_PANJIT},
178 #ifdef CONFIG_TOUCHSCREEN_USB_3M
179 {USB_DEVICE(0x0596, 0x0001), .driver_info = DEVTYPE_3M},
182 #ifdef CONFIG_TOUCHSCREEN_USB_ITM
183 {USB_DEVICE(0x0403, 0xf9e9), .driver_info = DEVTYPE_ITM},
184 {USB_DEVICE(0x16e3, 0xf9e9), .driver_info = DEVTYPE_ITM},
187 #ifdef CONFIG_TOUCHSCREEN_USB_ETURBO
188 {USB_DEVICE(0x1234, 0x5678), .driver_info = DEVTYPE_ETURBO},
191 #ifdef CONFIG_TOUCHSCREEN_USB_GUNZE
192 {USB_DEVICE(0x0637, 0x0001), .driver_info = DEVTYPE_GUNZE},
195 #ifdef CONFIG_TOUCHSCREEN_USB_DMC_TSC10
196 {USB_DEVICE(0x0afa, 0x03e8), .driver_info = DEVTYPE_DMC_TSC10},
199 #ifdef CONFIG_TOUCHSCREEN_USB_IRTOUCH
200 {USB_DEVICE(0x595a, 0x0001), .driver_info = DEVTYPE_IRTOUCH},
201 {USB_DEVICE(0x6615, 0x0001), .driver_info = DEVTYPE_IRTOUCH},
202 {USB_DEVICE(0x6615, 0x0012), .driver_info = DEVTYPE_IRTOUCH_HIRES},
205 #ifdef CONFIG_TOUCHSCREEN_USB_IDEALTEK
206 {USB_DEVICE(0x1391, 0x1000), .driver_info = DEVTYPE_IDEALTEK},
209 #ifdef CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH
210 {USB_DEVICE(0x0dfc, 0x0001), .driver_info = DEVTYPE_GENERAL_TOUCH},
213 #ifdef CONFIG_TOUCHSCREEN_USB_GOTOP
214 {USB_DEVICE(0x08f2, 0x007f), .driver_info = DEVTYPE_GOTOP},
215 {USB_DEVICE(0x08f2, 0x00ce), .driver_info = DEVTYPE_GOTOP},
216 {USB_DEVICE(0x08f2, 0x00f4), .driver_info = DEVTYPE_GOTOP},
219 #ifdef CONFIG_TOUCHSCREEN_USB_JASTEC
220 {USB_DEVICE(0x0f92, 0x0001), .driver_info = DEVTYPE_JASTEC},
223 #ifdef CONFIG_TOUCHSCREEN_USB_E2I
224 {USB_DEVICE(0x1ac7, 0x0001), .driver_info = DEVTYPE_E2I},
227 #ifdef CONFIG_TOUCHSCREEN_USB_ZYTRONIC
228 {USB_DEVICE(0x14c8, 0x0003), .driver_info = DEVTYPE_ZYTRONIC},
231 #ifdef CONFIG_TOUCHSCREEN_USB_ETT_TC45USB
233 {USB_DEVICE(0x0664, 0x0309), .driver_info = DEVTYPE_TC45USB},
235 {USB_DEVICE(0x0664, 0x0306), .driver_info = DEVTYPE_TC45USB},
238 #ifdef CONFIG_TOUCHSCREEN_USB_NEXIO
239 /* data interface only */
240 {USB_DEVICE_AND_INTERFACE_INFO(0x10f0, 0x2002, 0x0a, 0x00, 0x00),
241 .driver_info = DEVTYPE_NEXIO},
242 {USB_DEVICE_AND_INTERFACE_INFO(0x1870, 0x0001, 0x0a, 0x00, 0x00),
243 .driver_info = DEVTYPE_NEXIO},
246 #ifdef CONFIG_TOUCHSCREEN_USB_ELO
247 {USB_DEVICE(0x04e7, 0x0020), .driver_info = DEVTYPE_ELO},
250 #ifdef CONFIG_TOUCHSCREEN_USB_EASYTOUCH
251 {USB_DEVICE(0x7374, 0x0001), .driver_info = DEVTYPE_ETOUCH},
258 /*****************************************************************************
262 #ifdef CONFIG_TOUCHSCREEN_USB_E2I
263 static int e2i_init(struct usbtouch_usb *usbtouch)
266 struct usb_device *udev = interface_to_usbdev(usbtouch->interface);
268 ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
269 0x01, 0x02, 0x0000, 0x0081,
270 NULL, 0, USB_CTRL_SET_TIMEOUT);
272 dev_dbg(&usbtouch->interface->dev,
273 "%s - usb_control_msg - E2I_RESET - bytes|err: %d\n",
278 static int e2i_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
280 int tmp = (pkt[0] << 8) | pkt[1];
281 dev->x = (pkt[2] << 8) | pkt[3];
282 dev->y = (pkt[4] << 8) | pkt[5];
285 dev->touch = (tmp > 0);
286 dev->press = (tmp > 0 ? tmp : 0);
293 /*****************************************************************************
297 #ifdef CONFIG_TOUCHSCREEN_USB_EGALAX
303 #define EGALAX_PKT_TYPE_MASK 0xFE
304 #define EGALAX_PKT_TYPE_REPT 0x80
305 #define EGALAX_PKT_TYPE_DIAG 0x0A
307 static int egalax_init(struct usbtouch_usb *usbtouch)
311 struct usb_device *udev = interface_to_usbdev(usbtouch->interface);
314 * An eGalax diagnostic packet kicks the device into using the right
315 * protocol. We send a "check active" packet. The response will be
316 * read later and ignored.
319 buf = kmalloc(3, GFP_KERNEL);
323 buf[0] = EGALAX_PKT_TYPE_DIAG;
324 buf[1] = 1; /* length */
325 buf[2] = 'A'; /* command - check active */
327 for (i = 0; i < 3; i++) {
328 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
330 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
332 USB_CTRL_SET_TIMEOUT);
346 static int egalax_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
348 if ((pkt[0] & EGALAX_PKT_TYPE_MASK) != EGALAX_PKT_TYPE_REPT)
351 dev->x = ((pkt[3] & 0x0F) << 7) | (pkt[4] & 0x7F);
352 dev->y = ((pkt[1] & 0x0F) << 7) | (pkt[2] & 0x7F);
353 dev->touch = pkt[0] & 0x01;
358 static int egalax_get_pkt_len(unsigned char *buf, int len)
360 switch (buf[0] & EGALAX_PKT_TYPE_MASK) {
361 case EGALAX_PKT_TYPE_REPT:
364 case EGALAX_PKT_TYPE_DIAG:
375 /*****************************************************************************
379 #ifdef CONFIG_TOUCHSCREEN_USB_EASYTOUCH
385 #define ETOUCH_PKT_TYPE_MASK 0xFE
386 #define ETOUCH_PKT_TYPE_REPT 0x80
387 #define ETOUCH_PKT_TYPE_REPT2 0xB0
388 #define ETOUCH_PKT_TYPE_DIAG 0x0A
390 static int etouch_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
392 if ((pkt[0] & ETOUCH_PKT_TYPE_MASK) != ETOUCH_PKT_TYPE_REPT &&
393 (pkt[0] & ETOUCH_PKT_TYPE_MASK) != ETOUCH_PKT_TYPE_REPT2)
396 dev->x = ((pkt[1] & 0x1F) << 7) | (pkt[2] & 0x7F);
397 dev->y = ((pkt[3] & 0x1F) << 7) | (pkt[4] & 0x7F);
398 dev->touch = pkt[0] & 0x01;
403 static int etouch_get_pkt_len(unsigned char *buf, int len)
405 switch (buf[0] & ETOUCH_PKT_TYPE_MASK) {
406 case ETOUCH_PKT_TYPE_REPT:
407 case ETOUCH_PKT_TYPE_REPT2:
410 case ETOUCH_PKT_TYPE_DIAG:
421 /*****************************************************************************
424 #ifdef CONFIG_TOUCHSCREEN_USB_PANJIT
425 static int panjit_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
427 dev->x = ((pkt[2] & 0x0F) << 8) | pkt[1];
428 dev->y = ((pkt[4] & 0x0F) << 8) | pkt[3];
429 dev->touch = pkt[0] & 0x01;
436 /*****************************************************************************
439 #ifdef CONFIG_TOUCHSCREEN_USB_3M
441 #define MTOUCHUSB_ASYNC_REPORT 1
442 #define MTOUCHUSB_RESET 7
443 #define MTOUCHUSB_REQ_CTRLLR_ID 10
445 static int mtouch_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
448 dev->x = (pkt[4] << 8) | pkt[3];
449 dev->y = 0xffff - ((pkt[6] << 8) | pkt[5]);
451 dev->x = (pkt[8] << 8) | pkt[7];
452 dev->y = (pkt[10] << 8) | pkt[9];
454 dev->touch = (pkt[2] & 0x40) ? 1 : 0;
459 static int mtouch_init(struct usbtouch_usb *usbtouch)
462 struct usb_device *udev = interface_to_usbdev(usbtouch->interface);
464 ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
466 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
467 1, 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
468 dev_dbg(&usbtouch->interface->dev,
469 "%s - usb_control_msg - MTOUCHUSB_RESET - bytes|err: %d\n",
475 for (i = 0; i < 3; i++) {
476 ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
477 MTOUCHUSB_ASYNC_REPORT,
478 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
479 1, 1, NULL, 0, USB_CTRL_SET_TIMEOUT);
480 dev_dbg(&usbtouch->interface->dev,
481 "%s - usb_control_msg - MTOUCHUSB_ASYNC_REPORT - bytes|err: %d\n",
489 /* Default min/max xy are the raw values, override if using hw-calib */
491 input_set_abs_params(usbtouch->input, ABS_X, 0, 0xffff, 0, 0);
492 input_set_abs_params(usbtouch->input, ABS_Y, 0, 0xffff, 0, 0);
500 /*****************************************************************************
503 #ifdef CONFIG_TOUCHSCREEN_USB_ITM
504 static int itm_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
508 * ITM devices report invalid x/y data if not touched.
509 * if the screen was touched before but is not touched any more
510 * report touch as 0 with the last valid x/y data once. then stop
511 * reporting data until touched again.
513 dev->press = ((pkt[2] & 0x01) << 7) | (pkt[5] & 0x7F);
515 touch = ~pkt[7] & 0x20;
525 dev->x = ((pkt[0] & 0x1F) << 7) | (pkt[3] & 0x7F);
526 dev->y = ((pkt[1] & 0x1F) << 7) | (pkt[4] & 0x7F);
534 /*****************************************************************************
537 #ifdef CONFIG_TOUCHSCREEN_USB_ETURBO
541 static int eturbo_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
545 /* packets should start with sync */
546 if (!(pkt[0] & 0x80))
549 shift = (6 - (pkt[0] & 0x03));
550 dev->x = ((pkt[3] << 7) | pkt[4]) >> shift;
551 dev->y = ((pkt[1] << 7) | pkt[2]) >> shift;
552 dev->touch = (pkt[0] & 0x10) ? 1 : 0;
557 static int eturbo_get_pkt_len(unsigned char *buf, int len)
568 /*****************************************************************************
571 #ifdef CONFIG_TOUCHSCREEN_USB_GUNZE
572 static int gunze_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
574 if (!(pkt[0] & 0x80) || ((pkt[1] | pkt[2] | pkt[3]) & 0x80))
577 dev->x = ((pkt[0] & 0x1F) << 7) | (pkt[2] & 0x7F);
578 dev->y = ((pkt[1] & 0x1F) << 7) | (pkt[3] & 0x7F);
579 dev->touch = pkt[0] & 0x20;
585 /*****************************************************************************
588 * Documentation about the controller and it's protocol can be found at
589 * http://www.dmccoltd.com/files/controler/tsc10usb_pi_e.pdf
590 * http://www.dmccoltd.com/files/controler/tsc25_usb_e.pdf
592 #ifdef CONFIG_TOUCHSCREEN_USB_DMC_TSC10
594 /* supported data rates. currently using 130 */
595 #define TSC10_RATE_POINT 0x50
596 #define TSC10_RATE_30 0x40
597 #define TSC10_RATE_50 0x41
598 #define TSC10_RATE_80 0x42
599 #define TSC10_RATE_100 0x43
600 #define TSC10_RATE_130 0x44
601 #define TSC10_RATE_150 0x45
604 #define TSC10_CMD_RESET 0x55
605 #define TSC10_CMD_RATE 0x05
606 #define TSC10_CMD_DATA1 0x01
608 static int dmc_tsc10_init(struct usbtouch_usb *usbtouch)
610 struct usb_device *dev = interface_to_usbdev(usbtouch->interface);
614 buf = kmalloc(2, GFP_NOIO);
618 buf[0] = buf[1] = 0xFF;
619 ret = usb_control_msg(dev, usb_rcvctrlpipe (dev, 0),
621 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
622 0, 0, buf, 2, USB_CTRL_SET_TIMEOUT);
625 if (buf[0] != 0x06) {
630 /* set coordinate output rate */
631 buf[0] = buf[1] = 0xFF;
632 ret = usb_control_msg(dev, usb_rcvctrlpipe (dev, 0),
634 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
635 TSC10_RATE_150, 0, buf, 2, USB_CTRL_SET_TIMEOUT);
638 if ((buf[0] != 0x06) && (buf[0] != 0x15 || buf[1] != 0x01)) {
643 /* start sending data */
644 ret = usb_control_msg(dev, usb_rcvctrlpipe (dev, 0),
646 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
647 0, 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
655 static int dmc_tsc10_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
657 dev->x = ((pkt[2] & 0x03) << 8) | pkt[1];
658 dev->y = ((pkt[4] & 0x03) << 8) | pkt[3];
659 dev->touch = pkt[0] & 0x01;
666 /*****************************************************************************
669 #ifdef CONFIG_TOUCHSCREEN_USB_IRTOUCH
670 static int irtouch_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
672 dev->x = (pkt[3] << 8) | pkt[2];
673 dev->y = (pkt[5] << 8) | pkt[4];
674 dev->touch = (pkt[1] & 0x03) ? 1 : 0;
680 /*****************************************************************************
681 * ET&T TC5UH/TC4UM part
683 #ifdef CONFIG_TOUCHSCREEN_USB_ETT_TC45USB
684 static int tc45usb_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
686 dev->x = ((pkt[2] & 0x0F) << 8) | pkt[1];
687 dev->y = ((pkt[4] & 0x0F) << 8) | pkt[3];
688 dev->touch = pkt[0] & 0x01;
694 /*****************************************************************************
695 * IdealTEK URTC1000 Part
697 #ifdef CONFIG_TOUCHSCREEN_USB_IDEALTEK
701 static int idealtek_get_pkt_len(unsigned char *buf, int len)
710 static int idealtek_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
712 switch (pkt[0] & 0x98) {
714 /* touch data in IdealTEK mode */
715 dev->x = (pkt[1] << 5) | (pkt[2] >> 2);
716 dev->y = (pkt[3] << 5) | (pkt[4] >> 2);
717 dev->touch = (pkt[0] & 0x40) ? 1 : 0;
721 /* touch data in MT emulation mode */
722 dev->x = (pkt[2] << 5) | (pkt[1] >> 2);
723 dev->y = (pkt[4] << 5) | (pkt[3] >> 2);
724 dev->touch = (pkt[0] & 0x40) ? 1 : 0;
733 /*****************************************************************************
736 #ifdef CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH
737 static int general_touch_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
739 dev->x = (pkt[2] << 8) | pkt[1];
740 dev->y = (pkt[4] << 8) | pkt[3];
741 dev->press = pkt[5] & 0xff;
742 dev->touch = pkt[0] & 0x01;
748 /*****************************************************************************
751 #ifdef CONFIG_TOUCHSCREEN_USB_GOTOP
752 static int gotop_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
754 dev->x = ((pkt[1] & 0x38) << 4) | pkt[2];
755 dev->y = ((pkt[1] & 0x07) << 7) | pkt[3];
756 dev->touch = pkt[0] & 0x01;
762 /*****************************************************************************
765 #ifdef CONFIG_TOUCHSCREEN_USB_JASTEC
766 static int jastec_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
768 dev->x = ((pkt[0] & 0x3f) << 6) | (pkt[2] & 0x3f);
769 dev->y = ((pkt[1] & 0x3f) << 6) | (pkt[3] & 0x3f);
770 dev->touch = (pkt[0] & 0x40) >> 6;
776 /*****************************************************************************
779 #ifdef CONFIG_TOUCHSCREEN_USB_ZYTRONIC
780 static int zytronic_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
782 struct usb_interface *intf = dev->interface;
785 case 0x3A: /* command response */
786 dev_dbg(&intf->dev, "%s: Command response %d\n", __func__, pkt[1]);
789 case 0xC0: /* down */
790 dev->x = (pkt[1] & 0x7f) | ((pkt[2] & 0x07) << 7);
791 dev->y = (pkt[3] & 0x7f) | ((pkt[4] & 0x07) << 7);
793 dev_dbg(&intf->dev, "%s: down %d,%d\n", __func__, dev->x, dev->y);
797 dev->x = (pkt[1] & 0x7f) | ((pkt[2] & 0x07) << 7);
798 dev->y = (pkt[3] & 0x7f) | ((pkt[4] & 0x07) << 7);
800 dev_dbg(&intf->dev, "%s: up %d,%d\n", __func__, dev->x, dev->y);
804 dev_dbg(&intf->dev, "%s: Unknown return %d\n", __func__, pkt[0]);
812 /*****************************************************************************
815 #ifdef CONFIG_TOUCHSCREEN_USB_NEXIO
817 #define NEXIO_TIMEOUT 5000
818 #define NEXIO_BUFSIZE 1024
819 #define NEXIO_THRESHOLD 50
823 unsigned char *ack_buf;
826 struct nexio_touch_packet {
827 u8 flags; /* 0xe1 = touch, 0xe1 = release */
828 __be16 data_len; /* total bytes of touch data */
829 __be16 x_len; /* bytes for X axis */
830 __be16 y_len; /* bytes for Y axis */
832 } __attribute__ ((packed));
834 static unsigned char nexio_ack_pkt[2] = { 0xaa, 0x02 };
835 static unsigned char nexio_init_pkt[4] = { 0x82, 0x04, 0x0a, 0x0f };
837 static void nexio_ack_complete(struct urb *urb)
841 static int nexio_alloc(struct usbtouch_usb *usbtouch)
843 struct nexio_priv *priv;
846 usbtouch->priv = kmalloc(sizeof(struct nexio_priv), GFP_KERNEL);
850 priv = usbtouch->priv;
852 priv->ack_buf = kmemdup(nexio_ack_pkt, sizeof(nexio_ack_pkt),
857 priv->ack = usb_alloc_urb(0, GFP_KERNEL);
859 dev_dbg(&usbtouch->interface->dev,
860 "%s - usb_alloc_urb failed: usbtouch->ack\n", __func__);
867 kfree(priv->ack_buf);
874 static int nexio_init(struct usbtouch_usb *usbtouch)
876 struct usb_device *dev = interface_to_usbdev(usbtouch->interface);
877 struct usb_host_interface *interface = usbtouch->interface->cur_altsetting;
878 struct nexio_priv *priv = usbtouch->priv;
882 char *firmware_ver = NULL, *device_name = NULL;
883 int input_ep = 0, output_ep = 0;
885 /* find first input and output endpoint */
886 for (i = 0; i < interface->desc.bNumEndpoints; i++) {
888 usb_endpoint_dir_in(&interface->endpoint[i].desc))
889 input_ep = interface->endpoint[i].desc.bEndpointAddress;
891 usb_endpoint_dir_out(&interface->endpoint[i].desc))
892 output_ep = interface->endpoint[i].desc.bEndpointAddress;
894 if (!input_ep || !output_ep)
897 buf = kmalloc(NEXIO_BUFSIZE, GFP_NOIO);
901 /* two empty reads */
902 for (i = 0; i < 2; i++) {
903 ret = usb_bulk_msg(dev, usb_rcvbulkpipe(dev, input_ep),
904 buf, NEXIO_BUFSIZE, &actual_len,
910 /* send init command */
911 memcpy(buf, nexio_init_pkt, sizeof(nexio_init_pkt));
912 ret = usb_bulk_msg(dev, usb_sndbulkpipe(dev, output_ep),
913 buf, sizeof(nexio_init_pkt), &actual_len,
919 for (i = 0; i < 3; i++) {
920 memset(buf, 0, NEXIO_BUFSIZE);
921 ret = usb_bulk_msg(dev, usb_rcvbulkpipe(dev, input_ep),
922 buf, NEXIO_BUFSIZE, &actual_len,
924 if (ret < 0 || actual_len < 1 || buf[1] != actual_len)
927 case 0x83: /* firmware version */
929 firmware_ver = kstrdup(&buf[2], GFP_NOIO);
931 case 0x84: /* device name */
933 device_name = kstrdup(&buf[2], GFP_NOIO);
938 printk(KERN_INFO "Nexio device: %s, firmware version: %s\n",
939 device_name, firmware_ver);
944 usb_fill_bulk_urb(priv->ack, dev, usb_sndbulkpipe(dev, output_ep),
945 priv->ack_buf, sizeof(nexio_ack_pkt),
946 nexio_ack_complete, usbtouch);
954 static void nexio_exit(struct usbtouch_usb *usbtouch)
956 struct nexio_priv *priv = usbtouch->priv;
958 usb_kill_urb(priv->ack);
959 usb_free_urb(priv->ack);
960 kfree(priv->ack_buf);
964 static int nexio_read_data(struct usbtouch_usb *usbtouch, unsigned char *pkt)
966 struct nexio_touch_packet *packet = (void *) pkt;
967 struct nexio_priv *priv = usbtouch->priv;
968 unsigned int data_len = be16_to_cpu(packet->data_len);
969 unsigned int x_len = be16_to_cpu(packet->x_len);
970 unsigned int y_len = be16_to_cpu(packet->y_len);
971 int x, y, begin_x, begin_y, end_x, end_y, w, h, ret;
973 /* got touch data? */
974 if ((pkt[0] & 0xe0) != 0xe0)
983 ret = usb_submit_urb(priv->ack, GFP_ATOMIC);
985 if (!usbtouch->type->max_xc) {
986 usbtouch->type->max_xc = 2 * x_len;
987 input_set_abs_params(usbtouch->input, ABS_X,
988 0, usbtouch->type->max_xc, 0, 0);
989 usbtouch->type->max_yc = 2 * y_len;
990 input_set_abs_params(usbtouch->input, ABS_Y,
991 0, usbtouch->type->max_yc, 0, 0);
994 * The device reports state of IR sensors on X and Y axes.
995 * Each byte represents "darkness" percentage (0-100) of one element.
996 * 17" touchscreen reports only 64 x 52 bytes so the resolution is low.
997 * This also means that there's a limited multi-touch capability but
998 * it's disabled (and untested) here as there's no X driver for that.
1000 begin_x = end_x = begin_y = end_y = -1;
1001 for (x = 0; x < x_len; x++) {
1002 if (begin_x == -1 && packet->data[x] > NEXIO_THRESHOLD) {
1006 if (end_x == -1 && begin_x != -1 && packet->data[x] < NEXIO_THRESHOLD) {
1008 for (y = x_len; y < data_len; y++) {
1009 if (begin_y == -1 && packet->data[y] > NEXIO_THRESHOLD) {
1010 begin_y = y - x_len;
1014 begin_y != -1 && packet->data[y] < NEXIO_THRESHOLD) {
1015 end_y = y - 1 - x_len;
1016 w = end_x - begin_x;
1017 h = end_y - begin_y;
1020 input_report_abs(usbtouch->input,
1021 ABS_MT_TOUCH_MAJOR, max(w,h));
1022 input_report_abs(usbtouch->input,
1023 ABS_MT_TOUCH_MINOR, min(x,h));
1024 input_report_abs(usbtouch->input,
1025 ABS_MT_POSITION_X, 2*begin_x+w);
1026 input_report_abs(usbtouch->input,
1027 ABS_MT_POSITION_Y, 2*begin_y+h);
1028 input_report_abs(usbtouch->input,
1029 ABS_MT_ORIENTATION, w > h);
1030 input_mt_sync(usbtouch->input);
1033 usbtouch->x = 2 * begin_x + w;
1034 usbtouch->y = 2 * begin_y + h;
1035 usbtouch->touch = packet->flags & 0x01;
1036 begin_y = end_y = -1;
1040 begin_x = end_x = -1;
1049 /*****************************************************************************
1053 #ifdef CONFIG_TOUCHSCREEN_USB_ELO
1055 static int elo_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
1057 dev->x = (pkt[3] << 8) | pkt[2];
1058 dev->y = (pkt[5] << 8) | pkt[4];
1059 dev->touch = pkt[6] > 0;
1060 dev->press = pkt[6];
1067 /*****************************************************************************
1068 * the different device descriptors
1071 static void usbtouch_process_multi(struct usbtouch_usb *usbtouch,
1072 unsigned char *pkt, int len);
1075 static struct usbtouch_device_info usbtouch_dev_info[] = {
1076 #ifdef CONFIG_TOUCHSCREEN_USB_ELO
1084 .read_data = elo_read_data,
1088 #ifdef CONFIG_TOUCHSCREEN_USB_EGALAX
1089 [DEVTYPE_EGALAX] = {
1095 .process_pkt = usbtouch_process_multi,
1096 .get_pkt_len = egalax_get_pkt_len,
1097 .read_data = egalax_read_data,
1098 .init = egalax_init,
1102 #ifdef CONFIG_TOUCHSCREEN_USB_PANJIT
1103 [DEVTYPE_PANJIT] = {
1109 .read_data = panjit_read_data,
1113 #ifdef CONFIG_TOUCHSCREEN_USB_3M
1120 .read_data = mtouch_read_data,
1121 .init = mtouch_init,
1125 #ifdef CONFIG_TOUCHSCREEN_USB_ITM
1133 .read_data = itm_read_data,
1137 #ifdef CONFIG_TOUCHSCREEN_USB_ETURBO
1138 [DEVTYPE_ETURBO] = {
1144 .process_pkt = usbtouch_process_multi,
1145 .get_pkt_len = eturbo_get_pkt_len,
1146 .read_data = eturbo_read_data,
1150 #ifdef CONFIG_TOUCHSCREEN_USB_GUNZE
1157 .read_data = gunze_read_data,
1161 #ifdef CONFIG_TOUCHSCREEN_USB_DMC_TSC10
1162 [DEVTYPE_DMC_TSC10] = {
1168 .init = dmc_tsc10_init,
1169 .read_data = dmc_tsc10_read_data,
1173 #ifdef CONFIG_TOUCHSCREEN_USB_IRTOUCH
1174 [DEVTYPE_IRTOUCH] = {
1180 .read_data = irtouch_read_data,
1183 [DEVTYPE_IRTOUCH_HIRES] = {
1189 .read_data = irtouch_read_data,
1193 #ifdef CONFIG_TOUCHSCREEN_USB_IDEALTEK
1194 [DEVTYPE_IDEALTEK] = {
1200 .process_pkt = usbtouch_process_multi,
1201 .get_pkt_len = idealtek_get_pkt_len,
1202 .read_data = idealtek_read_data,
1206 #ifdef CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH
1207 [DEVTYPE_GENERAL_TOUCH] = {
1213 .read_data = general_touch_read_data,
1217 #ifdef CONFIG_TOUCHSCREEN_USB_GOTOP
1224 .read_data = gotop_read_data,
1228 #ifdef CONFIG_TOUCHSCREEN_USB_JASTEC
1229 [DEVTYPE_JASTEC] = {
1235 .read_data = jastec_read_data,
1239 #ifdef CONFIG_TOUCHSCREEN_USB_E2I
1247 .read_data = e2i_read_data,
1251 #ifdef CONFIG_TOUCHSCREEN_USB_ZYTRONIC
1252 [DEVTYPE_ZYTRONIC] = {
1258 .read_data = zytronic_read_data,
1263 #ifdef CONFIG_TOUCHSCREEN_USB_ETT_TC45USB
1264 [DEVTYPE_TC45USB] = {
1270 .read_data = tc45usb_read_data,
1274 #ifdef CONFIG_TOUCHSCREEN_USB_NEXIO
1278 .read_data = nexio_read_data,
1279 .alloc = nexio_alloc,
1284 #ifdef CONFIG_TOUCHSCREEN_USB_EASYTOUCH
1285 [DEVTYPE_ETOUCH] = {
1291 .process_pkt = usbtouch_process_multi,
1292 .get_pkt_len = etouch_get_pkt_len,
1293 .read_data = etouch_read_data,
1299 /*****************************************************************************
1302 static void usbtouch_process_pkt(struct usbtouch_usb *usbtouch,
1303 unsigned char *pkt, int len)
1305 struct usbtouch_device_info *type = usbtouch->type;
1307 if (!type->read_data(usbtouch, pkt))
1310 input_report_key(usbtouch->input, BTN_TOUCH, usbtouch->touch);
1313 input_report_abs(usbtouch->input, ABS_X, usbtouch->y);
1314 input_report_abs(usbtouch->input, ABS_Y, usbtouch->x);
1316 input_report_abs(usbtouch->input, ABS_X, usbtouch->x);
1317 input_report_abs(usbtouch->input, ABS_Y, usbtouch->y);
1319 if (type->max_press)
1320 input_report_abs(usbtouch->input, ABS_PRESSURE, usbtouch->press);
1321 input_sync(usbtouch->input);
1326 static void usbtouch_process_multi(struct usbtouch_usb *usbtouch,
1327 unsigned char *pkt, int len)
1329 unsigned char *buffer;
1330 int pkt_len, pos, buf_len, tmp;
1332 /* process buffer */
1333 if (unlikely(usbtouch->buf_len)) {
1334 /* try to get size */
1335 pkt_len = usbtouch->type->get_pkt_len(
1336 usbtouch->buffer, usbtouch->buf_len);
1339 if (unlikely(!pkt_len))
1342 /* need to append -pkt_len bytes before able to get size */
1343 if (unlikely(pkt_len < 0)) {
1344 int append = -pkt_len;
1345 if (unlikely(append > len))
1347 if (usbtouch->buf_len + append >= usbtouch->type->rept_size)
1349 memcpy(usbtouch->buffer + usbtouch->buf_len, pkt, append);
1350 usbtouch->buf_len += append;
1352 pkt_len = usbtouch->type->get_pkt_len(
1353 usbtouch->buffer, usbtouch->buf_len);
1359 tmp = pkt_len - usbtouch->buf_len;
1360 if (usbtouch->buf_len + tmp >= usbtouch->type->rept_size)
1362 memcpy(usbtouch->buffer + usbtouch->buf_len, pkt, tmp);
1363 usbtouch_process_pkt(usbtouch, usbtouch->buffer, pkt_len);
1366 buf_len = len - tmp;
1372 /* loop over the received packet, process */
1374 while (pos < buf_len) {
1375 /* get packet len */
1376 pkt_len = usbtouch->type->get_pkt_len(buffer + pos,
1379 /* unknown packet: skip one byte */
1380 if (unlikely(!pkt_len)) {
1385 /* full packet: process */
1386 if (likely((pkt_len > 0) && (pkt_len <= buf_len - pos))) {
1387 usbtouch_process_pkt(usbtouch, buffer + pos, pkt_len);
1389 /* incomplete packet: save in buffer */
1390 memcpy(usbtouch->buffer, buffer + pos, buf_len - pos);
1391 usbtouch->buf_len = buf_len - pos;
1398 usbtouch->buf_len = 0;
1404 static void usbtouch_irq(struct urb *urb)
1406 struct usbtouch_usb *usbtouch = urb->context;
1407 struct device *dev = &usbtouch->interface->dev;
1410 switch (urb->status) {
1415 /* this urb is timing out */
1417 "%s - urb timed out - was the device unplugged?\n",
1424 /* this urb is terminated, clean up */
1425 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
1426 __func__, urb->status);
1429 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
1430 __func__, urb->status);
1434 usbtouch->type->process_pkt(usbtouch, usbtouch->data, urb->actual_length);
1437 usb_mark_last_busy(interface_to_usbdev(usbtouch->interface));
1438 retval = usb_submit_urb(urb, GFP_ATOMIC);
1440 dev_err(dev, "%s - usb_submit_urb failed with result: %d\n",
1444 static int usbtouch_open(struct input_dev *input)
1446 struct usbtouch_usb *usbtouch = input_get_drvdata(input);
1449 usbtouch->irq->dev = interface_to_usbdev(usbtouch->interface);
1451 r = usb_autopm_get_interface(usbtouch->interface) ? -EIO : 0;
1455 if (!usbtouch->type->irq_always) {
1456 if (usb_submit_urb(usbtouch->irq, GFP_KERNEL)) {
1462 usbtouch->interface->needs_remote_wakeup = 1;
1464 usb_autopm_put_interface(usbtouch->interface);
1469 static void usbtouch_close(struct input_dev *input)
1471 struct usbtouch_usb *usbtouch = input_get_drvdata(input);
1474 if (!usbtouch->type->irq_always)
1475 usb_kill_urb(usbtouch->irq);
1476 r = usb_autopm_get_interface(usbtouch->interface);
1477 usbtouch->interface->needs_remote_wakeup = 0;
1479 usb_autopm_put_interface(usbtouch->interface);
1482 static int usbtouch_suspend
1483 (struct usb_interface *intf, pm_message_t message)
1485 struct usbtouch_usb *usbtouch = usb_get_intfdata(intf);
1487 usb_kill_urb(usbtouch->irq);
1492 static int usbtouch_resume(struct usb_interface *intf)
1494 struct usbtouch_usb *usbtouch = usb_get_intfdata(intf);
1495 struct input_dev *input = usbtouch->input;
1498 mutex_lock(&input->mutex);
1499 if (input->users || usbtouch->type->irq_always)
1500 result = usb_submit_urb(usbtouch->irq, GFP_NOIO);
1501 mutex_unlock(&input->mutex);
1506 static int usbtouch_reset_resume(struct usb_interface *intf)
1508 struct usbtouch_usb *usbtouch = usb_get_intfdata(intf);
1509 struct input_dev *input = usbtouch->input;
1512 /* reinit the device */
1513 if (usbtouch->type->init) {
1514 err = usbtouch->type->init(usbtouch);
1517 "%s - type->init() failed, err: %d\n",
1523 /* restart IO if needed */
1524 mutex_lock(&input->mutex);
1526 err = usb_submit_urb(usbtouch->irq, GFP_NOIO);
1527 mutex_unlock(&input->mutex);
1532 static void usbtouch_free_buffers(struct usb_device *udev,
1533 struct usbtouch_usb *usbtouch)
1535 usb_free_coherent(udev, usbtouch->data_size,
1536 usbtouch->data, usbtouch->data_dma);
1537 kfree(usbtouch->buffer);
1540 static struct usb_endpoint_descriptor *
1541 usbtouch_get_input_endpoint(struct usb_host_interface *interface)
1545 for (i = 0; i < interface->desc.bNumEndpoints; i++)
1546 if (usb_endpoint_dir_in(&interface->endpoint[i].desc))
1547 return &interface->endpoint[i].desc;
1552 static int usbtouch_probe(struct usb_interface *intf,
1553 const struct usb_device_id *id)
1555 struct usbtouch_usb *usbtouch;
1556 struct input_dev *input_dev;
1557 struct usb_endpoint_descriptor *endpoint;
1558 struct usb_device *udev = interface_to_usbdev(intf);
1559 struct usbtouch_device_info *type;
1562 /* some devices are ignored */
1563 if (id->driver_info == DEVTYPE_IGNORE)
1566 endpoint = usbtouch_get_input_endpoint(intf->cur_altsetting);
1570 usbtouch = kzalloc(sizeof(struct usbtouch_usb), GFP_KERNEL);
1571 input_dev = input_allocate_device();
1572 if (!usbtouch || !input_dev)
1575 type = &usbtouch_dev_info[id->driver_info];
1576 usbtouch->type = type;
1577 if (!type->process_pkt)
1578 type->process_pkt = usbtouch_process_pkt;
1580 usbtouch->data_size = type->rept_size;
1581 if (type->get_pkt_len) {
1583 * When dealing with variable-length packets we should
1584 * not request more than wMaxPacketSize bytes at once
1585 * as we do not know if there is more data coming or
1586 * we filled exactly wMaxPacketSize bytes and there is
1589 usbtouch->data_size = min(usbtouch->data_size,
1590 usb_endpoint_maxp(endpoint));
1593 usbtouch->data = usb_alloc_coherent(udev, usbtouch->data_size,
1594 GFP_KERNEL, &usbtouch->data_dma);
1595 if (!usbtouch->data)
1598 if (type->get_pkt_len) {
1599 usbtouch->buffer = kmalloc(type->rept_size, GFP_KERNEL);
1600 if (!usbtouch->buffer)
1601 goto out_free_buffers;
1604 usbtouch->irq = usb_alloc_urb(0, GFP_KERNEL);
1605 if (!usbtouch->irq) {
1607 "%s - usb_alloc_urb failed: usbtouch->irq\n", __func__);
1608 goto out_free_buffers;
1611 usbtouch->interface = intf;
1612 usbtouch->input = input_dev;
1614 if (udev->manufacturer)
1615 strlcpy(usbtouch->name, udev->manufacturer, sizeof(usbtouch->name));
1617 if (udev->product) {
1618 if (udev->manufacturer)
1619 strlcat(usbtouch->name, " ", sizeof(usbtouch->name));
1620 strlcat(usbtouch->name, udev->product, sizeof(usbtouch->name));
1623 if (!strlen(usbtouch->name))
1624 snprintf(usbtouch->name, sizeof(usbtouch->name),
1625 "USB Touchscreen %04x:%04x",
1626 le16_to_cpu(udev->descriptor.idVendor),
1627 le16_to_cpu(udev->descriptor.idProduct));
1629 usb_make_path(udev, usbtouch->phys, sizeof(usbtouch->phys));
1630 strlcat(usbtouch->phys, "/input0", sizeof(usbtouch->phys));
1632 input_dev->name = usbtouch->name;
1633 input_dev->phys = usbtouch->phys;
1634 usb_to_input_id(udev, &input_dev->id);
1635 input_dev->dev.parent = &intf->dev;
1637 input_set_drvdata(input_dev, usbtouch);
1639 input_dev->open = usbtouch_open;
1640 input_dev->close = usbtouch_close;
1642 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
1643 input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
1644 input_set_abs_params(input_dev, ABS_X, type->min_xc, type->max_xc, 0, 0);
1645 input_set_abs_params(input_dev, ABS_Y, type->min_yc, type->max_yc, 0, 0);
1646 if (type->max_press)
1647 input_set_abs_params(input_dev, ABS_PRESSURE, type->min_press,
1648 type->max_press, 0, 0);
1650 if (usb_endpoint_type(endpoint) == USB_ENDPOINT_XFER_INT)
1651 usb_fill_int_urb(usbtouch->irq, udev,
1652 usb_rcvintpipe(udev, endpoint->bEndpointAddress),
1653 usbtouch->data, usbtouch->data_size,
1654 usbtouch_irq, usbtouch, endpoint->bInterval);
1656 usb_fill_bulk_urb(usbtouch->irq, udev,
1657 usb_rcvbulkpipe(udev, endpoint->bEndpointAddress),
1658 usbtouch->data, usbtouch->data_size,
1659 usbtouch_irq, usbtouch);
1661 usbtouch->irq->dev = udev;
1662 usbtouch->irq->transfer_dma = usbtouch->data_dma;
1663 usbtouch->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1665 /* device specific allocations */
1667 err = type->alloc(usbtouch);
1670 "%s - type->alloc() failed, err: %d\n",
1676 /* device specific initialisation*/
1678 err = type->init(usbtouch);
1681 "%s - type->init() failed, err: %d\n",
1687 err = input_register_device(usbtouch->input);
1690 "%s - input_register_device failed, err: %d\n",
1695 usb_set_intfdata(intf, usbtouch);
1697 if (usbtouch->type->irq_always) {
1698 /* this can't fail */
1699 usb_autopm_get_interface(intf);
1700 err = usb_submit_urb(usbtouch->irq, GFP_KERNEL);
1702 usb_autopm_put_interface(intf);
1704 "%s - usb_submit_urb failed with result: %d\n",
1706 goto out_unregister_input;
1712 out_unregister_input:
1713 input_unregister_device(input_dev);
1717 type->exit(usbtouch);
1719 usb_free_urb(usbtouch->irq);
1721 usbtouch_free_buffers(udev, usbtouch);
1723 input_free_device(input_dev);
1728 static void usbtouch_disconnect(struct usb_interface *intf)
1730 struct usbtouch_usb *usbtouch = usb_get_intfdata(intf);
1736 "%s - usbtouch is initialized, cleaning up\n", __func__);
1738 usb_set_intfdata(intf, NULL);
1739 /* this will stop IO via close */
1740 input_unregister_device(usbtouch->input);
1741 usb_free_urb(usbtouch->irq);
1742 if (usbtouch->type->exit)
1743 usbtouch->type->exit(usbtouch);
1744 usbtouch_free_buffers(interface_to_usbdev(intf), usbtouch);
1748 MODULE_DEVICE_TABLE(usb, usbtouch_devices);
1750 static struct usb_driver usbtouch_driver = {
1751 .name = "usbtouchscreen",
1752 .probe = usbtouch_probe,
1753 .disconnect = usbtouch_disconnect,
1754 .suspend = usbtouch_suspend,
1755 .resume = usbtouch_resume,
1756 .reset_resume = usbtouch_reset_resume,
1757 .id_table = usbtouch_devices,
1758 .supports_autosuspend = 1,
1761 module_usb_driver(usbtouch_driver);
1763 MODULE_AUTHOR(DRIVER_AUTHOR);
1764 MODULE_DESCRIPTION(DRIVER_DESC);
1765 MODULE_LICENSE("GPL");
1767 MODULE_ALIAS("touchkitusb");
1768 MODULE_ALIAS("itmtouch");
1769 MODULE_ALIAS("mtouchusb");