USB: new Novatel device ids for option driver
[linux-2.6/mini2440.git] / drivers / usb / serial / airprime.c
blob7538c64a5097ea8be63fc0d7a5fdec1d912fb593
1 /*
2 * AirPrime CDMA Wireless Serial USB driver
4 * Copyright (C) 2005-2006 Greg Kroah-Hartman <gregkh@suse.de>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.
9 */
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/tty.h>
14 #include <linux/tty_flip.h>
15 #include <linux/module.h>
16 #include <linux/usb.h>
17 #include <linux/usb/serial.h>
19 static struct usb_device_id id_table [] = {
20 { USB_DEVICE(0x0c88, 0x17da) }, /* Kyocera Wireless KPC650/Passport */
21 { USB_DEVICE(0x1410, 0x1100) }, /* ExpressCard34 Qualcomm 3G CDMA */
22 { USB_DEVICE(0x413c, 0x8115) }, /* Dell Wireless HSDPA 5500 */
23 { },
25 MODULE_DEVICE_TABLE(usb, id_table);
27 #define URB_TRANSFER_BUFFER_SIZE 4096
28 #define NUM_READ_URBS 4
29 #define NUM_WRITE_URBS 4
30 #define NUM_BULK_EPS 3
31 #define MAX_BULK_EPS 6
33 /* if overridden by the user, then use their value for the size of the
34 * read and write urbs, and the number of endpoints */
35 static int buffer_size = URB_TRANSFER_BUFFER_SIZE;
36 static int endpoints = NUM_BULK_EPS;
37 static int debug;
38 struct airprime_private {
39 spinlock_t lock;
40 int outstanding_urbs;
41 int throttled;
42 struct urb *read_urbp[NUM_READ_URBS];
44 /* Settings for the port */
45 int rts_state; /* Handshaking pins (outputs) */
46 int dtr_state;
47 int cts_state; /* Handshaking pins (inputs) */
48 int dsr_state;
49 int dcd_state;
50 int ri_state;
53 static int airprime_send_setup(struct usb_serial_port *port)
55 struct usb_serial *serial = port->serial;
56 struct airprime_private *priv;
58 dbg("%s", __FUNCTION__);
60 if (port->number != 0)
61 return 0;
63 priv = usb_get_serial_port_data(port);
65 if (port->tty) {
66 int val = 0;
67 if (priv->dtr_state)
68 val |= 0x01;
69 if (priv->rts_state)
70 val |= 0x02;
72 return usb_control_msg(serial->dev,
73 usb_rcvctrlpipe(serial->dev, 0),
74 0x22,0x21,val,0,NULL,0,USB_CTRL_SET_TIMEOUT);
77 return 0;
80 static void airprime_read_bulk_callback(struct urb *urb)
82 struct usb_serial_port *port = urb->context;
83 unsigned char *data = urb->transfer_buffer;
84 struct tty_struct *tty;
85 int result;
87 dbg("%s - port %d", __FUNCTION__, port->number);
89 if (urb->status) {
90 dbg("%s - nonzero read bulk status received: %d",
91 __FUNCTION__, urb->status);
92 return;
94 usb_serial_debug_data(debug, &port->dev, __FUNCTION__, urb->actual_length, data);
96 tty = port->tty;
97 if (tty && urb->actual_length) {
98 tty_insert_flip_string (tty, data, urb->actual_length);
99 tty_flip_buffer_push (tty);
102 result = usb_submit_urb (urb, GFP_ATOMIC);
103 if (result)
104 dev_err(&port->dev, "%s - failed resubmitting read urb, error %d\n",
105 __FUNCTION__, result);
106 return;
109 static void airprime_write_bulk_callback(struct urb *urb)
111 struct usb_serial_port *port = urb->context;
112 struct airprime_private *priv = usb_get_serial_port_data(port);
113 unsigned long flags;
115 dbg("%s - port %d", __FUNCTION__, port->number);
117 /* free up the transfer buffer, as usb_free_urb() does not do this */
118 kfree (urb->transfer_buffer);
120 if (urb->status)
121 dbg("%s - nonzero write bulk status received: %d",
122 __FUNCTION__, urb->status);
123 spin_lock_irqsave(&priv->lock, flags);
124 --priv->outstanding_urbs;
125 spin_unlock_irqrestore(&priv->lock, flags);
127 usb_serial_port_softint(port);
130 static int airprime_open(struct usb_serial_port *port, struct file *filp)
132 struct airprime_private *priv = usb_get_serial_port_data(port);
133 struct usb_serial *serial = port->serial;
134 struct urb *urb;
135 char *buffer = NULL;
136 int i;
137 int result = 0;
139 dbg("%s - port %d", __FUNCTION__, port->number);
141 /* initialize our private data structure if it isn't already created */
142 if (!priv) {
143 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
144 if (!priv) {
145 result = -ENOMEM;
146 goto out;
148 spin_lock_init(&priv->lock);
149 usb_set_serial_port_data(port, priv);
152 /* Set some sane defaults */
153 priv->rts_state = 1;
154 priv->dtr_state = 1;
156 for (i = 0; i < NUM_READ_URBS; ++i) {
157 buffer = kmalloc(buffer_size, GFP_KERNEL);
158 if (!buffer) {
159 dev_err(&port->dev, "%s - out of memory.\n",
160 __FUNCTION__);
161 result = -ENOMEM;
162 goto errout;
164 urb = usb_alloc_urb(0, GFP_KERNEL);
165 if (!urb) {
166 kfree(buffer);
167 dev_err(&port->dev, "%s - no more urbs?\n",
168 __FUNCTION__);
169 result = -ENOMEM;
170 goto errout;
172 usb_fill_bulk_urb(urb, serial->dev,
173 usb_rcvbulkpipe(serial->dev,
174 port->bulk_out_endpointAddress),
175 buffer, buffer_size,
176 airprime_read_bulk_callback, port);
177 result = usb_submit_urb(urb, GFP_KERNEL);
178 if (result) {
179 usb_free_urb(urb);
180 kfree(buffer);
181 dev_err(&port->dev,
182 "%s - failed submitting read urb %d for port %d, error %d\n",
183 __FUNCTION__, i, port->number, result);
184 goto errout;
186 /* remember this urb so we can kill it when the port is closed */
187 priv->read_urbp[i] = urb;
190 airprime_send_setup(port);
192 goto out;
194 errout:
195 /* some error happened, cancel any submitted urbs and clean up anything that
196 got allocated successfully */
198 while (i-- != 0) {
199 urb = priv->read_urbp[i];
200 buffer = urb->transfer_buffer;
201 usb_kill_urb (urb);
202 usb_free_urb (urb);
203 kfree (buffer);
206 out:
207 return result;
210 static void airprime_close(struct usb_serial_port *port, struct file * filp)
212 struct airprime_private *priv = usb_get_serial_port_data(port);
213 int i;
215 dbg("%s - port %d", __FUNCTION__, port->number);
217 priv->rts_state = 0;
218 priv->dtr_state = 0;
220 airprime_send_setup(port);
222 for (i = 0; i < NUM_READ_URBS; ++i) {
223 usb_kill_urb (priv->read_urbp[i]);
224 kfree (priv->read_urbp[i]->transfer_buffer);
225 usb_free_urb (priv->read_urbp[i]);
228 /* free up private structure */
229 kfree (priv);
230 usb_set_serial_port_data(port, NULL);
233 static int airprime_write(struct usb_serial_port *port,
234 const unsigned char *buf, int count)
236 struct airprime_private *priv = usb_get_serial_port_data(port);
237 struct usb_serial *serial = port->serial;
238 struct urb *urb;
239 unsigned char *buffer;
240 unsigned long flags;
241 int status;
242 dbg("%s - port %d", __FUNCTION__, port->number);
244 spin_lock_irqsave(&priv->lock, flags);
245 if (priv->outstanding_urbs > NUM_WRITE_URBS) {
246 spin_unlock_irqrestore(&priv->lock, flags);
247 dbg("%s - write limit hit\n", __FUNCTION__);
248 return 0;
250 spin_unlock_irqrestore(&priv->lock, flags);
251 buffer = kmalloc(count, GFP_ATOMIC);
252 if (!buffer) {
253 dev_err(&port->dev, "out of memory\n");
254 return -ENOMEM;
256 urb = usb_alloc_urb(0, GFP_ATOMIC);
257 if (!urb) {
258 dev_err(&port->dev, "no more free urbs\n");
259 kfree (buffer);
260 return -ENOMEM;
262 memcpy (buffer, buf, count);
264 usb_serial_debug_data(debug, &port->dev, __FUNCTION__, count, buffer);
266 usb_fill_bulk_urb(urb, serial->dev,
267 usb_sndbulkpipe(serial->dev,
268 port->bulk_out_endpointAddress),
269 buffer, count,
270 airprime_write_bulk_callback, port);
272 /* send it down the pipe */
273 status = usb_submit_urb(urb, GFP_ATOMIC);
274 if (status) {
275 dev_err(&port->dev,
276 "%s - usb_submit_urb(write bulk) failed with status = %d\n",
277 __FUNCTION__, status);
278 count = status;
279 kfree (buffer);
280 } else {
281 spin_lock_irqsave(&priv->lock, flags);
282 ++priv->outstanding_urbs;
283 spin_unlock_irqrestore(&priv->lock, flags);
285 /* we are done with this urb, so let the host driver
286 * really free it when it is finished with it */
287 usb_free_urb (urb);
288 return count;
291 static struct usb_driver airprime_driver = {
292 .name = "airprime",
293 .probe = usb_serial_probe,
294 .disconnect = usb_serial_disconnect,
295 .id_table = id_table,
296 .no_dynamic_id = 1,
299 static struct usb_serial_driver airprime_device = {
300 .driver = {
301 .owner = THIS_MODULE,
302 .name = "airprime",
304 .usb_driver = &airprime_driver,
305 .id_table = id_table,
306 .num_interrupt_in = NUM_DONT_CARE,
307 .num_bulk_in = NUM_DONT_CARE,
308 .num_bulk_out = NUM_DONT_CARE,
309 .open = airprime_open,
310 .close = airprime_close,
311 .write = airprime_write,
314 static int __init airprime_init(void)
316 int retval;
318 airprime_device.num_ports =
319 (endpoints > 0 && endpoints <= MAX_BULK_EPS) ? endpoints : NUM_BULK_EPS;
320 retval = usb_serial_register(&airprime_device);
321 if (retval)
322 return retval;
323 retval = usb_register(&airprime_driver);
324 if (retval)
325 usb_serial_deregister(&airprime_device);
326 return retval;
329 static void __exit airprime_exit(void)
331 dbg("%s", __FUNCTION__);
333 usb_deregister(&airprime_driver);
334 usb_serial_deregister(&airprime_device);
337 module_init(airprime_init);
338 module_exit(airprime_exit);
339 MODULE_LICENSE("GPL");
341 module_param(debug, bool, S_IRUGO | S_IWUSR);
342 MODULE_PARM_DESC(debug, "Debug enabled");
343 module_param(buffer_size, int, 0);
344 MODULE_PARM_DESC(buffer_size, "Size of the transfer buffers in bytes (default 4096)");
345 module_param(endpoints, int, 0);
346 MODULE_PARM_DESC(endpoints, "Number of bulk EPs to configure (default 3)");