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
23 * Copyright (C) 2004-2007 by Daniel Ritz <daniel.ritz@gmx.ch>
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(0x595a, 0x0001), .driver_info
= DEVTYPE_IRTOUCH
},
186 {USB_DEVICE(0x6615, 0x0001), .driver_info
= DEVTYPE_IRTOUCH
},
187 {USB_DEVICE(0x6615, 0x0012), .driver_info
= DEVTYPE_IRTOUCH_HIRES
},
190 #ifdef CONFIG_TOUCHSCREEN_USB_IDEALTEK
191 {USB_DEVICE(0x1391, 0x1000), .driver_info
= DEVTYPE_IDEALTEK
},
194 #ifdef CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH
195 {USB_DEVICE(0x0dfc, 0x0001), .driver_info
= DEVTYPE_GENERAL_TOUCH
},
198 #ifdef CONFIG_TOUCHSCREEN_USB_GOTOP
199 {USB_DEVICE(0x08f2, 0x007f), .driver_info
= DEVTYPE_GOTOP
},
200 {USB_DEVICE(0x08f2, 0x00ce), .driver_info
= DEVTYPE_GOTOP
},
201 {USB_DEVICE(0x08f2, 0x00f4), .driver_info
= DEVTYPE_GOTOP
},
204 #ifdef CONFIG_TOUCHSCREEN_USB_JASTEC
205 {USB_DEVICE(0x0f92, 0x0001), .driver_info
= DEVTYPE_JASTEC
},
208 #ifdef CONFIG_TOUCHSCREEN_USB_E2I
209 {USB_DEVICE(0x1ac7, 0x0001), .driver_info
= DEVTYPE_E2I
},
212 #ifdef CONFIG_TOUCHSCREEN_USB_ZYTRONIC
213 {USB_DEVICE(0x14c8, 0x0003), .driver_info
= DEVTYPE_ZYTRONIC
},
216 #ifdef CONFIG_TOUCHSCREEN_USB_ETT_TC45USB
218 {USB_DEVICE(0x0664, 0x0309), .driver_info
= DEVTYPE_TC45USB
},
220 {USB_DEVICE(0x0664, 0x0306), .driver_info
= DEVTYPE_TC45USB
},
223 #ifdef CONFIG_TOUCHSCREEN_USB_NEXIO
224 /* data interface only */
225 {USB_DEVICE_AND_INTERFACE_INFO(0x10f0, 0x2002, 0x0a, 0x00, 0x00),
226 .driver_info
= DEVTYPE_NEXIO
},
227 {USB_DEVICE_AND_INTERFACE_INFO(0x1870, 0x0001, 0x0a, 0x00, 0x00),
228 .driver_info
= DEVTYPE_NEXIO
},
231 #ifdef CONFIG_TOUCHSCREEN_USB_ELO
232 {USB_DEVICE(0x04e7, 0x0020), .driver_info
= DEVTYPE_ELO
},
235 #ifdef CONFIG_TOUCHSCREEN_USB_EASYTOUCH
236 {USB_DEVICE(0x7374, 0x0001), .driver_info
= DEVTYPE_ETOUCH
},
243 /*****************************************************************************
247 #ifdef CONFIG_TOUCHSCREEN_USB_E2I
248 static int e2i_init(struct usbtouch_usb
*usbtouch
)
251 struct usb_device
*udev
= interface_to_usbdev(usbtouch
->interface
);
253 ret
= usb_control_msg(udev
, usb_rcvctrlpipe(udev
, 0),
254 0x01, 0x02, 0x0000, 0x0081,
255 NULL
, 0, USB_CTRL_SET_TIMEOUT
);
257 dev_dbg(&usbtouch
->interface
->dev
,
258 "%s - usb_control_msg - E2I_RESET - bytes|err: %d\n",
263 static int e2i_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
265 int tmp
= (pkt
[0] << 8) | pkt
[1];
266 dev
->x
= (pkt
[2] << 8) | pkt
[3];
267 dev
->y
= (pkt
[4] << 8) | pkt
[5];
270 dev
->touch
= (tmp
> 0);
271 dev
->press
= (tmp
> 0 ? tmp
: 0);
278 /*****************************************************************************
282 #ifdef CONFIG_TOUCHSCREEN_USB_EGALAX
288 #define EGALAX_PKT_TYPE_MASK 0xFE
289 #define EGALAX_PKT_TYPE_REPT 0x80
290 #define EGALAX_PKT_TYPE_DIAG 0x0A
292 static int egalax_init(struct usbtouch_usb
*usbtouch
)
296 struct usb_device
*udev
= interface_to_usbdev(usbtouch
->interface
);
299 * An eGalax diagnostic packet kicks the device into using the right
300 * protocol. We send a "check active" packet. The response will be
301 * read later and ignored.
304 buf
= kmalloc(3, GFP_KERNEL
);
308 buf
[0] = EGALAX_PKT_TYPE_DIAG
;
309 buf
[1] = 1; /* length */
310 buf
[2] = 'A'; /* command - check active */
312 for (i
= 0; i
< 3; i
++) {
313 ret
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
315 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
317 USB_CTRL_SET_TIMEOUT
);
331 static int egalax_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
333 if ((pkt
[0] & EGALAX_PKT_TYPE_MASK
) != EGALAX_PKT_TYPE_REPT
)
336 dev
->x
= ((pkt
[3] & 0x0F) << 7) | (pkt
[4] & 0x7F);
337 dev
->y
= ((pkt
[1] & 0x0F) << 7) | (pkt
[2] & 0x7F);
338 dev
->touch
= pkt
[0] & 0x01;
343 static int egalax_get_pkt_len(unsigned char *buf
, int len
)
345 switch (buf
[0] & EGALAX_PKT_TYPE_MASK
) {
346 case EGALAX_PKT_TYPE_REPT
:
349 case EGALAX_PKT_TYPE_DIAG
:
360 /*****************************************************************************
364 #ifdef CONFIG_TOUCHSCREEN_USB_EASYTOUCH
370 #define ETOUCH_PKT_TYPE_MASK 0xFE
371 #define ETOUCH_PKT_TYPE_REPT 0x80
372 #define ETOUCH_PKT_TYPE_REPT2 0xB0
373 #define ETOUCH_PKT_TYPE_DIAG 0x0A
375 static int etouch_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
377 if ((pkt
[0] & ETOUCH_PKT_TYPE_MASK
) != ETOUCH_PKT_TYPE_REPT
&&
378 (pkt
[0] & ETOUCH_PKT_TYPE_MASK
) != ETOUCH_PKT_TYPE_REPT2
)
381 dev
->x
= ((pkt
[1] & 0x1F) << 7) | (pkt
[2] & 0x7F);
382 dev
->y
= ((pkt
[3] & 0x1F) << 7) | (pkt
[4] & 0x7F);
383 dev
->touch
= pkt
[0] & 0x01;
388 static int etouch_get_pkt_len(unsigned char *buf
, int len
)
390 switch (buf
[0] & ETOUCH_PKT_TYPE_MASK
) {
391 case ETOUCH_PKT_TYPE_REPT
:
392 case ETOUCH_PKT_TYPE_REPT2
:
395 case ETOUCH_PKT_TYPE_DIAG
:
406 /*****************************************************************************
409 #ifdef CONFIG_TOUCHSCREEN_USB_PANJIT
410 static int panjit_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
412 dev
->x
= ((pkt
[2] & 0x0F) << 8) | pkt
[1];
413 dev
->y
= ((pkt
[4] & 0x0F) << 8) | pkt
[3];
414 dev
->touch
= pkt
[0] & 0x01;
421 /*****************************************************************************
424 #ifdef CONFIG_TOUCHSCREEN_USB_3M
426 #define MTOUCHUSB_ASYNC_REPORT 1
427 #define MTOUCHUSB_RESET 7
428 #define MTOUCHUSB_REQ_CTRLLR_ID 10
430 #define MTOUCHUSB_REQ_CTRLLR_ID_LEN 16
432 static int mtouch_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
435 dev
->x
= (pkt
[4] << 8) | pkt
[3];
436 dev
->y
= 0xffff - ((pkt
[6] << 8) | pkt
[5]);
438 dev
->x
= (pkt
[8] << 8) | pkt
[7];
439 dev
->y
= (pkt
[10] << 8) | pkt
[9];
441 dev
->touch
= (pkt
[2] & 0x40) ? 1 : 0;
451 static ssize_t
mtouch_firmware_rev_show(struct device
*dev
,
452 struct device_attribute
*attr
, char *output
)
454 struct usb_interface
*intf
= to_usb_interface(dev
);
455 struct usbtouch_usb
*usbtouch
= usb_get_intfdata(intf
);
456 struct mtouch_priv
*priv
= usbtouch
->priv
;
458 return scnprintf(output
, PAGE_SIZE
, "%1x.%1x\n",
459 priv
->fw_rev_major
, priv
->fw_rev_minor
);
461 static DEVICE_ATTR(firmware_rev
, 0444, mtouch_firmware_rev_show
, NULL
);
463 static struct attribute
*mtouch_attrs
[] = {
464 &dev_attr_firmware_rev
.attr
,
468 static const struct attribute_group mtouch_attr_group
= {
469 .attrs
= mtouch_attrs
,
472 static int mtouch_get_fw_revision(struct usbtouch_usb
*usbtouch
)
474 struct usb_device
*udev
= interface_to_usbdev(usbtouch
->interface
);
475 struct mtouch_priv
*priv
= usbtouch
->priv
;
479 buf
= kzalloc(MTOUCHUSB_REQ_CTRLLR_ID_LEN
, GFP_NOIO
);
483 ret
= usb_control_msg(udev
, usb_rcvctrlpipe(udev
, 0),
484 MTOUCHUSB_REQ_CTRLLR_ID
,
485 USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
486 0, 0, buf
, MTOUCHUSB_REQ_CTRLLR_ID_LEN
,
487 USB_CTRL_SET_TIMEOUT
);
488 if (ret
!= MTOUCHUSB_REQ_CTRLLR_ID_LEN
) {
489 dev_warn(&usbtouch
->interface
->dev
,
490 "Failed to read FW rev: %d\n", ret
);
491 ret
= ret
< 0 ? ret
: -EIO
;
495 priv
->fw_rev_major
= buf
[3];
496 priv
->fw_rev_minor
= buf
[4];
505 static int mtouch_alloc(struct usbtouch_usb
*usbtouch
)
509 usbtouch
->priv
= kmalloc(sizeof(struct mtouch_priv
), GFP_KERNEL
);
513 ret
= sysfs_create_group(&usbtouch
->interface
->dev
.kobj
,
516 kfree(usbtouch
->priv
);
517 usbtouch
->priv
= NULL
;
524 static int mtouch_init(struct usbtouch_usb
*usbtouch
)
527 struct usb_device
*udev
= interface_to_usbdev(usbtouch
->interface
);
529 ret
= mtouch_get_fw_revision(usbtouch
);
533 ret
= usb_control_msg(udev
, usb_rcvctrlpipe(udev
, 0),
535 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
536 1, 0, NULL
, 0, USB_CTRL_SET_TIMEOUT
);
537 dev_dbg(&usbtouch
->interface
->dev
,
538 "%s - usb_control_msg - MTOUCHUSB_RESET - bytes|err: %d\n",
544 for (i
= 0; i
< 3; i
++) {
545 ret
= usb_control_msg(udev
, usb_rcvctrlpipe(udev
, 0),
546 MTOUCHUSB_ASYNC_REPORT
,
547 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
548 1, 1, NULL
, 0, USB_CTRL_SET_TIMEOUT
);
549 dev_dbg(&usbtouch
->interface
->dev
,
550 "%s - usb_control_msg - MTOUCHUSB_ASYNC_REPORT - bytes|err: %d\n",
558 /* Default min/max xy are the raw values, override if using hw-calib */
560 input_set_abs_params(usbtouch
->input
, ABS_X
, 0, 0xffff, 0, 0);
561 input_set_abs_params(usbtouch
->input
, ABS_Y
, 0, 0xffff, 0, 0);
567 static void mtouch_exit(struct usbtouch_usb
*usbtouch
)
569 struct mtouch_priv
*priv
= usbtouch
->priv
;
571 sysfs_remove_group(&usbtouch
->interface
->dev
.kobj
, &mtouch_attr_group
);
577 /*****************************************************************************
580 #ifdef CONFIG_TOUCHSCREEN_USB_ITM
581 static int itm_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
585 * ITM devices report invalid x/y data if not touched.
586 * if the screen was touched before but is not touched any more
587 * report touch as 0 with the last valid x/y data once. then stop
588 * reporting data until touched again.
590 dev
->press
= ((pkt
[2] & 0x01) << 7) | (pkt
[5] & 0x7F);
592 touch
= ~pkt
[7] & 0x20;
602 dev
->x
= ((pkt
[0] & 0x1F) << 7) | (pkt
[3] & 0x7F);
603 dev
->y
= ((pkt
[1] & 0x1F) << 7) | (pkt
[4] & 0x7F);
611 /*****************************************************************************
614 #ifdef CONFIG_TOUCHSCREEN_USB_ETURBO
618 static int eturbo_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
622 /* packets should start with sync */
623 if (!(pkt
[0] & 0x80))
626 shift
= (6 - (pkt
[0] & 0x03));
627 dev
->x
= ((pkt
[3] << 7) | pkt
[4]) >> shift
;
628 dev
->y
= ((pkt
[1] << 7) | pkt
[2]) >> shift
;
629 dev
->touch
= (pkt
[0] & 0x10) ? 1 : 0;
634 static int eturbo_get_pkt_len(unsigned char *buf
, int len
)
645 /*****************************************************************************
648 #ifdef CONFIG_TOUCHSCREEN_USB_GUNZE
649 static int gunze_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
651 if (!(pkt
[0] & 0x80) || ((pkt
[1] | pkt
[2] | pkt
[3]) & 0x80))
654 dev
->x
= ((pkt
[0] & 0x1F) << 7) | (pkt
[2] & 0x7F);
655 dev
->y
= ((pkt
[1] & 0x1F) << 7) | (pkt
[3] & 0x7F);
656 dev
->touch
= pkt
[0] & 0x20;
662 /*****************************************************************************
665 * Documentation about the controller and it's protocol can be found at
666 * http://www.dmccoltd.com/files/controler/tsc10usb_pi_e.pdf
667 * http://www.dmccoltd.com/files/controler/tsc25_usb_e.pdf
669 #ifdef CONFIG_TOUCHSCREEN_USB_DMC_TSC10
671 /* supported data rates. currently using 130 */
672 #define TSC10_RATE_POINT 0x50
673 #define TSC10_RATE_30 0x40
674 #define TSC10_RATE_50 0x41
675 #define TSC10_RATE_80 0x42
676 #define TSC10_RATE_100 0x43
677 #define TSC10_RATE_130 0x44
678 #define TSC10_RATE_150 0x45
681 #define TSC10_CMD_RESET 0x55
682 #define TSC10_CMD_RATE 0x05
683 #define TSC10_CMD_DATA1 0x01
685 static int dmc_tsc10_init(struct usbtouch_usb
*usbtouch
)
687 struct usb_device
*dev
= interface_to_usbdev(usbtouch
->interface
);
691 buf
= kmalloc(2, GFP_NOIO
);
695 buf
[0] = buf
[1] = 0xFF;
696 ret
= usb_control_msg(dev
, usb_rcvctrlpipe (dev
, 0),
698 USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
699 0, 0, buf
, 2, USB_CTRL_SET_TIMEOUT
);
702 if (buf
[0] != 0x06) {
707 /* TSC-25 data sheet specifies a delay after the RESET command */
710 /* set coordinate output rate */
711 buf
[0] = buf
[1] = 0xFF;
712 ret
= usb_control_msg(dev
, usb_rcvctrlpipe (dev
, 0),
714 USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
715 TSC10_RATE_150
, 0, buf
, 2, USB_CTRL_SET_TIMEOUT
);
718 if ((buf
[0] != 0x06) && (buf
[0] != 0x15 || buf
[1] != 0x01)) {
723 /* start sending data */
724 ret
= usb_control_msg(dev
, usb_rcvctrlpipe (dev
, 0),
726 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
727 0, 0, NULL
, 0, USB_CTRL_SET_TIMEOUT
);
735 static int dmc_tsc10_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
737 dev
->x
= ((pkt
[2] & 0x03) << 8) | pkt
[1];
738 dev
->y
= ((pkt
[4] & 0x03) << 8) | pkt
[3];
739 dev
->touch
= pkt
[0] & 0x01;
746 /*****************************************************************************
749 #ifdef CONFIG_TOUCHSCREEN_USB_IRTOUCH
750 static int irtouch_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
752 dev
->x
= (pkt
[3] << 8) | pkt
[2];
753 dev
->y
= (pkt
[5] << 8) | pkt
[4];
754 dev
->touch
= (pkt
[1] & 0x03) ? 1 : 0;
760 /*****************************************************************************
761 * ET&T TC5UH/TC4UM part
763 #ifdef CONFIG_TOUCHSCREEN_USB_ETT_TC45USB
764 static int tc45usb_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
766 dev
->x
= ((pkt
[2] & 0x0F) << 8) | pkt
[1];
767 dev
->y
= ((pkt
[4] & 0x0F) << 8) | pkt
[3];
768 dev
->touch
= pkt
[0] & 0x01;
774 /*****************************************************************************
775 * IdealTEK URTC1000 Part
777 #ifdef CONFIG_TOUCHSCREEN_USB_IDEALTEK
781 static int idealtek_get_pkt_len(unsigned char *buf
, int len
)
790 static int idealtek_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
792 switch (pkt
[0] & 0x98) {
794 /* touch data in IdealTEK mode */
795 dev
->x
= (pkt
[1] << 5) | (pkt
[2] >> 2);
796 dev
->y
= (pkt
[3] << 5) | (pkt
[4] >> 2);
797 dev
->touch
= (pkt
[0] & 0x40) ? 1 : 0;
801 /* touch data in MT emulation mode */
802 dev
->x
= (pkt
[2] << 5) | (pkt
[1] >> 2);
803 dev
->y
= (pkt
[4] << 5) | (pkt
[3] >> 2);
804 dev
->touch
= (pkt
[0] & 0x40) ? 1 : 0;
813 /*****************************************************************************
816 #ifdef CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH
817 static int general_touch_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
819 dev
->x
= (pkt
[2] << 8) | pkt
[1];
820 dev
->y
= (pkt
[4] << 8) | pkt
[3];
821 dev
->press
= pkt
[5] & 0xff;
822 dev
->touch
= pkt
[0] & 0x01;
828 /*****************************************************************************
831 #ifdef CONFIG_TOUCHSCREEN_USB_GOTOP
832 static int gotop_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
834 dev
->x
= ((pkt
[1] & 0x38) << 4) | pkt
[2];
835 dev
->y
= ((pkt
[1] & 0x07) << 7) | pkt
[3];
836 dev
->touch
= pkt
[0] & 0x01;
842 /*****************************************************************************
845 #ifdef CONFIG_TOUCHSCREEN_USB_JASTEC
846 static int jastec_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
848 dev
->x
= ((pkt
[0] & 0x3f) << 6) | (pkt
[2] & 0x3f);
849 dev
->y
= ((pkt
[1] & 0x3f) << 6) | (pkt
[3] & 0x3f);
850 dev
->touch
= (pkt
[0] & 0x40) >> 6;
856 /*****************************************************************************
859 #ifdef CONFIG_TOUCHSCREEN_USB_ZYTRONIC
860 static int zytronic_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
862 struct usb_interface
*intf
= dev
->interface
;
865 case 0x3A: /* command response */
866 dev_dbg(&intf
->dev
, "%s: Command response %d\n", __func__
, pkt
[1]);
869 case 0xC0: /* down */
870 dev
->x
= (pkt
[1] & 0x7f) | ((pkt
[2] & 0x07) << 7);
871 dev
->y
= (pkt
[3] & 0x7f) | ((pkt
[4] & 0x07) << 7);
873 dev_dbg(&intf
->dev
, "%s: down %d,%d\n", __func__
, dev
->x
, dev
->y
);
877 dev
->x
= (pkt
[1] & 0x7f) | ((pkt
[2] & 0x07) << 7);
878 dev
->y
= (pkt
[3] & 0x7f) | ((pkt
[4] & 0x07) << 7);
880 dev_dbg(&intf
->dev
, "%s: up %d,%d\n", __func__
, dev
->x
, dev
->y
);
884 dev_dbg(&intf
->dev
, "%s: Unknown return %d\n", __func__
, pkt
[0]);
892 /*****************************************************************************
895 #ifdef CONFIG_TOUCHSCREEN_USB_NEXIO
897 #define NEXIO_TIMEOUT 5000
898 #define NEXIO_BUFSIZE 1024
899 #define NEXIO_THRESHOLD 50
903 unsigned char *ack_buf
;
906 struct nexio_touch_packet
{
907 u8 flags
; /* 0xe1 = touch, 0xe1 = release */
908 __be16 data_len
; /* total bytes of touch data */
909 __be16 x_len
; /* bytes for X axis */
910 __be16 y_len
; /* bytes for Y axis */
912 } __attribute__ ((packed
));
914 static unsigned char nexio_ack_pkt
[2] = { 0xaa, 0x02 };
915 static unsigned char nexio_init_pkt
[4] = { 0x82, 0x04, 0x0a, 0x0f };
917 static void nexio_ack_complete(struct urb
*urb
)
921 static int nexio_alloc(struct usbtouch_usb
*usbtouch
)
923 struct nexio_priv
*priv
;
926 usbtouch
->priv
= kmalloc(sizeof(struct nexio_priv
), GFP_KERNEL
);
930 priv
= usbtouch
->priv
;
932 priv
->ack_buf
= kmemdup(nexio_ack_pkt
, sizeof(nexio_ack_pkt
),
937 priv
->ack
= usb_alloc_urb(0, GFP_KERNEL
);
939 dev_dbg(&usbtouch
->interface
->dev
,
940 "%s - usb_alloc_urb failed: usbtouch->ack\n", __func__
);
947 kfree(priv
->ack_buf
);
954 static int nexio_init(struct usbtouch_usb
*usbtouch
)
956 struct usb_device
*dev
= interface_to_usbdev(usbtouch
->interface
);
957 struct usb_host_interface
*interface
= usbtouch
->interface
->cur_altsetting
;
958 struct nexio_priv
*priv
= usbtouch
->priv
;
962 char *firmware_ver
= NULL
, *device_name
= NULL
;
963 int input_ep
= 0, output_ep
= 0;
965 /* find first input and output endpoint */
966 for (i
= 0; i
< interface
->desc
.bNumEndpoints
; i
++) {
968 usb_endpoint_dir_in(&interface
->endpoint
[i
].desc
))
969 input_ep
= interface
->endpoint
[i
].desc
.bEndpointAddress
;
971 usb_endpoint_dir_out(&interface
->endpoint
[i
].desc
))
972 output_ep
= interface
->endpoint
[i
].desc
.bEndpointAddress
;
974 if (!input_ep
|| !output_ep
)
977 buf
= kmalloc(NEXIO_BUFSIZE
, GFP_NOIO
);
981 /* two empty reads */
982 for (i
= 0; i
< 2; i
++) {
983 ret
= usb_bulk_msg(dev
, usb_rcvbulkpipe(dev
, input_ep
),
984 buf
, NEXIO_BUFSIZE
, &actual_len
,
990 /* send init command */
991 memcpy(buf
, nexio_init_pkt
, sizeof(nexio_init_pkt
));
992 ret
= usb_bulk_msg(dev
, usb_sndbulkpipe(dev
, output_ep
),
993 buf
, sizeof(nexio_init_pkt
), &actual_len
,
999 for (i
= 0; i
< 3; i
++) {
1000 memset(buf
, 0, NEXIO_BUFSIZE
);
1001 ret
= usb_bulk_msg(dev
, usb_rcvbulkpipe(dev
, input_ep
),
1002 buf
, NEXIO_BUFSIZE
, &actual_len
,
1004 if (ret
< 0 || actual_len
< 1 || buf
[1] != actual_len
)
1007 case 0x83: /* firmware version */
1009 firmware_ver
= kstrdup(&buf
[2], GFP_NOIO
);
1011 case 0x84: /* device name */
1013 device_name
= kstrdup(&buf
[2], GFP_NOIO
);
1018 printk(KERN_INFO
"Nexio device: %s, firmware version: %s\n",
1019 device_name
, firmware_ver
);
1021 kfree(firmware_ver
);
1024 usb_fill_bulk_urb(priv
->ack
, dev
, usb_sndbulkpipe(dev
, output_ep
),
1025 priv
->ack_buf
, sizeof(nexio_ack_pkt
),
1026 nexio_ack_complete
, usbtouch
);
1034 static void nexio_exit(struct usbtouch_usb
*usbtouch
)
1036 struct nexio_priv
*priv
= usbtouch
->priv
;
1038 usb_kill_urb(priv
->ack
);
1039 usb_free_urb(priv
->ack
);
1040 kfree(priv
->ack_buf
);
1044 static int nexio_read_data(struct usbtouch_usb
*usbtouch
, unsigned char *pkt
)
1046 struct nexio_touch_packet
*packet
= (void *) pkt
;
1047 struct nexio_priv
*priv
= usbtouch
->priv
;
1048 unsigned int data_len
= be16_to_cpu(packet
->data_len
);
1049 unsigned int x_len
= be16_to_cpu(packet
->x_len
);
1050 unsigned int y_len
= be16_to_cpu(packet
->y_len
);
1051 int x
, y
, begin_x
, begin_y
, end_x
, end_y
, w
, h
, ret
;
1053 /* got touch data? */
1054 if ((pkt
[0] & 0xe0) != 0xe0)
1057 if (data_len
> 0xff)
1063 ret
= usb_submit_urb(priv
->ack
, GFP_ATOMIC
);
1065 if (!usbtouch
->type
->max_xc
) {
1066 usbtouch
->type
->max_xc
= 2 * x_len
;
1067 input_set_abs_params(usbtouch
->input
, ABS_X
,
1068 0, usbtouch
->type
->max_xc
, 0, 0);
1069 usbtouch
->type
->max_yc
= 2 * y_len
;
1070 input_set_abs_params(usbtouch
->input
, ABS_Y
,
1071 0, usbtouch
->type
->max_yc
, 0, 0);
1074 * The device reports state of IR sensors on X and Y axes.
1075 * Each byte represents "darkness" percentage (0-100) of one element.
1076 * 17" touchscreen reports only 64 x 52 bytes so the resolution is low.
1077 * This also means that there's a limited multi-touch capability but
1078 * it's disabled (and untested) here as there's no X driver for that.
1080 begin_x
= end_x
= begin_y
= end_y
= -1;
1081 for (x
= 0; x
< x_len
; x
++) {
1082 if (begin_x
== -1 && packet
->data
[x
] > NEXIO_THRESHOLD
) {
1086 if (end_x
== -1 && begin_x
!= -1 && packet
->data
[x
] < NEXIO_THRESHOLD
) {
1088 for (y
= x_len
; y
< data_len
; y
++) {
1089 if (begin_y
== -1 && packet
->data
[y
] > NEXIO_THRESHOLD
) {
1090 begin_y
= y
- x_len
;
1094 begin_y
!= -1 && packet
->data
[y
] < NEXIO_THRESHOLD
) {
1095 end_y
= y
- 1 - x_len
;
1096 w
= end_x
- begin_x
;
1097 h
= end_y
- begin_y
;
1100 input_report_abs(usbtouch
->input
,
1101 ABS_MT_TOUCH_MAJOR
, max(w
,h
));
1102 input_report_abs(usbtouch
->input
,
1103 ABS_MT_TOUCH_MINOR
, min(x
,h
));
1104 input_report_abs(usbtouch
->input
,
1105 ABS_MT_POSITION_X
, 2*begin_x
+w
);
1106 input_report_abs(usbtouch
->input
,
1107 ABS_MT_POSITION_Y
, 2*begin_y
+h
);
1108 input_report_abs(usbtouch
->input
,
1109 ABS_MT_ORIENTATION
, w
> h
);
1110 input_mt_sync(usbtouch
->input
);
1113 usbtouch
->x
= 2 * begin_x
+ w
;
1114 usbtouch
->y
= 2 * begin_y
+ h
;
1115 usbtouch
->touch
= packet
->flags
& 0x01;
1116 begin_y
= end_y
= -1;
1120 begin_x
= end_x
= -1;
1129 /*****************************************************************************
1133 #ifdef CONFIG_TOUCHSCREEN_USB_ELO
1135 static int elo_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
1137 dev
->x
= (pkt
[3] << 8) | pkt
[2];
1138 dev
->y
= (pkt
[5] << 8) | pkt
[4];
1139 dev
->touch
= pkt
[6] > 0;
1140 dev
->press
= pkt
[6];
1147 /*****************************************************************************
1148 * the different device descriptors
1151 static void usbtouch_process_multi(struct usbtouch_usb
*usbtouch
,
1152 unsigned char *pkt
, int len
);
1155 static struct usbtouch_device_info usbtouch_dev_info
[] = {
1156 #ifdef CONFIG_TOUCHSCREEN_USB_ELO
1164 .read_data
= elo_read_data
,
1168 #ifdef CONFIG_TOUCHSCREEN_USB_EGALAX
1169 [DEVTYPE_EGALAX
] = {
1175 .process_pkt
= usbtouch_process_multi
,
1176 .get_pkt_len
= egalax_get_pkt_len
,
1177 .read_data
= egalax_read_data
,
1178 .init
= egalax_init
,
1182 #ifdef CONFIG_TOUCHSCREEN_USB_PANJIT
1183 [DEVTYPE_PANJIT
] = {
1189 .read_data
= panjit_read_data
,
1193 #ifdef CONFIG_TOUCHSCREEN_USB_3M
1200 .read_data
= mtouch_read_data
,
1201 .alloc
= mtouch_alloc
,
1202 .init
= mtouch_init
,
1203 .exit
= mtouch_exit
,
1207 #ifdef CONFIG_TOUCHSCREEN_USB_ITM
1215 .read_data
= itm_read_data
,
1219 #ifdef CONFIG_TOUCHSCREEN_USB_ETURBO
1220 [DEVTYPE_ETURBO
] = {
1226 .process_pkt
= usbtouch_process_multi
,
1227 .get_pkt_len
= eturbo_get_pkt_len
,
1228 .read_data
= eturbo_read_data
,
1232 #ifdef CONFIG_TOUCHSCREEN_USB_GUNZE
1239 .read_data
= gunze_read_data
,
1243 #ifdef CONFIG_TOUCHSCREEN_USB_DMC_TSC10
1244 [DEVTYPE_DMC_TSC10
] = {
1250 .init
= dmc_tsc10_init
,
1251 .read_data
= dmc_tsc10_read_data
,
1255 #ifdef CONFIG_TOUCHSCREEN_USB_IRTOUCH
1256 [DEVTYPE_IRTOUCH
] = {
1262 .read_data
= irtouch_read_data
,
1265 [DEVTYPE_IRTOUCH_HIRES
] = {
1271 .read_data
= irtouch_read_data
,
1275 #ifdef CONFIG_TOUCHSCREEN_USB_IDEALTEK
1276 [DEVTYPE_IDEALTEK
] = {
1282 .process_pkt
= usbtouch_process_multi
,
1283 .get_pkt_len
= idealtek_get_pkt_len
,
1284 .read_data
= idealtek_read_data
,
1288 #ifdef CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH
1289 [DEVTYPE_GENERAL_TOUCH
] = {
1295 .read_data
= general_touch_read_data
,
1299 #ifdef CONFIG_TOUCHSCREEN_USB_GOTOP
1306 .read_data
= gotop_read_data
,
1310 #ifdef CONFIG_TOUCHSCREEN_USB_JASTEC
1311 [DEVTYPE_JASTEC
] = {
1317 .read_data
= jastec_read_data
,
1321 #ifdef CONFIG_TOUCHSCREEN_USB_E2I
1329 .read_data
= e2i_read_data
,
1333 #ifdef CONFIG_TOUCHSCREEN_USB_ZYTRONIC
1334 [DEVTYPE_ZYTRONIC
] = {
1340 .read_data
= zytronic_read_data
,
1345 #ifdef CONFIG_TOUCHSCREEN_USB_ETT_TC45USB
1346 [DEVTYPE_TC45USB
] = {
1352 .read_data
= tc45usb_read_data
,
1356 #ifdef CONFIG_TOUCHSCREEN_USB_NEXIO
1360 .read_data
= nexio_read_data
,
1361 .alloc
= nexio_alloc
,
1366 #ifdef CONFIG_TOUCHSCREEN_USB_EASYTOUCH
1367 [DEVTYPE_ETOUCH
] = {
1373 .process_pkt
= usbtouch_process_multi
,
1374 .get_pkt_len
= etouch_get_pkt_len
,
1375 .read_data
= etouch_read_data
,
1381 /*****************************************************************************
1384 static void usbtouch_process_pkt(struct usbtouch_usb
*usbtouch
,
1385 unsigned char *pkt
, int len
)
1387 struct usbtouch_device_info
*type
= usbtouch
->type
;
1389 if (!type
->read_data(usbtouch
, pkt
))
1392 input_report_key(usbtouch
->input
, BTN_TOUCH
, usbtouch
->touch
);
1395 input_report_abs(usbtouch
->input
, ABS_X
, usbtouch
->y
);
1396 input_report_abs(usbtouch
->input
, ABS_Y
, usbtouch
->x
);
1398 input_report_abs(usbtouch
->input
, ABS_X
, usbtouch
->x
);
1399 input_report_abs(usbtouch
->input
, ABS_Y
, usbtouch
->y
);
1401 if (type
->max_press
)
1402 input_report_abs(usbtouch
->input
, ABS_PRESSURE
, usbtouch
->press
);
1403 input_sync(usbtouch
->input
);
1408 static void usbtouch_process_multi(struct usbtouch_usb
*usbtouch
,
1409 unsigned char *pkt
, int len
)
1411 unsigned char *buffer
;
1412 int pkt_len
, pos
, buf_len
, tmp
;
1414 /* process buffer */
1415 if (unlikely(usbtouch
->buf_len
)) {
1416 /* try to get size */
1417 pkt_len
= usbtouch
->type
->get_pkt_len(
1418 usbtouch
->buffer
, usbtouch
->buf_len
);
1421 if (unlikely(!pkt_len
))
1424 /* need to append -pkt_len bytes before able to get size */
1425 if (unlikely(pkt_len
< 0)) {
1426 int append
= -pkt_len
;
1427 if (unlikely(append
> len
))
1429 if (usbtouch
->buf_len
+ append
>= usbtouch
->type
->rept_size
)
1431 memcpy(usbtouch
->buffer
+ usbtouch
->buf_len
, pkt
, append
);
1432 usbtouch
->buf_len
+= append
;
1434 pkt_len
= usbtouch
->type
->get_pkt_len(
1435 usbtouch
->buffer
, usbtouch
->buf_len
);
1441 tmp
= pkt_len
- usbtouch
->buf_len
;
1442 if (usbtouch
->buf_len
+ tmp
>= usbtouch
->type
->rept_size
)
1444 memcpy(usbtouch
->buffer
+ usbtouch
->buf_len
, pkt
, tmp
);
1445 usbtouch_process_pkt(usbtouch
, usbtouch
->buffer
, pkt_len
);
1448 buf_len
= len
- tmp
;
1454 /* loop over the received packet, process */
1456 while (pos
< buf_len
) {
1457 /* get packet len */
1458 pkt_len
= usbtouch
->type
->get_pkt_len(buffer
+ pos
,
1461 /* unknown packet: skip one byte */
1462 if (unlikely(!pkt_len
)) {
1467 /* full packet: process */
1468 if (likely((pkt_len
> 0) && (pkt_len
<= buf_len
- pos
))) {
1469 usbtouch_process_pkt(usbtouch
, buffer
+ pos
, pkt_len
);
1471 /* incomplete packet: save in buffer */
1472 memcpy(usbtouch
->buffer
, buffer
+ pos
, buf_len
- pos
);
1473 usbtouch
->buf_len
= buf_len
- pos
;
1480 usbtouch
->buf_len
= 0;
1486 static void usbtouch_irq(struct urb
*urb
)
1488 struct usbtouch_usb
*usbtouch
= urb
->context
;
1489 struct device
*dev
= &usbtouch
->interface
->dev
;
1492 switch (urb
->status
) {
1497 /* this urb is timing out */
1499 "%s - urb timed out - was the device unplugged?\n",
1506 /* this urb is terminated, clean up */
1507 dev_dbg(dev
, "%s - urb shutting down with status: %d\n",
1508 __func__
, urb
->status
);
1511 dev_dbg(dev
, "%s - nonzero urb status received: %d\n",
1512 __func__
, urb
->status
);
1516 usbtouch
->type
->process_pkt(usbtouch
, usbtouch
->data
, urb
->actual_length
);
1519 usb_mark_last_busy(interface_to_usbdev(usbtouch
->interface
));
1520 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
1522 dev_err(dev
, "%s - usb_submit_urb failed with result: %d\n",
1526 static int usbtouch_open(struct input_dev
*input
)
1528 struct usbtouch_usb
*usbtouch
= input_get_drvdata(input
);
1531 usbtouch
->irq
->dev
= interface_to_usbdev(usbtouch
->interface
);
1533 r
= usb_autopm_get_interface(usbtouch
->interface
) ? -EIO
: 0;
1537 mutex_lock(&usbtouch
->pm_mutex
);
1538 if (!usbtouch
->type
->irq_always
) {
1539 if (usb_submit_urb(usbtouch
->irq
, GFP_KERNEL
)) {
1545 usbtouch
->interface
->needs_remote_wakeup
= 1;
1546 usbtouch
->is_open
= true;
1548 mutex_unlock(&usbtouch
->pm_mutex
);
1549 usb_autopm_put_interface(usbtouch
->interface
);
1554 static void usbtouch_close(struct input_dev
*input
)
1556 struct usbtouch_usb
*usbtouch
= input_get_drvdata(input
);
1559 mutex_lock(&usbtouch
->pm_mutex
);
1560 if (!usbtouch
->type
->irq_always
)
1561 usb_kill_urb(usbtouch
->irq
);
1562 usbtouch
->is_open
= false;
1563 mutex_unlock(&usbtouch
->pm_mutex
);
1565 r
= usb_autopm_get_interface(usbtouch
->interface
);
1566 usbtouch
->interface
->needs_remote_wakeup
= 0;
1568 usb_autopm_put_interface(usbtouch
->interface
);
1571 static int usbtouch_suspend
1572 (struct usb_interface
*intf
, pm_message_t message
)
1574 struct usbtouch_usb
*usbtouch
= usb_get_intfdata(intf
);
1576 usb_kill_urb(usbtouch
->irq
);
1581 static int usbtouch_resume(struct usb_interface
*intf
)
1583 struct usbtouch_usb
*usbtouch
= usb_get_intfdata(intf
);
1586 mutex_lock(&usbtouch
->pm_mutex
);
1587 if (usbtouch
->is_open
|| usbtouch
->type
->irq_always
)
1588 result
= usb_submit_urb(usbtouch
->irq
, GFP_NOIO
);
1589 mutex_unlock(&usbtouch
->pm_mutex
);
1594 static int usbtouch_reset_resume(struct usb_interface
*intf
)
1596 struct usbtouch_usb
*usbtouch
= usb_get_intfdata(intf
);
1599 /* reinit the device */
1600 if (usbtouch
->type
->init
) {
1601 err
= usbtouch
->type
->init(usbtouch
);
1604 "%s - type->init() failed, err: %d\n",
1610 /* restart IO if needed */
1611 mutex_lock(&usbtouch
->pm_mutex
);
1612 if (usbtouch
->is_open
)
1613 err
= usb_submit_urb(usbtouch
->irq
, GFP_NOIO
);
1614 mutex_unlock(&usbtouch
->pm_mutex
);
1619 static void usbtouch_free_buffers(struct usb_device
*udev
,
1620 struct usbtouch_usb
*usbtouch
)
1622 usb_free_coherent(udev
, usbtouch
->data_size
,
1623 usbtouch
->data
, usbtouch
->data_dma
);
1624 kfree(usbtouch
->buffer
);
1627 static struct usb_endpoint_descriptor
*
1628 usbtouch_get_input_endpoint(struct usb_host_interface
*interface
)
1632 for (i
= 0; i
< interface
->desc
.bNumEndpoints
; i
++)
1633 if (usb_endpoint_dir_in(&interface
->endpoint
[i
].desc
))
1634 return &interface
->endpoint
[i
].desc
;
1639 static int usbtouch_probe(struct usb_interface
*intf
,
1640 const struct usb_device_id
*id
)
1642 struct usbtouch_usb
*usbtouch
;
1643 struct input_dev
*input_dev
;
1644 struct usb_endpoint_descriptor
*endpoint
;
1645 struct usb_device
*udev
= interface_to_usbdev(intf
);
1646 struct usbtouch_device_info
*type
;
1649 /* some devices are ignored */
1650 if (id
->driver_info
== DEVTYPE_IGNORE
)
1653 endpoint
= usbtouch_get_input_endpoint(intf
->cur_altsetting
);
1657 usbtouch
= kzalloc(sizeof(struct usbtouch_usb
), GFP_KERNEL
);
1658 input_dev
= input_allocate_device();
1659 if (!usbtouch
|| !input_dev
)
1662 mutex_init(&usbtouch
->pm_mutex
);
1664 type
= &usbtouch_dev_info
[id
->driver_info
];
1665 usbtouch
->type
= type
;
1666 if (!type
->process_pkt
)
1667 type
->process_pkt
= usbtouch_process_pkt
;
1669 usbtouch
->data_size
= type
->rept_size
;
1670 if (type
->get_pkt_len
) {
1672 * When dealing with variable-length packets we should
1673 * not request more than wMaxPacketSize bytes at once
1674 * as we do not know if there is more data coming or
1675 * we filled exactly wMaxPacketSize bytes and there is
1678 usbtouch
->data_size
= min(usbtouch
->data_size
,
1679 usb_endpoint_maxp(endpoint
));
1682 usbtouch
->data
= usb_alloc_coherent(udev
, usbtouch
->data_size
,
1683 GFP_KERNEL
, &usbtouch
->data_dma
);
1684 if (!usbtouch
->data
)
1687 if (type
->get_pkt_len
) {
1688 usbtouch
->buffer
= kmalloc(type
->rept_size
, GFP_KERNEL
);
1689 if (!usbtouch
->buffer
)
1690 goto out_free_buffers
;
1693 usbtouch
->irq
= usb_alloc_urb(0, GFP_KERNEL
);
1694 if (!usbtouch
->irq
) {
1696 "%s - usb_alloc_urb failed: usbtouch->irq\n", __func__
);
1697 goto out_free_buffers
;
1700 usbtouch
->interface
= intf
;
1701 usbtouch
->input
= input_dev
;
1703 if (udev
->manufacturer
)
1704 strlcpy(usbtouch
->name
, udev
->manufacturer
, sizeof(usbtouch
->name
));
1706 if (udev
->product
) {
1707 if (udev
->manufacturer
)
1708 strlcat(usbtouch
->name
, " ", sizeof(usbtouch
->name
));
1709 strlcat(usbtouch
->name
, udev
->product
, sizeof(usbtouch
->name
));
1712 if (!strlen(usbtouch
->name
))
1713 snprintf(usbtouch
->name
, sizeof(usbtouch
->name
),
1714 "USB Touchscreen %04x:%04x",
1715 le16_to_cpu(udev
->descriptor
.idVendor
),
1716 le16_to_cpu(udev
->descriptor
.idProduct
));
1718 usb_make_path(udev
, usbtouch
->phys
, sizeof(usbtouch
->phys
));
1719 strlcat(usbtouch
->phys
, "/input0", sizeof(usbtouch
->phys
));
1721 input_dev
->name
= usbtouch
->name
;
1722 input_dev
->phys
= usbtouch
->phys
;
1723 usb_to_input_id(udev
, &input_dev
->id
);
1724 input_dev
->dev
.parent
= &intf
->dev
;
1726 input_set_drvdata(input_dev
, usbtouch
);
1728 input_dev
->open
= usbtouch_open
;
1729 input_dev
->close
= usbtouch_close
;
1731 input_dev
->evbit
[0] = BIT_MASK(EV_KEY
) | BIT_MASK(EV_ABS
);
1732 input_dev
->keybit
[BIT_WORD(BTN_TOUCH
)] = BIT_MASK(BTN_TOUCH
);
1733 input_set_abs_params(input_dev
, ABS_X
, type
->min_xc
, type
->max_xc
, 0, 0);
1734 input_set_abs_params(input_dev
, ABS_Y
, type
->min_yc
, type
->max_yc
, 0, 0);
1735 if (type
->max_press
)
1736 input_set_abs_params(input_dev
, ABS_PRESSURE
, type
->min_press
,
1737 type
->max_press
, 0, 0);
1739 if (usb_endpoint_type(endpoint
) == USB_ENDPOINT_XFER_INT
)
1740 usb_fill_int_urb(usbtouch
->irq
, udev
,
1741 usb_rcvintpipe(udev
, endpoint
->bEndpointAddress
),
1742 usbtouch
->data
, usbtouch
->data_size
,
1743 usbtouch_irq
, usbtouch
, endpoint
->bInterval
);
1745 usb_fill_bulk_urb(usbtouch
->irq
, udev
,
1746 usb_rcvbulkpipe(udev
, endpoint
->bEndpointAddress
),
1747 usbtouch
->data
, usbtouch
->data_size
,
1748 usbtouch_irq
, usbtouch
);
1750 usbtouch
->irq
->dev
= udev
;
1751 usbtouch
->irq
->transfer_dma
= usbtouch
->data_dma
;
1752 usbtouch
->irq
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
1754 /* device specific allocations */
1756 err
= type
->alloc(usbtouch
);
1759 "%s - type->alloc() failed, err: %d\n",
1765 /* device specific initialisation*/
1767 err
= type
->init(usbtouch
);
1770 "%s - type->init() failed, err: %d\n",
1776 err
= input_register_device(usbtouch
->input
);
1779 "%s - input_register_device failed, err: %d\n",
1784 usb_set_intfdata(intf
, usbtouch
);
1786 if (usbtouch
->type
->irq_always
) {
1787 /* this can't fail */
1788 usb_autopm_get_interface(intf
);
1789 err
= usb_submit_urb(usbtouch
->irq
, GFP_KERNEL
);
1791 usb_autopm_put_interface(intf
);
1793 "%s - usb_submit_urb failed with result: %d\n",
1795 goto out_unregister_input
;
1801 out_unregister_input
:
1802 input_unregister_device(input_dev
);
1806 type
->exit(usbtouch
);
1808 usb_free_urb(usbtouch
->irq
);
1810 usbtouch_free_buffers(udev
, usbtouch
);
1812 input_free_device(input_dev
);
1817 static void usbtouch_disconnect(struct usb_interface
*intf
)
1819 struct usbtouch_usb
*usbtouch
= usb_get_intfdata(intf
);
1825 "%s - usbtouch is initialized, cleaning up\n", __func__
);
1827 usb_set_intfdata(intf
, NULL
);
1828 /* this will stop IO via close */
1829 input_unregister_device(usbtouch
->input
);
1830 usb_free_urb(usbtouch
->irq
);
1831 if (usbtouch
->type
->exit
)
1832 usbtouch
->type
->exit(usbtouch
);
1833 usbtouch_free_buffers(interface_to_usbdev(intf
), usbtouch
);
1837 MODULE_DEVICE_TABLE(usb
, usbtouch_devices
);
1839 static struct usb_driver usbtouch_driver
= {
1840 .name
= "usbtouchscreen",
1841 .probe
= usbtouch_probe
,
1842 .disconnect
= usbtouch_disconnect
,
1843 .suspend
= usbtouch_suspend
,
1844 .resume
= usbtouch_resume
,
1845 .reset_resume
= usbtouch_reset_resume
,
1846 .id_table
= usbtouch_devices
,
1847 .supports_autosuspend
= 1,
1850 module_usb_driver(usbtouch_driver
);
1852 MODULE_AUTHOR("Daniel Ritz <daniel.ritz@gmx.ch>");
1853 MODULE_DESCRIPTION("USB Touchscreen Driver");
1854 MODULE_LICENSE("GPL");
1856 MODULE_ALIAS("touchkitusb");
1857 MODULE_ALIAS("itmtouch");
1858 MODULE_ALIAS("mtouchusb");