blob: 8bb757c62ee2044746cd9e93a052325bc28907db [file] [log] [blame]
Alan Cox9e485652008-10-13 10:37:07 +01001/*
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>
Alan Cox3e616962009-01-02 13:45:26 +000010#include <linux/serial.h>
Alan Cox9e485652008-10-13 10:37:07 +010011#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));
Jiri Slabyecbbfd42012-10-18 22:26:47 +020024 tty_buffer_init(port);
Alan Cox9e485652008-10-13 10:37:07 +010025 init_waitqueue_head(&port->open_wait);
26 init_waitqueue_head(&port->close_wait);
Alan Coxbdc04e32009-09-19 13:13:31 -070027 init_waitqueue_head(&port->delta_msr_wait);
Alan Cox9e485652008-10-13 10:37:07 +010028 mutex_init(&port->mutex);
Alan Cox44e49092009-11-30 13:16:41 +000029 mutex_init(&port->buf_mutex);
Alan Cox4a90f092008-10-13 10:39:46 +010030 spin_lock_init(&port->lock);
Alan Cox9e485652008-10-13 10:37:07 +010031 port->close_delay = (50 * HZ) / 100;
32 port->closing_wait = (3000 * HZ) / 100;
Alan Cox568aafc2009-11-30 13:17:14 +000033 kref_init(&port->kref);
Alan Cox9e485652008-10-13 10:37:07 +010034}
35EXPORT_SYMBOL(tty_port_init);
36
Jiri Slaby72a33bf2012-08-07 21:47:49 +020037/**
Jiri Slaby2cb4ca02012-08-07 21:47:50 +020038 * 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
57/**
Jiri Slaby72a33bf2012-08-07 21:47:49 +020058 * 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 */
Jiri Slaby057eb852012-06-04 13:35:37 +020068struct device *tty_port_register_device(struct tty_port *port,
69 struct tty_driver *driver, unsigned index,
70 struct device *device)
71{
Jiri Slaby2cb4ca02012-08-07 21:47:50 +020072 tty_port_link_device(port, driver, index);
Jiri Slaby057eb852012-06-04 13:35:37 +020073 return tty_register_device(driver, index, device);
74}
75EXPORT_SYMBOL_GPL(tty_port_register_device);
76
Tomas Hlavacekb1b79912012-09-06 23:17:47 +020077/**
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
Alan Cox9e485652008-10-13 10:37:07 +0100101int tty_port_alloc_xmit_buf(struct tty_port *port)
102{
103 /* We may sleep in get_zeroed_page() */
Alan Cox44e49092009-11-30 13:16:41 +0000104 mutex_lock(&port->buf_mutex);
Alan Cox9e485652008-10-13 10:37:07 +0100105 if (port->xmit_buf == NULL)
106 port->xmit_buf = (unsigned char *)get_zeroed_page(GFP_KERNEL);
Alan Cox44e49092009-11-30 13:16:41 +0000107 mutex_unlock(&port->buf_mutex);
Alan Cox9e485652008-10-13 10:37:07 +0100108 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{
Alan Cox44e49092009-11-30 13:16:41 +0000116 mutex_lock(&port->buf_mutex);
Alan Cox9e485652008-10-13 10:37:07 +0100117 if (port->xmit_buf != NULL) {
118 free_page((unsigned long)port->xmit_buf);
119 port->xmit_buf = NULL;
120 }
Alan Cox44e49092009-11-30 13:16:41 +0000121 mutex_unlock(&port->buf_mutex);
Alan Cox9e485652008-10-13 10:37:07 +0100122}
123EXPORT_SYMBOL(tty_port_free_xmit_buf);
124
Jiri Slabyde274bf2012-11-15 09:49:54 +0100125/**
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
Alan Cox568aafc2009-11-30 13:17:14 +0000139static 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);
Jiri Slabyde274bf2012-11-15 09:49:54 +0100144 tty_port_destroy(port);
Jiri Slaby81c79832012-11-15 09:49:49 +0100145 if (port->ops && port->ops->destruct)
Alan Cox568aafc2009-11-30 13:17:14 +0000146 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);
Alan Cox9e485652008-10-13 10:37:07 +0100157
Alan Cox4a90f092008-10-13 10:39:46 +0100158/**
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);
Alan Coxcb4bca32008-10-21 13:47:44 +0100194 port->tty = tty_kref_get(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100195 spin_unlock_irqrestore(&port->lock, flags);
196}
197EXPORT_SYMBOL(tty_port_tty_set);
Alan Cox31f35932009-01-02 13:45:05 +0000198
Alan Cox7ca0ff92009-09-19 13:13:20 -0700199static void tty_port_shutdown(struct tty_port *port)
200{
Alan Cox64bc3972009-10-06 16:06:11 +0100201 mutex_lock(&port->mutex);
Jason Wessel336cee42010-03-08 21:50:11 -0600202 if (port->ops->shutdown && !port->console &&
Alan Stern1f5c13f2009-08-20 15:23:47 -0400203 test_and_clear_bit(ASYNCB_INITIALIZED, &port->flags))
Alan Cox7ca0ff92009-09-19 13:13:20 -0700204 port->ops->shutdown(port);
Alan Cox64bc3972009-10-06 16:06:11 +0100205 mutex_unlock(&port->mutex);
Alan Cox7ca0ff92009-09-19 13:13:20 -0700206}
207
Alan Cox31f35932009-01-02 13:45:05 +0000208/**
Alan Cox3e616962009-01-02 13:45:26 +0000209 * 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;
Alan Coxd74e8282009-11-30 13:16:52 +0000223 if (port->tty) {
224 set_bit(TTY_IO_ERROR, &port->tty->flags);
Alan Cox3e616962009-01-02 13:45:26 +0000225 tty_kref_put(port->tty);
Alan Coxd74e8282009-11-30 13:16:52 +0000226 }
Alan Cox3e616962009-01-02 13:45:26 +0000227 port->tty = NULL;
228 spin_unlock_irqrestore(&port->lock, flags);
229 wake_up_interruptible(&port->open_wait);
Alan Coxbdc04e32009-09-19 13:13:31 -0700230 wake_up_interruptible(&port->delta_msr_wait);
Alan Cox7ca0ff92009-09-19 13:13:20 -0700231 tty_port_shutdown(port);
Alan Cox3e616962009-01-02 13:45:26 +0000232}
233EXPORT_SYMBOL(tty_port_hangup);
234
235/**
Jiri Slaby6aad04f2013-03-07 13:12:29 +0100236 * tty_port_tty_wakeup - helper to wake up a tty
237 *
238 * @port: tty port
239 */
240void tty_port_tty_wakeup(struct tty_port *port)
241{
242 struct tty_struct *tty = tty_port_tty_get(port);
243
244 if (tty) {
245 tty_wakeup(tty);
246 tty_kref_put(tty);
247 }
248}
249EXPORT_SYMBOL_GPL(tty_port_tty_wakeup);
250
251/**
Alan Cox31f35932009-01-02 13:45:05 +0000252 * tty_port_carrier_raised - carrier raised check
253 * @port: tty port
254 *
255 * Wrapper for the carrier detect logic. For the moment this is used
256 * to hide some internal details. This will eventually become entirely
257 * internal to the tty port.
258 */
259
260int tty_port_carrier_raised(struct tty_port *port)
261{
262 if (port->ops->carrier_raised == NULL)
263 return 1;
264 return port->ops->carrier_raised(port);
265}
266EXPORT_SYMBOL(tty_port_carrier_raised);
Alan Cox5d951fb2009-01-02 13:45:19 +0000267
268/**
Alan Coxfcc8ac12009-06-11 12:24:17 +0100269 * tty_port_raise_dtr_rts - Raise DTR/RTS
Alan Cox5d951fb2009-01-02 13:45:19 +0000270 * @port: tty port
271 *
272 * Wrapper for the DTR/RTS raise 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
277void tty_port_raise_dtr_rts(struct tty_port *port)
278{
Alan Coxfcc8ac12009-06-11 12:24:17 +0100279 if (port->ops->dtr_rts)
280 port->ops->dtr_rts(port, 1);
Alan Cox5d951fb2009-01-02 13:45:19 +0000281}
282EXPORT_SYMBOL(tty_port_raise_dtr_rts);
Alan Cox36c621d2009-01-02 13:46:10 +0000283
284/**
Alan Coxfcc8ac12009-06-11 12:24:17 +0100285 * tty_port_lower_dtr_rts - Lower DTR/RTS
286 * @port: tty port
287 *
288 * Wrapper for the DTR/RTS raise logic. For the moment this is used
289 * to hide some internal details. This will eventually become entirely
290 * internal to the tty port.
291 */
292
293void tty_port_lower_dtr_rts(struct tty_port *port)
294{
295 if (port->ops->dtr_rts)
296 port->ops->dtr_rts(port, 0);
297}
298EXPORT_SYMBOL(tty_port_lower_dtr_rts);
299
300/**
Alan Cox36c621d2009-01-02 13:46:10 +0000301 * tty_port_block_til_ready - Waiting logic for tty open
302 * @port: the tty port being opened
303 * @tty: the tty device being bound
304 * @filp: the file pointer of the opener
305 *
306 * Implement the core POSIX/SuS tty behaviour when opening a tty device.
307 * Handles:
308 * - hangup (both before and during)
309 * - non blocking open
310 * - rts/dtr/dcd
311 * - signals
312 * - port flags and counts
313 *
314 * The passed tty_port must implement the carrier_raised method if it can
Alan Coxfcc8ac12009-06-11 12:24:17 +0100315 * do carrier detect and the dtr_rts method if it supports software
Alan Cox36c621d2009-01-02 13:46:10 +0000316 * management of these lines. Note that the dtr/rts raise is done each
317 * iteration as a hangup may have previously dropped them while we wait.
318 */
Alan Coxd774a562009-10-06 16:06:21 +0100319
Alan Cox36c621d2009-01-02 13:46:10 +0000320int tty_port_block_til_ready(struct tty_port *port,
321 struct tty_struct *tty, struct file *filp)
322{
323 int do_clocal = 0, retval;
324 unsigned long flags;
Jiri Slaby6af9a432009-06-24 18:35:05 +0100325 DEFINE_WAIT(wait);
Alan Cox36c621d2009-01-02 13:46:10 +0000326
327 /* block if port is in the process of being closed */
328 if (tty_hung_up_p(filp) || port->flags & ASYNC_CLOSING) {
Alan Cox89c8d912012-08-08 16:30:13 +0100329 wait_event_interruptible_tty(tty, port->close_wait,
Jiri Slaby5fc5b422009-06-11 14:32:42 +0100330 !(port->flags & ASYNC_CLOSING));
Alan Cox36c621d2009-01-02 13:46:10 +0000331 if (port->flags & ASYNC_HUP_NOTIFY)
332 return -EAGAIN;
333 else
334 return -ERESTARTSYS;
335 }
336
337 /* if non-blocking mode is set we can pass directly to open unless
338 the port has just hung up or is in another error state */
Alan Cox8627b962009-11-18 14:12:58 +0000339 if (tty->flags & (1 << TTY_IO_ERROR)) {
340 port->flags |= ASYNC_NORMAL_ACTIVE;
341 return 0;
342 }
343 if (filp->f_flags & O_NONBLOCK) {
Alan Cox4175f3e2009-10-28 21:12:32 +0100344 /* Indicate we are open */
Alan Coxadc8d742012-07-14 15:31:47 +0100345 if (tty->termios.c_cflag & CBAUD)
Alan Cox4175f3e2009-10-28 21:12:32 +0100346 tty_port_raise_dtr_rts(port);
Alan Cox36c621d2009-01-02 13:46:10 +0000347 port->flags |= ASYNC_NORMAL_ACTIVE;
348 return 0;
349 }
350
351 if (C_CLOCAL(tty))
352 do_clocal = 1;
353
354 /* Block waiting until we can proceed. We may need to wait for the
355 carrier, but we must also wait for any close that is in progress
356 before the next open may complete */
357
358 retval = 0;
Alan Cox36c621d2009-01-02 13:46:10 +0000359
360 /* The port lock protects the port counts */
361 spin_lock_irqsave(&port->lock, flags);
362 if (!tty_hung_up_p(filp))
363 port->count--;
364 port->blocked_open++;
365 spin_unlock_irqrestore(&port->lock, flags);
366
367 while (1) {
368 /* Indicate we are open */
Alan Coxadc8d742012-07-14 15:31:47 +0100369 if (tty->termios.c_cflag & CBAUD)
Alan Cox78349092009-01-02 13:46:43 +0000370 tty_port_raise_dtr_rts(port);
Alan Cox36c621d2009-01-02 13:46:10 +0000371
Jiri Slaby3e3b5c02009-06-11 14:33:37 +0100372 prepare_to_wait(&port->open_wait, &wait, TASK_INTERRUPTIBLE);
Alan Coxd774a562009-10-06 16:06:21 +0100373 /* Check for a hangup or uninitialised port.
374 Return accordingly */
Alan Cox36c621d2009-01-02 13:46:10 +0000375 if (tty_hung_up_p(filp) || !(port->flags & ASYNC_INITIALIZED)) {
376 if (port->flags & ASYNC_HUP_NOTIFY)
377 retval = -EAGAIN;
378 else
379 retval = -ERESTARTSYS;
380 break;
381 }
Jiri Slaby0eee50a2012-01-12 22:55:15 +0100382 /*
383 * Probe the carrier. For devices with no carrier detect
384 * tty_port_carrier_raised will always return true.
385 * Never ask drivers if CLOCAL is set, this causes troubles
386 * on some hardware.
387 */
Alan Cox36c621d2009-01-02 13:46:10 +0000388 if (!(port->flags & ASYNC_CLOSING) &&
Jiri Slaby0eee50a2012-01-12 22:55:15 +0100389 (do_clocal || tty_port_carrier_raised(port)))
Alan Cox36c621d2009-01-02 13:46:10 +0000390 break;
391 if (signal_pending(current)) {
392 retval = -ERESTARTSYS;
393 break;
394 }
Alan Cox89c8d912012-08-08 16:30:13 +0100395 tty_unlock(tty);
Alan Cox36c621d2009-01-02 13:46:10 +0000396 schedule();
Alan Cox89c8d912012-08-08 16:30:13 +0100397 tty_lock(tty);
Alan Cox36c621d2009-01-02 13:46:10 +0000398 }
Jiri Slaby3e3b5c02009-06-11 14:33:37 +0100399 finish_wait(&port->open_wait, &wait);
Alan Cox36c621d2009-01-02 13:46:10 +0000400
401 /* Update counts. A parallel hangup will have set count to zero and
402 we must not mess that up further */
403 spin_lock_irqsave(&port->lock, flags);
404 if (!tty_hung_up_p(filp))
405 port->count++;
406 port->blocked_open--;
407 if (retval == 0)
408 port->flags |= ASYNC_NORMAL_ACTIVE;
409 spin_unlock_irqrestore(&port->lock, flags);
Alan Coxecc2e052009-07-17 16:17:26 +0100410 return retval;
Alan Cox36c621d2009-01-02 13:46:10 +0000411}
412EXPORT_SYMBOL(tty_port_block_til_ready);
413
Alan Coxd774a562009-10-06 16:06:21 +0100414int tty_port_close_start(struct tty_port *port,
415 struct tty_struct *tty, struct file *filp)
Alan Coxa6614992009-01-02 13:46:50 +0000416{
417 unsigned long flags;
418
419 spin_lock_irqsave(&port->lock, flags);
420 if (tty_hung_up_p(filp)) {
421 spin_unlock_irqrestore(&port->lock, flags);
422 return 0;
423 }
424
Alan Coxd774a562009-10-06 16:06:21 +0100425 if (tty->count == 1 && port->count != 1) {
Alan Coxa6614992009-01-02 13:46:50 +0000426 printk(KERN_WARNING
427 "tty_port_close_start: tty->count = 1 port count = %d.\n",
428 port->count);
429 port->count = 1;
430 }
431 if (--port->count < 0) {
432 printk(KERN_WARNING "tty_port_close_start: count = %d\n",
433 port->count);
434 port->count = 0;
435 }
436
437 if (port->count) {
438 spin_unlock_irqrestore(&port->lock, flags);
Alan Cox7ca0ff92009-09-19 13:13:20 -0700439 if (port->ops->drop)
440 port->ops->drop(port);
Alan Coxa6614992009-01-02 13:46:50 +0000441 return 0;
442 }
Alan Stern1f5c13f2009-08-20 15:23:47 -0400443 set_bit(ASYNCB_CLOSING, &port->flags);
Alan Coxa6614992009-01-02 13:46:50 +0000444 tty->closing = 1;
445 spin_unlock_irqrestore(&port->lock, flags);
Alan Coxfba85e02009-01-02 13:48:39 +0000446 /* Don't block on a stalled port, just pull the chain */
447 if (tty->flow_stopped)
448 tty_driver_flush_buffer(tty);
Alan Cox7ca0ff92009-09-19 13:13:20 -0700449 if (test_bit(ASYNCB_INITIALIZED, &port->flags) &&
Alan Cox6ed1dba2009-01-02 13:48:11 +0000450 port->closing_wait != ASYNC_CLOSING_WAIT_NONE)
Jiri Slaby424cc032011-08-25 15:12:07 +0200451 tty_wait_until_sent_from_close(tty, port->closing_wait);
Alan Cox1ec739b2009-06-11 12:25:25 +0100452 if (port->drain_delay) {
453 unsigned int bps = tty_get_baud_rate(tty);
454 long timeout;
455
456 if (bps > 1200)
Alan Coxd774a562009-10-06 16:06:21 +0100457 timeout = max_t(long,
458 (HZ * 10 * port->drain_delay) / bps, HZ / 10);
Alan Cox1ec739b2009-06-11 12:25:25 +0100459 else
460 timeout = 2 * HZ;
461 schedule_timeout_interruptible(timeout);
462 }
Alan Coxe707c352009-11-05 13:27:57 +0000463 /* Flush the ldisc buffering */
464 tty_ldisc_flush(tty);
465
466 /* Drop DTR/RTS if HUPCL is set. This causes any attached modem to
467 hang up the line */
Alan Coxadc8d742012-07-14 15:31:47 +0100468 if (tty->termios.c_cflag & HUPCL)
Alan Coxe707c352009-11-05 13:27:57 +0000469 tty_port_lower_dtr_rts(port);
470
Alan Cox7ca0ff92009-09-19 13:13:20 -0700471 /* Don't call port->drop for the last reference. Callers will want
472 to drop the last active reference in ->shutdown() or the tty
473 shutdown path */
Alan Coxa6614992009-01-02 13:46:50 +0000474 return 1;
475}
476EXPORT_SYMBOL(tty_port_close_start);
477
478void tty_port_close_end(struct tty_port *port, struct tty_struct *tty)
479{
480 unsigned long flags;
481
Alan Coxa6614992009-01-02 13:46:50 +0000482 spin_lock_irqsave(&port->lock, flags);
483 tty->closing = 0;
484
485 if (port->blocked_open) {
486 spin_unlock_irqrestore(&port->lock, flags);
487 if (port->close_delay) {
488 msleep_interruptible(
489 jiffies_to_msecs(port->close_delay));
490 }
491 spin_lock_irqsave(&port->lock, flags);
492 wake_up_interruptible(&port->open_wait);
493 }
494 port->flags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_CLOSING);
495 wake_up_interruptible(&port->close_wait);
496 spin_unlock_irqrestore(&port->lock, flags);
497}
498EXPORT_SYMBOL(tty_port_close_end);
Alan Cox7ca0ff92009-09-19 13:13:20 -0700499
500void tty_port_close(struct tty_port *port, struct tty_struct *tty,
501 struct file *filp)
502{
503 if (tty_port_close_start(port, tty, filp) == 0)
504 return;
505 tty_port_shutdown(port);
Alan Coxd74e8282009-11-30 13:16:52 +0000506 set_bit(TTY_IO_ERROR, &tty->flags);
Alan Cox7ca0ff92009-09-19 13:13:20 -0700507 tty_port_close_end(port, tty);
508 tty_port_tty_set(port, NULL);
509}
510EXPORT_SYMBOL(tty_port_close);
Alan Cox64bc3972009-10-06 16:06:11 +0100511
Jiri Slaby72a33bf2012-08-07 21:47:49 +0200512/**
513 * tty_port_install - generic tty->ops->install handler
514 * @port: tty_port of the device
515 * @driver: tty_driver for this device
516 * @tty: tty to be installed
517 *
518 * It is the same as tty_standard_install except the provided @port is linked
519 * to a concrete tty specified by @tty. Use this or tty_port_register_device
520 * (or both). Call tty_port_link_device as a last resort.
521 */
Jiri Slaby695586c2012-06-04 13:35:32 +0200522int tty_port_install(struct tty_port *port, struct tty_driver *driver,
523 struct tty_struct *tty)
524{
525 tty->port = port;
526 return tty_standard_install(driver, tty);
527}
528EXPORT_SYMBOL_GPL(tty_port_install);
529
Alan Cox64bc3972009-10-06 16:06:11 +0100530int tty_port_open(struct tty_port *port, struct tty_struct *tty,
Alan Coxd774a562009-10-06 16:06:21 +0100531 struct file *filp)
Alan Cox64bc3972009-10-06 16:06:11 +0100532{
533 spin_lock_irq(&port->lock);
534 if (!tty_hung_up_p(filp))
535 ++port->count;
536 spin_unlock_irq(&port->lock);
537 tty_port_tty_set(port, tty);
538
539 /*
540 * Do the device-specific open only if the hardware isn't
541 * already initialized. Serialize open and shutdown using the
542 * port mutex.
543 */
544
545 mutex_lock(&port->mutex);
546
547 if (!test_bit(ASYNCB_INITIALIZED, &port->flags)) {
Alan Coxa9a37ec2009-11-30 13:16:57 +0000548 clear_bit(TTY_IO_ERROR, &tty->flags);
Alan Cox64bc3972009-10-06 16:06:11 +0100549 if (port->ops->activate) {
550 int retval = port->ops->activate(port, tty);
551 if (retval) {
Alan Coxd774a562009-10-06 16:06:21 +0100552 mutex_unlock(&port->mutex);
553 return retval;
554 }
555 }
Alan Cox64bc3972009-10-06 16:06:11 +0100556 set_bit(ASYNCB_INITIALIZED, &port->flags);
557 }
558 mutex_unlock(&port->mutex);
559 return tty_port_block_til_ready(port, tty, filp);
560}
561
562EXPORT_SYMBOL(tty_port_open);