Alan Cox | 9e48565 | 2008-10-13 10:37:07 +0100 | [diff] [blame] | 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> |
Alan Cox | 3e61696 | 2009-01-02 13:45:26 +0000 | [diff] [blame] | 10 | #include <linux/serial.h> |
Alan Cox | 9e48565 | 2008-10-13 10:37:07 +0100 | [diff] [blame] | 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 | |
| 21 | void tty_port_init(struct tty_port *port) |
| 22 | { |
| 23 | memset(port, 0, sizeof(*port)); |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 24 | tty_buffer_init(port); |
Alan Cox | 9e48565 | 2008-10-13 10:37:07 +0100 | [diff] [blame] | 25 | init_waitqueue_head(&port->open_wait); |
| 26 | init_waitqueue_head(&port->close_wait); |
Alan Cox | bdc04e3 | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 27 | init_waitqueue_head(&port->delta_msr_wait); |
Alan Cox | 9e48565 | 2008-10-13 10:37:07 +0100 | [diff] [blame] | 28 | mutex_init(&port->mutex); |
Alan Cox | 44e4909 | 2009-11-30 13:16:41 +0000 | [diff] [blame] | 29 | mutex_init(&port->buf_mutex); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 30 | spin_lock_init(&port->lock); |
Alan Cox | 9e48565 | 2008-10-13 10:37:07 +0100 | [diff] [blame] | 31 | port->close_delay = (50 * HZ) / 100; |
| 32 | port->closing_wait = (3000 * HZ) / 100; |
Alan Cox | 568aafc | 2009-11-30 13:17:14 +0000 | [diff] [blame] | 33 | kref_init(&port->kref); |
Alan Cox | 9e48565 | 2008-10-13 10:37:07 +0100 | [diff] [blame] | 34 | } |
| 35 | EXPORT_SYMBOL(tty_port_init); |
| 36 | |
Jiri Slaby | 72a33bf | 2012-08-07 21:47:49 +0200 | [diff] [blame] | 37 | /** |
Jiri Slaby | 2cb4ca0 | 2012-08-07 21:47:50 +0200 | [diff] [blame] | 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 | */ |
| 48 | void 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 | } |
| 55 | EXPORT_SYMBOL_GPL(tty_port_link_device); |
| 56 | |
| 57 | /** |
Jiri Slaby | 72a33bf | 2012-08-07 21:47:49 +0200 | [diff] [blame] | 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 | */ |
Jiri Slaby | 057eb85 | 2012-06-04 13:35:37 +0200 | [diff] [blame] | 68 | struct device *tty_port_register_device(struct tty_port *port, |
| 69 | struct tty_driver *driver, unsigned index, |
| 70 | struct device *device) |
| 71 | { |
Jiri Slaby | 2cb4ca0 | 2012-08-07 21:47:50 +0200 | [diff] [blame] | 72 | tty_port_link_device(port, driver, index); |
Jiri Slaby | 057eb85 | 2012-06-04 13:35:37 +0200 | [diff] [blame] | 73 | return tty_register_device(driver, index, device); |
| 74 | } |
| 75 | EXPORT_SYMBOL_GPL(tty_port_register_device); |
| 76 | |
Tomas Hlavacek | b1b7991 | 2012-09-06 23:17:47 +0200 | [diff] [blame] | 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 | */ |
| 90 | struct 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 | } |
| 99 | EXPORT_SYMBOL_GPL(tty_port_register_device_attr); |
| 100 | |
Alan Cox | 9e48565 | 2008-10-13 10:37:07 +0100 | [diff] [blame] | 101 | int tty_port_alloc_xmit_buf(struct tty_port *port) |
| 102 | { |
| 103 | /* We may sleep in get_zeroed_page() */ |
Alan Cox | 44e4909 | 2009-11-30 13:16:41 +0000 | [diff] [blame] | 104 | mutex_lock(&port->buf_mutex); |
Alan Cox | 9e48565 | 2008-10-13 10:37:07 +0100 | [diff] [blame] | 105 | if (port->xmit_buf == NULL) |
| 106 | port->xmit_buf = (unsigned char *)get_zeroed_page(GFP_KERNEL); |
Alan Cox | 44e4909 | 2009-11-30 13:16:41 +0000 | [diff] [blame] | 107 | mutex_unlock(&port->buf_mutex); |
Alan Cox | 9e48565 | 2008-10-13 10:37:07 +0100 | [diff] [blame] | 108 | if (port->xmit_buf == NULL) |
| 109 | return -ENOMEM; |
| 110 | return 0; |
| 111 | } |
| 112 | EXPORT_SYMBOL(tty_port_alloc_xmit_buf); |
| 113 | |
| 114 | void tty_port_free_xmit_buf(struct tty_port *port) |
| 115 | { |
Alan Cox | 44e4909 | 2009-11-30 13:16:41 +0000 | [diff] [blame] | 116 | mutex_lock(&port->buf_mutex); |
Alan Cox | 9e48565 | 2008-10-13 10:37:07 +0100 | [diff] [blame] | 117 | if (port->xmit_buf != NULL) { |
| 118 | free_page((unsigned long)port->xmit_buf); |
| 119 | port->xmit_buf = NULL; |
| 120 | } |
Alan Cox | 44e4909 | 2009-11-30 13:16:41 +0000 | [diff] [blame] | 121 | mutex_unlock(&port->buf_mutex); |
Alan Cox | 9e48565 | 2008-10-13 10:37:07 +0100 | [diff] [blame] | 122 | } |
| 123 | EXPORT_SYMBOL(tty_port_free_xmit_buf); |
| 124 | |
Jiri Slaby | de274bf | 2012-11-15 09:49:54 +0100 | [diff] [blame] | 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 | */ |
| 133 | void tty_port_destroy(struct tty_port *port) |
| 134 | { |
Peter Hurley | 4f98d46 | 2013-03-11 16:44:34 -0400 | [diff] [blame] | 135 | cancel_work_sync(&port->buf.work); |
Jiri Slaby | de274bf | 2012-11-15 09:49:54 +0100 | [diff] [blame] | 136 | tty_buffer_free_all(port); |
| 137 | } |
| 138 | EXPORT_SYMBOL(tty_port_destroy); |
| 139 | |
Alan Cox | 568aafc | 2009-11-30 13:17:14 +0000 | [diff] [blame] | 140 | static void tty_port_destructor(struct kref *kref) |
| 141 | { |
| 142 | struct tty_port *port = container_of(kref, struct tty_port, kref); |
| 143 | if (port->xmit_buf) |
| 144 | free_page((unsigned long)port->xmit_buf); |
Jiri Slaby | de274bf | 2012-11-15 09:49:54 +0100 | [diff] [blame] | 145 | tty_port_destroy(port); |
Jiri Slaby | 81c7983 | 2012-11-15 09:49:49 +0100 | [diff] [blame] | 146 | if (port->ops && port->ops->destruct) |
Alan Cox | 568aafc | 2009-11-30 13:17:14 +0000 | [diff] [blame] | 147 | port->ops->destruct(port); |
| 148 | else |
| 149 | kfree(port); |
| 150 | } |
| 151 | |
| 152 | void tty_port_put(struct tty_port *port) |
| 153 | { |
| 154 | if (port) |
| 155 | kref_put(&port->kref, tty_port_destructor); |
| 156 | } |
| 157 | EXPORT_SYMBOL(tty_port_put); |
Alan Cox | 9e48565 | 2008-10-13 10:37:07 +0100 | [diff] [blame] | 158 | |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 159 | /** |
| 160 | * tty_port_tty_get - get a tty reference |
| 161 | * @port: tty port |
| 162 | * |
| 163 | * Return a refcount protected tty instance or NULL if the port is not |
| 164 | * associated with a tty (eg due to close or hangup) |
| 165 | */ |
| 166 | |
| 167 | struct tty_struct *tty_port_tty_get(struct tty_port *port) |
| 168 | { |
| 169 | unsigned long flags; |
| 170 | struct tty_struct *tty; |
| 171 | |
| 172 | spin_lock_irqsave(&port->lock, flags); |
| 173 | tty = tty_kref_get(port->tty); |
| 174 | spin_unlock_irqrestore(&port->lock, flags); |
| 175 | return tty; |
| 176 | } |
| 177 | EXPORT_SYMBOL(tty_port_tty_get); |
| 178 | |
| 179 | /** |
| 180 | * tty_port_tty_set - set the tty of a port |
| 181 | * @port: tty port |
| 182 | * @tty: the tty |
| 183 | * |
| 184 | * Associate the port and tty pair. Manages any internal refcounts. |
| 185 | * Pass NULL to deassociate a port |
| 186 | */ |
| 187 | |
| 188 | void tty_port_tty_set(struct tty_port *port, struct tty_struct *tty) |
| 189 | { |
| 190 | unsigned long flags; |
| 191 | |
| 192 | spin_lock_irqsave(&port->lock, flags); |
| 193 | if (port->tty) |
| 194 | tty_kref_put(port->tty); |
Alan Cox | cb4bca3 | 2008-10-21 13:47:44 +0100 | [diff] [blame] | 195 | port->tty = tty_kref_get(tty); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 196 | spin_unlock_irqrestore(&port->lock, flags); |
| 197 | } |
| 198 | EXPORT_SYMBOL(tty_port_tty_set); |
Alan Cox | 31f3593 | 2009-01-02 13:45:05 +0000 | [diff] [blame] | 199 | |
Johan Hovold | 957daca | 2013-03-07 15:55:51 +0100 | [diff] [blame] | 200 | static void tty_port_shutdown(struct tty_port *port, struct tty_struct *tty) |
Alan Cox | 7ca0ff9 | 2009-09-19 13:13:20 -0700 | [diff] [blame] | 201 | { |
Alan Cox | 64bc397 | 2009-10-06 16:06:11 +0100 | [diff] [blame] | 202 | mutex_lock(&port->mutex); |
Johan Hovold | 8bde965 | 2013-03-07 15:55:48 +0100 | [diff] [blame] | 203 | if (port->console) |
| 204 | goto out; |
| 205 | |
| 206 | if (test_and_clear_bit(ASYNCB_INITIALIZED, &port->flags)) { |
Johan Hovold | 957daca | 2013-03-07 15:55:51 +0100 | [diff] [blame] | 207 | /* |
| 208 | * Drop DTR/RTS if HUPCL is set. This causes any attached |
| 209 | * modem to hang up the line. |
| 210 | */ |
| 211 | if (tty && C_HUPCL(tty)) |
| 212 | tty_port_lower_dtr_rts(port); |
| 213 | |
Johan Hovold | 8bde965 | 2013-03-07 15:55:48 +0100 | [diff] [blame] | 214 | if (port->ops->shutdown) |
Alan Cox | 7ca0ff9 | 2009-09-19 13:13:20 -0700 | [diff] [blame] | 215 | port->ops->shutdown(port); |
Johan Hovold | 8bde965 | 2013-03-07 15:55:48 +0100 | [diff] [blame] | 216 | } |
| 217 | out: |
Alan Cox | 64bc397 | 2009-10-06 16:06:11 +0100 | [diff] [blame] | 218 | mutex_unlock(&port->mutex); |
Alan Cox | 7ca0ff9 | 2009-09-19 13:13:20 -0700 | [diff] [blame] | 219 | } |
| 220 | |
Alan Cox | 31f3593 | 2009-01-02 13:45:05 +0000 | [diff] [blame] | 221 | /** |
Alan Cox | 3e61696 | 2009-01-02 13:45:26 +0000 | [diff] [blame] | 222 | * tty_port_hangup - hangup helper |
| 223 | * @port: tty port |
| 224 | * |
| 225 | * Perform port level tty hangup flag and count changes. Drop the tty |
| 226 | * reference. |
| 227 | */ |
| 228 | |
| 229 | void tty_port_hangup(struct tty_port *port) |
| 230 | { |
Johan Hovold | 957daca | 2013-03-07 15:55:51 +0100 | [diff] [blame] | 231 | struct tty_struct *tty; |
Alan Cox | 3e61696 | 2009-01-02 13:45:26 +0000 | [diff] [blame] | 232 | unsigned long flags; |
| 233 | |
| 234 | spin_lock_irqsave(&port->lock, flags); |
| 235 | port->count = 0; |
| 236 | port->flags &= ~ASYNC_NORMAL_ACTIVE; |
Johan Hovold | 957daca | 2013-03-07 15:55:51 +0100 | [diff] [blame] | 237 | tty = port->tty; |
| 238 | if (tty) |
| 239 | set_bit(TTY_IO_ERROR, &tty->flags); |
Alan Cox | 3e61696 | 2009-01-02 13:45:26 +0000 | [diff] [blame] | 240 | port->tty = NULL; |
| 241 | spin_unlock_irqrestore(&port->lock, flags); |
Johan Hovold | 957daca | 2013-03-07 15:55:51 +0100 | [diff] [blame] | 242 | tty_port_shutdown(port, tty); |
| 243 | tty_kref_put(tty); |
Alan Cox | 3e61696 | 2009-01-02 13:45:26 +0000 | [diff] [blame] | 244 | wake_up_interruptible(&port->open_wait); |
Alan Cox | bdc04e3 | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 245 | wake_up_interruptible(&port->delta_msr_wait); |
Alan Cox | 3e61696 | 2009-01-02 13:45:26 +0000 | [diff] [blame] | 246 | } |
| 247 | EXPORT_SYMBOL(tty_port_hangup); |
| 248 | |
| 249 | /** |
Jiri Slaby | aa27a09 | 2013-03-07 13:12:30 +0100 | [diff] [blame] | 250 | * tty_port_tty_hangup - helper to hang up a tty |
| 251 | * |
| 252 | * @port: tty port |
| 253 | * @check_clocal: hang only ttys with CLOCAL unset? |
| 254 | */ |
| 255 | void tty_port_tty_hangup(struct tty_port *port, bool check_clocal) |
| 256 | { |
| 257 | struct tty_struct *tty = tty_port_tty_get(port); |
| 258 | |
| 259 | if (tty && (!check_clocal || !C_CLOCAL(tty))) { |
| 260 | tty_hangup(tty); |
| 261 | tty_kref_put(tty); |
| 262 | } |
| 263 | } |
| 264 | EXPORT_SYMBOL_GPL(tty_port_tty_hangup); |
| 265 | |
| 266 | /** |
Jiri Slaby | 6aad04f | 2013-03-07 13:12:29 +0100 | [diff] [blame] | 267 | * tty_port_tty_wakeup - helper to wake up a tty |
| 268 | * |
| 269 | * @port: tty port |
| 270 | */ |
| 271 | void tty_port_tty_wakeup(struct tty_port *port) |
| 272 | { |
| 273 | struct tty_struct *tty = tty_port_tty_get(port); |
| 274 | |
| 275 | if (tty) { |
| 276 | tty_wakeup(tty); |
| 277 | tty_kref_put(tty); |
| 278 | } |
| 279 | } |
| 280 | EXPORT_SYMBOL_GPL(tty_port_tty_wakeup); |
| 281 | |
| 282 | /** |
Alan Cox | 31f3593 | 2009-01-02 13:45:05 +0000 | [diff] [blame] | 283 | * tty_port_carrier_raised - carrier raised check |
| 284 | * @port: tty port |
| 285 | * |
| 286 | * Wrapper for the carrier detect logic. For the moment this is used |
| 287 | * to hide some internal details. This will eventually become entirely |
| 288 | * internal to the tty port. |
| 289 | */ |
| 290 | |
| 291 | int tty_port_carrier_raised(struct tty_port *port) |
| 292 | { |
| 293 | if (port->ops->carrier_raised == NULL) |
| 294 | return 1; |
| 295 | return port->ops->carrier_raised(port); |
| 296 | } |
| 297 | EXPORT_SYMBOL(tty_port_carrier_raised); |
Alan Cox | 5d951fb | 2009-01-02 13:45:19 +0000 | [diff] [blame] | 298 | |
| 299 | /** |
Alan Cox | fcc8ac1 | 2009-06-11 12:24:17 +0100 | [diff] [blame] | 300 | * tty_port_raise_dtr_rts - Raise DTR/RTS |
Alan Cox | 5d951fb | 2009-01-02 13:45:19 +0000 | [diff] [blame] | 301 | * @port: tty port |
| 302 | * |
| 303 | * Wrapper for the DTR/RTS raise logic. For the moment this is used |
| 304 | * to hide some internal details. This will eventually become entirely |
| 305 | * internal to the tty port. |
| 306 | */ |
| 307 | |
| 308 | void tty_port_raise_dtr_rts(struct tty_port *port) |
| 309 | { |
Alan Cox | fcc8ac1 | 2009-06-11 12:24:17 +0100 | [diff] [blame] | 310 | if (port->ops->dtr_rts) |
| 311 | port->ops->dtr_rts(port, 1); |
Alan Cox | 5d951fb | 2009-01-02 13:45:19 +0000 | [diff] [blame] | 312 | } |
| 313 | EXPORT_SYMBOL(tty_port_raise_dtr_rts); |
Alan Cox | 36c621d | 2009-01-02 13:46:10 +0000 | [diff] [blame] | 314 | |
| 315 | /** |
Alan Cox | fcc8ac1 | 2009-06-11 12:24:17 +0100 | [diff] [blame] | 316 | * tty_port_lower_dtr_rts - Lower DTR/RTS |
| 317 | * @port: tty port |
| 318 | * |
| 319 | * Wrapper for the DTR/RTS raise logic. For the moment this is used |
| 320 | * to hide some internal details. This will eventually become entirely |
| 321 | * internal to the tty port. |
| 322 | */ |
| 323 | |
| 324 | void tty_port_lower_dtr_rts(struct tty_port *port) |
| 325 | { |
| 326 | if (port->ops->dtr_rts) |
| 327 | port->ops->dtr_rts(port, 0); |
| 328 | } |
| 329 | EXPORT_SYMBOL(tty_port_lower_dtr_rts); |
| 330 | |
| 331 | /** |
Alan Cox | 36c621d | 2009-01-02 13:46:10 +0000 | [diff] [blame] | 332 | * tty_port_block_til_ready - Waiting logic for tty open |
| 333 | * @port: the tty port being opened |
| 334 | * @tty: the tty device being bound |
| 335 | * @filp: the file pointer of the opener |
| 336 | * |
| 337 | * Implement the core POSIX/SuS tty behaviour when opening a tty device. |
| 338 | * Handles: |
| 339 | * - hangup (both before and during) |
| 340 | * - non blocking open |
| 341 | * - rts/dtr/dcd |
| 342 | * - signals |
| 343 | * - port flags and counts |
| 344 | * |
| 345 | * The passed tty_port must implement the carrier_raised method if it can |
Alan Cox | fcc8ac1 | 2009-06-11 12:24:17 +0100 | [diff] [blame] | 346 | * do carrier detect and the dtr_rts method if it supports software |
Alan Cox | 36c621d | 2009-01-02 13:46:10 +0000 | [diff] [blame] | 347 | * management of these lines. Note that the dtr/rts raise is done each |
| 348 | * iteration as a hangup may have previously dropped them while we wait. |
| 349 | */ |
Alan Cox | d774a56 | 2009-10-06 16:06:21 +0100 | [diff] [blame] | 350 | |
Alan Cox | 36c621d | 2009-01-02 13:46:10 +0000 | [diff] [blame] | 351 | int tty_port_block_til_ready(struct tty_port *port, |
| 352 | struct tty_struct *tty, struct file *filp) |
| 353 | { |
| 354 | int do_clocal = 0, retval; |
| 355 | unsigned long flags; |
Jiri Slaby | 6af9a43 | 2009-06-24 18:35:05 +0100 | [diff] [blame] | 356 | DEFINE_WAIT(wait); |
Alan Cox | 36c621d | 2009-01-02 13:46:10 +0000 | [diff] [blame] | 357 | |
| 358 | /* block if port is in the process of being closed */ |
| 359 | if (tty_hung_up_p(filp) || port->flags & ASYNC_CLOSING) { |
Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 360 | wait_event_interruptible_tty(tty, port->close_wait, |
Jiri Slaby | 5fc5b42 | 2009-06-11 14:32:42 +0100 | [diff] [blame] | 361 | !(port->flags & ASYNC_CLOSING)); |
Alan Cox | 36c621d | 2009-01-02 13:46:10 +0000 | [diff] [blame] | 362 | if (port->flags & ASYNC_HUP_NOTIFY) |
| 363 | return -EAGAIN; |
| 364 | else |
| 365 | return -ERESTARTSYS; |
| 366 | } |
| 367 | |
| 368 | /* if non-blocking mode is set we can pass directly to open unless |
| 369 | the port has just hung up or is in another error state */ |
Alan Cox | 8627b96 | 2009-11-18 14:12:58 +0000 | [diff] [blame] | 370 | if (tty->flags & (1 << TTY_IO_ERROR)) { |
| 371 | port->flags |= ASYNC_NORMAL_ACTIVE; |
| 372 | return 0; |
| 373 | } |
| 374 | if (filp->f_flags & O_NONBLOCK) { |
Alan Cox | 4175f3e | 2009-10-28 21:12:32 +0100 | [diff] [blame] | 375 | /* Indicate we are open */ |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 376 | if (tty->termios.c_cflag & CBAUD) |
Alan Cox | 4175f3e | 2009-10-28 21:12:32 +0100 | [diff] [blame] | 377 | tty_port_raise_dtr_rts(port); |
Alan Cox | 36c621d | 2009-01-02 13:46:10 +0000 | [diff] [blame] | 378 | port->flags |= ASYNC_NORMAL_ACTIVE; |
| 379 | return 0; |
| 380 | } |
| 381 | |
| 382 | if (C_CLOCAL(tty)) |
| 383 | do_clocal = 1; |
| 384 | |
| 385 | /* Block waiting until we can proceed. We may need to wait for the |
| 386 | carrier, but we must also wait for any close that is in progress |
| 387 | before the next open may complete */ |
| 388 | |
| 389 | retval = 0; |
Alan Cox | 36c621d | 2009-01-02 13:46:10 +0000 | [diff] [blame] | 390 | |
| 391 | /* The port lock protects the port counts */ |
| 392 | spin_lock_irqsave(&port->lock, flags); |
| 393 | if (!tty_hung_up_p(filp)) |
| 394 | port->count--; |
| 395 | port->blocked_open++; |
| 396 | spin_unlock_irqrestore(&port->lock, flags); |
| 397 | |
| 398 | while (1) { |
| 399 | /* Indicate we are open */ |
Johan Hovold | e584a02 | 2013-03-07 15:55:50 +0100 | [diff] [blame] | 400 | if (C_BAUD(tty) && test_bit(ASYNCB_INITIALIZED, &port->flags)) |
Alan Cox | 7834909 | 2009-01-02 13:46:43 +0000 | [diff] [blame] | 401 | tty_port_raise_dtr_rts(port); |
Alan Cox | 36c621d | 2009-01-02 13:46:10 +0000 | [diff] [blame] | 402 | |
Jiri Slaby | 3e3b5c0 | 2009-06-11 14:33:37 +0100 | [diff] [blame] | 403 | prepare_to_wait(&port->open_wait, &wait, TASK_INTERRUPTIBLE); |
Alan Cox | d774a56 | 2009-10-06 16:06:21 +0100 | [diff] [blame] | 404 | /* Check for a hangup or uninitialised port. |
| 405 | Return accordingly */ |
Alan Cox | 36c621d | 2009-01-02 13:46:10 +0000 | [diff] [blame] | 406 | if (tty_hung_up_p(filp) || !(port->flags & ASYNC_INITIALIZED)) { |
| 407 | if (port->flags & ASYNC_HUP_NOTIFY) |
| 408 | retval = -EAGAIN; |
| 409 | else |
| 410 | retval = -ERESTARTSYS; |
| 411 | break; |
| 412 | } |
Jiri Slaby | 0eee50a | 2012-01-12 22:55:15 +0100 | [diff] [blame] | 413 | /* |
| 414 | * Probe the carrier. For devices with no carrier detect |
| 415 | * tty_port_carrier_raised will always return true. |
| 416 | * Never ask drivers if CLOCAL is set, this causes troubles |
| 417 | * on some hardware. |
| 418 | */ |
Alan Cox | 36c621d | 2009-01-02 13:46:10 +0000 | [diff] [blame] | 419 | if (!(port->flags & ASYNC_CLOSING) && |
Jiri Slaby | 0eee50a | 2012-01-12 22:55:15 +0100 | [diff] [blame] | 420 | (do_clocal || tty_port_carrier_raised(port))) |
Alan Cox | 36c621d | 2009-01-02 13:46:10 +0000 | [diff] [blame] | 421 | break; |
| 422 | if (signal_pending(current)) { |
| 423 | retval = -ERESTARTSYS; |
| 424 | break; |
| 425 | } |
Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 426 | tty_unlock(tty); |
Alan Cox | 36c621d | 2009-01-02 13:46:10 +0000 | [diff] [blame] | 427 | schedule(); |
Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 428 | tty_lock(tty); |
Alan Cox | 36c621d | 2009-01-02 13:46:10 +0000 | [diff] [blame] | 429 | } |
Jiri Slaby | 3e3b5c0 | 2009-06-11 14:33:37 +0100 | [diff] [blame] | 430 | finish_wait(&port->open_wait, &wait); |
Alan Cox | 36c621d | 2009-01-02 13:46:10 +0000 | [diff] [blame] | 431 | |
| 432 | /* Update counts. A parallel hangup will have set count to zero and |
| 433 | we must not mess that up further */ |
| 434 | spin_lock_irqsave(&port->lock, flags); |
| 435 | if (!tty_hung_up_p(filp)) |
| 436 | port->count++; |
| 437 | port->blocked_open--; |
| 438 | if (retval == 0) |
| 439 | port->flags |= ASYNC_NORMAL_ACTIVE; |
| 440 | spin_unlock_irqrestore(&port->lock, flags); |
Alan Cox | ecc2e05 | 2009-07-17 16:17:26 +0100 | [diff] [blame] | 441 | return retval; |
Alan Cox | 36c621d | 2009-01-02 13:46:10 +0000 | [diff] [blame] | 442 | } |
| 443 | EXPORT_SYMBOL(tty_port_block_til_ready); |
| 444 | |
Johan Hovold | b74414f | 2013-03-07 15:55:52 +0100 | [diff] [blame] | 445 | static void tty_port_drain_delay(struct tty_port *port, struct tty_struct *tty) |
| 446 | { |
| 447 | unsigned int bps = tty_get_baud_rate(tty); |
| 448 | long timeout; |
| 449 | |
| 450 | if (bps > 1200) { |
| 451 | timeout = (HZ * 10 * port->drain_delay) / bps; |
| 452 | timeout = max_t(long, timeout, HZ / 10); |
| 453 | } else { |
| 454 | timeout = 2 * HZ; |
| 455 | } |
| 456 | schedule_timeout_interruptible(timeout); |
| 457 | } |
| 458 | |
Alan Cox | d774a56 | 2009-10-06 16:06:21 +0100 | [diff] [blame] | 459 | int tty_port_close_start(struct tty_port *port, |
| 460 | struct tty_struct *tty, struct file *filp) |
Alan Cox | a661499 | 2009-01-02 13:46:50 +0000 | [diff] [blame] | 461 | { |
| 462 | unsigned long flags; |
| 463 | |
| 464 | spin_lock_irqsave(&port->lock, flags); |
| 465 | if (tty_hung_up_p(filp)) { |
| 466 | spin_unlock_irqrestore(&port->lock, flags); |
| 467 | return 0; |
| 468 | } |
| 469 | |
Alan Cox | d774a56 | 2009-10-06 16:06:21 +0100 | [diff] [blame] | 470 | if (tty->count == 1 && port->count != 1) { |
Alan Cox | a661499 | 2009-01-02 13:46:50 +0000 | [diff] [blame] | 471 | printk(KERN_WARNING |
| 472 | "tty_port_close_start: tty->count = 1 port count = %d.\n", |
| 473 | port->count); |
| 474 | port->count = 1; |
| 475 | } |
| 476 | if (--port->count < 0) { |
| 477 | printk(KERN_WARNING "tty_port_close_start: count = %d\n", |
| 478 | port->count); |
| 479 | port->count = 0; |
| 480 | } |
| 481 | |
| 482 | if (port->count) { |
| 483 | spin_unlock_irqrestore(&port->lock, flags); |
Alan Cox | 7ca0ff9 | 2009-09-19 13:13:20 -0700 | [diff] [blame] | 484 | if (port->ops->drop) |
| 485 | port->ops->drop(port); |
Alan Cox | a661499 | 2009-01-02 13:46:50 +0000 | [diff] [blame] | 486 | return 0; |
| 487 | } |
Alan Stern | 1f5c13f | 2009-08-20 15:23:47 -0400 | [diff] [blame] | 488 | set_bit(ASYNCB_CLOSING, &port->flags); |
Alan Cox | a661499 | 2009-01-02 13:46:50 +0000 | [diff] [blame] | 489 | tty->closing = 1; |
| 490 | spin_unlock_irqrestore(&port->lock, flags); |
Johan Hovold | 0b2588c | 2013-03-07 15:55:53 +0100 | [diff] [blame] | 491 | |
| 492 | if (test_bit(ASYNCB_INITIALIZED, &port->flags)) { |
| 493 | /* Don't block on a stalled port, just pull the chain */ |
| 494 | if (tty->flow_stopped) |
| 495 | tty_driver_flush_buffer(tty); |
| 496 | if (port->closing_wait != ASYNC_CLOSING_WAIT_NONE) |
| 497 | tty_wait_until_sent_from_close(tty, port->closing_wait); |
| 498 | if (port->drain_delay) |
| 499 | tty_port_drain_delay(port, tty); |
| 500 | } |
Alan Cox | e707c35 | 2009-11-05 13:27:57 +0000 | [diff] [blame] | 501 | /* Flush the ldisc buffering */ |
| 502 | tty_ldisc_flush(tty); |
| 503 | |
Alan Cox | 7ca0ff9 | 2009-09-19 13:13:20 -0700 | [diff] [blame] | 504 | /* Don't call port->drop for the last reference. Callers will want |
| 505 | to drop the last active reference in ->shutdown() or the tty |
| 506 | shutdown path */ |
Alan Cox | a661499 | 2009-01-02 13:46:50 +0000 | [diff] [blame] | 507 | return 1; |
| 508 | } |
| 509 | EXPORT_SYMBOL(tty_port_close_start); |
| 510 | |
| 511 | void tty_port_close_end(struct tty_port *port, struct tty_struct *tty) |
| 512 | { |
| 513 | unsigned long flags; |
| 514 | |
Alan Cox | a661499 | 2009-01-02 13:46:50 +0000 | [diff] [blame] | 515 | spin_lock_irqsave(&port->lock, flags); |
| 516 | tty->closing = 0; |
| 517 | |
| 518 | if (port->blocked_open) { |
| 519 | spin_unlock_irqrestore(&port->lock, flags); |
| 520 | if (port->close_delay) { |
| 521 | msleep_interruptible( |
| 522 | jiffies_to_msecs(port->close_delay)); |
| 523 | } |
| 524 | spin_lock_irqsave(&port->lock, flags); |
| 525 | wake_up_interruptible(&port->open_wait); |
| 526 | } |
| 527 | port->flags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_CLOSING); |
| 528 | wake_up_interruptible(&port->close_wait); |
| 529 | spin_unlock_irqrestore(&port->lock, flags); |
| 530 | } |
| 531 | EXPORT_SYMBOL(tty_port_close_end); |
Alan Cox | 7ca0ff9 | 2009-09-19 13:13:20 -0700 | [diff] [blame] | 532 | |
| 533 | void tty_port_close(struct tty_port *port, struct tty_struct *tty, |
| 534 | struct file *filp) |
| 535 | { |
| 536 | if (tty_port_close_start(port, tty, filp) == 0) |
| 537 | return; |
Johan Hovold | 957daca | 2013-03-07 15:55:51 +0100 | [diff] [blame] | 538 | tty_port_shutdown(port, tty); |
Alan Cox | d74e828 | 2009-11-30 13:16:52 +0000 | [diff] [blame] | 539 | set_bit(TTY_IO_ERROR, &tty->flags); |
Alan Cox | 7ca0ff9 | 2009-09-19 13:13:20 -0700 | [diff] [blame] | 540 | tty_port_close_end(port, tty); |
| 541 | tty_port_tty_set(port, NULL); |
| 542 | } |
| 543 | EXPORT_SYMBOL(tty_port_close); |
Alan Cox | 64bc397 | 2009-10-06 16:06:11 +0100 | [diff] [blame] | 544 | |
Jiri Slaby | 72a33bf | 2012-08-07 21:47:49 +0200 | [diff] [blame] | 545 | /** |
| 546 | * tty_port_install - generic tty->ops->install handler |
| 547 | * @port: tty_port of the device |
| 548 | * @driver: tty_driver for this device |
| 549 | * @tty: tty to be installed |
| 550 | * |
| 551 | * It is the same as tty_standard_install except the provided @port is linked |
| 552 | * to a concrete tty specified by @tty. Use this or tty_port_register_device |
| 553 | * (or both). Call tty_port_link_device as a last resort. |
| 554 | */ |
Jiri Slaby | 695586c | 2012-06-04 13:35:32 +0200 | [diff] [blame] | 555 | int tty_port_install(struct tty_port *port, struct tty_driver *driver, |
| 556 | struct tty_struct *tty) |
| 557 | { |
| 558 | tty->port = port; |
| 559 | return tty_standard_install(driver, tty); |
| 560 | } |
| 561 | EXPORT_SYMBOL_GPL(tty_port_install); |
| 562 | |
Alan Cox | 64bc397 | 2009-10-06 16:06:11 +0100 | [diff] [blame] | 563 | int tty_port_open(struct tty_port *port, struct tty_struct *tty, |
Alan Cox | d774a56 | 2009-10-06 16:06:21 +0100 | [diff] [blame] | 564 | struct file *filp) |
Alan Cox | 64bc397 | 2009-10-06 16:06:11 +0100 | [diff] [blame] | 565 | { |
| 566 | spin_lock_irq(&port->lock); |
| 567 | if (!tty_hung_up_p(filp)) |
| 568 | ++port->count; |
| 569 | spin_unlock_irq(&port->lock); |
| 570 | tty_port_tty_set(port, tty); |
| 571 | |
| 572 | /* |
| 573 | * Do the device-specific open only if the hardware isn't |
| 574 | * already initialized. Serialize open and shutdown using the |
| 575 | * port mutex. |
| 576 | */ |
| 577 | |
| 578 | mutex_lock(&port->mutex); |
| 579 | |
| 580 | if (!test_bit(ASYNCB_INITIALIZED, &port->flags)) { |
Alan Cox | a9a37ec | 2009-11-30 13:16:57 +0000 | [diff] [blame] | 581 | clear_bit(TTY_IO_ERROR, &tty->flags); |
Alan Cox | 64bc397 | 2009-10-06 16:06:11 +0100 | [diff] [blame] | 582 | if (port->ops->activate) { |
| 583 | int retval = port->ops->activate(port, tty); |
| 584 | if (retval) { |
Alan Cox | d774a56 | 2009-10-06 16:06:21 +0100 | [diff] [blame] | 585 | mutex_unlock(&port->mutex); |
| 586 | return retval; |
| 587 | } |
| 588 | } |
Alan Cox | 64bc397 | 2009-10-06 16:06:11 +0100 | [diff] [blame] | 589 | set_bit(ASYNCB_INITIALIZED, &port->flags); |
| 590 | } |
| 591 | mutex_unlock(&port->mutex); |
| 592 | return tty_port_block_til_ready(port, tty, filp); |
| 593 | } |
| 594 | |
| 595 | EXPORT_SYMBOL(tty_port_open); |