blob: 170674cb68fc6457abd18f2a627cbe212453d1b5 [file] [log] [blame]
Alan Coxe0495732008-10-13 10:36:58 +01001/*
2 * Tty buffer allocation management
3 */
4
5#include <linux/types.h>
6#include <linux/errno.h>
7#include <linux/tty.h>
8#include <linux/tty_driver.h>
9#include <linux/tty_flip.h>
10#include <linux/timer.h>
11#include <linux/string.h>
12#include <linux/slab.h>
13#include <linux/sched.h>
14#include <linux/init.h>
15#include <linux/wait.h>
16#include <linux/bitops.h>
17#include <linux/delay.h>
18#include <linux/module.h>
George Spelvin593fb1ae42013-02-12 02:00:43 -050019#include <linux/ratelimit.h>
Alan Coxe0495732008-10-13 10:36:58 +010020
21/**
22 * tty_buffer_free_all - free buffers used by a tty
23 * @tty: tty to free from
24 *
25 * Remove all the buffers pending on a tty whether queued with data
26 * or in the free ring. Must be called when the tty is no longer in use
27 *
28 * Locking: none
29 */
30
Jiri Slabyecbbfd42012-10-18 22:26:47 +020031void tty_buffer_free_all(struct tty_port *port)
Alan Coxe0495732008-10-13 10:36:58 +010032{
Jiri Slabyecbbfd42012-10-18 22:26:47 +020033 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +010034 struct tty_buffer *thead;
Jiri Slaby5cff39c2012-10-18 22:26:45 +020035
36 while ((thead = buf->head) != NULL) {
37 buf->head = thead->next;
Alan Coxe0495732008-10-13 10:36:58 +010038 kfree(thead);
39 }
Jiri Slaby5cff39c2012-10-18 22:26:45 +020040 while ((thead = buf->free) != NULL) {
41 buf->free = thead->next;
Alan Coxe0495732008-10-13 10:36:58 +010042 kfree(thead);
43 }
Jiri Slaby5cff39c2012-10-18 22:26:45 +020044 buf->tail = NULL;
45 buf->memory_used = 0;
Alan Coxe0495732008-10-13 10:36:58 +010046}
47
48/**
49 * tty_buffer_alloc - allocate a tty buffer
50 * @tty: tty device
51 * @size: desired size (characters)
52 *
53 * Allocate a new tty buffer to hold the desired number of characters.
54 * Return NULL if out of memory or the allocation would exceed the
55 * per device queue
56 *
57 * Locking: Caller must hold tty->buf.lock
58 */
59
Jiri Slabyecbbfd42012-10-18 22:26:47 +020060static struct tty_buffer *tty_buffer_alloc(struct tty_port *port, size_t size)
Alan Coxe0495732008-10-13 10:36:58 +010061{
62 struct tty_buffer *p;
63
Jiri Slabyecbbfd42012-10-18 22:26:47 +020064 if (port->buf.memory_used + size > 65536)
Alan Coxe0495732008-10-13 10:36:58 +010065 return NULL;
66 p = kmalloc(sizeof(struct tty_buffer) + 2 * size, GFP_ATOMIC);
67 if (p == NULL)
68 return NULL;
69 p->used = 0;
70 p->size = size;
71 p->next = NULL;
72 p->commit = 0;
73 p->read = 0;
Jiri Slabyecbbfd42012-10-18 22:26:47 +020074 port->buf.memory_used += size;
Alan Coxe0495732008-10-13 10:36:58 +010075 return p;
76}
77
78/**
79 * tty_buffer_free - free a tty buffer
80 * @tty: tty owning the buffer
81 * @b: the buffer to free
82 *
83 * Free a tty buffer, or add it to the free list according to our
84 * internal strategy
85 *
86 * Locking: Caller must hold tty->buf.lock
87 */
88
Jiri Slabyecbbfd42012-10-18 22:26:47 +020089static void tty_buffer_free(struct tty_port *port, struct tty_buffer *b)
Alan Coxe0495732008-10-13 10:36:58 +010090{
Jiri Slabyecbbfd42012-10-18 22:26:47 +020091 struct tty_bufhead *buf = &port->buf;
Jiri Slaby5cff39c2012-10-18 22:26:45 +020092
Alan Coxe0495732008-10-13 10:36:58 +010093 /* Dumb strategy for now - should keep some stats */
Jiri Slaby5cff39c2012-10-18 22:26:45 +020094 buf->memory_used -= b->size;
95 WARN_ON(buf->memory_used < 0);
Alan Coxe0495732008-10-13 10:36:58 +010096
97 if (b->size >= 512)
98 kfree(b);
99 else {
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200100 b->next = buf->free;
101 buf->free = b;
Alan Coxe0495732008-10-13 10:36:58 +0100102 }
103}
104
105/**
106 * __tty_buffer_flush - flush full tty buffers
107 * @tty: tty to flush
108 *
109 * flush all the buffers containing receive data. Caller must
110 * hold the buffer lock and must have ensured no parallel flush to
111 * ldisc is running.
112 *
113 * Locking: Caller must hold tty->buf.lock
114 */
115
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200116static void __tty_buffer_flush(struct tty_port *port)
Alan Coxe0495732008-10-13 10:36:58 +0100117{
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200118 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +0100119 struct tty_buffer *thead;
120
Ilya Zykov64325a32013-01-19 18:16:20 +0400121 if (unlikely(buf->head == NULL))
122 return;
123 while ((thead = buf->head->next) != NULL) {
124 tty_buffer_free(port, buf->head);
125 buf->head = thead;
Alan Coxe0495732008-10-13 10:36:58 +0100126 }
Ilya Zykov64325a32013-01-19 18:16:20 +0400127 WARN_ON(buf->head != buf->tail);
128 buf->head->read = buf->head->commit;
Alan Coxe0495732008-10-13 10:36:58 +0100129}
130
131/**
132 * tty_buffer_flush - flush full tty buffers
133 * @tty: tty to flush
134 *
135 * flush all the buffers containing receive data. If the buffer is
136 * being processed by flush_to_ldisc then we defer the processing
137 * to that function
138 *
139 * Locking: none
140 */
141
142void tty_buffer_flush(struct tty_struct *tty)
143{
Jiri Slaby2fc20662012-10-18 22:26:44 +0200144 struct tty_port *port = tty->port;
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200145 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +0100146 unsigned long flags;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200147
148 spin_lock_irqsave(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100149
150 /* If the data is being pushed to the tty layer then we can't
151 process it here. Instead set a flag and the flush_to_ldisc
152 path will process the flush request before it exits */
Jiri Slaby2fc20662012-10-18 22:26:44 +0200153 if (test_bit(TTYP_FLUSHING, &port->iflags)) {
154 set_bit(TTYP_FLUSHPENDING, &port->iflags);
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200155 spin_unlock_irqrestore(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100156 wait_event(tty->read_wait,
Jiri Slaby2fc20662012-10-18 22:26:44 +0200157 test_bit(TTYP_FLUSHPENDING, &port->iflags) == 0);
Alan Coxe0495732008-10-13 10:36:58 +0100158 return;
159 } else
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200160 __tty_buffer_flush(port);
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200161 spin_unlock_irqrestore(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100162}
163
164/**
165 * tty_buffer_find - find a free tty buffer
166 * @tty: tty owning the buffer
167 * @size: characters wanted
168 *
169 * Locate an existing suitable tty buffer or if we are lacking one then
170 * allocate a new one. We round our buffers off in 256 character chunks
171 * to get better allocation behaviour.
172 *
173 * Locking: Caller must hold tty->buf.lock
174 */
175
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200176static struct tty_buffer *tty_buffer_find(struct tty_port *port, size_t size)
Alan Coxe0495732008-10-13 10:36:58 +0100177{
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200178 struct tty_buffer **tbh = &port->buf.free;
Alan Coxe0495732008-10-13 10:36:58 +0100179 while ((*tbh) != NULL) {
180 struct tty_buffer *t = *tbh;
181 if (t->size >= size) {
182 *tbh = t->next;
183 t->next = NULL;
184 t->used = 0;
185 t->commit = 0;
186 t->read = 0;
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200187 port->buf.memory_used += t->size;
Alan Coxe0495732008-10-13 10:36:58 +0100188 return t;
189 }
190 tbh = &((*tbh)->next);
191 }
192 /* Round the buffer size out */
193 size = (size + 0xFF) & ~0xFF;
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200194 return tty_buffer_alloc(port, size);
Alan Coxe0495732008-10-13 10:36:58 +0100195 /* Should possibly check if this fails for the largest buffer we
196 have queued and recycle that ? */
197}
Alan Coxe0495732008-10-13 10:36:58 +0100198/**
Ilya Zykov64325a32013-01-19 18:16:20 +0400199 * tty_buffer_request_room - grow tty buffer if needed
Alan Coxe0495732008-10-13 10:36:58 +0100200 * @tty: tty structure
201 * @size: size desired
202 *
203 * Make at least size bytes of linear space available for the tty
204 * buffer. If we fail return the size we managed to find.
Ilya Zykov64325a32013-01-19 18:16:20 +0400205 *
206 * Locking: Takes port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100207 */
Ilya Zykov64325a32013-01-19 18:16:20 +0400208int tty_buffer_request_room(struct tty_port *port, size_t size)
Alan Coxe0495732008-10-13 10:36:58 +0100209{
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200210 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +0100211 struct tty_buffer *b, *n;
212 int left;
Ilya Zykov64325a32013-01-19 18:16:20 +0400213 unsigned long flags;
214 spin_lock_irqsave(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100215 /* OPTIMISATION: We could keep a per tty "zero" sized buffer to
216 remove this conditional if its worth it. This would be invisible
217 to the callers */
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200218 b = buf->tail;
219 if (b != NULL)
Alan Coxe0495732008-10-13 10:36:58 +0100220 left = b->size - b->used;
221 else
222 left = 0;
223
224 if (left < size) {
225 /* This is the slow path - looking for new buffers to use */
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200226 if ((n = tty_buffer_find(port, size)) != NULL) {
Alan Coxe0495732008-10-13 10:36:58 +0100227 if (b != NULL) {
228 b->next = n;
229 b->commit = b->used;
230 } else
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200231 buf->head = n;
232 buf->tail = n;
Alan Coxe0495732008-10-13 10:36:58 +0100233 } else
234 size = left;
235 }
Ilya Zykov64325a32013-01-19 18:16:20 +0400236 spin_unlock_irqrestore(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100237 return size;
238}
239EXPORT_SYMBOL_GPL(tty_buffer_request_room);
240
241/**
Alan Cox2832fc12010-02-18 16:43:54 +0000242 * tty_insert_flip_string_fixed_flag - Add characters to the tty buffer
Jiri Slaby2f693352013-01-03 15:53:02 +0100243 * @port: tty port
Alan Coxe0495732008-10-13 10:36:58 +0100244 * @chars: characters
Alan Cox2832fc12010-02-18 16:43:54 +0000245 * @flag: flag value for each character
Alan Coxe0495732008-10-13 10:36:58 +0100246 * @size: size
247 *
248 * Queue a series of bytes to the tty buffering. All the characters
Johan Hovoldccc5ca82010-05-07 19:58:32 +0200249 * passed are marked with the supplied flag. Returns the number added.
Alan Coxe0495732008-10-13 10:36:58 +0100250 *
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200251 * Locking: Called functions may take port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100252 */
253
Jiri Slaby2f693352013-01-03 15:53:02 +0100254int tty_insert_flip_string_fixed_flag(struct tty_port *port,
Alan Cox2832fc12010-02-18 16:43:54 +0000255 const unsigned char *chars, char flag, size_t size)
Alan Coxe0495732008-10-13 10:36:58 +0100256{
257 int copied = 0;
258 do {
Fang Wenqid4bee0a2010-03-09 18:54:28 +0800259 int goal = min_t(size_t, size - copied, TTY_BUFFER_PAGE);
Ilya Zykov64325a32013-01-19 18:16:20 +0400260 int space = tty_buffer_request_room(port, goal);
261 struct tty_buffer *tb = port->buf.tail;
Alan Coxe0495732008-10-13 10:36:58 +0100262 /* If there is no space then tb may be NULL */
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000263 if (unlikely(space == 0)) {
Alan Coxe0495732008-10-13 10:36:58 +0100264 break;
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000265 }
Peter Hurley1fc359f2013-06-15 09:36:01 -0400266 memcpy(char_buf_ptr(tb, tb->used), chars, space);
267 memset(flag_buf_ptr(tb, tb->used), flag, space);
Alan Coxe0495732008-10-13 10:36:58 +0100268 tb->used += space;
269 copied += space;
270 chars += space;
271 /* There is a small chance that we need to split the data over
272 several buffers. If this is the case we must loop */
273 } while (unlikely(size > copied));
274 return copied;
275}
Alan Cox2832fc12010-02-18 16:43:54 +0000276EXPORT_SYMBOL(tty_insert_flip_string_fixed_flag);
Alan Coxe0495732008-10-13 10:36:58 +0100277
278/**
279 * tty_insert_flip_string_flags - Add characters to the tty buffer
Jiri Slaby2f693352013-01-03 15:53:02 +0100280 * @port: tty port
Alan Coxe0495732008-10-13 10:36:58 +0100281 * @chars: characters
282 * @flags: flag bytes
283 * @size: size
284 *
285 * Queue a series of bytes to the tty buffering. For each character
286 * the flags array indicates the status of the character. Returns the
287 * number added.
288 *
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200289 * Locking: Called functions may take port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100290 */
291
Jiri Slaby2f693352013-01-03 15:53:02 +0100292int tty_insert_flip_string_flags(struct tty_port *port,
Alan Coxe0495732008-10-13 10:36:58 +0100293 const unsigned char *chars, const char *flags, size_t size)
294{
295 int copied = 0;
296 do {
Fang Wenqid4bee0a2010-03-09 18:54:28 +0800297 int goal = min_t(size_t, size - copied, TTY_BUFFER_PAGE);
Ilya Zykov64325a32013-01-19 18:16:20 +0400298 int space = tty_buffer_request_room(port, goal);
299 struct tty_buffer *tb = port->buf.tail;
Alan Coxe0495732008-10-13 10:36:58 +0100300 /* If there is no space then tb may be NULL */
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000301 if (unlikely(space == 0)) {
Alan Coxe0495732008-10-13 10:36:58 +0100302 break;
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000303 }
Peter Hurley1fc359f2013-06-15 09:36:01 -0400304 memcpy(char_buf_ptr(tb, tb->used), chars, space);
305 memcpy(flag_buf_ptr(tb, tb->used), flags, space);
Alan Coxe0495732008-10-13 10:36:58 +0100306 tb->used += space;
307 copied += space;
308 chars += space;
309 flags += space;
310 /* There is a small chance that we need to split the data over
311 several buffers. If this is the case we must loop */
312 } while (unlikely(size > copied));
313 return copied;
314}
315EXPORT_SYMBOL(tty_insert_flip_string_flags);
316
317/**
318 * tty_schedule_flip - push characters to ldisc
Jiri Slaby6732c8b2013-01-03 15:53:07 +0100319 * @port: tty port to push from
Alan Coxe0495732008-10-13 10:36:58 +0100320 *
321 * Takes any pending buffers and transfers their ownership to the
322 * ldisc side of the queue. It then schedules those characters for
323 * processing by the line discipline.
Ivo Siebencee4ad12012-09-27 14:02:05 +0200324 * Note that this function can only be used when the low_latency flag
325 * is unset. Otherwise the workqueue won't be flushed.
Alan Coxe0495732008-10-13 10:36:58 +0100326 *
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200327 * Locking: Takes port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100328 */
329
Jiri Slaby6732c8b2013-01-03 15:53:07 +0100330void tty_schedule_flip(struct tty_port *port)
Alan Coxe0495732008-10-13 10:36:58 +0100331{
Jiri Slaby6732c8b2013-01-03 15:53:07 +0100332 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +0100333 unsigned long flags;
Jiri Slaby6732c8b2013-01-03 15:53:07 +0100334 WARN_ON(port->low_latency);
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200335
336 spin_lock_irqsave(&buf->lock, flags);
337 if (buf->tail != NULL)
338 buf->tail->commit = buf->tail->used;
339 spin_unlock_irqrestore(&buf->lock, flags);
340 schedule_work(&buf->work);
Alan Coxe0495732008-10-13 10:36:58 +0100341}
342EXPORT_SYMBOL(tty_schedule_flip);
343
344/**
345 * tty_prepare_flip_string - make room for characters
Jiri Slaby2f693352013-01-03 15:53:02 +0100346 * @port: tty port
Alan Coxe0495732008-10-13 10:36:58 +0100347 * @chars: return pointer for character write area
348 * @size: desired size
349 *
350 * Prepare a block of space in the buffer for data. Returns the length
351 * available and buffer pointer to the space which is now allocated and
352 * accounted for as ready for normal characters. This is used for drivers
353 * that need their own block copy routines into the buffer. There is no
354 * guarantee the buffer is a DMA target!
355 *
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200356 * Locking: May call functions taking port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100357 */
358
Jiri Slaby2f693352013-01-03 15:53:02 +0100359int tty_prepare_flip_string(struct tty_port *port, unsigned char **chars,
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200360 size_t size)
Alan Coxe0495732008-10-13 10:36:58 +0100361{
Ilya Zykov64325a32013-01-19 18:16:20 +0400362 int space = tty_buffer_request_room(port, size);
Alan Coxe0495732008-10-13 10:36:58 +0100363 if (likely(space)) {
Ilya Zykov64325a32013-01-19 18:16:20 +0400364 struct tty_buffer *tb = port->buf.tail;
Peter Hurley1fc359f2013-06-15 09:36:01 -0400365 *chars = char_buf_ptr(tb, tb->used);
366 memset(flag_buf_ptr(tb, tb->used), TTY_NORMAL, space);
Alan Coxe0495732008-10-13 10:36:58 +0100367 tb->used += space;
368 }
369 return space;
370}
371EXPORT_SYMBOL_GPL(tty_prepare_flip_string);
372
373/**
374 * tty_prepare_flip_string_flags - make room for characters
Jiri Slaby2f693352013-01-03 15:53:02 +0100375 * @port: tty port
Alan Coxe0495732008-10-13 10:36:58 +0100376 * @chars: return pointer for character write area
377 * @flags: return pointer for status flag write area
378 * @size: desired size
379 *
380 * Prepare a block of space in the buffer for data. Returns the length
381 * available and buffer pointer to the space which is now allocated and
382 * accounted for as ready for characters. This is used for drivers
383 * that need their own block copy routines into the buffer. There is no
384 * guarantee the buffer is a DMA target!
385 *
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200386 * Locking: May call functions taking port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100387 */
388
Jiri Slaby2f693352013-01-03 15:53:02 +0100389int tty_prepare_flip_string_flags(struct tty_port *port,
Alan Coxe0495732008-10-13 10:36:58 +0100390 unsigned char **chars, char **flags, size_t size)
391{
Ilya Zykov64325a32013-01-19 18:16:20 +0400392 int space = tty_buffer_request_room(port, size);
Alan Coxe0495732008-10-13 10:36:58 +0100393 if (likely(space)) {
Ilya Zykov64325a32013-01-19 18:16:20 +0400394 struct tty_buffer *tb = port->buf.tail;
Peter Hurley1fc359f2013-06-15 09:36:01 -0400395 *chars = char_buf_ptr(tb, tb->used);
396 *flags = flag_buf_ptr(tb, tb->used);
Alan Coxe0495732008-10-13 10:36:58 +0100397 tb->used += space;
398 }
399 return space;
400}
401EXPORT_SYMBOL_GPL(tty_prepare_flip_string_flags);
402
403
Peter Hurleyda261e72013-06-15 09:14:14 -0400404static int
405receive_buf(struct tty_struct *tty, struct tty_buffer *head, int count)
406{
407 struct tty_ldisc *disc = tty->ldisc;
Peter Hurley1fc359f2013-06-15 09:36:01 -0400408 unsigned char *p = char_buf_ptr(head, head->read);
409 char *f = flag_buf_ptr(head, head->read);
Peter Hurleyda261e72013-06-15 09:14:14 -0400410
Peter Hurley24a89d12013-06-15 09:14:15 -0400411 if (disc->ops->receive_buf2)
412 count = disc->ops->receive_buf2(tty, p, f, count);
413 else {
414 count = min_t(int, count, tty->receive_room);
415 if (count)
416 disc->ops->receive_buf(tty, p, f, count);
417 }
Peter Hurleyda261e72013-06-15 09:14:14 -0400418 head->read += count;
419 return count;
420}
Alan Coxe0495732008-10-13 10:36:58 +0100421
422/**
423 * flush_to_ldisc
424 * @work: tty structure passed from work queue.
425 *
426 * This routine is called out of the software interrupt to flush data
427 * from the buffer chain to the line discipline.
428 *
429 * Locking: holds tty->buf.lock to guard buffer list. Drops the lock
430 * while invoking the line discipline receive_buf method. The
431 * receive_buf method is single threaded for each tty instance.
432 */
433
434static void flush_to_ldisc(struct work_struct *work)
435{
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200436 struct tty_port *port = container_of(work, struct tty_port, buf.work);
437 struct tty_bufhead *buf = &port->buf;
438 struct tty_struct *tty;
Alan Coxe0495732008-10-13 10:36:58 +0100439 unsigned long flags;
440 struct tty_ldisc *disc;
Alan Coxe0495732008-10-13 10:36:58 +0100441
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200442 tty = port->itty;
Jiri Slaby34dcfb82013-02-27 22:30:24 +0100443 if (tty == NULL)
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200444 return;
445
Alan Coxe0495732008-10-13 10:36:58 +0100446 disc = tty_ldisc_ref(tty);
Peter Hurley36697522013-06-15 07:04:48 -0400447 if (disc == NULL)
Alan Coxe0495732008-10-13 10:36:58 +0100448 return;
449
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200450 spin_lock_irqsave(&buf->lock, flags);
Linus Torvalds45242002009-10-14 08:59:49 -0700451
Jiri Slaby2fc20662012-10-18 22:26:44 +0200452 if (!test_and_set_bit(TTYP_FLUSHING, &port->iflags)) {
Linus Torvalds81de9162011-06-08 07:46:30 -0700453 struct tty_buffer *head;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200454 while ((head = buf->head) != NULL) {
Linus Torvalds45242002009-10-14 08:59:49 -0700455 int count;
Linus Torvalds45242002009-10-14 08:59:49 -0700456
457 count = head->commit - head->read;
Alan Coxe0495732008-10-13 10:36:58 +0100458 if (!count) {
459 if (head->next == NULL)
460 break;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200461 buf->head = head->next;
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200462 tty_buffer_free(port, head);
Alan Coxe0495732008-10-13 10:36:58 +0100463 continue;
464 }
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200465 spin_unlock_irqrestore(&buf->lock, flags);
Peter Hurleyda261e72013-06-15 09:14:14 -0400466
467 count = receive_buf(tty, head, count);
468
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200469 spin_lock_irqsave(&buf->lock, flags);
Peter Hurley39f610e2013-03-20 13:20:43 -0400470 /* Ldisc or user is trying to flush the buffers.
471 We may have a deferred request to flush the
472 input buffer, if so pull the chain under the lock
473 and empty the queue */
474 if (test_bit(TTYP_FLUSHPENDING, &port->iflags)) {
475 __tty_buffer_flush(port);
476 clear_bit(TTYP_FLUSHPENDING, &port->iflags);
477 wake_up(&tty->read_wait);
478 break;
Peter Hurleyda261e72013-06-15 09:14:14 -0400479 } else if (!count)
480 break;
Alan Coxe0495732008-10-13 10:36:58 +0100481 }
Jiri Slaby2fc20662012-10-18 22:26:44 +0200482 clear_bit(TTYP_FLUSHING, &port->iflags);
Alan Coxe0495732008-10-13 10:36:58 +0100483 }
Linus Torvalds45242002009-10-14 08:59:49 -0700484
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200485 spin_unlock_irqrestore(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100486
487 tty_ldisc_deref(disc);
488}
489
490/**
OGAWA Hirofumie043e422009-07-29 12:15:56 -0700491 * tty_flush_to_ldisc
492 * @tty: tty to push
493 *
494 * Push the terminal flip buffers to the line discipline.
495 *
496 * Must not be called from IRQ context.
497 */
498void tty_flush_to_ldisc(struct tty_struct *tty)
499{
Jiri Slabyd6c53c02013-01-03 15:53:05 +0100500 if (!tty->port->low_latency)
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200501 flush_work(&tty->port->buf.work);
OGAWA Hirofumie043e422009-07-29 12:15:56 -0700502}
503
504/**
Alan Coxe0495732008-10-13 10:36:58 +0100505 * tty_flip_buffer_push - terminal
Jiri Slaby2e124b42013-01-03 15:53:06 +0100506 * @port: tty port to push
Alan Coxe0495732008-10-13 10:36:58 +0100507 *
508 * Queue a push of the terminal flip buffers to the line discipline. This
Jiri Slabyd6c53c02013-01-03 15:53:05 +0100509 * function must not be called from IRQ context if port->low_latency is
510 * set.
Alan Coxe0495732008-10-13 10:36:58 +0100511 *
512 * In the event of the queue being busy for flipping the work will be
513 * held off and retried later.
514 *
515 * Locking: tty buffer lock. Driver locks in low latency mode.
516 */
517
Jiri Slaby2e124b42013-01-03 15:53:06 +0100518void tty_flip_buffer_push(struct tty_port *port)
Alan Coxe0495732008-10-13 10:36:58 +0100519{
Jiri Slaby2e124b42013-01-03 15:53:06 +0100520 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +0100521 unsigned long flags;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200522
523 spin_lock_irqsave(&buf->lock, flags);
524 if (buf->tail != NULL)
525 buf->tail->commit = buf->tail->used;
526 spin_unlock_irqrestore(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100527
Jiri Slaby2e124b42013-01-03 15:53:06 +0100528 if (port->low_latency)
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200529 flush_to_ldisc(&buf->work);
Alan Coxe0495732008-10-13 10:36:58 +0100530 else
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200531 schedule_work(&buf->work);
Alan Coxe0495732008-10-13 10:36:58 +0100532}
533EXPORT_SYMBOL(tty_flip_buffer_push);
534
535/**
536 * tty_buffer_init - prepare a tty buffer structure
537 * @tty: tty to initialise
538 *
539 * Set up the initial state of the buffer management for a tty device.
540 * Must be called before the other tty buffer functions are used.
541 *
542 * Locking: none
543 */
544
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200545void tty_buffer_init(struct tty_port *port)
Alan Coxe0495732008-10-13 10:36:58 +0100546{
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200547 struct tty_bufhead *buf = &port->buf;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200548
549 spin_lock_init(&buf->lock);
550 buf->head = NULL;
551 buf->tail = NULL;
552 buf->free = NULL;
553 buf->memory_used = 0;
554 INIT_WORK(&buf->work, flush_to_ldisc);
Alan Coxe0495732008-10-13 10:36:58 +0100555}
556