| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * USB Compaq iPAQ driver | 
|  | 3 | * | 
|  | 4 | *	Copyright (C) 2001 - 2002 | 
|  | 5 | *	    Ganesh Varadarajan <ganesh@veritas.com> | 
|  | 6 | * | 
|  | 7 | *	This program is free software; you can redistribute it and/or modify | 
|  | 8 | *	it under the terms of the GNU General Public License as published by | 
|  | 9 | *	the Free Software Foundation; either version 2 of the License, or | 
|  | 10 | *	(at your option) any later version. | 
|  | 11 | * | 
|  | 12 | * (12/12/2002) ganesh | 
|  | 13 | * 	Added support for practically all devices supported by ActiveSync | 
|  | 14 | * 	on Windows. Thanks to Wes Cilldhaire <billybobjoehenrybob@hotmail.com>. | 
|  | 15 | * | 
|  | 16 | * (26/11/2002) ganesh | 
|  | 17 | * 	Added insmod options to specify product and vendor id. | 
|  | 18 | * 	Use modprobe ipaq vendor=0xfoo product=0xbar | 
|  | 19 | * | 
|  | 20 | * (26/7/2002) ganesh | 
|  | 21 | * 	Fixed up broken error handling in ipaq_open. Retry the "kickstart" | 
|  | 22 | * 	packet much harder - this drastically reduces connection failures. | 
|  | 23 | * | 
|  | 24 | * (30/4/2002) ganesh | 
|  | 25 | * 	Added support for the Casio EM500. Completely untested. Thanks | 
|  | 26 | * 	to info from Nathan <wfilardo@fuse.net> | 
|  | 27 | * | 
|  | 28 | * (19/3/2002) ganesh | 
|  | 29 | *	Don't submit urbs while holding spinlocks. Not strictly necessary | 
|  | 30 | *	in 2.5.x. | 
|  | 31 | * | 
|  | 32 | * (8/3/2002) ganesh | 
|  | 33 | * 	The ipaq sometimes emits a '\0' before the CLIENT string. At this | 
|  | 34 | * 	point of time, the ppp ldisc is not yet attached to the tty, so | 
|  | 35 | * 	n_tty echoes "^ " to the ipaq, which messes up the chat. In 2.5.6-pre2 | 
|  | 36 | * 	this causes a panic because echo_char() tries to sleep in interrupt | 
|  | 37 | * 	context. | 
|  | 38 | * 	The fix is to tell the upper layers that this is a raw device so that | 
|  | 39 | * 	echoing is suppressed. Thanks to Lyle Lindholm for a detailed bug | 
|  | 40 | * 	report. | 
|  | 41 | * | 
|  | 42 | * (25/2/2002) ganesh | 
|  | 43 | * 	Added support for the HP Jornada 548 and 568. Completely untested. | 
|  | 44 | * 	Thanks to info from Heath Robinson and Arieh Davidoff. | 
|  | 45 | */ | 
|  | 46 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <linux/kernel.h> | 
|  | 48 | #include <linux/errno.h> | 
|  | 49 | #include <linux/init.h> | 
|  | 50 | #include <linux/slab.h> | 
|  | 51 | #include <linux/tty.h> | 
|  | 52 | #include <linux/tty_driver.h> | 
|  | 53 | #include <linux/tty_flip.h> | 
|  | 54 | #include <linux/module.h> | 
|  | 55 | #include <linux/spinlock.h> | 
|  | 56 | #include <asm/uaccess.h> | 
|  | 57 | #include <linux/usb.h> | 
| Greg Kroah-Hartman | a969888 | 2006-07-11 21:22:58 -0700 | [diff] [blame] | 58 | #include <linux/usb/serial.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | #include "ipaq.h" | 
|  | 60 |  | 
|  | 61 | #define KP_RETRIES	100 | 
|  | 62 |  | 
|  | 63 | /* | 
|  | 64 | * Version Information | 
|  | 65 | */ | 
|  | 66 |  | 
|  | 67 | #define DRIVER_VERSION "v0.5" | 
|  | 68 | #define DRIVER_AUTHOR "Ganesh Varadarajan <ganesh@veritas.com>" | 
|  | 69 | #define DRIVER_DESC "USB PocketPC PDA driver" | 
|  | 70 |  | 
|  | 71 | static __u16 product, vendor; | 
|  | 72 | static int debug; | 
| Frank Gevaerts | b33488e | 2006-06-30 02:34:45 -0700 | [diff] [blame] | 73 | static int connect_retries = KP_RETRIES; | 
|  | 74 | static int initial_wait; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 |  | 
|  | 76 | /* Function prototypes for an ipaq */ | 
|  | 77 | static int  ipaq_open (struct usb_serial_port *port, struct file *filp); | 
|  | 78 | static void ipaq_close (struct usb_serial_port *port, struct file *filp); | 
|  | 79 | static int  ipaq_startup (struct usb_serial *serial); | 
|  | 80 | static void ipaq_shutdown (struct usb_serial *serial); | 
|  | 81 | static int ipaq_write(struct usb_serial_port *port, const unsigned char *buf, | 
|  | 82 | int count); | 
|  | 83 | static int ipaq_write_bulk(struct usb_serial_port *port, const unsigned char *buf, | 
|  | 84 | int count); | 
|  | 85 | static void ipaq_write_gather(struct usb_serial_port *port); | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 86 | static void ipaq_read_bulk_callback (struct urb *urb); | 
|  | 87 | static void ipaq_write_bulk_callback(struct urb *urb); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | static int ipaq_write_room(struct usb_serial_port *port); | 
|  | 89 | static int ipaq_chars_in_buffer(struct usb_serial_port *port); | 
|  | 90 | static void ipaq_destroy_lists(struct usb_serial_port *port); | 
|  | 91 |  | 
|  | 92 |  | 
|  | 93 | static struct usb_device_id ipaq_id_table [] = { | 
|  | 94 | /* The first entry is a placeholder for the insmod-specified device */ | 
|  | 95 | { USB_DEVICE(0x049F, 0x0003) }, | 
| David Eriksson | eb3c5ed | 2005-10-18 20:12:24 +0200 | [diff] [blame] | 96 | { USB_DEVICE(0x0104, 0x00BE) }, /* Socket USB Sync */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | { USB_DEVICE(0x03F0, 0x1016) }, /* HP USB Sync */ | 
|  | 98 | { USB_DEVICE(0x03F0, 0x1116) }, /* HP USB Sync 1611 */ | 
|  | 99 | { USB_DEVICE(0x03F0, 0x1216) }, /* HP USB Sync 1612 */ | 
|  | 100 | { USB_DEVICE(0x03F0, 0x2016) }, /* HP USB Sync 1620 */ | 
|  | 101 | { USB_DEVICE(0x03F0, 0x2116) }, /* HP USB Sync 1621 */ | 
|  | 102 | { USB_DEVICE(0x03F0, 0x2216) }, /* HP USB Sync 1622 */ | 
|  | 103 | { USB_DEVICE(0x03F0, 0x3016) }, /* HP USB Sync 1630 */ | 
|  | 104 | { USB_DEVICE(0x03F0, 0x3116) }, /* HP USB Sync 1631 */ | 
|  | 105 | { USB_DEVICE(0x03F0, 0x3216) }, /* HP USB Sync 1632 */ | 
|  | 106 | { USB_DEVICE(0x03F0, 0x4016) }, /* HP USB Sync 1640 */ | 
|  | 107 | { USB_DEVICE(0x03F0, 0x4116) }, /* HP USB Sync 1641 */ | 
|  | 108 | { USB_DEVICE(0x03F0, 0x4216) }, /* HP USB Sync 1642 */ | 
|  | 109 | { USB_DEVICE(0x03F0, 0x5016) }, /* HP USB Sync 1650 */ | 
|  | 110 | { USB_DEVICE(0x03F0, 0x5116) }, /* HP USB Sync 1651 */ | 
|  | 111 | { USB_DEVICE(0x03F0, 0x5216) }, /* HP USB Sync 1652 */ | 
| David Eriksson | eb3c5ed | 2005-10-18 20:12:24 +0200 | [diff] [blame] | 112 | { USB_DEVICE(0x0409, 0x00D5) }, /* NEC USB Sync */ | 
|  | 113 | { USB_DEVICE(0x0409, 0x00D6) }, /* NEC USB Sync */ | 
|  | 114 | { USB_DEVICE(0x0409, 0x00D7) }, /* NEC USB Sync */ | 
|  | 115 | { USB_DEVICE(0x0409, 0x8024) }, /* NEC USB Sync */ | 
|  | 116 | { USB_DEVICE(0x0409, 0x8025) }, /* NEC USB Sync */ | 
|  | 117 | { USB_DEVICE(0x043E, 0x9C01) }, /* LGE USB Sync */ | 
|  | 118 | { USB_DEVICE(0x045E, 0x00CE) }, /* Microsoft USB Sync */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | { USB_DEVICE(0x045E, 0x0400) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 120 | { USB_DEVICE(0x045E, 0x0401) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 121 | { USB_DEVICE(0x045E, 0x0402) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 122 | { USB_DEVICE(0x045E, 0x0403) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 123 | { USB_DEVICE(0x045E, 0x0404) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 124 | { USB_DEVICE(0x045E, 0x0405) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 125 | { USB_DEVICE(0x045E, 0x0406) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 126 | { USB_DEVICE(0x045E, 0x0407) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 127 | { USB_DEVICE(0x045E, 0x0408) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 128 | { USB_DEVICE(0x045E, 0x0409) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 129 | { USB_DEVICE(0x045E, 0x040A) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 130 | { USB_DEVICE(0x045E, 0x040B) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 131 | { USB_DEVICE(0x045E, 0x040C) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 132 | { USB_DEVICE(0x045E, 0x040D) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 133 | { USB_DEVICE(0x045E, 0x040E) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 134 | { USB_DEVICE(0x045E, 0x040F) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 135 | { USB_DEVICE(0x045E, 0x0410) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 136 | { USB_DEVICE(0x045E, 0x0411) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 137 | { USB_DEVICE(0x045E, 0x0412) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 138 | { USB_DEVICE(0x045E, 0x0413) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 139 | { USB_DEVICE(0x045E, 0x0414) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 140 | { USB_DEVICE(0x045E, 0x0415) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 141 | { USB_DEVICE(0x045E, 0x0416) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 142 | { USB_DEVICE(0x045E, 0x0417) }, /* Windows Powered Pocket PC 2002 */ | 
|  | 143 | { USB_DEVICE(0x045E, 0x0432) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 144 | { USB_DEVICE(0x045E, 0x0433) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 145 | { USB_DEVICE(0x045E, 0x0434) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 146 | { USB_DEVICE(0x045E, 0x0435) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 147 | { USB_DEVICE(0x045E, 0x0436) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 148 | { USB_DEVICE(0x045E, 0x0437) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 149 | { USB_DEVICE(0x045E, 0x0438) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 150 | { USB_DEVICE(0x045E, 0x0439) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 151 | { USB_DEVICE(0x045E, 0x043A) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 152 | { USB_DEVICE(0x045E, 0x043B) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 153 | { USB_DEVICE(0x045E, 0x043C) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 154 | { USB_DEVICE(0x045E, 0x043D) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 155 | { USB_DEVICE(0x045E, 0x043E) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 156 | { USB_DEVICE(0x045E, 0x043F) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 157 | { USB_DEVICE(0x045E, 0x0440) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 158 | { USB_DEVICE(0x045E, 0x0441) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 159 | { USB_DEVICE(0x045E, 0x0442) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 160 | { USB_DEVICE(0x045E, 0x0443) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 161 | { USB_DEVICE(0x045E, 0x0444) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 162 | { USB_DEVICE(0x045E, 0x0445) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 163 | { USB_DEVICE(0x045E, 0x0446) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 164 | { USB_DEVICE(0x045E, 0x0447) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 165 | { USB_DEVICE(0x045E, 0x0448) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 166 | { USB_DEVICE(0x045E, 0x0449) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 167 | { USB_DEVICE(0x045E, 0x044A) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 168 | { USB_DEVICE(0x045E, 0x044B) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 169 | { USB_DEVICE(0x045E, 0x044C) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 170 | { USB_DEVICE(0x045E, 0x044D) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 171 | { USB_DEVICE(0x045E, 0x044E) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 172 | { USB_DEVICE(0x045E, 0x044F) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 173 | { USB_DEVICE(0x045E, 0x0450) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 174 | { USB_DEVICE(0x045E, 0x0451) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 175 | { USB_DEVICE(0x045E, 0x0452) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 176 | { USB_DEVICE(0x045E, 0x0453) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 177 | { USB_DEVICE(0x045E, 0x0454) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 178 | { USB_DEVICE(0x045E, 0x0455) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 179 | { USB_DEVICE(0x045E, 0x0456) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 180 | { USB_DEVICE(0x045E, 0x0457) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 181 | { USB_DEVICE(0x045E, 0x0458) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 182 | { USB_DEVICE(0x045E, 0x0459) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 183 | { USB_DEVICE(0x045E, 0x045A) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 184 | { USB_DEVICE(0x045E, 0x045B) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 185 | { USB_DEVICE(0x045E, 0x045C) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 186 | { USB_DEVICE(0x045E, 0x045D) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 187 | { USB_DEVICE(0x045E, 0x045E) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 188 | { USB_DEVICE(0x045E, 0x045F) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 189 | { USB_DEVICE(0x045E, 0x0460) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 190 | { USB_DEVICE(0x045E, 0x0461) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 191 | { USB_DEVICE(0x045E, 0x0462) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 192 | { USB_DEVICE(0x045E, 0x0463) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 193 | { USB_DEVICE(0x045E, 0x0464) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 194 | { USB_DEVICE(0x045E, 0x0465) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 195 | { USB_DEVICE(0x045E, 0x0466) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 196 | { USB_DEVICE(0x045E, 0x0467) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 197 | { USB_DEVICE(0x045E, 0x0468) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 198 | { USB_DEVICE(0x045E, 0x0469) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 199 | { USB_DEVICE(0x045E, 0x046A) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 200 | { USB_DEVICE(0x045E, 0x046B) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 201 | { USB_DEVICE(0x045E, 0x046C) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 202 | { USB_DEVICE(0x045E, 0x046D) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 203 | { USB_DEVICE(0x045E, 0x046E) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 204 | { USB_DEVICE(0x045E, 0x046F) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 205 | { USB_DEVICE(0x045E, 0x0470) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 206 | { USB_DEVICE(0x045E, 0x0471) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 207 | { USB_DEVICE(0x045E, 0x0472) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 208 | { USB_DEVICE(0x045E, 0x0473) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 209 | { USB_DEVICE(0x045E, 0x0474) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 210 | { USB_DEVICE(0x045E, 0x0475) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 211 | { USB_DEVICE(0x045E, 0x0476) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 212 | { USB_DEVICE(0x045E, 0x0477) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 213 | { USB_DEVICE(0x045E, 0x0478) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 214 | { USB_DEVICE(0x045E, 0x0479) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 215 | { USB_DEVICE(0x045E, 0x047A) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 216 | { USB_DEVICE(0x045E, 0x047B) }, /* Windows Powered Pocket PC 2003 */ | 
|  | 217 | { USB_DEVICE(0x045E, 0x04C8) }, /* Windows Powered Smartphone 2002 */ | 
|  | 218 | { USB_DEVICE(0x045E, 0x04C9) }, /* Windows Powered Smartphone 2002 */ | 
|  | 219 | { USB_DEVICE(0x045E, 0x04CA) }, /* Windows Powered Smartphone 2002 */ | 
|  | 220 | { USB_DEVICE(0x045E, 0x04CB) }, /* Windows Powered Smartphone 2002 */ | 
|  | 221 | { USB_DEVICE(0x045E, 0x04CC) }, /* Windows Powered Smartphone 2002 */ | 
|  | 222 | { USB_DEVICE(0x045E, 0x04CD) }, /* Windows Powered Smartphone 2002 */ | 
|  | 223 | { USB_DEVICE(0x045E, 0x04CE) }, /* Windows Powered Smartphone 2002 */ | 
|  | 224 | { USB_DEVICE(0x045E, 0x04D7) }, /* Windows Powered Smartphone 2003 */ | 
|  | 225 | { USB_DEVICE(0x045E, 0x04D8) }, /* Windows Powered Smartphone 2003 */ | 
|  | 226 | { USB_DEVICE(0x045E, 0x04D9) }, /* Windows Powered Smartphone 2003 */ | 
|  | 227 | { USB_DEVICE(0x045E, 0x04DA) }, /* Windows Powered Smartphone 2003 */ | 
|  | 228 | { USB_DEVICE(0x045E, 0x04DB) }, /* Windows Powered Smartphone 2003 */ | 
|  | 229 | { USB_DEVICE(0x045E, 0x04DC) }, /* Windows Powered Smartphone 2003 */ | 
|  | 230 | { USB_DEVICE(0x045E, 0x04DD) }, /* Windows Powered Smartphone 2003 */ | 
|  | 231 | { USB_DEVICE(0x045E, 0x04DE) }, /* Windows Powered Smartphone 2003 */ | 
|  | 232 | { USB_DEVICE(0x045E, 0x04DF) }, /* Windows Powered Smartphone 2003 */ | 
|  | 233 | { USB_DEVICE(0x045E, 0x04E0) }, /* Windows Powered Smartphone 2003 */ | 
|  | 234 | { USB_DEVICE(0x045E, 0x04E1) }, /* Windows Powered Smartphone 2003 */ | 
|  | 235 | { USB_DEVICE(0x045E, 0x04E2) }, /* Windows Powered Smartphone 2003 */ | 
|  | 236 | { USB_DEVICE(0x045E, 0x04E3) }, /* Windows Powered Smartphone 2003 */ | 
|  | 237 | { USB_DEVICE(0x045E, 0x04E4) }, /* Windows Powered Smartphone 2003 */ | 
|  | 238 | { USB_DEVICE(0x045E, 0x04E5) }, /* Windows Powered Smartphone 2003 */ | 
|  | 239 | { USB_DEVICE(0x045E, 0x04E6) }, /* Windows Powered Smartphone 2003 */ | 
|  | 240 | { USB_DEVICE(0x045E, 0x04E7) }, /* Windows Powered Smartphone 2003 */ | 
|  | 241 | { USB_DEVICE(0x045E, 0x04E8) }, /* Windows Powered Smartphone 2003 */ | 
|  | 242 | { USB_DEVICE(0x045E, 0x04E9) }, /* Windows Powered Smartphone 2003 */ | 
|  | 243 | { USB_DEVICE(0x045E, 0x04EA) }, /* Windows Powered Smartphone 2003 */ | 
| David Eriksson | eb3c5ed | 2005-10-18 20:12:24 +0200 | [diff] [blame] | 244 | { USB_DEVICE(0x049F, 0x0003) }, /* Compaq iPAQ USB Sync */ | 
|  | 245 | { USB_DEVICE(0x049F, 0x0032) }, /* Compaq iPAQ USB Sync */ | 
|  | 246 | { USB_DEVICE(0x04A4, 0x0014) }, /* Hitachi USB Sync */ | 
|  | 247 | { USB_DEVICE(0x04AD, 0x0301) }, /* USB Sync 0301 */ | 
|  | 248 | { USB_DEVICE(0x04AD, 0x0302) }, /* USB Sync 0302 */ | 
|  | 249 | { USB_DEVICE(0x04AD, 0x0303) }, /* USB Sync 0303 */ | 
|  | 250 | { USB_DEVICE(0x04C5, 0x1058) }, /* FUJITSU USB Sync */ | 
|  | 251 | { USB_DEVICE(0x04C5, 0x1079) }, /* FUJITSU USB Sync */ | 
|  | 252 | { USB_DEVICE(0x04DA, 0x2500) }, /* Panasonic USB Sync */ | 
| Norihiko Tomiyama | aec0d50 | 2006-07-13 09:43:02 +0900 | [diff] [blame] | 253 | { USB_DEVICE(0x04DD, 0x9102) }, /* SHARP WS003SH USB Modem */ | 
| Norihiko Tomiyama | 922fdaa | 2006-08-08 14:31:25 +0900 | [diff] [blame] | 254 | { USB_DEVICE(0x04DD, 0x9121) }, /* SHARP WS004SH USB Modem */ | 
|  | 255 | { USB_DEVICE(0x04DD, 0x9123) }, /* SHARP WS007SH USB Modem */ | 
| David Eriksson | eb3c5ed | 2005-10-18 20:12:24 +0200 | [diff] [blame] | 256 | { USB_DEVICE(0x04E8, 0x5F00) }, /* Samsung NEXiO USB Sync */ | 
|  | 257 | { USB_DEVICE(0x04E8, 0x5F01) }, /* Samsung NEXiO USB Sync */ | 
|  | 258 | { USB_DEVICE(0x04E8, 0x5F02) }, /* Samsung NEXiO USB Sync */ | 
|  | 259 | { USB_DEVICE(0x04E8, 0x5F03) }, /* Samsung NEXiO USB Sync */ | 
|  | 260 | { USB_DEVICE(0x04E8, 0x5F04) }, /* Samsung NEXiO USB Sync */ | 
|  | 261 | { USB_DEVICE(0x04E8, 0x6611) }, /* Samsung MITs USB Sync */ | 
|  | 262 | { USB_DEVICE(0x04E8, 0x6613) }, /* Samsung MITs USB Sync */ | 
|  | 263 | { USB_DEVICE(0x04E8, 0x6615) }, /* Samsung MITs USB Sync */ | 
|  | 264 | { USB_DEVICE(0x04E8, 0x6617) }, /* Samsung MITs USB Sync */ | 
|  | 265 | { USB_DEVICE(0x04E8, 0x6619) }, /* Samsung MITs USB Sync */ | 
|  | 266 | { USB_DEVICE(0x04E8, 0x661B) }, /* Samsung MITs USB Sync */ | 
|  | 267 | { USB_DEVICE(0x04E8, 0x662E) }, /* Samsung MITs USB Sync */ | 
|  | 268 | { USB_DEVICE(0x04E8, 0x6630) }, /* Samsung MITs USB Sync */ | 
|  | 269 | { USB_DEVICE(0x04E8, 0x6632) }, /* Samsung MITs USB Sync */ | 
|  | 270 | { USB_DEVICE(0x04f1, 0x3011) }, /* JVC USB Sync */ | 
|  | 271 | { USB_DEVICE(0x04F1, 0x3012) }, /* JVC USB Sync */ | 
|  | 272 | { USB_DEVICE(0x0502, 0x1631) }, /* c10 Series */ | 
|  | 273 | { USB_DEVICE(0x0502, 0x1632) }, /* c20 Series */ | 
|  | 274 | { USB_DEVICE(0x0502, 0x16E1) }, /* Acer n10 Handheld USB Sync */ | 
|  | 275 | { USB_DEVICE(0x0502, 0x16E2) }, /* Acer n20 Handheld USB Sync */ | 
|  | 276 | { USB_DEVICE(0x0502, 0x16E3) }, /* Acer n30 Handheld USB Sync */ | 
|  | 277 | { USB_DEVICE(0x0536, 0x01A0) }, /* HHP PDT */ | 
|  | 278 | { USB_DEVICE(0x0543, 0x0ED9) }, /* ViewSonic Color Pocket PC V35 */ | 
|  | 279 | { USB_DEVICE(0x0543, 0x1527) }, /* ViewSonic Color Pocket PC V36 */ | 
|  | 280 | { USB_DEVICE(0x0543, 0x1529) }, /* ViewSonic Color Pocket PC V37 */ | 
|  | 281 | { USB_DEVICE(0x0543, 0x152B) }, /* ViewSonic Color Pocket PC V38 */ | 
|  | 282 | { USB_DEVICE(0x0543, 0x152E) }, /* ViewSonic Pocket PC */ | 
|  | 283 | { USB_DEVICE(0x0543, 0x1921) }, /* ViewSonic Communicator Pocket PC */ | 
|  | 284 | { USB_DEVICE(0x0543, 0x1922) }, /* ViewSonic Smartphone */ | 
|  | 285 | { USB_DEVICE(0x0543, 0x1923) }, /* ViewSonic Pocket PC V30 */ | 
|  | 286 | { USB_DEVICE(0x05E0, 0x2000) }, /* Symbol USB Sync */ | 
|  | 287 | { USB_DEVICE(0x05E0, 0x2001) }, /* Symbol USB Sync 0x2001 */ | 
|  | 288 | { USB_DEVICE(0x05E0, 0x2002) }, /* Symbol USB Sync 0x2002 */ | 
|  | 289 | { USB_DEVICE(0x05E0, 0x2003) }, /* Symbol USB Sync 0x2003 */ | 
|  | 290 | { USB_DEVICE(0x05E0, 0x2004) }, /* Symbol USB Sync 0x2004 */ | 
|  | 291 | { USB_DEVICE(0x05E0, 0x2005) }, /* Symbol USB Sync 0x2005 */ | 
|  | 292 | { USB_DEVICE(0x05E0, 0x2006) }, /* Symbol USB Sync 0x2006 */ | 
|  | 293 | { USB_DEVICE(0x05E0, 0x2007) }, /* Symbol USB Sync 0x2007 */ | 
|  | 294 | { USB_DEVICE(0x05E0, 0x2008) }, /* Symbol USB Sync 0x2008 */ | 
|  | 295 | { USB_DEVICE(0x05E0, 0x2009) }, /* Symbol USB Sync 0x2009 */ | 
|  | 296 | { USB_DEVICE(0x05E0, 0x200A) }, /* Symbol USB Sync 0x200A */ | 
|  | 297 | { USB_DEVICE(0x067E, 0x1001) }, /* Intermec Mobile Computer */ | 
|  | 298 | { USB_DEVICE(0x07CF, 0x2001) }, /* CASIO USB Sync 2001 */ | 
|  | 299 | { USB_DEVICE(0x07CF, 0x2002) }, /* CASIO USB Sync 2002 */ | 
|  | 300 | { USB_DEVICE(0x07CF, 0x2003) }, /* CASIO USB Sync 2003 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | { USB_DEVICE(0x0930, 0x0700) }, /* TOSHIBA USB Sync 0700 */ | 
|  | 302 | { USB_DEVICE(0x0930, 0x0705) }, /* TOSHIBA Pocket PC e310 */ | 
| David Eriksson | eb3c5ed | 2005-10-18 20:12:24 +0200 | [diff] [blame] | 303 | { USB_DEVICE(0x0930, 0x0706) }, /* TOSHIBA Pocket PC e740 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | { USB_DEVICE(0x0930, 0x0707) }, /* TOSHIBA Pocket PC e330 Series */ | 
|  | 305 | { USB_DEVICE(0x0930, 0x0708) }, /* TOSHIBA Pocket PC e350 Series */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | { USB_DEVICE(0x0930, 0x0709) }, /* TOSHIBA Pocket PC e750 Series */ | 
|  | 307 | { USB_DEVICE(0x0930, 0x070A) }, /* TOSHIBA Pocket PC e400 Series */ | 
|  | 308 | { USB_DEVICE(0x0930, 0x070B) }, /* TOSHIBA Pocket PC e800 Series */ | 
| David Eriksson | eb3c5ed | 2005-10-18 20:12:24 +0200 | [diff] [blame] | 309 | { USB_DEVICE(0x094B, 0x0001) }, /* Linkup Systems USB Sync */ | 
|  | 310 | { USB_DEVICE(0x0960, 0x0065) }, /* BCOM USB Sync 0065 */ | 
|  | 311 | { USB_DEVICE(0x0960, 0x0066) }, /* BCOM USB Sync 0066 */ | 
|  | 312 | { USB_DEVICE(0x0960, 0x0067) }, /* BCOM USB Sync 0067 */ | 
|  | 313 | { USB_DEVICE(0x0961, 0x0010) }, /* Portatec USB Sync */ | 
|  | 314 | { USB_DEVICE(0x099E, 0x0052) }, /* Trimble GeoExplorer */ | 
|  | 315 | { USB_DEVICE(0x099E, 0x4000) }, /* TDS Data Collector */ | 
|  | 316 | { USB_DEVICE(0x0B05, 0x4200) }, /* ASUS USB Sync */ | 
|  | 317 | { USB_DEVICE(0x0B05, 0x4201) }, /* ASUS USB Sync */ | 
|  | 318 | { USB_DEVICE(0x0B05, 0x4202) }, /* ASUS USB Sync */ | 
|  | 319 | { USB_DEVICE(0x0B05, 0x420F) }, /* ASUS USB Sync */ | 
|  | 320 | { USB_DEVICE(0x0B05, 0x9200) }, /* ASUS USB Sync */ | 
|  | 321 | { USB_DEVICE(0x0B05, 0x9202) }, /* ASUS USB Sync */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | { USB_DEVICE(0x0BB4, 0x00CE) }, /* HTC USB Sync */ | 
|  | 323 | { USB_DEVICE(0x0BB4, 0x0A01) }, /* PocketPC USB Sync */ | 
|  | 324 | { USB_DEVICE(0x0BB4, 0x0A02) }, /* PocketPC USB Sync */ | 
|  | 325 | { USB_DEVICE(0x0BB4, 0x0A03) }, /* PocketPC USB Sync */ | 
|  | 326 | { USB_DEVICE(0x0BB4, 0x0A04) }, /* PocketPC USB Sync */ | 
|  | 327 | { USB_DEVICE(0x0BB4, 0x0A05) }, /* PocketPC USB Sync */ | 
|  | 328 | { USB_DEVICE(0x0BB4, 0x0A06) }, /* PocketPC USB Sync */ | 
|  | 329 | { USB_DEVICE(0x0BB4, 0x0A07) }, /* PocketPC USB Sync */ | 
|  | 330 | { USB_DEVICE(0x0BB4, 0x0A08) }, /* PocketPC USB Sync */ | 
|  | 331 | { USB_DEVICE(0x0BB4, 0x0A09) }, /* PocketPC USB Sync */ | 
|  | 332 | { USB_DEVICE(0x0BB4, 0x0A0A) }, /* PocketPC USB Sync */ | 
|  | 333 | { USB_DEVICE(0x0BB4, 0x0A0B) }, /* PocketPC USB Sync */ | 
|  | 334 | { USB_DEVICE(0x0BB4, 0x0A0C) }, /* PocketPC USB Sync */ | 
|  | 335 | { USB_DEVICE(0x0BB4, 0x0A0D) }, /* PocketPC USB Sync */ | 
|  | 336 | { USB_DEVICE(0x0BB4, 0x0A0E) }, /* PocketPC USB Sync */ | 
|  | 337 | { USB_DEVICE(0x0BB4, 0x0A0F) }, /* PocketPC USB Sync */ | 
|  | 338 | { USB_DEVICE(0x0BB4, 0x0A10) }, /* PocketPC USB Sync */ | 
|  | 339 | { USB_DEVICE(0x0BB4, 0x0A11) }, /* PocketPC USB Sync */ | 
|  | 340 | { USB_DEVICE(0x0BB4, 0x0A12) }, /* PocketPC USB Sync */ | 
|  | 341 | { USB_DEVICE(0x0BB4, 0x0A13) }, /* PocketPC USB Sync */ | 
|  | 342 | { USB_DEVICE(0x0BB4, 0x0A14) }, /* PocketPC USB Sync */ | 
|  | 343 | { USB_DEVICE(0x0BB4, 0x0A15) }, /* PocketPC USB Sync */ | 
|  | 344 | { USB_DEVICE(0x0BB4, 0x0A16) }, /* PocketPC USB Sync */ | 
|  | 345 | { USB_DEVICE(0x0BB4, 0x0A17) }, /* PocketPC USB Sync */ | 
|  | 346 | { USB_DEVICE(0x0BB4, 0x0A18) }, /* PocketPC USB Sync */ | 
|  | 347 | { USB_DEVICE(0x0BB4, 0x0A19) }, /* PocketPC USB Sync */ | 
|  | 348 | { USB_DEVICE(0x0BB4, 0x0A1A) }, /* PocketPC USB Sync */ | 
|  | 349 | { USB_DEVICE(0x0BB4, 0x0A1B) }, /* PocketPC USB Sync */ | 
|  | 350 | { USB_DEVICE(0x0BB4, 0x0A1C) }, /* PocketPC USB Sync */ | 
|  | 351 | { USB_DEVICE(0x0BB4, 0x0A1D) }, /* PocketPC USB Sync */ | 
|  | 352 | { USB_DEVICE(0x0BB4, 0x0A1E) }, /* PocketPC USB Sync */ | 
|  | 353 | { USB_DEVICE(0x0BB4, 0x0A1F) }, /* PocketPC USB Sync */ | 
|  | 354 | { USB_DEVICE(0x0BB4, 0x0A20) }, /* PocketPC USB Sync */ | 
|  | 355 | { USB_DEVICE(0x0BB4, 0x0A21) }, /* PocketPC USB Sync */ | 
|  | 356 | { USB_DEVICE(0x0BB4, 0x0A22) }, /* PocketPC USB Sync */ | 
|  | 357 | { USB_DEVICE(0x0BB4, 0x0A23) }, /* PocketPC USB Sync */ | 
|  | 358 | { USB_DEVICE(0x0BB4, 0x0A24) }, /* PocketPC USB Sync */ | 
|  | 359 | { USB_DEVICE(0x0BB4, 0x0A25) }, /* PocketPC USB Sync */ | 
|  | 360 | { USB_DEVICE(0x0BB4, 0x0A26) }, /* PocketPC USB Sync */ | 
|  | 361 | { USB_DEVICE(0x0BB4, 0x0A27) }, /* PocketPC USB Sync */ | 
|  | 362 | { USB_DEVICE(0x0BB4, 0x0A28) }, /* PocketPC USB Sync */ | 
|  | 363 | { USB_DEVICE(0x0BB4, 0x0A29) }, /* PocketPC USB Sync */ | 
|  | 364 | { USB_DEVICE(0x0BB4, 0x0A2A) }, /* PocketPC USB Sync */ | 
|  | 365 | { USB_DEVICE(0x0BB4, 0x0A2B) }, /* PocketPC USB Sync */ | 
|  | 366 | { USB_DEVICE(0x0BB4, 0x0A2C) }, /* PocketPC USB Sync */ | 
|  | 367 | { USB_DEVICE(0x0BB4, 0x0A2D) }, /* PocketPC USB Sync */ | 
|  | 368 | { USB_DEVICE(0x0BB4, 0x0A2E) }, /* PocketPC USB Sync */ | 
|  | 369 | { USB_DEVICE(0x0BB4, 0x0A2F) }, /* PocketPC USB Sync */ | 
|  | 370 | { USB_DEVICE(0x0BB4, 0x0A30) }, /* PocketPC USB Sync */ | 
|  | 371 | { USB_DEVICE(0x0BB4, 0x0A31) }, /* PocketPC USB Sync */ | 
|  | 372 | { USB_DEVICE(0x0BB4, 0x0A32) }, /* PocketPC USB Sync */ | 
|  | 373 | { USB_DEVICE(0x0BB4, 0x0A33) }, /* PocketPC USB Sync */ | 
|  | 374 | { USB_DEVICE(0x0BB4, 0x0A34) }, /* PocketPC USB Sync */ | 
|  | 375 | { USB_DEVICE(0x0BB4, 0x0A35) }, /* PocketPC USB Sync */ | 
|  | 376 | { USB_DEVICE(0x0BB4, 0x0A36) }, /* PocketPC USB Sync */ | 
|  | 377 | { USB_DEVICE(0x0BB4, 0x0A37) }, /* PocketPC USB Sync */ | 
|  | 378 | { USB_DEVICE(0x0BB4, 0x0A38) }, /* PocketPC USB Sync */ | 
|  | 379 | { USB_DEVICE(0x0BB4, 0x0A39) }, /* PocketPC USB Sync */ | 
|  | 380 | { USB_DEVICE(0x0BB4, 0x0A3A) }, /* PocketPC USB Sync */ | 
|  | 381 | { USB_DEVICE(0x0BB4, 0x0A3B) }, /* PocketPC USB Sync */ | 
|  | 382 | { USB_DEVICE(0x0BB4, 0x0A3C) }, /* PocketPC USB Sync */ | 
|  | 383 | { USB_DEVICE(0x0BB4, 0x0A3D) }, /* PocketPC USB Sync */ | 
|  | 384 | { USB_DEVICE(0x0BB4, 0x0A3E) }, /* PocketPC USB Sync */ | 
|  | 385 | { USB_DEVICE(0x0BB4, 0x0A3F) }, /* PocketPC USB Sync */ | 
|  | 386 | { USB_DEVICE(0x0BB4, 0x0A40) }, /* PocketPC USB Sync */ | 
|  | 387 | { USB_DEVICE(0x0BB4, 0x0A41) }, /* PocketPC USB Sync */ | 
|  | 388 | { USB_DEVICE(0x0BB4, 0x0A42) }, /* PocketPC USB Sync */ | 
|  | 389 | { USB_DEVICE(0x0BB4, 0x0A43) }, /* PocketPC USB Sync */ | 
|  | 390 | { USB_DEVICE(0x0BB4, 0x0A44) }, /* PocketPC USB Sync */ | 
|  | 391 | { USB_DEVICE(0x0BB4, 0x0A45) }, /* PocketPC USB Sync */ | 
|  | 392 | { USB_DEVICE(0x0BB4, 0x0A46) }, /* PocketPC USB Sync */ | 
|  | 393 | { USB_DEVICE(0x0BB4, 0x0A47) }, /* PocketPC USB Sync */ | 
|  | 394 | { USB_DEVICE(0x0BB4, 0x0A48) }, /* PocketPC USB Sync */ | 
|  | 395 | { USB_DEVICE(0x0BB4, 0x0A49) }, /* PocketPC USB Sync */ | 
|  | 396 | { USB_DEVICE(0x0BB4, 0x0A4A) }, /* PocketPC USB Sync */ | 
|  | 397 | { USB_DEVICE(0x0BB4, 0x0A4B) }, /* PocketPC USB Sync */ | 
|  | 398 | { USB_DEVICE(0x0BB4, 0x0A4C) }, /* PocketPC USB Sync */ | 
|  | 399 | { USB_DEVICE(0x0BB4, 0x0A4D) }, /* PocketPC USB Sync */ | 
|  | 400 | { USB_DEVICE(0x0BB4, 0x0A4E) }, /* PocketPC USB Sync */ | 
|  | 401 | { USB_DEVICE(0x0BB4, 0x0A4F) }, /* PocketPC USB Sync */ | 
|  | 402 | { USB_DEVICE(0x0BB4, 0x0A50) }, /* HTC SmartPhone USB Sync */ | 
|  | 403 | { USB_DEVICE(0x0BB4, 0x0A51) }, /* SmartPhone USB Sync */ | 
|  | 404 | { USB_DEVICE(0x0BB4, 0x0A52) }, /* SmartPhone USB Sync */ | 
|  | 405 | { USB_DEVICE(0x0BB4, 0x0A53) }, /* SmartPhone USB Sync */ | 
|  | 406 | { USB_DEVICE(0x0BB4, 0x0A54) }, /* SmartPhone USB Sync */ | 
|  | 407 | { USB_DEVICE(0x0BB4, 0x0A55) }, /* SmartPhone USB Sync */ | 
|  | 408 | { USB_DEVICE(0x0BB4, 0x0A56) }, /* SmartPhone USB Sync */ | 
|  | 409 | { USB_DEVICE(0x0BB4, 0x0A57) }, /* SmartPhone USB Sync */ | 
|  | 410 | { USB_DEVICE(0x0BB4, 0x0A58) }, /* SmartPhone USB Sync */ | 
|  | 411 | { USB_DEVICE(0x0BB4, 0x0A59) }, /* SmartPhone USB Sync */ | 
|  | 412 | { USB_DEVICE(0x0BB4, 0x0A5A) }, /* SmartPhone USB Sync */ | 
|  | 413 | { USB_DEVICE(0x0BB4, 0x0A5B) }, /* SmartPhone USB Sync */ | 
|  | 414 | { USB_DEVICE(0x0BB4, 0x0A5C) }, /* SmartPhone USB Sync */ | 
|  | 415 | { USB_DEVICE(0x0BB4, 0x0A5D) }, /* SmartPhone USB Sync */ | 
|  | 416 | { USB_DEVICE(0x0BB4, 0x0A5E) }, /* SmartPhone USB Sync */ | 
|  | 417 | { USB_DEVICE(0x0BB4, 0x0A5F) }, /* SmartPhone USB Sync */ | 
|  | 418 | { USB_DEVICE(0x0BB4, 0x0A60) }, /* SmartPhone USB Sync */ | 
|  | 419 | { USB_DEVICE(0x0BB4, 0x0A61) }, /* SmartPhone USB Sync */ | 
|  | 420 | { USB_DEVICE(0x0BB4, 0x0A62) }, /* SmartPhone USB Sync */ | 
|  | 421 | { USB_DEVICE(0x0BB4, 0x0A63) }, /* SmartPhone USB Sync */ | 
|  | 422 | { USB_DEVICE(0x0BB4, 0x0A64) }, /* SmartPhone USB Sync */ | 
|  | 423 | { USB_DEVICE(0x0BB4, 0x0A65) }, /* SmartPhone USB Sync */ | 
|  | 424 | { USB_DEVICE(0x0BB4, 0x0A66) }, /* SmartPhone USB Sync */ | 
|  | 425 | { USB_DEVICE(0x0BB4, 0x0A67) }, /* SmartPhone USB Sync */ | 
|  | 426 | { USB_DEVICE(0x0BB4, 0x0A68) }, /* SmartPhone USB Sync */ | 
|  | 427 | { USB_DEVICE(0x0BB4, 0x0A69) }, /* SmartPhone USB Sync */ | 
|  | 428 | { USB_DEVICE(0x0BB4, 0x0A6A) }, /* SmartPhone USB Sync */ | 
|  | 429 | { USB_DEVICE(0x0BB4, 0x0A6B) }, /* SmartPhone USB Sync */ | 
|  | 430 | { USB_DEVICE(0x0BB4, 0x0A6C) }, /* SmartPhone USB Sync */ | 
|  | 431 | { USB_DEVICE(0x0BB4, 0x0A6D) }, /* SmartPhone USB Sync */ | 
|  | 432 | { USB_DEVICE(0x0BB4, 0x0A6E) }, /* SmartPhone USB Sync */ | 
|  | 433 | { USB_DEVICE(0x0BB4, 0x0A6F) }, /* SmartPhone USB Sync */ | 
|  | 434 | { USB_DEVICE(0x0BB4, 0x0A70) }, /* SmartPhone USB Sync */ | 
|  | 435 | { USB_DEVICE(0x0BB4, 0x0A71) }, /* SmartPhone USB Sync */ | 
|  | 436 | { USB_DEVICE(0x0BB4, 0x0A72) }, /* SmartPhone USB Sync */ | 
|  | 437 | { USB_DEVICE(0x0BB4, 0x0A73) }, /* SmartPhone USB Sync */ | 
|  | 438 | { USB_DEVICE(0x0BB4, 0x0A74) }, /* SmartPhone USB Sync */ | 
|  | 439 | { USB_DEVICE(0x0BB4, 0x0A75) }, /* SmartPhone USB Sync */ | 
|  | 440 | { USB_DEVICE(0x0BB4, 0x0A76) }, /* SmartPhone USB Sync */ | 
|  | 441 | { USB_DEVICE(0x0BB4, 0x0A77) }, /* SmartPhone USB Sync */ | 
|  | 442 | { USB_DEVICE(0x0BB4, 0x0A78) }, /* SmartPhone USB Sync */ | 
|  | 443 | { USB_DEVICE(0x0BB4, 0x0A79) }, /* SmartPhone USB Sync */ | 
|  | 444 | { USB_DEVICE(0x0BB4, 0x0A7A) }, /* SmartPhone USB Sync */ | 
|  | 445 | { USB_DEVICE(0x0BB4, 0x0A7B) }, /* SmartPhone USB Sync */ | 
|  | 446 | { USB_DEVICE(0x0BB4, 0x0A7C) }, /* SmartPhone USB Sync */ | 
|  | 447 | { USB_DEVICE(0x0BB4, 0x0A7D) }, /* SmartPhone USB Sync */ | 
|  | 448 | { USB_DEVICE(0x0BB4, 0x0A7E) }, /* SmartPhone USB Sync */ | 
|  | 449 | { USB_DEVICE(0x0BB4, 0x0A7F) }, /* SmartPhone USB Sync */ | 
|  | 450 | { USB_DEVICE(0x0BB4, 0x0A80) }, /* SmartPhone USB Sync */ | 
|  | 451 | { USB_DEVICE(0x0BB4, 0x0A81) }, /* SmartPhone USB Sync */ | 
|  | 452 | { USB_DEVICE(0x0BB4, 0x0A82) }, /* SmartPhone USB Sync */ | 
|  | 453 | { USB_DEVICE(0x0BB4, 0x0A83) }, /* SmartPhone USB Sync */ | 
|  | 454 | { USB_DEVICE(0x0BB4, 0x0A84) }, /* SmartPhone USB Sync */ | 
|  | 455 | { USB_DEVICE(0x0BB4, 0x0A85) }, /* SmartPhone USB Sync */ | 
|  | 456 | { USB_DEVICE(0x0BB4, 0x0A86) }, /* SmartPhone USB Sync */ | 
|  | 457 | { USB_DEVICE(0x0BB4, 0x0A87) }, /* SmartPhone USB Sync */ | 
|  | 458 | { USB_DEVICE(0x0BB4, 0x0A88) }, /* SmartPhone USB Sync */ | 
|  | 459 | { USB_DEVICE(0x0BB4, 0x0A89) }, /* SmartPhone USB Sync */ | 
|  | 460 | { USB_DEVICE(0x0BB4, 0x0A8A) }, /* SmartPhone USB Sync */ | 
|  | 461 | { USB_DEVICE(0x0BB4, 0x0A8B) }, /* SmartPhone USB Sync */ | 
|  | 462 | { USB_DEVICE(0x0BB4, 0x0A8C) }, /* SmartPhone USB Sync */ | 
|  | 463 | { USB_DEVICE(0x0BB4, 0x0A8D) }, /* SmartPhone USB Sync */ | 
|  | 464 | { USB_DEVICE(0x0BB4, 0x0A8E) }, /* SmartPhone USB Sync */ | 
|  | 465 | { USB_DEVICE(0x0BB4, 0x0A8F) }, /* SmartPhone USB Sync */ | 
|  | 466 | { USB_DEVICE(0x0BB4, 0x0A90) }, /* SmartPhone USB Sync */ | 
|  | 467 | { USB_DEVICE(0x0BB4, 0x0A91) }, /* SmartPhone USB Sync */ | 
|  | 468 | { USB_DEVICE(0x0BB4, 0x0A92) }, /* SmartPhone USB Sync */ | 
|  | 469 | { USB_DEVICE(0x0BB4, 0x0A93) }, /* SmartPhone USB Sync */ | 
|  | 470 | { USB_DEVICE(0x0BB4, 0x0A94) }, /* SmartPhone USB Sync */ | 
|  | 471 | { USB_DEVICE(0x0BB4, 0x0A95) }, /* SmartPhone USB Sync */ | 
|  | 472 | { USB_DEVICE(0x0BB4, 0x0A96) }, /* SmartPhone USB Sync */ | 
|  | 473 | { USB_DEVICE(0x0BB4, 0x0A97) }, /* SmartPhone USB Sync */ | 
|  | 474 | { USB_DEVICE(0x0BB4, 0x0A98) }, /* SmartPhone USB Sync */ | 
|  | 475 | { USB_DEVICE(0x0BB4, 0x0A99) }, /* SmartPhone USB Sync */ | 
|  | 476 | { USB_DEVICE(0x0BB4, 0x0A9A) }, /* SmartPhone USB Sync */ | 
|  | 477 | { USB_DEVICE(0x0BB4, 0x0A9B) }, /* SmartPhone USB Sync */ | 
|  | 478 | { USB_DEVICE(0x0BB4, 0x0A9C) }, /* SmartPhone USB Sync */ | 
|  | 479 | { USB_DEVICE(0x0BB4, 0x0A9D) }, /* SmartPhone USB Sync */ | 
|  | 480 | { USB_DEVICE(0x0BB4, 0x0A9E) }, /* SmartPhone USB Sync */ | 
|  | 481 | { USB_DEVICE(0x0BB4, 0x0A9F) }, /* SmartPhone USB Sync */ | 
| Matthias Urlichs | 1b495f7 | 2006-09-24 21:38:47 +0200 | [diff] [blame] | 482 | { USB_DEVICE(0x0BB4, 0x0BCE) }, /* "High Tech Computer Corp" */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | { USB_DEVICE(0x0BF8, 0x1001) }, /* Fujitsu Siemens Computers USB Sync */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | { USB_DEVICE(0x0C44, 0x03A2) }, /* Motorola iDEN Smartphone */ | 
| David Eriksson | eb3c5ed | 2005-10-18 20:12:24 +0200 | [diff] [blame] | 485 | { USB_DEVICE(0x0C8E, 0x6000) }, /* Cesscom Luxian Series */ | 
|  | 486 | { USB_DEVICE(0x0CAD, 0x9001) }, /* Motorola PowerPad Pocket PC Device */ | 
|  | 487 | { USB_DEVICE(0x0F4E, 0x0200) }, /* Freedom Scientific USB Sync */ | 
|  | 488 | { USB_DEVICE(0x0F98, 0x0201) }, /* Cyberbank USB Sync */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | { USB_DEVICE(0x0FB8, 0x3001) }, /* Wistron USB Sync */ | 
|  | 490 | { USB_DEVICE(0x0FB8, 0x3002) }, /* Wistron USB Sync */ | 
|  | 491 | { USB_DEVICE(0x0FB8, 0x3003) }, /* Wistron USB Sync */ | 
|  | 492 | { USB_DEVICE(0x0FB8, 0x4001) }, /* Wistron USB Sync */ | 
| David Eriksson | eb3c5ed | 2005-10-18 20:12:24 +0200 | [diff] [blame] | 493 | { USB_DEVICE(0x1066, 0x00CE) }, /* E-TEN USB Sync */ | 
|  | 494 | { USB_DEVICE(0x1066, 0x0300) }, /* E-TEN P3XX Pocket PC */ | 
|  | 495 | { USB_DEVICE(0x1066, 0x0500) }, /* E-TEN P5XX Pocket PC */ | 
|  | 496 | { USB_DEVICE(0x1066, 0x0600) }, /* E-TEN P6XX Pocket PC */ | 
|  | 497 | { USB_DEVICE(0x1066, 0x0700) }, /* E-TEN P7XX Pocket PC */ | 
|  | 498 | { USB_DEVICE(0x1114, 0x0001) }, /* Psion Teklogix Sync 753x */ | 
|  | 499 | { USB_DEVICE(0x1114, 0x0004) }, /* Psion Teklogix Sync netBookPro */ | 
|  | 500 | { USB_DEVICE(0x1114, 0x0006) }, /* Psion Teklogix Sync 7525 */ | 
|  | 501 | { USB_DEVICE(0x1182, 0x1388) }, /* VES USB Sync */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | { USB_DEVICE(0x11D9, 0x1002) }, /* Rugged Pocket PC 2003 */ | 
| David Eriksson | eb3c5ed | 2005-10-18 20:12:24 +0200 | [diff] [blame] | 503 | { USB_DEVICE(0x11D9, 0x1003) }, /* Rugged Pocket PC 2003 */ | 
|  | 504 | { USB_DEVICE(0x1231, 0xCE01) }, /* USB Sync 03 */ | 
|  | 505 | { USB_DEVICE(0x1231, 0xCE02) }, /* USB Sync 03 */ | 
|  | 506 | { USB_DEVICE(0x1690, 0x0601) }, /* Askey USB Sync */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | { USB_DEVICE(0x22B8, 0x4204) }, /* Motorola MPx200 Smartphone */ | 
|  | 508 | { USB_DEVICE(0x22B8, 0x4214) }, /* Motorola MPc GSM */ | 
|  | 509 | { USB_DEVICE(0x22B8, 0x4224) }, /* Motorola MPx220 Smartphone */ | 
|  | 510 | { USB_DEVICE(0x22B8, 0x4234) }, /* Motorola MPc CDMA */ | 
|  | 511 | { USB_DEVICE(0x22B8, 0x4244) }, /* Motorola MPx100 Smartphone */ | 
| David Eriksson | eb3c5ed | 2005-10-18 20:12:24 +0200 | [diff] [blame] | 512 | { USB_DEVICE(0x3340, 0x011C) }, /* Mio DigiWalker PPC StrongARM */ | 
|  | 513 | { USB_DEVICE(0x3340, 0x0326) }, /* Mio DigiWalker 338 */ | 
|  | 514 | { USB_DEVICE(0x3340, 0x0426) }, /* Mio DigiWalker 338 */ | 
|  | 515 | { USB_DEVICE(0x3340, 0x043A) }, /* Mio DigiWalker USB Sync */ | 
|  | 516 | { USB_DEVICE(0x3340, 0x051C) }, /* MiTAC USB Sync 528 */ | 
|  | 517 | { USB_DEVICE(0x3340, 0x053A) }, /* Mio DigiWalker SmartPhone USB Sync */ | 
|  | 518 | { USB_DEVICE(0x3340, 0x071C) }, /* MiTAC USB Sync */ | 
|  | 519 | { USB_DEVICE(0x3340, 0x0B1C) }, /* Generic PPC StrongARM */ | 
|  | 520 | { USB_DEVICE(0x3340, 0x0E3A) }, /* Generic PPC USB Sync */ | 
|  | 521 | { USB_DEVICE(0x3340, 0x0F1C) }, /* Itautec USB Sync */ | 
|  | 522 | { USB_DEVICE(0x3340, 0x0F3A) }, /* Generic SmartPhone USB Sync */ | 
|  | 523 | { USB_DEVICE(0x3340, 0x1326) }, /* Itautec USB Sync */ | 
|  | 524 | { USB_DEVICE(0x3340, 0x191C) }, /* YAKUMO USB Sync */ | 
|  | 525 | { USB_DEVICE(0x3340, 0x2326) }, /* Vobis USB Sync */ | 
|  | 526 | { USB_DEVICE(0x3340, 0x3326) }, /* MEDION Winodws Moble USB Sync */ | 
|  | 527 | { USB_DEVICE(0x3708, 0x20CE) }, /* Legend USB Sync */ | 
|  | 528 | { USB_DEVICE(0x3708, 0x21CE) }, /* Lenovo USB Sync */ | 
|  | 529 | { USB_DEVICE(0x4113, 0x0210) }, /* Mobile Media Technology USB Sync */ | 
|  | 530 | { USB_DEVICE(0x4113, 0x0211) }, /* Mobile Media Technology USB Sync */ | 
|  | 531 | { USB_DEVICE(0x4113, 0x0400) }, /* Mobile Media Technology USB Sync */ | 
|  | 532 | { USB_DEVICE(0x4113, 0x0410) }, /* Mobile Media Technology USB Sync */ | 
|  | 533 | { USB_DEVICE(0x413C, 0x4001) }, /* Dell Axim USB Sync */ | 
|  | 534 | { USB_DEVICE(0x413C, 0x4002) }, /* Dell Axim USB Sync */ | 
|  | 535 | { USB_DEVICE(0x413C, 0x4003) }, /* Dell Axim USB Sync */ | 
|  | 536 | { USB_DEVICE(0x413C, 0x4004) }, /* Dell Axim USB Sync */ | 
|  | 537 | { USB_DEVICE(0x413C, 0x4005) }, /* Dell Axim USB Sync */ | 
|  | 538 | { USB_DEVICE(0x413C, 0x4006) }, /* Dell Axim USB Sync */ | 
|  | 539 | { USB_DEVICE(0x413C, 0x4007) }, /* Dell Axim USB Sync */ | 
|  | 540 | { USB_DEVICE(0x413C, 0x4008) }, /* Dell Axim USB Sync */ | 
|  | 541 | { USB_DEVICE(0x413C, 0x4009) }, /* Dell Axim USB Sync */ | 
|  | 542 | { USB_DEVICE(0x4505, 0x0010) }, /* Smartphone */ | 
|  | 543 | { USB_DEVICE(0x5E04, 0xCE00) }, /* SAGEM Wireless Assistant */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | { }                             /* Terminating entry */ | 
|  | 545 | }; | 
|  | 546 |  | 
|  | 547 | MODULE_DEVICE_TABLE (usb, ipaq_id_table); | 
|  | 548 |  | 
|  | 549 | static struct usb_driver ipaq_driver = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | .name =		"ipaq", | 
|  | 551 | .probe =	usb_serial_probe, | 
|  | 552 | .disconnect =	usb_serial_disconnect, | 
|  | 553 | .id_table =	ipaq_id_table, | 
| Greg Kroah-Hartman | ba9dc65 | 2005-11-16 13:41:28 -0800 | [diff] [blame] | 554 | .no_dynamic_id = 	1, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | }; | 
|  | 556 |  | 
|  | 557 |  | 
|  | 558 | /* All of the device info needed for the Compaq iPAQ */ | 
| Greg Kroah-Hartman | ea65370 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 559 | static struct usb_serial_driver ipaq_device = { | 
| Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 560 | .driver = { | 
|  | 561 | .owner =	THIS_MODULE, | 
| Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 562 | .name =		"ipaq", | 
| Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 563 | }, | 
| Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 564 | .description =		"PocketPC PDA", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | .id_table =		ipaq_id_table, | 
|  | 566 | .num_interrupt_in =	NUM_DONT_CARE, | 
|  | 567 | .num_bulk_in =		1, | 
|  | 568 | .num_bulk_out =		1, | 
|  | 569 | .num_ports =		1, | 
|  | 570 | .open =			ipaq_open, | 
|  | 571 | .close =		ipaq_close, | 
|  | 572 | .attach =		ipaq_startup, | 
|  | 573 | .shutdown =		ipaq_shutdown, | 
|  | 574 | .write =		ipaq_write, | 
|  | 575 | .write_room =		ipaq_write_room, | 
|  | 576 | .chars_in_buffer =	ipaq_chars_in_buffer, | 
|  | 577 | .read_bulk_callback =	ipaq_read_bulk_callback, | 
|  | 578 | .write_bulk_callback =	ipaq_write_bulk_callback, | 
|  | 579 | }; | 
|  | 580 |  | 
|  | 581 | static spinlock_t	write_list_lock; | 
|  | 582 | static int		bytes_in; | 
|  | 583 | static int		bytes_out; | 
|  | 584 |  | 
|  | 585 | static int ipaq_open(struct usb_serial_port *port, struct file *filp) | 
|  | 586 | { | 
|  | 587 | struct usb_serial	*serial = port->serial; | 
|  | 588 | struct ipaq_private	*priv; | 
|  | 589 | struct ipaq_packet	*pkt; | 
|  | 590 | int			i, result = 0; | 
| Frank Gevaerts | b33488e | 2006-06-30 02:34:45 -0700 | [diff] [blame] | 591 | int			retries = connect_retries; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 |  | 
|  | 593 | dbg("%s - port %d", __FUNCTION__, port->number); | 
|  | 594 |  | 
|  | 595 | bytes_in = 0; | 
|  | 596 | bytes_out = 0; | 
|  | 597 | priv = (struct ipaq_private *)kmalloc(sizeof(struct ipaq_private), GFP_KERNEL); | 
|  | 598 | if (priv == NULL) { | 
|  | 599 | err("%s - Out of memory", __FUNCTION__); | 
|  | 600 | return -ENOMEM; | 
|  | 601 | } | 
|  | 602 | usb_set_serial_port_data(port, priv); | 
|  | 603 | priv->active = 0; | 
|  | 604 | priv->queue_len = 0; | 
|  | 605 | priv->free_len = 0; | 
|  | 606 | INIT_LIST_HEAD(&priv->queue); | 
|  | 607 | INIT_LIST_HEAD(&priv->freelist); | 
|  | 608 |  | 
|  | 609 | for (i = 0; i < URBDATA_QUEUE_MAX / PACKET_SIZE; i++) { | 
|  | 610 | pkt = kmalloc(sizeof(struct ipaq_packet), GFP_KERNEL); | 
|  | 611 | if (pkt == NULL) { | 
|  | 612 | goto enomem; | 
|  | 613 | } | 
|  | 614 | pkt->data = kmalloc(PACKET_SIZE, GFP_KERNEL); | 
|  | 615 | if (pkt->data == NULL) { | 
|  | 616 | kfree(pkt); | 
|  | 617 | goto enomem; | 
|  | 618 | } | 
|  | 619 | pkt->len = 0; | 
|  | 620 | pkt->written = 0; | 
|  | 621 | INIT_LIST_HEAD(&pkt->list); | 
|  | 622 | list_add(&pkt->list, &priv->freelist); | 
|  | 623 | priv->free_len += PACKET_SIZE; | 
|  | 624 | } | 
|  | 625 |  | 
|  | 626 | /* | 
|  | 627 | * Force low latency on. This will immediately push data to the line | 
|  | 628 | * discipline instead of queueing. | 
|  | 629 | */ | 
|  | 630 |  | 
|  | 631 | port->tty->low_latency = 1; | 
|  | 632 | port->tty->raw = 1; | 
|  | 633 | port->tty->real_raw = 1; | 
|  | 634 |  | 
|  | 635 | /* | 
|  | 636 | * Lose the small buffers usbserial provides. Make larger ones. | 
|  | 637 | */ | 
|  | 638 |  | 
|  | 639 | kfree(port->bulk_in_buffer); | 
|  | 640 | kfree(port->bulk_out_buffer); | 
|  | 641 | port->bulk_in_buffer = kmalloc(URBDATA_SIZE, GFP_KERNEL); | 
|  | 642 | if (port->bulk_in_buffer == NULL) { | 
|  | 643 | goto enomem; | 
|  | 644 | } | 
|  | 645 | port->bulk_out_buffer = kmalloc(URBDATA_SIZE, GFP_KERNEL); | 
|  | 646 | if (port->bulk_out_buffer == NULL) { | 
|  | 647 | kfree(port->bulk_in_buffer); | 
|  | 648 | goto enomem; | 
|  | 649 | } | 
|  | 650 | port->read_urb->transfer_buffer = port->bulk_in_buffer; | 
|  | 651 | port->write_urb->transfer_buffer = port->bulk_out_buffer; | 
|  | 652 | port->read_urb->transfer_buffer_length = URBDATA_SIZE; | 
|  | 653 | port->bulk_out_size = port->write_urb->transfer_buffer_length = URBDATA_SIZE; | 
|  | 654 |  | 
| Frank Gevaerts | b33488e | 2006-06-30 02:34:45 -0700 | [diff] [blame] | 655 | msleep(1000*initial_wait); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 |  | 
|  | 657 | /* | 
|  | 658 | * Send out control message observed in win98 sniffs. Not sure what | 
|  | 659 | * it does, but from empirical observations, it seems that the device | 
|  | 660 | * will start the chat sequence once one of these messages gets | 
|  | 661 | * through. Since this has a reasonably high failure rate, we retry | 
|  | 662 | * several times. | 
|  | 663 | */ | 
|  | 664 |  | 
|  | 665 | while (retries--) { | 
|  | 666 | result = usb_control_msg(serial->dev, | 
|  | 667 | usb_sndctrlpipe(serial->dev, 0), 0x22, 0x21, | 
|  | 668 | 0x1, 0, NULL, 0, 100); | 
| Luiz Fernando N. Capitulino | 014aa2a | 2006-07-27 10:30:43 -0300 | [diff] [blame] | 669 | if (!result) | 
|  | 670 | break; | 
|  | 671 |  | 
| Frank Gevaerts | b33488e | 2006-06-30 02:34:45 -0700 | [diff] [blame] | 672 | msleep(1000); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | } | 
| Luiz Fernando N. Capitulino | 014aa2a | 2006-07-27 10:30:43 -0300 | [diff] [blame] | 674 |  | 
|  | 675 | if (!retries && result) { | 
|  | 676 | err("%s - failed doing control urb, error %d", __FUNCTION__, | 
|  | 677 | result); | 
|  | 678 | goto error; | 
|  | 679 | } | 
|  | 680 |  | 
|  | 681 | /* Start reading from the device */ | 
|  | 682 | usb_fill_bulk_urb(port->read_urb, serial->dev, | 
|  | 683 | usb_rcvbulkpipe(serial->dev, port->bulk_in_endpointAddress), | 
|  | 684 | port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length, | 
|  | 685 | ipaq_read_bulk_callback, port); | 
|  | 686 |  | 
|  | 687 | result = usb_submit_urb(port->read_urb, GFP_KERNEL); | 
|  | 688 | if (result) { | 
|  | 689 | err("%s - failed submitting read urb, error %d", __FUNCTION__, result); | 
|  | 690 | goto error; | 
|  | 691 | } | 
|  | 692 |  | 
|  | 693 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 |  | 
|  | 695 | enomem: | 
|  | 696 | result = -ENOMEM; | 
|  | 697 | err("%s - Out of memory", __FUNCTION__); | 
|  | 698 | error: | 
|  | 699 | ipaq_destroy_lists(port); | 
|  | 700 | kfree(priv); | 
|  | 701 | return result; | 
|  | 702 | } | 
|  | 703 |  | 
|  | 704 |  | 
|  | 705 | static void ipaq_close(struct usb_serial_port *port, struct file *filp) | 
|  | 706 | { | 
|  | 707 | struct ipaq_private	*priv = usb_get_serial_port_data(port); | 
|  | 708 |  | 
|  | 709 | dbg("%s - port %d", __FUNCTION__, port->number); | 
|  | 710 |  | 
|  | 711 | /* | 
|  | 712 | * shut down bulk read and write | 
|  | 713 | */ | 
|  | 714 | usb_kill_urb(port->write_urb); | 
|  | 715 | usb_kill_urb(port->read_urb); | 
|  | 716 | ipaq_destroy_lists(port); | 
|  | 717 | kfree(priv); | 
|  | 718 | usb_set_serial_port_data(port, NULL); | 
|  | 719 |  | 
|  | 720 | /* Uncomment the following line if you want to see some statistics in your syslog */ | 
|  | 721 | /* info ("Bytes In = %d  Bytes Out = %d", bytes_in, bytes_out); */ | 
|  | 722 | } | 
|  | 723 |  | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 724 | static void ipaq_read_bulk_callback(struct urb *urb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | { | 
|  | 726 | struct usb_serial_port	*port = (struct usb_serial_port *)urb->context; | 
|  | 727 | struct tty_struct	*tty; | 
|  | 728 | unsigned char		*data = urb->transfer_buffer; | 
| Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 729 | int			result; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 |  | 
|  | 731 | dbg("%s - port %d", __FUNCTION__, port->number); | 
|  | 732 |  | 
|  | 733 | if (urb->status) { | 
|  | 734 | dbg("%s - nonzero read bulk status received: %d", __FUNCTION__, urb->status); | 
|  | 735 | return; | 
|  | 736 | } | 
|  | 737 |  | 
|  | 738 | usb_serial_debug_data(debug, &port->dev, __FUNCTION__, urb->actual_length, data); | 
|  | 739 |  | 
|  | 740 | tty = port->tty; | 
|  | 741 | if (tty && urb->actual_length) { | 
| Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 742 | tty_buffer_request_room(tty, urb->actual_length); | 
|  | 743 | tty_insert_flip_string(tty, data, urb->actual_length); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | tty_flip_buffer_push(tty); | 
|  | 745 | bytes_in += urb->actual_length; | 
|  | 746 | } | 
|  | 747 |  | 
|  | 748 | /* Continue trying to always read  */ | 
|  | 749 | usb_fill_bulk_urb(port->read_urb, port->serial->dev, | 
|  | 750 | usb_rcvbulkpipe(port->serial->dev, port->bulk_in_endpointAddress), | 
|  | 751 | port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length, | 
|  | 752 | ipaq_read_bulk_callback, port); | 
|  | 753 | result = usb_submit_urb(port->read_urb, GFP_ATOMIC); | 
|  | 754 | if (result) | 
|  | 755 | err("%s - failed resubmitting read urb, error %d", __FUNCTION__, result); | 
|  | 756 | return; | 
|  | 757 | } | 
|  | 758 |  | 
|  | 759 | static int ipaq_write(struct usb_serial_port *port, const unsigned char *buf, | 
|  | 760 | int count) | 
|  | 761 | { | 
|  | 762 | const unsigned char	*current_position = buf; | 
|  | 763 | int			bytes_sent = 0; | 
|  | 764 | int			transfer_size; | 
|  | 765 |  | 
|  | 766 | dbg("%s - port %d", __FUNCTION__, port->number); | 
|  | 767 |  | 
|  | 768 | while (count > 0) { | 
|  | 769 | transfer_size = min(count, PACKET_SIZE); | 
|  | 770 | if (ipaq_write_bulk(port, current_position, transfer_size)) { | 
|  | 771 | break; | 
|  | 772 | } | 
|  | 773 | current_position += transfer_size; | 
|  | 774 | bytes_sent += transfer_size; | 
|  | 775 | count -= transfer_size; | 
|  | 776 | bytes_out += transfer_size; | 
|  | 777 | } | 
|  | 778 |  | 
|  | 779 | return bytes_sent; | 
|  | 780 | } | 
|  | 781 |  | 
|  | 782 | static int ipaq_write_bulk(struct usb_serial_port *port, const unsigned char *buf, | 
|  | 783 | int count) | 
|  | 784 | { | 
|  | 785 | struct ipaq_private	*priv = usb_get_serial_port_data(port); | 
|  | 786 | struct ipaq_packet	*pkt = NULL; | 
|  | 787 | int			result = 0; | 
|  | 788 | unsigned long		flags; | 
|  | 789 |  | 
|  | 790 | if (priv->free_len <= 0) { | 
|  | 791 | dbg("%s - we're stuffed", __FUNCTION__); | 
|  | 792 | return -EAGAIN; | 
|  | 793 | } | 
|  | 794 |  | 
|  | 795 | spin_lock_irqsave(&write_list_lock, flags); | 
|  | 796 | if (!list_empty(&priv->freelist)) { | 
|  | 797 | pkt = list_entry(priv->freelist.next, struct ipaq_packet, list); | 
|  | 798 | list_del(&pkt->list); | 
|  | 799 | priv->free_len -= PACKET_SIZE; | 
|  | 800 | } | 
|  | 801 | spin_unlock_irqrestore(&write_list_lock, flags); | 
|  | 802 | if (pkt == NULL) { | 
|  | 803 | dbg("%s - we're stuffed", __FUNCTION__); | 
|  | 804 | return -EAGAIN; | 
|  | 805 | } | 
|  | 806 |  | 
|  | 807 | memcpy(pkt->data, buf, count); | 
|  | 808 | usb_serial_debug_data(debug, &port->dev, __FUNCTION__, count, pkt->data); | 
|  | 809 |  | 
|  | 810 | pkt->len = count; | 
|  | 811 | pkt->written = 0; | 
|  | 812 | spin_lock_irqsave(&write_list_lock, flags); | 
|  | 813 | list_add_tail(&pkt->list, &priv->queue); | 
|  | 814 | priv->queue_len += count; | 
|  | 815 | if (priv->active == 0) { | 
|  | 816 | priv->active = 1; | 
|  | 817 | ipaq_write_gather(port); | 
|  | 818 | spin_unlock_irqrestore(&write_list_lock, flags); | 
|  | 819 | result = usb_submit_urb(port->write_urb, GFP_ATOMIC); | 
|  | 820 | if (result) { | 
|  | 821 | err("%s - failed submitting write urb, error %d", __FUNCTION__, result); | 
|  | 822 | } | 
|  | 823 | } else { | 
|  | 824 | spin_unlock_irqrestore(&write_list_lock, flags); | 
|  | 825 | } | 
|  | 826 | return result; | 
|  | 827 | } | 
|  | 828 |  | 
|  | 829 | static void ipaq_write_gather(struct usb_serial_port *port) | 
|  | 830 | { | 
|  | 831 | struct ipaq_private	*priv = usb_get_serial_port_data(port); | 
|  | 832 | struct usb_serial	*serial = port->serial; | 
|  | 833 | int			count, room; | 
|  | 834 | struct ipaq_packet	*pkt, *tmp; | 
|  | 835 | struct urb		*urb = port->write_urb; | 
|  | 836 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | room = URBDATA_SIZE; | 
|  | 838 | list_for_each_entry_safe(pkt, tmp, &priv->queue, list) { | 
|  | 839 | count = min(room, (int)(pkt->len - pkt->written)); | 
|  | 840 | memcpy(urb->transfer_buffer + (URBDATA_SIZE - room), | 
|  | 841 | pkt->data + pkt->written, count); | 
|  | 842 | room -= count; | 
|  | 843 | pkt->written += count; | 
|  | 844 | priv->queue_len -= count; | 
|  | 845 | if (pkt->written == pkt->len) { | 
|  | 846 | list_move(&pkt->list, &priv->freelist); | 
|  | 847 | priv->free_len += PACKET_SIZE; | 
|  | 848 | } | 
|  | 849 | if (room == 0) { | 
|  | 850 | break; | 
|  | 851 | } | 
|  | 852 | } | 
|  | 853 |  | 
|  | 854 | count = URBDATA_SIZE - room; | 
|  | 855 | usb_fill_bulk_urb(port->write_urb, serial->dev, | 
|  | 856 | usb_sndbulkpipe(serial->dev, port->bulk_out_endpointAddress), | 
|  | 857 | port->write_urb->transfer_buffer, count, ipaq_write_bulk_callback, | 
|  | 858 | port); | 
|  | 859 | return; | 
|  | 860 | } | 
|  | 861 |  | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 862 | static void ipaq_write_bulk_callback(struct urb *urb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | { | 
|  | 864 | struct usb_serial_port	*port = (struct usb_serial_port *)urb->context; | 
|  | 865 | struct ipaq_private	*priv = usb_get_serial_port_data(port); | 
|  | 866 | unsigned long		flags; | 
|  | 867 | int			result; | 
|  | 868 |  | 
|  | 869 | dbg("%s - port %d", __FUNCTION__, port->number); | 
|  | 870 |  | 
|  | 871 | if (urb->status) { | 
|  | 872 | dbg("%s - nonzero write bulk status received: %d", __FUNCTION__, urb->status); | 
| Frank Gevaerts | b512504 | 2006-06-30 02:34:44 -0700 | [diff] [blame] | 873 | return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | } | 
|  | 875 |  | 
|  | 876 | spin_lock_irqsave(&write_list_lock, flags); | 
|  | 877 | if (!list_empty(&priv->queue)) { | 
|  | 878 | ipaq_write_gather(port); | 
|  | 879 | spin_unlock_irqrestore(&write_list_lock, flags); | 
|  | 880 | result = usb_submit_urb(port->write_urb, GFP_ATOMIC); | 
|  | 881 | if (result) { | 
|  | 882 | err("%s - failed submitting write urb, error %d", __FUNCTION__, result); | 
|  | 883 | } | 
|  | 884 | } else { | 
|  | 885 | priv->active = 0; | 
|  | 886 | spin_unlock_irqrestore(&write_list_lock, flags); | 
|  | 887 | } | 
|  | 888 |  | 
| Pete Zaitcev | cf2c748 | 2006-05-22 21:58:49 -0700 | [diff] [blame] | 889 | usb_serial_port_softint(port); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | } | 
|  | 891 |  | 
|  | 892 | static int ipaq_write_room(struct usb_serial_port *port) | 
|  | 893 | { | 
|  | 894 | struct ipaq_private	*priv = usb_get_serial_port_data(port); | 
|  | 895 |  | 
|  | 896 | dbg("%s - freelen %d", __FUNCTION__, priv->free_len); | 
|  | 897 | return priv->free_len; | 
|  | 898 | } | 
|  | 899 |  | 
|  | 900 | static int ipaq_chars_in_buffer(struct usb_serial_port *port) | 
|  | 901 | { | 
|  | 902 | struct ipaq_private	*priv = usb_get_serial_port_data(port); | 
|  | 903 |  | 
|  | 904 | dbg("%s - queuelen %d", __FUNCTION__, priv->queue_len); | 
|  | 905 | return priv->queue_len; | 
|  | 906 | } | 
|  | 907 |  | 
|  | 908 | static void ipaq_destroy_lists(struct usb_serial_port *port) | 
|  | 909 | { | 
|  | 910 | struct ipaq_private	*priv = usb_get_serial_port_data(port); | 
|  | 911 | struct ipaq_packet	*pkt, *tmp; | 
|  | 912 |  | 
|  | 913 | list_for_each_entry_safe(pkt, tmp, &priv->queue, list) { | 
|  | 914 | kfree(pkt->data); | 
|  | 915 | kfree(pkt); | 
|  | 916 | } | 
|  | 917 | list_for_each_entry_safe(pkt, tmp, &priv->freelist, list) { | 
|  | 918 | kfree(pkt->data); | 
|  | 919 | kfree(pkt); | 
|  | 920 | } | 
|  | 921 | } | 
|  | 922 |  | 
|  | 923 |  | 
|  | 924 | static int ipaq_startup(struct usb_serial *serial) | 
|  | 925 | { | 
|  | 926 | dbg("%s", __FUNCTION__); | 
|  | 927 | if (serial->dev->actconfig->desc.bConfigurationValue != 1) { | 
|  | 928 | err("active config #%d != 1 ??", | 
|  | 929 | serial->dev->actconfig->desc.bConfigurationValue); | 
|  | 930 | return -ENODEV; | 
|  | 931 | } | 
|  | 932 | return usb_reset_configuration (serial->dev); | 
|  | 933 | } | 
|  | 934 |  | 
|  | 935 | static void ipaq_shutdown(struct usb_serial *serial) | 
|  | 936 | { | 
|  | 937 | dbg("%s", __FUNCTION__); | 
|  | 938 | } | 
|  | 939 |  | 
|  | 940 | static int __init ipaq_init(void) | 
|  | 941 | { | 
|  | 942 | int retval; | 
|  | 943 | spin_lock_init(&write_list_lock); | 
|  | 944 | retval = usb_serial_register(&ipaq_device); | 
|  | 945 | if (retval) | 
|  | 946 | goto failed_usb_serial_register; | 
|  | 947 | info(DRIVER_DESC " " DRIVER_VERSION); | 
|  | 948 | if (vendor) { | 
|  | 949 | ipaq_id_table[0].idVendor = vendor; | 
|  | 950 | ipaq_id_table[0].idProduct = product; | 
|  | 951 | } | 
|  | 952 | retval = usb_register(&ipaq_driver); | 
|  | 953 | if (retval) | 
|  | 954 | goto failed_usb_register; | 
|  | 955 |  | 
|  | 956 | return 0; | 
|  | 957 | failed_usb_register: | 
|  | 958 | usb_serial_deregister(&ipaq_device); | 
|  | 959 | failed_usb_serial_register: | 
|  | 960 | return retval; | 
|  | 961 | } | 
|  | 962 |  | 
|  | 963 |  | 
|  | 964 | static void __exit ipaq_exit(void) | 
|  | 965 | { | 
|  | 966 | usb_deregister(&ipaq_driver); | 
|  | 967 | usb_serial_deregister(&ipaq_device); | 
|  | 968 | } | 
|  | 969 |  | 
|  | 970 |  | 
|  | 971 | module_init(ipaq_init); | 
|  | 972 | module_exit(ipaq_exit); | 
|  | 973 |  | 
|  | 974 | MODULE_AUTHOR( DRIVER_AUTHOR ); | 
|  | 975 | MODULE_DESCRIPTION( DRIVER_DESC ); | 
|  | 976 | MODULE_LICENSE("GPL"); | 
|  | 977 |  | 
|  | 978 | module_param(debug, bool, S_IRUGO | S_IWUSR); | 
|  | 979 | MODULE_PARM_DESC(debug, "Debug enabled or not"); | 
|  | 980 |  | 
|  | 981 | module_param(vendor, ushort, 0); | 
|  | 982 | MODULE_PARM_DESC(vendor, "User specified USB idVendor"); | 
|  | 983 |  | 
|  | 984 | module_param(product, ushort, 0); | 
|  | 985 | MODULE_PARM_DESC(product, "User specified USB idProduct"); | 
| Frank Gevaerts | b33488e | 2006-06-30 02:34:45 -0700 | [diff] [blame] | 986 |  | 
|  | 987 | module_param(connect_retries, int, S_IRUGO|S_IWUSR); | 
|  | 988 | MODULE_PARM_DESC(connect_retries, "Maximum number of connect retries (one second each)"); | 
|  | 989 |  | 
|  | 990 | module_param(initial_wait, int, S_IRUGO|S_IWUSR); | 
|  | 991 | MODULE_PARM_DESC(initial_wait, "Time to wait before attempting a connection (in seconds)"); |