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_INT_PROTOCOL \
150 | USB_DEVICE_ID_MATCH_DEVICE, \
151 .idVendor = (vend), \
152 .idProduct = (prod), \
153 .bInterfaceClass = USB_INTERFACE_CLASS_HID, \
154 .bInterfaceProtocol = USB_INTERFACE_PROTOCOL_MOUSE
156 static const struct usb_device_id usbtouch_devices
[] = {
157 #ifdef CONFIG_TOUCHSCREEN_USB_EGALAX
158 /* ignore the HID capable devices, handled by usbhid */
159 {USB_DEVICE_HID_CLASS(0x0eef, 0x0001), .driver_info
= DEVTYPE_IGNORE
},
160 {USB_DEVICE_HID_CLASS(0x0eef, 0x0002), .driver_info
= DEVTYPE_IGNORE
},
162 /* normal device IDs */
163 {USB_DEVICE(0x3823, 0x0001), .driver_info
= DEVTYPE_EGALAX
},
164 {USB_DEVICE(0x3823, 0x0002), .driver_info
= DEVTYPE_EGALAX
},
165 {USB_DEVICE(0x0123, 0x0001), .driver_info
= DEVTYPE_EGALAX
},
166 {USB_DEVICE(0x0eef, 0x0001), .driver_info
= DEVTYPE_EGALAX
},
167 {USB_DEVICE(0x0eef, 0x0002), .driver_info
= DEVTYPE_EGALAX
},
168 {USB_DEVICE(0x1234, 0x0001), .driver_info
= DEVTYPE_EGALAX
},
169 {USB_DEVICE(0x1234, 0x0002), .driver_info
= DEVTYPE_EGALAX
},
172 #ifdef CONFIG_TOUCHSCREEN_USB_PANJIT
173 {USB_DEVICE(0x134c, 0x0001), .driver_info
= DEVTYPE_PANJIT
},
174 {USB_DEVICE(0x134c, 0x0002), .driver_info
= DEVTYPE_PANJIT
},
175 {USB_DEVICE(0x134c, 0x0003), .driver_info
= DEVTYPE_PANJIT
},
176 {USB_DEVICE(0x134c, 0x0004), .driver_info
= DEVTYPE_PANJIT
},
179 #ifdef CONFIG_TOUCHSCREEN_USB_3M
180 {USB_DEVICE(0x0596, 0x0001), .driver_info
= DEVTYPE_3M
},
183 #ifdef CONFIG_TOUCHSCREEN_USB_ITM
184 {USB_DEVICE(0x0403, 0xf9e9), .driver_info
= DEVTYPE_ITM
},
185 {USB_DEVICE(0x16e3, 0xf9e9), .driver_info
= DEVTYPE_ITM
},
188 #ifdef CONFIG_TOUCHSCREEN_USB_ETURBO
189 {USB_DEVICE(0x1234, 0x5678), .driver_info
= DEVTYPE_ETURBO
},
192 #ifdef CONFIG_TOUCHSCREEN_USB_GUNZE
193 {USB_DEVICE(0x0637, 0x0001), .driver_info
= DEVTYPE_GUNZE
},
196 #ifdef CONFIG_TOUCHSCREEN_USB_DMC_TSC10
197 {USB_DEVICE(0x0afa, 0x03e8), .driver_info
= DEVTYPE_DMC_TSC10
},
200 #ifdef CONFIG_TOUCHSCREEN_USB_IRTOUCH
201 {USB_DEVICE(0x595a, 0x0001), .driver_info
= DEVTYPE_IRTOUCH
},
202 {USB_DEVICE(0x6615, 0x0001), .driver_info
= DEVTYPE_IRTOUCH
},
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
,
1184 #ifdef CONFIG_TOUCHSCREEN_USB_IDEALTEK
1185 [DEVTYPE_IDEALTEK
] = {
1191 .process_pkt
= usbtouch_process_multi
,
1192 .get_pkt_len
= idealtek_get_pkt_len
,
1193 .read_data
= idealtek_read_data
,
1197 #ifdef CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH
1198 [DEVTYPE_GENERAL_TOUCH
] = {
1204 .read_data
= general_touch_read_data
,
1208 #ifdef CONFIG_TOUCHSCREEN_USB_GOTOP
1215 .read_data
= gotop_read_data
,
1219 #ifdef CONFIG_TOUCHSCREEN_USB_JASTEC
1220 [DEVTYPE_JASTEC
] = {
1226 .read_data
= jastec_read_data
,
1230 #ifdef CONFIG_TOUCHSCREEN_USB_E2I
1238 .read_data
= e2i_read_data
,
1242 #ifdef CONFIG_TOUCHSCREEN_USB_ZYTRONIC
1243 [DEVTYPE_ZYTRONIC
] = {
1249 .read_data
= zytronic_read_data
,
1254 #ifdef CONFIG_TOUCHSCREEN_USB_ETT_TC45USB
1255 [DEVTYPE_TC45USB
] = {
1261 .read_data
= tc45usb_read_data
,
1265 #ifdef CONFIG_TOUCHSCREEN_USB_NEXIO
1269 .read_data
= nexio_read_data
,
1270 .alloc
= nexio_alloc
,
1275 #ifdef CONFIG_TOUCHSCREEN_USB_EASYTOUCH
1276 [DEVTYPE_ETOUCH
] = {
1282 .process_pkt
= usbtouch_process_multi
,
1283 .get_pkt_len
= etouch_get_pkt_len
,
1284 .read_data
= etouch_read_data
,
1290 /*****************************************************************************
1293 static void usbtouch_process_pkt(struct usbtouch_usb
*usbtouch
,
1294 unsigned char *pkt
, int len
)
1296 struct usbtouch_device_info
*type
= usbtouch
->type
;
1298 if (!type
->read_data(usbtouch
, pkt
))
1301 input_report_key(usbtouch
->input
, BTN_TOUCH
, usbtouch
->touch
);
1304 input_report_abs(usbtouch
->input
, ABS_X
, usbtouch
->y
);
1305 input_report_abs(usbtouch
->input
, ABS_Y
, usbtouch
->x
);
1307 input_report_abs(usbtouch
->input
, ABS_X
, usbtouch
->x
);
1308 input_report_abs(usbtouch
->input
, ABS_Y
, usbtouch
->y
);
1310 if (type
->max_press
)
1311 input_report_abs(usbtouch
->input
, ABS_PRESSURE
, usbtouch
->press
);
1312 input_sync(usbtouch
->input
);
1317 static void usbtouch_process_multi(struct usbtouch_usb
*usbtouch
,
1318 unsigned char *pkt
, int len
)
1320 unsigned char *buffer
;
1321 int pkt_len
, pos
, buf_len
, tmp
;
1323 /* process buffer */
1324 if (unlikely(usbtouch
->buf_len
)) {
1325 /* try to get size */
1326 pkt_len
= usbtouch
->type
->get_pkt_len(
1327 usbtouch
->buffer
, usbtouch
->buf_len
);
1330 if (unlikely(!pkt_len
))
1333 /* need to append -pkt_len bytes before able to get size */
1334 if (unlikely(pkt_len
< 0)) {
1335 int append
= -pkt_len
;
1336 if (unlikely(append
> len
))
1338 if (usbtouch
->buf_len
+ append
>= usbtouch
->type
->rept_size
)
1340 memcpy(usbtouch
->buffer
+ usbtouch
->buf_len
, pkt
, append
);
1341 usbtouch
->buf_len
+= append
;
1343 pkt_len
= usbtouch
->type
->get_pkt_len(
1344 usbtouch
->buffer
, usbtouch
->buf_len
);
1350 tmp
= pkt_len
- usbtouch
->buf_len
;
1351 if (usbtouch
->buf_len
+ tmp
>= usbtouch
->type
->rept_size
)
1353 memcpy(usbtouch
->buffer
+ usbtouch
->buf_len
, pkt
, tmp
);
1354 usbtouch_process_pkt(usbtouch
, usbtouch
->buffer
, pkt_len
);
1357 buf_len
= len
- tmp
;
1363 /* loop over the received packet, process */
1365 while (pos
< buf_len
) {
1366 /* get packet len */
1367 pkt_len
= usbtouch
->type
->get_pkt_len(buffer
+ pos
,
1370 /* unknown packet: skip one byte */
1371 if (unlikely(!pkt_len
)) {
1376 /* full packet: process */
1377 if (likely((pkt_len
> 0) && (pkt_len
<= buf_len
- pos
))) {
1378 usbtouch_process_pkt(usbtouch
, buffer
+ pos
, pkt_len
);
1380 /* incomplete packet: save in buffer */
1381 memcpy(usbtouch
->buffer
, buffer
+ pos
, buf_len
- pos
);
1382 usbtouch
->buf_len
= buf_len
- pos
;
1389 usbtouch
->buf_len
= 0;
1395 static void usbtouch_irq(struct urb
*urb
)
1397 struct usbtouch_usb
*usbtouch
= urb
->context
;
1398 struct device
*dev
= &usbtouch
->interface
->dev
;
1401 switch (urb
->status
) {
1406 /* this urb is timing out */
1408 "%s - urb timed out - was the device unplugged?\n",
1415 /* this urb is terminated, clean up */
1416 dev_dbg(dev
, "%s - urb shutting down with status: %d\n",
1417 __func__
, urb
->status
);
1420 dev_dbg(dev
, "%s - nonzero urb status received: %d\n",
1421 __func__
, urb
->status
);
1425 usbtouch
->type
->process_pkt(usbtouch
, usbtouch
->data
, urb
->actual_length
);
1428 usb_mark_last_busy(interface_to_usbdev(usbtouch
->interface
));
1429 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
1431 dev_err(dev
, "%s - usb_submit_urb failed with result: %d\n",
1435 static int usbtouch_open(struct input_dev
*input
)
1437 struct usbtouch_usb
*usbtouch
= input_get_drvdata(input
);
1440 usbtouch
->irq
->dev
= interface_to_usbdev(usbtouch
->interface
);
1442 r
= usb_autopm_get_interface(usbtouch
->interface
) ? -EIO
: 0;
1446 if (!usbtouch
->type
->irq_always
) {
1447 if (usb_submit_urb(usbtouch
->irq
, GFP_KERNEL
)) {
1453 usbtouch
->interface
->needs_remote_wakeup
= 1;
1455 usb_autopm_put_interface(usbtouch
->interface
);
1460 static void usbtouch_close(struct input_dev
*input
)
1462 struct usbtouch_usb
*usbtouch
= input_get_drvdata(input
);
1465 if (!usbtouch
->type
->irq_always
)
1466 usb_kill_urb(usbtouch
->irq
);
1467 r
= usb_autopm_get_interface(usbtouch
->interface
);
1468 usbtouch
->interface
->needs_remote_wakeup
= 0;
1470 usb_autopm_put_interface(usbtouch
->interface
);
1473 static int usbtouch_suspend
1474 (struct usb_interface
*intf
, pm_message_t message
)
1476 struct usbtouch_usb
*usbtouch
= usb_get_intfdata(intf
);
1478 usb_kill_urb(usbtouch
->irq
);
1483 static int usbtouch_resume(struct usb_interface
*intf
)
1485 struct usbtouch_usb
*usbtouch
= usb_get_intfdata(intf
);
1486 struct input_dev
*input
= usbtouch
->input
;
1489 mutex_lock(&input
->mutex
);
1490 if (input
->users
|| usbtouch
->type
->irq_always
)
1491 result
= usb_submit_urb(usbtouch
->irq
, GFP_NOIO
);
1492 mutex_unlock(&input
->mutex
);
1497 static int usbtouch_reset_resume(struct usb_interface
*intf
)
1499 struct usbtouch_usb
*usbtouch
= usb_get_intfdata(intf
);
1500 struct input_dev
*input
= usbtouch
->input
;
1503 /* reinit the device */
1504 if (usbtouch
->type
->init
) {
1505 err
= usbtouch
->type
->init(usbtouch
);
1508 "%s - type->init() failed, err: %d\n",
1514 /* restart IO if needed */
1515 mutex_lock(&input
->mutex
);
1517 err
= usb_submit_urb(usbtouch
->irq
, GFP_NOIO
);
1518 mutex_unlock(&input
->mutex
);
1523 static void usbtouch_free_buffers(struct usb_device
*udev
,
1524 struct usbtouch_usb
*usbtouch
)
1526 usb_free_coherent(udev
, usbtouch
->type
->rept_size
,
1527 usbtouch
->data
, usbtouch
->data_dma
);
1528 kfree(usbtouch
->buffer
);
1531 static struct usb_endpoint_descriptor
*
1532 usbtouch_get_input_endpoint(struct usb_host_interface
*interface
)
1536 for (i
= 0; i
< interface
->desc
.bNumEndpoints
; i
++)
1537 if (usb_endpoint_dir_in(&interface
->endpoint
[i
].desc
))
1538 return &interface
->endpoint
[i
].desc
;
1543 static int usbtouch_probe(struct usb_interface
*intf
,
1544 const struct usb_device_id
*id
)
1546 struct usbtouch_usb
*usbtouch
;
1547 struct input_dev
*input_dev
;
1548 struct usb_endpoint_descriptor
*endpoint
;
1549 struct usb_device
*udev
= interface_to_usbdev(intf
);
1550 struct usbtouch_device_info
*type
;
1553 /* some devices are ignored */
1554 if (id
->driver_info
== DEVTYPE_IGNORE
)
1557 endpoint
= usbtouch_get_input_endpoint(intf
->cur_altsetting
);
1561 usbtouch
= kzalloc(sizeof(struct usbtouch_usb
), GFP_KERNEL
);
1562 input_dev
= input_allocate_device();
1563 if (!usbtouch
|| !input_dev
)
1566 type
= &usbtouch_dev_info
[id
->driver_info
];
1567 usbtouch
->type
= type
;
1568 if (!type
->process_pkt
)
1569 type
->process_pkt
= usbtouch_process_pkt
;
1571 usbtouch
->data
= usb_alloc_coherent(udev
, type
->rept_size
,
1572 GFP_KERNEL
, &usbtouch
->data_dma
);
1573 if (!usbtouch
->data
)
1576 if (type
->get_pkt_len
) {
1577 usbtouch
->buffer
= kmalloc(type
->rept_size
, GFP_KERNEL
);
1578 if (!usbtouch
->buffer
)
1579 goto out_free_buffers
;
1582 usbtouch
->irq
= usb_alloc_urb(0, GFP_KERNEL
);
1583 if (!usbtouch
->irq
) {
1585 "%s - usb_alloc_urb failed: usbtouch->irq\n", __func__
);
1586 goto out_free_buffers
;
1589 usbtouch
->interface
= intf
;
1590 usbtouch
->input
= input_dev
;
1592 if (udev
->manufacturer
)
1593 strlcpy(usbtouch
->name
, udev
->manufacturer
, sizeof(usbtouch
->name
));
1595 if (udev
->product
) {
1596 if (udev
->manufacturer
)
1597 strlcat(usbtouch
->name
, " ", sizeof(usbtouch
->name
));
1598 strlcat(usbtouch
->name
, udev
->product
, sizeof(usbtouch
->name
));
1601 if (!strlen(usbtouch
->name
))
1602 snprintf(usbtouch
->name
, sizeof(usbtouch
->name
),
1603 "USB Touchscreen %04x:%04x",
1604 le16_to_cpu(udev
->descriptor
.idVendor
),
1605 le16_to_cpu(udev
->descriptor
.idProduct
));
1607 usb_make_path(udev
, usbtouch
->phys
, sizeof(usbtouch
->phys
));
1608 strlcat(usbtouch
->phys
, "/input0", sizeof(usbtouch
->phys
));
1610 input_dev
->name
= usbtouch
->name
;
1611 input_dev
->phys
= usbtouch
->phys
;
1612 usb_to_input_id(udev
, &input_dev
->id
);
1613 input_dev
->dev
.parent
= &intf
->dev
;
1615 input_set_drvdata(input_dev
, usbtouch
);
1617 input_dev
->open
= usbtouch_open
;
1618 input_dev
->close
= usbtouch_close
;
1620 input_dev
->evbit
[0] = BIT_MASK(EV_KEY
) | BIT_MASK(EV_ABS
);
1621 input_dev
->keybit
[BIT_WORD(BTN_TOUCH
)] = BIT_MASK(BTN_TOUCH
);
1622 input_set_abs_params(input_dev
, ABS_X
, type
->min_xc
, type
->max_xc
, 0, 0);
1623 input_set_abs_params(input_dev
, ABS_Y
, type
->min_yc
, type
->max_yc
, 0, 0);
1624 if (type
->max_press
)
1625 input_set_abs_params(input_dev
, ABS_PRESSURE
, type
->min_press
,
1626 type
->max_press
, 0, 0);
1628 if (usb_endpoint_type(endpoint
) == USB_ENDPOINT_XFER_INT
)
1629 usb_fill_int_urb(usbtouch
->irq
, udev
,
1630 usb_rcvintpipe(udev
, endpoint
->bEndpointAddress
),
1631 usbtouch
->data
, type
->rept_size
,
1632 usbtouch_irq
, usbtouch
, endpoint
->bInterval
);
1634 usb_fill_bulk_urb(usbtouch
->irq
, udev
,
1635 usb_rcvbulkpipe(udev
, endpoint
->bEndpointAddress
),
1636 usbtouch
->data
, type
->rept_size
,
1637 usbtouch_irq
, usbtouch
);
1639 usbtouch
->irq
->dev
= udev
;
1640 usbtouch
->irq
->transfer_dma
= usbtouch
->data_dma
;
1641 usbtouch
->irq
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
1643 /* device specific allocations */
1645 err
= type
->alloc(usbtouch
);
1648 "%s - type->alloc() failed, err: %d\n",
1654 /* device specific initialisation*/
1656 err
= type
->init(usbtouch
);
1659 "%s - type->init() failed, err: %d\n",
1665 err
= input_register_device(usbtouch
->input
);
1668 "%s - input_register_device failed, err: %d\n",
1673 usb_set_intfdata(intf
, usbtouch
);
1675 if (usbtouch
->type
->irq_always
) {
1676 /* this can't fail */
1677 usb_autopm_get_interface(intf
);
1678 err
= usb_submit_urb(usbtouch
->irq
, GFP_KERNEL
);
1680 usb_autopm_put_interface(intf
);
1682 "%s - usb_submit_urb failed with result: %d\n",
1684 goto out_unregister_input
;
1690 out_unregister_input
:
1691 input_unregister_device(input_dev
);
1695 type
->exit(usbtouch
);
1697 usb_free_urb(usbtouch
->irq
);
1699 usbtouch_free_buffers(udev
, usbtouch
);
1701 input_free_device(input_dev
);
1706 static void usbtouch_disconnect(struct usb_interface
*intf
)
1708 struct usbtouch_usb
*usbtouch
= usb_get_intfdata(intf
);
1714 "%s - usbtouch is initialized, cleaning up\n", __func__
);
1716 usb_set_intfdata(intf
, NULL
);
1717 /* this will stop IO via close */
1718 input_unregister_device(usbtouch
->input
);
1719 usb_free_urb(usbtouch
->irq
);
1720 if (usbtouch
->type
->exit
)
1721 usbtouch
->type
->exit(usbtouch
);
1722 usbtouch_free_buffers(interface_to_usbdev(intf
), usbtouch
);
1726 MODULE_DEVICE_TABLE(usb
, usbtouch_devices
);
1728 static struct usb_driver usbtouch_driver
= {
1729 .name
= "usbtouchscreen",
1730 .probe
= usbtouch_probe
,
1731 .disconnect
= usbtouch_disconnect
,
1732 .suspend
= usbtouch_suspend
,
1733 .resume
= usbtouch_resume
,
1734 .reset_resume
= usbtouch_reset_resume
,
1735 .id_table
= usbtouch_devices
,
1736 .supports_autosuspend
= 1,
1739 module_usb_driver(usbtouch_driver
);
1741 MODULE_AUTHOR(DRIVER_AUTHOR
);
1742 MODULE_DESCRIPTION(DRIVER_DESC
);
1743 MODULE_LICENSE("GPL");
1745 MODULE_ALIAS("touchkitusb");
1746 MODULE_ALIAS("itmtouch");
1747 MODULE_ALIAS("mtouchusb");