1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /******************************************************************************
4 * Driver for USB Touchscreens, supporting those devices:
6 * includes eTurboTouch CT-410/510/700
7 * - 3M/Microtouch EX II series
13 * - IRTOUCHSYSTEMS/UNITOP
16 * - GoTop Super_Q2/GogoPen/PenPower tablets
17 * - JASTEC USB touch controller/DigiTech DTR-02U
18 * - Zytronic capacitive touchscreen
20 * - Elo TouchSystems 2700 IntelliTouch
21 * - EasyTouch USB Dual/Multi touch controller from Data Modul
24 * Copyright (C) by Todd E. Johnson (mtouchusb.c)
26 * Driver is based on touchkitusb.c
27 * - ITM parts are from itmtouch.c
28 * - 3M parts are from mtouchusb.c
29 * - PanJit parts are from an unmerged driver by Lanslott Gish
30 * - DMC TSC 10/25 are from Holger Schurig, with ideas from an unmerged
31 * driver from Marius Vollmer
33 *****************************************************************************/
37 #include <linux/kernel.h>
38 #include <linux/slab.h>
39 #include <linux/input.h>
40 #include <linux/module.h>
41 #include <linux/usb.h>
42 #include <linux/usb/input.h>
43 #include <linux/hid.h>
44 #include <linux/mutex.h>
47 module_param(swap_xy, bool, 0644);
48 MODULE_PARM_DESC(swap_xy, "If set X and Y axes are swapped.");
50 static bool hwcalib_xy;
51 module_param(hwcalib_xy, bool, 0644);
52 MODULE_PARM_DESC(hwcalib_xy, "If set hw-calibrated X/Y are used if available");
54 /* device specifc data/functions */
56 struct usbtouch_device_info {
59 int min_press, max_press;
63 * Always service the USB devices irq not just when the input device is
64 * open. This is useful when devices have a watchdog which prevents us
65 * from periodically polling the device. Leave this unset unless your
66 * touchscreen device requires it, as it does consume more of the USB
71 void (*process_pkt) (struct usbtouch_usb *usbtouch, unsigned char *pkt, int len);
74 * used to get the packet len. possible return values:
77 * < 0: -return value more bytes needed
79 int (*get_pkt_len) (unsigned char *pkt, int len);
81 int (*read_data) (struct usbtouch_usb *usbtouch, unsigned char *pkt);
82 int (*alloc) (struct usbtouch_usb *usbtouch);
83 int (*init) (struct usbtouch_usb *usbtouch);
84 void (*exit) (struct usbtouch_usb *usbtouch);
87 /* a usbtouch device */
92 unsigned char *buffer;
95 struct usb_interface *interface;
96 struct input_dev *input;
97 struct usbtouch_device_info *type;
98 struct mutex pm_mutex; /* serialize access to open/suspend */
120 DEVTYPE_IRTOUCH_HIRES,
122 DEVTYPE_GENERAL_TOUCH,
133 #define USB_DEVICE_HID_CLASS(vend, prod) \
134 .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS \
135 | USB_DEVICE_ID_MATCH_DEVICE, \
136 .idVendor = (vend), \
137 .idProduct = (prod), \
138 .bInterfaceClass = USB_INTERFACE_CLASS_HID
140 static const struct usb_device_id usbtouch_devices[] = {
141 #ifdef CONFIG_TOUCHSCREEN_USB_EGALAX
142 /* ignore the HID capable devices, handled by usbhid */
143 {USB_DEVICE_HID_CLASS(0x0eef, 0x0001), .driver_info = DEVTYPE_IGNORE},
144 {USB_DEVICE_HID_CLASS(0x0eef, 0x0002), .driver_info = DEVTYPE_IGNORE},
146 /* normal device IDs */
147 {USB_DEVICE(0x3823, 0x0001), .driver_info = DEVTYPE_EGALAX},
148 {USB_DEVICE(0x3823, 0x0002), .driver_info = DEVTYPE_EGALAX},
149 {USB_DEVICE(0x0123, 0x0001), .driver_info = DEVTYPE_EGALAX},
150 {USB_DEVICE(0x0eef, 0x0001), .driver_info = DEVTYPE_EGALAX},
151 {USB_DEVICE(0x0eef, 0x0002), .driver_info = DEVTYPE_EGALAX},
152 {USB_DEVICE(0x1234, 0x0001), .driver_info = DEVTYPE_EGALAX},
153 {USB_DEVICE(0x1234, 0x0002), .driver_info = DEVTYPE_EGALAX},
156 #ifdef CONFIG_TOUCHSCREEN_USB_PANJIT
157 {USB_DEVICE(0x134c, 0x0001), .driver_info = DEVTYPE_PANJIT},
158 {USB_DEVICE(0x134c, 0x0002), .driver_info = DEVTYPE_PANJIT},
159 {USB_DEVICE(0x134c, 0x0003), .driver_info = DEVTYPE_PANJIT},
160 {USB_DEVICE(0x134c, 0x0004), .driver_info = DEVTYPE_PANJIT},
163 #ifdef CONFIG_TOUCHSCREEN_USB_3M
164 {USB_DEVICE(0x0596, 0x0001), .driver_info = DEVTYPE_3M},
167 #ifdef CONFIG_TOUCHSCREEN_USB_ITM
168 {USB_DEVICE(0x0403, 0xf9e9), .driver_info = DEVTYPE_ITM},
169 {USB_DEVICE(0x16e3, 0xf9e9), .driver_info = DEVTYPE_ITM},
172 #ifdef CONFIG_TOUCHSCREEN_USB_ETURBO
173 {USB_DEVICE(0x1234, 0x5678), .driver_info = DEVTYPE_ETURBO},
176 #ifdef CONFIG_TOUCHSCREEN_USB_GUNZE
177 {USB_DEVICE(0x0637, 0x0001), .driver_info = DEVTYPE_GUNZE},
180 #ifdef CONFIG_TOUCHSCREEN_USB_DMC_TSC10
181 {USB_DEVICE(0x0afa, 0x03e8), .driver_info = DEVTYPE_DMC_TSC10},
184 #ifdef CONFIG_TOUCHSCREEN_USB_IRTOUCH
185 {USB_DEVICE(0x255e, 0x0001), .driver_info = DEVTYPE_IRTOUCH},
186 {USB_DEVICE(0x595a, 0x0001), .driver_info = DEVTYPE_IRTOUCH},
187 {USB_DEVICE(0x6615, 0x0001), .driver_info = DEVTYPE_IRTOUCH},
188 {USB_DEVICE(0x6615, 0x0012), .driver_info = DEVTYPE_IRTOUCH_HIRES},
191 #ifdef CONFIG_TOUCHSCREEN_USB_IDEALTEK
192 {USB_DEVICE(0x1391, 0x1000), .driver_info = DEVTYPE_IDEALTEK},
195 #ifdef CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH
196 {USB_DEVICE(0x0dfc, 0x0001), .driver_info = DEVTYPE_GENERAL_TOUCH},
199 #ifdef CONFIG_TOUCHSCREEN_USB_GOTOP
200 {USB_DEVICE(0x08f2, 0x007f), .driver_info = DEVTYPE_GOTOP},
201 {USB_DEVICE(0x08f2, 0x00ce), .driver_info = DEVTYPE_GOTOP},
202 {USB_DEVICE(0x08f2, 0x00f4), .driver_info = DEVTYPE_GOTOP},
205 #ifdef CONFIG_TOUCHSCREEN_USB_JASTEC
206 {USB_DEVICE(0x0f92, 0x0001), .driver_info = DEVTYPE_JASTEC},
209 #ifdef CONFIG_TOUCHSCREEN_USB_E2I
210 {USB_DEVICE(0x1ac7, 0x0001), .driver_info = DEVTYPE_E2I},
213 #ifdef CONFIG_TOUCHSCREEN_USB_ZYTRONIC
214 {USB_DEVICE(0x14c8, 0x0003), .driver_info = DEVTYPE_ZYTRONIC},
217 #ifdef CONFIG_TOUCHSCREEN_USB_ETT_TC45USB
219 {USB_DEVICE(0x0664, 0x0309), .driver_info = DEVTYPE_TC45USB},
221 {USB_DEVICE(0x0664, 0x0306), .driver_info = DEVTYPE_TC45USB},
224 #ifdef CONFIG_TOUCHSCREEN_USB_NEXIO
225 /* data interface only */
226 {USB_DEVICE_AND_INTERFACE_INFO(0x10f0, 0x2002, 0x0a, 0x00, 0x00),
227 .driver_info = DEVTYPE_NEXIO},
228 {USB_DEVICE_AND_INTERFACE_INFO(0x1870, 0x0001, 0x0a, 0x00, 0x00),
229 .driver_info = DEVTYPE_NEXIO},
232 #ifdef CONFIG_TOUCHSCREEN_USB_ELO
233 {USB_DEVICE(0x04e7, 0x0020), .driver_info = DEVTYPE_ELO},
236 #ifdef CONFIG_TOUCHSCREEN_USB_EASYTOUCH
237 {USB_DEVICE(0x7374, 0x0001), .driver_info = DEVTYPE_ETOUCH},
244 /*****************************************************************************
248 #ifdef CONFIG_TOUCHSCREEN_USB_E2I
249 static int e2i_init(struct usbtouch_usb *usbtouch)
252 struct usb_device *udev = interface_to_usbdev(usbtouch->interface);
254 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
255 0x01, 0x02, 0x0000, 0x0081,
256 NULL, 0, USB_CTRL_SET_TIMEOUT);
258 dev_dbg(&usbtouch->interface->dev,
259 "%s - usb_control_msg - E2I_RESET - bytes|err: %d\n",
264 static int e2i_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
266 int tmp = (pkt[0] << 8) | pkt[1];
267 dev->x = (pkt[2] << 8) | pkt[3];
268 dev->y = (pkt[4] << 8) | pkt[5];
271 dev->touch = (tmp > 0);
272 dev->press = (tmp > 0 ? tmp : 0);
279 /*****************************************************************************
283 #ifdef CONFIG_TOUCHSCREEN_USB_EGALAX
289 #define EGALAX_PKT_TYPE_MASK 0xFE
290 #define EGALAX_PKT_TYPE_REPT 0x80
291 #define EGALAX_PKT_TYPE_DIAG 0x0A
293 static int egalax_init(struct usbtouch_usb *usbtouch)
297 struct usb_device *udev = interface_to_usbdev(usbtouch->interface);
300 * An eGalax diagnostic packet kicks the device into using the right
301 * protocol. We send a "check active" packet. The response will be
302 * read later and ignored.
305 buf = kmalloc(3, GFP_KERNEL);
309 buf[0] = EGALAX_PKT_TYPE_DIAG;
310 buf[1] = 1; /* length */
311 buf[2] = 'A'; /* command - check active */
313 for (i = 0; i < 3; i++) {
314 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
316 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
318 USB_CTRL_SET_TIMEOUT);
332 static int egalax_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
334 if ((pkt[0] & EGALAX_PKT_TYPE_MASK) != EGALAX_PKT_TYPE_REPT)
337 dev->x = ((pkt[3] & 0x0F) << 7) | (pkt[4] & 0x7F);
338 dev->y = ((pkt[1] & 0x0F) << 7) | (pkt[2] & 0x7F);
339 dev->touch = pkt[0] & 0x01;
344 static int egalax_get_pkt_len(unsigned char *buf, int len)
346 switch (buf[0] & EGALAX_PKT_TYPE_MASK) {
347 case EGALAX_PKT_TYPE_REPT:
350 case EGALAX_PKT_TYPE_DIAG:
361 /*****************************************************************************
365 #ifdef CONFIG_TOUCHSCREEN_USB_EASYTOUCH
371 #define ETOUCH_PKT_TYPE_MASK 0xFE
372 #define ETOUCH_PKT_TYPE_REPT 0x80
373 #define ETOUCH_PKT_TYPE_REPT2 0xB0
374 #define ETOUCH_PKT_TYPE_DIAG 0x0A
376 static int etouch_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
378 if ((pkt[0] & ETOUCH_PKT_TYPE_MASK) != ETOUCH_PKT_TYPE_REPT &&
379 (pkt[0] & ETOUCH_PKT_TYPE_MASK) != ETOUCH_PKT_TYPE_REPT2)
382 dev->x = ((pkt[1] & 0x1F) << 7) | (pkt[2] & 0x7F);
383 dev->y = ((pkt[3] & 0x1F) << 7) | (pkt[4] & 0x7F);
384 dev->touch = pkt[0] & 0x01;
389 static int etouch_get_pkt_len(unsigned char *buf, int len)
391 switch (buf[0] & ETOUCH_PKT_TYPE_MASK) {
392 case ETOUCH_PKT_TYPE_REPT:
393 case ETOUCH_PKT_TYPE_REPT2:
396 case ETOUCH_PKT_TYPE_DIAG:
407 /*****************************************************************************
410 #ifdef CONFIG_TOUCHSCREEN_USB_PANJIT
411 static int panjit_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
413 dev->x = ((pkt[2] & 0x0F) << 8) | pkt[1];
414 dev->y = ((pkt[4] & 0x0F) << 8) | pkt[3];
415 dev->touch = pkt[0] & 0x01;
422 /*****************************************************************************
425 #ifdef CONFIG_TOUCHSCREEN_USB_3M
427 #define MTOUCHUSB_ASYNC_REPORT 1
428 #define MTOUCHUSB_RESET 7
429 #define MTOUCHUSB_REQ_CTRLLR_ID 10
431 #define MTOUCHUSB_REQ_CTRLLR_ID_LEN 16
433 static int mtouch_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
436 dev->x = (pkt[4] << 8) | pkt[3];
437 dev->y = 0xffff - ((pkt[6] << 8) | pkt[5]);
439 dev->x = (pkt[8] << 8) | pkt[7];
440 dev->y = (pkt[10] << 8) | pkt[9];
442 dev->touch = (pkt[2] & 0x40) ? 1 : 0;
452 static ssize_t mtouch_firmware_rev_show(struct device *dev,
453 struct device_attribute *attr, char *output)
455 struct usb_interface *intf = to_usb_interface(dev);
456 struct usbtouch_usb *usbtouch = usb_get_intfdata(intf);
457 struct mtouch_priv *priv = usbtouch->priv;
459 return sysfs_emit(output, "%1x.%1x\n",
460 priv->fw_rev_major, priv->fw_rev_minor);
462 static DEVICE_ATTR(firmware_rev, 0444, mtouch_firmware_rev_show, NULL);
464 static struct attribute *mtouch_attrs[] = {
465 &dev_attr_firmware_rev.attr,
469 static const struct attribute_group mtouch_attr_group = {
470 .attrs = mtouch_attrs,
473 static int mtouch_get_fw_revision(struct usbtouch_usb *usbtouch)
475 struct usb_device *udev = interface_to_usbdev(usbtouch->interface);
476 struct mtouch_priv *priv = usbtouch->priv;
480 buf = kzalloc(MTOUCHUSB_REQ_CTRLLR_ID_LEN, GFP_NOIO);
484 ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
485 MTOUCHUSB_REQ_CTRLLR_ID,
486 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
487 0, 0, buf, MTOUCHUSB_REQ_CTRLLR_ID_LEN,
488 USB_CTRL_SET_TIMEOUT);
489 if (ret != MTOUCHUSB_REQ_CTRLLR_ID_LEN) {
490 dev_warn(&usbtouch->interface->dev,
491 "Failed to read FW rev: %d\n", ret);
492 ret = ret < 0 ? ret : -EIO;
496 priv->fw_rev_major = buf[3];
497 priv->fw_rev_minor = buf[4];
506 static int mtouch_alloc(struct usbtouch_usb *usbtouch)
508 struct mtouch_priv *priv;
511 priv = kmalloc(sizeof(*priv), GFP_KERNEL);
515 usbtouch->priv = priv;
516 ret = sysfs_create_group(&usbtouch->interface->dev.kobj,
519 kfree(usbtouch->priv);
520 usbtouch->priv = NULL;
527 static int mtouch_init(struct usbtouch_usb *usbtouch)
530 struct usb_device *udev = interface_to_usbdev(usbtouch->interface);
532 ret = mtouch_get_fw_revision(usbtouch);
536 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
538 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
539 1, 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
540 dev_dbg(&usbtouch->interface->dev,
541 "%s - usb_control_msg - MTOUCHUSB_RESET - bytes|err: %d\n",
547 for (i = 0; i < 3; i++) {
548 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
549 MTOUCHUSB_ASYNC_REPORT,
550 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
551 1, 1, NULL, 0, USB_CTRL_SET_TIMEOUT);
552 dev_dbg(&usbtouch->interface->dev,
553 "%s - usb_control_msg - MTOUCHUSB_ASYNC_REPORT - bytes|err: %d\n",
561 /* Default min/max xy are the raw values, override if using hw-calib */
563 input_set_abs_params(usbtouch->input, ABS_X, 0, 0xffff, 0, 0);
564 input_set_abs_params(usbtouch->input, ABS_Y, 0, 0xffff, 0, 0);
570 static void mtouch_exit(struct usbtouch_usb *usbtouch)
572 struct mtouch_priv *priv = usbtouch->priv;
574 sysfs_remove_group(&usbtouch->interface->dev.kobj, &mtouch_attr_group);
580 /*****************************************************************************
583 #ifdef CONFIG_TOUCHSCREEN_USB_ITM
584 static int itm_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
588 * ITM devices report invalid x/y data if not touched.
589 * if the screen was touched before but is not touched any more
590 * report touch as 0 with the last valid x/y data once. then stop
591 * reporting data until touched again.
593 dev->press = ((pkt[2] & 0x01) << 7) | (pkt[5] & 0x7F);
595 touch = ~pkt[7] & 0x20;
605 dev->x = ((pkt[0] & 0x1F) << 7) | (pkt[3] & 0x7F);
606 dev->y = ((pkt[1] & 0x1F) << 7) | (pkt[4] & 0x7F);
614 /*****************************************************************************
617 #ifdef CONFIG_TOUCHSCREEN_USB_ETURBO
621 static int eturbo_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
625 /* packets should start with sync */
626 if (!(pkt[0] & 0x80))
629 shift = (6 - (pkt[0] & 0x03));
630 dev->x = ((pkt[3] << 7) | pkt[4]) >> shift;
631 dev->y = ((pkt[1] << 7) | pkt[2]) >> shift;
632 dev->touch = (pkt[0] & 0x10) ? 1 : 0;
637 static int eturbo_get_pkt_len(unsigned char *buf, int len)
648 /*****************************************************************************
651 #ifdef CONFIG_TOUCHSCREEN_USB_GUNZE
652 static int gunze_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
654 if (!(pkt[0] & 0x80) || ((pkt[1] | pkt[2] | pkt[3]) & 0x80))
657 dev->x = ((pkt[0] & 0x1F) << 7) | (pkt[2] & 0x7F);
658 dev->y = ((pkt[1] & 0x1F) << 7) | (pkt[3] & 0x7F);
659 dev->touch = pkt[0] & 0x20;
665 /*****************************************************************************
668 * Documentation about the controller and it's protocol can be found at
669 * http://www.dmccoltd.com/files/controler/tsc10usb_pi_e.pdf
670 * http://www.dmccoltd.com/files/controler/tsc25_usb_e.pdf
672 #ifdef CONFIG_TOUCHSCREEN_USB_DMC_TSC10
674 /* supported data rates. currently using 130 */
675 #define TSC10_RATE_POINT 0x50
676 #define TSC10_RATE_30 0x40
677 #define TSC10_RATE_50 0x41
678 #define TSC10_RATE_80 0x42
679 #define TSC10_RATE_100 0x43
680 #define TSC10_RATE_130 0x44
681 #define TSC10_RATE_150 0x45
684 #define TSC10_CMD_RESET 0x55
685 #define TSC10_CMD_RATE 0x05
686 #define TSC10_CMD_DATA1 0x01
688 static int dmc_tsc10_init(struct usbtouch_usb *usbtouch)
690 struct usb_device *dev = interface_to_usbdev(usbtouch->interface);
694 buf = kmalloc(2, GFP_NOIO);
698 buf[0] = buf[1] = 0xFF;
699 ret = usb_control_msg(dev, usb_rcvctrlpipe (dev, 0),
701 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
702 0, 0, buf, 2, USB_CTRL_SET_TIMEOUT);
705 if (buf[0] != 0x06) {
710 /* TSC-25 data sheet specifies a delay after the RESET command */
713 /* set coordinate output rate */
714 buf[0] = buf[1] = 0xFF;
715 ret = usb_control_msg(dev, usb_rcvctrlpipe (dev, 0),
717 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
718 TSC10_RATE_150, 0, buf, 2, USB_CTRL_SET_TIMEOUT);
721 if ((buf[0] != 0x06) && (buf[0] != 0x15 || buf[1] != 0x01)) {
726 /* start sending data */
727 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
729 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
730 0, 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
738 static int dmc_tsc10_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
740 dev->x = ((pkt[2] & 0x03) << 8) | pkt[1];
741 dev->y = ((pkt[4] & 0x03) << 8) | pkt[3];
742 dev->touch = pkt[0] & 0x01;
749 /*****************************************************************************
752 #ifdef CONFIG_TOUCHSCREEN_USB_IRTOUCH
753 static int irtouch_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
755 dev->x = (pkt[3] << 8) | pkt[2];
756 dev->y = (pkt[5] << 8) | pkt[4];
757 dev->touch = (pkt[1] & 0x03) ? 1 : 0;
763 /*****************************************************************************
764 * ET&T TC5UH/TC4UM part
766 #ifdef CONFIG_TOUCHSCREEN_USB_ETT_TC45USB
767 static int tc45usb_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
769 dev->x = ((pkt[2] & 0x0F) << 8) | pkt[1];
770 dev->y = ((pkt[4] & 0x0F) << 8) | pkt[3];
771 dev->touch = pkt[0] & 0x01;
777 /*****************************************************************************
778 * IdealTEK URTC1000 Part
780 #ifdef CONFIG_TOUCHSCREEN_USB_IDEALTEK
784 static int idealtek_get_pkt_len(unsigned char *buf, int len)
793 static int idealtek_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
795 switch (pkt[0] & 0x98) {
797 /* touch data in IdealTEK mode */
798 dev->x = (pkt[1] << 5) | (pkt[2] >> 2);
799 dev->y = (pkt[3] << 5) | (pkt[4] >> 2);
800 dev->touch = (pkt[0] & 0x40) ? 1 : 0;
804 /* touch data in MT emulation mode */
805 dev->x = (pkt[2] << 5) | (pkt[1] >> 2);
806 dev->y = (pkt[4] << 5) | (pkt[3] >> 2);
807 dev->touch = (pkt[0] & 0x40) ? 1 : 0;
816 /*****************************************************************************
819 #ifdef CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH
820 static int general_touch_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
822 dev->x = (pkt[2] << 8) | pkt[1];
823 dev->y = (pkt[4] << 8) | pkt[3];
824 dev->press = pkt[5] & 0xff;
825 dev->touch = pkt[0] & 0x01;
831 /*****************************************************************************
834 #ifdef CONFIG_TOUCHSCREEN_USB_GOTOP
835 static int gotop_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
837 dev->x = ((pkt[1] & 0x38) << 4) | pkt[2];
838 dev->y = ((pkt[1] & 0x07) << 7) | pkt[3];
839 dev->touch = pkt[0] & 0x01;
845 /*****************************************************************************
848 #ifdef CONFIG_TOUCHSCREEN_USB_JASTEC
849 static int jastec_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
851 dev->x = ((pkt[0] & 0x3f) << 6) | (pkt[2] & 0x3f);
852 dev->y = ((pkt[1] & 0x3f) << 6) | (pkt[3] & 0x3f);
853 dev->touch = (pkt[0] & 0x40) >> 6;
859 /*****************************************************************************
862 #ifdef CONFIG_TOUCHSCREEN_USB_ZYTRONIC
863 static int zytronic_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
865 struct usb_interface *intf = dev->interface;
868 case 0x3A: /* command response */
869 dev_dbg(&intf->dev, "%s: Command response %d\n", __func__, pkt[1]);
872 case 0xC0: /* down */
873 dev->x = (pkt[1] & 0x7f) | ((pkt[2] & 0x07) << 7);
874 dev->y = (pkt[3] & 0x7f) | ((pkt[4] & 0x07) << 7);
876 dev_dbg(&intf->dev, "%s: down %d,%d\n", __func__, dev->x, dev->y);
880 dev->x = (pkt[1] & 0x7f) | ((pkt[2] & 0x07) << 7);
881 dev->y = (pkt[3] & 0x7f) | ((pkt[4] & 0x07) << 7);
883 dev_dbg(&intf->dev, "%s: up %d,%d\n", __func__, dev->x, dev->y);
887 dev_dbg(&intf->dev, "%s: Unknown return %d\n", __func__, pkt[0]);
895 /*****************************************************************************
898 #ifdef CONFIG_TOUCHSCREEN_USB_NEXIO
900 #define NEXIO_TIMEOUT 5000
901 #define NEXIO_BUFSIZE 1024
902 #define NEXIO_THRESHOLD 50
906 unsigned char *ack_buf;
909 struct nexio_touch_packet {
910 u8 flags; /* 0xe1 = touch, 0xe1 = release */
911 __be16 data_len; /* total bytes of touch data */
912 __be16 x_len; /* bytes for X axis */
913 __be16 y_len; /* bytes for Y axis */
915 } __attribute__ ((packed));
917 static unsigned char nexio_ack_pkt[2] = { 0xaa, 0x02 };
918 static unsigned char nexio_init_pkt[4] = { 0x82, 0x04, 0x0a, 0x0f };
920 static void nexio_ack_complete(struct urb *urb)
924 static int nexio_alloc(struct usbtouch_usb *usbtouch)
926 struct nexio_priv *priv;
929 priv = kmalloc(sizeof(*priv), GFP_KERNEL);
933 usbtouch->priv = priv;
934 priv->ack_buf = kmemdup(nexio_ack_pkt, sizeof(nexio_ack_pkt),
939 priv->ack = usb_alloc_urb(0, GFP_KERNEL);
941 dev_dbg(&usbtouch->interface->dev,
942 "%s - usb_alloc_urb failed: usbtouch->ack\n", __func__);
949 kfree(priv->ack_buf);
956 static int nexio_init(struct usbtouch_usb *usbtouch)
958 struct usb_device *dev = interface_to_usbdev(usbtouch->interface);
959 struct usb_host_interface *interface = usbtouch->interface->cur_altsetting;
960 struct nexio_priv *priv = usbtouch->priv;
964 char *firmware_ver = NULL, *device_name = NULL;
965 int input_ep = 0, output_ep = 0;
967 /* find first input and output endpoint */
968 for (i = 0; i < interface->desc.bNumEndpoints; i++) {
970 usb_endpoint_dir_in(&interface->endpoint[i].desc))
971 input_ep = interface->endpoint[i].desc.bEndpointAddress;
973 usb_endpoint_dir_out(&interface->endpoint[i].desc))
974 output_ep = interface->endpoint[i].desc.bEndpointAddress;
976 if (!input_ep || !output_ep)
979 buf = kmalloc(NEXIO_BUFSIZE, GFP_NOIO);
983 /* two empty reads */
984 for (i = 0; i < 2; i++) {
985 ret = usb_bulk_msg(dev, usb_rcvbulkpipe(dev, input_ep),
986 buf, NEXIO_BUFSIZE, &actual_len,
992 /* send init command */
993 memcpy(buf, nexio_init_pkt, sizeof(nexio_init_pkt));
994 ret = usb_bulk_msg(dev, usb_sndbulkpipe(dev, output_ep),
995 buf, sizeof(nexio_init_pkt), &actual_len,
1001 for (i = 0; i < 3; i++) {
1002 memset(buf, 0, NEXIO_BUFSIZE);
1003 ret = usb_bulk_msg(dev, usb_rcvbulkpipe(dev, input_ep),
1004 buf, NEXIO_BUFSIZE, &actual_len,
1006 if (ret < 0 || actual_len < 1 || buf[1] != actual_len)
1009 case 0x83: /* firmware version */
1011 firmware_ver = kstrdup(&buf[2], GFP_NOIO);
1013 case 0x84: /* device name */
1015 device_name = kstrdup(&buf[2], GFP_NOIO);
1020 printk(KERN_INFO "Nexio device: %s, firmware version: %s\n",
1021 device_name, firmware_ver);
1023 kfree(firmware_ver);
1026 usb_fill_bulk_urb(priv->ack, dev, usb_sndbulkpipe(dev, output_ep),
1027 priv->ack_buf, sizeof(nexio_ack_pkt),
1028 nexio_ack_complete, usbtouch);
1036 static void nexio_exit(struct usbtouch_usb *usbtouch)
1038 struct nexio_priv *priv = usbtouch->priv;
1040 usb_kill_urb(priv->ack);
1041 usb_free_urb(priv->ack);
1042 kfree(priv->ack_buf);
1046 static int nexio_read_data(struct usbtouch_usb *usbtouch, unsigned char *pkt)
1048 struct device *dev = &usbtouch->interface->dev;
1049 struct nexio_touch_packet *packet = (void *) pkt;
1050 struct nexio_priv *priv = usbtouch->priv;
1051 unsigned int data_len = be16_to_cpu(packet->data_len);
1052 unsigned int x_len = be16_to_cpu(packet->x_len);
1053 unsigned int y_len = be16_to_cpu(packet->y_len);
1054 int x, y, begin_x, begin_y, end_x, end_y, w, h, ret;
1056 /* got touch data? */
1057 if ((pkt[0] & 0xe0) != 0xe0)
1060 if (data_len > 0xff)
1066 ret = usb_submit_urb(priv->ack, GFP_ATOMIC);
1068 dev_warn(dev, "Failed to submit ACK URB: %d\n", ret);
1070 if (!usbtouch->type->max_xc) {
1071 usbtouch->type->max_xc = 2 * x_len;
1072 input_set_abs_params(usbtouch->input, ABS_X,
1073 0, usbtouch->type->max_xc, 0, 0);
1074 usbtouch->type->max_yc = 2 * y_len;
1075 input_set_abs_params(usbtouch->input, ABS_Y,
1076 0, usbtouch->type->max_yc, 0, 0);
1079 * The device reports state of IR sensors on X and Y axes.
1080 * Each byte represents "darkness" percentage (0-100) of one element.
1081 * 17" touchscreen reports only 64 x 52 bytes so the resolution is low.
1082 * This also means that there's a limited multi-touch capability but
1083 * it's disabled (and untested) here as there's no X driver for that.
1085 begin_x = end_x = begin_y = end_y = -1;
1086 for (x = 0; x < x_len; x++) {
1087 if (begin_x == -1 && packet->data[x] > NEXIO_THRESHOLD) {
1091 if (end_x == -1 && begin_x != -1 && packet->data[x] < NEXIO_THRESHOLD) {
1093 for (y = x_len; y < data_len; y++) {
1094 if (begin_y == -1 && packet->data[y] > NEXIO_THRESHOLD) {
1095 begin_y = y - x_len;
1099 begin_y != -1 && packet->data[y] < NEXIO_THRESHOLD) {
1100 end_y = y - 1 - x_len;
1101 w = end_x - begin_x;
1102 h = end_y - begin_y;
1105 input_report_abs(usbtouch->input,
1106 ABS_MT_TOUCH_MAJOR, max(w,h));
1107 input_report_abs(usbtouch->input,
1108 ABS_MT_TOUCH_MINOR, min(x,h));
1109 input_report_abs(usbtouch->input,
1110 ABS_MT_POSITION_X, 2*begin_x+w);
1111 input_report_abs(usbtouch->input,
1112 ABS_MT_POSITION_Y, 2*begin_y+h);
1113 input_report_abs(usbtouch->input,
1114 ABS_MT_ORIENTATION, w > h);
1115 input_mt_sync(usbtouch->input);
1118 usbtouch->x = 2 * begin_x + w;
1119 usbtouch->y = 2 * begin_y + h;
1120 usbtouch->touch = packet->flags & 0x01;
1121 begin_y = end_y = -1;
1125 begin_x = end_x = -1;
1134 /*****************************************************************************
1138 #ifdef CONFIG_TOUCHSCREEN_USB_ELO
1140 static int elo_read_data(struct usbtouch_usb *dev, unsigned char *pkt)
1142 dev->x = (pkt[3] << 8) | pkt[2];
1143 dev->y = (pkt[5] << 8) | pkt[4];
1144 dev->touch = pkt[6] > 0;
1145 dev->press = pkt[6];
1152 /*****************************************************************************
1153 * the different device descriptors
1156 static void usbtouch_process_multi(struct usbtouch_usb *usbtouch,
1157 unsigned char *pkt, int len);
1160 static struct usbtouch_device_info usbtouch_dev_info[] = {
1161 #ifdef CONFIG_TOUCHSCREEN_USB_ELO
1169 .read_data = elo_read_data,
1173 #ifdef CONFIG_TOUCHSCREEN_USB_EGALAX
1174 [DEVTYPE_EGALAX] = {
1180 .process_pkt = usbtouch_process_multi,
1181 .get_pkt_len = egalax_get_pkt_len,
1182 .read_data = egalax_read_data,
1183 .init = egalax_init,
1187 #ifdef CONFIG_TOUCHSCREEN_USB_PANJIT
1188 [DEVTYPE_PANJIT] = {
1194 .read_data = panjit_read_data,
1198 #ifdef CONFIG_TOUCHSCREEN_USB_3M
1205 .read_data = mtouch_read_data,
1206 .alloc = mtouch_alloc,
1207 .init = mtouch_init,
1208 .exit = mtouch_exit,
1212 #ifdef CONFIG_TOUCHSCREEN_USB_ITM
1220 .read_data = itm_read_data,
1224 #ifdef CONFIG_TOUCHSCREEN_USB_ETURBO
1225 [DEVTYPE_ETURBO] = {
1231 .process_pkt = usbtouch_process_multi,
1232 .get_pkt_len = eturbo_get_pkt_len,
1233 .read_data = eturbo_read_data,
1237 #ifdef CONFIG_TOUCHSCREEN_USB_GUNZE
1244 .read_data = gunze_read_data,
1248 #ifdef CONFIG_TOUCHSCREEN_USB_DMC_TSC10
1249 [DEVTYPE_DMC_TSC10] = {
1255 .init = dmc_tsc10_init,
1256 .read_data = dmc_tsc10_read_data,
1260 #ifdef CONFIG_TOUCHSCREEN_USB_IRTOUCH
1261 [DEVTYPE_IRTOUCH] = {
1267 .read_data = irtouch_read_data,
1270 [DEVTYPE_IRTOUCH_HIRES] = {
1276 .read_data = irtouch_read_data,
1280 #ifdef CONFIG_TOUCHSCREEN_USB_IDEALTEK
1281 [DEVTYPE_IDEALTEK] = {
1287 .process_pkt = usbtouch_process_multi,
1288 .get_pkt_len = idealtek_get_pkt_len,
1289 .read_data = idealtek_read_data,
1293 #ifdef CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH
1294 [DEVTYPE_GENERAL_TOUCH] = {
1300 .read_data = general_touch_read_data,
1304 #ifdef CONFIG_TOUCHSCREEN_USB_GOTOP
1311 .read_data = gotop_read_data,
1315 #ifdef CONFIG_TOUCHSCREEN_USB_JASTEC
1316 [DEVTYPE_JASTEC] = {
1322 .read_data = jastec_read_data,
1326 #ifdef CONFIG_TOUCHSCREEN_USB_E2I
1334 .read_data = e2i_read_data,
1338 #ifdef CONFIG_TOUCHSCREEN_USB_ZYTRONIC
1339 [DEVTYPE_ZYTRONIC] = {
1345 .read_data = zytronic_read_data,
1350 #ifdef CONFIG_TOUCHSCREEN_USB_ETT_TC45USB
1351 [DEVTYPE_TC45USB] = {
1357 .read_data = tc45usb_read_data,
1361 #ifdef CONFIG_TOUCHSCREEN_USB_NEXIO
1365 .read_data = nexio_read_data,
1366 .alloc = nexio_alloc,
1371 #ifdef CONFIG_TOUCHSCREEN_USB_EASYTOUCH
1372 [DEVTYPE_ETOUCH] = {
1378 .process_pkt = usbtouch_process_multi,
1379 .get_pkt_len = etouch_get_pkt_len,
1380 .read_data = etouch_read_data,
1386 /*****************************************************************************
1389 static void usbtouch_process_pkt(struct usbtouch_usb *usbtouch,
1390 unsigned char *pkt, int len)
1392 struct usbtouch_device_info *type = usbtouch->type;
1394 if (!type->read_data(usbtouch, pkt))
1397 input_report_key(usbtouch->input, BTN_TOUCH, usbtouch->touch);
1400 input_report_abs(usbtouch->input, ABS_X, usbtouch->y);
1401 input_report_abs(usbtouch->input, ABS_Y, usbtouch->x);
1403 input_report_abs(usbtouch->input, ABS_X, usbtouch->x);
1404 input_report_abs(usbtouch->input, ABS_Y, usbtouch->y);
1406 if (type->max_press)
1407 input_report_abs(usbtouch->input, ABS_PRESSURE, usbtouch->press);
1408 input_sync(usbtouch->input);
1413 static void usbtouch_process_multi(struct usbtouch_usb *usbtouch,
1414 unsigned char *pkt, int len)
1416 unsigned char *buffer;
1417 int pkt_len, pos, buf_len, tmp;
1419 /* process buffer */
1420 if (unlikely(usbtouch->buf_len)) {
1421 /* try to get size */
1422 pkt_len = usbtouch->type->get_pkt_len(
1423 usbtouch->buffer, usbtouch->buf_len);
1426 if (unlikely(!pkt_len))
1429 /* need to append -pkt_len bytes before able to get size */
1430 if (unlikely(pkt_len < 0)) {
1431 int append = -pkt_len;
1432 if (unlikely(append > len))
1434 if (usbtouch->buf_len + append >= usbtouch->type->rept_size)
1436 memcpy(usbtouch->buffer + usbtouch->buf_len, pkt, append);
1437 usbtouch->buf_len += append;
1439 pkt_len = usbtouch->type->get_pkt_len(
1440 usbtouch->buffer, usbtouch->buf_len);
1446 tmp = pkt_len - usbtouch->buf_len;
1447 if (usbtouch->buf_len + tmp >= usbtouch->type->rept_size)
1449 memcpy(usbtouch->buffer + usbtouch->buf_len, pkt, tmp);
1450 usbtouch_process_pkt(usbtouch, usbtouch->buffer, pkt_len);
1453 buf_len = len - tmp;
1459 /* loop over the received packet, process */
1461 while (pos < buf_len) {
1462 /* get packet len */
1463 pkt_len = usbtouch->type->get_pkt_len(buffer + pos,
1466 /* unknown packet: skip one byte */
1467 if (unlikely(!pkt_len)) {
1472 /* full packet: process */
1473 if (likely((pkt_len > 0) && (pkt_len <= buf_len - pos))) {
1474 usbtouch_process_pkt(usbtouch, buffer + pos, pkt_len);
1476 /* incomplete packet: save in buffer */
1477 memcpy(usbtouch->buffer, buffer + pos, buf_len - pos);
1478 usbtouch->buf_len = buf_len - pos;
1485 usbtouch->buf_len = 0;
1491 static void usbtouch_irq(struct urb *urb)
1493 struct usbtouch_usb *usbtouch = urb->context;
1494 struct device *dev = &usbtouch->interface->dev;
1497 switch (urb->status) {
1502 /* this urb is timing out */
1504 "%s - urb timed out - was the device unplugged?\n",
1511 /* this urb is terminated, clean up */
1512 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
1513 __func__, urb->status);
1516 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
1517 __func__, urb->status);
1521 usbtouch->type->process_pkt(usbtouch, usbtouch->data, urb->actual_length);
1524 usb_mark_last_busy(interface_to_usbdev(usbtouch->interface));
1525 retval = usb_submit_urb(urb, GFP_ATOMIC);
1527 dev_err(dev, "%s - usb_submit_urb failed with result: %d\n",
1531 static int usbtouch_open(struct input_dev *input)
1533 struct usbtouch_usb *usbtouch = input_get_drvdata(input);
1536 usbtouch->irq->dev = interface_to_usbdev(usbtouch->interface);
1538 r = usb_autopm_get_interface(usbtouch->interface) ? -EIO : 0;
1542 mutex_lock(&usbtouch->pm_mutex);
1543 if (!usbtouch->type->irq_always) {
1544 if (usb_submit_urb(usbtouch->irq, GFP_KERNEL)) {
1550 usbtouch->interface->needs_remote_wakeup = 1;
1551 usbtouch->is_open = true;
1553 mutex_unlock(&usbtouch->pm_mutex);
1554 usb_autopm_put_interface(usbtouch->interface);
1559 static void usbtouch_close(struct input_dev *input)
1561 struct usbtouch_usb *usbtouch = input_get_drvdata(input);
1564 mutex_lock(&usbtouch->pm_mutex);
1565 if (!usbtouch->type->irq_always)
1566 usb_kill_urb(usbtouch->irq);
1567 usbtouch->is_open = false;
1568 mutex_unlock(&usbtouch->pm_mutex);
1570 r = usb_autopm_get_interface(usbtouch->interface);
1571 usbtouch->interface->needs_remote_wakeup = 0;
1573 usb_autopm_put_interface(usbtouch->interface);
1576 static int usbtouch_suspend
1577 (struct usb_interface *intf, pm_message_t message)
1579 struct usbtouch_usb *usbtouch = usb_get_intfdata(intf);
1581 usb_kill_urb(usbtouch->irq);
1586 static int usbtouch_resume(struct usb_interface *intf)
1588 struct usbtouch_usb *usbtouch = usb_get_intfdata(intf);
1591 mutex_lock(&usbtouch->pm_mutex);
1592 if (usbtouch->is_open || usbtouch->type->irq_always)
1593 result = usb_submit_urb(usbtouch->irq, GFP_NOIO);
1594 mutex_unlock(&usbtouch->pm_mutex);
1599 static int usbtouch_reset_resume(struct usb_interface *intf)
1601 struct usbtouch_usb *usbtouch = usb_get_intfdata(intf);
1604 /* reinit the device */
1605 if (usbtouch->type->init) {
1606 err = usbtouch->type->init(usbtouch);
1609 "%s - type->init() failed, err: %d\n",
1615 /* restart IO if needed */
1616 mutex_lock(&usbtouch->pm_mutex);
1617 if (usbtouch->is_open)
1618 err = usb_submit_urb(usbtouch->irq, GFP_NOIO);
1619 mutex_unlock(&usbtouch->pm_mutex);
1624 static void usbtouch_free_buffers(struct usb_device *udev,
1625 struct usbtouch_usb *usbtouch)
1627 usb_free_coherent(udev, usbtouch->data_size,
1628 usbtouch->data, usbtouch->data_dma);
1629 kfree(usbtouch->buffer);
1632 static struct usb_endpoint_descriptor *
1633 usbtouch_get_input_endpoint(struct usb_host_interface *interface)
1637 for (i = 0; i < interface->desc.bNumEndpoints; i++)
1638 if (usb_endpoint_dir_in(&interface->endpoint[i].desc))
1639 return &interface->endpoint[i].desc;
1644 static int usbtouch_probe(struct usb_interface *intf,
1645 const struct usb_device_id *id)
1647 struct usbtouch_usb *usbtouch;
1648 struct input_dev *input_dev;
1649 struct usb_endpoint_descriptor *endpoint;
1650 struct usb_device *udev = interface_to_usbdev(intf);
1651 struct usbtouch_device_info *type;
1654 /* some devices are ignored */
1655 if (id->driver_info == DEVTYPE_IGNORE)
1658 if (id->driver_info >= ARRAY_SIZE(usbtouch_dev_info))
1661 endpoint = usbtouch_get_input_endpoint(intf->cur_altsetting);
1665 usbtouch = kzalloc(sizeof(*usbtouch), GFP_KERNEL);
1666 input_dev = input_allocate_device();
1667 if (!usbtouch || !input_dev)
1670 mutex_init(&usbtouch->pm_mutex);
1672 type = &usbtouch_dev_info[id->driver_info];
1673 usbtouch->type = type;
1674 if (!type->process_pkt)
1675 type->process_pkt = usbtouch_process_pkt;
1677 usbtouch->data_size = type->rept_size;
1678 if (type->get_pkt_len) {
1680 * When dealing with variable-length packets we should
1681 * not request more than wMaxPacketSize bytes at once
1682 * as we do not know if there is more data coming or
1683 * we filled exactly wMaxPacketSize bytes and there is
1686 usbtouch->data_size = min(usbtouch->data_size,
1687 usb_endpoint_maxp(endpoint));
1690 usbtouch->data = usb_alloc_coherent(udev, usbtouch->data_size,
1691 GFP_KERNEL, &usbtouch->data_dma);
1692 if (!usbtouch->data)
1695 if (type->get_pkt_len) {
1696 usbtouch->buffer = kmalloc(type->rept_size, GFP_KERNEL);
1697 if (!usbtouch->buffer)
1698 goto out_free_buffers;
1701 usbtouch->irq = usb_alloc_urb(0, GFP_KERNEL);
1702 if (!usbtouch->irq) {
1704 "%s - usb_alloc_urb failed: usbtouch->irq\n", __func__);
1705 goto out_free_buffers;
1708 usbtouch->interface = intf;
1709 usbtouch->input = input_dev;
1711 if (udev->manufacturer)
1712 strscpy(usbtouch->name, udev->manufacturer, sizeof(usbtouch->name));
1714 if (udev->product) {
1715 if (udev->manufacturer)
1716 strlcat(usbtouch->name, " ", sizeof(usbtouch->name));
1717 strlcat(usbtouch->name, udev->product, sizeof(usbtouch->name));
1720 if (!strlen(usbtouch->name))
1721 snprintf(usbtouch->name, sizeof(usbtouch->name),
1722 "USB Touchscreen %04x:%04x",
1723 le16_to_cpu(udev->descriptor.idVendor),
1724 le16_to_cpu(udev->descriptor.idProduct));
1726 usb_make_path(udev, usbtouch->phys, sizeof(usbtouch->phys));
1727 strlcat(usbtouch->phys, "/input0", sizeof(usbtouch->phys));
1729 input_dev->name = usbtouch->name;
1730 input_dev->phys = usbtouch->phys;
1731 usb_to_input_id(udev, &input_dev->id);
1732 input_dev->dev.parent = &intf->dev;
1734 input_set_drvdata(input_dev, usbtouch);
1736 input_dev->open = usbtouch_open;
1737 input_dev->close = usbtouch_close;
1739 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
1740 input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
1741 input_set_abs_params(input_dev, ABS_X, type->min_xc, type->max_xc, 0, 0);
1742 input_set_abs_params(input_dev, ABS_Y, type->min_yc, type->max_yc, 0, 0);
1743 if (type->max_press)
1744 input_set_abs_params(input_dev, ABS_PRESSURE, type->min_press,
1745 type->max_press, 0, 0);
1747 if (usb_endpoint_type(endpoint) == USB_ENDPOINT_XFER_INT)
1748 usb_fill_int_urb(usbtouch->irq, udev,
1749 usb_rcvintpipe(udev, endpoint->bEndpointAddress),
1750 usbtouch->data, usbtouch->data_size,
1751 usbtouch_irq, usbtouch, endpoint->bInterval);
1753 usb_fill_bulk_urb(usbtouch->irq, udev,
1754 usb_rcvbulkpipe(udev, endpoint->bEndpointAddress),
1755 usbtouch->data, usbtouch->data_size,
1756 usbtouch_irq, usbtouch);
1758 usbtouch->irq->dev = udev;
1759 usbtouch->irq->transfer_dma = usbtouch->data_dma;
1760 usbtouch->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1762 /* device specific allocations */
1764 err = type->alloc(usbtouch);
1767 "%s - type->alloc() failed, err: %d\n",
1773 /* device specific initialisation*/
1775 err = type->init(usbtouch);
1778 "%s - type->init() failed, err: %d\n",
1784 err = input_register_device(usbtouch->input);
1787 "%s - input_register_device failed, err: %d\n",
1792 usb_set_intfdata(intf, usbtouch);
1794 if (usbtouch->type->irq_always) {
1795 /* this can't fail */
1796 usb_autopm_get_interface(intf);
1797 err = usb_submit_urb(usbtouch->irq, GFP_KERNEL);
1799 usb_autopm_put_interface(intf);
1801 "%s - usb_submit_urb failed with result: %d\n",
1803 goto out_unregister_input;
1809 out_unregister_input:
1810 input_unregister_device(input_dev);
1814 type->exit(usbtouch);
1816 usb_free_urb(usbtouch->irq);
1818 usbtouch_free_buffers(udev, usbtouch);
1820 input_free_device(input_dev);
1825 static void usbtouch_disconnect(struct usb_interface *intf)
1827 struct usbtouch_usb *usbtouch = usb_get_intfdata(intf);
1833 "%s - usbtouch is initialized, cleaning up\n", __func__);
1835 usb_set_intfdata(intf, NULL);
1836 /* this will stop IO via close */
1837 input_unregister_device(usbtouch->input);
1838 usb_free_urb(usbtouch->irq);
1839 if (usbtouch->type->exit)
1840 usbtouch->type->exit(usbtouch);
1841 usbtouch_free_buffers(interface_to_usbdev(intf), usbtouch);
1845 MODULE_DEVICE_TABLE(usb, usbtouch_devices);
1847 static struct usb_driver usbtouch_driver = {
1848 .name = "usbtouchscreen",
1849 .probe = usbtouch_probe,
1850 .disconnect = usbtouch_disconnect,
1851 .suspend = usbtouch_suspend,
1852 .resume = usbtouch_resume,
1853 .reset_resume = usbtouch_reset_resume,
1854 .id_table = usbtouch_devices,
1855 .supports_autosuspend = 1,
1858 module_usb_driver(usbtouch_driver);
1861 MODULE_DESCRIPTION("USB Touchscreen Driver");
1862 MODULE_LICENSE("GPL");
1864 MODULE_ALIAS("touchkitusb");
1865 MODULE_ALIAS("itmtouch");
1866 MODULE_ALIAS("mtouchusb");