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