crisv10: use counts from tty_port
[deliverable/linux.git] / drivers / tty / tty_port.c
CommitLineData
9e48565d
AC
1/*
2 * Tty port functions
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>
3e61696b 10#include <linux/serial.h>
9e48565d
AC
11#include <linux/timer.h>
12#include <linux/string.h>
13#include <linux/slab.h>
14#include <linux/sched.h>
15#include <linux/init.h>
16#include <linux/wait.h>
17#include <linux/bitops.h>
18#include <linux/delay.h>
19#include <linux/module.h>
20
21void tty_port_init(struct tty_port *port)
22{
23 memset(port, 0, sizeof(*port));
ecbbfd44 24 tty_buffer_init(port);
9e48565d
AC
25 init_waitqueue_head(&port->open_wait);
26 init_waitqueue_head(&port->close_wait);
bdc04e31 27 init_waitqueue_head(&port->delta_msr_wait);
9e48565d 28 mutex_init(&port->mutex);
44e4909e 29 mutex_init(&port->buf_mutex);
4a90f09b 30 spin_lock_init(&port->lock);
9e48565d
AC
31 port->close_delay = (50 * HZ) / 100;
32 port->closing_wait = (3000 * HZ) / 100;
568aafc6 33 kref_init(&port->kref);
9e48565d
AC
34}
35EXPORT_SYMBOL(tty_port_init);
36
2cb4ca02
JS
37/**
38 * tty_port_link_device - link tty and tty_port
39 * @port: tty_port of the device
40 * @driver: tty_driver for this device
41 * @index: index of the tty
42 *
43 * Provide the tty layer wit ha link from a tty (specified by @index) to a
44 * tty_port (@port). Use this only if neither tty_port_register_device nor
45 * tty_port_install is used in the driver. If used, this has to be called before
46 * tty_register_driver.
47 */
48void tty_port_link_device(struct tty_port *port,
49 struct tty_driver *driver, unsigned index)
50{
51 if (WARN_ON(index >= driver->num))
52 return;
53 driver->ports[index] = port;
54}
55EXPORT_SYMBOL_GPL(tty_port_link_device);
56
72a33bf5
JS
57/**
58 * tty_port_register_device - register tty device
59 * @port: tty_port of the device
60 * @driver: tty_driver for this device
61 * @index: index of the tty
62 * @device: parent if exists, otherwise NULL
63 *
64 * It is the same as tty_register_device except the provided @port is linked to
65 * a concrete tty specified by @index. Use this or tty_port_install (or both).
66 * Call tty_port_link_device as a last resort.
67 */
057eb856
JS
68struct device *tty_port_register_device(struct tty_port *port,
69 struct tty_driver *driver, unsigned index,
70 struct device *device)
71{
2cb4ca02 72 tty_port_link_device(port, driver, index);
057eb856
JS
73 return tty_register_device(driver, index, device);
74}
75EXPORT_SYMBOL_GPL(tty_port_register_device);
76
b1b79916
TH
77/**
78 * tty_port_register_device_attr - register tty device
79 * @port: tty_port of the device
80 * @driver: tty_driver for this device
81 * @index: index of the tty
82 * @device: parent if exists, otherwise NULL
83 * @drvdata: Driver data to be set to device.
84 * @attr_grp: Attribute group to be set on device.
85 *
86 * It is the same as tty_register_device_attr except the provided @port is
87 * linked to a concrete tty specified by @index. Use this or tty_port_install
88 * (or both). Call tty_port_link_device as a last resort.
89 */
90struct device *tty_port_register_device_attr(struct tty_port *port,
91 struct tty_driver *driver, unsigned index,
92 struct device *device, void *drvdata,
93 const struct attribute_group **attr_grp)
94{
95 tty_port_link_device(port, driver, index);
96 return tty_register_device_attr(driver, index, device, drvdata,
97 attr_grp);
98}
99EXPORT_SYMBOL_GPL(tty_port_register_device_attr);
100
9e48565d
AC
101int tty_port_alloc_xmit_buf(struct tty_port *port)
102{
103 /* We may sleep in get_zeroed_page() */
44e4909e 104 mutex_lock(&port->buf_mutex);
9e48565d
AC
105 if (port->xmit_buf == NULL)
106 port->xmit_buf = (unsigned char *)get_zeroed_page(GFP_KERNEL);
44e4909e 107 mutex_unlock(&port->buf_mutex);
9e48565d
AC
108 if (port->xmit_buf == NULL)
109 return -ENOMEM;
110 return 0;
111}
112EXPORT_SYMBOL(tty_port_alloc_xmit_buf);
113
114void tty_port_free_xmit_buf(struct tty_port *port)
115{
44e4909e 116 mutex_lock(&port->buf_mutex);
9e48565d
AC
117 if (port->xmit_buf != NULL) {
118 free_page((unsigned long)port->xmit_buf);
119 port->xmit_buf = NULL;
120 }
44e4909e 121 mutex_unlock(&port->buf_mutex);
9e48565d
AC
122}
123EXPORT_SYMBOL(tty_port_free_xmit_buf);
124
de274bfe
JS
125/**
126 * tty_port_destroy -- destroy inited port
127 * @port: tty port to be doestroyed
128 *
129 * When a port was initialized using tty_port_init, one has to destroy the
130 * port by this function. Either indirectly by using tty_port refcounting
131 * (tty_port_put) or directly if refcounting is not used.
132 */
133void tty_port_destroy(struct tty_port *port)
134{
135 tty_buffer_free_all(port);
136}
137EXPORT_SYMBOL(tty_port_destroy);
138
568aafc6
AC
139static void tty_port_destructor(struct kref *kref)
140{
141 struct tty_port *port = container_of(kref, struct tty_port, kref);
142 if (port->xmit_buf)
143 free_page((unsigned long)port->xmit_buf);
de274bfe 144 tty_port_destroy(port);
81c79838 145 if (port->ops && port->ops->destruct)
568aafc6
AC
146 port->ops->destruct(port);
147 else
148 kfree(port);
149}
150
151void tty_port_put(struct tty_port *port)
152{
153 if (port)
154 kref_put(&port->kref, tty_port_destructor);
155}
156EXPORT_SYMBOL(tty_port_put);
9e48565d 157
4a90f09b
AC
158/**
159 * tty_port_tty_get - get a tty reference
160 * @port: tty port
161 *
162 * Return a refcount protected tty instance or NULL if the port is not
163 * associated with a tty (eg due to close or hangup)
164 */
165
166struct tty_struct *tty_port_tty_get(struct tty_port *port)
167{
168 unsigned long flags;
169 struct tty_struct *tty;
170
171 spin_lock_irqsave(&port->lock, flags);
172 tty = tty_kref_get(port->tty);
173 spin_unlock_irqrestore(&port->lock, flags);
174 return tty;
175}
176EXPORT_SYMBOL(tty_port_tty_get);
177
178/**
179 * tty_port_tty_set - set the tty of a port
180 * @port: tty port
181 * @tty: the tty
182 *
183 * Associate the port and tty pair. Manages any internal refcounts.
184 * Pass NULL to deassociate a port
185 */
186
187void tty_port_tty_set(struct tty_port *port, struct tty_struct *tty)
188{
189 unsigned long flags;
190
191 spin_lock_irqsave(&port->lock, flags);
192 if (port->tty)
193 tty_kref_put(port->tty);
cb4bca35 194 port->tty = tty_kref_get(tty);
4a90f09b
AC
195 spin_unlock_irqrestore(&port->lock, flags);
196}
197EXPORT_SYMBOL(tty_port_tty_set);
31f35939 198
7ca0ff9a
AC
199static void tty_port_shutdown(struct tty_port *port)
200{
64bc3979 201 mutex_lock(&port->mutex);
336cee42 202 if (port->ops->shutdown && !port->console &&
1f5c13fa 203 test_and_clear_bit(ASYNCB_INITIALIZED, &port->flags))
7ca0ff9a 204 port->ops->shutdown(port);
64bc3979 205 mutex_unlock(&port->mutex);
7ca0ff9a
AC
206}
207
3e61696b
AC
208/**
209 * tty_port_hangup - hangup helper
210 * @port: tty port
211 *
212 * Perform port level tty hangup flag and count changes. Drop the tty
213 * reference.
214 */
215
216void tty_port_hangup(struct tty_port *port)
217{
218 unsigned long flags;
219
220 spin_lock_irqsave(&port->lock, flags);
221 port->count = 0;
222 port->flags &= ~ASYNC_NORMAL_ACTIVE;
d74e8286
AC
223 if (port->tty) {
224 set_bit(TTY_IO_ERROR, &port->tty->flags);
3e61696b 225 tty_kref_put(port->tty);
d74e8286 226 }
3e61696b
AC
227 port->tty = NULL;
228 spin_unlock_irqrestore(&port->lock, flags);
229 wake_up_interruptible(&port->open_wait);
bdc04e31 230 wake_up_interruptible(&port->delta_msr_wait);
7ca0ff9a 231 tty_port_shutdown(port);
3e61696b
AC
232}
233EXPORT_SYMBOL(tty_port_hangup);
234
aa27a094
JS
235/**
236 * tty_port_tty_hangup - helper to hang up a tty
237 *
238 * @port: tty port
239 * @check_clocal: hang only ttys with CLOCAL unset?
240 */
241void tty_port_tty_hangup(struct tty_port *port, bool check_clocal)
242{
243 struct tty_struct *tty = tty_port_tty_get(port);
244
245 if (tty && (!check_clocal || !C_CLOCAL(tty))) {
246 tty_hangup(tty);
247 tty_kref_put(tty);
248 }
249}
250EXPORT_SYMBOL_GPL(tty_port_tty_hangup);
251
6aad04f2
JS
252/**
253 * tty_port_tty_wakeup - helper to wake up a tty
254 *
255 * @port: tty port
256 */
257void tty_port_tty_wakeup(struct tty_port *port)
258{
259 struct tty_struct *tty = tty_port_tty_get(port);
260
261 if (tty) {
262 tty_wakeup(tty);
263 tty_kref_put(tty);
264 }
265}
266EXPORT_SYMBOL_GPL(tty_port_tty_wakeup);
267
31f35939
AC
268/**
269 * tty_port_carrier_raised - carrier raised check
270 * @port: tty port
271 *
272 * Wrapper for the carrier detect logic. For the moment this is used
273 * to hide some internal details. This will eventually become entirely
274 * internal to the tty port.
275 */
276
277int tty_port_carrier_raised(struct tty_port *port)
278{
279 if (port->ops->carrier_raised == NULL)
280 return 1;
281 return port->ops->carrier_raised(port);
282}
283EXPORT_SYMBOL(tty_port_carrier_raised);
5d951fb4
AC
284
285/**
fcc8ac18 286 * tty_port_raise_dtr_rts - Raise DTR/RTS
5d951fb4
AC
287 * @port: tty port
288 *
289 * Wrapper for the DTR/RTS raise logic. For the moment this is used
290 * to hide some internal details. This will eventually become entirely
291 * internal to the tty port.
292 */
293
294void tty_port_raise_dtr_rts(struct tty_port *port)
295{
fcc8ac18
AC
296 if (port->ops->dtr_rts)
297 port->ops->dtr_rts(port, 1);
5d951fb4
AC
298}
299EXPORT_SYMBOL(tty_port_raise_dtr_rts);
36c621d8 300
fcc8ac18
AC
301/**
302 * tty_port_lower_dtr_rts - Lower DTR/RTS
303 * @port: tty port
304 *
305 * Wrapper for the DTR/RTS raise logic. For the moment this is used
306 * to hide some internal details. This will eventually become entirely
307 * internal to the tty port.
308 */
309
310void tty_port_lower_dtr_rts(struct tty_port *port)
311{
312 if (port->ops->dtr_rts)
313 port->ops->dtr_rts(port, 0);
314}
315EXPORT_SYMBOL(tty_port_lower_dtr_rts);
316
36c621d8
AC
317/**
318 * tty_port_block_til_ready - Waiting logic for tty open
319 * @port: the tty port being opened
320 * @tty: the tty device being bound
321 * @filp: the file pointer of the opener
322 *
323 * Implement the core POSIX/SuS tty behaviour when opening a tty device.
324 * Handles:
325 * - hangup (both before and during)
326 * - non blocking open
327 * - rts/dtr/dcd
328 * - signals
329 * - port flags and counts
330 *
331 * The passed tty_port must implement the carrier_raised method if it can
fcc8ac18 332 * do carrier detect and the dtr_rts method if it supports software
36c621d8
AC
333 * management of these lines. Note that the dtr/rts raise is done each
334 * iteration as a hangup may have previously dropped them while we wait.
335 */
d774a56d 336
36c621d8
AC
337int tty_port_block_til_ready(struct tty_port *port,
338 struct tty_struct *tty, struct file *filp)
339{
340 int do_clocal = 0, retval;
341 unsigned long flags;
6af9a43d 342 DEFINE_WAIT(wait);
36c621d8
AC
343
344 /* block if port is in the process of being closed */
345 if (tty_hung_up_p(filp) || port->flags & ASYNC_CLOSING) {
89c8d91e 346 wait_event_interruptible_tty(tty, port->close_wait,
5fc5b42a 347 !(port->flags & ASYNC_CLOSING));
36c621d8
AC
348 if (port->flags & ASYNC_HUP_NOTIFY)
349 return -EAGAIN;
350 else
351 return -ERESTARTSYS;
352 }
353
354 /* if non-blocking mode is set we can pass directly to open unless
355 the port has just hung up or is in another error state */
8627b96d
AC
356 if (tty->flags & (1 << TTY_IO_ERROR)) {
357 port->flags |= ASYNC_NORMAL_ACTIVE;
358 return 0;
359 }
360 if (filp->f_flags & O_NONBLOCK) {
4175f3e3 361 /* Indicate we are open */
adc8d746 362 if (tty->termios.c_cflag & CBAUD)
4175f3e3 363 tty_port_raise_dtr_rts(port);
36c621d8
AC
364 port->flags |= ASYNC_NORMAL_ACTIVE;
365 return 0;
366 }
367
368 if (C_CLOCAL(tty))
369 do_clocal = 1;
370
371 /* Block waiting until we can proceed. We may need to wait for the
372 carrier, but we must also wait for any close that is in progress
373 before the next open may complete */
374
375 retval = 0;
36c621d8
AC
376
377 /* The port lock protects the port counts */
378 spin_lock_irqsave(&port->lock, flags);
379 if (!tty_hung_up_p(filp))
380 port->count--;
381 port->blocked_open++;
382 spin_unlock_irqrestore(&port->lock, flags);
383
384 while (1) {
385 /* Indicate we are open */
adc8d746 386 if (tty->termios.c_cflag & CBAUD)
7834909f 387 tty_port_raise_dtr_rts(port);
36c621d8 388
3e3b5c08 389 prepare_to_wait(&port->open_wait, &wait, TASK_INTERRUPTIBLE);
d774a56d
AC
390 /* Check for a hangup or uninitialised port.
391 Return accordingly */
36c621d8
AC
392 if (tty_hung_up_p(filp) || !(port->flags & ASYNC_INITIALIZED)) {
393 if (port->flags & ASYNC_HUP_NOTIFY)
394 retval = -EAGAIN;
395 else
396 retval = -ERESTARTSYS;
397 break;
398 }
0eee50af
JS
399 /*
400 * Probe the carrier. For devices with no carrier detect
401 * tty_port_carrier_raised will always return true.
402 * Never ask drivers if CLOCAL is set, this causes troubles
403 * on some hardware.
404 */
36c621d8 405 if (!(port->flags & ASYNC_CLOSING) &&
0eee50af 406 (do_clocal || tty_port_carrier_raised(port)))
36c621d8
AC
407 break;
408 if (signal_pending(current)) {
409 retval = -ERESTARTSYS;
410 break;
411 }
89c8d91e 412 tty_unlock(tty);
36c621d8 413 schedule();
89c8d91e 414 tty_lock(tty);
36c621d8 415 }
3e3b5c08 416 finish_wait(&port->open_wait, &wait);
36c621d8
AC
417
418 /* Update counts. A parallel hangup will have set count to zero and
419 we must not mess that up further */
420 spin_lock_irqsave(&port->lock, flags);
421 if (!tty_hung_up_p(filp))
422 port->count++;
423 port->blocked_open--;
424 if (retval == 0)
425 port->flags |= ASYNC_NORMAL_ACTIVE;
426 spin_unlock_irqrestore(&port->lock, flags);
ecc2e05e 427 return retval;
36c621d8
AC
428}
429EXPORT_SYMBOL(tty_port_block_til_ready);
430
d774a56d
AC
431int tty_port_close_start(struct tty_port *port,
432 struct tty_struct *tty, struct file *filp)
a6614999
AC
433{
434 unsigned long flags;
435
436 spin_lock_irqsave(&port->lock, flags);
437 if (tty_hung_up_p(filp)) {
438 spin_unlock_irqrestore(&port->lock, flags);
439 return 0;
440 }
441
d774a56d 442 if (tty->count == 1 && port->count != 1) {
a6614999
AC
443 printk(KERN_WARNING
444 "tty_port_close_start: tty->count = 1 port count = %d.\n",
445 port->count);
446 port->count = 1;
447 }
448 if (--port->count < 0) {
449 printk(KERN_WARNING "tty_port_close_start: count = %d\n",
450 port->count);
451 port->count = 0;
452 }
453
454 if (port->count) {
455 spin_unlock_irqrestore(&port->lock, flags);
7ca0ff9a
AC
456 if (port->ops->drop)
457 port->ops->drop(port);
a6614999
AC
458 return 0;
459 }
1f5c13fa 460 set_bit(ASYNCB_CLOSING, &port->flags);
a6614999
AC
461 tty->closing = 1;
462 spin_unlock_irqrestore(&port->lock, flags);
fba85e01
AC
463 /* Don't block on a stalled port, just pull the chain */
464 if (tty->flow_stopped)
465 tty_driver_flush_buffer(tty);
7ca0ff9a 466 if (test_bit(ASYNCB_INITIALIZED, &port->flags) &&
6ed1dbae 467 port->closing_wait != ASYNC_CLOSING_WAIT_NONE)
424cc039 468 tty_wait_until_sent_from_close(tty, port->closing_wait);
1ec739be
AC
469 if (port->drain_delay) {
470 unsigned int bps = tty_get_baud_rate(tty);
471 long timeout;
472
473 if (bps > 1200)
d774a56d
AC
474 timeout = max_t(long,
475 (HZ * 10 * port->drain_delay) / bps, HZ / 10);
1ec739be
AC
476 else
477 timeout = 2 * HZ;
478 schedule_timeout_interruptible(timeout);
479 }
e707c35c
AC
480 /* Flush the ldisc buffering */
481 tty_ldisc_flush(tty);
482
483 /* Drop DTR/RTS if HUPCL is set. This causes any attached modem to
484 hang up the line */
adc8d746 485 if (tty->termios.c_cflag & HUPCL)
e707c35c
AC
486 tty_port_lower_dtr_rts(port);
487
7ca0ff9a
AC
488 /* Don't call port->drop for the last reference. Callers will want
489 to drop the last active reference in ->shutdown() or the tty
490 shutdown path */
a6614999
AC
491 return 1;
492}
493EXPORT_SYMBOL(tty_port_close_start);
494
495void tty_port_close_end(struct tty_port *port, struct tty_struct *tty)
496{
497 unsigned long flags;
498
a6614999
AC
499 spin_lock_irqsave(&port->lock, flags);
500 tty->closing = 0;
501
502 if (port->blocked_open) {
503 spin_unlock_irqrestore(&port->lock, flags);
504 if (port->close_delay) {
505 msleep_interruptible(
506 jiffies_to_msecs(port->close_delay));
507 }
508 spin_lock_irqsave(&port->lock, flags);
509 wake_up_interruptible(&port->open_wait);
510 }
511 port->flags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_CLOSING);
512 wake_up_interruptible(&port->close_wait);
513 spin_unlock_irqrestore(&port->lock, flags);
514}
515EXPORT_SYMBOL(tty_port_close_end);
7ca0ff9a
AC
516
517void tty_port_close(struct tty_port *port, struct tty_struct *tty,
518 struct file *filp)
519{
520 if (tty_port_close_start(port, tty, filp) == 0)
521 return;
522 tty_port_shutdown(port);
d74e8286 523 set_bit(TTY_IO_ERROR, &tty->flags);
7ca0ff9a
AC
524 tty_port_close_end(port, tty);
525 tty_port_tty_set(port, NULL);
526}
527EXPORT_SYMBOL(tty_port_close);
64bc3979 528
72a33bf5
JS
529/**
530 * tty_port_install - generic tty->ops->install handler
531 * @port: tty_port of the device
532 * @driver: tty_driver for this device
533 * @tty: tty to be installed
534 *
535 * It is the same as tty_standard_install except the provided @port is linked
536 * to a concrete tty specified by @tty. Use this or tty_port_register_device
537 * (or both). Call tty_port_link_device as a last resort.
538 */
695586ca
JS
539int tty_port_install(struct tty_port *port, struct tty_driver *driver,
540 struct tty_struct *tty)
541{
542 tty->port = port;
543 return tty_standard_install(driver, tty);
544}
545EXPORT_SYMBOL_GPL(tty_port_install);
546
64bc3979 547int tty_port_open(struct tty_port *port, struct tty_struct *tty,
d774a56d 548 struct file *filp)
64bc3979
AC
549{
550 spin_lock_irq(&port->lock);
551 if (!tty_hung_up_p(filp))
552 ++port->count;
553 spin_unlock_irq(&port->lock);
554 tty_port_tty_set(port, tty);
555
556 /*
557 * Do the device-specific open only if the hardware isn't
558 * already initialized. Serialize open and shutdown using the
559 * port mutex.
560 */
561
562 mutex_lock(&port->mutex);
563
564 if (!test_bit(ASYNCB_INITIALIZED, &port->flags)) {
a9a37ec3 565 clear_bit(TTY_IO_ERROR, &tty->flags);
64bc3979
AC
566 if (port->ops->activate) {
567 int retval = port->ops->activate(port, tty);
568 if (retval) {
d774a56d
AC
569 mutex_unlock(&port->mutex);
570 return retval;
571 }
572 }
64bc3979
AC
573 set_bit(ASYNCB_INITIALIZED, &port->flags);
574 }
575 mutex_unlock(&port->mutex);
576 return tty_port_block_til_ready(port, tty, filp);
577}
578
579EXPORT_SYMBOL(tty_port_open);
This page took 0.330335 seconds and 5 git commands to generate.