2 * USB Serial Converter Generic functions
4 * Copyright (C) 2010 - 2013 Johan Hovold (jhovold@gmail.com)
5 * Copyright (C) 1999 - 2002 Greg Kroah-Hartman (greg@kroah.com)
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version
9 * 2 as published by the Free Software Foundation.
13 #include <linux/kernel.h>
14 #include <linux/errno.h>
15 #include <linux/slab.h>
16 #include <linux/sysrq.h>
17 #include <linux/tty.h>
18 #include <linux/tty_flip.h>
19 #include <linux/module.h>
20 #include <linux/moduleparam.h>
21 #include <linux/usb.h>
22 #include <linux/usb/serial.h>
23 #include <linux/uaccess.h>
24 #include <linux/kfifo.h>
25 #include <linux/serial.h>
27 #ifdef CONFIG_USB_SERIAL_GENERIC
29 static __u16 vendor
= 0x05f9;
30 static __u16 product
= 0xffff;
32 module_param(vendor
, ushort
, 0);
33 MODULE_PARM_DESC(vendor
, "User specified USB idVendor");
35 module_param(product
, ushort
, 0);
36 MODULE_PARM_DESC(product
, "User specified USB idProduct");
38 static struct usb_device_id generic_device_ids
[2]; /* Initially all zeroes. */
40 /* All of the device info needed for the Generic Serial Converter */
41 struct usb_serial_driver usb_serial_generic_device
= {
46 .id_table
= generic_device_ids
,
48 .throttle
= usb_serial_generic_throttle
,
49 .unthrottle
= usb_serial_generic_unthrottle
,
50 .resume
= usb_serial_generic_resume
,
53 static struct usb_serial_driver
* const serial_drivers
[] = {
54 &usb_serial_generic_device
, NULL
59 int usb_serial_generic_register(void)
63 #ifdef CONFIG_USB_SERIAL_GENERIC
64 generic_device_ids
[0].idVendor
= vendor
;
65 generic_device_ids
[0].idProduct
= product
;
66 generic_device_ids
[0].match_flags
=
67 USB_DEVICE_ID_MATCH_VENDOR
| USB_DEVICE_ID_MATCH_PRODUCT
;
69 /* register our generic driver with ourselves */
70 retval
= usb_serial_register_drivers(serial_drivers
,
71 "usbserial_generic", generic_device_ids
);
76 void usb_serial_generic_deregister(void)
78 #ifdef CONFIG_USB_SERIAL_GENERIC
79 /* remove our generic driver */
80 usb_serial_deregister_drivers(serial_drivers
);
84 int usb_serial_generic_open(struct tty_struct
*tty
, struct usb_serial_port
*port
)
89 /* clear the throttle flags */
90 spin_lock_irqsave(&port
->lock
, flags
);
92 port
->throttle_req
= 0;
93 spin_unlock_irqrestore(&port
->lock
, flags
);
95 /* if we have a bulk endpoint, start reading from it */
96 if (port
->bulk_in_size
)
97 result
= usb_serial_generic_submit_read_urbs(port
, GFP_KERNEL
);
101 EXPORT_SYMBOL_GPL(usb_serial_generic_open
);
103 void usb_serial_generic_close(struct usb_serial_port
*port
)
108 if (port
->bulk_out_size
) {
109 for (i
= 0; i
< ARRAY_SIZE(port
->write_urbs
); ++i
)
110 usb_kill_urb(port
->write_urbs
[i
]);
112 spin_lock_irqsave(&port
->lock
, flags
);
113 kfifo_reset_out(&port
->write_fifo
);
114 spin_unlock_irqrestore(&port
->lock
, flags
);
116 if (port
->bulk_in_size
) {
117 for (i
= 0; i
< ARRAY_SIZE(port
->read_urbs
); ++i
)
118 usb_kill_urb(port
->read_urbs
[i
]);
121 EXPORT_SYMBOL_GPL(usb_serial_generic_close
);
123 int usb_serial_generic_prepare_write_buffer(struct usb_serial_port
*port
,
124 void *dest
, size_t size
)
126 return kfifo_out_locked(&port
->write_fifo
, dest
, size
, &port
->lock
);
130 * usb_serial_generic_write_start - kick off an URB write
131 * @port: Pointer to the &struct usb_serial_port data
133 * Returns zero on success, or a negative errno value
135 static int usb_serial_generic_write_start(struct usb_serial_port
*port
)
142 if (test_and_set_bit_lock(USB_SERIAL_WRITE_BUSY
, &port
->flags
))
145 spin_lock_irqsave(&port
->lock
, flags
);
146 if (!port
->write_urbs_free
|| !kfifo_len(&port
->write_fifo
)) {
147 clear_bit_unlock(USB_SERIAL_WRITE_BUSY
, &port
->flags
);
148 spin_unlock_irqrestore(&port
->lock
, flags
);
151 i
= (int)find_first_bit(&port
->write_urbs_free
,
152 ARRAY_SIZE(port
->write_urbs
));
153 spin_unlock_irqrestore(&port
->lock
, flags
);
155 urb
= port
->write_urbs
[i
];
156 count
= port
->serial
->type
->prepare_write_buffer(port
,
157 urb
->transfer_buffer
,
158 port
->bulk_out_size
);
159 urb
->transfer_buffer_length
= count
;
160 usb_serial_debug_data(&port
->dev
, __func__
, count
, urb
->transfer_buffer
);
161 spin_lock_irqsave(&port
->lock
, flags
);
162 port
->tx_bytes
+= count
;
163 spin_unlock_irqrestore(&port
->lock
, flags
);
165 clear_bit(i
, &port
->write_urbs_free
);
166 result
= usb_submit_urb(urb
, GFP_ATOMIC
);
168 dev_err_console(port
, "%s - error submitting urb: %d\n",
170 set_bit(i
, &port
->write_urbs_free
);
171 spin_lock_irqsave(&port
->lock
, flags
);
172 port
->tx_bytes
-= count
;
173 spin_unlock_irqrestore(&port
->lock
, flags
);
175 clear_bit_unlock(USB_SERIAL_WRITE_BUSY
, &port
->flags
);
179 goto retry
; /* try sending off another urb */
183 * usb_serial_generic_write - generic write function for serial USB devices
184 * @tty: Pointer to &struct tty_struct for the device
185 * @port: Pointer to the &usb_serial_port structure for the device
186 * @buf: Pointer to the data to write
187 * @count: Number of bytes to write
189 * Returns the number of characters actually written, which may be anything
190 * from zero to @count. If an error occurs, it returns the negative errno
193 int usb_serial_generic_write(struct tty_struct
*tty
,
194 struct usb_serial_port
*port
, const unsigned char *buf
, int count
)
198 /* only do something if we have a bulk out endpoint */
199 if (!port
->bulk_out_size
)
205 count
= kfifo_in_locked(&port
->write_fifo
, buf
, count
, &port
->lock
);
206 result
= usb_serial_generic_write_start(port
);
212 EXPORT_SYMBOL_GPL(usb_serial_generic_write
);
214 int usb_serial_generic_write_room(struct tty_struct
*tty
)
216 struct usb_serial_port
*port
= tty
->driver_data
;
220 if (!port
->bulk_out_size
)
223 spin_lock_irqsave(&port
->lock
, flags
);
224 room
= kfifo_avail(&port
->write_fifo
);
225 spin_unlock_irqrestore(&port
->lock
, flags
);
227 dev_dbg(&port
->dev
, "%s - returns %d\n", __func__
, room
);
231 int usb_serial_generic_chars_in_buffer(struct tty_struct
*tty
)
233 struct usb_serial_port
*port
= tty
->driver_data
;
237 if (!port
->bulk_out_size
)
240 spin_lock_irqsave(&port
->lock
, flags
);
241 chars
= kfifo_len(&port
->write_fifo
) + port
->tx_bytes
;
242 spin_unlock_irqrestore(&port
->lock
, flags
);
244 dev_dbg(&port
->dev
, "%s - returns %d\n", __func__
, chars
);
247 EXPORT_SYMBOL_GPL(usb_serial_generic_chars_in_buffer
);
249 void usb_serial_generic_wait_until_sent(struct tty_struct
*tty
, long timeout
)
251 struct usb_serial_port
*port
= tty
->driver_data
;
253 unsigned long period
;
254 unsigned long expire
;
256 bps
= tty_get_baud_rate(tty
);
260 * Use a poll-period of roughly the time it takes to send one
261 * character or at least one jiffy.
263 period
= max_t(unsigned long, (10 * HZ
/ bps
), 1);
265 period
= min_t(unsigned long, period
, timeout
);
267 dev_dbg(&port
->dev
, "%s - timeout = %u ms, period = %u ms\n",
268 __func__
, jiffies_to_msecs(timeout
),
269 jiffies_to_msecs(period
));
270 expire
= jiffies
+ timeout
;
271 while (!port
->serial
->type
->tx_empty(port
)) {
272 schedule_timeout_interruptible(period
);
273 if (signal_pending(current
))
275 if (timeout
&& time_after(jiffies
, expire
))
279 EXPORT_SYMBOL_GPL(usb_serial_generic_wait_until_sent
);
281 static int usb_serial_generic_submit_read_urb(struct usb_serial_port
*port
,
282 int index
, gfp_t mem_flags
)
286 if (!test_and_clear_bit(index
, &port
->read_urbs_free
))
289 dev_dbg(&port
->dev
, "%s - urb %d\n", __func__
, index
);
291 res
= usb_submit_urb(port
->read_urbs
[index
], mem_flags
);
295 "%s - usb_submit_urb failed: %d\n",
298 set_bit(index
, &port
->read_urbs_free
);
305 int usb_serial_generic_submit_read_urbs(struct usb_serial_port
*port
,
311 for (i
= 0; i
< ARRAY_SIZE(port
->read_urbs
); ++i
) {
312 res
= usb_serial_generic_submit_read_urb(port
, i
, mem_flags
);
320 usb_kill_urb(port
->read_urbs
[i
]);
324 EXPORT_SYMBOL_GPL(usb_serial_generic_submit_read_urbs
);
326 void usb_serial_generic_process_read_urb(struct urb
*urb
)
328 struct usb_serial_port
*port
= urb
->context
;
329 char *ch
= (char *)urb
->transfer_buffer
;
332 if (!urb
->actual_length
)
335 /* The per character mucking around with sysrq path it too slow for
336 stuff like 3G modems, so shortcircuit it in the 99.9999999% of cases
337 where the USB serial is not a console anyway */
338 if (!port
->port
.console
|| !port
->sysrq
)
339 tty_insert_flip_string(&port
->port
, ch
, urb
->actual_length
);
341 for (i
= 0; i
< urb
->actual_length
; i
++, ch
++) {
342 if (!usb_serial_handle_sysrq_char(port
, *ch
))
343 tty_insert_flip_char(&port
->port
, *ch
, TTY_NORMAL
);
346 tty_flip_buffer_push(&port
->port
);
348 EXPORT_SYMBOL_GPL(usb_serial_generic_process_read_urb
);
350 void usb_serial_generic_read_bulk_callback(struct urb
*urb
)
352 struct usb_serial_port
*port
= urb
->context
;
353 unsigned char *data
= urb
->transfer_buffer
;
357 for (i
= 0; i
< ARRAY_SIZE(port
->read_urbs
); ++i
) {
358 if (urb
== port
->read_urbs
[i
])
361 set_bit(i
, &port
->read_urbs_free
);
363 dev_dbg(&port
->dev
, "%s - urb %d, len %d\n", __func__
, i
,
367 dev_dbg(&port
->dev
, "%s - non-zero urb status: %d\n",
368 __func__
, urb
->status
);
372 usb_serial_debug_data(&port
->dev
, __func__
, urb
->actual_length
, data
);
373 port
->serial
->type
->process_read_urb(urb
);
375 /* Throttle the device if requested by tty */
376 spin_lock_irqsave(&port
->lock
, flags
);
377 port
->throttled
= port
->throttle_req
;
378 if (!port
->throttled
) {
379 spin_unlock_irqrestore(&port
->lock
, flags
);
380 usb_serial_generic_submit_read_urb(port
, i
, GFP_ATOMIC
);
382 spin_unlock_irqrestore(&port
->lock
, flags
);
384 EXPORT_SYMBOL_GPL(usb_serial_generic_read_bulk_callback
);
386 void usb_serial_generic_write_bulk_callback(struct urb
*urb
)
389 struct usb_serial_port
*port
= urb
->context
;
390 int status
= urb
->status
;
393 for (i
= 0; i
< ARRAY_SIZE(port
->write_urbs
); ++i
)
394 if (port
->write_urbs
[i
] == urb
)
397 spin_lock_irqsave(&port
->lock
, flags
);
398 port
->tx_bytes
-= urb
->transfer_buffer_length
;
399 set_bit(i
, &port
->write_urbs_free
);
400 spin_unlock_irqrestore(&port
->lock
, flags
);
403 dev_dbg(&port
->dev
, "%s - non-zero urb status: %d\n",
406 spin_lock_irqsave(&port
->lock
, flags
);
407 kfifo_reset_out(&port
->write_fifo
);
408 spin_unlock_irqrestore(&port
->lock
, flags
);
410 usb_serial_generic_write_start(port
);
413 usb_serial_port_softint(port
);
415 EXPORT_SYMBOL_GPL(usb_serial_generic_write_bulk_callback
);
417 void usb_serial_generic_throttle(struct tty_struct
*tty
)
419 struct usb_serial_port
*port
= tty
->driver_data
;
422 /* Set the throttle request flag. It will be picked up
423 * by usb_serial_generic_read_bulk_callback(). */
424 spin_lock_irqsave(&port
->lock
, flags
);
425 port
->throttle_req
= 1;
426 spin_unlock_irqrestore(&port
->lock
, flags
);
428 EXPORT_SYMBOL_GPL(usb_serial_generic_throttle
);
430 void usb_serial_generic_unthrottle(struct tty_struct
*tty
)
432 struct usb_serial_port
*port
= tty
->driver_data
;
435 /* Clear the throttle flags */
436 spin_lock_irq(&port
->lock
);
437 was_throttled
= port
->throttled
;
438 port
->throttled
= port
->throttle_req
= 0;
439 spin_unlock_irq(&port
->lock
);
442 usb_serial_generic_submit_read_urbs(port
, GFP_KERNEL
);
444 EXPORT_SYMBOL_GPL(usb_serial_generic_unthrottle
);
446 static bool usb_serial_generic_msr_changed(struct tty_struct
*tty
,
447 unsigned long arg
, struct async_icount
*cprev
)
449 struct usb_serial_port
*port
= tty
->driver_data
;
450 struct async_icount cnow
;
455 * Use tty-port initialised flag to detect all hangups including the
456 * one generated at USB-device disconnect.
458 if (!test_bit(ASYNCB_INITIALIZED
, &port
->port
.flags
))
461 spin_lock_irqsave(&port
->lock
, flags
);
462 cnow
= port
->icount
; /* atomic copy*/
463 spin_unlock_irqrestore(&port
->lock
, flags
);
465 ret
= ((arg
& TIOCM_RNG
) && (cnow
.rng
!= cprev
->rng
)) ||
466 ((arg
& TIOCM_DSR
) && (cnow
.dsr
!= cprev
->dsr
)) ||
467 ((arg
& TIOCM_CD
) && (cnow
.dcd
!= cprev
->dcd
)) ||
468 ((arg
& TIOCM_CTS
) && (cnow
.cts
!= cprev
->cts
));
475 int usb_serial_generic_tiocmiwait(struct tty_struct
*tty
, unsigned long arg
)
477 struct usb_serial_port
*port
= tty
->driver_data
;
478 struct async_icount cnow
;
482 spin_lock_irqsave(&port
->lock
, flags
);
483 cnow
= port
->icount
; /* atomic copy */
484 spin_unlock_irqrestore(&port
->lock
, flags
);
486 ret
= wait_event_interruptible(port
->port
.delta_msr_wait
,
487 usb_serial_generic_msr_changed(tty
, arg
, &cnow
));
488 if (!ret
&& !test_bit(ASYNCB_INITIALIZED
, &port
->port
.flags
))
493 EXPORT_SYMBOL_GPL(usb_serial_generic_tiocmiwait
);
495 int usb_serial_generic_get_icount(struct tty_struct
*tty
,
496 struct serial_icounter_struct
*icount
)
498 struct usb_serial_port
*port
= tty
->driver_data
;
499 struct async_icount cnow
;
502 spin_lock_irqsave(&port
->lock
, flags
);
503 cnow
= port
->icount
; /* atomic copy */
504 spin_unlock_irqrestore(&port
->lock
, flags
);
506 icount
->cts
= cnow
.cts
;
507 icount
->dsr
= cnow
.dsr
;
508 icount
->rng
= cnow
.rng
;
509 icount
->dcd
= cnow
.dcd
;
510 icount
->tx
= cnow
.tx
;
511 icount
->rx
= cnow
.rx
;
512 icount
->frame
= cnow
.frame
;
513 icount
->parity
= cnow
.parity
;
514 icount
->overrun
= cnow
.overrun
;
515 icount
->brk
= cnow
.brk
;
516 icount
->buf_overrun
= cnow
.buf_overrun
;
520 EXPORT_SYMBOL_GPL(usb_serial_generic_get_icount
);
522 #ifdef CONFIG_MAGIC_SYSRQ
523 int usb_serial_handle_sysrq_char(struct usb_serial_port
*port
, unsigned int ch
)
525 if (port
->sysrq
&& port
->port
.console
) {
526 if (ch
&& time_before(jiffies
, port
->sysrq
)) {
536 int usb_serial_handle_sysrq_char(struct usb_serial_port
*port
, unsigned int ch
)
541 EXPORT_SYMBOL_GPL(usb_serial_handle_sysrq_char
);
543 int usb_serial_handle_break(struct usb_serial_port
*port
)
546 port
->sysrq
= jiffies
+ HZ
*5;
552 EXPORT_SYMBOL_GPL(usb_serial_handle_break
);
555 * usb_serial_handle_dcd_change - handle a change of carrier detect state
556 * @port: usb_serial_port structure for the open port
557 * @tty: tty_struct structure for the port
558 * @status: new carrier detect status, nonzero if active
560 void usb_serial_handle_dcd_change(struct usb_serial_port
*usb_port
,
561 struct tty_struct
*tty
, unsigned int status
)
563 struct tty_port
*port
= &usb_port
->port
;
565 dev_dbg(&usb_port
->dev
, "%s - status %d\n", __func__
, status
);
568 wake_up_interruptible(&port
->open_wait
);
569 else if (tty
&& !C_CLOCAL(tty
))
572 EXPORT_SYMBOL_GPL(usb_serial_handle_dcd_change
);
574 int usb_serial_generic_resume(struct usb_serial
*serial
)
576 struct usb_serial_port
*port
;
579 for (i
= 0; i
< serial
->num_ports
; i
++) {
580 port
= serial
->port
[i
];
581 if (!test_bit(ASYNCB_INITIALIZED
, &port
->port
.flags
))
584 if (port
->bulk_in_size
) {
585 r
= usb_serial_generic_submit_read_urbs(port
,
591 if (port
->bulk_out_size
) {
592 r
= usb_serial_generic_write_start(port
);
600 EXPORT_SYMBOL_GPL(usb_serial_generic_resume
);