VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / drivers / usb / serial / generic.c
1 /*
2  * USB Serial Converter Generic functions
3  *
4  * Copyright (C) 1999 - 2002 Greg Kroah-Hartman (greg@kroah.com)
5  *
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  *
10  */
11
12 #include <linux/config.h>
13 #include <linux/kernel.h>
14 #include <linux/errno.h>
15 #include <linux/slab.h>
16 #include <linux/tty.h>
17 #include <linux/tty_flip.h>
18 #include <linux/module.h>
19 #include <linux/moduleparam.h>
20 #include <linux/usb.h>
21 #include <asm/uaccess.h>
22 #include "usb-serial.h"
23
24 static int debug;
25
26 #ifdef CONFIG_USB_SERIAL_GENERIC
27 static __u16 vendor  = 0x05f9;
28 static __u16 product = 0xffff;
29
30 module_param(vendor, ushort, 0);
31 MODULE_PARM_DESC(vendor, "User specified USB idVendor");
32
33 module_param(product, ushort, 0);
34 MODULE_PARM_DESC(product, "User specified USB idProduct");
35
36 static struct usb_device_id generic_device_ids[2]; /* Initially all zeroes. */
37
38 /* All of the device info needed for the Generic Serial Converter */
39 struct usb_serial_device_type usb_serial_generic_device = {
40         .owner =                THIS_MODULE,
41         .name =                 "Generic",
42         .short_name =           "generic",
43         .id_table =             generic_device_ids,
44         .num_interrupt_in =     NUM_DONT_CARE,
45         .num_bulk_in =          NUM_DONT_CARE,
46         .num_bulk_out =         NUM_DONT_CARE,
47         .num_ports =            1,
48         .shutdown =             usb_serial_generic_shutdown,
49 };
50
51 /* we want to look at all devices, as the vendor/product id can change
52  * depending on the command line argument */
53 static struct usb_device_id generic_serial_ids[] = {
54         {.driver_info = 42},
55         {}
56 };
57
58 static int generic_probe(struct usb_interface *interface,
59                                const struct usb_device_id *id)
60 {
61         const struct usb_device_id *id_pattern;
62
63         id_pattern = usb_match_id(interface, generic_device_ids);
64         if (id_pattern != NULL)
65                 return usb_serial_probe(interface, id);
66         return -ENODEV;
67 }
68
69 static struct usb_driver generic_driver = {
70         .owner =        THIS_MODULE,
71         .name =         "usbserial_generic",
72         .probe =        generic_probe,
73         .disconnect =   usb_serial_disconnect,
74         .id_table =     generic_serial_ids,
75 };
76 #endif
77
78 int usb_serial_generic_register (int _debug)
79 {
80         int retval = 0;
81
82         debug = _debug;
83 #ifdef CONFIG_USB_SERIAL_GENERIC
84         generic_device_ids[0].idVendor = vendor;
85         generic_device_ids[0].idProduct = product;
86         generic_device_ids[0].match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_PRODUCT;
87
88         /* register our generic driver with ourselves */
89         retval = usb_serial_register (&usb_serial_generic_device);
90         if (retval)
91                 goto exit;
92         retval = usb_register(&generic_driver);
93         if (retval)
94                 usb_serial_deregister(&usb_serial_generic_device);
95 exit:
96 #endif
97         return retval;
98 }
99
100 void usb_serial_generic_deregister (void)
101 {
102 #ifdef CONFIG_USB_SERIAL_GENERIC
103         /* remove our generic driver */
104         usb_deregister(&generic_driver);
105         usb_serial_deregister (&usb_serial_generic_device);
106 #endif
107 }
108
109 int usb_serial_generic_open (struct usb_serial_port *port, struct file *filp)
110 {
111         struct usb_serial *serial = port->serial;
112         int result = 0;
113
114         dbg("%s - port %d", __FUNCTION__, port->number);
115
116         /* force low_latency on so that our tty_push actually forces the data through, 
117            otherwise it is scheduled, and with high data rates (like with OHCI) data
118            can get lost. */
119         if (port->tty)
120                 port->tty->low_latency = 1;
121
122         /* if we have a bulk interrupt, start reading from it */
123         if (serial->num_bulk_in) {
124                 /* Start reading from the device */
125                 usb_fill_bulk_urb (port->read_urb, serial->dev,
126                                    usb_rcvbulkpipe(serial->dev, port->bulk_in_endpointAddress),
127                                    port->read_urb->transfer_buffer,
128                                    port->read_urb->transfer_buffer_length,
129                                    ((serial->type->read_bulk_callback) ?
130                                      serial->type->read_bulk_callback :
131                                      usb_serial_generic_read_bulk_callback),
132                                    port);
133                 result = usb_submit_urb(port->read_urb, GFP_KERNEL);
134                 if (result)
135                         dev_err(&port->dev, "%s - failed resubmitting read urb, error %d\n", __FUNCTION__, result);
136         }
137
138         return result;
139 }
140
141 static void generic_cleanup (struct usb_serial_port *port)
142 {
143         struct usb_serial *serial = port->serial;
144
145         dbg("%s - port %d", __FUNCTION__, port->number);
146
147         if (serial->dev) {
148                 /* shutdown any bulk reads that might be going on */
149                 if (serial->num_bulk_out)
150                         usb_unlink_urb (port->write_urb);
151                 if (serial->num_bulk_in)
152                         usb_unlink_urb (port->read_urb);
153         }
154 }
155
156 void usb_serial_generic_close (struct usb_serial_port *port, struct file * filp)
157 {
158         dbg("%s - port %d", __FUNCTION__, port->number);
159         generic_cleanup (port);
160 }
161
162 int usb_serial_generic_write (struct usb_serial_port *port, int from_user, const unsigned char *buf, int count)
163 {
164         struct usb_serial *serial = port->serial;
165         int result;
166         unsigned char *data;
167
168         dbg("%s - port %d", __FUNCTION__, port->number);
169
170         if (count == 0) {
171                 dbg("%s - write request of 0 bytes", __FUNCTION__);
172                 return (0);
173         }
174
175         /* only do something if we have a bulk out endpoint */
176         if (serial->num_bulk_out) {
177                 if (port->write_urb->status == -EINPROGRESS) {
178                         dbg("%s - already writing", __FUNCTION__);
179                         return (0);
180                 }
181
182                 count = (count > port->bulk_out_size) ? port->bulk_out_size : count;
183
184                 if (from_user) {
185                         if (copy_from_user(port->write_urb->transfer_buffer, buf, count))
186                                 return -EFAULT;
187                 }
188                 else {
189                         memcpy (port->write_urb->transfer_buffer, buf, count);
190                 }
191                 data = port->write_urb->transfer_buffer;
192                 usb_serial_debug_data(debug, &port->dev, __FUNCTION__, count, data);
193
194                 /* set up our urb */
195                 usb_fill_bulk_urb (port->write_urb, serial->dev,
196                                    usb_sndbulkpipe (serial->dev,
197                                                     port->bulk_out_endpointAddress),
198                                    port->write_urb->transfer_buffer, count,
199                                    ((serial->type->write_bulk_callback) ? 
200                                      serial->type->write_bulk_callback :
201                                      usb_serial_generic_write_bulk_callback), port);
202
203                 /* send the data out the bulk port */
204                 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
205                 if (result)
206                         dev_err(&port->dev, "%s - failed submitting write urb, error %d\n", __FUNCTION__, result);
207                 else
208                         result = count;
209
210                 return result;
211         }
212
213         /* no bulk out, so return 0 bytes written */
214         return (0);
215 }
216
217 int usb_serial_generic_write_room (struct usb_serial_port *port)
218 {
219         struct usb_serial *serial = port->serial;
220         int room = 0;
221
222         dbg("%s - port %d", __FUNCTION__, port->number);
223         
224         if (serial->num_bulk_out) {
225                 if (port->write_urb->status != -EINPROGRESS)
226                         room = port->bulk_out_size;
227         }
228
229         dbg("%s - returns %d", __FUNCTION__, room);
230         return (room);
231 }
232
233 int usb_serial_generic_chars_in_buffer (struct usb_serial_port *port)
234 {
235         struct usb_serial *serial = port->serial;
236         int chars = 0;
237
238         dbg("%s - port %d", __FUNCTION__, port->number);
239
240         if (serial->num_bulk_out) {
241                 if (port->write_urb->status == -EINPROGRESS)
242                         chars = port->write_urb->transfer_buffer_length;
243         }
244
245         dbg("%s - returns %d", __FUNCTION__, chars);
246         return (chars);
247 }
248
249 void usb_serial_generic_read_bulk_callback (struct urb *urb, struct pt_regs *regs)
250 {
251         struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
252         struct usb_serial *serial = port->serial;
253         struct tty_struct *tty;
254         unsigned char *data = urb->transfer_buffer;
255         int i;
256         int result;
257
258         dbg("%s - port %d", __FUNCTION__, port->number);
259
260         if (urb->status) {
261                 dbg("%s - nonzero read bulk status received: %d", __FUNCTION__, urb->status);
262                 return;
263         }
264
265         usb_serial_debug_data(debug, &port->dev, __FUNCTION__, urb->actual_length, data);
266
267         tty = port->tty;
268         if (tty && urb->actual_length) {
269                 for (i = 0; i < urb->actual_length ; ++i) {
270                         /* if we insert more than TTY_FLIPBUF_SIZE characters, we drop them. */
271                         if(tty->flip.count >= TTY_FLIPBUF_SIZE) {
272                                 tty_flip_buffer_push(tty);
273                         }
274                         /* this doesn't actually push the data through unless tty->low_latency is set */
275                         tty_insert_flip_char(tty, data[i], 0);
276                 }
277                 tty_flip_buffer_push(tty);
278         }
279
280         /* Continue trying to always read  */
281         usb_fill_bulk_urb (port->read_urb, serial->dev,
282                            usb_rcvbulkpipe (serial->dev,
283                                             port->bulk_in_endpointAddress),
284                            port->read_urb->transfer_buffer,
285                            port->read_urb->transfer_buffer_length,
286                            ((serial->type->read_bulk_callback) ? 
287                              serial->type->read_bulk_callback : 
288                              usb_serial_generic_read_bulk_callback), port);
289         result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
290         if (result)
291                 dev_err(&port->dev, "%s - failed resubmitting read urb, error %d\n", __FUNCTION__, result);
292 }
293
294 void usb_serial_generic_write_bulk_callback (struct urb *urb, struct pt_regs *regs)
295 {
296         struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
297
298         dbg("%s - port %d", __FUNCTION__, port->number);
299
300         if (urb->status) {
301                 dbg("%s - nonzero write bulk status received: %d", __FUNCTION__, urb->status);
302                 return;
303         }
304
305         usb_serial_port_softint((void *)port);
306
307         schedule_work(&port->work);
308 }
309
310 void usb_serial_generic_shutdown (struct usb_serial *serial)
311 {
312         int i;
313
314         dbg("%s", __FUNCTION__);
315
316         /* stop reads and writes on all ports */
317         for (i=0; i < serial->num_ports; ++i) {
318                 generic_cleanup(serial->port[i]);
319         }
320 }
321