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/init.h>
55 #include <linux/usb.h>
56 #include <linux/usb/input.h>
57 #include <linux/hid.h>
60 #define DRIVER_VERSION "v0.6"
61 #define DRIVER_AUTHOR "Daniel Ritz <daniel.ritz@gmx.ch>"
62 #define DRIVER_DESC "USB Touchscreen Driver"
65 module_param(swap_xy, bool, 0644);
66 MODULE_PARM_DESC(swap_xy, "If set X and Y axes are swapped.");
68 static bool hwcalib_xy;
69 module_param(hwcalib_xy, bool, 0644);
70 MODULE_PARM_DESC(hwcalib_xy, "If set hw-calibrated X/Y are used if available");
72 /* device specifc data/functions */
74 struct usbtouch_device_info {
77 int min_press, max_press;
81 * Always service the USB devices irq not just when the input device is
82 * open. This is useful when devices have a watchdog which prevents us
83 * from periodically polling the device. Leave this unset unless your
84 * touchscreen device requires it, as it does consume more of the USB
89 void (*process_pkt) (struct usbtouch_usb *usbtouch, unsigned char *pkt, int len);
92 * used to get the packet len. possible return values:
95 * < 0: -return value more bytes needed
97 int (*get_pkt_len) (unsigned char *pkt, int len);
99 int (*read_data) (struct usbtouch_usb *usbtouch, unsigned char *pkt);
100 int (*alloc) (struct usbtouch_usb *usbtouch);
101 int (*init) (struct usbtouch_usb *usbtouch);
102 void (*exit) (struct usbtouch_usb *usbtouch);
105 /* a usbtouch device */
106 struct usbtouch_usb {
109 unsigned char *buffer;
112 struct usb_interface *interface;
113 struct input_dev *input;
114 struct usbtouch_device_info *type;
136 DEVTYPE_GENERAL_TOUCH,
147 #define USB_DEVICE_HID_CLASS(vend, prod) \
148 .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS \
149 | USB_DEVICE_ID_MATCH_DEVICE, \
150 .idVendor = (vend), \
151 .idProduct = (prod), \
152 .bInterfaceClass = USB_INTERFACE_CLASS_HID
154 static const struct usb_device_id usbtouch_devices[] = {
155 #ifdef CONFIG_TOUCHSCREEN_USB_EGALAX
156 /* ignore the HID capable devices, handled by usbhid */
157 {USB_DEVICE_HID_CLASS(0x0eef, 0x0001), .driver_info = DEVTYPE_IGNORE},
158 {USB_DEVICE_HID_CLASS(0x0eef, 0x0002), .driver_info = DEVTYPE_IGNORE},
160 /* normal device IDs */
161 {USB_DEVICE(0x3823, 0x0001), .driver_info = DEVTYPE_EGALAX},
162 {USB_DEVICE(0x3823, 0x0002), .driver_info = DEVTYPE_EGALAX},
163 {USB_DEVICE(0x0123, 0x0001), .driver_info = DEVTYPE_EGALAX},
164 {USB_DEVICE(0x0eef, 0x0001), .driver_info = DEVTYPE_EGALAX},
165 {USB_DEVICE(0x0eef, 0x0002), .driver_info = DEVTYPE_EGALAX},
166 {USB_DEVICE(0x1234, 0x0001), .driver_info = DEVTYPE_EGALAX},
167 {USB_DEVICE(0x1234, 0x0002), .driver_info = DEVTYPE_EGALAX},
170 #ifdef CONFIG_TOUCHSCREEN_USB_PANJIT
171 {USB_DEVICE(0x134c, 0x0001), .driver_info = DEVTYPE_PANJIT},
172 {USB_DEVICE(0x134c, 0x0002), .driver_info = DEVTYPE_PANJIT},
173 {USB_DEVICE(0x134c, 0x0003), .driver_info = DEVTYPE_PANJIT},
174 {USB_DEVICE(0x134c, 0x0004), .driver_info = DEVTYPE_PANJIT},
177 #ifdef CONFIG_TOUCHSCREEN_USB_3M
178 {USB_DEVICE(0x0596, 0x0001), .driver_info = DEVTYPE_3M},
181 #ifdef CONFIG_TOUCHSCREEN_USB_ITM
182 {USB_DEVICE(0x0403, 0xf9e9), .driver_info = DEVTYPE_ITM},
183 {USB_DEVICE(0x16e3, 0xf9e9), .driver_info = DEVTYPE_ITM},
186 #ifdef CONFIG_TOUCHSCREEN_USB_ETURBO
187 {USB_DEVICE(0x1234, 0x5678), .driver_info = DEVTYPE_ETURBO},
190 #ifdef CONFIG_TOUCHSCREEN_USB_GUNZE
191 {USB_DEVICE(0x0637, 0x0001), .driver_info = DEVTYPE_GUNZE},
194 #ifdef CONFIG_TOUCHSCREEN_USB_DMC_TSC10
195 {USB_DEVICE(0x0afa, 0x03e8), .driver_info = DEVTYPE_DMC_TSC10},
198 #ifdef CONFIG_TOUCHSCREEN_USB_IRTOUCH
199 {USB_DEVICE(0x595a, 0x0001), .driver_info = DEVTYPE_IRTOUCH},
200 {USB_DEVICE(0x6615, 0x0001), .driver_info = DEVTYPE_IRTOUCH},
203 #ifdef CONFIG_TOUCHSCREEN_USB_IDEALTEK
204 {USB_DEVICE(0x1391, 0x1000), .driver_info = DEVTYPE_IDEALTEK},
207 #ifdef CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH
208 {USB_DEVICE(0x0dfc, 0x0001), .driver_info = DEVTYPE_GENERAL_TOUCH},
211 #ifdef CONFIG_TOUCHSCREEN_USB_GOTOP
212 {USB_DEVICE(0x08f2, 0x007f), .driver_info = DEVTYPE_GOTOP},
213 {USB_DEVICE(0x08f2, 0x00ce), .driver_info = DEVTYPE_GOTOP},
214 {USB_DEVICE(0x08f2, 0x00f4), .driver_info = DEVTYPE_GOTOP},
217 #ifdef CONFIG_TOUCHSCREEN_USB_JASTEC
218 {USB_DEVICE(0x0f92, 0x0001), .driver_info = DEVTYPE_JASTEC},
221 #ifdef CONFIG_TOUCHSCREEN_USB_E2I
222 {USB_DEVICE(0x1ac7, 0x0001), .driver_info = DEVTYPE_E2I},
225 #ifdef CONFIG_TOUCHSCREEN_USB_ZYTRONIC
226 {USB_DEVICE(0x14c8, 0x0003), .driver_info = DEVTYPE_ZYTRONIC},
229 #ifdef CONFIG_TOUCHSCREEN_USB_ETT_TC45USB
231 {USB_DEVICE(0x0664, 0x0309), .driver_info = DEVTYPE_TC45USB},
233 {USB_DEVICE(0x0664, 0x0306), .driver_info = DEVTYPE_TC45USB},
236 #ifdef CONFIG_TOUCHSCREEN_USB_NEXIO
237 /* data interface only */
238 {USB_DEVICE_AND_INTERFACE_INFO(0x10f0, 0x2002, 0x0a, 0x00, 0x00),
239 .driver_info = DEVTYPE_NEXIO},
240 {USB_DEVICE_AND_INTERFACE_INFO(0x1870, 0x0001, 0x0a, 0x00, 0x00),
241 .driver_info = DEVTYPE_NEXIO},
244 #ifdef CONFIG_TOUCHSCREEN_USB_ELO
245 {USB_DEVICE(0x04e7, 0x0020), .driver_info = DEVTYPE_ELO},
248 #ifdef CONFIG_TOUCHSCREEN_USB_EASYTOUCH
249 {USB_DEVICE(0x7374, 0x0001), .driver_info = DEVTYPE_ETOUCH},
256 /*****************************************************************************
260 #ifdef CONFIG_TOUCHSCREEN_USB_E2I
261 static int e2i_init(struct usbtouch_usb *usbtouch)
264 struct usb_device *udev = interface_to_usbdev(usbtouch->interface);
266 ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
267 0x01, 0x02, 0x0000, 0x0081,
268 NULL, 0, USB_CTRL_SET_TIMEOUT);
270 dev_dbg(&usbtouch->interface->dev,
271 "%s - usb_control_msg - E2I_RESET - bytes|err: %d\n",
276 static int e2i_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
278 int tmp = (pkt[0] << 8) | pkt[1];
279 dev->x = (pkt[2] << 8) | pkt[3];
280 dev->y = (pkt[4] << 8) | pkt[5];
283 dev->touch = (tmp > 0);
284 dev->press = (tmp > 0 ? tmp : 0);
291 /*****************************************************************************
295 #ifdef CONFIG_TOUCHSCREEN_USB_EGALAX
301 #define EGALAX_PKT_TYPE_MASK 0xFE
302 #define EGALAX_PKT_TYPE_REPT 0x80
303 #define EGALAX_PKT_TYPE_DIAG 0x0A
305 static int egalax_init(struct usbtouch_usb *usbtouch)
309 struct usb_device *udev = interface_to_usbdev(usbtouch->interface);
312 * An eGalax diagnostic packet kicks the device into using the right
313 * protocol. We send a "check active" packet. The response will be
314 * read later and ignored.
317 buf = kmalloc(3, GFP_KERNEL);
321 buf[0] = EGALAX_PKT_TYPE_DIAG;
322 buf[1] = 1; /* length */
323 buf[2] = 'A'; /* command - check active */
325 for (i = 0; i < 3; i++) {
326 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
328 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
330 USB_CTRL_SET_TIMEOUT);
344 static int egalax_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
346 if ((pkt[0] & EGALAX_PKT_TYPE_MASK) != EGALAX_PKT_TYPE_REPT)
349 dev->x = ((pkt[3] & 0x0F) << 7) | (pkt[4] & 0x7F);
350 dev->y = ((pkt[1] & 0x0F) << 7) | (pkt[2] & 0x7F);
351 dev->touch = pkt[0] & 0x01;
356 static int egalax_get_pkt_len(unsigned char *buf, int len)
358 switch (buf[0] & EGALAX_PKT_TYPE_MASK) {
359 case EGALAX_PKT_TYPE_REPT:
362 case EGALAX_PKT_TYPE_DIAG:
373 /*****************************************************************************
377 #ifdef CONFIG_TOUCHSCREEN_USB_EASYTOUCH
383 #define ETOUCH_PKT_TYPE_MASK 0xFE
384 #define ETOUCH_PKT_TYPE_REPT 0x80
385 #define ETOUCH_PKT_TYPE_REPT2 0xB0
386 #define ETOUCH_PKT_TYPE_DIAG 0x0A
388 static int etouch_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
390 if ((pkt[0] & ETOUCH_PKT_TYPE_MASK) != ETOUCH_PKT_TYPE_REPT &&
391 (pkt[0] & ETOUCH_PKT_TYPE_MASK) != ETOUCH_PKT_TYPE_REPT2)
394 dev->x = ((pkt[1] & 0x1F) << 7) | (pkt[2] & 0x7F);
395 dev->y = ((pkt[3] & 0x1F) << 7) | (pkt[4] & 0x7F);
396 dev->touch = pkt[0] & 0x01;
401 static int etouch_get_pkt_len(unsigned char *buf, int len)
403 switch (buf[0] & ETOUCH_PKT_TYPE_MASK) {
404 case ETOUCH_PKT_TYPE_REPT:
405 case ETOUCH_PKT_TYPE_REPT2:
408 case ETOUCH_PKT_TYPE_DIAG:
419 /*****************************************************************************
422 #ifdef CONFIG_TOUCHSCREEN_USB_PANJIT
423 static int panjit_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
425 dev->x = ((pkt[2] & 0x0F) << 8) | pkt[1];
426 dev->y = ((pkt[4] & 0x0F) << 8) | pkt[3];
427 dev->touch = pkt[0] & 0x01;
434 /*****************************************************************************
437 #ifdef CONFIG_TOUCHSCREEN_USB_3M
439 #define MTOUCHUSB_ASYNC_REPORT 1
440 #define MTOUCHUSB_RESET 7
441 #define MTOUCHUSB_REQ_CTRLLR_ID 10
443 static int mtouch_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
446 dev->x = (pkt[4] << 8) | pkt[3];
447 dev->y = 0xffff - ((pkt[6] << 8) | pkt[5]);
449 dev->x = (pkt[8] << 8) | pkt[7];
450 dev->y = (pkt[10] << 8) | pkt[9];
452 dev->touch = (pkt[2] & 0x40) ? 1 : 0;
457 static int mtouch_init(struct usbtouch_usb *usbtouch)
460 struct usb_device *udev = interface_to_usbdev(usbtouch->interface);
462 ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
464 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
465 1, 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
466 dev_dbg(&usbtouch->interface->dev,
467 "%s - usb_control_msg - MTOUCHUSB_RESET - bytes|err: %d\n",
473 for (i = 0; i < 3; i++) {
474 ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
475 MTOUCHUSB_ASYNC_REPORT,
476 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
477 1, 1, NULL, 0, USB_CTRL_SET_TIMEOUT);
478 dev_dbg(&usbtouch->interface->dev,
479 "%s - usb_control_msg - MTOUCHUSB_ASYNC_REPORT - bytes|err: %d\n",
487 /* Default min/max xy are the raw values, override if using hw-calib */
489 input_set_abs_params(usbtouch->input, ABS_X, 0, 0xffff, 0, 0);
490 input_set_abs_params(usbtouch->input, ABS_Y, 0, 0xffff, 0, 0);
498 /*****************************************************************************
501 #ifdef CONFIG_TOUCHSCREEN_USB_ITM
502 static int itm_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
506 * ITM devices report invalid x/y data if not touched.
507 * if the screen was touched before but is not touched any more
508 * report touch as 0 with the last valid x/y data once. then stop
509 * reporting data until touched again.
511 dev->press = ((pkt[2] & 0x01) << 7) | (pkt[5] & 0x7F);
513 touch = ~pkt[7] & 0x20;
523 dev->x = ((pkt[0] & 0x1F) << 7) | (pkt[3] & 0x7F);
524 dev->y = ((pkt[1] & 0x1F) << 7) | (pkt[4] & 0x7F);
532 /*****************************************************************************
535 #ifdef CONFIG_TOUCHSCREEN_USB_ETURBO
539 static int eturbo_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
543 /* packets should start with sync */
544 if (!(pkt[0] & 0x80))
547 shift = (6 - (pkt[0] & 0x03));
548 dev->x = ((pkt[3] << 7) | pkt[4]) >> shift;
549 dev->y = ((pkt[1] << 7) | pkt[2]) >> shift;
550 dev->touch = (pkt[0] & 0x10) ? 1 : 0;
555 static int eturbo_get_pkt_len(unsigned char *buf, int len)
566 /*****************************************************************************
569 #ifdef CONFIG_TOUCHSCREEN_USB_GUNZE
570 static int gunze_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
572 if (!(pkt[0] & 0x80) || ((pkt[1] | pkt[2] | pkt[3]) & 0x80))
575 dev->x = ((pkt[0] & 0x1F) << 7) | (pkt[2] & 0x7F);
576 dev->y = ((pkt[1] & 0x1F) << 7) | (pkt[3] & 0x7F);
577 dev->touch = pkt[0] & 0x20;
583 /*****************************************************************************
586 * Documentation about the controller and it's protocol can be found at
587 * http://www.dmccoltd.com/files/controler/tsc10usb_pi_e.pdf
588 * http://www.dmccoltd.com/files/controler/tsc25_usb_e.pdf
590 #ifdef CONFIG_TOUCHSCREEN_USB_DMC_TSC10
592 /* supported data rates. currently using 130 */
593 #define TSC10_RATE_POINT 0x50
594 #define TSC10_RATE_30 0x40
595 #define TSC10_RATE_50 0x41
596 #define TSC10_RATE_80 0x42
597 #define TSC10_RATE_100 0x43
598 #define TSC10_RATE_130 0x44
599 #define TSC10_RATE_150 0x45
602 #define TSC10_CMD_RESET 0x55
603 #define TSC10_CMD_RATE 0x05
604 #define TSC10_CMD_DATA1 0x01
606 static int dmc_tsc10_init(struct usbtouch_usb *usbtouch)
608 struct usb_device *dev = interface_to_usbdev(usbtouch->interface);
612 buf = kmalloc(2, GFP_NOIO);
616 buf[0] = buf[1] = 0xFF;
617 ret = usb_control_msg(dev, usb_rcvctrlpipe (dev, 0),
619 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
620 0, 0, buf, 2, USB_CTRL_SET_TIMEOUT);
623 if (buf[0] != 0x06) {
628 /* set coordinate output rate */
629 buf[0] = buf[1] = 0xFF;
630 ret = usb_control_msg(dev, usb_rcvctrlpipe (dev, 0),
632 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
633 TSC10_RATE_150, 0, buf, 2, USB_CTRL_SET_TIMEOUT);
636 if ((buf[0] != 0x06) && (buf[0] != 0x15 || buf[1] != 0x01)) {
641 /* start sending data */
642 ret = usb_control_msg(dev, usb_rcvctrlpipe (dev, 0),
644 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
645 0, 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
653 static int dmc_tsc10_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
655 dev->x = ((pkt[2] & 0x03) << 8) | pkt[1];
656 dev->y = ((pkt[4] & 0x03) << 8) | pkt[3];
657 dev->touch = pkt[0] & 0x01;
664 /*****************************************************************************
667 #ifdef CONFIG_TOUCHSCREEN_USB_IRTOUCH
668 static int irtouch_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
670 dev->x = (pkt[3] << 8) | pkt[2];
671 dev->y = (pkt[5] << 8) | pkt[4];
672 dev->touch = (pkt[1] & 0x03) ? 1 : 0;
678 /*****************************************************************************
679 * ET&T TC5UH/TC4UM part
681 #ifdef CONFIG_TOUCHSCREEN_USB_ETT_TC45USB
682 static int tc45usb_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
684 dev->x = ((pkt[2] & 0x0F) << 8) | pkt[1];
685 dev->y = ((pkt[4] & 0x0F) << 8) | pkt[3];
686 dev->touch = pkt[0] & 0x01;
692 /*****************************************************************************
693 * IdealTEK URTC1000 Part
695 #ifdef CONFIG_TOUCHSCREEN_USB_IDEALTEK
699 static int idealtek_get_pkt_len(unsigned char *buf, int len)
708 static int idealtek_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
710 switch (pkt[0] & 0x98) {
712 /* touch data in IdealTEK mode */
713 dev->x = (pkt[1] << 5) | (pkt[2] >> 2);
714 dev->y = (pkt[3] << 5) | (pkt[4] >> 2);
715 dev->touch = (pkt[0] & 0x40) ? 1 : 0;
719 /* touch data in MT emulation mode */
720 dev->x = (pkt[2] << 5) | (pkt[1] >> 2);
721 dev->y = (pkt[4] << 5) | (pkt[3] >> 2);
722 dev->touch = (pkt[0] & 0x40) ? 1 : 0;
731 /*****************************************************************************
734 #ifdef CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH
735 static int general_touch_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
737 dev->x = (pkt[2] << 8) | pkt[1];
738 dev->y = (pkt[4] << 8) | pkt[3];
739 dev->press = pkt[5] & 0xff;
740 dev->touch = pkt[0] & 0x01;
746 /*****************************************************************************
749 #ifdef CONFIG_TOUCHSCREEN_USB_GOTOP
750 static int gotop_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
752 dev->x = ((pkt[1] & 0x38) << 4) | pkt[2];
753 dev->y = ((pkt[1] & 0x07) << 7) | pkt[3];
754 dev->touch = pkt[0] & 0x01;
760 /*****************************************************************************
763 #ifdef CONFIG_TOUCHSCREEN_USB_JASTEC
764 static int jastec_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
766 dev->x = ((pkt[0] & 0x3f) << 6) | (pkt[2] & 0x3f);
767 dev->y = ((pkt[1] & 0x3f) << 6) | (pkt[3] & 0x3f);
768 dev->touch = (pkt[0] & 0x40) >> 6;
774 /*****************************************************************************
777 #ifdef CONFIG_TOUCHSCREEN_USB_ZYTRONIC
778 static int zytronic_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
780 struct usb_interface *intf = dev->interface;
783 case 0x3A: /* command response */
784 dev_dbg(&intf->dev, "%s: Command response %d\n", __func__, pkt[1]);
787 case 0xC0: /* down */
788 dev->x = (pkt[1] & 0x7f) | ((pkt[2] & 0x07) << 7);
789 dev->y = (pkt[3] & 0x7f) | ((pkt[4] & 0x07) << 7);
791 dev_dbg(&intf->dev, "%s: down %d,%d\n", __func__, dev->x, dev->y);
795 dev->x = (pkt[1] & 0x7f) | ((pkt[2] & 0x07) << 7);
796 dev->y = (pkt[3] & 0x7f) | ((pkt[4] & 0x07) << 7);
798 dev_dbg(&intf->dev, "%s: up %d,%d\n", __func__, dev->x, dev->y);
802 dev_dbg(&intf->dev, "%s: Unknown return %d\n", __func__, pkt[0]);
810 /*****************************************************************************
813 #ifdef CONFIG_TOUCHSCREEN_USB_NEXIO
815 #define NEXIO_TIMEOUT 5000
816 #define NEXIO_BUFSIZE 1024
817 #define NEXIO_THRESHOLD 50
821 unsigned char *ack_buf;
824 struct nexio_touch_packet {
825 u8 flags; /* 0xe1 = touch, 0xe1 = release */
826 __be16 data_len; /* total bytes of touch data */
827 __be16 x_len; /* bytes for X axis */
828 __be16 y_len; /* bytes for Y axis */
830 } __attribute__ ((packed));
832 static unsigned char nexio_ack_pkt[2] = { 0xaa, 0x02 };
833 static unsigned char nexio_init_pkt[4] = { 0x82, 0x04, 0x0a, 0x0f };
835 static void nexio_ack_complete(struct urb *urb)
839 static int nexio_alloc(struct usbtouch_usb *usbtouch)
841 struct nexio_priv *priv;
844 usbtouch->priv = kmalloc(sizeof(struct nexio_priv), GFP_KERNEL);
848 priv = usbtouch->priv;
850 priv->ack_buf = kmemdup(nexio_ack_pkt, sizeof(nexio_ack_pkt),
855 priv->ack = usb_alloc_urb(0, GFP_KERNEL);
857 dev_dbg(&usbtouch->interface->dev,
858 "%s - usb_alloc_urb failed: usbtouch->ack\n", __func__);
865 kfree(priv->ack_buf);
872 static int nexio_init(struct usbtouch_usb *usbtouch)
874 struct usb_device *dev = interface_to_usbdev(usbtouch->interface);
875 struct usb_host_interface *interface = usbtouch->interface->cur_altsetting;
876 struct nexio_priv *priv = usbtouch->priv;
880 char *firmware_ver = NULL, *device_name = NULL;
881 int input_ep = 0, output_ep = 0;
883 /* find first input and output endpoint */
884 for (i = 0; i < interface->desc.bNumEndpoints; i++) {
886 usb_endpoint_dir_in(&interface->endpoint[i].desc))
887 input_ep = interface->endpoint[i].desc.bEndpointAddress;
889 usb_endpoint_dir_out(&interface->endpoint[i].desc))
890 output_ep = interface->endpoint[i].desc.bEndpointAddress;
892 if (!input_ep || !output_ep)
895 buf = kmalloc(NEXIO_BUFSIZE, GFP_NOIO);
899 /* two empty reads */
900 for (i = 0; i < 2; i++) {
901 ret = usb_bulk_msg(dev, usb_rcvbulkpipe(dev, input_ep),
902 buf, NEXIO_BUFSIZE, &actual_len,
908 /* send init command */
909 memcpy(buf, nexio_init_pkt, sizeof(nexio_init_pkt));
910 ret = usb_bulk_msg(dev, usb_sndbulkpipe(dev, output_ep),
911 buf, sizeof(nexio_init_pkt), &actual_len,
917 for (i = 0; i < 3; i++) {
918 memset(buf, 0, NEXIO_BUFSIZE);
919 ret = usb_bulk_msg(dev, usb_rcvbulkpipe(dev, input_ep),
920 buf, NEXIO_BUFSIZE, &actual_len,
922 if (ret < 0 || actual_len < 1 || buf[1] != actual_len)
925 case 0x83: /* firmware version */
927 firmware_ver = kstrdup(&buf[2], GFP_NOIO);
929 case 0x84: /* device name */
931 device_name = kstrdup(&buf[2], GFP_NOIO);
936 printk(KERN_INFO "Nexio device: %s, firmware version: %s\n",
937 device_name, firmware_ver);
942 usb_fill_bulk_urb(priv->ack, dev, usb_sndbulkpipe(dev, output_ep),
943 priv->ack_buf, sizeof(nexio_ack_pkt),
944 nexio_ack_complete, usbtouch);
952 static void nexio_exit(struct usbtouch_usb *usbtouch)
954 struct nexio_priv *priv = usbtouch->priv;
956 usb_kill_urb(priv->ack);
957 usb_free_urb(priv->ack);
958 kfree(priv->ack_buf);
962 static int nexio_read_data(struct usbtouch_usb *usbtouch, unsigned char *pkt)
964 struct nexio_touch_packet *packet = (void *) pkt;
965 struct nexio_priv *priv = usbtouch->priv;
966 unsigned int data_len = be16_to_cpu(packet->data_len);
967 unsigned int x_len = be16_to_cpu(packet->x_len);
968 unsigned int y_len = be16_to_cpu(packet->y_len);
969 int x, y, begin_x, begin_y, end_x, end_y, w, h, ret;
971 /* got touch data? */
972 if ((pkt[0] & 0xe0) != 0xe0)
981 ret = usb_submit_urb(priv->ack, GFP_ATOMIC);
983 if (!usbtouch->type->max_xc) {
984 usbtouch->type->max_xc = 2 * x_len;
985 input_set_abs_params(usbtouch->input, ABS_X,
986 0, usbtouch->type->max_xc, 0, 0);
987 usbtouch->type->max_yc = 2 * y_len;
988 input_set_abs_params(usbtouch->input, ABS_Y,
989 0, usbtouch->type->max_yc, 0, 0);
992 * The device reports state of IR sensors on X and Y axes.
993 * Each byte represents "darkness" percentage (0-100) of one element.
994 * 17" touchscreen reports only 64 x 52 bytes so the resolution is low.
995 * This also means that there's a limited multi-touch capability but
996 * it's disabled (and untested) here as there's no X driver for that.
998 begin_x = end_x = begin_y = end_y = -1;
999 for (x = 0; x < x_len; x++) {
1000 if (begin_x == -1 && packet->data[x] > NEXIO_THRESHOLD) {
1004 if (end_x == -1 && begin_x != -1 && packet->data[x] < NEXIO_THRESHOLD) {
1006 for (y = x_len; y < data_len; y++) {
1007 if (begin_y == -1 && packet->data[y] > NEXIO_THRESHOLD) {
1008 begin_y = y - x_len;
1012 begin_y != -1 && packet->data[y] < NEXIO_THRESHOLD) {
1013 end_y = y - 1 - x_len;
1014 w = end_x - begin_x;
1015 h = end_y - begin_y;
1018 input_report_abs(usbtouch->input,
1019 ABS_MT_TOUCH_MAJOR, max(w,h));
1020 input_report_abs(usbtouch->input,
1021 ABS_MT_TOUCH_MINOR, min(x,h));
1022 input_report_abs(usbtouch->input,
1023 ABS_MT_POSITION_X, 2*begin_x+w);
1024 input_report_abs(usbtouch->input,
1025 ABS_MT_POSITION_Y, 2*begin_y+h);
1026 input_report_abs(usbtouch->input,
1027 ABS_MT_ORIENTATION, w > h);
1028 input_mt_sync(usbtouch->input);
1031 usbtouch->x = 2 * begin_x + w;
1032 usbtouch->y = 2 * begin_y + h;
1033 usbtouch->touch = packet->flags & 0x01;
1034 begin_y = end_y = -1;
1038 begin_x = end_x = -1;
1047 /*****************************************************************************
1051 #ifdef CONFIG_TOUCHSCREEN_USB_ELO
1053 static int elo_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
1055 dev->x = (pkt[3] << 8) | pkt[2];
1056 dev->y = (pkt[5] << 8) | pkt[4];
1057 dev->touch = pkt[6] > 0;
1058 dev->press = pkt[6];
1065 /*****************************************************************************
1066 * the different device descriptors
1069 static void usbtouch_process_multi(struct usbtouch_usb *usbtouch,
1070 unsigned char *pkt, int len);
1073 static struct usbtouch_device_info usbtouch_dev_info[] = {
1074 #ifdef CONFIG_TOUCHSCREEN_USB_ELO
1082 .read_data = elo_read_data,
1086 #ifdef CONFIG_TOUCHSCREEN_USB_EGALAX
1087 [DEVTYPE_EGALAX] = {
1093 .process_pkt = usbtouch_process_multi,
1094 .get_pkt_len = egalax_get_pkt_len,
1095 .read_data = egalax_read_data,
1096 .init = egalax_init,
1100 #ifdef CONFIG_TOUCHSCREEN_USB_PANJIT
1101 [DEVTYPE_PANJIT] = {
1107 .read_data = panjit_read_data,
1111 #ifdef CONFIG_TOUCHSCREEN_USB_3M
1118 .read_data = mtouch_read_data,
1119 .init = mtouch_init,
1123 #ifdef CONFIG_TOUCHSCREEN_USB_ITM
1131 .read_data = itm_read_data,
1135 #ifdef CONFIG_TOUCHSCREEN_USB_ETURBO
1136 [DEVTYPE_ETURBO] = {
1142 .process_pkt = usbtouch_process_multi,
1143 .get_pkt_len = eturbo_get_pkt_len,
1144 .read_data = eturbo_read_data,
1148 #ifdef CONFIG_TOUCHSCREEN_USB_GUNZE
1155 .read_data = gunze_read_data,
1159 #ifdef CONFIG_TOUCHSCREEN_USB_DMC_TSC10
1160 [DEVTYPE_DMC_TSC10] = {
1166 .init = dmc_tsc10_init,
1167 .read_data = dmc_tsc10_read_data,
1171 #ifdef CONFIG_TOUCHSCREEN_USB_IRTOUCH
1172 [DEVTYPE_IRTOUCH] = {
1178 .read_data = irtouch_read_data,
1182 #ifdef CONFIG_TOUCHSCREEN_USB_IDEALTEK
1183 [DEVTYPE_IDEALTEK] = {
1189 .process_pkt = usbtouch_process_multi,
1190 .get_pkt_len = idealtek_get_pkt_len,
1191 .read_data = idealtek_read_data,
1195 #ifdef CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH
1196 [DEVTYPE_GENERAL_TOUCH] = {
1202 .read_data = general_touch_read_data,
1206 #ifdef CONFIG_TOUCHSCREEN_USB_GOTOP
1213 .read_data = gotop_read_data,
1217 #ifdef CONFIG_TOUCHSCREEN_USB_JASTEC
1218 [DEVTYPE_JASTEC] = {
1224 .read_data = jastec_read_data,
1228 #ifdef CONFIG_TOUCHSCREEN_USB_E2I
1236 .read_data = e2i_read_data,
1240 #ifdef CONFIG_TOUCHSCREEN_USB_ZYTRONIC
1241 [DEVTYPE_ZYTRONIC] = {
1247 .read_data = zytronic_read_data,
1252 #ifdef CONFIG_TOUCHSCREEN_USB_ETT_TC45USB
1253 [DEVTYPE_TC45USB] = {
1259 .read_data = tc45usb_read_data,
1263 #ifdef CONFIG_TOUCHSCREEN_USB_NEXIO
1267 .read_data = nexio_read_data,
1268 .alloc = nexio_alloc,
1273 #ifdef CONFIG_TOUCHSCREEN_USB_EASYTOUCH
1274 [DEVTYPE_ETOUCH] = {
1280 .process_pkt = usbtouch_process_multi,
1281 .get_pkt_len = etouch_get_pkt_len,
1282 .read_data = etouch_read_data,
1288 /*****************************************************************************
1291 static void usbtouch_process_pkt(struct usbtouch_usb *usbtouch,
1292 unsigned char *pkt, int len)
1294 struct usbtouch_device_info *type = usbtouch->type;
1296 if (!type->read_data(usbtouch, pkt))
1299 input_report_key(usbtouch->input, BTN_TOUCH, usbtouch->touch);
1302 input_report_abs(usbtouch->input, ABS_X, usbtouch->y);
1303 input_report_abs(usbtouch->input, ABS_Y, usbtouch->x);
1305 input_report_abs(usbtouch->input, ABS_X, usbtouch->x);
1306 input_report_abs(usbtouch->input, ABS_Y, usbtouch->y);
1308 if (type->max_press)
1309 input_report_abs(usbtouch->input, ABS_PRESSURE, usbtouch->press);
1310 input_sync(usbtouch->input);
1315 static void usbtouch_process_multi(struct usbtouch_usb *usbtouch,
1316 unsigned char *pkt, int len)
1318 unsigned char *buffer;
1319 int pkt_len, pos, buf_len, tmp;
1321 /* process buffer */
1322 if (unlikely(usbtouch->buf_len)) {
1323 /* try to get size */
1324 pkt_len = usbtouch->type->get_pkt_len(
1325 usbtouch->buffer, usbtouch->buf_len);
1328 if (unlikely(!pkt_len))
1331 /* need to append -pkt_len bytes before able to get size */
1332 if (unlikely(pkt_len < 0)) {
1333 int append = -pkt_len;
1334 if (unlikely(append > len))
1336 if (usbtouch->buf_len + append >= usbtouch->type->rept_size)
1338 memcpy(usbtouch->buffer + usbtouch->buf_len, pkt, append);
1339 usbtouch->buf_len += append;
1341 pkt_len = usbtouch->type->get_pkt_len(
1342 usbtouch->buffer, usbtouch->buf_len);
1348 tmp = pkt_len - usbtouch->buf_len;
1349 if (usbtouch->buf_len + tmp >= usbtouch->type->rept_size)
1351 memcpy(usbtouch->buffer + usbtouch->buf_len, pkt, tmp);
1352 usbtouch_process_pkt(usbtouch, usbtouch->buffer, pkt_len);
1355 buf_len = len - tmp;
1361 /* loop over the received packet, process */
1363 while (pos < buf_len) {
1364 /* get packet len */
1365 pkt_len = usbtouch->type->get_pkt_len(buffer + pos,
1368 /* unknown packet: skip one byte */
1369 if (unlikely(!pkt_len)) {
1374 /* full packet: process */
1375 if (likely((pkt_len > 0) && (pkt_len <= buf_len - pos))) {
1376 usbtouch_process_pkt(usbtouch, buffer + pos, pkt_len);
1378 /* incomplete packet: save in buffer */
1379 memcpy(usbtouch->buffer, buffer + pos, buf_len - pos);
1380 usbtouch->buf_len = buf_len - pos;
1387 usbtouch->buf_len = 0;
1393 static void usbtouch_irq(struct urb *urb)
1395 struct usbtouch_usb *usbtouch = urb->context;
1396 struct device *dev = &usbtouch->interface->dev;
1399 switch (urb->status) {
1404 /* this urb is timing out */
1406 "%s - urb timed out - was the device unplugged?\n",
1413 /* this urb is terminated, clean up */
1414 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
1415 __func__, urb->status);
1418 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
1419 __func__, urb->status);
1423 usbtouch->type->process_pkt(usbtouch, usbtouch->data, urb->actual_length);
1426 usb_mark_last_busy(interface_to_usbdev(usbtouch->interface));
1427 retval = usb_submit_urb(urb, GFP_ATOMIC);
1429 dev_err(dev, "%s - usb_submit_urb failed with result: %d\n",
1433 static int usbtouch_open(struct input_dev *input)
1435 struct usbtouch_usb *usbtouch = input_get_drvdata(input);
1438 usbtouch->irq->dev = interface_to_usbdev(usbtouch->interface);
1440 r = usb_autopm_get_interface(usbtouch->interface) ? -EIO : 0;
1444 if (!usbtouch->type->irq_always) {
1445 if (usb_submit_urb(usbtouch->irq, GFP_KERNEL)) {
1451 usbtouch->interface->needs_remote_wakeup = 1;
1453 usb_autopm_put_interface(usbtouch->interface);
1458 static void usbtouch_close(struct input_dev *input)
1460 struct usbtouch_usb *usbtouch = input_get_drvdata(input);
1463 if (!usbtouch->type->irq_always)
1464 usb_kill_urb(usbtouch->irq);
1465 r = usb_autopm_get_interface(usbtouch->interface);
1466 usbtouch->interface->needs_remote_wakeup = 0;
1468 usb_autopm_put_interface(usbtouch->interface);
1471 static int usbtouch_suspend
1472 (struct usb_interface *intf, pm_message_t message)
1474 struct usbtouch_usb *usbtouch = usb_get_intfdata(intf);
1476 usb_kill_urb(usbtouch->irq);
1481 static int usbtouch_resume(struct usb_interface *intf)
1483 struct usbtouch_usb *usbtouch = usb_get_intfdata(intf);
1484 struct input_dev *input = usbtouch->input;
1487 mutex_lock(&input->mutex);
1488 if (input->users || usbtouch->type->irq_always)
1489 result = usb_submit_urb(usbtouch->irq, GFP_NOIO);
1490 mutex_unlock(&input->mutex);
1495 static int usbtouch_reset_resume(struct usb_interface *intf)
1497 struct usbtouch_usb *usbtouch = usb_get_intfdata(intf);
1498 struct input_dev *input = usbtouch->input;
1501 /* reinit the device */
1502 if (usbtouch->type->init) {
1503 err = usbtouch->type->init(usbtouch);
1506 "%s - type->init() failed, err: %d\n",
1512 /* restart IO if needed */
1513 mutex_lock(&input->mutex);
1515 err = usb_submit_urb(usbtouch->irq, GFP_NOIO);
1516 mutex_unlock(&input->mutex);
1521 static void usbtouch_free_buffers(struct usb_device *udev,
1522 struct usbtouch_usb *usbtouch)
1524 usb_free_coherent(udev, usbtouch->type->rept_size,
1525 usbtouch->data, usbtouch->data_dma);
1526 kfree(usbtouch->buffer);
1529 static struct usb_endpoint_descriptor *
1530 usbtouch_get_input_endpoint(struct usb_host_interface *interface)
1534 for (i = 0; i < interface->desc.bNumEndpoints; i++)
1535 if (usb_endpoint_dir_in(&interface->endpoint[i].desc))
1536 return &interface->endpoint[i].desc;
1541 static int usbtouch_probe(struct usb_interface *intf,
1542 const struct usb_device_id *id)
1544 struct usbtouch_usb *usbtouch;
1545 struct input_dev *input_dev;
1546 struct usb_endpoint_descriptor *endpoint;
1547 struct usb_device *udev = interface_to_usbdev(intf);
1548 struct usbtouch_device_info *type;
1551 /* some devices are ignored */
1552 if (id->driver_info == DEVTYPE_IGNORE)
1555 endpoint = usbtouch_get_input_endpoint(intf->cur_altsetting);
1559 usbtouch = kzalloc(sizeof(struct usbtouch_usb), GFP_KERNEL);
1560 input_dev = input_allocate_device();
1561 if (!usbtouch || !input_dev)
1564 type = &usbtouch_dev_info[id->driver_info];
1565 usbtouch->type = type;
1566 if (!type->process_pkt)
1567 type->process_pkt = usbtouch_process_pkt;
1569 usbtouch->data = usb_alloc_coherent(udev, type->rept_size,
1570 GFP_KERNEL, &usbtouch->data_dma);
1571 if (!usbtouch->data)
1574 if (type->get_pkt_len) {
1575 usbtouch->buffer = kmalloc(type->rept_size, GFP_KERNEL);
1576 if (!usbtouch->buffer)
1577 goto out_free_buffers;
1580 usbtouch->irq = usb_alloc_urb(0, GFP_KERNEL);
1581 if (!usbtouch->irq) {
1583 "%s - usb_alloc_urb failed: usbtouch->irq\n", __func__);
1584 goto out_free_buffers;
1587 usbtouch->interface = intf;
1588 usbtouch->input = input_dev;
1590 if (udev->manufacturer)
1591 strlcpy(usbtouch->name, udev->manufacturer, sizeof(usbtouch->name));
1593 if (udev->product) {
1594 if (udev->manufacturer)
1595 strlcat(usbtouch->name, " ", sizeof(usbtouch->name));
1596 strlcat(usbtouch->name, udev->product, sizeof(usbtouch->name));
1599 if (!strlen(usbtouch->name))
1600 snprintf(usbtouch->name, sizeof(usbtouch->name),
1601 "USB Touchscreen %04x:%04x",
1602 le16_to_cpu(udev->descriptor.idVendor),
1603 le16_to_cpu(udev->descriptor.idProduct));
1605 usb_make_path(udev, usbtouch->phys, sizeof(usbtouch->phys));
1606 strlcat(usbtouch->phys, "/input0", sizeof(usbtouch->phys));
1608 input_dev->name = usbtouch->name;
1609 input_dev->phys = usbtouch->phys;
1610 usb_to_input_id(udev, &input_dev->id);
1611 input_dev->dev.parent = &intf->dev;
1613 input_set_drvdata(input_dev, usbtouch);
1615 input_dev->open = usbtouch_open;
1616 input_dev->close = usbtouch_close;
1618 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
1619 input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
1620 input_set_abs_params(input_dev, ABS_X, type->min_xc, type->max_xc, 0, 0);
1621 input_set_abs_params(input_dev, ABS_Y, type->min_yc, type->max_yc, 0, 0);
1622 if (type->max_press)
1623 input_set_abs_params(input_dev, ABS_PRESSURE, type->min_press,
1624 type->max_press, 0, 0);
1626 if (usb_endpoint_type(endpoint) == USB_ENDPOINT_XFER_INT)
1627 usb_fill_int_urb(usbtouch->irq, udev,
1628 usb_rcvintpipe(udev, endpoint->bEndpointAddress),
1629 usbtouch->data, type->rept_size,
1630 usbtouch_irq, usbtouch, endpoint->bInterval);
1632 usb_fill_bulk_urb(usbtouch->irq, udev,
1633 usb_rcvbulkpipe(udev, endpoint->bEndpointAddress),
1634 usbtouch->data, type->rept_size,
1635 usbtouch_irq, usbtouch);
1637 usbtouch->irq->dev = udev;
1638 usbtouch->irq->transfer_dma = usbtouch->data_dma;
1639 usbtouch->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1641 /* device specific allocations */
1643 err = type->alloc(usbtouch);
1646 "%s - type->alloc() failed, err: %d\n",
1652 /* device specific initialisation*/
1654 err = type->init(usbtouch);
1657 "%s - type->init() failed, err: %d\n",
1663 err = input_register_device(usbtouch->input);
1666 "%s - input_register_device failed, err: %d\n",
1671 usb_set_intfdata(intf, usbtouch);
1673 if (usbtouch->type->irq_always) {
1674 /* this can't fail */
1675 usb_autopm_get_interface(intf);
1676 err = usb_submit_urb(usbtouch->irq, GFP_KERNEL);
1678 usb_autopm_put_interface(intf);
1680 "%s - usb_submit_urb failed with result: %d\n",
1682 goto out_unregister_input;
1688 out_unregister_input:
1689 input_unregister_device(input_dev);
1693 type->exit(usbtouch);
1695 usb_free_urb(usbtouch->irq);
1697 usbtouch_free_buffers(udev, usbtouch);
1699 input_free_device(input_dev);
1704 static void usbtouch_disconnect(struct usb_interface *intf)
1706 struct usbtouch_usb *usbtouch = usb_get_intfdata(intf);
1712 "%s - usbtouch is initialized, cleaning up\n", __func__);
1714 usb_set_intfdata(intf, NULL);
1715 /* this will stop IO via close */
1716 input_unregister_device(usbtouch->input);
1717 usb_free_urb(usbtouch->irq);
1718 if (usbtouch->type->exit)
1719 usbtouch->type->exit(usbtouch);
1720 usbtouch_free_buffers(interface_to_usbdev(intf), usbtouch);
1724 MODULE_DEVICE_TABLE(usb, usbtouch_devices);
1726 static struct usb_driver usbtouch_driver = {
1727 .name = "usbtouchscreen",
1728 .probe = usbtouch_probe,
1729 .disconnect = usbtouch_disconnect,
1730 .suspend = usbtouch_suspend,
1731 .resume = usbtouch_resume,
1732 .reset_resume = usbtouch_reset_resume,
1733 .id_table = usbtouch_devices,
1734 .supports_autosuspend = 1,
1737 module_usb_driver(usbtouch_driver);
1739 MODULE_AUTHOR(DRIVER_AUTHOR);
1740 MODULE_DESCRIPTION(DRIVER_DESC);
1741 MODULE_LICENSE("GPL");
1743 MODULE_ALIAS("touchkitusb");
1744 MODULE_ALIAS("itmtouch");
1745 MODULE_ALIAS("mtouchusb");