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.
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, 0x1110) }, /* Novatel Wireless Merlin CDMA */
22 { USB_DEVICE(0x1410, 0x1130) }, /* Novatel Wireless S720 CDMA/EV-DO */
23 { USB_DEVICE(0x1410, 0x2110) }, /* Novatel Wireless U720 CDMA/EV-DO */
24 { USB_DEVICE(0x1410, 0x1430) }, /* Novatel Merlin XU870 HSDPA/3G */
25 { USB_DEVICE(0x1410, 0x1100) }, /* ExpressCard34 Qualcomm 3G CDMA */
26 { USB_DEVICE(0x413c, 0x8115) }, /* Dell Wireless HSDPA 5500 */
29 MODULE_DEVICE_TABLE(usb, id_table);
31 #define URB_TRANSFER_BUFFER_SIZE 4096
32 #define NUM_READ_URBS 4
33 #define NUM_WRITE_URBS 4
34 #define NUM_BULK_EPS 3
35 #define MAX_BULK_EPS 6
37 /* if overridden by the user, then use their value for the size of the
38 * read and write urbs, and the number of endpoints */
39 static int buffer_size = URB_TRANSFER_BUFFER_SIZE;
40 static int endpoints = NUM_BULK_EPS;
42 struct airprime_private {
46 struct urb *read_urbp[NUM_READ_URBS];
49 static void airprime_read_bulk_callback(struct urb *urb)
51 struct usb_serial_port *port = urb->context;
52 unsigned char *data = urb->transfer_buffer;
53 struct tty_struct *tty;
56 dbg("%s - port %d", __FUNCTION__, port->number);
59 dbg("%s - nonzero read bulk status received: %d",
60 __FUNCTION__, urb->status);
63 usb_serial_debug_data(debug, &port->dev, __FUNCTION__, urb->actual_length, data);
66 if (tty && urb->actual_length) {
67 tty_insert_flip_string (tty, data, urb->actual_length);
68 tty_flip_buffer_push (tty);
71 result = usb_submit_urb (urb, GFP_ATOMIC);
73 dev_err(&port->dev, "%s - failed resubmitting read urb, error %d\n",
74 __FUNCTION__, result);
78 static void airprime_write_bulk_callback(struct urb *urb)
80 struct usb_serial_port *port = urb->context;
81 struct airprime_private *priv = usb_get_serial_port_data(port);
84 dbg("%s - port %d", __FUNCTION__, port->number);
86 /* free up the transfer buffer, as usb_free_urb() does not do this */
87 kfree (urb->transfer_buffer);
90 dbg("%s - nonzero write bulk status received: %d",
91 __FUNCTION__, urb->status);
92 spin_lock_irqsave(&priv->lock, flags);
93 --priv->outstanding_urbs;
94 spin_unlock_irqrestore(&priv->lock, flags);
96 usb_serial_port_softint(port);
99 static int airprime_open(struct usb_serial_port *port, struct file *filp)
101 struct airprime_private *priv = usb_get_serial_port_data(port);
102 struct usb_serial *serial = port->serial;
108 dbg("%s - port %d", __FUNCTION__, port->number);
110 /* initialize our private data structure if it isn't already created */
112 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
117 spin_lock_init(&priv->lock);
118 usb_set_serial_port_data(port, priv);
121 for (i = 0; i < NUM_READ_URBS; ++i) {
122 buffer = kmalloc(buffer_size, GFP_KERNEL);
124 dev_err(&port->dev, "%s - out of memory.\n",
129 urb = usb_alloc_urb(0, GFP_KERNEL);
132 dev_err(&port->dev, "%s - no more urbs?\n",
137 usb_fill_bulk_urb(urb, serial->dev,
138 usb_rcvbulkpipe(serial->dev,
139 port->bulk_out_endpointAddress),
141 airprime_read_bulk_callback, port);
142 result = usb_submit_urb(urb, GFP_KERNEL);
147 "%s - failed submitting read urb %d for port %d, error %d\n",
148 __FUNCTION__, i, port->number, result);
151 /* remember this urb so we can kill it when the port is closed */
152 priv->read_urbp[i] = urb;
157 /* some error happened, cancel any submitted urbs and clean up anything that
158 got allocated successfully */
161 urb = priv->read_urbp[i];
162 buffer = urb->transfer_buffer;
172 static void airprime_close(struct usb_serial_port *port, struct file * filp)
174 struct airprime_private *priv = usb_get_serial_port_data(port);
177 dbg("%s - port %d", __FUNCTION__, port->number);
179 for (i = 0; i < NUM_READ_URBS; ++i) {
180 usb_kill_urb (priv->read_urbp[i]);
181 kfree (priv->read_urbp[i]->transfer_buffer);
182 usb_free_urb (priv->read_urbp[i]);
185 /* free up private structure */
187 usb_set_serial_port_data(port, NULL);
190 static int airprime_write(struct usb_serial_port *port,
191 const unsigned char *buf, int count)
193 struct airprime_private *priv = usb_get_serial_port_data(port);
194 struct usb_serial *serial = port->serial;
196 unsigned char *buffer;
199 dbg("%s - port %d", __FUNCTION__, port->number);
201 spin_lock_irqsave(&priv->lock, flags);
202 if (priv->outstanding_urbs > NUM_WRITE_URBS) {
203 spin_unlock_irqrestore(&priv->lock, flags);
204 dbg("%s - write limit hit\n", __FUNCTION__);
207 spin_unlock_irqrestore(&priv->lock, flags);
208 buffer = kmalloc(count, GFP_ATOMIC);
210 dev_err(&port->dev, "out of memory\n");
213 urb = usb_alloc_urb(0, GFP_ATOMIC);
215 dev_err(&port->dev, "no more free urbs\n");
219 memcpy (buffer, buf, count);
221 usb_serial_debug_data(debug, &port->dev, __FUNCTION__, count, buffer);
223 usb_fill_bulk_urb(urb, serial->dev,
224 usb_sndbulkpipe(serial->dev,
225 port->bulk_out_endpointAddress),
227 airprime_write_bulk_callback, port);
229 /* send it down the pipe */
230 status = usb_submit_urb(urb, GFP_ATOMIC);
233 "%s - usb_submit_urb(write bulk) failed with status = %d\n",
234 __FUNCTION__, status);
238 spin_lock_irqsave(&priv->lock, flags);
239 ++priv->outstanding_urbs;
240 spin_unlock_irqrestore(&priv->lock, flags);
242 /* we are done with this urb, so let the host driver
243 * really free it when it is finished with it */
248 static struct usb_driver airprime_driver = {
250 .probe = usb_serial_probe,
251 .disconnect = usb_serial_disconnect,
252 .id_table = id_table,
256 static struct usb_serial_driver airprime_device = {
258 .owner = THIS_MODULE,
261 .usb_driver = &airprime_driver,
262 .id_table = id_table,
263 .num_interrupt_in = NUM_DONT_CARE,
264 .num_bulk_in = NUM_DONT_CARE,
265 .num_bulk_out = NUM_DONT_CARE,
266 .open = airprime_open,
267 .close = airprime_close,
268 .write = airprime_write,
271 static int __init airprime_init(void)
275 airprime_device.num_ports =
276 (endpoints > 0 && endpoints <= MAX_BULK_EPS) ? endpoints : NUM_BULK_EPS;
277 retval = usb_serial_register(&airprime_device);
280 retval = usb_register(&airprime_driver);
282 usb_serial_deregister(&airprime_device);
286 static void __exit airprime_exit(void)
288 dbg("%s", __FUNCTION__);
290 usb_deregister(&airprime_driver);
291 usb_serial_deregister(&airprime_device);
294 module_init(airprime_init);
295 module_exit(airprime_exit);
296 MODULE_LICENSE("GPL");
298 module_param(debug, bool, S_IRUGO | S_IWUSR);
299 MODULE_PARM_DESC(debug, "Debug enabled");
300 module_param(buffer_size, int, 0);
301 MODULE_PARM_DESC(buffer_size, "Size of the transfer buffers in bytes (default 4096)");
302 module_param(endpoints, int, 0);
303 MODULE_PARM_DESC(endpoints, "Number of bulk EPs to configure (default 3)");