Merge branch 'pm-cpuidle'
[firefly-linux-kernel-4.4.55.git] / drivers / tty / tty_buffer.c
index 685757c6ce873b4b56021b471032f57f923486c5..c043136fbe5198cf0a7a8704254fc28763ecd0b9 100644 (file)
  */
 #define TTYB_MEM_LIMIT 65536
 
+/*
+ * We default to dicing tty buffer allocations to this many characters
+ * in order to avoid multiple page allocations. We know the size of
+ * tty_buffer itself but it must also be taken into account that the
+ * the buffer is 256 byte aligned. See tty_buffer_find for the allocation
+ * logic this must match
+ */
+
+#define TTY_BUFFER_PAGE        (((PAGE_SIZE - sizeof(struct tty_buffer)) / 2) & ~0xFF)
+
+
+/**
+ *     tty_buffer_lock_exclusive       -       gain exclusive access to buffer
+ *     tty_buffer_unlock_exclusive     -       release exclusive access
+ *
+ *     @port - tty_port owning the flip buffer
+ *
+ *     Guarantees safe use of the line discipline's receive_buf() method by
+ *     excluding the buffer work and any pending flush from using the flip
+ *     buffer. Data can continue to be added concurrently to the flip buffer
+ *     from the driver side.
+ *
+ *     On release, the buffer work is restarted if there is data in the
+ *     flip buffer
+ */
+
+void tty_buffer_lock_exclusive(struct tty_port *port)
+{
+       struct tty_bufhead *buf = &port->buf;
+
+       atomic_inc(&buf->priority);
+       mutex_lock(&buf->lock);
+}
+
+void tty_buffer_unlock_exclusive(struct tty_port *port)
+{
+       struct tty_bufhead *buf = &port->buf;
+       int restart;
+
+       restart = buf->head->commit != buf->head->read;
+
+       atomic_dec(&buf->priority);
+       mutex_unlock(&buf->lock);
+       if (restart)
+               queue_work(system_unbound_wq, &buf->work);
+}
 
 /**
  *     tty_buffer_space_avail  -       return unused buffer space
@@ -151,60 +197,33 @@ static void tty_buffer_free(struct tty_port *port, struct tty_buffer *b)
 }
 
 /**
- *     __tty_buffer_flush              -       flush full tty buffers
+ *     tty_buffer_flush                -       flush full tty buffers
  *     @tty: tty to flush
  *
- *     flush all the buffers containing receive data. Caller must
- *     hold the buffer lock and must have ensured no parallel flush to
- *     ldisc is running.
+ *     flush all the buffers containing receive data. If the buffer is
+ *     being processed by flush_to_ldisc then we defer the processing
+ *     to that function
  *
- *     Locking: Caller must hold tty->buf.lock
+ *     Locking: takes buffer lock to ensure single-threaded flip buffer
+ *              'consumer'
  */
 
-static void __tty_buffer_flush(struct tty_port *port)
+void tty_buffer_flush(struct tty_struct *tty)
 {
+       struct tty_port *port = tty->port;
        struct tty_bufhead *buf = &port->buf;
        struct tty_buffer *next;
 
+       atomic_inc(&buf->priority);
+
+       mutex_lock(&buf->lock);
        while ((next = buf->head->next) != NULL) {
                tty_buffer_free(port, buf->head);
                buf->head = next;
        }
-       WARN_ON(buf->head != buf->tail);
        buf->head->read = buf->head->commit;
-}
-
-/**
- *     tty_buffer_flush                -       flush full tty buffers
- *     @tty: tty to flush
- *
- *     flush all the buffers containing receive data. If the buffer is
- *     being processed by flush_to_ldisc then we defer the processing
- *     to that function
- *
- *     Locking: none
- */
-
-void tty_buffer_flush(struct tty_struct *tty)
-{
-       struct tty_port *port = tty->port;
-       struct tty_bufhead *buf = &port->buf;
-       unsigned long flags;
-
-       spin_lock_irqsave(&buf->lock, flags);
-
-       /* If the data is being pushed to the tty layer then we can't
-          process it here. Instead set a flag and the flush_to_ldisc
-          path will process the flush request before it exits */
-       if (test_bit(TTYP_FLUSHING, &port->iflags)) {
-               set_bit(TTYP_FLUSHPENDING, &port->iflags);
-               spin_unlock_irqrestore(&buf->lock, flags);
-               wait_event(tty->read_wait,
-                               test_bit(TTYP_FLUSHPENDING, &port->iflags) == 0);
-               return;
-       } else
-               __tty_buffer_flush(port);
-       spin_unlock_irqrestore(&buf->lock, flags);
+       atomic_dec(&buf->priority);
+       mutex_unlock(&buf->lock);
 }
 
 /**
@@ -408,9 +427,10 @@ receive_buf(struct tty_struct *tty, struct tty_buffer *head, int count)
  *     This routine is called out of the software interrupt to flush data
  *     from the buffer chain to the line discipline.
  *
- *     Locking: holds tty->buf.lock to guard buffer list. Drops the lock
- *     while invoking the line discipline receive_buf method. The
- *     receive_buf method is single threaded for each tty instance.
+ *     The receive_buf method is single threaded for each tty instance.
+ *
+ *     Locking: takes buffer lock to ensure single-threaded flip buffer
+ *              'consumer'
  */
 
 static void flush_to_ldisc(struct work_struct *work)
