Save sram context after changing MPU, DSP or core clocks
[linux-ginger.git] / drivers / usb / gadget / u_serial.c
blobadf8260c3a6aeff9f295e4ad5bf45cdfcb23233c
1 /*
2 * u_serial.c - utilities for USB gadget "serial port"/TTY support
4 * Copyright (C) 2003 Al Borchers (alborchers@steinerpoint.com)
5 * Copyright (C) 2008 David Brownell
6 * Copyright (C) 2008 by Nokia Corporation
8 * This code also borrows from usbserial.c, which is
9 * Copyright (C) 1999 - 2002 Greg Kroah-Hartman (greg@kroah.com)
10 * Copyright (C) 2000 Peter Berger (pberger@brimson.com)
11 * Copyright (C) 2000 Al Borchers (alborchers@steinerpoint.com)
13 * This software is distributed under the terms of the GNU General
14 * Public License ("GPL") as published by the Free Software Foundation,
15 * either version 2 of that License or (at your option) any later version.
18 /* #define VERBOSE_DEBUG */
20 #include <linux/kernel.h>
21 #include <linux/interrupt.h>
22 #include <linux/device.h>
23 #include <linux/delay.h>
24 #include <linux/tty.h>
25 #include <linux/tty_flip.h>
27 #include "u_serial.h"
31 * This component encapsulates the TTY layer glue needed to provide basic
32 * "serial port" functionality through the USB gadget stack. Each such
33 * port is exposed through a /dev/ttyGS* node.
35 * After initialization (gserial_setup), these TTY port devices stay
36 * available until they are removed (gserial_cleanup). Each one may be
37 * connected to a USB function (gserial_connect), or disconnected (with
38 * gserial_disconnect) when the USB host issues a config change event.
39 * Data can only flow when the port is connected to the host.
41 * A given TTY port can be made available in multiple configurations.
42 * For example, each one might expose a ttyGS0 node which provides a
43 * login application. In one case that might use CDC ACM interface 0,
44 * while another configuration might use interface 3 for that. The
45 * work to handle that (including descriptor management) is not part
46 * of this component.
48 * Configurations may expose more than one TTY port. For example, if
49 * ttyGS0 provides login service, then ttyGS1 might provide dialer access
50 * for a telephone or fax link. And ttyGS2 might be something that just
51 * needs a simple byte stream interface for some messaging protocol that
52 * is managed in userspace ... OBEX, PTP, and MTP have been mentioned.
55 #define PREFIX "ttyGS"
58 * gserial is the lifecycle interface, used by USB functions
59 * gs_port is the I/O nexus, used by the tty driver
60 * tty_struct links to the tty/filesystem framework
62 * gserial <---> gs_port ... links will be null when the USB link is
63 * inactive; managed by gserial_{connect,disconnect}(). each gserial
64 * instance can wrap its own USB control protocol.
65 * gserial->ioport == usb_ep->driver_data ... gs_port
66 * gs_port->port_usb ... gserial
68 * gs_port <---> tty_struct ... links will be null when the TTY file
69 * isn't opened; managed by gs_open()/gs_close()
70 * gserial->port_tty ... tty_struct
71 * tty_struct->driver_data ... gserial
74 /* RX and TX queues can buffer QUEUE_SIZE packets before they hit the
75 * next layer of buffering. For TX that's a circular buffer; for RX
76 * consider it a NOP. A third layer is provided by the TTY code.
78 #define QUEUE_SIZE 16
79 #define WRITE_BUF_SIZE 8192 /* TX only */
81 /* circular buffer */
82 struct gs_buf {
83 unsigned buf_size;
84 char *buf_buf;
85 char *buf_get;
86 char *buf_put;
90 * The port structure holds info for each port, one for each minor number
91 * (and thus for each /dev/ node).
93 struct gs_port {
94 spinlock_t port_lock; /* guard port_* access */
96 struct gserial *port_usb;
97 struct tty_struct *port_tty;
99 unsigned open_count;
100 bool openclose; /* open/close in progress */
101 u8 port_num;
103 wait_queue_head_t close_wait; /* wait for last close */
105 struct list_head read_pool;
106 struct list_head read_queue;
107 unsigned n_read;
108 struct tasklet_struct push;
110 struct list_head write_pool;
111 struct gs_buf port_write_buf;
112 wait_queue_head_t drain_wait; /* wait while writes drain */
114 /* REVISIT this state ... */
115 struct usb_cdc_line_coding port_line_coding; /* 8-N-1 etc */
118 /* increase N_PORTS if you need more */
119 #define N_PORTS 4
120 static struct portmaster {
121 struct mutex lock; /* protect open/close */
122 struct gs_port *port;
123 } ports[N_PORTS];
124 static unsigned n_ports;
126 #define GS_CLOSE_TIMEOUT 15 /* seconds */
130 #ifdef VERBOSE_DEBUG
131 #define pr_vdebug(fmt, arg...) \
132 pr_debug(fmt, ##arg)
133 #else
134 #define pr_vdebug(fmt, arg...) \
135 ({ if (0) pr_debug(fmt, ##arg); })
136 #endif
138 /*-------------------------------------------------------------------------*/
140 /* Circular Buffer */
143 * gs_buf_alloc
145 * Allocate a circular buffer and all associated memory.
147 static int gs_buf_alloc(struct gs_buf *gb, unsigned size)
149 gb->buf_buf = kmalloc(size, GFP_KERNEL);
150 if (gb->buf_buf == NULL)
151 return -ENOMEM;
153 gb->buf_size = size;
154 gb->buf_put = gb->buf_buf;
155 gb->buf_get = gb->buf_buf;
157 return 0;
161 * gs_buf_free
163 * Free the buffer and all associated memory.
165 static void gs_buf_free(struct gs_buf *gb)
167 kfree(gb->buf_buf);
168 gb->buf_buf = NULL;
172 * gs_buf_clear
174 * Clear out all data in the circular buffer.
176 static void gs_buf_clear(struct gs_buf *gb)
178 gb->buf_get = gb->buf_put;
179 /* equivalent to a get of all data available */
183 * gs_buf_data_avail
185 * Return the number of bytes of data written into the circular
186 * buffer.
188 static unsigned gs_buf_data_avail(struct gs_buf *gb)
190 return (gb->buf_size + gb->buf_put - gb->buf_get) % gb->buf_size;
194 * gs_buf_space_avail
196 * Return the number of bytes of space available in the circular
197 * buffer.
199 static unsigned gs_buf_space_avail(struct gs_buf *gb)
201 return (gb->buf_size + gb->buf_get - gb->buf_put - 1) % gb->buf_size;
205 * gs_buf_put
207 * Copy data data from a user buffer and put it into the circular buffer.
208 * Restrict to the amount of space available.
210 * Return the number of bytes copied.
212 static unsigned
213 gs_buf_put(struct gs_buf *gb, const char *buf, unsigned count)
215 unsigned len;
217 len = gs_buf_space_avail(gb);
218 if (count > len)
219 count = len;
221 if (count == 0)
222 return 0;
224 len = gb->buf_buf + gb->buf_size - gb->buf_put;
225 if (count > len) {
226 memcpy(gb->buf_put, buf, len);
227 memcpy(gb->buf_buf, buf+len, count - len);
228 gb->buf_put = gb->buf_buf + count - len;
229 } else {
230 memcpy(gb->buf_put, buf, count);
231 if (count < len)
232 gb->buf_put += count;
233 else /* count == len */
234 gb->buf_put = gb->buf_buf;
237 return count;
241 * gs_buf_get
243 * Get data from the circular buffer and copy to the given buffer.
244 * Restrict to the amount of data available.
246 * Return the number of bytes copied.
248 static unsigned
249 gs_buf_get(struct gs_buf *gb, char *buf, unsigned count)
251 unsigned len;
253 len = gs_buf_data_avail(gb);
254 if (count > len)
255 count = len;
257 if (count == 0)
258 return 0;
260 len = gb->buf_buf + gb->buf_size - gb->buf_get;
261 if (count > len) {
262 memcpy(buf, gb->buf_get, len);
263 memcpy(buf+len, gb->buf_buf, count - len);
264 gb->buf_get = gb->buf_buf + count - len;
265 } else {
266 memcpy(buf, gb->buf_get, count);
267 if (count < len)
268 gb->buf_get += count;
269 else /* count == len */
270 gb->buf_get = gb->buf_buf;
273 return count;
276 /*-------------------------------------------------------------------------*/
278 /* I/O glue between TTY (upper) and USB function (lower) driver layers */
281 * gs_alloc_req
283 * Allocate a usb_request and its buffer. Returns a pointer to the
284 * usb_request or NULL if there is an error.
286 struct usb_request *
287 gs_alloc_req(struct usb_ep *ep, unsigned len, gfp_t kmalloc_flags)
289 struct usb_request *req;
291 req = usb_ep_alloc_request(ep, kmalloc_flags);
293 if (req != NULL) {
294 req->length = len;
295 req->buf = kmalloc(len, kmalloc_flags);
296 if (req->buf == NULL) {
297 usb_ep_free_request(ep, req);
298 return NULL;
302 return req;
306 * gs_free_req
308 * Free a usb_request and its buffer.
310 void gs_free_req(struct usb_ep *ep, struct usb_request *req)
312 kfree(req->buf);
313 usb_ep_free_request(ep, req);
317 * gs_send_packet
319 * If there is data to send, a packet is built in the given
320 * buffer and the size is returned. If there is no data to
321 * send, 0 is returned.
323 * Called with port_lock held.
325 static unsigned
326 gs_send_packet(struct gs_port *port, char *packet, unsigned size)
328 unsigned len;
330 len = gs_buf_data_avail(&port->port_write_buf);
331 if (len < size)
332 size = len;
333 if (size != 0)
334 size = gs_buf_get(&port->port_write_buf, packet, size);
335 return size;
339 * gs_start_tx
341 * This function finds available write requests, calls
342 * gs_send_packet to fill these packets with data, and
343 * continues until either there are no more write requests
344 * available or no more data to send. This function is
345 * run whenever data arrives or write requests are available.
347 * Context: caller owns port_lock; port_usb is non-null.
349 static int gs_start_tx(struct gs_port *port)
351 __releases(&port->port_lock)
352 __acquires(&port->port_lock)
355 struct list_head *pool = &port->write_pool;
356 struct usb_ep *in = port->port_usb->in;
357 int status = 0;
358 bool do_tty_wake = false;
360 while (!list_empty(pool)) {
361 struct usb_request *req;
362 int len;
364 req = list_entry(pool->next, struct usb_request, list);
365 len = gs_send_packet(port, req->buf, in->maxpacket);
366 if (len == 0) {
367 wake_up_interruptible(&port->drain_wait);
368 break;
370 do_tty_wake = true;
372 req->length = len;
373 list_del(&req->list);
374 req->zero = (gs_buf_data_avail(&port->port_write_buf) == 0);
376 pr_vdebug(PREFIX "%d: tx len=%d, 0x%02x 0x%02x 0x%02x ...\n",
377 port->port_num, len, *((u8 *)req->buf),
378 *((u8 *)req->buf+1), *((u8 *)req->buf+2));
380 /* Drop lock while we call out of driver; completions
381 * could be issued while we do so. Disconnection may
382 * happen too; maybe immediately before we queue this!
384 * NOTE that we may keep sending data for a while after
385 * the TTY closed (dev->ioport->port_tty is NULL).
387 spin_unlock(&port->port_lock);
388 status = usb_ep_queue(in, req, GFP_ATOMIC);
389 spin_lock(&port->port_lock);
391 if (status) {
392 pr_debug("%s: %s %s err %d\n",
393 __func__, "queue", in->name, status);
394 list_add(&req->list, pool);
395 break;
398 /* abort immediately after disconnect */
399 if (!port->port_usb)
400 break;
403 if (do_tty_wake && port->port_tty)
404 tty_wakeup(port->port_tty);
405 return status;
409 * Context: caller owns port_lock, and port_usb is set
411 static unsigned gs_start_rx(struct gs_port *port)
413 __releases(&port->port_lock)
414 __acquires(&port->port_lock)
417 struct list_head *pool = &port->read_pool;
418 struct usb_ep *out = port->port_usb->out;
419 unsigned started = 0;
421 while (!list_empty(pool)) {
422 struct usb_request *req;
423 int status;
424 struct tty_struct *tty;
426 /* no more rx if closed */
427 tty = port->port_tty;
428 if (!tty)
429 break;
431 req = list_entry(pool->next, struct usb_request, list);
432 list_del(&req->list);
433 req->length = out->maxpacket;
435 /* drop lock while we call out; the controller driver
436 * may need to call us back (e.g. for disconnect)
438 spin_unlock(&port->port_lock);
439 status = usb_ep_queue(out, req, GFP_ATOMIC);
440 spin_lock(&port->port_lock);
442 if (status) {
443 pr_debug("%s: %s %s err %d\n",
444 __func__, "queue", out->name, status);
445 list_add(&req->list, pool);
446 break;
448 started++;
450 /* abort immediately after disconnect */
451 if (!port->port_usb)
452 break;
454 return started;
458 * RX tasklet takes data out of the RX queue and hands it up to the TTY
459 * layer until it refuses to take any more data (or is throttled back).
460 * Then it issues reads for any further data.
462 * If the RX queue becomes full enough that no usb_request is queued,
463 * the OUT endpoint may begin NAKing as soon as its FIFO fills up.
464 * So QUEUE_SIZE packets plus however many the FIFO holds (usually two)
465 * can be buffered before the TTY layer's buffers (currently 64 KB).
467 static void gs_rx_push(unsigned long _port)
469 struct gs_port *port = (void *)_port;
470 struct tty_struct *tty;
471 struct list_head *queue = &port->read_queue;
472 bool disconnect = false;
473 bool do_push = false;
475 /* hand any queued data to the tty */
476 spin_lock_irq(&port->port_lock);
477 tty = port->port_tty;
478 while (!list_empty(queue)) {
479 struct usb_request *req;
481 req = list_first_entry(queue, struct usb_request, list);
483 /* discard data if tty was closed */
484 if (!tty)
485 goto recycle;
487 /* leave data queued if tty was rx throttled */
488 if (test_bit(TTY_THROTTLED, &tty->flags))
489 break;
491 switch (req->status) {
492 case -ESHUTDOWN:
493 disconnect = true;
494 pr_vdebug(PREFIX "%d: shutdown\n", port->port_num);
495 break;
497 default:
498 /* presumably a transient fault */
499 pr_warning(PREFIX "%d: unexpected RX status %d\n",
500 port->port_num, req->status);
501 /* FALLTHROUGH */
502 case 0:
503 /* normal completion */
504 break;
507 /* push data to (open) tty */
508 if (req->actual) {
509 char *packet = req->buf;
510 unsigned size = req->actual;
511 unsigned n;
512 int count;
514 /* we may have pushed part of this packet already... */
515 n = port->n_read;
516 if (n) {
517 packet += n;
518 size -= n;
521 count = tty_insert_flip_string(tty, packet, size);
522 if (count)
523 do_push = true;
524 if (count != size) {
525 /* stop pushing; TTY layer can't handle more */
526 port->n_read += count;
527 pr_vdebug(PREFIX "%d: rx block %d/%d\n",
528 port->port_num,
529 count, req->actual);
530 break;
532 port->n_read = 0;
534 recycle:
535 list_move(&req->list, &port->read_pool);
538 /* Push from tty to ldisc; this is immediate with low_latency, and
539 * may trigger callbacks to this driver ... so drop the spinlock.
541 if (tty && do_push) {
542 spin_unlock_irq(&port->port_lock);
543 tty_flip_buffer_push(tty);
544 wake_up_interruptible(&tty->read_wait);
545 spin_lock_irq(&port->port_lock);
547 /* tty may have been closed */
548 tty = port->port_tty;
552 /* We want our data queue to become empty ASAP, keeping data
553 * in the tty and ldisc (not here). If we couldn't push any
554 * this time around, there may be trouble unless there's an
555 * implicit tty_unthrottle() call on its way...
557 * REVISIT we should probably add a timer to keep the tasklet
558 * from starving ... but it's not clear that case ever happens.
560 if (!list_empty(queue) && tty) {
561 if (!test_bit(TTY_THROTTLED, &tty->flags)) {
562 if (do_push)
563 tasklet_schedule(&port->push);
564 else
565 pr_warning(PREFIX "%d: RX not scheduled?\n",
566 port->port_num);
570 /* If we're still connected, refill the USB RX queue. */
571 if (!disconnect && port->port_usb)
572 gs_start_rx(port);
574 spin_unlock_irq(&port->port_lock);
577 static void gs_read_complete(struct usb_ep *ep, struct usb_request *req)
579 struct gs_port *port = ep->driver_data;
581 /* Queue all received data until the tty layer is ready for it. */
582 spin_lock(&port->port_lock);
583 list_add_tail(&req->list, &port->read_queue);
584 tasklet_schedule(&port->push);
585 spin_unlock(&port->port_lock);
588 static void gs_write_complete(struct usb_ep *ep, struct usb_request *req)
590 struct gs_port *port = ep->driver_data;
592 spin_lock(&port->port_lock);
593 list_add(&req->list, &port->write_pool);
595 switch (req->status) {
596 default:
597 /* presumably a transient fault */
598 pr_warning("%s: unexpected %s status %d\n",
599 __func__, ep->name, req->status);
600 /* FALL THROUGH */
601 case 0:
602 /* normal completion */
603 gs_start_tx(port);
604 break;
606 case -ESHUTDOWN:
607 /* disconnect */
608 pr_vdebug("%s: %s shutdown\n", __func__, ep->name);
609 break;
612 spin_unlock(&port->port_lock);
615 static void gs_free_requests(struct usb_ep *ep, struct list_head *head)
617 struct usb_request *req;
619 while (!list_empty(head)) {
620 req = list_entry(head->next, struct usb_request, list);
621 list_del(&req->list);
622 gs_free_req(ep, req);
626 static int gs_alloc_requests(struct usb_ep *ep, struct list_head *head,
627 void (*fn)(struct usb_ep *, struct usb_request *))
629 int i;
630 struct usb_request *req;
632 /* Pre-allocate up to QUEUE_SIZE transfers, but if we can't
633 * do quite that many this time, don't fail ... we just won't
634 * be as speedy as we might otherwise be.
636 for (i = 0; i < QUEUE_SIZE; i++) {
637 req = gs_alloc_req(ep, ep->maxpacket, GFP_ATOMIC);
638 if (!req)
639 return list_empty(head) ? -ENOMEM : 0;
640 req->complete = fn;
641 list_add_tail(&req->list, head);
643 return 0;
647 * gs_start_io - start USB I/O streams
648 * @dev: encapsulates endpoints to use
649 * Context: holding port_lock; port_tty and port_usb are non-null
651 * We only start I/O when something is connected to both sides of
652 * this port. If nothing is listening on the host side, we may
653 * be pointlessly filling up our TX buffers and FIFO.
655 static int gs_start_io(struct gs_port *port)
657 struct list_head *head = &port->read_pool;
658 struct usb_ep *ep = port->port_usb->out;
659 int status;
660 unsigned started;
662 /* Allocate RX and TX I/O buffers. We can't easily do this much
663 * earlier (with GFP_KERNEL) because the requests are coupled to
664 * endpoints, as are the packet sizes we'll be using. Different
665 * configurations may use different endpoints with a given port;
666 * and high speed vs full speed changes packet sizes too.
668 status = gs_alloc_requests(ep, head, gs_read_complete);
669 if (status)
670 return status;
672 status = gs_alloc_requests(port->port_usb->in, &port->write_pool,
673 gs_write_complete);
674 if (status) {
675 gs_free_requests(ep, head);
676 return status;
679 /* queue read requests */
680 port->n_read = 0;
681 started = gs_start_rx(port);
683 /* unblock any pending writes into our circular buffer */
684 if (started) {
685 tty_wakeup(port->port_tty);
686 } else {
687 gs_free_requests(ep, head);
688 gs_free_requests(port->port_usb->in, &port->write_pool);
689 status = -EIO;
692 return status;
695 /*-------------------------------------------------------------------------*/
697 /* TTY Driver */
700 * gs_open sets up the link between a gs_port and its associated TTY.
701 * That link is broken *only* by TTY close(), and all driver methods
702 * know that.
704 static int gs_open(struct tty_struct *tty, struct file *file)
706 int port_num = tty->index;
707 struct gs_port *port;
708 int status;
710 if (port_num < 0 || port_num >= n_ports)
711 return -ENXIO;
713 do {
714 mutex_lock(&ports[port_num].lock);
715 port = ports[port_num].port;
716 if (!port)
717 status = -ENODEV;
718 else {
719 spin_lock_irq(&port->port_lock);
721 /* already open? Great. */
722 if (port->open_count) {
723 status = 0;
724 port->open_count++;
726 /* currently opening/closing? wait ... */
727 } else if (port->openclose) {
728 status = -EBUSY;
730 /* ... else we do the work */
731 } else {
732 status = -EAGAIN;
733 port->openclose = true;
735 spin_unlock_irq(&port->port_lock);
737 mutex_unlock(&ports[port_num].lock);
739 switch (status) {
740 default:
741 /* fully handled */
742 return status;
743 case -EAGAIN:
744 /* must do the work */
745 break;
746 case -EBUSY:
747 /* wait for EAGAIN task to finish */
748 msleep(1);
749 /* REVISIT could have a waitchannel here, if
750 * concurrent open performance is important
752 break;
754 } while (status != -EAGAIN);
756 /* Do the "real open" */
757 spin_lock_irq(&port->port_lock);
759 /* allocate circular buffer on first open */
760 if (port->port_write_buf.buf_buf == NULL) {
762 spin_unlock_irq(&port->port_lock);
763 status = gs_buf_alloc(&port->port_write_buf, WRITE_BUF_SIZE);
764 spin_lock_irq(&port->port_lock);
766 if (status) {
767 pr_debug("gs_open: ttyGS%d (%p,%p) no buffer\n",
768 port->port_num, tty, file);
769 port->openclose = false;
770 goto exit_unlock_port;
774 /* REVISIT if REMOVED (ports[].port NULL), abort the open
775 * to let rmmod work faster (but this way isn't wrong).
778 /* REVISIT maybe wait for "carrier detect" */
780 tty->driver_data = port;
781 port->port_tty = tty;
783 port->open_count = 1;
784 port->openclose = false;
786 /* low_latency means ldiscs work in tasklet context, without
787 * needing a workqueue schedule ... easier to keep up.
789 tty->low_latency = 1;
791 /* if connected, start the I/O stream */
792 if (port->port_usb) {
793 struct gserial *gser = port->port_usb;
795 pr_debug("gs_open: start ttyGS%d\n", port->port_num);
796 gs_start_io(port);
798 if (gser->connect)
799 gser->connect(gser);
802 pr_debug("gs_open: ttyGS%d (%p,%p)\n", port->port_num, tty, file);
804 status = 0;
806 exit_unlock_port:
807 spin_unlock_irq(&port->port_lock);
808 return status;
811 static int gs_writes_finished(struct gs_port *p)
813 int cond;
815 /* return true on disconnect or empty buffer */
816 spin_lock_irq(&p->port_lock);
817 cond = (p->port_usb == NULL) || !gs_buf_data_avail(&p->port_write_buf);
818 spin_unlock_irq(&p->port_lock);
820 return cond;
823 static void gs_close(struct tty_struct *tty, struct file *file)
825 struct gs_port *port = tty->driver_data;
826 struct gserial *gser;
828 spin_lock_irq(&port->port_lock);
830 if (port->open_count != 1) {
831 if (port->open_count == 0)
832 WARN_ON(1);
833 else
834 --port->open_count;
835 goto exit;
838 pr_debug("gs_close: ttyGS%d (%p,%p) ...\n", port->port_num, tty, file);
840 /* mark port as closing but in use; we can drop port lock
841 * and sleep if necessary
843 port->openclose = true;
844 port->open_count = 0;
846 gser = port->port_usb;
847 if (gser && gser->disconnect)
848 gser->disconnect(gser);
850 /* wait for circular write buffer to drain, disconnect, or at
851 * most GS_CLOSE_TIMEOUT seconds; then discard the rest
853 if (gs_buf_data_avail(&port->port_write_buf) > 0 && gser) {
854 spin_unlock_irq(&port->port_lock);
855 wait_event_interruptible_timeout(port->drain_wait,
856 gs_writes_finished(port),
857 GS_CLOSE_TIMEOUT * HZ);
858 spin_lock_irq(&port->port_lock);
859 gser = port->port_usb;
862 /* Iff we're disconnected, there can be no I/O in flight so it's
863 * ok to free the circular buffer; else just scrub it. And don't
864 * let the push tasklet fire again until we're re-opened.
866 if (gser == NULL)
867 gs_buf_free(&port->port_write_buf);
868 else
869 gs_buf_clear(&port->port_write_buf);
871 tty->driver_data = NULL;
872 port->port_tty = NULL;
874 port->openclose = false;
876 pr_debug("gs_close: ttyGS%d (%p,%p) done!\n",
877 port->port_num, tty, file);
879 wake_up_interruptible(&port->close_wait);
880 exit:
881 spin_unlock_irq(&port->port_lock);
884 static int gs_write(struct tty_struct *tty, const unsigned char *buf, int count)
886 struct gs_port *port = tty->driver_data;
887 unsigned long flags;
888 int status;
890 pr_vdebug("gs_write: ttyGS%d (%p) writing %d bytes\n",
891 port->port_num, tty, count);
893 spin_lock_irqsave(&port->port_lock, flags);
894 if (count)
895 count = gs_buf_put(&port->port_write_buf, buf, count);
896 /* treat count == 0 as flush_chars() */
897 if (port->port_usb)
898 status = gs_start_tx(port);
899 spin_unlock_irqrestore(&port->port_lock, flags);
901 return count;
904 static int gs_put_char(struct tty_struct *tty, unsigned char ch)
906 struct gs_port *port = tty->driver_data;
907 unsigned long flags;
908 int status;
910 pr_vdebug("gs_put_char: (%d,%p) char=0x%x, called from %p\n",
911 port->port_num, tty, ch, __builtin_return_address(0));
913 spin_lock_irqsave(&port->port_lock, flags);
914 status = gs_buf_put(&port->port_write_buf, &ch, 1);
915 spin_unlock_irqrestore(&port->port_lock, flags);
917 return status;
920 static void gs_flush_chars(struct tty_struct *tty)
922 struct gs_port *port = tty->driver_data;
923 unsigned long flags;
925 pr_vdebug("gs_flush_chars: (%d,%p)\n", port->port_num, tty);
927 spin_lock_irqsave(&port->port_lock, flags);
928 if (port->port_usb)
929 gs_start_tx(port);
930 spin_unlock_irqrestore(&port->port_lock, flags);
933 static int gs_write_room(struct tty_struct *tty)
935 struct gs_port *port = tty->driver_data;
936 unsigned long flags;
937 int room = 0;
939 spin_lock_irqsave(&port->port_lock, flags);
940 if (port->port_usb)
941 room = gs_buf_space_avail(&port->port_write_buf);
942 spin_unlock_irqrestore(&port->port_lock, flags);
944 pr_vdebug("gs_write_room: (%d,%p) room=%d\n",
945 port->port_num, tty, room);
947 return room;
950 static int gs_chars_in_buffer(struct tty_struct *tty)
952 struct gs_port *port = tty->driver_data;
953 unsigned long flags;
954 int chars = 0;
956 spin_lock_irqsave(&port->port_lock, flags);
957 chars = gs_buf_data_avail(&port->port_write_buf);
958 spin_unlock_irqrestore(&port->port_lock, flags);
960 pr_vdebug("gs_chars_in_buffer: (%d,%p) chars=%d\n",
961 port->port_num, tty, chars);
963 return chars;
966 /* undo side effects of setting TTY_THROTTLED */
967 static void gs_unthrottle(struct tty_struct *tty)
969 struct gs_port *port = tty->driver_data;
970 unsigned long flags;
972 spin_lock_irqsave(&port->port_lock, flags);
973 if (port->port_usb) {
974 /* Kickstart read queue processing. We don't do xon/xoff,
975 * rts/cts, or other handshaking with the host, but if the
976 * read queue backs up enough we'll be NAKing OUT packets.
978 tasklet_schedule(&port->push);
979 pr_vdebug(PREFIX "%d: unthrottle\n", port->port_num);
981 spin_unlock_irqrestore(&port->port_lock, flags);
984 static int gs_break_ctl(struct tty_struct *tty, int duration)
986 struct gs_port *port = tty->driver_data;
987 int status = 0;
988 struct gserial *gser;
990 pr_vdebug("gs_break_ctl: ttyGS%d, send break (%d) \n",
991 port->port_num, duration);
993 spin_lock_irq(&port->port_lock);
994 gser = port->port_usb;
995 if (gser && gser->send_break)
996 status = gser->send_break(gser, duration);
997 spin_unlock_irq(&port->port_lock);
999 return status;
1002 static const struct tty_operations gs_tty_ops = {
1003 .open = gs_open,
1004 .close = gs_close,
1005 .write = gs_write,
1006 .put_char = gs_put_char,
1007 .flush_chars = gs_flush_chars,
1008 .write_room = gs_write_room,
1009 .chars_in_buffer = gs_chars_in_buffer,
1010 .unthrottle = gs_unthrottle,
1011 .break_ctl = gs_break_ctl,
1014 /*-------------------------------------------------------------------------*/
1016 static struct tty_driver *gs_tty_driver;
1018 static int __init
1019 gs_port_alloc(unsigned port_num, struct usb_cdc_line_coding *coding)
1021 struct gs_port *port;
1023 port = kzalloc(sizeof(struct gs_port), GFP_KERNEL);
1024 if (port == NULL)
1025 return -ENOMEM;
1027 spin_lock_init(&port->port_lock);
1028 init_waitqueue_head(&port->close_wait);
1029 init_waitqueue_head(&port->drain_wait);
1031 tasklet_init(&port->push, gs_rx_push, (unsigned long) port);
1033 INIT_LIST_HEAD(&port->read_pool);
1034 INIT_LIST_HEAD(&port->read_queue);
1035 INIT_LIST_HEAD(&port->write_pool);
1037 port->port_num = port_num;
1038 port->port_line_coding = *coding;
1040 ports[port_num].port = port;
1042 return 0;
1046 * gserial_setup - initialize TTY driver for one or more ports
1047 * @g: gadget to associate with these ports
1048 * @count: how many ports to support
1049 * Context: may sleep
1051 * The TTY stack needs to know in advance how many devices it should
1052 * plan to manage. Use this call to set up the ports you will be
1053 * exporting through USB. Later, connect them to functions based
1054 * on what configuration is activated by the USB host; and disconnect
1055 * them as appropriate.
1057 * An example would be a two-configuration device in which both
1058 * configurations expose port 0, but through different functions.
1059 * One configuration could even expose port 1 while the other
1060 * one doesn't.
1062 * Returns negative errno or zero.
1064 int __init gserial_setup(struct usb_gadget *g, unsigned count)
1066 unsigned i;
1067 struct usb_cdc_line_coding coding;
1068 int status;
1070 if (count == 0 || count > N_PORTS)
1071 return -EINVAL;
1073 gs_tty_driver = alloc_tty_driver(count);
1074 if (!gs_tty_driver)
1075 return -ENOMEM;
1077 gs_tty_driver->owner = THIS_MODULE;
1078 gs_tty_driver->driver_name = "g_serial";
1079 gs_tty_driver->name = PREFIX;
1080 /* uses dynamically assigned dev_t values */
1082 gs_tty_driver->type = TTY_DRIVER_TYPE_SERIAL;
1083 gs_tty_driver->subtype = SERIAL_TYPE_NORMAL;
1084 gs_tty_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
1085 gs_tty_driver->init_termios = tty_std_termios;
1087 /* 9600-8-N-1 ... matches defaults expected by "usbser.sys" on
1088 * MS-Windows. Otherwise, most of these flags shouldn't affect
1089 * anything unless we were to actually hook up to a serial line.
1091 gs_tty_driver->init_termios.c_cflag =
1092 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
1093 gs_tty_driver->init_termios.c_ispeed = 9600;
1094 gs_tty_driver->init_termios.c_ospeed = 9600;
1096 coding.dwDTERate = cpu_to_le32(9600);
1097 coding.bCharFormat = 8;
1098 coding.bParityType = USB_CDC_NO_PARITY;
1099 coding.bDataBits = USB_CDC_1_STOP_BITS;
1101 tty_set_operations(gs_tty_driver, &gs_tty_ops);
1103 /* make devices be openable */
1104 for (i = 0; i < count; i++) {
1105 mutex_init(&ports[i].lock);
1106 status = gs_port_alloc(i, &coding);
1107 if (status) {
1108 count = i;
1109 goto fail;
1112 n_ports = count;
1114 /* export the driver ... */
1115 status = tty_register_driver(gs_tty_driver);
1116 if (status) {
1117 pr_err("%s: cannot register, err %d\n",
1118 __func__, status);
1119 goto fail;
1122 /* ... and sysfs class devices, so mdev/udev make /dev/ttyGS* */
1123 for (i = 0; i < count; i++) {
1124 struct device *tty_dev;
1126 tty_dev = tty_register_device(gs_tty_driver, i, &g->dev);
1127 if (IS_ERR(tty_dev))
1128 pr_warning("%s: no classdev for port %d, err %ld\n",
1129 __func__, i, PTR_ERR(tty_dev));
1132 pr_debug("%s: registered %d ttyGS* device%s\n", __func__,
1133 count, (count == 1) ? "" : "s");
1135 return status;
1136 fail:
1137 while (count--)
1138 kfree(ports[count].port);
1139 put_tty_driver(gs_tty_driver);
1140 gs_tty_driver = NULL;
1141 return status;
1144 static int gs_closed(struct gs_port *port)
1146 int cond;
1148 spin_lock_irq(&port->port_lock);
1149 cond = (port->open_count == 0) && !port->openclose;
1150 spin_unlock_irq(&port->port_lock);
1151 return cond;
1155 * gserial_cleanup - remove TTY-over-USB driver and devices
1156 * Context: may sleep
1158 * This is called to free all resources allocated by @gserial_setup().
1159 * Accordingly, it may need to wait until some open /dev/ files have
1160 * closed.
1162 * The caller must have issued @gserial_disconnect() for any ports
1163 * that had previously been connected, so that there is never any
1164 * I/O pending when it's called.
1166 void gserial_cleanup(void)
1168 unsigned i;
1169 struct gs_port *port;
1171 if (!gs_tty_driver)
1172 return;
1174 /* start sysfs and /dev/ttyGS* node removal */
1175 for (i = 0; i < n_ports; i++)
1176 tty_unregister_device(gs_tty_driver, i);
1178 for (i = 0; i < n_ports; i++) {
1179 /* prevent new opens */
1180 mutex_lock(&ports[i].lock);
1181 port = ports[i].port;
1182 ports[i].port = NULL;
1183 mutex_unlock(&ports[i].lock);
1185 tasklet_kill(&port->push);
1187 /* wait for old opens to finish */
1188 wait_event(port->close_wait, gs_closed(port));
1190 WARN_ON(port->port_usb != NULL);
1192 kfree(port);
1194 n_ports = 0;
1196 tty_unregister_driver(gs_tty_driver);
1197 gs_tty_driver = NULL;
1199 pr_debug("%s: cleaned up ttyGS* support\n", __func__);
1203 * gserial_connect - notify TTY I/O glue that USB link is active
1204 * @gser: the function, set up with endpoints and descriptors
1205 * @port_num: which port is active
1206 * Context: any (usually from irq)
1208 * This is called activate endpoints and let the TTY layer know that
1209 * the connection is active ... not unlike "carrier detect". It won't
1210 * necessarily start I/O queues; unless the TTY is held open by any
1211 * task, there would be no point. However, the endpoints will be
1212 * activated so the USB host can perform I/O, subject to basic USB
1213 * hardware flow control.
1215 * Caller needs to have set up the endpoints and USB function in @dev
1216 * before calling this, as well as the appropriate (speed-specific)
1217 * endpoint descriptors, and also have set up the TTY driver by calling
1218 * @gserial_setup().
1220 * Returns negative errno or zero.
1221 * On success, ep->driver_data will be overwritten.
1223 int gserial_connect(struct gserial *gser, u8 port_num)
1225 struct gs_port *port;
1226 unsigned long flags;
1227 int status;
1229 if (!gs_tty_driver || port_num >= n_ports)
1230 return -ENXIO;
1232 /* we "know" gserial_cleanup() hasn't been called */
1233 port = ports[port_num].port;
1235 /* activate the endpoints */
1236 status = usb_ep_enable(gser->in, gser->in_desc);
1237 if (status < 0)
1238 return status;
1239 gser->in->driver_data = port;
1241 status = usb_ep_enable(gser->out, gser->out_desc);
1242 if (status < 0)
1243 goto fail_out;
1244 gser->out->driver_data = port;
1246 /* then tell the tty glue that I/O can work */
1247 spin_lock_irqsave(&port->port_lock, flags);
1248 gser->ioport = port;
1249 port->port_usb = gser;
1251 /* REVISIT unclear how best to handle this state...
1252 * we don't really couple it with the Linux TTY.
1254 gser->port_line_coding = port->port_line_coding;
1256 /* REVISIT if waiting on "carrier detect", signal. */
1258 /* if it's already open, start I/O ... and notify the serial
1259 * protocol about open/close status (connect/disconnect).
1261 if (port->open_count) {
1262 pr_debug("gserial_connect: start ttyGS%d\n", port->port_num);
1263 gs_start_io(port);
1264 if (gser->connect)
1265 gser->connect(gser);
1266 } else {
1267 if (gser->disconnect)
1268 gser->disconnect(gser);
1271 spin_unlock_irqrestore(&port->port_lock, flags);
1273 return status;
1275 fail_out:
1276 usb_ep_disable(gser->in);
1277 gser->in->driver_data = NULL;
1278 return status;
1282 * gserial_disconnect - notify TTY I/O glue that USB link is inactive
1283 * @gser: the function, on which gserial_connect() was called
1284 * Context: any (usually from irq)
1286 * This is called to deactivate endpoints and let the TTY layer know
1287 * that the connection went inactive ... not unlike "hangup".
1289 * On return, the state is as if gserial_connect() had never been called;
1290 * there is no active USB I/O on these endpoints.
1292 void gserial_disconnect(struct gserial *gser)
1294 struct gs_port *port = gser->ioport;
1295 unsigned long flags;
1297 if (!port)
1298 return;
1300 /* tell the TTY glue not to do I/O here any more */
1301 spin_lock_irqsave(&port->port_lock, flags);
1303 /* REVISIT as above: how best to track this? */
1304 port->port_line_coding = gser->port_line_coding;
1306 port->port_usb = NULL;
1307 gser->ioport = NULL;
1308 if (port->open_count > 0 || port->openclose) {
1309 wake_up_interruptible(&port->drain_wait);
1310 if (port->port_tty)
1311 tty_hangup(port->port_tty);
1313 spin_unlock_irqrestore(&port->port_lock, flags);
1315 /* disable endpoints, aborting down any active I/O */
1316 usb_ep_disable(gser->out);
1317 gser->out->driver_data = NULL;
1319 usb_ep_disable(gser->in);
1320 gser->in->driver_data = NULL;
1322 /* finally, free any unused/unusable I/O buffers */
1323 spin_lock_irqsave(&port->port_lock, flags);
1324 if (port->open_count == 0 && !port->openclose)
1325 gs_buf_free(&port->port_write_buf);
1326 gs_free_requests(gser->out, &port->read_pool);
1327 gs_free_requests(gser->out, &port->read_queue);
1328 gs_free_requests(gser->in, &port->write_pool);
1329 spin_unlock_irqrestore(&port->port_lock, flags);