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 */
23 MODULE_DEVICE_TABLE(usb
, id_table
);
25 #define URB_TRANSFER_BUFFER_SIZE 4096
26 #define NUM_READ_URBS 4
27 #define NUM_WRITE_URBS 4
28 #define NUM_BULK_EPS 3
29 #define MAX_BULK_EPS 6
31 /* if overridden by the user, then use their value for the size of the
32 * read and write urbs, and the number of endpoints */
33 static int buffer_size
= URB_TRANSFER_BUFFER_SIZE
;
34 static int endpoints
= NUM_BULK_EPS
;
36 struct airprime_private
{
40 struct urb
*read_urbp
[NUM_READ_URBS
];
42 /* Settings for the port */
43 int rts_state
; /* Handshaking pins (outputs) */
45 int cts_state
; /* Handshaking pins (inputs) */
51 static int airprime_send_setup(struct usb_serial_port
*port
)
53 struct usb_serial
*serial
= port
->serial
;
54 struct airprime_private
*priv
;
56 dbg("%s", __FUNCTION__
);
58 if (port
->number
!= 0)
61 priv
= usb_get_serial_port_data(port
);
70 return usb_control_msg(serial
->dev
,
71 usb_rcvctrlpipe(serial
->dev
, 0),
72 0x22,0x21,val
,0,NULL
,0,USB_CTRL_SET_TIMEOUT
);
78 static void airprime_read_bulk_callback(struct urb
*urb
)
80 struct usb_serial_port
*port
= urb
->context
;
81 unsigned char *data
= urb
->transfer_buffer
;
82 struct tty_struct
*tty
;
84 int status
= urb
->status
;
86 dbg("%s - port %d", __FUNCTION__
, port
->number
);
89 dbg("%s - nonzero read bulk status received: %d",
90 __FUNCTION__
, status
);
93 usb_serial_debug_data(debug
, &port
->dev
, __FUNCTION__
, urb
->actual_length
, data
);
96 if (tty
&& urb
->actual_length
) {
97 tty_insert_flip_string (tty
, data
, urb
->actual_length
);
98 tty_flip_buffer_push (tty
);
101 result
= usb_submit_urb (urb
, GFP_ATOMIC
);
103 dev_err(&port
->dev
, "%s - failed resubmitting read urb, error %d\n",
104 __FUNCTION__
, result
);
108 static void airprime_write_bulk_callback(struct urb
*urb
)
110 struct usb_serial_port
*port
= urb
->context
;
111 struct airprime_private
*priv
= usb_get_serial_port_data(port
);
112 int status
= urb
->status
;
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
);
121 dbg("%s - nonzero write bulk status received: %d",
122 __FUNCTION__
, 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
;
139 dbg("%s - port %d", __FUNCTION__
, port
->number
);
141 /* initialize our private data structure if it isn't already created */
143 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
148 spin_lock_init(&priv
->lock
);
149 usb_set_serial_port_data(port
, priv
);
152 /* Set some sane defaults */
156 for (i
= 0; i
< NUM_READ_URBS
; ++i
) {
157 buffer
= kmalloc(buffer_size
, GFP_KERNEL
);
159 dev_err(&port
->dev
, "%s - out of memory.\n",
164 urb
= usb_alloc_urb(0, GFP_KERNEL
);
167 dev_err(&port
->dev
, "%s - no more urbs?\n",
172 usb_fill_bulk_urb(urb
, serial
->dev
,
173 usb_rcvbulkpipe(serial
->dev
,
174 port
->bulk_out_endpointAddress
),
176 airprime_read_bulk_callback
, port
);
177 result
= usb_submit_urb(urb
, GFP_KERNEL
);
182 "%s - failed submitting read urb %d for port %d, error %d\n",
183 __FUNCTION__
, i
, port
->number
, result
);
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
);
195 /* some error happened, cancel any submitted urbs and clean up anything that
196 got allocated successfully */
199 urb
= priv
->read_urbp
[i
];
200 buffer
= urb
->transfer_buffer
;
210 static void airprime_close(struct usb_serial_port
*port
, struct file
* filp
)
212 struct airprime_private
*priv
= usb_get_serial_port_data(port
);
215 dbg("%s - port %d", __FUNCTION__
, port
->number
);
220 mutex_lock(&port
->serial
->disc_mutex
);
221 if (!port
->serial
->disconnected
)
222 airprime_send_setup(port
);
223 mutex_lock(&port
->serial
->disc_mutex
);
225 for (i
= 0; i
< NUM_READ_URBS
; ++i
) {
226 usb_kill_urb (priv
->read_urbp
[i
]);
227 kfree (priv
->read_urbp
[i
]->transfer_buffer
);
228 usb_free_urb (priv
->read_urbp
[i
]);
231 /* free up private structure */
233 usb_set_serial_port_data(port
, NULL
);
236 static int airprime_write(struct usb_serial_port
*port
,
237 const unsigned char *buf
, int count
)
239 struct airprime_private
*priv
= usb_get_serial_port_data(port
);
240 struct usb_serial
*serial
= port
->serial
;
242 unsigned char *buffer
;
245 dbg("%s - port %d", __FUNCTION__
, port
->number
);
247 spin_lock_irqsave(&priv
->lock
, flags
);
248 if (priv
->outstanding_urbs
> NUM_WRITE_URBS
) {
249 spin_unlock_irqrestore(&priv
->lock
, flags
);
250 dbg("%s - write limit hit\n", __FUNCTION__
);
253 spin_unlock_irqrestore(&priv
->lock
, flags
);
254 buffer
= kmalloc(count
, GFP_ATOMIC
);
256 dev_err(&port
->dev
, "out of memory\n");
259 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
261 dev_err(&port
->dev
, "no more free urbs\n");
265 memcpy (buffer
, buf
, count
);
267 usb_serial_debug_data(debug
, &port
->dev
, __FUNCTION__
, count
, buffer
);
269 usb_fill_bulk_urb(urb
, serial
->dev
,
270 usb_sndbulkpipe(serial
->dev
,
271 port
->bulk_out_endpointAddress
),
273 airprime_write_bulk_callback
, port
);
275 /* send it down the pipe */
276 status
= usb_submit_urb(urb
, GFP_ATOMIC
);
279 "%s - usb_submit_urb(write bulk) failed with status = %d\n",
280 __FUNCTION__
, status
);
284 spin_lock_irqsave(&priv
->lock
, flags
);
285 ++priv
->outstanding_urbs
;
286 spin_unlock_irqrestore(&priv
->lock
, flags
);
288 /* we are done with this urb, so let the host driver
289 * really free it when it is finished with it */
294 static struct usb_driver airprime_driver
= {
296 .probe
= usb_serial_probe
,
297 .disconnect
= usb_serial_disconnect
,
298 .id_table
= id_table
,
302 static struct usb_serial_driver airprime_device
= {
304 .owner
= THIS_MODULE
,
307 .usb_driver
= &airprime_driver
,
308 .id_table
= id_table
,
309 .num_interrupt_in
= NUM_DONT_CARE
,
310 .num_bulk_in
= NUM_DONT_CARE
,
311 .num_bulk_out
= NUM_DONT_CARE
,
312 .open
= airprime_open
,
313 .close
= airprime_close
,
314 .write
= airprime_write
,
317 static int __init
airprime_init(void)
321 airprime_device
.num_ports
=
322 (endpoints
> 0 && endpoints
<= MAX_BULK_EPS
) ? endpoints
: NUM_BULK_EPS
;
323 retval
= usb_serial_register(&airprime_device
);
326 retval
= usb_register(&airprime_driver
);
328 usb_serial_deregister(&airprime_device
);
332 static void __exit
airprime_exit(void)
334 dbg("%s", __FUNCTION__
);
336 usb_deregister(&airprime_driver
);
337 usb_serial_deregister(&airprime_device
);
340 module_init(airprime_init
);
341 module_exit(airprime_exit
);
342 MODULE_LICENSE("GPL");
344 module_param(debug
, bool, S_IRUGO
| S_IWUSR
);
345 MODULE_PARM_DESC(debug
, "Debug enabled");
346 module_param(buffer_size
, int, 0);
347 MODULE_PARM_DESC(buffer_size
, "Size of the transfer buffers in bytes (default 4096)");
348 module_param(endpoints
, int, 0);
349 MODULE_PARM_DESC(endpoints
, "Number of bulk EPs to configure (default 3)");