@@ -418,7 +438,6 @@ static void flush_to_ldisc(struct work_struct *work)
        struct tty_port *port = container_of(work, struct tty_port, buf.work);
        struct tty_bufhead *buf = &port->buf;
        struct tty_struct *tty;
-       unsigned long   flags;
        struct tty_ldisc *disc;
 
        tty = port->itty;
@@ -429,42 +448,31 @@ static void flush_to_ldisc(struct work_struct *work)
        if (disc == NULL)
                return;
 
-       spin_lock_irqsave(&buf->lock, flags);
-
-       if (!test_and_set_bit(TTYP_FLUSHING, &port->iflags)) {
-               while (1) {
-                       struct tty_buffer *head = buf->head;
-                       int count;
-
-                       count = head->commit - head->read;
-                       if (!count) {
-                               if (head->next == NULL)
-                                       break;
-                               buf->head = head->next;
-                               tty_buffer_free(port, head);
-                               continue;
-                       }
-                       spin_unlock_irqrestore(&buf->lock, flags);
-
-                       count = receive_buf(tty, head, count);
-
-                       spin_lock_irqsave(&buf->lock, flags);
-                       /* Ldisc or user is trying to flush the buffers.
-                          We may have a deferred request to flush the
-                          input buffer, if so pull the chain under the lock
-                          and empty the queue */
-                       if (test_bit(TTYP_FLUSHPENDING, &port->iflags)) {
-                               __tty_buffer_flush(port);
-                               clear_bit(TTYP_FLUSHPENDING, &port->iflags);
-                               wake_up(&tty->read_wait);
-                               break;
-                       } else if (!count)
+       mutex_lock(&buf->lock);
+
+       while (1) {
+               struct tty_buffer *head = buf->head;
+               int count;
+
+               /* Ldisc or user is trying to gain exclusive access */
+               if (atomic_read(&buf->priority))
+                       break;
+
+               count = head->commit - head->read;
+               if (!count) {
+                       if (head->next == NULL)
                                break;
+                       buf->head = head->next;
+                       tty_buffer_free(port, head);
+                       continue;
                }
-               clear_bit(TTYP_FLUSHING, &port->iflags);
+
+               count = receive_buf(tty, head, count);
+               if (!count)
+                       break;
        }
 
-       spin_unlock_irqrestore(&buf->lock, flags);
+       mutex_unlock(&buf->lock);
 
        tty_ldisc_deref(disc);
 }
@@ -514,20 +522,18 @@ EXPORT_SYMBOL(tty_flip_buffer_push);
  *
  *     Set up the initial state of the buffer management for a tty device.
  *     Must be called before the other tty buffer functions are used.
- *
- *     Locking: none
  */
 
 void tty_buffer_init(struct tty_port *port)
 {
        struct tty_bufhead *buf = &port->buf;
 
-       spin_lock_init(&buf->lock);
+       mutex_init(&buf->lock);
        tty_buffer_reset(&buf->sentinel, 0);
        buf->head = &buf->sentinel;
        buf->tail = &buf->sentinel;
        init_llist_head(&buf->free);
        atomic_set(&buf->memory_used, 0);
+       atomic_set(&buf->priority, 0);
        INIT_WORK(&buf->work, flush_to_ldisc);
 }
-