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
72 * used to get the packet len. possible return values:
75 * < 0: -return value more bytes needed
77 int (*get_pkt_len
) (unsigned char *pkt
, int len
);
79 int (*read_data
) (struct usbtouch_usb
*usbtouch
, unsigned char *pkt
);
80 int (*alloc
) (struct usbtouch_usb
*usbtouch
);
81 int (*init
) (struct usbtouch_usb
*usbtouch
);
82 void (*exit
) (struct usbtouch_usb
*usbtouch
);
85 /* a usbtouch device */
90 unsigned char *buffer
;
93 struct usb_interface
*interface
;
94 struct input_dev
*input
;
95 const struct usbtouch_device_info
*type
;
96 struct mutex pm_mutex
; /* serialize access to open/suspend */
105 void (*process_pkt
)(struct usbtouch_usb
*usbtouch
, unsigned char *pkt
, int len
);
109 /*****************************************************************************
113 #ifdef CONFIG_TOUCHSCREEN_USB_E2I
114 static int e2i_init(struct usbtouch_usb
*usbtouch
)
117 struct usb_device
*udev
= interface_to_usbdev(usbtouch
->interface
);
119 ret
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
120 0x01, 0x02, 0x0000, 0x0081,
121 NULL
, 0, USB_CTRL_SET_TIMEOUT
);
123 dev_dbg(&usbtouch
->interface
->dev
,
124 "%s - usb_control_msg - E2I_RESET - bytes|err: %d\n",
129 static int e2i_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
131 int tmp
= (pkt
[0] << 8) | pkt
[1];
132 dev
->x
= (pkt
[2] << 8) | pkt
[3];
133 dev
->y
= (pkt
[4] << 8) | pkt
[5];
136 dev
->touch
= (tmp
> 0);
137 dev
->press
= (tmp
> 0 ? tmp
: 0);
142 static const struct usbtouch_device_info e2i_dev_info
= {
149 .read_data
= e2i_read_data
,
154 /*****************************************************************************
158 #ifdef CONFIG_TOUCHSCREEN_USB_EGALAX
164 #define EGALAX_PKT_TYPE_MASK 0xFE
165 #define EGALAX_PKT_TYPE_REPT 0x80
166 #define EGALAX_PKT_TYPE_DIAG 0x0A
168 static int egalax_init(struct usbtouch_usb
*usbtouch
)
170 struct usb_device
*udev
= interface_to_usbdev(usbtouch
->interface
);
174 * An eGalax diagnostic packet kicks the device into using the right
175 * protocol. We send a "check active" packet. The response will be
176 * read later and ignored.
179 u8
*buf
__free(kfree
) = kmalloc(3, GFP_KERNEL
);
183 buf
[0] = EGALAX_PKT_TYPE_DIAG
;
184 buf
[1] = 1; /* length */
185 buf
[2] = 'A'; /* command - check active */
187 for (i
= 0; i
< 3; i
++) {
188 ret
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
190 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
192 USB_CTRL_SET_TIMEOUT
);
197 return ret
< 0 ? ret
: 0;
200 static int egalax_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
202 if ((pkt
[0] & EGALAX_PKT_TYPE_MASK
) != EGALAX_PKT_TYPE_REPT
)
205 dev
->x
= ((pkt
[3] & 0x0F) << 7) | (pkt
[4] & 0x7F);
206 dev
->y
= ((pkt
[1] & 0x0F) << 7) | (pkt
[2] & 0x7F);
207 dev
->touch
= pkt
[0] & 0x01;
212 static int egalax_get_pkt_len(unsigned char *buf
, int len
)
214 switch (buf
[0] & EGALAX_PKT_TYPE_MASK
) {
215 case EGALAX_PKT_TYPE_REPT
:
218 case EGALAX_PKT_TYPE_DIAG
:
228 static const struct usbtouch_device_info egalax_dev_info
= {
234 .get_pkt_len
= egalax_get_pkt_len
,
235 .read_data
= egalax_read_data
,
240 /*****************************************************************************
244 #ifdef CONFIG_TOUCHSCREEN_USB_EASYTOUCH
250 #define ETOUCH_PKT_TYPE_MASK 0xFE
251 #define ETOUCH_PKT_TYPE_REPT 0x80
252 #define ETOUCH_PKT_TYPE_REPT2 0xB0
253 #define ETOUCH_PKT_TYPE_DIAG 0x0A
255 static int etouch_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
257 if ((pkt
[0] & ETOUCH_PKT_TYPE_MASK
) != ETOUCH_PKT_TYPE_REPT
&&
258 (pkt
[0] & ETOUCH_PKT_TYPE_MASK
) != ETOUCH_PKT_TYPE_REPT2
)
261 dev
->x
= ((pkt
[1] & 0x1F) << 7) | (pkt
[2] & 0x7F);
262 dev
->y
= ((pkt
[3] & 0x1F) << 7) | (pkt
[4] & 0x7F);
263 dev
->touch
= pkt
[0] & 0x01;
268 static int etouch_get_pkt_len(unsigned char *buf
, int len
)
270 switch (buf
[0] & ETOUCH_PKT_TYPE_MASK
) {
271 case ETOUCH_PKT_TYPE_REPT
:
272 case ETOUCH_PKT_TYPE_REPT2
:
275 case ETOUCH_PKT_TYPE_DIAG
:
285 static const struct usbtouch_device_info etouch_dev_info
= {
291 .get_pkt_len
= etouch_get_pkt_len
,
292 .read_data
= etouch_read_data
,
296 /*****************************************************************************
299 #ifdef CONFIG_TOUCHSCREEN_USB_PANJIT
300 static int panjit_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
302 dev
->x
= ((pkt
[2] & 0x0F) << 8) | pkt
[1];
303 dev
->y
= ((pkt
[4] & 0x0F) << 8) | pkt
[3];
304 dev
->touch
= pkt
[0] & 0x01;
309 static const struct usbtouch_device_info panjit_dev_info
= {
315 .read_data
= panjit_read_data
,
320 /*****************************************************************************
323 #ifdef CONFIG_TOUCHSCREEN_USB_3M
325 #define MTOUCHUSB_ASYNC_REPORT 1
326 #define MTOUCHUSB_RESET 7
327 #define MTOUCHUSB_REQ_CTRLLR_ID 10
329 #define MTOUCHUSB_REQ_CTRLLR_ID_LEN 16
331 static int mtouch_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
334 dev
->x
= (pkt
[4] << 8) | pkt
[3];
335 dev
->y
= 0xffff - ((pkt
[6] << 8) | pkt
[5]);
337 dev
->x
= (pkt
[8] << 8) | pkt
[7];
338 dev
->y
= (pkt
[10] << 8) | pkt
[9];
340 dev
->touch
= (pkt
[2] & 0x40) ? 1 : 0;
350 static int mtouch_get_fw_revision(struct usbtouch_usb
*usbtouch
)
352 struct usb_device
*udev
= interface_to_usbdev(usbtouch
->interface
);
353 struct mtouch_priv
*priv
= usbtouch
->priv
;
356 u8
*buf
__free(kfree
) = kzalloc(MTOUCHUSB_REQ_CTRLLR_ID_LEN
, GFP_NOIO
);
360 ret
= usb_control_msg(udev
, usb_rcvctrlpipe(udev
, 0),
361 MTOUCHUSB_REQ_CTRLLR_ID
,
362 USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
363 0, 0, buf
, MTOUCHUSB_REQ_CTRLLR_ID_LEN
,
364 USB_CTRL_SET_TIMEOUT
);
365 if (ret
!= MTOUCHUSB_REQ_CTRLLR_ID_LEN
) {
366 dev_warn(&usbtouch
->interface
->dev
,
367 "Failed to read FW rev: %d\n", ret
);
368 return ret
< 0 ? ret
: -EIO
;
371 priv
->fw_rev_major
= buf
[3];
372 priv
->fw_rev_minor
= buf
[4];
377 static int mtouch_alloc(struct usbtouch_usb
*usbtouch
)
379 struct mtouch_priv
*priv
;
381 priv
= kmalloc(sizeof(*priv
), GFP_KERNEL
);
385 usbtouch
->priv
= priv
;
389 static int mtouch_init(struct usbtouch_usb
*usbtouch
)
392 struct usb_device
*udev
= interface_to_usbdev(usbtouch
->interface
);
394 ret
= mtouch_get_fw_revision(usbtouch
);
398 ret
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
400 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
401 1, 0, NULL
, 0, USB_CTRL_SET_TIMEOUT
);
402 dev_dbg(&usbtouch
->interface
->dev
,
403 "%s - usb_control_msg - MTOUCHUSB_RESET - bytes|err: %d\n",
409 for (i
= 0; i
< 3; i
++) {
410 ret
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
411 MTOUCHUSB_ASYNC_REPORT
,
412 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
413 1, 1, NULL
, 0, USB_CTRL_SET_TIMEOUT
);
414 dev_dbg(&usbtouch
->interface
->dev
,
415 "%s - usb_control_msg - MTOUCHUSB_ASYNC_REPORT - bytes|err: %d\n",
423 /* Default min/max xy are the raw values, override if using hw-calib */
425 input_set_abs_params(usbtouch
->input
, ABS_X
, 0, 0xffff, 0, 0);
426 input_set_abs_params(usbtouch
->input
, ABS_Y
, 0, 0xffff, 0, 0);
432 static void mtouch_exit(struct usbtouch_usb
*usbtouch
)
434 struct mtouch_priv
*priv
= usbtouch
->priv
;
439 static struct usbtouch_device_info mtouch_dev_info
= {
445 .read_data
= mtouch_read_data
,
446 .alloc
= mtouch_alloc
,
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 sysfs_emit(output
, "%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 bool mtouch_group_visible(struct kobject
*kobj
)
470 struct device
*dev
= kobj_to_dev(kobj
);
471 struct usb_interface
*intf
= to_usb_interface(dev
);
472 struct usbtouch_usb
*usbtouch
= usb_get_intfdata(intf
);
474 return usbtouch
->type
== &mtouch_dev_info
;
477 DEFINE_SIMPLE_SYSFS_GROUP_VISIBLE(mtouch
);
479 static const struct attribute_group mtouch_attr_group
= {
480 .is_visible
= SYSFS_GROUP_VISIBLE(mtouch
),
481 .attrs
= mtouch_attrs
,
486 /*****************************************************************************
489 #ifdef CONFIG_TOUCHSCREEN_USB_ITM
490 static int itm_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
494 * ITM devices report invalid x/y data if not touched.
495 * if the screen was touched before but is not touched any more
496 * report touch as 0 with the last valid x/y data once. then stop
497 * reporting data until touched again.
499 dev
->press
= ((pkt
[2] & 0x01) << 7) | (pkt
[5] & 0x7F);
501 touch
= ~pkt
[7] & 0x20;
511 dev
->x
= ((pkt
[0] & 0x1F) << 7) | (pkt
[3] & 0x7F);
512 dev
->y
= ((pkt
[1] & 0x1F) << 7) | (pkt
[4] & 0x7F);
518 static const struct usbtouch_device_info itm_dev_info
= {
525 .read_data
= itm_read_data
,
530 /*****************************************************************************
533 #ifdef CONFIG_TOUCHSCREEN_USB_ETURBO
537 static int eturbo_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
541 /* packets should start with sync */
542 if (!(pkt
[0] & 0x80))
545 shift
= (6 - (pkt
[0] & 0x03));
546 dev
->x
= ((pkt
[3] << 7) | pkt
[4]) >> shift
;
547 dev
->y
= ((pkt
[1] << 7) | pkt
[2]) >> shift
;
548 dev
->touch
= (pkt
[0] & 0x10) ? 1 : 0;
553 static int eturbo_get_pkt_len(unsigned char *buf
, int len
)
562 static const struct usbtouch_device_info eturbo_dev_info
= {
568 .get_pkt_len
= eturbo_get_pkt_len
,
569 .read_data
= eturbo_read_data
,
574 /*****************************************************************************
577 #ifdef CONFIG_TOUCHSCREEN_USB_GUNZE
578 static int gunze_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
580 if (!(pkt
[0] & 0x80) || ((pkt
[1] | pkt
[2] | pkt
[3]) & 0x80))
583 dev
->x
= ((pkt
[0] & 0x1F) << 7) | (pkt
[2] & 0x7F);
584 dev
->y
= ((pkt
[1] & 0x1F) << 7) | (pkt
[3] & 0x7F);
585 dev
->touch
= pkt
[0] & 0x20;
590 static const struct usbtouch_device_info gunze_dev_info
= {
596 .read_data
= gunze_read_data
,
600 /*****************************************************************************
603 * Documentation about the controller and it's protocol can be found at
604 * http://www.dmccoltd.com/files/controler/tsc10usb_pi_e.pdf
605 * http://www.dmccoltd.com/files/controler/tsc25_usb_e.pdf
607 #ifdef CONFIG_TOUCHSCREEN_USB_DMC_TSC10
609 /* supported data rates. currently using 130 */
610 #define TSC10_RATE_POINT 0x50
611 #define TSC10_RATE_30 0x40
612 #define TSC10_RATE_50 0x41
613 #define TSC10_RATE_80 0x42
614 #define TSC10_RATE_100 0x43
615 #define TSC10_RATE_130 0x44
616 #define TSC10_RATE_150 0x45
619 #define TSC10_CMD_RESET 0x55
620 #define TSC10_CMD_RATE 0x05
621 #define TSC10_CMD_DATA1 0x01
623 static int dmc_tsc10_init(struct usbtouch_usb
*usbtouch
)
625 struct usb_device
*dev
= interface_to_usbdev(usbtouch
->interface
);
628 u8
*buf
__free(kfree
) = kmalloc(2, GFP_NOIO
);
633 buf
[0] = buf
[1] = 0xFF;
634 ret
= usb_control_msg(dev
, usb_rcvctrlpipe (dev
, 0),
636 USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
637 0, 0, buf
, 2, USB_CTRL_SET_TIMEOUT
);
644 /* TSC-25 data sheet specifies a delay after the RESET command */
647 /* set coordinate output rate */
648 buf
[0] = buf
[1] = 0xFF;
649 ret
= usb_control_msg(dev
, usb_rcvctrlpipe (dev
, 0),
651 USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
652 TSC10_RATE_150
, 0, buf
, 2, USB_CTRL_SET_TIMEOUT
);
656 if (buf
[0] != 0x06 && (buf
[0] != 0x15 || buf
[1] != 0x01))
659 /* start sending data */
660 return usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0),
662 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
663 0, 0, NULL
, 0, USB_CTRL_SET_TIMEOUT
);
666 static int dmc_tsc10_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
668 dev
->x
= ((pkt
[2] & 0x03) << 8) | pkt
[1];
669 dev
->y
= ((pkt
[4] & 0x03) << 8) | pkt
[3];
670 dev
->touch
= pkt
[0] & 0x01;
675 static const struct usbtouch_device_info dmc_tsc10_dev_info
= {
681 .init
= dmc_tsc10_init
,
682 .read_data
= dmc_tsc10_read_data
,
687 /*****************************************************************************
690 #ifdef CONFIG_TOUCHSCREEN_USB_IRTOUCH
691 static int irtouch_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
693 dev
->x
= (pkt
[3] << 8) | pkt
[2];
694 dev
->y
= (pkt
[5] << 8) | pkt
[4];
695 dev
->touch
= (pkt
[1] & 0x03) ? 1 : 0;
700 static const struct usbtouch_device_info irtouch_dev_info
= {
706 .read_data
= irtouch_read_data
,
709 static const struct usbtouch_device_info irtouch_hires_dev_info
= {
715 .read_data
= irtouch_read_data
,
719 /*****************************************************************************
720 * ET&T TC5UH/TC4UM part
722 #ifdef CONFIG_TOUCHSCREEN_USB_ETT_TC45USB
723 static int tc45usb_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
725 dev
->x
= ((pkt
[2] & 0x0F) << 8) | pkt
[1];
726 dev
->y
= ((pkt
[4] & 0x0F) << 8) | pkt
[3];
727 dev
->touch
= pkt
[0] & 0x01;
732 static const struct usbtouch_device_info tc45usb_dev_info
= {
738 .read_data
= tc45usb_read_data
,
742 /*****************************************************************************
743 * IdealTEK URTC1000 Part
745 #ifdef CONFIG_TOUCHSCREEN_USB_IDEALTEK
749 static int idealtek_get_pkt_len(unsigned char *buf
, int len
)
758 static int idealtek_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
760 switch (pkt
[0] & 0x98) {
762 /* touch data in IdealTEK mode */
763 dev
->x
= (pkt
[1] << 5) | (pkt
[2] >> 2);
764 dev
->y
= (pkt
[3] << 5) | (pkt
[4] >> 2);
765 dev
->touch
= (pkt
[0] & 0x40) ? 1 : 0;
769 /* touch data in MT emulation mode */
770 dev
->x
= (pkt
[2] << 5) | (pkt
[1] >> 2);
771 dev
->y
= (pkt
[4] << 5) | (pkt
[3] >> 2);
772 dev
->touch
= (pkt
[0] & 0x40) ? 1 : 0;
780 static const struct usbtouch_device_info idealtek_dev_info
= {
786 .get_pkt_len
= idealtek_get_pkt_len
,
787 .read_data
= idealtek_read_data
,
791 /*****************************************************************************
794 #ifdef CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH
795 static int general_touch_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
797 dev
->x
= (pkt
[2] << 8) | pkt
[1];
798 dev
->y
= (pkt
[4] << 8) | pkt
[3];
799 dev
->press
= pkt
[5] & 0xff;
800 dev
->touch
= pkt
[0] & 0x01;
805 static const struct usbtouch_device_info general_touch_dev_info
= {
811 .read_data
= general_touch_read_data
,
815 /*****************************************************************************
818 #ifdef CONFIG_TOUCHSCREEN_USB_GOTOP
819 static int gotop_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
821 dev
->x
= ((pkt
[1] & 0x38) << 4) | pkt
[2];
822 dev
->y
= ((pkt
[1] & 0x07) << 7) | pkt
[3];
823 dev
->touch
= pkt
[0] & 0x01;
828 static const struct usbtouch_device_info gotop_dev_info
= {
834 .read_data
= gotop_read_data
,
838 /*****************************************************************************
841 #ifdef CONFIG_TOUCHSCREEN_USB_JASTEC
842 static int jastec_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
844 dev
->x
= ((pkt
[0] & 0x3f) << 6) | (pkt
[2] & 0x3f);
845 dev
->y
= ((pkt
[1] & 0x3f) << 6) | (pkt
[3] & 0x3f);
846 dev
->touch
= (pkt
[0] & 0x40) >> 6;
851 static const struct usbtouch_device_info jastec_dev_info
= {
857 .read_data
= jastec_read_data
,
861 /*****************************************************************************
864 #ifdef CONFIG_TOUCHSCREEN_USB_ZYTRONIC
865 static int zytronic_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
867 struct usb_interface
*intf
= dev
->interface
;
870 case 0x3A: /* command response */
871 dev_dbg(&intf
->dev
, "%s: Command response %d\n", __func__
, pkt
[1]);
874 case 0xC0: /* down */
875 dev
->x
= (pkt
[1] & 0x7f) | ((pkt
[2] & 0x07) << 7);
876 dev
->y
= (pkt
[3] & 0x7f) | ((pkt
[4] & 0x07) << 7);
878 dev_dbg(&intf
->dev
, "%s: down %d,%d\n", __func__
, dev
->x
, dev
->y
);
882 dev
->x
= (pkt
[1] & 0x7f) | ((pkt
[2] & 0x07) << 7);
883 dev
->y
= (pkt
[3] & 0x7f) | ((pkt
[4] & 0x07) << 7);
885 dev_dbg(&intf
->dev
, "%s: up %d,%d\n", __func__
, dev
->x
, dev
->y
);
889 dev_dbg(&intf
->dev
, "%s: Unknown return %d\n", __func__
, pkt
[0]);
896 static const struct usbtouch_device_info zytronic_dev_info
= {
902 .read_data
= zytronic_read_data
,
907 /*****************************************************************************
910 #ifdef CONFIG_TOUCHSCREEN_USB_NEXIO
912 #define NEXIO_TIMEOUT 5000
913 #define NEXIO_BUFSIZE 1024
914 #define NEXIO_THRESHOLD 50
918 unsigned char *ack_buf
;
921 struct nexio_touch_packet
{
922 u8 flags
; /* 0xe1 = touch, 0xe1 = release */
923 __be16 data_len
; /* total bytes of touch data */
924 __be16 x_len
; /* bytes for X axis */
925 __be16 y_len
; /* bytes for Y axis */
927 } __attribute__ ((packed
));
929 static unsigned char nexio_ack_pkt
[2] = { 0xaa, 0x02 };
930 static unsigned char nexio_init_pkt
[4] = { 0x82, 0x04, 0x0a, 0x0f };
932 static void nexio_ack_complete(struct urb
*urb
)
936 static int nexio_alloc(struct usbtouch_usb
*usbtouch
)
938 struct nexio_priv
*priv
;
941 priv
= kmalloc(sizeof(*priv
), GFP_KERNEL
);
945 usbtouch
->priv
= priv
;
946 priv
->ack_buf
= kmemdup(nexio_ack_pkt
, sizeof(nexio_ack_pkt
),
951 priv
->ack
= usb_alloc_urb(0, GFP_KERNEL
);
953 dev_dbg(&usbtouch
->interface
->dev
,
954 "%s - usb_alloc_urb failed: usbtouch->ack\n", __func__
);
961 kfree(priv
->ack_buf
);
968 static int nexio_init(struct usbtouch_usb
*usbtouch
)
970 struct usb_device
*dev
= interface_to_usbdev(usbtouch
->interface
);
971 struct usb_host_interface
*interface
= usbtouch
->interface
->cur_altsetting
;
972 struct nexio_priv
*priv
= usbtouch
->priv
;
975 char *firmware_ver
= NULL
, *device_name
= NULL
;
976 int input_ep
= 0, output_ep
= 0;
978 /* find first input and output endpoint */
979 for (i
= 0; i
< interface
->desc
.bNumEndpoints
; i
++) {
981 usb_endpoint_dir_in(&interface
->endpoint
[i
].desc
))
982 input_ep
= interface
->endpoint
[i
].desc
.bEndpointAddress
;
984 usb_endpoint_dir_out(&interface
->endpoint
[i
].desc
))
985 output_ep
= interface
->endpoint
[i
].desc
.bEndpointAddress
;
987 if (!input_ep
|| !output_ep
)
990 u8
*buf
__free(kfree
) = kmalloc(NEXIO_BUFSIZE
, GFP_NOIO
);
994 /* two empty reads */
995 for (i
= 0; i
< 2; i
++) {
996 ret
= usb_bulk_msg(dev
, usb_rcvbulkpipe(dev
, input_ep
),
997 buf
, NEXIO_BUFSIZE
, &actual_len
,
1003 /* send init command */
1004 memcpy(buf
, nexio_init_pkt
, sizeof(nexio_init_pkt
));
1005 ret
= usb_bulk_msg(dev
, usb_sndbulkpipe(dev
, output_ep
),
1006 buf
, sizeof(nexio_init_pkt
), &actual_len
,
1012 for (i
= 0; i
< 3; i
++) {
1013 memset(buf
, 0, NEXIO_BUFSIZE
);
1014 ret
= usb_bulk_msg(dev
, usb_rcvbulkpipe(dev
, input_ep
),
1015 buf
, NEXIO_BUFSIZE
, &actual_len
,
1017 if (ret
< 0 || actual_len
< 1 || buf
[1] != actual_len
)
1020 case 0x83: /* firmware version */
1022 firmware_ver
= kstrdup(&buf
[2], GFP_NOIO
);
1024 case 0x84: /* device name */
1026 device_name
= kstrdup(&buf
[2], GFP_NOIO
);
1031 printk(KERN_INFO
"Nexio device: %s, firmware version: %s\n",
1032 device_name
, firmware_ver
);
1034 kfree(firmware_ver
);
1037 usb_fill_bulk_urb(priv
->ack
, dev
, usb_sndbulkpipe(dev
, output_ep
),
1038 priv
->ack_buf
, sizeof(nexio_ack_pkt
),
1039 nexio_ack_complete
, usbtouch
);
1044 static void nexio_exit(struct usbtouch_usb
*usbtouch
)
1046 struct nexio_priv
*priv
= usbtouch
->priv
;
1048 usb_kill_urb(priv
->ack
);
1049 usb_free_urb(priv
->ack
);
1050 kfree(priv
->ack_buf
);
1054 static int nexio_read_data(struct usbtouch_usb
*usbtouch
, unsigned char *pkt
)
1056 struct device
*dev
= &usbtouch
->interface
->dev
;
1057 struct nexio_touch_packet
*packet
= (void *) pkt
;
1058 struct nexio_priv
*priv
= usbtouch
->priv
;
1059 unsigned int data_len
= be16_to_cpu(packet
->data_len
);
1060 unsigned int x_len
= be16_to_cpu(packet
->x_len
);
1061 unsigned int y_len
= be16_to_cpu(packet
->y_len
);
1062 int x
, y
, begin_x
, begin_y
, end_x
, end_y
, w
, h
, ret
;
1064 /* got touch data? */
1065 if ((pkt
[0] & 0xe0) != 0xe0)
1068 if (data_len
> 0xff)
1074 ret
= usb_submit_urb(priv
->ack
, GFP_ATOMIC
);
1076 dev_warn(dev
, "Failed to submit ACK URB: %d\n", ret
);
1078 if (!input_abs_get_max(usbtouch
->input
, ABS_X
)) {
1079 input_set_abs_params(usbtouch
->input
, ABS_X
,
1080 0, 2 * x_len
, 0, 0);
1081 input_set_abs_params(usbtouch
->input
, ABS_Y
,
1082 0, 2 * y_len
, 0, 0);
1085 * The device reports state of IR sensors on X and Y axes.
1086 * Each byte represents "darkness" percentage (0-100) of one element.
1087 * 17" touchscreen reports only 64 x 52 bytes so the resolution is low.
1088 * This also means that there's a limited multi-touch capability but
1089 * it's disabled (and untested) here as there's no X driver for that.
1091 begin_x
= end_x
= begin_y
= end_y
= -1;
1092 for (x
= 0; x
< x_len
; x
++) {
1093 if (begin_x
== -1 && packet
->data
[x
] > NEXIO_THRESHOLD
) {
1097 if (end_x
== -1 && begin_x
!= -1 && packet
->data
[x
] < NEXIO_THRESHOLD
) {
1099 for (y
= x_len
; y
< data_len
; y
++) {
1100 if (begin_y
== -1 && packet
->data
[y
] > NEXIO_THRESHOLD
) {
1101 begin_y
= y
- x_len
;
1105 begin_y
!= -1 && packet
->data
[y
] < NEXIO_THRESHOLD
) {
1106 end_y
= y
- 1 - x_len
;
1107 w
= end_x
- begin_x
;
1108 h
= end_y
- begin_y
;
1111 input_report_abs(usbtouch
->input
,
1112 ABS_MT_TOUCH_MAJOR
, max(w
,h
));
1113 input_report_abs(usbtouch
->input
,
1114 ABS_MT_TOUCH_MINOR
, min(x
,h
));
1115 input_report_abs(usbtouch
->input
,
1116 ABS_MT_POSITION_X
, 2*begin_x
+w
);
1117 input_report_abs(usbtouch
->input
,
1118 ABS_MT_POSITION_Y
, 2*begin_y
+h
);
1119 input_report_abs(usbtouch
->input
,
1120 ABS_MT_ORIENTATION
, w
> h
);
1121 input_mt_sync(usbtouch
->input
);
1124 usbtouch
->x
= 2 * begin_x
+ w
;
1125 usbtouch
->y
= 2 * begin_y
+ h
;
1126 usbtouch
->touch
= packet
->flags
& 0x01;
1127 begin_y
= end_y
= -1;
1131 begin_x
= end_x
= -1;
1138 static const struct usbtouch_device_info nexio_dev_info
= {
1141 .read_data
= nexio_read_data
,
1142 .alloc
= nexio_alloc
,
1149 /*****************************************************************************
1153 #ifdef CONFIG_TOUCHSCREEN_USB_ELO
1155 static int elo_read_data(struct usbtouch_usb
*dev
, unsigned char *pkt
)
1157 dev
->x
= (pkt
[3] << 8) | pkt
[2];
1158 dev
->y
= (pkt
[5] << 8) | pkt
[4];
1159 dev
->touch
= pkt
[6] > 0;
1160 dev
->press
= pkt
[6];
1165 static const struct usbtouch_device_info elo_dev_info
= {
1172 .read_data
= elo_read_data
,
1177 /*****************************************************************************
1180 static void usbtouch_process_pkt(struct usbtouch_usb
*usbtouch
,
1181 unsigned char *pkt
, int len
)
1183 const struct usbtouch_device_info
*type
= usbtouch
->type
;
1185 if (!type
->read_data(usbtouch
, pkt
))
1188 input_report_key(usbtouch
->input
, BTN_TOUCH
, usbtouch
->touch
);
1191 input_report_abs(usbtouch
->input
, ABS_X
, usbtouch
->y
);
1192 input_report_abs(usbtouch
->input
, ABS_Y
, usbtouch
->x
);
1194 input_report_abs(usbtouch
->input
, ABS_X
, usbtouch
->x
);
1195 input_report_abs(usbtouch
->input
, ABS_Y
, usbtouch
->y
);
1197 if (type
->max_press
)
1198 input_report_abs(usbtouch
->input
, ABS_PRESSURE
, usbtouch
->press
);
1199 input_sync(usbtouch
->input
);
1204 static void usbtouch_process_multi(struct usbtouch_usb
*usbtouch
,
1205 unsigned char *pkt
, int len
)
1207 unsigned char *buffer
;
1208 int pkt_len
, pos
, buf_len
, tmp
;
1210 /* process buffer */
1211 if (unlikely(usbtouch
->buf_len
)) {
1212 /* try to get size */
1213 pkt_len
= usbtouch
->type
->get_pkt_len(
1214 usbtouch
->buffer
, usbtouch
->buf_len
);
1217 if (unlikely(!pkt_len
))
1220 /* need to append -pkt_len bytes before able to get size */
1221 if (unlikely(pkt_len
< 0)) {
1222 int append
= -pkt_len
;
1223 if (unlikely(append
> len
))
1225 if (usbtouch
->buf_len
+ append
>= usbtouch
->type
->rept_size
)
1227 memcpy(usbtouch
->buffer
+ usbtouch
->buf_len
, pkt
, append
);
1228 usbtouch
->buf_len
+= append
;
1230 pkt_len
= usbtouch
->type
->get_pkt_len(
1231 usbtouch
->buffer
, usbtouch
->buf_len
);
1237 tmp
= pkt_len
- usbtouch
->buf_len
;
1238 if (usbtouch
->buf_len
+ tmp
>= usbtouch
->type
->rept_size
)
1240 memcpy(usbtouch
->buffer
+ usbtouch
->buf_len
, pkt
, tmp
);
1241 usbtouch_process_pkt(usbtouch
, usbtouch
->buffer
, pkt_len
);
1244 buf_len
= len
- tmp
;
1250 /* loop over the received packet, process */
1252 while (pos
< buf_len
) {
1253 /* get packet len */
1254 pkt_len
= usbtouch
->type
->get_pkt_len(buffer
+ pos
,
1257 /* unknown packet: skip one byte */
1258 if (unlikely(!pkt_len
)) {
1263 /* full packet: process */
1264 if (likely((pkt_len
> 0) && (pkt_len
<= buf_len
- pos
))) {
1265 usbtouch_process_pkt(usbtouch
, buffer
+ pos
, pkt_len
);
1267 /* incomplete packet: save in buffer */
1268 memcpy(usbtouch
->buffer
, buffer
+ pos
, buf_len
- pos
);
1269 usbtouch
->buf_len
= buf_len
- pos
;
1276 usbtouch
->buf_len
= 0;
1280 static void usbtouch_process_multi(struct usbtouch_usb
*usbtouch
,
1281 unsigned char *pkt
, int len
)
1283 dev_WARN_ONCE(&usbtouch
->interface
->dev
, 1,
1284 "Protocol has ->get_pkt_len() without #define MULTI_PACKET");
1288 static void usbtouch_irq(struct urb
*urb
)
1290 struct usbtouch_usb
*usbtouch
= urb
->context
;
1291 struct device
*dev
= &usbtouch
->interface
->dev
;
1294 switch (urb
->status
) {
1299 /* this urb is timing out */
1301 "%s - urb timed out - was the device unplugged?\n",
1308 /* this urb is terminated, clean up */
1309 dev_dbg(dev
, "%s - urb shutting down with status: %d\n",
1310 __func__
, urb
->status
);
1313 dev_dbg(dev
, "%s - nonzero urb status received: %d\n",
1314 __func__
, urb
->status
);
1318 usbtouch
->process_pkt(usbtouch
, usbtouch
->data
, urb
->actual_length
);
1321 usb_mark_last_busy(interface_to_usbdev(usbtouch
->interface
));
1322 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
1324 dev_err(dev
, "%s - usb_submit_urb failed with result: %d\n",
1328 static int usbtouch_start_io(struct usbtouch_usb
*usbtouch
)
1330 guard(mutex
)(&usbtouch
->pm_mutex
);
1332 if (!usbtouch
->type
->irq_always
)
1333 if (usb_submit_urb(usbtouch
->irq
, GFP_KERNEL
))
1336 usbtouch
->interface
->needs_remote_wakeup
= 1;
1337 usbtouch
->is_open
= true;
1342 static int usbtouch_open(struct input_dev
*input
)
1344 struct usbtouch_usb
*usbtouch
= input_get_drvdata(input
);
1347 usbtouch
->irq
->dev
= interface_to_usbdev(usbtouch
->interface
);
1349 r
= usb_autopm_get_interface(usbtouch
->interface
) ? -EIO
: 0;
1353 r
= usbtouch_start_io(usbtouch
);
1355 usb_autopm_put_interface(usbtouch
->interface
);
1359 static void usbtouch_close(struct input_dev
*input
)
1361 struct usbtouch_usb
*usbtouch
= input_get_drvdata(input
);
1364 scoped_guard(mutex
, &usbtouch
->pm_mutex
) {
1365 if (!usbtouch
->type
->irq_always
)
1366 usb_kill_urb(usbtouch
->irq
);
1367 usbtouch
->is_open
= false;
1370 r
= usb_autopm_get_interface(usbtouch
->interface
);
1371 usbtouch
->interface
->needs_remote_wakeup
= 0;
1373 usb_autopm_put_interface(usbtouch
->interface
);
1376 static int usbtouch_suspend(struct usb_interface
*intf
, pm_message_t message
)
1378 struct usbtouch_usb
*usbtouch
= usb_get_intfdata(intf
);
1380 usb_kill_urb(usbtouch
->irq
);
1385 static int usbtouch_resume(struct usb_interface
*intf
)
1387 struct usbtouch_usb
*usbtouch
= usb_get_intfdata(intf
);
1389 guard(mutex
)(&usbtouch
->pm_mutex
);
1391 if (usbtouch
->is_open
|| usbtouch
->type
->irq_always
)
1392 return usb_submit_urb(usbtouch
->irq
, GFP_NOIO
);
1397 static int usbtouch_reset_resume(struct usb_interface
*intf
)
1399 struct usbtouch_usb
*usbtouch
= usb_get_intfdata(intf
);
1402 /* reinit the device */
1403 if (usbtouch
->type
->init
) {
1404 err
= usbtouch
->type
->init(usbtouch
);
1407 "%s - type->init() failed, err: %d\n",
1413 /* restart IO if needed */
1414 guard(mutex
)(&usbtouch
->pm_mutex
);
1416 if (usbtouch
->is_open
)
1417 return usb_submit_urb(usbtouch
->irq
, GFP_NOIO
);
1422 static void usbtouch_free_buffers(struct usb_device
*udev
,
1423 struct usbtouch_usb
*usbtouch
)
1425 usb_free_coherent(udev
, usbtouch
->data_size
,
1426 usbtouch
->data
, usbtouch
->data_dma
);
1427 kfree(usbtouch
->buffer
);
1430 static struct usb_endpoint_descriptor
*
1431 usbtouch_get_input_endpoint(struct usb_host_interface
*interface
)
1435 for (i
= 0; i
< interface
->desc
.bNumEndpoints
; i
++)
1436 if (usb_endpoint_dir_in(&interface
->endpoint
[i
].desc
))
1437 return &interface
->endpoint
[i
].desc
;
1442 static int usbtouch_probe(struct usb_interface
*intf
,
1443 const struct usb_device_id
*id
)
1445 struct usbtouch_usb
*usbtouch
;
1446 struct input_dev
*input_dev
;
1447 struct usb_endpoint_descriptor
*endpoint
;
1448 struct usb_device
*udev
= interface_to_usbdev(intf
);
1449 const struct usbtouch_device_info
*type
;
1452 /* some devices are ignored */
1453 type
= (const struct usbtouch_device_info
*)id
->driver_info
;
1457 endpoint
= usbtouch_get_input_endpoint(intf
->cur_altsetting
);
1461 usbtouch
= kzalloc(sizeof(*usbtouch
), GFP_KERNEL
);
1462 input_dev
= input_allocate_device();
1463 if (!usbtouch
|| !input_dev
)
1466 mutex_init(&usbtouch
->pm_mutex
);
1467 usbtouch
->type
= type
;
1469 usbtouch
->data_size
= type
->rept_size
;
1470 if (type
->get_pkt_len
) {
1472 * When dealing with variable-length packets we should
1473 * not request more than wMaxPacketSize bytes at once
1474 * as we do not know if there is more data coming or
1475 * we filled exactly wMaxPacketSize bytes and there is
1478 usbtouch
->data_size
= min(usbtouch
->data_size
,
1479 usb_endpoint_maxp(endpoint
));
1482 usbtouch
->data
= usb_alloc_coherent(udev
, usbtouch
->data_size
,
1483 GFP_KERNEL
, &usbtouch
->data_dma
);
1484 if (!usbtouch
->data
)
1487 if (type
->get_pkt_len
) {
1488 usbtouch
->buffer
= kmalloc(type
->rept_size
, GFP_KERNEL
);
1489 if (!usbtouch
->buffer
)
1490 goto out_free_buffers
;
1491 usbtouch
->process_pkt
= usbtouch_process_multi
;
1493 usbtouch
->process_pkt
= usbtouch_process_pkt
;
1496 usbtouch
->irq
= usb_alloc_urb(0, GFP_KERNEL
);
1497 if (!usbtouch
->irq
) {
1499 "%s - usb_alloc_urb failed: usbtouch->irq\n", __func__
);
1500 goto out_free_buffers
;
1503 usbtouch
->interface
= intf
;
1504 usbtouch
->input
= input_dev
;
1506 if (udev
->manufacturer
)
1507 strscpy(usbtouch
->name
, udev
->manufacturer
, sizeof(usbtouch
->name
));
1509 if (udev
->product
) {
1510 if (udev
->manufacturer
)
1511 strlcat(usbtouch
->name
, " ", sizeof(usbtouch
->name
));
1512 strlcat(usbtouch
->name
, udev
->product
, sizeof(usbtouch
->name
));
1515 if (!strlen(usbtouch
->name
))
1516 snprintf(usbtouch
->name
, sizeof(usbtouch
->name
),
1517 "USB Touchscreen %04x:%04x",
1518 le16_to_cpu(udev
->descriptor
.idVendor
),
1519 le16_to_cpu(udev
->descriptor
.idProduct
));
1521 usb_make_path(udev
, usbtouch
->phys
, sizeof(usbtouch
->phys
));
1522 strlcat(usbtouch
->phys
, "/input0", sizeof(usbtouch
->phys
));
1524 input_dev
->name
= usbtouch
->name
;
1525 input_dev
->phys
= usbtouch
->phys
;
1526 usb_to_input_id(udev
, &input_dev
->id
);
1527 input_dev
->dev
.parent
= &intf
->dev
;
1529 input_set_drvdata(input_dev
, usbtouch
);
1531 input_dev
->open
= usbtouch_open
;
1532 input_dev
->close
= usbtouch_close
;
1534 input_dev
->evbit
[0] = BIT_MASK(EV_KEY
) | BIT_MASK(EV_ABS
);
1535 input_dev
->keybit
[BIT_WORD(BTN_TOUCH
)] = BIT_MASK(BTN_TOUCH
);
1536 input_set_abs_params(input_dev
, ABS_X
, type
->min_xc
, type
->max_xc
, 0, 0);
1537 input_set_abs_params(input_dev
, ABS_Y
, type
->min_yc
, type
->max_yc
, 0, 0);
1538 if (type
->max_press
)
1539 input_set_abs_params(input_dev
, ABS_PRESSURE
, type
->min_press
,
1540 type
->max_press
, 0, 0);
1542 if (usb_endpoint_type(endpoint
) == USB_ENDPOINT_XFER_INT
)
1543 usb_fill_int_urb(usbtouch
->irq
, udev
,
1544 usb_rcvintpipe(udev
, endpoint
->bEndpointAddress
),
1545 usbtouch
->data
, usbtouch
->data_size
,
1546 usbtouch_irq
, usbtouch
, endpoint
->bInterval
);
1548 usb_fill_bulk_urb(usbtouch
->irq
, udev
,
1549 usb_rcvbulkpipe(udev
, endpoint
->bEndpointAddress
),
1550 usbtouch
->data
, usbtouch
->data_size
,
1551 usbtouch_irq
, usbtouch
);
1553 usbtouch
->irq
->dev
= udev
;
1554 usbtouch
->irq
->transfer_dma
= usbtouch
->data_dma
;
1555 usbtouch
->irq
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
1557 /* device specific allocations */
1559 err
= type
->alloc(usbtouch
);
1562 "%s - type->alloc() failed, err: %d\n",
1568 /* device specific initialisation*/
1570 err
= type
->init(usbtouch
);
1573 "%s - type->init() failed, err: %d\n",
1579 err
= input_register_device(usbtouch
->input
);
1582 "%s - input_register_device failed, err: %d\n",
1587 usb_set_intfdata(intf
, usbtouch
);
1589 if (usbtouch
->type
->irq_always
) {
1590 /* this can't fail */
1591 usb_autopm_get_interface(intf
);
1592 err
= usb_submit_urb(usbtouch
->irq
, GFP_KERNEL
);
1594 usb_autopm_put_interface(intf
);
1596 "%s - usb_submit_urb failed with result: %d\n",
1598 goto out_unregister_input
;
1604 out_unregister_input
:
1605 input_unregister_device(input_dev
);
1609 type
->exit(usbtouch
);
1611 usb_free_urb(usbtouch
->irq
);
1613 usbtouch_free_buffers(udev
, usbtouch
);
1615 input_free_device(input_dev
);
1620 static void usbtouch_disconnect(struct usb_interface
*intf
)
1622 struct usbtouch_usb
*usbtouch
= usb_get_intfdata(intf
);
1628 "%s - usbtouch is initialized, cleaning up\n", __func__
);
1630 usb_set_intfdata(intf
, NULL
);
1631 /* this will stop IO via close */
1632 input_unregister_device(usbtouch
->input
);
1633 usb_free_urb(usbtouch
->irq
);
1634 if (usbtouch
->type
->exit
)
1635 usbtouch
->type
->exit(usbtouch
);
1636 usbtouch_free_buffers(interface_to_usbdev(intf
), usbtouch
);
1640 static const struct attribute_group
*usbtouch_groups
[] = {
1641 #ifdef CONFIG_TOUCHSCREEN_USB_3M
1647 static const struct usb_device_id usbtouch_devices
[] = {
1648 #ifdef CONFIG_TOUCHSCREEN_USB_EGALAX
1649 /* ignore the HID capable devices, handled by usbhid */
1650 { USB_DEVICE_INTERFACE_CLASS(0x0eef, 0x0001, USB_INTERFACE_CLASS_HID
),
1652 { USB_DEVICE_INTERFACE_CLASS(0x0eef, 0x0002, USB_INTERFACE_CLASS_HID
),
1655 /* normal device IDs */
1656 { USB_DEVICE(0x3823, 0x0001),
1657 .driver_info
= (kernel_ulong_t
)&egalax_dev_info
},
1658 { USB_DEVICE(0x3823, 0x0002),
1659 .driver_info
= (kernel_ulong_t
)&egalax_dev_info
},
1660 { USB_DEVICE(0x0123, 0x0001),
1661 .driver_info
= (kernel_ulong_t
)&egalax_dev_info
},
1662 { USB_DEVICE(0x0eef, 0x0001),
1663 .driver_info
= (kernel_ulong_t
)&egalax_dev_info
},
1664 { USB_DEVICE(0x0eef, 0x0002),
1665 .driver_info
= (kernel_ulong_t
)&egalax_dev_info
},
1666 { USB_DEVICE(0x1234, 0x0001),
1667 .driver_info
= (kernel_ulong_t
)&egalax_dev_info
},
1668 { USB_DEVICE(0x1234, 0x0002),
1669 .driver_info
= (kernel_ulong_t
)&egalax_dev_info
},
1672 #ifdef CONFIG_TOUCHSCREEN_USB_PANJIT
1673 { USB_DEVICE(0x134c, 0x0001),
1674 .driver_info
= (kernel_ulong_t
)&panjit_dev_info
},
1675 { USB_DEVICE(0x134c, 0x0002),
1676 .driver_info
= (kernel_ulong_t
)&panjit_dev_info
},
1677 { USB_DEVICE(0x134c, 0x0003),
1678 .driver_info
= (kernel_ulong_t
)&panjit_dev_info
},
1679 { USB_DEVICE(0x134c, 0x0004),
1680 .driver_info
= (kernel_ulong_t
)&panjit_dev_info
},
1683 #ifdef CONFIG_TOUCHSCREEN_USB_3M
1684 { USB_DEVICE(0x0596, 0x0001),
1685 .driver_info
= (kernel_ulong_t
)&mtouch_dev_info
},
1688 #ifdef CONFIG_TOUCHSCREEN_USB_ITM
1689 { USB_DEVICE(0x0403, 0xf9e9),
1690 .driver_info
= (kernel_ulong_t
)&itm_dev_info
},
1691 { USB_DEVICE(0x16e3, 0xf9e9),
1692 .driver_info
= (kernel_ulong_t
)&itm_dev_info
},
1695 #ifdef CONFIG_TOUCHSCREEN_USB_ETURBO
1696 { USB_DEVICE(0x1234, 0x5678),
1697 .driver_info
= (kernel_ulong_t
)&eturbo_dev_info
},
1700 #ifdef CONFIG_TOUCHSCREEN_USB_GUNZE
1701 { USB_DEVICE(0x0637, 0x0001),
1702 .driver_info
= (kernel_ulong_t
)&gunze_dev_info
},
1705 #ifdef CONFIG_TOUCHSCREEN_USB_DMC_TSC10
1706 { USB_DEVICE(0x0afa, 0x03e8),
1707 .driver_info
= (kernel_ulong_t
)&dmc_tsc10_dev_info
},
1710 #ifdef CONFIG_TOUCHSCREEN_USB_IRTOUCH
1711 { USB_DEVICE(0x255e, 0x0001),
1712 .driver_info
= (kernel_ulong_t
)&irtouch_dev_info
},
1713 { USB_DEVICE(0x595a, 0x0001),
1714 .driver_info
= (kernel_ulong_t
)&irtouch_dev_info
},
1715 { USB_DEVICE(0x6615, 0x0001),
1716 .driver_info
= (kernel_ulong_t
)&irtouch_dev_info
},
1717 { USB_DEVICE(0x6615, 0x0012),
1718 .driver_info
= (kernel_ulong_t
)&irtouch_hires_dev_info
},
1721 #ifdef CONFIG_TOUCHSCREEN_USB_IDEALTEK
1722 { USB_DEVICE(0x1391, 0x1000),
1723 .driver_info
= (kernel_ulong_t
)&idealtek_dev_info
},
1726 #ifdef CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH
1727 { USB_DEVICE(0x0dfc, 0x0001),
1728 .driver_info
= (kernel_ulong_t
)&general_touch_dev_info
},
1731 #ifdef CONFIG_TOUCHSCREEN_USB_GOTOP
1732 { USB_DEVICE(0x08f2, 0x007f),
1733 .driver_info
= (kernel_ulong_t
)&gotop_dev_info
},
1734 { USB_DEVICE(0x08f2, 0x00ce),
1735 .driver_info
= (kernel_ulong_t
)&gotop_dev_info
},
1736 { USB_DEVICE(0x08f2, 0x00f4),
1737 .driver_info
= (kernel_ulong_t
)&gotop_dev_info
},
1740 #ifdef CONFIG_TOUCHSCREEN_USB_JASTEC
1741 { USB_DEVICE(0x0f92, 0x0001),
1742 .driver_info
= (kernel_ulong_t
)&jastec_dev_info
},
1745 #ifdef CONFIG_TOUCHSCREEN_USB_E2I
1746 { USB_DEVICE(0x1ac7, 0x0001),
1747 .driver_info
= (kernel_ulong_t
)&e2i_dev_info
},
1750 #ifdef CONFIG_TOUCHSCREEN_USB_ZYTRONIC
1751 { USB_DEVICE(0x14c8, 0x0003),
1752 .driver_info
= (kernel_ulong_t
)&zytronic_dev_info
},
1755 #ifdef CONFIG_TOUCHSCREEN_USB_ETT_TC45USB
1757 { USB_DEVICE(0x0664, 0x0309),
1758 .driver_info
= (kernel_ulong_t
)&tc45usb_dev_info
},
1760 { USB_DEVICE(0x0664, 0x0306),
1761 .driver_info
= (kernel_ulong_t
)&tc45usb_dev_info
},
1764 #ifdef CONFIG_TOUCHSCREEN_USB_NEXIO
1765 /* data interface only */
1766 { USB_DEVICE_AND_INTERFACE_INFO(0x10f0, 0x2002, 0x0a, 0x00, 0x00),
1767 .driver_info
= (kernel_ulong_t
)&nexio_dev_info
},
1768 { USB_DEVICE_AND_INTERFACE_INFO(0x1870, 0x0001, 0x0a, 0x00, 0x00),
1769 .driver_info
= (kernel_ulong_t
)&nexio_dev_info
},
1772 #ifdef CONFIG_TOUCHSCREEN_USB_ELO
1773 { USB_DEVICE(0x04e7, 0x0020),
1774 .driver_info
= (kernel_ulong_t
)&elo_dev_info
},
1777 #ifdef CONFIG_TOUCHSCREEN_USB_EASYTOUCH
1778 { USB_DEVICE(0x7374, 0x0001),
1779 .driver_info
= (kernel_ulong_t
)&etouch_dev_info
},
1784 MODULE_DEVICE_TABLE(usb
, usbtouch_devices
);
1786 static struct usb_driver usbtouch_driver
= {
1787 .name
= "usbtouchscreen",
1788 .probe
= usbtouch_probe
,
1789 .disconnect
= usbtouch_disconnect
,
1790 .suspend
= usbtouch_suspend
,
1791 .resume
= usbtouch_resume
,
1792 .reset_resume
= usbtouch_reset_resume
,
1793 .id_table
= usbtouch_devices
,
1794 .dev_groups
= usbtouch_groups
,
1795 .supports_autosuspend
= 1,
1798 module_usb_driver(usbtouch_driver
);
1800 MODULE_AUTHOR("Daniel Ritz <daniel.ritz@gmx.ch>");
1801 MODULE_DESCRIPTION("USB Touchscreen Driver");
1802 MODULE_LICENSE("GPL");
1804 MODULE_ALIAS("touchkitusb");
1805 MODULE_ALIAS("itmtouch");
1806 MODULE_ALIAS("mtouchusb");