blob: b6efacadf23b7d02741dfb2b794c8dee586e7c6a [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>
19
20/**
21 * tty_buffer_free_all - free buffers used by a tty
22 * @tty: tty to free from
23 *
24 * Remove all the buffers pending on a tty whether queued with data
25 * or in the free ring. Must be called when the tty is no longer in use
26 *
27 * Locking: none
28 */
29
Jiri Slabyecbbfd42012-10-18 22:26:47 +020030void tty_buffer_free_all(struct tty_port *port)
Alan Coxe0495732008-10-13 10:36:58 +010031{
Jiri Slabyecbbfd42012-10-18 22:26:47 +020032 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +010033 struct tty_buffer *thead;
Jiri Slaby5cff39c2012-10-18 22:26:45 +020034
35 while ((thead = buf->head) != NULL) {
36 buf->head = thead->next;
Alan Coxe0495732008-10-13 10:36:58 +010037 kfree(thead);
38 }
Jiri Slaby5cff39c2012-10-18 22:26:45 +020039 while ((thead = buf->free) != NULL) {
40 buf->free = thead->next;
Alan Coxe0495732008-10-13 10:36:58 +010041 kfree(thead);
42 }
Jiri Slaby5cff39c2012-10-18 22:26:45 +020043 buf->tail = NULL;
44 buf->memory_used = 0;
Alan Coxe0495732008-10-13 10:36:58 +010045}
46
47/**
48 * tty_buffer_alloc - allocate a tty buffer
49 * @tty: tty device
50 * @size: desired size (characters)
51 *
52 * Allocate a new tty buffer to hold the desired number of characters.
53 * Return NULL if out of memory or the allocation would exceed the
54 * per device queue
55 *
56 * Locking: Caller must hold tty->buf.lock
57 */
58
Jiri Slabyecbbfd42012-10-18 22:26:47 +020059static struct tty_buffer *tty_buffer_alloc(struct tty_port *port, size_t size)
Alan Coxe0495732008-10-13 10:36:58 +010060{
61 struct tty_buffer *p;
62
Jiri Slabyecbbfd42012-10-18 22:26:47 +020063 if (port->buf.memory_used + size > 65536)
Alan Coxe0495732008-10-13 10:36:58 +010064 return NULL;
65 p = kmalloc(sizeof(struct tty_buffer) + 2 * size, GFP_ATOMIC);
66 if (p == NULL)
67 return NULL;
68 p->used = 0;
69 p->size = size;
70 p->next = NULL;
71 p->commit = 0;
72 p->read = 0;
73 p->char_buf_ptr = (char *)(p->data);
74 p->flag_buf_ptr = (unsigned char *)p->char_buf_ptr + size;
Jiri Slabyecbbfd42012-10-18 22:26:47 +020075 port->buf.memory_used += size;
Alan Coxe0495732008-10-13 10:36:58 +010076 return p;
77}
78
79/**
80 * tty_buffer_free - free a tty buffer
81 * @tty: tty owning the buffer
82 * @b: the buffer to free
83 *
84 * Free a tty buffer, or add it to the free list according to our
85 * internal strategy
86 *
87 * Locking: Caller must hold tty->buf.lock
88 */
89
Jiri Slabyecbbfd42012-10-18 22:26:47 +020090static void tty_buffer_free(struct tty_port *port, struct tty_buffer *b)
Alan Coxe0495732008-10-13 10:36:58 +010091{
Jiri Slabyecbbfd42012-10-18 22:26:47 +020092 struct tty_bufhead *buf = &port->buf;
Jiri Slaby5cff39c2012-10-18 22:26:45 +020093
Alan Coxe0495732008-10-13 10:36:58 +010094 /* Dumb strategy for now - should keep some stats */
Jiri Slaby5cff39c2012-10-18 22:26:45 +020095 buf->memory_used -= b->size;
96 WARN_ON(buf->memory_used < 0);
Alan Coxe0495732008-10-13 10:36:58 +010097
98 if (b->size >= 512)
99 kfree(b);
100 else {
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200101 b->next = buf->free;
102 buf->free = b;
Alan Coxe0495732008-10-13 10:36:58 +0100103 }
104}
105
106/**
107 * __tty_buffer_flush - flush full tty buffers
108 * @tty: tty to flush
109 *
110 * flush all the buffers containing receive data. Caller must
111 * hold the buffer lock and must have ensured no parallel flush to
112 * ldisc is running.
113 *
114 * Locking: Caller must hold tty->buf.lock
115 */
116
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200117static void __tty_buffer_flush(struct tty_port *port)
Alan Coxe0495732008-10-13 10:36:58 +0100118{
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200119 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +0100120 struct tty_buffer *thead;
121
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200122 while ((thead = buf->head) != NULL) {
123 buf->head = thead->next;
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200124 tty_buffer_free(port, thead);
Alan Coxe0495732008-10-13 10:36:58 +0100125 }
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200126 buf->tail = NULL;
Alan Coxe0495732008-10-13 10:36:58 +0100127}
128
129/**
130 * tty_buffer_flush - flush full tty buffers
131 * @tty: tty to flush
132 *
133 * flush all the buffers containing receive data. If the buffer is
134 * being processed by flush_to_ldisc then we defer the processing
135 * to that function
136 *
137 * Locking: none
138 */
139
140void tty_buffer_flush(struct tty_struct *tty)
141{
Jiri Slaby2fc20662012-10-18 22:26:44 +0200142 struct tty_port *port = tty->port;
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200143 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +0100144 unsigned long flags;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200145
146 spin_lock_irqsave(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100147
148 /* If the data is being pushed to the tty layer then we can't
149 process it here. Instead set a flag and the flush_to_ldisc
150 path will process the flush request before it exits */
Jiri Slaby2fc20662012-10-18 22:26:44 +0200151 if (test_bit(TTYP_FLUSHING, &port->iflags)) {
152 set_bit(TTYP_FLUSHPENDING, &port->iflags);
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200153 spin_unlock_irqrestore(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100154 wait_event(tty->read_wait,
Jiri Slaby2fc20662012-10-18 22:26:44 +0200155 test_bit(TTYP_FLUSHPENDING, &port->iflags) == 0);
Alan Coxe0495732008-10-13 10:36:58 +0100156 return;
157 } else
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200158 __tty_buffer_flush(port);
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200159 spin_unlock_irqrestore(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100160}
161
162/**
163 * tty_buffer_find - find a free tty buffer
164 * @tty: tty owning the buffer
165 * @size: characters wanted
166 *
167 * Locate an existing suitable tty buffer or if we are lacking one then
168 * allocate a new one. We round our buffers off in 256 character chunks
169 * to get better allocation behaviour.
170 *
171 * Locking: Caller must hold tty->buf.lock
172 */
173
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200174static struct tty_buffer *tty_buffer_find(struct tty_port *port, size_t size)
Alan Coxe0495732008-10-13 10:36:58 +0100175{
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200176 struct tty_buffer **tbh = &port->buf.free;
Alan Coxe0495732008-10-13 10:36:58 +0100177 while ((*tbh) != NULL) {
178 struct tty_buffer *t = *tbh;
179 if (t->size >= size) {
180 *tbh = t->next;
181 t->next = NULL;
182 t->used = 0;
183 t->commit = 0;
184 t->read = 0;
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200185 port->buf.memory_used += t->size;
Alan Coxe0495732008-10-13 10:36:58 +0100186 return t;
187 }
188 tbh = &((*tbh)->next);
189 }
190 /* Round the buffer size out */
191 size = (size + 0xFF) & ~0xFF;
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200192 return tty_buffer_alloc(port, size);
Alan Coxe0495732008-10-13 10:36:58 +0100193 /* Should possibly check if this fails for the largest buffer we
194 have queued and recycle that ? */
195}
Alan Coxe0495732008-10-13 10:36:58 +0100196/**
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000197 * __tty_buffer_request_room - grow tty buffer if needed
Alan Coxe0495732008-10-13 10:36:58 +0100198 * @tty: tty structure
199 * @size: size desired
200 *
201 * Make at least size bytes of linear space available for the tty
202 * buffer. If we fail return the size we managed to find.
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200203 * Locking: Caller must hold port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100204 */
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200205static int __tty_buffer_request_room(struct tty_port *port, size_t size)
Alan Coxe0495732008-10-13 10:36:58 +0100206{
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200207 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +0100208 struct tty_buffer *b, *n;
209 int left;
Alan Coxe0495732008-10-13 10:36:58 +0100210 /* OPTIMISATION: We could keep a per tty "zero" sized buffer to
211 remove this conditional if its worth it. This would be invisible
212 to the callers */
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200213 b = buf->tail;
214 if (b != NULL)
Alan Coxe0495732008-10-13 10:36:58 +0100215 left = b->size - b->used;
216 else
217 left = 0;
218
219 if (left < size) {
220 /* This is the slow path - looking for new buffers to use */
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200221 if ((n = tty_buffer_find(port, size)) != NULL) {
Alan Coxe0495732008-10-13 10:36:58 +0100222 if (b != NULL) {
223 b->next = n;
224 b->commit = b->used;
225 } else
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200226 buf->head = n;
227 buf->tail = n;
Alan Coxe0495732008-10-13 10:36:58 +0100228 } else
229 size = left;
230 }
231
Alan Coxe0495732008-10-13 10:36:58 +0100232 return size;
233}
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000234
235
236/**
237 * tty_buffer_request_room - grow tty buffer if needed
Jiri Slaby227434f2013-01-03 15:53:01 +0100238 * @port: tty port structure
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000239 * @size: size desired
240 *
241 * Make at least size bytes of linear space available for the tty
242 * buffer. If we fail return the size we managed to find.
243 *
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200244 * Locking: Takes port->buf.lock
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000245 */
Jiri Slaby227434f2013-01-03 15:53:01 +0100246int tty_buffer_request_room(struct tty_port *port, size_t size)
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000247{
248 unsigned long flags;
249 int length;
250
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200251 spin_lock_irqsave(&port->buf.lock, flags);
252 length = __tty_buffer_request_room(port, size);
253 spin_unlock_irqrestore(&port->buf.lock, flags);
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000254 return length;
255}
Alan Coxe0495732008-10-13 10:36:58 +0100256EXPORT_SYMBOL_GPL(tty_buffer_request_room);
257
258/**
Alan Cox2832fc12010-02-18 16:43:54 +0000259 * tty_insert_flip_string_fixed_flag - Add characters to the tty buffer
Jiri Slaby2f693352013-01-03 15:53:02 +0100260 * @port: tty port
Alan Coxe0495732008-10-13 10:36:58 +0100261 * @chars: characters
Alan Cox2832fc12010-02-18 16:43:54 +0000262 * @flag: flag value for each character
Alan Coxe0495732008-10-13 10:36:58 +0100263 * @size: size
264 *
265 * Queue a series of bytes to the tty buffering. All the characters
Johan Hovoldccc5ca82010-05-07 19:58:32 +0200266 * passed are marked with the supplied flag. Returns the number added.
Alan Coxe0495732008-10-13 10:36:58 +0100267 *
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200268 * Locking: Called functions may take port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100269 */
270
Jiri Slaby2f693352013-01-03 15:53:02 +0100271int tty_insert_flip_string_fixed_flag(struct tty_port *port,
Alan Cox2832fc12010-02-18 16:43:54 +0000272 const unsigned char *chars, char flag, size_t size)
Alan Coxe0495732008-10-13 10:36:58 +0100273{
Jiri Slaby2f693352013-01-03 15:53:02 +0100274 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +0100275 int copied = 0;
276 do {
Fang Wenqid4bee0a2010-03-09 18:54:28 +0800277 int goal = min_t(size_t, size - copied, TTY_BUFFER_PAGE);
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000278 int space;
279 unsigned long flags;
280 struct tty_buffer *tb;
281
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200282 spin_lock_irqsave(&buf->lock, flags);
Jiri Slaby2f693352013-01-03 15:53:02 +0100283 space = __tty_buffer_request_room(port, goal);
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200284 tb = buf->tail;
Alan Coxe0495732008-10-13 10:36:58 +0100285 /* If there is no space then tb may be NULL */
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000286 if (unlikely(space == 0)) {
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200287 spin_unlock_irqrestore(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100288 break;
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000289 }
Alan Coxe0495732008-10-13 10:36:58 +0100290 memcpy(tb->char_buf_ptr + tb->used, chars, space);
Alan Cox2832fc12010-02-18 16:43:54 +0000291 memset(tb->flag_buf_ptr + tb->used, flag, space);
Alan Coxe0495732008-10-13 10:36:58 +0100292 tb->used += space;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200293 spin_unlock_irqrestore(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100294 copied += space;
295 chars += space;
296 /* There is a small chance that we need to split the data over
297 several buffers. If this is the case we must loop */
298 } while (unlikely(size > copied));
299 return copied;
300}
Alan Cox2832fc12010-02-18 16:43:54 +0000301EXPORT_SYMBOL(tty_insert_flip_string_fixed_flag);
Alan Coxe0495732008-10-13 10:36:58 +0100302
303/**
304 * tty_insert_flip_string_flags - Add characters to the tty buffer
Jiri Slaby2f693352013-01-03 15:53:02 +0100305 * @port: tty port
Alan Coxe0495732008-10-13 10:36:58 +0100306 * @chars: characters
307 * @flags: flag bytes
308 * @size: size
309 *
310 * Queue a series of bytes to the tty buffering. For each character
311 * the flags array indicates the status of the character. Returns the
312 * number added.
313 *
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200314 * Locking: Called functions may take port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100315 */
316
Jiri Slaby2f693352013-01-03 15:53:02 +0100317int tty_insert_flip_string_flags(struct tty_port *port,
Alan Coxe0495732008-10-13 10:36:58 +0100318 const unsigned char *chars, const char *flags, size_t size)
319{
Jiri Slaby2f693352013-01-03 15:53:02 +0100320 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +0100321 int copied = 0;
322 do {
Fang Wenqid4bee0a2010-03-09 18:54:28 +0800323 int goal = min_t(size_t, size - copied, TTY_BUFFER_PAGE);
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000324 int space;
325 unsigned long __flags;
326 struct tty_buffer *tb;
327
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200328 spin_lock_irqsave(&buf->lock, __flags);
Jiri Slaby2f693352013-01-03 15:53:02 +0100329 space = __tty_buffer_request_room(port, goal);
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200330 tb = buf->tail;
Alan Coxe0495732008-10-13 10:36:58 +0100331 /* If there is no space then tb may be NULL */
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000332 if (unlikely(space == 0)) {
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200333 spin_unlock_irqrestore(&buf->lock, __flags);
Alan Coxe0495732008-10-13 10:36:58 +0100334 break;
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000335 }
Alan Coxe0495732008-10-13 10:36:58 +0100336 memcpy(tb->char_buf_ptr + tb->used, chars, space);
337 memcpy(tb->flag_buf_ptr + tb->used, flags, space);
338 tb->used += space;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200339 spin_unlock_irqrestore(&buf->lock, __flags);
Alan Coxe0495732008-10-13 10:36:58 +0100340 copied += space;
341 chars += space;
342 flags += space;
343 /* There is a small chance that we need to split the data over
344 several buffers. If this is the case we must loop */
345 } while (unlikely(size > copied));
346 return copied;
347}
348EXPORT_SYMBOL(tty_insert_flip_string_flags);
349
350/**
351 * tty_schedule_flip - push characters to ldisc
352 * @tty: tty to push from
353 *
354 * Takes any pending buffers and transfers their ownership to the
355 * ldisc side of the queue. It then schedules those characters for
356 * processing by the line discipline.
Ivo Siebencee4ad12012-09-27 14:02:05 +0200357 * Note that this function can only be used when the low_latency flag
358 * is unset. Otherwise the workqueue won't be flushed.
Alan Coxe0495732008-10-13 10:36:58 +0100359 *
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200360 * Locking: Takes port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100361 */
362
363void tty_schedule_flip(struct tty_struct *tty)
364{
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200365 struct tty_bufhead *buf = &tty->port->buf;
Alan Coxe0495732008-10-13 10:36:58 +0100366 unsigned long flags;
Jiri Slabyd6c53c02013-01-03 15:53:05 +0100367 WARN_ON(tty->port->low_latency);
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200368
369 spin_lock_irqsave(&buf->lock, flags);
370 if (buf->tail != NULL)
371 buf->tail->commit = buf->tail->used;
372 spin_unlock_irqrestore(&buf->lock, flags);
373 schedule_work(&buf->work);
Alan Coxe0495732008-10-13 10:36:58 +0100374}
375EXPORT_SYMBOL(tty_schedule_flip);
376
377/**
378 * tty_prepare_flip_string - make room for characters
Jiri Slaby2f693352013-01-03 15:53:02 +0100379 * @port: tty port
Alan Coxe0495732008-10-13 10:36:58 +0100380 * @chars: return pointer for character write area
381 * @size: desired size
382 *
383 * Prepare a block of space in the buffer for data. Returns the length
384 * available and buffer pointer to the space which is now allocated and
385 * accounted for as ready for normal characters. This is used for drivers
386 * that need their own block copy routines into the buffer. There is no
387 * guarantee the buffer is a DMA target!
388 *
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200389 * Locking: May call functions taking port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100390 */
391
Jiri Slaby2f693352013-01-03 15:53:02 +0100392int tty_prepare_flip_string(struct tty_port *port, unsigned char **chars,
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200393 size_t size)
Alan Coxe0495732008-10-13 10:36:58 +0100394{
Jiri Slaby2f693352013-01-03 15:53:02 +0100395 struct tty_bufhead *buf = &port->buf;
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000396 int space;
397 unsigned long flags;
398 struct tty_buffer *tb;
399
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200400 spin_lock_irqsave(&buf->lock, flags);
Jiri Slaby2f693352013-01-03 15:53:02 +0100401 space = __tty_buffer_request_room(port, size);
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000402
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200403 tb = buf->tail;
Alan Coxe0495732008-10-13 10:36:58 +0100404 if (likely(space)) {
Alan Coxe0495732008-10-13 10:36:58 +0100405 *chars = tb->char_buf_ptr + tb->used;
406 memset(tb->flag_buf_ptr + tb->used, TTY_NORMAL, space);
407 tb->used += space;
408 }
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200409 spin_unlock_irqrestore(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100410 return space;
411}
412EXPORT_SYMBOL_GPL(tty_prepare_flip_string);
413
414/**
415 * tty_prepare_flip_string_flags - make room for characters
Jiri Slaby2f693352013-01-03 15:53:02 +0100416 * @port: tty port
Alan Coxe0495732008-10-13 10:36:58 +0100417 * @chars: return pointer for character write area
418 * @flags: return pointer for status flag write area
419 * @size: desired size
420 *
421 * Prepare a block of space in the buffer for data. Returns the length
422 * available and buffer pointer to the space which is now allocated and
423 * accounted for as ready for characters. This is used for drivers
424 * that need their own block copy routines into the buffer. There is no
425 * guarantee the buffer is a DMA target!
426 *
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200427 * Locking: May call functions taking port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100428 */
429
Jiri Slaby2f693352013-01-03 15:53:02 +0100430int tty_prepare_flip_string_flags(struct tty_port *port,
Alan Coxe0495732008-10-13 10:36:58 +0100431 unsigned char **chars, char **flags, size_t size)
432{
Jiri Slaby2f693352013-01-03 15:53:02 +0100433 struct tty_bufhead *buf = &port->buf;
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000434 int space;
435 unsigned long __flags;
436 struct tty_buffer *tb;
437
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200438 spin_lock_irqsave(&buf->lock, __flags);
Jiri Slaby2f693352013-01-03 15:53:02 +0100439 space = __tty_buffer_request_room(port, size);
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000440
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200441 tb = buf->tail;
Alan Coxe0495732008-10-13 10:36:58 +0100442 if (likely(space)) {
Alan Coxe0495732008-10-13 10:36:58 +0100443 *chars = tb->char_buf_ptr + tb->used;
444 *flags = tb->flag_buf_ptr + tb->used;
445 tb->used += space;
446 }
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200447 spin_unlock_irqrestore(&buf->lock, __flags);
Alan Coxe0495732008-10-13 10:36:58 +0100448 return space;
449}
450EXPORT_SYMBOL_GPL(tty_prepare_flip_string_flags);
451
452
453
454/**
455 * flush_to_ldisc
456 * @work: tty structure passed from work queue.
457 *
458 * This routine is called out of the software interrupt to flush data
459 * from the buffer chain to the line discipline.
460 *
461 * Locking: holds tty->buf.lock to guard buffer list. Drops the lock
462 * while invoking the line discipline receive_buf method. The
463 * receive_buf method is single threaded for each tty instance.
464 */
465
466static void flush_to_ldisc(struct work_struct *work)
467{
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200468 struct tty_port *port = container_of(work, struct tty_port, buf.work);
469 struct tty_bufhead *buf = &port->buf;
470 struct tty_struct *tty;
Alan Coxe0495732008-10-13 10:36:58 +0100471 unsigned long flags;
472 struct tty_ldisc *disc;
Alan Coxe0495732008-10-13 10:36:58 +0100473
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200474 tty = port->itty;
Sasha Levincadf7482012-10-25 14:26:35 -0400475 if (WARN_RATELIMIT(tty == NULL, "tty is NULL\n"))
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200476 return;
477
Alan Coxe0495732008-10-13 10:36:58 +0100478 disc = tty_ldisc_ref(tty);
479 if (disc == NULL) /* !TTY_LDISC */
480 return;
481
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200482 spin_lock_irqsave(&buf->lock, flags);
Linus Torvalds45242002009-10-14 08:59:49 -0700483
Jiri Slaby2fc20662012-10-18 22:26:44 +0200484 if (!test_and_set_bit(TTYP_FLUSHING, &port->iflags)) {
Linus Torvalds81de9162011-06-08 07:46:30 -0700485 struct tty_buffer *head;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200486 while ((head = buf->head) != NULL) {
Linus Torvalds45242002009-10-14 08:59:49 -0700487 int count;
488 char *char_buf;
489 unsigned char *flag_buf;
490
491 count = head->commit - head->read;
Alan Coxe0495732008-10-13 10:36:58 +0100492 if (!count) {
493 if (head->next == NULL)
494 break;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200495 buf->head = head->next;
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200496 tty_buffer_free(port, head);
Alan Coxe0495732008-10-13 10:36:58 +0100497 continue;
498 }
499 /* Ldisc or user is trying to flush the buffers
500 we are feeding to the ldisc, stop feeding the
501 line discipline as we want to empty the queue */
Jiri Slaby2fc20662012-10-18 22:26:44 +0200502 if (test_bit(TTYP_FLUSHPENDING, &port->iflags))
Alan Coxe0495732008-10-13 10:36:58 +0100503 break;
Linus Torvalds81de9162011-06-08 07:46:30 -0700504 if (!tty->receive_room)
Linus Torvalds55db4c62011-06-04 06:33:24 +0900505 break;
506 if (count > tty->receive_room)
507 count = tty->receive_room;
Alan Coxe0495732008-10-13 10:36:58 +0100508 char_buf = head->char_buf_ptr + head->read;
509 flag_buf = head->flag_buf_ptr + head->read;
Linus Torvalds55db4c62011-06-04 06:33:24 +0900510 head->read += count;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200511 spin_unlock_irqrestore(&buf->lock, flags);
Linus Torvalds55db4c62011-06-04 06:33:24 +0900512 disc->ops->receive_buf(tty, char_buf,
Alan Coxe0495732008-10-13 10:36:58 +0100513 flag_buf, count);
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200514 spin_lock_irqsave(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100515 }
Jiri Slaby2fc20662012-10-18 22:26:44 +0200516 clear_bit(TTYP_FLUSHING, &port->iflags);
Alan Coxe0495732008-10-13 10:36:58 +0100517 }
Linus Torvalds45242002009-10-14 08:59:49 -0700518
Alan Coxe0495732008-10-13 10:36:58 +0100519 /* We may have a deferred request to flush the input buffer,
520 if so pull the chain under the lock and empty the queue */
Jiri Slaby2fc20662012-10-18 22:26:44 +0200521 if (test_bit(TTYP_FLUSHPENDING, &port->iflags)) {
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200522 __tty_buffer_flush(port);
Jiri Slaby2fc20662012-10-18 22:26:44 +0200523 clear_bit(TTYP_FLUSHPENDING, &port->iflags);
Alan Coxe0495732008-10-13 10:36:58 +0100524 wake_up(&tty->read_wait);
525 }
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200526 spin_unlock_irqrestore(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100527
528 tty_ldisc_deref(disc);
529}
530
531/**
OGAWA Hirofumie043e422009-07-29 12:15:56 -0700532 * tty_flush_to_ldisc
533 * @tty: tty to push
534 *
535 * Push the terminal flip buffers to the line discipline.
536 *
537 * Must not be called from IRQ context.
538 */
539void tty_flush_to_ldisc(struct tty_struct *tty)
540{
Jiri Slabyd6c53c02013-01-03 15:53:05 +0100541 if (!tty->port->low_latency)
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200542 flush_work(&tty->port->buf.work);
OGAWA Hirofumie043e422009-07-29 12:15:56 -0700543}
544
545/**
Alan Coxe0495732008-10-13 10:36:58 +0100546 * tty_flip_buffer_push - terminal
Jiri Slaby2e124b42013-01-03 15:53:06 +0100547 * @port: tty port to push
Alan Coxe0495732008-10-13 10:36:58 +0100548 *
549 * Queue a push of the terminal flip buffers to the line discipline. This
Jiri Slabyd6c53c02013-01-03 15:53:05 +0100550 * function must not be called from IRQ context if port->low_latency is
551 * set.
Alan Coxe0495732008-10-13 10:36:58 +0100552 *
553 * In the event of the queue being busy for flipping the work will be
554 * held off and retried later.
555 *
556 * Locking: tty buffer lock. Driver locks in low latency mode.
557 */
558
Jiri Slaby2e124b42013-01-03 15:53:06 +0100559void tty_flip_buffer_push(struct tty_port *port)
Alan Coxe0495732008-10-13 10:36:58 +0100560{
Jiri Slaby2e124b42013-01-03 15:53:06 +0100561 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +0100562 unsigned long flags;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200563
564 spin_lock_irqsave(&buf->lock, flags);
565 if (buf->tail != NULL)
566 buf->tail->commit = buf->tail->used;
567 spin_unlock_irqrestore(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100568
Jiri Slaby2e124b42013-01-03 15:53:06 +0100569 if (port->low_latency)
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200570 flush_to_ldisc(&buf->work);
Alan Coxe0495732008-10-13 10:36:58 +0100571 else
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200572 schedule_work(&buf->work);
Alan Coxe0495732008-10-13 10:36:58 +0100573}
574EXPORT_SYMBOL(tty_flip_buffer_push);
575
576/**
577 * tty_buffer_init - prepare a tty buffer structure
578 * @tty: tty to initialise
579 *
580 * Set up the initial state of the buffer management for a tty device.
581 * Must be called before the other tty buffer functions are used.
582 *
583 * Locking: none
584 */
585
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200586void tty_buffer_init(struct tty_port *port)
Alan Coxe0495732008-10-13 10:36:58 +0100587{
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200588 struct tty_bufhead *buf = &port->buf;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200589
590 spin_lock_init(&buf->lock);
591 buf->head = NULL;
592 buf->tail = NULL;
593 buf->free = NULL;
594 buf->memory_used = 0;
595 INIT_WORK(&buf->work, flush_to_ldisc);
Alan Coxe0495732008-10-13 10:36:58 +0100596}
597