Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 1 | /* |
| 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 Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 30 | void tty_buffer_free_all(struct tty_port *port) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 31 | { |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 32 | struct tty_bufhead *buf = &port->buf; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 33 | struct tty_buffer *thead; |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 34 | |
| 35 | while ((thead = buf->head) != NULL) { |
| 36 | buf->head = thead->next; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 37 | kfree(thead); |
| 38 | } |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 39 | while ((thead = buf->free) != NULL) { |
| 40 | buf->free = thead->next; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 41 | kfree(thead); |
| 42 | } |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 43 | buf->tail = NULL; |
| 44 | buf->memory_used = 0; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 45 | } |
| 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 Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 59 | static struct tty_buffer *tty_buffer_alloc(struct tty_port *port, size_t size) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 60 | { |
| 61 | struct tty_buffer *p; |
| 62 | |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 63 | if (port->buf.memory_used + size > 65536) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 64 | 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 Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 75 | port->buf.memory_used += size; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 76 | 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 Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 90 | static void tty_buffer_free(struct tty_port *port, struct tty_buffer *b) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 91 | { |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 92 | struct tty_bufhead *buf = &port->buf; |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 93 | |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 94 | /* Dumb strategy for now - should keep some stats */ |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 95 | buf->memory_used -= b->size; |
| 96 | WARN_ON(buf->memory_used < 0); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 97 | |
| 98 | if (b->size >= 512) |
| 99 | kfree(b); |
| 100 | else { |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 101 | b->next = buf->free; |
| 102 | buf->free = b; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 103 | } |
| 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 Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 117 | static void __tty_buffer_flush(struct tty_port *port) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 118 | { |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 119 | struct tty_bufhead *buf = &port->buf; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 120 | struct tty_buffer *thead; |
| 121 | |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame^] | 122 | if (unlikely(buf->head == NULL)) |
| 123 | return; |
| 124 | while ((thead = buf->head->next) != NULL) { |
| 125 | tty_buffer_free(port, buf->head); |
| 126 | buf->head = thead; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 127 | } |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame^] | 128 | WARN_ON(buf->head != buf->tail); |
| 129 | buf->head->read = buf->head->commit; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | /** |
| 133 | * tty_buffer_flush - flush full tty buffers |
| 134 | * @tty: tty to flush |
| 135 | * |
| 136 | * flush all the buffers containing receive data. If the buffer is |
| 137 | * being processed by flush_to_ldisc then we defer the processing |
| 138 | * to that function |
| 139 | * |
| 140 | * Locking: none |
| 141 | */ |
| 142 | |
| 143 | void tty_buffer_flush(struct tty_struct *tty) |
| 144 | { |
Jiri Slaby | 2fc2066 | 2012-10-18 22:26:44 +0200 | [diff] [blame] | 145 | struct tty_port *port = tty->port; |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 146 | struct tty_bufhead *buf = &port->buf; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 147 | unsigned long flags; |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 148 | |
| 149 | spin_lock_irqsave(&buf->lock, flags); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 150 | |
| 151 | /* If the data is being pushed to the tty layer then we can't |
| 152 | process it here. Instead set a flag and the flush_to_ldisc |
| 153 | path will process the flush request before it exits */ |
Jiri Slaby | 2fc2066 | 2012-10-18 22:26:44 +0200 | [diff] [blame] | 154 | if (test_bit(TTYP_FLUSHING, &port->iflags)) { |
| 155 | set_bit(TTYP_FLUSHPENDING, &port->iflags); |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 156 | spin_unlock_irqrestore(&buf->lock, flags); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 157 | wait_event(tty->read_wait, |
Jiri Slaby | 2fc2066 | 2012-10-18 22:26:44 +0200 | [diff] [blame] | 158 | test_bit(TTYP_FLUSHPENDING, &port->iflags) == 0); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 159 | return; |
| 160 | } else |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 161 | __tty_buffer_flush(port); |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 162 | spin_unlock_irqrestore(&buf->lock, flags); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | /** |
| 166 | * tty_buffer_find - find a free tty buffer |
| 167 | * @tty: tty owning the buffer |
| 168 | * @size: characters wanted |
| 169 | * |
| 170 | * Locate an existing suitable tty buffer or if we are lacking one then |
| 171 | * allocate a new one. We round our buffers off in 256 character chunks |
| 172 | * to get better allocation behaviour. |
| 173 | * |
| 174 | * Locking: Caller must hold tty->buf.lock |
| 175 | */ |
| 176 | |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 177 | static struct tty_buffer *tty_buffer_find(struct tty_port *port, size_t size) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 178 | { |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 179 | struct tty_buffer **tbh = &port->buf.free; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 180 | while ((*tbh) != NULL) { |
| 181 | struct tty_buffer *t = *tbh; |
| 182 | if (t->size >= size) { |
| 183 | *tbh = t->next; |
| 184 | t->next = NULL; |
| 185 | t->used = 0; |
| 186 | t->commit = 0; |
| 187 | t->read = 0; |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 188 | port->buf.memory_used += t->size; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 189 | return t; |
| 190 | } |
| 191 | tbh = &((*tbh)->next); |
| 192 | } |
| 193 | /* Round the buffer size out */ |
| 194 | size = (size + 0xFF) & ~0xFF; |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 195 | return tty_buffer_alloc(port, size); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 196 | /* Should possibly check if this fails for the largest buffer we |
| 197 | have queued and recycle that ? */ |
| 198 | } |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 199 | /** |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame^] | 200 | * tty_buffer_request_room - grow tty buffer if needed |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 201 | * @tty: tty structure |
| 202 | * @size: size desired |
| 203 | * |
| 204 | * Make at least size bytes of linear space available for the tty |
| 205 | * buffer. If we fail return the size we managed to find. |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame^] | 206 | * |
| 207 | * Locking: Takes port->buf.lock |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 208 | */ |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame^] | 209 | int tty_buffer_request_room(struct tty_port *port, size_t size) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 210 | { |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 211 | struct tty_bufhead *buf = &port->buf; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 212 | struct tty_buffer *b, *n; |
| 213 | int left; |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame^] | 214 | unsigned long flags; |
| 215 | spin_lock_irqsave(&buf->lock, flags); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 216 | /* OPTIMISATION: We could keep a per tty "zero" sized buffer to |
| 217 | remove this conditional if its worth it. This would be invisible |
| 218 | to the callers */ |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 219 | b = buf->tail; |
| 220 | if (b != NULL) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 221 | left = b->size - b->used; |
| 222 | else |
| 223 | left = 0; |
| 224 | |
| 225 | if (left < size) { |
| 226 | /* This is the slow path - looking for new buffers to use */ |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 227 | if ((n = tty_buffer_find(port, size)) != NULL) { |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 228 | if (b != NULL) { |
| 229 | b->next = n; |
| 230 | b->commit = b->used; |
| 231 | } else |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 232 | buf->head = n; |
| 233 | buf->tail = n; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 234 | } else |
| 235 | size = left; |
| 236 | } |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame^] | 237 | spin_unlock_irqrestore(&buf->lock, flags); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 238 | return size; |
| 239 | } |
| 240 | EXPORT_SYMBOL_GPL(tty_buffer_request_room); |
| 241 | |
| 242 | /** |
Alan Cox | 2832fc1 | 2010-02-18 16:43:54 +0000 | [diff] [blame] | 243 | * tty_insert_flip_string_fixed_flag - Add characters to the tty buffer |
Jiri Slaby | 2f69335 | 2013-01-03 15:53:02 +0100 | [diff] [blame] | 244 | * @port: tty port |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 245 | * @chars: characters |
Alan Cox | 2832fc1 | 2010-02-18 16:43:54 +0000 | [diff] [blame] | 246 | * @flag: flag value for each character |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 247 | * @size: size |
| 248 | * |
| 249 | * Queue a series of bytes to the tty buffering. All the characters |
Johan Hovold | ccc5ca8 | 2010-05-07 19:58:32 +0200 | [diff] [blame] | 250 | * passed are marked with the supplied flag. Returns the number added. |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 251 | * |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 252 | * Locking: Called functions may take port->buf.lock |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 253 | */ |
| 254 | |
Jiri Slaby | 2f69335 | 2013-01-03 15:53:02 +0100 | [diff] [blame] | 255 | int tty_insert_flip_string_fixed_flag(struct tty_port *port, |
Alan Cox | 2832fc1 | 2010-02-18 16:43:54 +0000 | [diff] [blame] | 256 | const unsigned char *chars, char flag, size_t size) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 257 | { |
| 258 | int copied = 0; |
| 259 | do { |
Fang Wenqi | d4bee0a | 2010-03-09 18:54:28 +0800 | [diff] [blame] | 260 | int goal = min_t(size_t, size - copied, TTY_BUFFER_PAGE); |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame^] | 261 | int space = tty_buffer_request_room(port, goal); |
| 262 | struct tty_buffer *tb = port->buf.tail; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 263 | /* If there is no space then tb may be NULL */ |
Xiaobing Tu | c56a00a | 2012-03-16 03:00:26 +0000 | [diff] [blame] | 264 | if (unlikely(space == 0)) { |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 265 | break; |
Xiaobing Tu | c56a00a | 2012-03-16 03:00:26 +0000 | [diff] [blame] | 266 | } |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 267 | memcpy(tb->char_buf_ptr + tb->used, chars, space); |
Alan Cox | 2832fc1 | 2010-02-18 16:43:54 +0000 | [diff] [blame] | 268 | memset(tb->flag_buf_ptr + tb->used, flag, space); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 269 | tb->used += space; |
| 270 | copied += space; |
| 271 | chars += space; |
| 272 | /* There is a small chance that we need to split the data over |
| 273 | several buffers. If this is the case we must loop */ |
| 274 | } while (unlikely(size > copied)); |
| 275 | return copied; |
| 276 | } |
Alan Cox | 2832fc1 | 2010-02-18 16:43:54 +0000 | [diff] [blame] | 277 | EXPORT_SYMBOL(tty_insert_flip_string_fixed_flag); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 278 | |
| 279 | /** |
| 280 | * tty_insert_flip_string_flags - Add characters to the tty buffer |
Jiri Slaby | 2f69335 | 2013-01-03 15:53:02 +0100 | [diff] [blame] | 281 | * @port: tty port |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 282 | * @chars: characters |
| 283 | * @flags: flag bytes |
| 284 | * @size: size |
| 285 | * |
| 286 | * Queue a series of bytes to the tty buffering. For each character |
| 287 | * the flags array indicates the status of the character. Returns the |
| 288 | * number added. |
| 289 | * |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 290 | * Locking: Called functions may take port->buf.lock |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 291 | */ |
| 292 | |
Jiri Slaby | 2f69335 | 2013-01-03 15:53:02 +0100 | [diff] [blame] | 293 | int tty_insert_flip_string_flags(struct tty_port *port, |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 294 | const unsigned char *chars, const char *flags, size_t size) |
| 295 | { |
| 296 | int copied = 0; |
| 297 | do { |
Fang Wenqi | d4bee0a | 2010-03-09 18:54:28 +0800 | [diff] [blame] | 298 | int goal = min_t(size_t, size - copied, TTY_BUFFER_PAGE); |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame^] | 299 | int space = tty_buffer_request_room(port, goal); |
| 300 | struct tty_buffer *tb = port->buf.tail; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 301 | /* If there is no space then tb may be NULL */ |
Xiaobing Tu | c56a00a | 2012-03-16 03:00:26 +0000 | [diff] [blame] | 302 | if (unlikely(space == 0)) { |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 303 | break; |
Xiaobing Tu | c56a00a | 2012-03-16 03:00:26 +0000 | [diff] [blame] | 304 | } |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 305 | memcpy(tb->char_buf_ptr + tb->used, chars, space); |
| 306 | memcpy(tb->flag_buf_ptr + tb->used, flags, space); |
| 307 | tb->used += space; |
| 308 | copied += space; |
| 309 | chars += space; |
| 310 | flags += space; |
| 311 | /* There is a small chance that we need to split the data over |
| 312 | several buffers. If this is the case we must loop */ |
| 313 | } while (unlikely(size > copied)); |
| 314 | return copied; |
| 315 | } |
| 316 | EXPORT_SYMBOL(tty_insert_flip_string_flags); |
| 317 | |
| 318 | /** |
| 319 | * tty_schedule_flip - push characters to ldisc |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame] | 320 | * @port: tty port to push from |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 321 | * |
| 322 | * Takes any pending buffers and transfers their ownership to the |
| 323 | * ldisc side of the queue. It then schedules those characters for |
| 324 | * processing by the line discipline. |
Ivo Sieben | cee4ad1 | 2012-09-27 14:02:05 +0200 | [diff] [blame] | 325 | * Note that this function can only be used when the low_latency flag |
| 326 | * is unset. Otherwise the workqueue won't be flushed. |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 327 | * |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 328 | * Locking: Takes port->buf.lock |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 329 | */ |
| 330 | |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame] | 331 | void tty_schedule_flip(struct tty_port *port) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 332 | { |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame] | 333 | struct tty_bufhead *buf = &port->buf; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 334 | unsigned long flags; |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame] | 335 | WARN_ON(port->low_latency); |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 336 | |
| 337 | spin_lock_irqsave(&buf->lock, flags); |
| 338 | if (buf->tail != NULL) |
| 339 | buf->tail->commit = buf->tail->used; |
| 340 | spin_unlock_irqrestore(&buf->lock, flags); |
| 341 | schedule_work(&buf->work); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 342 | } |
| 343 | EXPORT_SYMBOL(tty_schedule_flip); |
| 344 | |
| 345 | /** |
| 346 | * tty_prepare_flip_string - make room for characters |
Jiri Slaby | 2f69335 | 2013-01-03 15:53:02 +0100 | [diff] [blame] | 347 | * @port: tty port |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 348 | * @chars: return pointer for character write area |
| 349 | * @size: desired size |
| 350 | * |
| 351 | * Prepare a block of space in the buffer for data. Returns the length |
| 352 | * available and buffer pointer to the space which is now allocated and |
| 353 | * accounted for as ready for normal characters. This is used for drivers |
| 354 | * that need their own block copy routines into the buffer. There is no |
| 355 | * guarantee the buffer is a DMA target! |
| 356 | * |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 357 | * Locking: May call functions taking port->buf.lock |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 358 | */ |
| 359 | |
Jiri Slaby | 2f69335 | 2013-01-03 15:53:02 +0100 | [diff] [blame] | 360 | int tty_prepare_flip_string(struct tty_port *port, unsigned char **chars, |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 361 | size_t size) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 362 | { |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame^] | 363 | int space = tty_buffer_request_room(port, size); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 364 | if (likely(space)) { |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame^] | 365 | struct tty_buffer *tb = port->buf.tail; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 366 | *chars = tb->char_buf_ptr + tb->used; |
| 367 | memset(tb->flag_buf_ptr + tb->used, TTY_NORMAL, space); |
| 368 | tb->used += space; |
| 369 | } |
| 370 | return space; |
| 371 | } |
| 372 | EXPORT_SYMBOL_GPL(tty_prepare_flip_string); |
| 373 | |
| 374 | /** |
| 375 | * tty_prepare_flip_string_flags - make room for characters |
Jiri Slaby | 2f69335 | 2013-01-03 15:53:02 +0100 | [diff] [blame] | 376 | * @port: tty port |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 377 | * @chars: return pointer for character write area |
| 378 | * @flags: return pointer for status flag write area |
| 379 | * @size: desired size |
| 380 | * |
| 381 | * Prepare a block of space in the buffer for data. Returns the length |
| 382 | * available and buffer pointer to the space which is now allocated and |
| 383 | * accounted for as ready for characters. This is used for drivers |
| 384 | * that need their own block copy routines into the buffer. There is no |
| 385 | * guarantee the buffer is a DMA target! |
| 386 | * |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 387 | * Locking: May call functions taking port->buf.lock |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 388 | */ |
| 389 | |
Jiri Slaby | 2f69335 | 2013-01-03 15:53:02 +0100 | [diff] [blame] | 390 | int tty_prepare_flip_string_flags(struct tty_port *port, |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 391 | unsigned char **chars, char **flags, size_t size) |
| 392 | { |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame^] | 393 | int space = tty_buffer_request_room(port, size); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 394 | if (likely(space)) { |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame^] | 395 | struct tty_buffer *tb = port->buf.tail; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 396 | *chars = tb->char_buf_ptr + tb->used; |
| 397 | *flags = tb->flag_buf_ptr + tb->used; |
| 398 | tb->used += space; |
| 399 | } |
| 400 | return space; |
| 401 | } |
| 402 | EXPORT_SYMBOL_GPL(tty_prepare_flip_string_flags); |
| 403 | |
| 404 | |
| 405 | |
| 406 | /** |
| 407 | * flush_to_ldisc |
| 408 | * @work: tty structure passed from work queue. |
| 409 | * |
| 410 | * This routine is called out of the software interrupt to flush data |
| 411 | * from the buffer chain to the line discipline. |
| 412 | * |
| 413 | * Locking: holds tty->buf.lock to guard buffer list. Drops the lock |
| 414 | * while invoking the line discipline receive_buf method. The |
| 415 | * receive_buf method is single threaded for each tty instance. |
| 416 | */ |
| 417 | |
| 418 | static void flush_to_ldisc(struct work_struct *work) |
| 419 | { |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 420 | struct tty_port *port = container_of(work, struct tty_port, buf.work); |
| 421 | struct tty_bufhead *buf = &port->buf; |
| 422 | struct tty_struct *tty; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 423 | unsigned long flags; |
| 424 | struct tty_ldisc *disc; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 425 | |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 426 | tty = port->itty; |
Sasha Levin | cadf748 | 2012-10-25 14:26:35 -0400 | [diff] [blame] | 427 | if (WARN_RATELIMIT(tty == NULL, "tty is NULL\n")) |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 428 | return; |
| 429 | |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 430 | disc = tty_ldisc_ref(tty); |
| 431 | if (disc == NULL) /* !TTY_LDISC */ |
| 432 | return; |
| 433 | |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 434 | spin_lock_irqsave(&buf->lock, flags); |
Linus Torvalds | 4524200 | 2009-10-14 08:59:49 -0700 | [diff] [blame] | 435 | |
Jiri Slaby | 2fc2066 | 2012-10-18 22:26:44 +0200 | [diff] [blame] | 436 | if (!test_and_set_bit(TTYP_FLUSHING, &port->iflags)) { |
Linus Torvalds | 81de916 | 2011-06-08 07:46:30 -0700 | [diff] [blame] | 437 | struct tty_buffer *head; |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 438 | while ((head = buf->head) != NULL) { |
Linus Torvalds | 4524200 | 2009-10-14 08:59:49 -0700 | [diff] [blame] | 439 | int count; |
| 440 | char *char_buf; |
| 441 | unsigned char *flag_buf; |
| 442 | |
| 443 | count = head->commit - head->read; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 444 | if (!count) { |
| 445 | if (head->next == NULL) |
| 446 | break; |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 447 | buf->head = head->next; |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 448 | tty_buffer_free(port, head); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 449 | continue; |
| 450 | } |
| 451 | /* Ldisc or user is trying to flush the buffers |
| 452 | we are feeding to the ldisc, stop feeding the |
| 453 | line discipline as we want to empty the queue */ |
Jiri Slaby | 2fc2066 | 2012-10-18 22:26:44 +0200 | [diff] [blame] | 454 | if (test_bit(TTYP_FLUSHPENDING, &port->iflags)) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 455 | break; |
Linus Torvalds | 81de916 | 2011-06-08 07:46:30 -0700 | [diff] [blame] | 456 | if (!tty->receive_room) |
Linus Torvalds | 55db4c6 | 2011-06-04 06:33:24 +0900 | [diff] [blame] | 457 | break; |
| 458 | if (count > tty->receive_room) |
| 459 | count = tty->receive_room; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 460 | char_buf = head->char_buf_ptr + head->read; |
| 461 | flag_buf = head->flag_buf_ptr + head->read; |
Linus Torvalds | 55db4c6 | 2011-06-04 06:33:24 +0900 | [diff] [blame] | 462 | head->read += count; |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 463 | spin_unlock_irqrestore(&buf->lock, flags); |
Linus Torvalds | 55db4c6 | 2011-06-04 06:33:24 +0900 | [diff] [blame] | 464 | disc->ops->receive_buf(tty, char_buf, |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 465 | flag_buf, count); |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 466 | spin_lock_irqsave(&buf->lock, flags); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 467 | } |
Jiri Slaby | 2fc2066 | 2012-10-18 22:26:44 +0200 | [diff] [blame] | 468 | clear_bit(TTYP_FLUSHING, &port->iflags); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 469 | } |
Linus Torvalds | 4524200 | 2009-10-14 08:59:49 -0700 | [diff] [blame] | 470 | |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 471 | /* We may have a deferred request to flush the input buffer, |
| 472 | if so pull the chain under the lock and empty the queue */ |
Jiri Slaby | 2fc2066 | 2012-10-18 22:26:44 +0200 | [diff] [blame] | 473 | if (test_bit(TTYP_FLUSHPENDING, &port->iflags)) { |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 474 | __tty_buffer_flush(port); |
Jiri Slaby | 2fc2066 | 2012-10-18 22:26:44 +0200 | [diff] [blame] | 475 | clear_bit(TTYP_FLUSHPENDING, &port->iflags); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 476 | wake_up(&tty->read_wait); |
| 477 | } |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 478 | spin_unlock_irqrestore(&buf->lock, flags); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 479 | |
| 480 | tty_ldisc_deref(disc); |
| 481 | } |
| 482 | |
| 483 | /** |
OGAWA Hirofumi | e043e42 | 2009-07-29 12:15:56 -0700 | [diff] [blame] | 484 | * tty_flush_to_ldisc |
| 485 | * @tty: tty to push |
| 486 | * |
| 487 | * Push the terminal flip buffers to the line discipline. |
| 488 | * |
| 489 | * Must not be called from IRQ context. |
| 490 | */ |
| 491 | void tty_flush_to_ldisc(struct tty_struct *tty) |
| 492 | { |
Jiri Slaby | d6c53c0 | 2013-01-03 15:53:05 +0100 | [diff] [blame] | 493 | if (!tty->port->low_latency) |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 494 | flush_work(&tty->port->buf.work); |
OGAWA Hirofumi | e043e42 | 2009-07-29 12:15:56 -0700 | [diff] [blame] | 495 | } |
| 496 | |
| 497 | /** |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 498 | * tty_flip_buffer_push - terminal |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame] | 499 | * @port: tty port to push |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 500 | * |
| 501 | * Queue a push of the terminal flip buffers to the line discipline. This |
Jiri Slaby | d6c53c0 | 2013-01-03 15:53:05 +0100 | [diff] [blame] | 502 | * function must not be called from IRQ context if port->low_latency is |
| 503 | * set. |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 504 | * |
| 505 | * In the event of the queue being busy for flipping the work will be |
| 506 | * held off and retried later. |
| 507 | * |
| 508 | * Locking: tty buffer lock. Driver locks in low latency mode. |
| 509 | */ |
| 510 | |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame] | 511 | void tty_flip_buffer_push(struct tty_port *port) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 512 | { |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame] | 513 | struct tty_bufhead *buf = &port->buf; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 514 | unsigned long flags; |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 515 | |
| 516 | spin_lock_irqsave(&buf->lock, flags); |
| 517 | if (buf->tail != NULL) |
| 518 | buf->tail->commit = buf->tail->used; |
| 519 | spin_unlock_irqrestore(&buf->lock, flags); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 520 | |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame] | 521 | if (port->low_latency) |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 522 | flush_to_ldisc(&buf->work); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 523 | else |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 524 | schedule_work(&buf->work); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 525 | } |
| 526 | EXPORT_SYMBOL(tty_flip_buffer_push); |
| 527 | |
| 528 | /** |
| 529 | * tty_buffer_init - prepare a tty buffer structure |
| 530 | * @tty: tty to initialise |
| 531 | * |
| 532 | * Set up the initial state of the buffer management for a tty device. |
| 533 | * Must be called before the other tty buffer functions are used. |
| 534 | * |
| 535 | * Locking: none |
| 536 | */ |
| 537 | |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 538 | void tty_buffer_init(struct tty_port *port) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 539 | { |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 540 | struct tty_bufhead *buf = &port->buf; |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 541 | |
| 542 | spin_lock_init(&buf->lock); |
| 543 | buf->head = NULL; |
| 544 | buf->tail = NULL; |
| 545 | buf->free = NULL; |
| 546 | buf->memory_used = 0; |
| 547 | INIT_WORK(&buf->work, flush_to_ldisc); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 548 | } |
| 549 | |