Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/drivers/char/core.c |
| 3 | * |
| 4 | * Driver core for serial ports |
| 5 | * |
| 6 | * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o. |
| 7 | * |
| 8 | * Copyright 1999 ARM Limited |
| 9 | * Copyright (C) 2000-2001 Deep Blue Solutions Ltd. |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by |
| 13 | * the Free Software Foundation; either version 2 of the License, or |
| 14 | * (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; if not, write to the Free Software |
| 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 24 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/module.h> |
| 26 | #include <linux/tty.h> |
| 27 | #include <linux/slab.h> |
| 28 | #include <linux/init.h> |
| 29 | #include <linux/console.h> |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 30 | #include <linux/proc_fs.h> |
| 31 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/smp_lock.h> |
| 33 | #include <linux/device.h> |
| 34 | #include <linux/serial.h> /* for serial_state and serial_icounter_struct */ |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 35 | #include <linux/serial_core.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/delay.h> |
Arjan van de Ven | f392ecf | 2006-01-12 18:44:32 +0000 | [diff] [blame] | 37 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | #include <asm/irq.h> |
| 40 | #include <asm/uaccess.h> |
| 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | /* |
| 43 | * This is used to lock changes in serial line configuration. |
| 44 | */ |
Arjan van de Ven | f392ecf | 2006-01-12 18:44:32 +0000 | [diff] [blame] | 45 | static DEFINE_MUTEX(port_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Ingo Molnar | 13e8359 | 2006-07-03 00:25:03 -0700 | [diff] [blame] | 47 | /* |
| 48 | * lockdep: port->lock is initialized in two places, but we |
| 49 | * want only one lock-class: |
| 50 | */ |
| 51 | static struct lock_class_key port_lock_key; |
| 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8) |
| 54 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #ifdef CONFIG_SERIAL_CORE_CONSOLE |
| 56 | #define uart_console(port) ((port)->cons && (port)->cons->index == (port)->line) |
| 57 | #else |
| 58 | #define uart_console(port) (0) |
| 59 | #endif |
| 60 | |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 61 | static void uart_change_speed(struct tty_struct *tty, struct uart_state *state, |
Alan Cox | a46c999 | 2008-02-08 04:18:53 -0800 | [diff] [blame] | 62 | struct ktermios *old_termios); |
Arnd Bergmann | 2036521 | 2010-06-01 22:53:07 +0200 | [diff] [blame] | 63 | static void __uart_wait_until_sent(struct uart_port *port, int timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | static void uart_change_pm(struct uart_state *state, int pm_state); |
| 65 | |
| 66 | /* |
| 67 | * This routine is used by the interrupt handler to schedule processing in |
| 68 | * the software interrupt portion of the driver. |
| 69 | */ |
| 70 | void uart_write_wakeup(struct uart_port *port) |
| 71 | { |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 72 | struct uart_state *state = port->state; |
Pavel Machek | d5f735e | 2006-03-07 21:55:20 -0800 | [diff] [blame] | 73 | /* |
| 74 | * This means you called this function _after_ the port was |
| 75 | * closed. No cookie for you. |
| 76 | */ |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 77 | BUG_ON(!state); |
| 78 | tasklet_schedule(&state->tlet); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | static void uart_stop(struct tty_struct *tty) |
| 82 | { |
| 83 | struct uart_state *state = tty->driver_data; |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 84 | struct uart_port *port = state->uart_port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | unsigned long flags; |
| 86 | |
| 87 | spin_lock_irqsave(&port->lock, flags); |
Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 88 | port->ops->stop_tx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | spin_unlock_irqrestore(&port->lock, flags); |
| 90 | } |
| 91 | |
| 92 | static void __uart_start(struct tty_struct *tty) |
| 93 | { |
| 94 | struct uart_state *state = tty->driver_data; |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 95 | struct uart_port *port = state->uart_port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 97 | if (!uart_circ_empty(&state->xmit) && state->xmit.buf && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | !tty->stopped && !tty->hw_stopped) |
Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 99 | port->ops->start_tx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | static void uart_start(struct tty_struct *tty) |
| 103 | { |
| 104 | struct uart_state *state = tty->driver_data; |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 105 | struct uart_port *port = state->uart_port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | unsigned long flags; |
| 107 | |
| 108 | spin_lock_irqsave(&port->lock, flags); |
| 109 | __uart_start(tty); |
| 110 | spin_unlock_irqrestore(&port->lock, flags); |
| 111 | } |
| 112 | |
| 113 | static void uart_tasklet_action(unsigned long data) |
| 114 | { |
| 115 | struct uart_state *state = (struct uart_state *)data; |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 116 | tty_wakeup(state->port.tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | static inline void |
| 120 | uart_update_mctrl(struct uart_port *port, unsigned int set, unsigned int clear) |
| 121 | { |
| 122 | unsigned long flags; |
| 123 | unsigned int old; |
| 124 | |
| 125 | spin_lock_irqsave(&port->lock, flags); |
| 126 | old = port->mctrl; |
| 127 | port->mctrl = (old & ~clear) | set; |
| 128 | if (old != port->mctrl) |
| 129 | port->ops->set_mctrl(port, port->mctrl); |
| 130 | spin_unlock_irqrestore(&port->lock, flags); |
| 131 | } |
| 132 | |
Alan Cox | a46c999 | 2008-02-08 04:18:53 -0800 | [diff] [blame] | 133 | #define uart_set_mctrl(port, set) uart_update_mctrl(port, set, 0) |
| 134 | #define uart_clear_mctrl(port, clear) uart_update_mctrl(port, 0, clear) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
| 136 | /* |
| 137 | * Startup the port. This will be called once per open. All calls |
Alan Cox | df4f4dd | 2008-07-16 21:53:50 +0100 | [diff] [blame] | 138 | * will be serialised by the per-port mutex. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | */ |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 140 | static int uart_startup(struct tty_struct *tty, struct uart_state *state, int init_hw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | { |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 142 | struct uart_port *uport = state->uart_port; |
| 143 | struct tty_port *port = &state->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | unsigned long page; |
| 145 | int retval = 0; |
| 146 | |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 147 | if (port->flags & ASYNC_INITIALIZED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | return 0; |
| 149 | |
| 150 | /* |
| 151 | * Set the TTY IO error marker - we will only clear this |
| 152 | * once we have successfully opened the port. Also set |
| 153 | * up the tty->alt_speed kludge |
| 154 | */ |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 155 | set_bit(TTY_IO_ERROR, &tty->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 157 | if (uport->type == PORT_UNKNOWN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | return 0; |
| 159 | |
| 160 | /* |
| 161 | * Initialise and allocate the transmit and temporary |
| 162 | * buffer. |
| 163 | */ |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 164 | if (!state->xmit.buf) { |
Alan Cox | df4f4dd | 2008-07-16 21:53:50 +0100 | [diff] [blame] | 165 | /* This is protected by the per port mutex */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | page = get_zeroed_page(GFP_KERNEL); |
| 167 | if (!page) |
| 168 | return -ENOMEM; |
| 169 | |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 170 | state->xmit.buf = (unsigned char *) page; |
| 171 | uart_circ_clear(&state->xmit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | } |
| 173 | |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 174 | retval = uport->ops->startup(uport); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | if (retval == 0) { |
| 176 | if (init_hw) { |
| 177 | /* |
| 178 | * Initialise the hardware port settings. |
| 179 | */ |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 180 | uart_change_speed(tty, state, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
| 182 | /* |
| 183 | * Setup the RTS and DTR signals once the |
| 184 | * port is open and ready to respond. |
| 185 | */ |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 186 | if (tty->termios->c_cflag & CBAUD) |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 187 | uart_set_mctrl(uport, TIOCM_RTS | TIOCM_DTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | } |
| 189 | |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 190 | if (port->flags & ASYNC_CTS_FLOW) { |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 191 | spin_lock_irq(&uport->lock); |
| 192 | if (!(uport->ops->get_mctrl(uport) & TIOCM_CTS)) |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 193 | tty->hw_stopped = 1; |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 194 | spin_unlock_irq(&uport->lock); |
Russell King | 0dd7a1a | 2005-06-29 18:40:53 +0100 | [diff] [blame] | 195 | } |
| 196 | |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 197 | set_bit(ASYNCB_INITIALIZED, &port->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 199 | clear_bit(TTY_IO_ERROR, &tty->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | if (retval && capable(CAP_SYS_ADMIN)) |
| 203 | retval = 0; |
| 204 | |
| 205 | return retval; |
| 206 | } |
| 207 | |
| 208 | /* |
| 209 | * This routine will shutdown a serial port; interrupts are disabled, and |
| 210 | * DTR is dropped if the hangup on close termio flag is on. Calls to |
| 211 | * uart_shutdown are serialised by the per-port semaphore. |
| 212 | */ |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 213 | static void uart_shutdown(struct tty_struct *tty, struct uart_state *state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | { |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 215 | struct uart_port *uport = state->uart_port; |
Alan Cox | bdc04e3 | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 216 | struct tty_port *port = &state->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | |
Russell King | ee31b33 | 2005-11-13 15:28:51 +0000 | [diff] [blame] | 218 | /* |
| 219 | * Set the TTY IO error marker |
| 220 | */ |
Alan Cox | f751928 | 2009-01-02 13:49:21 +0000 | [diff] [blame] | 221 | if (tty) |
| 222 | set_bit(TTY_IO_ERROR, &tty->flags); |
Russell King | ee31b33 | 2005-11-13 15:28:51 +0000 | [diff] [blame] | 223 | |
Alan Cox | bdc04e3 | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 224 | if (test_and_clear_bit(ASYNCB_INITIALIZED, &port->flags)) { |
Russell King | ee31b33 | 2005-11-13 15:28:51 +0000 | [diff] [blame] | 225 | /* |
| 226 | * Turn off DTR and RTS early. |
| 227 | */ |
Alan Cox | f751928 | 2009-01-02 13:49:21 +0000 | [diff] [blame] | 228 | if (!tty || (tty->termios->c_cflag & HUPCL)) |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 229 | uart_clear_mctrl(uport, TIOCM_DTR | TIOCM_RTS); |
Russell King | ee31b33 | 2005-11-13 15:28:51 +0000 | [diff] [blame] | 230 | |
| 231 | /* |
| 232 | * clear delta_msr_wait queue to avoid mem leaks: we may free |
| 233 | * the irq here so the queue might never be woken up. Note |
| 234 | * that we won't end up waiting on delta_msr_wait again since |
| 235 | * any outstanding file descriptors should be pointing at |
| 236 | * hung_up_tty_fops now. |
| 237 | */ |
Alan Cox | bdc04e3 | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 238 | wake_up_interruptible(&port->delta_msr_wait); |
Russell King | ee31b33 | 2005-11-13 15:28:51 +0000 | [diff] [blame] | 239 | |
| 240 | /* |
| 241 | * Free the IRQ and disable the port. |
| 242 | */ |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 243 | uport->ops->shutdown(uport); |
Russell King | ee31b33 | 2005-11-13 15:28:51 +0000 | [diff] [blame] | 244 | |
| 245 | /* |
| 246 | * Ensure that the IRQ handler isn't running on another CPU. |
| 247 | */ |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 248 | synchronize_irq(uport->irq); |
Russell King | ee31b33 | 2005-11-13 15:28:51 +0000 | [diff] [blame] | 249 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | |
| 251 | /* |
Russell King | ee31b33 | 2005-11-13 15:28:51 +0000 | [diff] [blame] | 252 | * kill off our tasklet |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | */ |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 254 | tasklet_kill(&state->tlet); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
| 256 | /* |
| 257 | * Free the transmit buffer page. |
| 258 | */ |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 259 | if (state->xmit.buf) { |
| 260 | free_page((unsigned long)state->xmit.buf); |
| 261 | state->xmit.buf = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | /** |
| 266 | * uart_update_timeout - update per-port FIFO timeout. |
| 267 | * @port: uart_port structure describing the port |
| 268 | * @cflag: termios cflag value |
| 269 | * @baud: speed of the port |
| 270 | * |
| 271 | * Set the port FIFO timeout value. The @cflag value should |
| 272 | * reflect the actual hardware settings. |
| 273 | */ |
| 274 | void |
| 275 | uart_update_timeout(struct uart_port *port, unsigned int cflag, |
| 276 | unsigned int baud) |
| 277 | { |
| 278 | unsigned int bits; |
| 279 | |
| 280 | /* byte size and parity */ |
| 281 | switch (cflag & CSIZE) { |
| 282 | case CS5: |
| 283 | bits = 7; |
| 284 | break; |
| 285 | case CS6: |
| 286 | bits = 8; |
| 287 | break; |
| 288 | case CS7: |
| 289 | bits = 9; |
| 290 | break; |
| 291 | default: |
| 292 | bits = 10; |
Alan Cox | a46c999 | 2008-02-08 04:18:53 -0800 | [diff] [blame] | 293 | break; /* CS8 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | if (cflag & CSTOPB) |
| 297 | bits++; |
| 298 | if (cflag & PARENB) |
| 299 | bits++; |
| 300 | |
| 301 | /* |
| 302 | * The total number of bits to be transmitted in the fifo. |
| 303 | */ |
| 304 | bits = bits * port->fifosize; |
| 305 | |
| 306 | /* |
| 307 | * Figure the timeout to send the above number of bits. |
| 308 | * Add .02 seconds of slop |
| 309 | */ |
| 310 | port->timeout = (HZ * bits) / baud + HZ/50; |
| 311 | } |
| 312 | |
| 313 | EXPORT_SYMBOL(uart_update_timeout); |
| 314 | |
| 315 | /** |
| 316 | * uart_get_baud_rate - return baud rate for a particular port |
| 317 | * @port: uart_port structure describing the port in question. |
| 318 | * @termios: desired termios settings. |
| 319 | * @old: old termios (or NULL) |
| 320 | * @min: minimum acceptable baud rate |
| 321 | * @max: maximum acceptable baud rate |
| 322 | * |
| 323 | * Decode the termios structure into a numeric baud rate, |
| 324 | * taking account of the magic 38400 baud rate (with spd_* |
| 325 | * flags), and mapping the %B0 rate to 9600 baud. |
| 326 | * |
| 327 | * If the new baud rate is invalid, try the old termios setting. |
| 328 | * If it's still invalid, we try 9600 baud. |
| 329 | * |
| 330 | * Update the @termios structure to reflect the baud rate |
Alan Cox | eb424fd | 2008-04-28 02:14:07 -0700 | [diff] [blame] | 331 | * we're actually going to be using. Don't do this for the case |
| 332 | * where B0 is requested ("hang up"). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | */ |
| 334 | unsigned int |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 335 | uart_get_baud_rate(struct uart_port *port, struct ktermios *termios, |
| 336 | struct ktermios *old, unsigned int min, unsigned int max) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | { |
| 338 | unsigned int try, baud, altbaud = 38400; |
Alan Cox | eb424fd | 2008-04-28 02:14:07 -0700 | [diff] [blame] | 339 | int hung_up = 0; |
Russell King | 0077d45 | 2006-01-21 23:03:28 +0000 | [diff] [blame] | 340 | upf_t flags = port->flags & UPF_SPD_MASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | |
| 342 | if (flags == UPF_SPD_HI) |
| 343 | altbaud = 57600; |
André Goddard Rosa | 82cb7ba | 2009-10-25 11:18:26 -0200 | [diff] [blame] | 344 | else if (flags == UPF_SPD_VHI) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | altbaud = 115200; |
André Goddard Rosa | 82cb7ba | 2009-10-25 11:18:26 -0200 | [diff] [blame] | 346 | else if (flags == UPF_SPD_SHI) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | altbaud = 230400; |
André Goddard Rosa | 82cb7ba | 2009-10-25 11:18:26 -0200 | [diff] [blame] | 348 | else if (flags == UPF_SPD_WARP) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | altbaud = 460800; |
| 350 | |
| 351 | for (try = 0; try < 2; try++) { |
| 352 | baud = tty_termios_baud_rate(termios); |
| 353 | |
| 354 | /* |
| 355 | * The spd_hi, spd_vhi, spd_shi, spd_warp kludge... |
| 356 | * Die! Die! Die! |
| 357 | */ |
| 358 | if (baud == 38400) |
| 359 | baud = altbaud; |
| 360 | |
| 361 | /* |
| 362 | * Special case: B0 rate. |
| 363 | */ |
Alan Cox | eb424fd | 2008-04-28 02:14:07 -0700 | [diff] [blame] | 364 | if (baud == 0) { |
| 365 | hung_up = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | baud = 9600; |
Alan Cox | eb424fd | 2008-04-28 02:14:07 -0700 | [diff] [blame] | 367 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
| 369 | if (baud >= min && baud <= max) |
| 370 | return baud; |
| 371 | |
| 372 | /* |
| 373 | * Oops, the quotient was zero. Try again with |
| 374 | * the old baud rate if possible. |
| 375 | */ |
| 376 | termios->c_cflag &= ~CBAUD; |
| 377 | if (old) { |
Alan Cox | 6d4d67b | 2008-02-04 22:27:53 -0800 | [diff] [blame] | 378 | baud = tty_termios_baud_rate(old); |
Alan Cox | eb424fd | 2008-04-28 02:14:07 -0700 | [diff] [blame] | 379 | if (!hung_up) |
| 380 | tty_termios_encode_baud_rate(termios, |
| 381 | baud, baud); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | old = NULL; |
| 383 | continue; |
| 384 | } |
| 385 | |
| 386 | /* |
Alan Cox | 16ae2a8 | 2010-01-04 16:26:21 +0000 | [diff] [blame] | 387 | * As a last resort, if the range cannot be met then clip to |
| 388 | * the nearest chip supported rate. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | */ |
Alan Cox | 16ae2a8 | 2010-01-04 16:26:21 +0000 | [diff] [blame] | 390 | if (!hung_up) { |
| 391 | if (baud <= min) |
| 392 | tty_termios_encode_baud_rate(termios, |
| 393 | min + 1, min + 1); |
| 394 | else |
| 395 | tty_termios_encode_baud_rate(termios, |
| 396 | max - 1, max - 1); |
| 397 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | } |
Alan Cox | 16ae2a8 | 2010-01-04 16:26:21 +0000 | [diff] [blame] | 399 | /* Should never happen */ |
| 400 | WARN_ON(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | return 0; |
| 402 | } |
| 403 | |
| 404 | EXPORT_SYMBOL(uart_get_baud_rate); |
| 405 | |
| 406 | /** |
| 407 | * uart_get_divisor - return uart clock divisor |
| 408 | * @port: uart_port structure describing the port. |
| 409 | * @baud: desired baud rate |
| 410 | * |
| 411 | * Calculate the uart clock divisor for the port. |
| 412 | */ |
| 413 | unsigned int |
| 414 | uart_get_divisor(struct uart_port *port, unsigned int baud) |
| 415 | { |
| 416 | unsigned int quot; |
| 417 | |
| 418 | /* |
| 419 | * Old custom speed handling. |
| 420 | */ |
| 421 | if (baud == 38400 && (port->flags & UPF_SPD_MASK) == UPF_SPD_CUST) |
| 422 | quot = port->custom_divisor; |
| 423 | else |
| 424 | quot = (port->uartclk + (8 * baud)) / (16 * baud); |
| 425 | |
| 426 | return quot; |
| 427 | } |
| 428 | |
| 429 | EXPORT_SYMBOL(uart_get_divisor); |
| 430 | |
Alan Cox | 23d22ce | 2008-04-30 00:54:11 -0700 | [diff] [blame] | 431 | /* FIXME: Consistent locking policy */ |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 432 | static void uart_change_speed(struct tty_struct *tty, struct uart_state *state, |
| 433 | struct ktermios *old_termios) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | { |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 435 | struct tty_port *port = &state->port; |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 436 | struct uart_port *uport = state->uart_port; |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 437 | struct ktermios *termios; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | |
| 439 | /* |
| 440 | * If we have no tty, termios, or the port does not exist, |
| 441 | * then we can't set the parameters for this port. |
| 442 | */ |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 443 | if (!tty || !tty->termios || uport->type == PORT_UNKNOWN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | return; |
| 445 | |
| 446 | termios = tty->termios; |
| 447 | |
| 448 | /* |
| 449 | * Set flags based on termios cflag |
| 450 | */ |
| 451 | if (termios->c_cflag & CRTSCTS) |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 452 | set_bit(ASYNCB_CTS_FLOW, &port->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | else |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 454 | clear_bit(ASYNCB_CTS_FLOW, &port->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | |
| 456 | if (termios->c_cflag & CLOCAL) |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 457 | clear_bit(ASYNCB_CHECK_CD, &port->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | else |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 459 | set_bit(ASYNCB_CHECK_CD, &port->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 461 | uport->ops->set_termios(uport, termios, old_termios); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | } |
| 463 | |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 464 | static inline int __uart_put_char(struct uart_port *port, |
| 465 | struct circ_buf *circ, unsigned char c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | { |
| 467 | unsigned long flags; |
Alan Cox | 23d22ce | 2008-04-30 00:54:11 -0700 | [diff] [blame] | 468 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | |
| 470 | if (!circ->buf) |
Alan Cox | 23d22ce | 2008-04-30 00:54:11 -0700 | [diff] [blame] | 471 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | |
| 473 | spin_lock_irqsave(&port->lock, flags); |
| 474 | if (uart_circ_chars_free(circ) != 0) { |
| 475 | circ->buf[circ->head] = c; |
| 476 | circ->head = (circ->head + 1) & (UART_XMIT_SIZE - 1); |
Alan Cox | 23d22ce | 2008-04-30 00:54:11 -0700 | [diff] [blame] | 477 | ret = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | } |
| 479 | spin_unlock_irqrestore(&port->lock, flags); |
Alan Cox | 23d22ce | 2008-04-30 00:54:11 -0700 | [diff] [blame] | 480 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | } |
| 482 | |
Alan Cox | 23d22ce | 2008-04-30 00:54:11 -0700 | [diff] [blame] | 483 | static int uart_put_char(struct tty_struct *tty, unsigned char ch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | { |
| 485 | struct uart_state *state = tty->driver_data; |
| 486 | |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 487 | return __uart_put_char(state->uart_port, &state->xmit, ch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | } |
| 489 | |
| 490 | static void uart_flush_chars(struct tty_struct *tty) |
| 491 | { |
| 492 | uart_start(tty); |
| 493 | } |
| 494 | |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 495 | static int uart_write(struct tty_struct *tty, |
| 496 | const unsigned char *buf, int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | { |
| 498 | struct uart_state *state = tty->driver_data; |
Pavel Machek | d5f735e | 2006-03-07 21:55:20 -0800 | [diff] [blame] | 499 | struct uart_port *port; |
| 500 | struct circ_buf *circ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | unsigned long flags; |
| 502 | int c, ret = 0; |
| 503 | |
Pavel Machek | d5f735e | 2006-03-07 21:55:20 -0800 | [diff] [blame] | 504 | /* |
| 505 | * This means you called this function _after_ the port was |
| 506 | * closed. No cookie for you. |
| 507 | */ |
Alan Cox | f751928 | 2009-01-02 13:49:21 +0000 | [diff] [blame] | 508 | if (!state) { |
Pavel Machek | d5f735e | 2006-03-07 21:55:20 -0800 | [diff] [blame] | 509 | WARN_ON(1); |
| 510 | return -EL3HLT; |
| 511 | } |
| 512 | |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 513 | port = state->uart_port; |
| 514 | circ = &state->xmit; |
Pavel Machek | d5f735e | 2006-03-07 21:55:20 -0800 | [diff] [blame] | 515 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | if (!circ->buf) |
| 517 | return 0; |
| 518 | |
| 519 | spin_lock_irqsave(&port->lock, flags); |
| 520 | while (1) { |
| 521 | c = CIRC_SPACE_TO_END(circ->head, circ->tail, UART_XMIT_SIZE); |
| 522 | if (count < c) |
| 523 | c = count; |
| 524 | if (c <= 0) |
| 525 | break; |
| 526 | memcpy(circ->buf + circ->head, buf, c); |
| 527 | circ->head = (circ->head + c) & (UART_XMIT_SIZE - 1); |
| 528 | buf += c; |
| 529 | count -= c; |
| 530 | ret += c; |
| 531 | } |
| 532 | spin_unlock_irqrestore(&port->lock, flags); |
| 533 | |
| 534 | uart_start(tty); |
| 535 | return ret; |
| 536 | } |
| 537 | |
| 538 | static int uart_write_room(struct tty_struct *tty) |
| 539 | { |
| 540 | struct uart_state *state = tty->driver_data; |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 541 | unsigned long flags; |
| 542 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 544 | spin_lock_irqsave(&state->uart_port->lock, flags); |
| 545 | ret = uart_circ_chars_free(&state->xmit); |
| 546 | spin_unlock_irqrestore(&state->uart_port->lock, flags); |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 547 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | } |
| 549 | |
| 550 | static int uart_chars_in_buffer(struct tty_struct *tty) |
| 551 | { |
| 552 | struct uart_state *state = tty->driver_data; |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 553 | unsigned long flags; |
| 554 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 556 | spin_lock_irqsave(&state->uart_port->lock, flags); |
| 557 | ret = uart_circ_chars_pending(&state->xmit); |
| 558 | spin_unlock_irqrestore(&state->uart_port->lock, flags); |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 559 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | } |
| 561 | |
| 562 | static void uart_flush_buffer(struct tty_struct *tty) |
| 563 | { |
| 564 | struct uart_state *state = tty->driver_data; |
Tetsuo Handa | 55d7b68 | 2008-05-06 20:42:27 -0700 | [diff] [blame] | 565 | struct uart_port *port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | unsigned long flags; |
| 567 | |
Pavel Machek | d5f735e | 2006-03-07 21:55:20 -0800 | [diff] [blame] | 568 | /* |
| 569 | * This means you called this function _after_ the port was |
| 570 | * closed. No cookie for you. |
| 571 | */ |
Alan Cox | f751928 | 2009-01-02 13:49:21 +0000 | [diff] [blame] | 572 | if (!state) { |
Pavel Machek | d5f735e | 2006-03-07 21:55:20 -0800 | [diff] [blame] | 573 | WARN_ON(1); |
| 574 | return; |
| 575 | } |
| 576 | |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 577 | port = state->uart_port; |
Jiri Slaby | eb3a1e1 | 2007-05-06 14:48:52 -0700 | [diff] [blame] | 578 | pr_debug("uart_flush_buffer(%d) called\n", tty->index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | |
| 580 | spin_lock_irqsave(&port->lock, flags); |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 581 | uart_circ_clear(&state->xmit); |
Haavard Skinnemoen | 6bb0e3a | 2008-07-16 21:52:36 +0100 | [diff] [blame] | 582 | if (port->ops->flush_buffer) |
| 583 | port->ops->flush_buffer(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | spin_unlock_irqrestore(&port->lock, flags); |
| 585 | tty_wakeup(tty); |
| 586 | } |
| 587 | |
| 588 | /* |
| 589 | * This function is used to send a high-priority XON/XOFF character to |
| 590 | * the device |
| 591 | */ |
| 592 | static void uart_send_xchar(struct tty_struct *tty, char ch) |
| 593 | { |
| 594 | struct uart_state *state = tty->driver_data; |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 595 | struct uart_port *port = state->uart_port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | unsigned long flags; |
| 597 | |
| 598 | if (port->ops->send_xchar) |
| 599 | port->ops->send_xchar(port, ch); |
| 600 | else { |
| 601 | port->x_char = ch; |
| 602 | if (ch) { |
| 603 | spin_lock_irqsave(&port->lock, flags); |
Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 604 | port->ops->start_tx(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | spin_unlock_irqrestore(&port->lock, flags); |
| 606 | } |
| 607 | } |
| 608 | } |
| 609 | |
| 610 | static void uart_throttle(struct tty_struct *tty) |
| 611 | { |
| 612 | struct uart_state *state = tty->driver_data; |
| 613 | |
| 614 | if (I_IXOFF(tty)) |
| 615 | uart_send_xchar(tty, STOP_CHAR(tty)); |
| 616 | |
| 617 | if (tty->termios->c_cflag & CRTSCTS) |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 618 | uart_clear_mctrl(state->uart_port, TIOCM_RTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | static void uart_unthrottle(struct tty_struct *tty) |
| 622 | { |
| 623 | struct uart_state *state = tty->driver_data; |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 624 | struct uart_port *port = state->uart_port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | |
| 626 | if (I_IXOFF(tty)) { |
| 627 | if (port->x_char) |
| 628 | port->x_char = 0; |
| 629 | else |
| 630 | uart_send_xchar(tty, START_CHAR(tty)); |
| 631 | } |
| 632 | |
| 633 | if (tty->termios->c_cflag & CRTSCTS) |
| 634 | uart_set_mctrl(port, TIOCM_RTS); |
| 635 | } |
| 636 | |
| 637 | static int uart_get_info(struct uart_state *state, |
| 638 | struct serial_struct __user *retinfo) |
| 639 | { |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 640 | struct uart_port *uport = state->uart_port; |
| 641 | struct tty_port *port = &state->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | struct serial_struct tmp; |
| 643 | |
| 644 | memset(&tmp, 0, sizeof(tmp)); |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 645 | |
| 646 | /* Ensure the state we copy is consistent and no hardware changes |
| 647 | occur as we go */ |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 648 | mutex_lock(&port->mutex); |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 649 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 650 | tmp.type = uport->type; |
| 651 | tmp.line = uport->line; |
| 652 | tmp.port = uport->iobase; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | if (HIGH_BITS_OFFSET) |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 654 | tmp.port_high = (long) uport->iobase >> HIGH_BITS_OFFSET; |
| 655 | tmp.irq = uport->irq; |
| 656 | tmp.flags = uport->flags; |
| 657 | tmp.xmit_fifo_size = uport->fifosize; |
| 658 | tmp.baud_base = uport->uartclk / 16; |
| 659 | tmp.close_delay = port->close_delay / 10; |
Alan Cox | 016af53 | 2009-09-19 13:13:32 -0700 | [diff] [blame] | 660 | tmp.closing_wait = port->closing_wait == ASYNC_CLOSING_WAIT_NONE ? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | ASYNC_CLOSING_WAIT_NONE : |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 662 | port->closing_wait / 10; |
| 663 | tmp.custom_divisor = uport->custom_divisor; |
| 664 | tmp.hub6 = uport->hub6; |
| 665 | tmp.io_type = uport->iotype; |
| 666 | tmp.iomem_reg_shift = uport->regshift; |
| 667 | tmp.iomem_base = (void *)(unsigned long)uport->mapbase; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 669 | mutex_unlock(&port->mutex); |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 670 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | if (copy_to_user(retinfo, &tmp, sizeof(*retinfo))) |
| 672 | return -EFAULT; |
| 673 | return 0; |
| 674 | } |
| 675 | |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 676 | static int uart_set_info(struct tty_struct *tty, struct uart_state *state, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | struct serial_struct __user *newinfo) |
| 678 | { |
| 679 | struct serial_struct new_serial; |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 680 | struct uart_port *uport = state->uart_port; |
| 681 | struct tty_port *port = &state->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | unsigned long new_port; |
Russell King | 0077d45 | 2006-01-21 23:03:28 +0000 | [diff] [blame] | 683 | unsigned int change_irq, change_port, closing_wait; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | unsigned int old_custom_divisor, close_delay; |
Russell King | 0077d45 | 2006-01-21 23:03:28 +0000 | [diff] [blame] | 685 | upf_t old_flags, new_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | int retval = 0; |
| 687 | |
| 688 | if (copy_from_user(&new_serial, newinfo, sizeof(new_serial))) |
| 689 | return -EFAULT; |
| 690 | |
| 691 | new_port = new_serial.port; |
| 692 | if (HIGH_BITS_OFFSET) |
| 693 | new_port += (unsigned long) new_serial.port_high << HIGH_BITS_OFFSET; |
| 694 | |
| 695 | new_serial.irq = irq_canonicalize(new_serial.irq); |
| 696 | close_delay = new_serial.close_delay * 10; |
| 697 | closing_wait = new_serial.closing_wait == ASYNC_CLOSING_WAIT_NONE ? |
Alan Cox | 016af53 | 2009-09-19 13:13:32 -0700 | [diff] [blame] | 698 | ASYNC_CLOSING_WAIT_NONE : new_serial.closing_wait * 10; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | |
| 700 | /* |
Alan Cox | 91312cd | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 701 | * This semaphore protects port->count. It is also |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | * very useful to prevent opens. Also, take the |
| 703 | * port configuration semaphore to make sure that a |
| 704 | * module insertion/removal doesn't change anything |
| 705 | * under us. |
| 706 | */ |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 707 | mutex_lock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 709 | change_irq = !(uport->flags & UPF_FIXED_PORT) |
| 710 | && new_serial.irq != uport->irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | |
| 712 | /* |
| 713 | * Since changing the 'type' of the port changes its resource |
| 714 | * allocations, we should treat type changes the same as |
| 715 | * IO port changes. |
| 716 | */ |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 717 | change_port = !(uport->flags & UPF_FIXED_PORT) |
| 718 | && (new_port != uport->iobase || |
| 719 | (unsigned long)new_serial.iomem_base != uport->mapbase || |
| 720 | new_serial.hub6 != uport->hub6 || |
| 721 | new_serial.io_type != uport->iotype || |
| 722 | new_serial.iomem_reg_shift != uport->regshift || |
| 723 | new_serial.type != uport->type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 725 | old_flags = uport->flags; |
Russell King | 0077d45 | 2006-01-21 23:03:28 +0000 | [diff] [blame] | 726 | new_flags = new_serial.flags; |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 727 | old_custom_divisor = uport->custom_divisor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | |
| 729 | if (!capable(CAP_SYS_ADMIN)) { |
| 730 | retval = -EPERM; |
| 731 | if (change_irq || change_port || |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 732 | (new_serial.baud_base != uport->uartclk / 16) || |
| 733 | (close_delay != port->close_delay) || |
| 734 | (closing_wait != port->closing_wait) || |
Russell King | 947deee | 2006-07-02 20:45:51 +0100 | [diff] [blame] | 735 | (new_serial.xmit_fifo_size && |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 736 | new_serial.xmit_fifo_size != uport->fifosize) || |
Russell King | 0077d45 | 2006-01-21 23:03:28 +0000 | [diff] [blame] | 737 | (((new_flags ^ old_flags) & ~UPF_USR_MASK) != 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | goto exit; |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 739 | uport->flags = ((uport->flags & ~UPF_USR_MASK) | |
Russell King | 0077d45 | 2006-01-21 23:03:28 +0000 | [diff] [blame] | 740 | (new_flags & UPF_USR_MASK)); |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 741 | uport->custom_divisor = new_serial.custom_divisor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | goto check_and_exit; |
| 743 | } |
| 744 | |
| 745 | /* |
| 746 | * Ask the low level driver to verify the settings. |
| 747 | */ |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 748 | if (uport->ops->verify_port) |
| 749 | retval = uport->ops->verify_port(uport, &new_serial); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | |
Yinghai Lu | a62c413 | 2008-08-19 20:49:55 -0700 | [diff] [blame] | 751 | if ((new_serial.irq >= nr_irqs) || (new_serial.irq < 0) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | (new_serial.baud_base < 9600)) |
| 753 | retval = -EINVAL; |
| 754 | |
| 755 | if (retval) |
| 756 | goto exit; |
| 757 | |
| 758 | if (change_port || change_irq) { |
| 759 | retval = -EBUSY; |
| 760 | |
| 761 | /* |
| 762 | * Make sure that we are the sole user of this port. |
| 763 | */ |
Alan Cox | b58d13a | 2009-09-19 13:13:32 -0700 | [diff] [blame] | 764 | if (tty_port_users(port) > 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | goto exit; |
| 766 | |
| 767 | /* |
| 768 | * We need to shutdown the serial port at the old |
| 769 | * port/type/irq combination. |
| 770 | */ |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 771 | uart_shutdown(tty, state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | } |
| 773 | |
| 774 | if (change_port) { |
| 775 | unsigned long old_iobase, old_mapbase; |
| 776 | unsigned int old_type, old_iotype, old_hub6, old_shift; |
| 777 | |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 778 | old_iobase = uport->iobase; |
| 779 | old_mapbase = uport->mapbase; |
| 780 | old_type = uport->type; |
| 781 | old_hub6 = uport->hub6; |
| 782 | old_iotype = uport->iotype; |
| 783 | old_shift = uport->regshift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | |
| 785 | /* |
| 786 | * Free and release old regions |
| 787 | */ |
| 788 | if (old_type != PORT_UNKNOWN) |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 789 | uport->ops->release_port(uport); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 791 | uport->iobase = new_port; |
| 792 | uport->type = new_serial.type; |
| 793 | uport->hub6 = new_serial.hub6; |
| 794 | uport->iotype = new_serial.io_type; |
| 795 | uport->regshift = new_serial.iomem_reg_shift; |
| 796 | uport->mapbase = (unsigned long)new_serial.iomem_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | |
| 798 | /* |
| 799 | * Claim and map the new regions |
| 800 | */ |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 801 | if (uport->type != PORT_UNKNOWN) { |
| 802 | retval = uport->ops->request_port(uport); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | } else { |
| 804 | /* Always success - Jean II */ |
| 805 | retval = 0; |
| 806 | } |
| 807 | |
| 808 | /* |
| 809 | * If we fail to request resources for the |
| 810 | * new port, try to restore the old settings. |
| 811 | */ |
| 812 | if (retval && old_type != PORT_UNKNOWN) { |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 813 | uport->iobase = old_iobase; |
| 814 | uport->type = old_type; |
| 815 | uport->hub6 = old_hub6; |
| 816 | uport->iotype = old_iotype; |
| 817 | uport->regshift = old_shift; |
| 818 | uport->mapbase = old_mapbase; |
| 819 | retval = uport->ops->request_port(uport); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | /* |
| 821 | * If we failed to restore the old settings, |
| 822 | * we fail like this. |
| 823 | */ |
| 824 | if (retval) |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 825 | uport->type = PORT_UNKNOWN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | |
| 827 | /* |
| 828 | * We failed anyway. |
| 829 | */ |
| 830 | retval = -EBUSY; |
Alan Cox | a46c999 | 2008-02-08 04:18:53 -0800 | [diff] [blame] | 831 | /* Added to return the correct error -Ram Gupta */ |
| 832 | goto exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | } |
| 834 | } |
| 835 | |
David Gibson | abb4a23 | 2007-05-06 14:48:49 -0700 | [diff] [blame] | 836 | if (change_irq) |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 837 | uport->irq = new_serial.irq; |
| 838 | if (!(uport->flags & UPF_FIXED_PORT)) |
| 839 | uport->uartclk = new_serial.baud_base * 16; |
| 840 | uport->flags = (uport->flags & ~UPF_CHANGE_MASK) | |
Russell King | 0077d45 | 2006-01-21 23:03:28 +0000 | [diff] [blame] | 841 | (new_flags & UPF_CHANGE_MASK); |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 842 | uport->custom_divisor = new_serial.custom_divisor; |
| 843 | port->close_delay = close_delay; |
| 844 | port->closing_wait = closing_wait; |
Russell King | 947deee | 2006-07-02 20:45:51 +0100 | [diff] [blame] | 845 | if (new_serial.xmit_fifo_size) |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 846 | uport->fifosize = new_serial.xmit_fifo_size; |
| 847 | if (port->tty) |
| 848 | port->tty->low_latency = |
| 849 | (uport->flags & UPF_LOW_LATENCY) ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | |
| 851 | check_and_exit: |
| 852 | retval = 0; |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 853 | if (uport->type == PORT_UNKNOWN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | goto exit; |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 855 | if (port->flags & ASYNC_INITIALIZED) { |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 856 | if (((old_flags ^ uport->flags) & UPF_SPD_MASK) || |
| 857 | old_custom_divisor != uport->custom_divisor) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | /* |
| 859 | * If they're setting up a custom divisor or speed, |
| 860 | * instead of clearing it, then bitch about it. No |
| 861 | * need to rate-limit; it's CAP_SYS_ADMIN only. |
| 862 | */ |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 863 | if (uport->flags & UPF_SPD_MASK) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | char buf[64]; |
| 865 | printk(KERN_NOTICE |
| 866 | "%s sets custom speed on %s. This " |
| 867 | "is deprecated.\n", current->comm, |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 868 | tty_name(port->tty, buf)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | } |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 870 | uart_change_speed(tty, state, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | } |
| 872 | } else |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 873 | retval = uart_startup(tty, state, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | exit: |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 875 | mutex_unlock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | return retval; |
| 877 | } |
| 878 | |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 879 | /** |
| 880 | * uart_get_lsr_info - get line status register info |
| 881 | * @tty: tty associated with the UART |
| 882 | * @state: UART being queried |
| 883 | * @value: returned modem value |
| 884 | * |
| 885 | * Note: uart_ioctl protects us against hangups. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | */ |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 887 | static int uart_get_lsr_info(struct tty_struct *tty, |
| 888 | struct uart_state *state, unsigned int __user *value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | { |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 890 | struct uart_port *uport = state->uart_port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | unsigned int result; |
| 892 | |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 893 | result = uport->ops->tx_empty(uport); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | |
| 895 | /* |
| 896 | * If we're about to load something into the transmit |
| 897 | * register, we'll pretend the transmitter isn't empty to |
| 898 | * avoid a race condition (depending on when the transmit |
| 899 | * interrupt happens). |
| 900 | */ |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 901 | if (uport->x_char || |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 902 | ((uart_circ_chars_pending(&state->xmit) > 0) && |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 903 | !tty->stopped && !tty->hw_stopped)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | result &= ~TIOCSER_TEMT; |
Alan Cox | a46c999 | 2008-02-08 04:18:53 -0800 | [diff] [blame] | 905 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | return put_user(result, value); |
| 907 | } |
| 908 | |
| 909 | static int uart_tiocmget(struct tty_struct *tty, struct file *file) |
| 910 | { |
| 911 | struct uart_state *state = tty->driver_data; |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 912 | struct tty_port *port = &state->port; |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 913 | struct uart_port *uport = state->uart_port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | int result = -EIO; |
| 915 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 916 | mutex_lock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | if ((!file || !tty_hung_up_p(file)) && |
| 918 | !(tty->flags & (1 << TTY_IO_ERROR))) { |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 919 | result = uport->mctrl; |
Russell King | c5f4644 | 2005-06-29 09:42:38 +0100 | [diff] [blame] | 920 | |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 921 | spin_lock_irq(&uport->lock); |
| 922 | result |= uport->ops->get_mctrl(uport); |
| 923 | spin_unlock_irq(&uport->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | } |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 925 | mutex_unlock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | |
| 927 | return result; |
| 928 | } |
| 929 | |
| 930 | static int |
| 931 | uart_tiocmset(struct tty_struct *tty, struct file *file, |
| 932 | unsigned int set, unsigned int clear) |
| 933 | { |
| 934 | struct uart_state *state = tty->driver_data; |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 935 | struct uart_port *uport = state->uart_port; |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 936 | struct tty_port *port = &state->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | int ret = -EIO; |
| 938 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 939 | mutex_lock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | if ((!file || !tty_hung_up_p(file)) && |
| 941 | !(tty->flags & (1 << TTY_IO_ERROR))) { |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 942 | uart_update_mctrl(uport, set, clear); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | ret = 0; |
| 944 | } |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 945 | mutex_unlock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | return ret; |
| 947 | } |
| 948 | |
Alan Cox | 9e98966 | 2008-07-22 11:18:03 +0100 | [diff] [blame] | 949 | static int uart_break_ctl(struct tty_struct *tty, int break_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | { |
| 951 | struct uart_state *state = tty->driver_data; |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 952 | struct tty_port *port = &state->port; |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 953 | struct uart_port *uport = state->uart_port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 955 | mutex_lock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 957 | if (uport->type != PORT_UNKNOWN) |
| 958 | uport->ops->break_ctl(uport, break_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 960 | mutex_unlock(&port->mutex); |
Alan Cox | 9e98966 | 2008-07-22 11:18:03 +0100 | [diff] [blame] | 961 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | } |
| 963 | |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 964 | static int uart_do_autoconfig(struct tty_struct *tty,struct uart_state *state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | { |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 966 | struct uart_port *uport = state->uart_port; |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 967 | struct tty_port *port = &state->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | int flags, ret; |
| 969 | |
| 970 | if (!capable(CAP_SYS_ADMIN)) |
| 971 | return -EPERM; |
| 972 | |
| 973 | /* |
| 974 | * Take the per-port semaphore. This prevents count from |
| 975 | * changing, and hence any extra opens of the port while |
| 976 | * we're auto-configuring. |
| 977 | */ |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 978 | if (mutex_lock_interruptible(&port->mutex)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | return -ERESTARTSYS; |
| 980 | |
| 981 | ret = -EBUSY; |
Alan Cox | b58d13a | 2009-09-19 13:13:32 -0700 | [diff] [blame] | 982 | if (tty_port_users(port) == 1) { |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 983 | uart_shutdown(tty, state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | |
| 985 | /* |
| 986 | * If we already have a port type configured, |
| 987 | * we must release its resources. |
| 988 | */ |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 989 | if (uport->type != PORT_UNKNOWN) |
| 990 | uport->ops->release_port(uport); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | |
| 992 | flags = UART_CONFIG_TYPE; |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 993 | if (uport->flags & UPF_AUTO_IRQ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | flags |= UART_CONFIG_IRQ; |
| 995 | |
| 996 | /* |
| 997 | * This will claim the ports resources if |
| 998 | * a port is found. |
| 999 | */ |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1000 | uport->ops->config_port(uport, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 1002 | ret = uart_startup(tty, state, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | } |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1004 | mutex_unlock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | return ret; |
| 1006 | } |
| 1007 | |
| 1008 | /* |
| 1009 | * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change |
| 1010 | * - mask passed in arg for lines of interest |
| 1011 | * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking) |
| 1012 | * Caller should use TIOCGICOUNT to see which one it was |
Alan Cox | bdc04e3 | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1013 | * |
| 1014 | * FIXME: This wants extracting into a common all driver implementation |
| 1015 | * of TIOCMWAIT using tty_port. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | */ |
| 1017 | static int |
| 1018 | uart_wait_modem_status(struct uart_state *state, unsigned long arg) |
| 1019 | { |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1020 | struct uart_port *uport = state->uart_port; |
Alan Cox | bdc04e3 | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1021 | struct tty_port *port = &state->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | DECLARE_WAITQUEUE(wait, current); |
| 1023 | struct uart_icount cprev, cnow; |
| 1024 | int ret; |
| 1025 | |
| 1026 | /* |
| 1027 | * note the counters on entry |
| 1028 | */ |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1029 | spin_lock_irq(&uport->lock); |
| 1030 | memcpy(&cprev, &uport->icount, sizeof(struct uart_icount)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | |
| 1032 | /* |
| 1033 | * Force modem status interrupts on |
| 1034 | */ |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1035 | uport->ops->enable_ms(uport); |
| 1036 | spin_unlock_irq(&uport->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | |
Alan Cox | bdc04e3 | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1038 | add_wait_queue(&port->delta_msr_wait, &wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | for (;;) { |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1040 | spin_lock_irq(&uport->lock); |
| 1041 | memcpy(&cnow, &uport->icount, sizeof(struct uart_icount)); |
| 1042 | spin_unlock_irq(&uport->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | |
| 1044 | set_current_state(TASK_INTERRUPTIBLE); |
| 1045 | |
| 1046 | if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) || |
| 1047 | ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) || |
| 1048 | ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) || |
| 1049 | ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) { |
Alan Cox | a46c999 | 2008-02-08 04:18:53 -0800 | [diff] [blame] | 1050 | ret = 0; |
| 1051 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | } |
| 1053 | |
| 1054 | schedule(); |
| 1055 | |
| 1056 | /* see if a signal did it */ |
| 1057 | if (signal_pending(current)) { |
| 1058 | ret = -ERESTARTSYS; |
| 1059 | break; |
| 1060 | } |
| 1061 | |
| 1062 | cprev = cnow; |
| 1063 | } |
| 1064 | |
| 1065 | current->state = TASK_RUNNING; |
Alan Cox | bdc04e3 | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1066 | remove_wait_queue(&port->delta_msr_wait, &wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | |
| 1068 | return ret; |
| 1069 | } |
| 1070 | |
| 1071 | /* |
| 1072 | * Get counter of input serial line interrupts (DCD,RI,DSR,CTS) |
| 1073 | * Return: write counters to the user passed counter struct |
| 1074 | * NB: both 1->0 and 0->1 transitions are counted except for |
| 1075 | * RI where only 0->1 is counted. |
| 1076 | */ |
Alan Cox | d281da7 | 2010-09-16 18:21:24 +0100 | [diff] [blame] | 1077 | static int uart_get_icount(struct tty_struct *tty, |
| 1078 | struct serial_icounter_struct *icount) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | { |
Alan Cox | d281da7 | 2010-09-16 18:21:24 +0100 | [diff] [blame] | 1080 | struct uart_state *state = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | struct uart_icount cnow; |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1082 | struct uart_port *uport = state->uart_port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1084 | spin_lock_irq(&uport->lock); |
| 1085 | memcpy(&cnow, &uport->icount, sizeof(struct uart_icount)); |
| 1086 | spin_unlock_irq(&uport->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | |
Alan Cox | d281da7 | 2010-09-16 18:21:24 +0100 | [diff] [blame] | 1088 | icount->cts = cnow.cts; |
| 1089 | icount->dsr = cnow.dsr; |
| 1090 | icount->rng = cnow.rng; |
| 1091 | icount->dcd = cnow.dcd; |
| 1092 | icount->rx = cnow.rx; |
| 1093 | icount->tx = cnow.tx; |
| 1094 | icount->frame = cnow.frame; |
| 1095 | icount->overrun = cnow.overrun; |
| 1096 | icount->parity = cnow.parity; |
| 1097 | icount->brk = cnow.brk; |
| 1098 | icount->buf_overrun = cnow.buf_overrun; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | |
Alan Cox | d281da7 | 2010-09-16 18:21:24 +0100 | [diff] [blame] | 1100 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | } |
| 1102 | |
| 1103 | /* |
Alan Cox | e523844 | 2008-04-30 00:53:28 -0700 | [diff] [blame] | 1104 | * Called via sys_ioctl. We can use spin_lock_irq() here. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | */ |
| 1106 | static int |
| 1107 | uart_ioctl(struct tty_struct *tty, struct file *filp, unsigned int cmd, |
| 1108 | unsigned long arg) |
| 1109 | { |
| 1110 | struct uart_state *state = tty->driver_data; |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1111 | struct tty_port *port = &state->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | void __user *uarg = (void __user *)arg; |
| 1113 | int ret = -ENOIOCTLCMD; |
| 1114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | |
| 1116 | /* |
| 1117 | * These ioctls don't rely on the hardware to be present. |
| 1118 | */ |
| 1119 | switch (cmd) { |
| 1120 | case TIOCGSERIAL: |
| 1121 | ret = uart_get_info(state, uarg); |
| 1122 | break; |
| 1123 | |
| 1124 | case TIOCSSERIAL: |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 1125 | ret = uart_set_info(tty, state, uarg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | break; |
| 1127 | |
| 1128 | case TIOCSERCONFIG: |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 1129 | ret = uart_do_autoconfig(tty, state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | break; |
| 1131 | |
| 1132 | case TIOCSERGWILD: /* obsolete */ |
| 1133 | case TIOCSERSWILD: /* obsolete */ |
| 1134 | ret = 0; |
| 1135 | break; |
| 1136 | } |
| 1137 | |
| 1138 | if (ret != -ENOIOCTLCMD) |
| 1139 | goto out; |
| 1140 | |
| 1141 | if (tty->flags & (1 << TTY_IO_ERROR)) { |
| 1142 | ret = -EIO; |
| 1143 | goto out; |
| 1144 | } |
| 1145 | |
| 1146 | /* |
| 1147 | * The following should only be used when hardware is present. |
| 1148 | */ |
| 1149 | switch (cmd) { |
| 1150 | case TIOCMIWAIT: |
| 1151 | ret = uart_wait_modem_status(state, arg); |
| 1152 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | } |
| 1154 | |
| 1155 | if (ret != -ENOIOCTLCMD) |
| 1156 | goto out; |
| 1157 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1158 | mutex_lock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | |
| 1160 | if (tty_hung_up_p(filp)) { |
| 1161 | ret = -EIO; |
| 1162 | goto out_up; |
| 1163 | } |
| 1164 | |
| 1165 | /* |
| 1166 | * All these rely on hardware being present and need to be |
| 1167 | * protected against the tty being hung up. |
| 1168 | */ |
| 1169 | switch (cmd) { |
| 1170 | case TIOCSERGETLSR: /* Get line status register */ |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 1171 | ret = uart_get_lsr_info(tty, state, uarg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | break; |
| 1173 | |
| 1174 | default: { |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1175 | struct uart_port *uport = state->uart_port; |
| 1176 | if (uport->ops->ioctl) |
| 1177 | ret = uport->ops->ioctl(uport, cmd, arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | break; |
| 1179 | } |
| 1180 | } |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 1181 | out_up: |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1182 | mutex_unlock(&port->mutex); |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 1183 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | return ret; |
| 1185 | } |
| 1186 | |
Linus Torvalds | edeb280 | 2008-06-04 10:35:03 -0700 | [diff] [blame] | 1187 | static void uart_set_ldisc(struct tty_struct *tty) |
Alan Cox | 64e9159 | 2008-06-03 15:18:54 +0100 | [diff] [blame] | 1188 | { |
| 1189 | struct uart_state *state = tty->driver_data; |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1190 | struct uart_port *uport = state->uart_port; |
Alan Cox | 64e9159 | 2008-06-03 15:18:54 +0100 | [diff] [blame] | 1191 | |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1192 | if (uport->ops->set_ldisc) |
Alan Cox | d87d9b7 | 2010-06-01 22:52:53 +0200 | [diff] [blame] | 1193 | uport->ops->set_ldisc(uport, tty->termios->c_line); |
Alan Cox | 64e9159 | 2008-06-03 15:18:54 +0100 | [diff] [blame] | 1194 | } |
| 1195 | |
Alan Cox | a46c999 | 2008-02-08 04:18:53 -0800 | [diff] [blame] | 1196 | static void uart_set_termios(struct tty_struct *tty, |
| 1197 | struct ktermios *old_termios) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | { |
| 1199 | struct uart_state *state = tty->driver_data; |
| 1200 | unsigned long flags; |
| 1201 | unsigned int cflag = tty->termios->c_cflag; |
| 1202 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | |
| 1204 | /* |
| 1205 | * These are the bits that are used to setup various |
David Woodhouse | 20620d6 | 2007-08-22 14:01:11 -0700 | [diff] [blame] | 1206 | * flags in the low level driver. We can ignore the Bfoo |
| 1207 | * bits in c_cflag; c_[io]speed will always be set |
| 1208 | * appropriately by set_termios() in tty_ioctl.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | */ |
| 1210 | #define RELEVANT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | if ((cflag ^ old_termios->c_cflag) == 0 && |
David Woodhouse | 20620d6 | 2007-08-22 14:01:11 -0700 | [diff] [blame] | 1212 | tty->termios->c_ospeed == old_termios->c_ospeed && |
| 1213 | tty->termios->c_ispeed == old_termios->c_ispeed && |
Alan Cox | e523844 | 2008-04-30 00:53:28 -0700 | [diff] [blame] | 1214 | RELEVANT_IFLAG(tty->termios->c_iflag ^ old_termios->c_iflag) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | return; |
Alan Cox | e523844 | 2008-04-30 00:53:28 -0700 | [diff] [blame] | 1216 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 1218 | uart_change_speed(tty, state, old_termios); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | |
| 1220 | /* Handle transition to B0 status */ |
| 1221 | if ((old_termios->c_cflag & CBAUD) && !(cflag & CBAUD)) |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 1222 | uart_clear_mctrl(state->uart_port, TIOCM_RTS | TIOCM_DTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | /* Handle transition away from B0 status */ |
André Goddard Rosa | 82cb7ba | 2009-10-25 11:18:26 -0200 | [diff] [blame] | 1224 | else if (!(old_termios->c_cflag & CBAUD) && (cflag & CBAUD)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | unsigned int mask = TIOCM_DTR; |
| 1226 | if (!(cflag & CRTSCTS) || |
| 1227 | !test_bit(TTY_THROTTLED, &tty->flags)) |
| 1228 | mask |= TIOCM_RTS; |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 1229 | uart_set_mctrl(state->uart_port, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | } |
| 1231 | |
| 1232 | /* Handle turning off CRTSCTS */ |
| 1233 | if ((old_termios->c_cflag & CRTSCTS) && !(cflag & CRTSCTS)) { |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 1234 | spin_lock_irqsave(&state->uart_port->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | tty->hw_stopped = 0; |
| 1236 | __uart_start(tty); |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 1237 | spin_unlock_irqrestore(&state->uart_port->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | } |
Russell King | 0dd7a1a | 2005-06-29 18:40:53 +0100 | [diff] [blame] | 1239 | /* Handle turning on CRTSCTS */ |
André Goddard Rosa | 82cb7ba | 2009-10-25 11:18:26 -0200 | [diff] [blame] | 1240 | else if (!(old_termios->c_cflag & CRTSCTS) && (cflag & CRTSCTS)) { |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 1241 | spin_lock_irqsave(&state->uart_port->lock, flags); |
| 1242 | if (!(state->uart_port->ops->get_mctrl(state->uart_port) & TIOCM_CTS)) { |
Russell King | 0dd7a1a | 2005-06-29 18:40:53 +0100 | [diff] [blame] | 1243 | tty->hw_stopped = 1; |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 1244 | state->uart_port->ops->stop_tx(state->uart_port); |
Russell King | 0dd7a1a | 2005-06-29 18:40:53 +0100 | [diff] [blame] | 1245 | } |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 1246 | spin_unlock_irqrestore(&state->uart_port->lock, flags); |
Russell King | 0dd7a1a | 2005-06-29 18:40:53 +0100 | [diff] [blame] | 1247 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | #if 0 |
| 1249 | /* |
| 1250 | * No need to wake up processes in open wait, since they |
| 1251 | * sample the CLOCAL flag once, and don't recheck it. |
| 1252 | * XXX It's not clear whether the current behavior is correct |
| 1253 | * or not. Hence, this may change..... |
| 1254 | */ |
| 1255 | if (!(old_termios->c_cflag & CLOCAL) && |
| 1256 | (tty->termios->c_cflag & CLOCAL)) |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 1257 | wake_up_interruptible(&state->uart_port.open_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | #endif |
| 1259 | } |
| 1260 | |
| 1261 | /* |
| 1262 | * In 2.4.5, calls to this will be serialized via the BKL in |
| 1263 | * linux/drivers/char/tty_io.c:tty_release() |
| 1264 | * linux/drivers/char/tty_io.c:do_tty_handup() |
| 1265 | */ |
| 1266 | static void uart_close(struct tty_struct *tty, struct file *filp) |
| 1267 | { |
| 1268 | struct uart_state *state = tty->driver_data; |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1269 | struct tty_port *port; |
| 1270 | struct uart_port *uport; |
Alan Cox | 61cd8a2 | 2010-06-01 22:52:57 +0200 | [diff] [blame] | 1271 | unsigned long flags; |
Alan Cox | a46c999 | 2008-02-08 04:18:53 -0800 | [diff] [blame] | 1272 | |
Arnd Bergmann | ec79d60 | 2010-06-01 22:53:01 +0200 | [diff] [blame] | 1273 | BUG_ON(!tty_locked()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1274 | |
Linus Torvalds | eea7e17 | 2009-10-12 19:13:54 +0200 | [diff] [blame] | 1275 | if (!state) |
| 1276 | return; |
| 1277 | |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1278 | uport = state->uart_port; |
| 1279 | port = &state->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1281 | pr_debug("uart_close(%d) called\n", uport->line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1283 | mutex_lock(&port->mutex); |
Alan Cox | 61cd8a2 | 2010-06-01 22:52:57 +0200 | [diff] [blame] | 1284 | spin_lock_irqsave(&port->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | |
Alan Cox | 61cd8a2 | 2010-06-01 22:52:57 +0200 | [diff] [blame] | 1286 | if (tty_hung_up_p(filp)) { |
| 1287 | spin_unlock_irqrestore(&port->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | goto done; |
Alan Cox | 61cd8a2 | 2010-06-01 22:52:57 +0200 | [diff] [blame] | 1289 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | |
Alan Cox | 91312cd | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1291 | if ((tty->count == 1) && (port->count != 1)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | /* |
| 1293 | * Uh, oh. tty->count is 1, which means that the tty |
Alan Cox | 91312cd | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1294 | * structure will be freed. port->count should always |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | * be one in these conditions. If it's greater than |
| 1296 | * one, we've got real problems, since it means the |
| 1297 | * serial port won't be shutdown. |
| 1298 | */ |
| 1299 | printk(KERN_ERR "uart_close: bad serial port count; tty->count is 1, " |
Alan Cox | 91312cd | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1300 | "port->count is %d\n", port->count); |
| 1301 | port->count = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | } |
Alan Cox | 91312cd | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1303 | if (--port->count < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | printk(KERN_ERR "uart_close: bad serial port count for %s: %d\n", |
Alan Cox | 91312cd | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1305 | tty->name, port->count); |
| 1306 | port->count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | } |
Alan Cox | 61cd8a2 | 2010-06-01 22:52:57 +0200 | [diff] [blame] | 1308 | if (port->count) { |
| 1309 | spin_unlock_irqrestore(&port->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | goto done; |
Alan Cox | 61cd8a2 | 2010-06-01 22:52:57 +0200 | [diff] [blame] | 1311 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | |
| 1313 | /* |
| 1314 | * Now we wait for the transmit buffer to clear; and we notify |
| 1315 | * the line discipline to only process XON/XOFF characters by |
| 1316 | * setting tty->closing. |
| 1317 | */ |
| 1318 | tty->closing = 1; |
Alan Cox | 61cd8a2 | 2010-06-01 22:52:57 +0200 | [diff] [blame] | 1319 | spin_unlock_irqrestore(&port->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | |
Arnd Bergmann | 2036521 | 2010-06-01 22:53:07 +0200 | [diff] [blame] | 1321 | if (port->closing_wait != ASYNC_CLOSING_WAIT_NONE) { |
| 1322 | /* |
| 1323 | * hack: open-coded tty_wait_until_sent to avoid |
| 1324 | * recursive tty_lock |
| 1325 | */ |
| 1326 | long timeout = msecs_to_jiffies(port->closing_wait); |
| 1327 | if (wait_event_interruptible_timeout(tty->write_wait, |
| 1328 | !tty_chars_in_buffer(tty), timeout) >= 0) |
| 1329 | __uart_wait_until_sent(uport, timeout); |
| 1330 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | |
| 1332 | /* |
| 1333 | * At this point, we stop accepting input. To do this, we |
| 1334 | * disable the receive line status interrupts. |
| 1335 | */ |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 1336 | if (port->flags & ASYNC_INITIALIZED) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | unsigned long flags; |
Linus Torvalds | eea7e17 | 2009-10-12 19:13:54 +0200 | [diff] [blame] | 1338 | spin_lock_irqsave(&uport->lock, flags); |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1339 | uport->ops->stop_rx(uport); |
Linus Torvalds | eea7e17 | 2009-10-12 19:13:54 +0200 | [diff] [blame] | 1340 | spin_unlock_irqrestore(&uport->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | /* |
| 1342 | * Before we drop DTR, make sure the UART transmitter |
| 1343 | * has completely drained; this is especially |
| 1344 | * important if there is a transmit FIFO! |
| 1345 | */ |
Arnd Bergmann | 2036521 | 2010-06-01 22:53:07 +0200 | [diff] [blame] | 1346 | __uart_wait_until_sent(uport, uport->timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1347 | } |
| 1348 | |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 1349 | uart_shutdown(tty, state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | uart_flush_buffer(tty); |
| 1351 | |
Alan Cox | a46c999 | 2008-02-08 04:18:53 -0800 | [diff] [blame] | 1352 | tty_ldisc_flush(tty); |
| 1353 | |
Alan Cox | 7b01478 | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 1354 | tty_port_tty_set(port, NULL); |
Alan Cox | 61cd8a2 | 2010-06-01 22:52:57 +0200 | [diff] [blame] | 1355 | spin_lock_irqsave(&port->lock, flags); |
| 1356 | tty->closing = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1358 | if (port->blocked_open) { |
Alan Cox | 61cd8a2 | 2010-06-01 22:52:57 +0200 | [diff] [blame] | 1359 | spin_unlock_irqrestore(&port->lock, flags); |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1360 | if (port->close_delay) |
| 1361 | msleep_interruptible(port->close_delay); |
Alan Cox | 61cd8a2 | 2010-06-01 22:52:57 +0200 | [diff] [blame] | 1362 | spin_lock_irqsave(&port->lock, flags); |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1363 | } else if (!uart_console(uport)) { |
Alan Cox | 61cd8a2 | 2010-06-01 22:52:57 +0200 | [diff] [blame] | 1364 | spin_unlock_irqrestore(&port->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1365 | uart_change_pm(state, 3); |
Alan Cox | 61cd8a2 | 2010-06-01 22:52:57 +0200 | [diff] [blame] | 1366 | spin_lock_irqsave(&port->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | } |
| 1368 | |
| 1369 | /* |
| 1370 | * Wake up anyone trying to open this port. |
| 1371 | */ |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 1372 | clear_bit(ASYNCB_NORMAL_ACTIVE, &port->flags); |
Alan Cox | 61cd8a2 | 2010-06-01 22:52:57 +0200 | [diff] [blame] | 1373 | spin_unlock_irqrestore(&port->lock, flags); |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1374 | wake_up_interruptible(&port->open_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1376 | done: |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1377 | mutex_unlock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | } |
| 1379 | |
Arnd Bergmann | 2036521 | 2010-06-01 22:53:07 +0200 | [diff] [blame] | 1380 | static void __uart_wait_until_sent(struct uart_port *port, int timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | unsigned long char_time, expire; |
| 1383 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | if (port->type == PORT_UNKNOWN || port->fifosize == 0) |
| 1385 | return; |
| 1386 | |
| 1387 | /* |
| 1388 | * Set the check interval to be 1/5 of the estimated time to |
| 1389 | * send a single character, and make it at least 1. The check |
| 1390 | * interval should also be less than the timeout. |
| 1391 | * |
| 1392 | * Note: we have to use pretty tight timings here to satisfy |
| 1393 | * the NIST-PCTS. |
| 1394 | */ |
| 1395 | char_time = (port->timeout - HZ/50) / port->fifosize; |
| 1396 | char_time = char_time / 5; |
| 1397 | if (char_time == 0) |
| 1398 | char_time = 1; |
| 1399 | if (timeout && timeout < char_time) |
| 1400 | char_time = timeout; |
| 1401 | |
| 1402 | /* |
| 1403 | * If the transmitter hasn't cleared in twice the approximate |
| 1404 | * amount of time to send the entire FIFO, it probably won't |
| 1405 | * ever clear. This assumes the UART isn't doing flow |
| 1406 | * control, which is currently the case. Hence, if it ever |
| 1407 | * takes longer than port->timeout, this is probably due to a |
| 1408 | * UART bug of some kind. So, we clamp the timeout parameter at |
| 1409 | * 2*port->timeout. |
| 1410 | */ |
| 1411 | if (timeout == 0 || timeout > 2 * port->timeout) |
| 1412 | timeout = 2 * port->timeout; |
| 1413 | |
| 1414 | expire = jiffies + timeout; |
| 1415 | |
Jiri Slaby | eb3a1e1 | 2007-05-06 14:48:52 -0700 | [diff] [blame] | 1416 | pr_debug("uart_wait_until_sent(%d), jiffies=%lu, expire=%lu...\n", |
Alan Cox | a46c999 | 2008-02-08 04:18:53 -0800 | [diff] [blame] | 1417 | port->line, jiffies, expire); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | |
| 1419 | /* |
| 1420 | * Check whether the transmitter is empty every 'char_time'. |
| 1421 | * 'timeout' / 'expire' give us the maximum amount of time |
| 1422 | * we wait. |
| 1423 | */ |
| 1424 | while (!port->ops->tx_empty(port)) { |
| 1425 | msleep_interruptible(jiffies_to_msecs(char_time)); |
| 1426 | if (signal_pending(current)) |
| 1427 | break; |
| 1428 | if (time_after(jiffies, expire)) |
| 1429 | break; |
| 1430 | } |
| 1431 | set_current_state(TASK_RUNNING); /* might not be needed */ |
Arnd Bergmann | 2036521 | 2010-06-01 22:53:07 +0200 | [diff] [blame] | 1432 | } |
| 1433 | |
| 1434 | static void uart_wait_until_sent(struct tty_struct *tty, int timeout) |
| 1435 | { |
| 1436 | struct uart_state *state = tty->driver_data; |
| 1437 | struct uart_port *port = state->uart_port; |
| 1438 | |
| 1439 | tty_lock(); |
| 1440 | __uart_wait_until_sent(port, timeout); |
Arnd Bergmann | ec79d60 | 2010-06-01 22:53:01 +0200 | [diff] [blame] | 1441 | tty_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | } |
| 1443 | |
| 1444 | /* |
| 1445 | * This is called with the BKL held in |
| 1446 | * linux/drivers/char/tty_io.c:do_tty_hangup() |
| 1447 | * We're called from the eventd thread, so we can sleep for |
| 1448 | * a _short_ time only. |
| 1449 | */ |
| 1450 | static void uart_hangup(struct tty_struct *tty) |
| 1451 | { |
| 1452 | struct uart_state *state = tty->driver_data; |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1453 | struct tty_port *port = &state->port; |
Alan Cox | 61cd8a2 | 2010-06-01 22:52:57 +0200 | [diff] [blame] | 1454 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | |
Arnd Bergmann | ec79d60 | 2010-06-01 22:53:01 +0200 | [diff] [blame] | 1456 | BUG_ON(!tty_locked()); |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 1457 | pr_debug("uart_hangup(%d)\n", state->uart_port->line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1459 | mutex_lock(&port->mutex); |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 1460 | if (port->flags & ASYNC_NORMAL_ACTIVE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | uart_flush_buffer(tty); |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 1462 | uart_shutdown(tty, state); |
Alan Cox | 61cd8a2 | 2010-06-01 22:52:57 +0200 | [diff] [blame] | 1463 | spin_lock_irqsave(&port->lock, flags); |
Alan Cox | 91312cd | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1464 | port->count = 0; |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 1465 | clear_bit(ASYNCB_NORMAL_ACTIVE, &port->flags); |
Alan Cox | 61cd8a2 | 2010-06-01 22:52:57 +0200 | [diff] [blame] | 1466 | spin_unlock_irqrestore(&port->lock, flags); |
Alan Cox | 7b01478 | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 1467 | tty_port_tty_set(port, NULL); |
Alan Cox | 46d57a4 | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1468 | wake_up_interruptible(&port->open_wait); |
Alan Cox | bdc04e3 | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1469 | wake_up_interruptible(&port->delta_msr_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | } |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1471 | mutex_unlock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | } |
| 1473 | |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 1474 | /** |
| 1475 | * uart_update_termios - update the terminal hw settings |
| 1476 | * @tty: tty associated with UART |
| 1477 | * @state: UART to update |
| 1478 | * |
| 1479 | * Copy across the serial console cflag setting into the termios settings |
| 1480 | * for the initial open of the port. This allows continuity between the |
| 1481 | * kernel settings, and the settings init adopts when it opens the port |
| 1482 | * for the first time. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | */ |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 1484 | static void uart_update_termios(struct tty_struct *tty, |
| 1485 | struct uart_state *state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | { |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 1487 | struct uart_port *port = state->uart_port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1488 | |
| 1489 | if (uart_console(port) && port->cons->cflag) { |
| 1490 | tty->termios->c_cflag = port->cons->cflag; |
| 1491 | port->cons->cflag = 0; |
| 1492 | } |
| 1493 | |
| 1494 | /* |
| 1495 | * If the device failed to grab its irq resources, |
| 1496 | * or some other error occurred, don't try to talk |
| 1497 | * to the port hardware. |
| 1498 | */ |
| 1499 | if (!(tty->flags & (1 << TTY_IO_ERROR))) { |
| 1500 | /* |
| 1501 | * Make termios settings take effect. |
| 1502 | */ |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 1503 | uart_change_speed(tty, state, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | |
| 1505 | /* |
| 1506 | * And finally enable the RTS and DTR signals. |
| 1507 | */ |
| 1508 | if (tty->termios->c_cflag & CBAUD) |
| 1509 | uart_set_mctrl(port, TIOCM_DTR | TIOCM_RTS); |
| 1510 | } |
| 1511 | } |
| 1512 | |
Alan Cox | de0c8cb | 2010-06-01 22:52:58 +0200 | [diff] [blame] | 1513 | static int uart_carrier_raised(struct tty_port *port) |
| 1514 | { |
| 1515 | struct uart_state *state = container_of(port, struct uart_state, port); |
| 1516 | struct uart_port *uport = state->uart_port; |
| 1517 | int mctrl; |
Alan Cox | de0c8cb | 2010-06-01 22:52:58 +0200 | [diff] [blame] | 1518 | spin_lock_irq(&uport->lock); |
| 1519 | uport->ops->enable_ms(uport); |
| 1520 | mctrl = uport->ops->get_mctrl(uport); |
| 1521 | spin_unlock_irq(&uport->lock); |
Alan Cox | de0c8cb | 2010-06-01 22:52:58 +0200 | [diff] [blame] | 1522 | if (mctrl & TIOCM_CAR) |
| 1523 | return 1; |
| 1524 | return 0; |
| 1525 | } |
| 1526 | |
| 1527 | static void uart_dtr_rts(struct tty_port *port, int onoff) |
| 1528 | { |
| 1529 | struct uart_state *state = container_of(port, struct uart_state, port); |
| 1530 | struct uart_port *uport = state->uart_port; |
Alan Cox | 24fcc7c | 2010-06-01 22:52:59 +0200 | [diff] [blame] | 1531 | |
Arnd Bergmann | 3f582b8 | 2010-06-29 22:31:40 +0200 | [diff] [blame] | 1532 | if (onoff) { |
Alan Cox | de0c8cb | 2010-06-01 22:52:58 +0200 | [diff] [blame] | 1533 | uart_set_mctrl(uport, TIOCM_DTR | TIOCM_RTS); |
Arnd Bergmann | 3f582b8 | 2010-06-29 22:31:40 +0200 | [diff] [blame] | 1534 | |
| 1535 | /* |
| 1536 | * If this is the first open to succeed, |
| 1537 | * adjust things to suit. |
| 1538 | */ |
| 1539 | if (!test_and_set_bit(ASYNCB_NORMAL_ACTIVE, &port->flags)) |
| 1540 | uart_update_termios(port->tty, state); |
| 1541 | } |
Alan Cox | de0c8cb | 2010-06-01 22:52:58 +0200 | [diff] [blame] | 1542 | else |
| 1543 | uart_clear_mctrl(uport, TIOCM_DTR | TIOCM_RTS); |
Alan Cox | de0c8cb | 2010-06-01 22:52:58 +0200 | [diff] [blame] | 1544 | } |
| 1545 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | static struct uart_state *uart_get(struct uart_driver *drv, int line) |
| 1547 | { |
| 1548 | struct uart_state *state; |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1549 | struct tty_port *port; |
Russell King | 68ac64c | 2006-04-30 11:13:50 +0100 | [diff] [blame] | 1550 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1551 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | state = drv->state + line; |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1553 | port = &state->port; |
| 1554 | if (mutex_lock_interruptible(&port->mutex)) { |
Russell King | 68ac64c | 2006-04-30 11:13:50 +0100 | [diff] [blame] | 1555 | ret = -ERESTARTSYS; |
| 1556 | goto err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | } |
| 1558 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1559 | port->count++; |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 1560 | if (!state->uart_port || state->uart_port->flags & UPF_DEAD) { |
Russell King | 68ac64c | 2006-04-30 11:13:50 +0100 | [diff] [blame] | 1561 | ret = -ENXIO; |
| 1562 | goto err_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1564 | return state; |
Russell King | 68ac64c | 2006-04-30 11:13:50 +0100 | [diff] [blame] | 1565 | |
| 1566 | err_unlock: |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1567 | port->count--; |
| 1568 | mutex_unlock(&port->mutex); |
Russell King | 68ac64c | 2006-04-30 11:13:50 +0100 | [diff] [blame] | 1569 | err: |
| 1570 | return ERR_PTR(ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1571 | } |
| 1572 | |
| 1573 | /* |
Denis Cheng | 922f9cf | 2008-02-08 04:22:00 -0800 | [diff] [blame] | 1574 | * calls to uart_open are serialised by the BKL in |
| 1575 | * fs/char_dev.c:chrdev_open() |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | * Note that if this fails, then uart_close() _will_ be called. |
| 1577 | * |
| 1578 | * In time, we want to scrap the "opening nonpresent ports" |
| 1579 | * behaviour and implement an alternative way for setserial |
| 1580 | * to set base addresses/ports/types. This will allow us to |
| 1581 | * get rid of a certain amount of extra tests. |
| 1582 | */ |
| 1583 | static int uart_open(struct tty_struct *tty, struct file *filp) |
| 1584 | { |
| 1585 | struct uart_driver *drv = (struct uart_driver *)tty->driver->driver_state; |
| 1586 | struct uart_state *state; |
Alan Cox | 91312cd | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1587 | struct tty_port *port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1588 | int retval, line = tty->index; |
| 1589 | |
Arnd Bergmann | ec79d60 | 2010-06-01 22:53:01 +0200 | [diff] [blame] | 1590 | BUG_ON(!tty_locked()); |
Jiri Slaby | eb3a1e1 | 2007-05-06 14:48:52 -0700 | [diff] [blame] | 1591 | pr_debug("uart_open(%d) called\n", line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | |
| 1593 | /* |
| 1594 | * tty->driver->num won't change, so we won't fail here with |
| 1595 | * tty->driver_data set to something non-NULL (and therefore |
| 1596 | * we won't get caught by uart_close()). |
| 1597 | */ |
| 1598 | retval = -ENODEV; |
| 1599 | if (line >= tty->driver->num) |
| 1600 | goto fail; |
| 1601 | |
| 1602 | /* |
| 1603 | * We take the semaphore inside uart_get to guarantee that we won't |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 1604 | * be re-entered while allocating the state structure, or while we |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | * request any IRQs that the driver may need. This also has the nice |
| 1606 | * side-effect that it delays the action of uart_hangup, so we can |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 1607 | * guarantee that state->port.tty will always contain something |
| 1608 | * reasonable. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | */ |
| 1610 | state = uart_get(drv, line); |
| 1611 | if (IS_ERR(state)) { |
| 1612 | retval = PTR_ERR(state); |
| 1613 | goto fail; |
| 1614 | } |
Alan Cox | 91312cd | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1615 | port = &state->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | |
| 1617 | /* |
| 1618 | * Once we set tty->driver_data here, we are guaranteed that |
| 1619 | * uart_close() will decrement the driver module use count. |
| 1620 | * Any failures from here onwards should not touch the count. |
| 1621 | */ |
| 1622 | tty->driver_data = state; |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 1623 | state->uart_port->state = state; |
| 1624 | tty->low_latency = (state->uart_port->flags & UPF_LOW_LATENCY) ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1625 | tty->alt_speed = 0; |
Alan Cox | 7b01478 | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 1626 | tty_port_tty_set(port, tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | |
| 1628 | /* |
| 1629 | * If the port is in the middle of closing, bail out now. |
| 1630 | */ |
| 1631 | if (tty_hung_up_p(filp)) { |
| 1632 | retval = -EAGAIN; |
Alan Cox | 91312cd | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1633 | port->count--; |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1634 | mutex_unlock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | goto fail; |
| 1636 | } |
| 1637 | |
| 1638 | /* |
| 1639 | * Make sure the device is in D0 state. |
| 1640 | */ |
Alan Cox | 91312cd | 2009-09-19 13:13:29 -0700 | [diff] [blame] | 1641 | if (port->count == 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | uart_change_pm(state, 0); |
| 1643 | |
| 1644 | /* |
| 1645 | * Start up the serial port. |
| 1646 | */ |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 1647 | retval = uart_startup(tty, state, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | |
| 1649 | /* |
| 1650 | * If we succeeded, wait until the port is ready. |
| 1651 | */ |
Alan Cox | 61cd8a2 | 2010-06-01 22:52:57 +0200 | [diff] [blame] | 1652 | mutex_unlock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | if (retval == 0) |
Alan Cox | 74c2107 | 2010-06-01 22:53:00 +0200 | [diff] [blame] | 1654 | retval = tty_port_block_til_ready(port, tty, filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1656 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1657 | return retval; |
| 1658 | } |
| 1659 | |
| 1660 | static const char *uart_type(struct uart_port *port) |
| 1661 | { |
| 1662 | const char *str = NULL; |
| 1663 | |
| 1664 | if (port->ops->type) |
| 1665 | str = port->ops->type(port); |
| 1666 | |
| 1667 | if (!str) |
| 1668 | str = "unknown"; |
| 1669 | |
| 1670 | return str; |
| 1671 | } |
| 1672 | |
| 1673 | #ifdef CONFIG_PROC_FS |
| 1674 | |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 1675 | static void uart_line_info(struct seq_file *m, struct uart_driver *drv, int i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1676 | { |
| 1677 | struct uart_state *state = drv->state + i; |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1678 | struct tty_port *port = &state->port; |
George G. Davis | 3689a0e | 2007-02-14 00:33:06 -0800 | [diff] [blame] | 1679 | int pm_state; |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1680 | struct uart_port *uport = state->uart_port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | char stat_buf[32]; |
| 1682 | unsigned int status; |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 1683 | int mmio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1685 | if (!uport) |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 1686 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1687 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1688 | mmio = uport->iotype >= UPIO_MEM; |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 1689 | seq_printf(m, "%d: uart:%s %s%08llX irq:%d", |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1690 | uport->line, uart_type(uport), |
Sergei Shtylyov | 6c6a233 | 2006-09-04 00:04:20 +0400 | [diff] [blame] | 1691 | mmio ? "mmio:0x" : "port:", |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1692 | mmio ? (unsigned long long)uport->mapbase |
| 1693 | : (unsigned long long)uport->iobase, |
| 1694 | uport->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1696 | if (uport->type == PORT_UNKNOWN) { |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 1697 | seq_putc(m, '\n'); |
| 1698 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1699 | } |
| 1700 | |
Alan Cox | a46c999 | 2008-02-08 04:18:53 -0800 | [diff] [blame] | 1701 | if (capable(CAP_SYS_ADMIN)) { |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1702 | mutex_lock(&port->mutex); |
George G. Davis | 3689a0e | 2007-02-14 00:33:06 -0800 | [diff] [blame] | 1703 | pm_state = state->pm_state; |
| 1704 | if (pm_state) |
| 1705 | uart_change_pm(state, 0); |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1706 | spin_lock_irq(&uport->lock); |
| 1707 | status = uport->ops->get_mctrl(uport); |
| 1708 | spin_unlock_irq(&uport->lock); |
George G. Davis | 3689a0e | 2007-02-14 00:33:06 -0800 | [diff] [blame] | 1709 | if (pm_state) |
| 1710 | uart_change_pm(state, pm_state); |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1711 | mutex_unlock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 | |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 1713 | seq_printf(m, " tx:%d rx:%d", |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1714 | uport->icount.tx, uport->icount.rx); |
| 1715 | if (uport->icount.frame) |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 1716 | seq_printf(m, " fe:%d", |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1717 | uport->icount.frame); |
| 1718 | if (uport->icount.parity) |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 1719 | seq_printf(m, " pe:%d", |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1720 | uport->icount.parity); |
| 1721 | if (uport->icount.brk) |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 1722 | seq_printf(m, " brk:%d", |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1723 | uport->icount.brk); |
| 1724 | if (uport->icount.overrun) |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 1725 | seq_printf(m, " oe:%d", |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1726 | uport->icount.overrun); |
Alan Cox | a46c999 | 2008-02-08 04:18:53 -0800 | [diff] [blame] | 1727 | |
| 1728 | #define INFOBIT(bit, str) \ |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1729 | if (uport->mctrl & (bit)) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1730 | strncat(stat_buf, (str), sizeof(stat_buf) - \ |
| 1731 | strlen(stat_buf) - 2) |
Alan Cox | a46c999 | 2008-02-08 04:18:53 -0800 | [diff] [blame] | 1732 | #define STATBIT(bit, str) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1733 | if (status & (bit)) \ |
| 1734 | strncat(stat_buf, (str), sizeof(stat_buf) - \ |
| 1735 | strlen(stat_buf) - 2) |
| 1736 | |
| 1737 | stat_buf[0] = '\0'; |
| 1738 | stat_buf[1] = '\0'; |
| 1739 | INFOBIT(TIOCM_RTS, "|RTS"); |
| 1740 | STATBIT(TIOCM_CTS, "|CTS"); |
| 1741 | INFOBIT(TIOCM_DTR, "|DTR"); |
| 1742 | STATBIT(TIOCM_DSR, "|DSR"); |
| 1743 | STATBIT(TIOCM_CAR, "|CD"); |
| 1744 | STATBIT(TIOCM_RNG, "|RI"); |
| 1745 | if (stat_buf[0]) |
| 1746 | stat_buf[0] = ' '; |
Alan Cox | a46c999 | 2008-02-08 04:18:53 -0800 | [diff] [blame] | 1747 | |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 1748 | seq_puts(m, stat_buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | } |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 1750 | seq_putc(m, '\n'); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1751 | #undef STATBIT |
| 1752 | #undef INFOBIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | } |
| 1754 | |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 1755 | static int uart_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | { |
Alexey Dobriyan | 833bb30 | 2009-04-02 01:30:04 +0400 | [diff] [blame] | 1757 | struct tty_driver *ttydrv = m->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | struct uart_driver *drv = ttydrv->driver_state; |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 1759 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1760 | |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 1761 | seq_printf(m, "serinfo:1.0 driver%s%s revision:%s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | "", "", ""); |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 1763 | for (i = 0; i < drv->nr; i++) |
| 1764 | uart_line_info(m, drv, i); |
| 1765 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1766 | } |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 1767 | |
| 1768 | static int uart_proc_open(struct inode *inode, struct file *file) |
| 1769 | { |
| 1770 | return single_open(file, uart_proc_show, PDE(inode)->data); |
| 1771 | } |
| 1772 | |
| 1773 | static const struct file_operations uart_proc_fops = { |
| 1774 | .owner = THIS_MODULE, |
| 1775 | .open = uart_proc_open, |
| 1776 | .read = seq_read, |
| 1777 | .llseek = seq_lseek, |
| 1778 | .release = single_release, |
| 1779 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1780 | #endif |
| 1781 | |
Andrew Morton | 4a1b550 | 2008-03-07 15:51:16 -0800 | [diff] [blame] | 1782 | #if defined(CONFIG_SERIAL_CORE_CONSOLE) || defined(CONFIG_CONSOLE_POLL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1783 | /* |
Russell King | d358788 | 2006-03-20 20:00:09 +0000 | [diff] [blame] | 1784 | * uart_console_write - write a console message to a serial port |
| 1785 | * @port: the port to write the message |
| 1786 | * @s: array of characters |
| 1787 | * @count: number of characters in string to write |
| 1788 | * @write: function to write character to port |
| 1789 | */ |
| 1790 | void uart_console_write(struct uart_port *port, const char *s, |
| 1791 | unsigned int count, |
| 1792 | void (*putchar)(struct uart_port *, int)) |
| 1793 | { |
| 1794 | unsigned int i; |
| 1795 | |
| 1796 | for (i = 0; i < count; i++, s++) { |
| 1797 | if (*s == '\n') |
| 1798 | putchar(port, '\r'); |
| 1799 | putchar(port, *s); |
| 1800 | } |
| 1801 | } |
| 1802 | EXPORT_SYMBOL_GPL(uart_console_write); |
| 1803 | |
| 1804 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1805 | * Check whether an invalid uart number has been specified, and |
| 1806 | * if so, search for the first available port that does have |
| 1807 | * console support. |
| 1808 | */ |
| 1809 | struct uart_port * __init |
| 1810 | uart_get_console(struct uart_port *ports, int nr, struct console *co) |
| 1811 | { |
| 1812 | int idx = co->index; |
| 1813 | |
| 1814 | if (idx < 0 || idx >= nr || (ports[idx].iobase == 0 && |
| 1815 | ports[idx].membase == NULL)) |
| 1816 | for (idx = 0; idx < nr; idx++) |
| 1817 | if (ports[idx].iobase != 0 || |
| 1818 | ports[idx].membase != NULL) |
| 1819 | break; |
| 1820 | |
| 1821 | co->index = idx; |
| 1822 | |
| 1823 | return ports + idx; |
| 1824 | } |
| 1825 | |
| 1826 | /** |
| 1827 | * uart_parse_options - Parse serial port baud/parity/bits/flow contro. |
| 1828 | * @options: pointer to option string |
| 1829 | * @baud: pointer to an 'int' variable for the baud rate. |
| 1830 | * @parity: pointer to an 'int' variable for the parity. |
| 1831 | * @bits: pointer to an 'int' variable for the number of data bits. |
| 1832 | * @flow: pointer to an 'int' variable for the flow control character. |
| 1833 | * |
| 1834 | * uart_parse_options decodes a string containing the serial console |
| 1835 | * options. The format of the string is <baud><parity><bits><flow>, |
| 1836 | * eg: 115200n8r |
| 1837 | */ |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 1838 | void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | uart_parse_options(char *options, int *baud, int *parity, int *bits, int *flow) |
| 1840 | { |
| 1841 | char *s = options; |
| 1842 | |
| 1843 | *baud = simple_strtoul(s, NULL, 10); |
| 1844 | while (*s >= '0' && *s <= '9') |
| 1845 | s++; |
| 1846 | if (*s) |
| 1847 | *parity = *s++; |
| 1848 | if (*s) |
| 1849 | *bits = *s++ - '0'; |
| 1850 | if (*s) |
| 1851 | *flow = *s; |
| 1852 | } |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 1853 | EXPORT_SYMBOL_GPL(uart_parse_options); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1854 | |
| 1855 | struct baud_rates { |
| 1856 | unsigned int rate; |
| 1857 | unsigned int cflag; |
| 1858 | }; |
| 1859 | |
Arjan van de Ven | cb3592b | 2005-11-28 21:04:11 +0000 | [diff] [blame] | 1860 | static const struct baud_rates baud_rates[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1861 | { 921600, B921600 }, |
| 1862 | { 460800, B460800 }, |
| 1863 | { 230400, B230400 }, |
| 1864 | { 115200, B115200 }, |
| 1865 | { 57600, B57600 }, |
| 1866 | { 38400, B38400 }, |
| 1867 | { 19200, B19200 }, |
| 1868 | { 9600, B9600 }, |
| 1869 | { 4800, B4800 }, |
| 1870 | { 2400, B2400 }, |
| 1871 | { 1200, B1200 }, |
| 1872 | { 0, B38400 } |
| 1873 | }; |
| 1874 | |
| 1875 | /** |
| 1876 | * uart_set_options - setup the serial console parameters |
| 1877 | * @port: pointer to the serial ports uart_port structure |
| 1878 | * @co: console pointer |
| 1879 | * @baud: baud rate |
| 1880 | * @parity: parity character - 'n' (none), 'o' (odd), 'e' (even) |
| 1881 | * @bits: number of data bits |
| 1882 | * @flow: flow control character - 'r' (rts) |
| 1883 | */ |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 1884 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1885 | uart_set_options(struct uart_port *port, struct console *co, |
| 1886 | int baud, int parity, int bits, int flow) |
| 1887 | { |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 1888 | struct ktermios termios; |
Alan Cox | 149b36e | 2007-10-18 01:24:16 -0700 | [diff] [blame] | 1889 | static struct ktermios dummy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | int i; |
| 1891 | |
Russell King | 976ecd1 | 2005-07-03 21:05:45 +0100 | [diff] [blame] | 1892 | /* |
| 1893 | * Ensure that the serial console lock is initialised |
| 1894 | * early. |
| 1895 | */ |
| 1896 | spin_lock_init(&port->lock); |
Ingo Molnar | 13e8359 | 2006-07-03 00:25:03 -0700 | [diff] [blame] | 1897 | lockdep_set_class(&port->lock, &port_lock_key); |
Russell King | 976ecd1 | 2005-07-03 21:05:45 +0100 | [diff] [blame] | 1898 | |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 1899 | memset(&termios, 0, sizeof(struct ktermios)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | |
| 1901 | termios.c_cflag = CREAD | HUPCL | CLOCAL; |
| 1902 | |
| 1903 | /* |
| 1904 | * Construct a cflag setting. |
| 1905 | */ |
| 1906 | for (i = 0; baud_rates[i].rate; i++) |
| 1907 | if (baud_rates[i].rate <= baud) |
| 1908 | break; |
| 1909 | |
| 1910 | termios.c_cflag |= baud_rates[i].cflag; |
| 1911 | |
| 1912 | if (bits == 7) |
| 1913 | termios.c_cflag |= CS7; |
| 1914 | else |
| 1915 | termios.c_cflag |= CS8; |
| 1916 | |
| 1917 | switch (parity) { |
| 1918 | case 'o': case 'O': |
| 1919 | termios.c_cflag |= PARODD; |
| 1920 | /*fall through*/ |
| 1921 | case 'e': case 'E': |
| 1922 | termios.c_cflag |= PARENB; |
| 1923 | break; |
| 1924 | } |
| 1925 | |
| 1926 | if (flow == 'r') |
| 1927 | termios.c_cflag |= CRTSCTS; |
| 1928 | |
Yinghai Lu | 7949268 | 2007-07-15 23:37:25 -0700 | [diff] [blame] | 1929 | /* |
| 1930 | * some uarts on other side don't support no flow control. |
| 1931 | * So we set * DTR in host uart to make them happy |
| 1932 | */ |
| 1933 | port->mctrl |= TIOCM_DTR; |
| 1934 | |
Alan Cox | 149b36e | 2007-10-18 01:24:16 -0700 | [diff] [blame] | 1935 | port->ops->set_termios(port, &termios, &dummy); |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 1936 | /* |
| 1937 | * Allow the setting of the UART parameters with a NULL console |
| 1938 | * too: |
| 1939 | */ |
| 1940 | if (co) |
| 1941 | co->cflag = termios.c_cflag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1942 | |
| 1943 | return 0; |
| 1944 | } |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 1945 | EXPORT_SYMBOL_GPL(uart_set_options); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | #endif /* CONFIG_SERIAL_CORE_CONSOLE */ |
| 1947 | |
| 1948 | static void uart_change_pm(struct uart_state *state, int pm_state) |
| 1949 | { |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 1950 | struct uart_port *port = state->uart_port; |
Andrew Victor | 1281e36 | 2006-05-16 11:28:49 +0100 | [diff] [blame] | 1951 | |
| 1952 | if (state->pm_state != pm_state) { |
| 1953 | if (port->ops->pm) |
| 1954 | port->ops->pm(port, pm_state, state->pm_state); |
| 1955 | state->pm_state = pm_state; |
| 1956 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1957 | } |
| 1958 | |
Guennadi Liakhovetski | b3b708f | 2007-10-16 01:24:02 -0700 | [diff] [blame] | 1959 | struct uart_match { |
| 1960 | struct uart_port *port; |
| 1961 | struct uart_driver *driver; |
| 1962 | }; |
| 1963 | |
| 1964 | static int serial_match_port(struct device *dev, void *data) |
| 1965 | { |
| 1966 | struct uart_match *match = data; |
Guennadi Liakhovetski | 7ca796f | 2008-07-04 09:59:28 -0700 | [diff] [blame] | 1967 | struct tty_driver *tty_drv = match->driver->tty_driver; |
| 1968 | dev_t devt = MKDEV(tty_drv->major, tty_drv->minor_start) + |
| 1969 | match->port->line; |
Guennadi Liakhovetski | b3b708f | 2007-10-16 01:24:02 -0700 | [diff] [blame] | 1970 | |
| 1971 | return dev->devt == devt; /* Actually, only one tty per port */ |
| 1972 | } |
| 1973 | |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 1974 | int uart_suspend_port(struct uart_driver *drv, struct uart_port *uport) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1975 | { |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 1976 | struct uart_state *state = drv->state + uport->line; |
| 1977 | struct tty_port *port = &state->port; |
Guennadi Liakhovetski | b3b708f | 2007-10-16 01:24:02 -0700 | [diff] [blame] | 1978 | struct device *tty_dev; |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 1979 | struct uart_match match = {uport, drv}; |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 1980 | struct tty_struct *tty; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1982 | mutex_lock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 1984 | /* Must be inside the mutex lock until we convert to tty_port */ |
| 1985 | tty = port->tty; |
| 1986 | |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 1987 | tty_dev = device_find_child(uport->dev, &match, serial_match_port); |
Guennadi Liakhovetski | b3b708f | 2007-10-16 01:24:02 -0700 | [diff] [blame] | 1988 | if (device_may_wakeup(tty_dev)) { |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 1989 | enable_irq_wake(uport->irq); |
Guennadi Liakhovetski | b3b708f | 2007-10-16 01:24:02 -0700 | [diff] [blame] | 1990 | put_device(tty_dev); |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 1991 | mutex_unlock(&port->mutex); |
Guennadi Liakhovetski | b3b708f | 2007-10-16 01:24:02 -0700 | [diff] [blame] | 1992 | return 0; |
| 1993 | } |
Stanislav Brabec | 4547be7 | 2009-12-02 16:20:56 +0100 | [diff] [blame] | 1994 | if (console_suspend_enabled || !uart_console(uport)) |
| 1995 | uport->suspended = 1; |
Guennadi Liakhovetski | b3b708f | 2007-10-16 01:24:02 -0700 | [diff] [blame] | 1996 | |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 1997 | if (port->flags & ASYNC_INITIALIZED) { |
| 1998 | const struct uart_ops *ops = uport->ops; |
Russell King | c8c6bfa | 2008-02-04 22:27:52 -0800 | [diff] [blame] | 1999 | int tries; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2000 | |
Stanislav Brabec | 4547be7 | 2009-12-02 16:20:56 +0100 | [diff] [blame] | 2001 | if (console_suspend_enabled || !uart_console(uport)) { |
| 2002 | set_bit(ASYNCB_SUSPENDED, &port->flags); |
| 2003 | clear_bit(ASYNCB_INITIALIZED, &port->flags); |
Russell King | a6b93a9 | 2006-10-01 17:17:40 +0100 | [diff] [blame] | 2004 | |
Stanislav Brabec | 4547be7 | 2009-12-02 16:20:56 +0100 | [diff] [blame] | 2005 | spin_lock_irq(&uport->lock); |
| 2006 | ops->stop_tx(uport); |
| 2007 | ops->set_mctrl(uport, 0); |
| 2008 | ops->stop_rx(uport); |
| 2009 | spin_unlock_irq(&uport->lock); |
| 2010 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2011 | |
| 2012 | /* |
| 2013 | * Wait for the transmitter to empty. |
| 2014 | */ |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 2015 | for (tries = 3; !ops->tx_empty(uport) && tries; tries--) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2016 | msleep(10); |
Russell King | c8c6bfa | 2008-02-04 22:27:52 -0800 | [diff] [blame] | 2017 | if (!tries) |
Alan Cox | a46c999 | 2008-02-08 04:18:53 -0800 | [diff] [blame] | 2018 | printk(KERN_ERR "%s%s%s%d: Unable to drain " |
| 2019 | "transmitter\n", |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 2020 | uport->dev ? dev_name(uport->dev) : "", |
| 2021 | uport->dev ? ": " : "", |
David S. Miller | 8440838 | 2008-10-13 10:45:26 +0100 | [diff] [blame] | 2022 | drv->dev_name, |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 2023 | drv->tty_driver->name_base + uport->line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2024 | |
Stanislav Brabec | 4547be7 | 2009-12-02 16:20:56 +0100 | [diff] [blame] | 2025 | if (console_suspend_enabled || !uart_console(uport)) |
| 2026 | ops->shutdown(uport); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | } |
| 2028 | |
| 2029 | /* |
| 2030 | * Disable the console device before suspending. |
| 2031 | */ |
Stanislav Brabec | 4547be7 | 2009-12-02 16:20:56 +0100 | [diff] [blame] | 2032 | if (console_suspend_enabled && uart_console(uport)) |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 2033 | console_stop(uport->cons); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2034 | |
Stanislav Brabec | 4547be7 | 2009-12-02 16:20:56 +0100 | [diff] [blame] | 2035 | if (console_suspend_enabled || !uart_console(uport)) |
| 2036 | uart_change_pm(state, 3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2037 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2038 | mutex_unlock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2039 | |
| 2040 | return 0; |
| 2041 | } |
| 2042 | |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 2043 | int uart_resume_port(struct uart_driver *drv, struct uart_port *uport) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2044 | { |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 2045 | struct uart_state *state = drv->state + uport->line; |
| 2046 | struct tty_port *port = &state->port; |
Arjan van de Ven | 03a74dc | 2008-05-23 13:04:49 -0700 | [diff] [blame] | 2047 | struct device *tty_dev; |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 2048 | struct uart_match match = {uport, drv}; |
Deepak Saxena | ba15ab0 | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 2049 | struct ktermios termios; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2050 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2051 | mutex_lock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2052 | |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 2053 | tty_dev = device_find_child(uport->dev, &match, serial_match_port); |
| 2054 | if (!uport->suspended && device_may_wakeup(tty_dev)) { |
| 2055 | disable_irq_wake(uport->irq); |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2056 | mutex_unlock(&port->mutex); |
Guennadi Liakhovetski | b3b708f | 2007-10-16 01:24:02 -0700 | [diff] [blame] | 2057 | return 0; |
| 2058 | } |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 2059 | uport->suspended = 0; |
Guennadi Liakhovetski | b3b708f | 2007-10-16 01:24:02 -0700 | [diff] [blame] | 2060 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2061 | /* |
| 2062 | * Re-enable the console device after suspending. |
| 2063 | */ |
Jason Wang | ca2e71a | 2010-08-21 15:14:41 +0800 | [diff] [blame] | 2064 | if (console_suspend_enabled && uart_console(uport)) { |
Jason Wang | 891b9dd | 2010-08-21 15:14:42 +0800 | [diff] [blame] | 2065 | /* |
| 2066 | * First try to use the console cflag setting. |
| 2067 | */ |
| 2068 | memset(&termios, 0, sizeof(struct ktermios)); |
| 2069 | termios.c_cflag = uport->cons->cflag; |
| 2070 | |
| 2071 | /* |
| 2072 | * If that's unset, use the tty termios setting. |
| 2073 | */ |
| 2074 | if (port->tty && port->tty->termios && termios.c_cflag == 0) |
| 2075 | termios = *(port->tty->termios); |
| 2076 | |
Russell King | 9d778a6 | 2008-02-04 22:27:51 -0800 | [diff] [blame] | 2077 | uart_change_pm(state, 0); |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 2078 | uport->ops->set_termios(uport, &termios, NULL); |
| 2079 | console_start(uport->cons); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2080 | } |
| 2081 | |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 2082 | if (port->flags & ASYNC_SUSPENDED) { |
| 2083 | const struct uart_ops *ops = uport->ops; |
Russell King | ee31b33 | 2005-11-13 15:28:51 +0000 | [diff] [blame] | 2084 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2085 | |
Russell King | 9d778a6 | 2008-02-04 22:27:51 -0800 | [diff] [blame] | 2086 | uart_change_pm(state, 0); |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 2087 | spin_lock_irq(&uport->lock); |
| 2088 | ops->set_mctrl(uport, 0); |
| 2089 | spin_unlock_irq(&uport->lock); |
Stanislav Brabec | 4547be7 | 2009-12-02 16:20:56 +0100 | [diff] [blame] | 2090 | if (console_suspend_enabled || !uart_console(uport)) { |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 2091 | /* Protected by port mutex for now */ |
| 2092 | struct tty_struct *tty = port->tty; |
Stanislav Brabec | 4547be7 | 2009-12-02 16:20:56 +0100 | [diff] [blame] | 2093 | ret = ops->startup(uport); |
| 2094 | if (ret == 0) { |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 2095 | if (tty) |
| 2096 | uart_change_speed(tty, state, NULL); |
Stanislav Brabec | 4547be7 | 2009-12-02 16:20:56 +0100 | [diff] [blame] | 2097 | spin_lock_irq(&uport->lock); |
| 2098 | ops->set_mctrl(uport, uport->mctrl); |
| 2099 | ops->start_tx(uport); |
| 2100 | spin_unlock_irq(&uport->lock); |
| 2101 | set_bit(ASYNCB_INITIALIZED, &port->flags); |
| 2102 | } else { |
| 2103 | /* |
| 2104 | * Failed to resume - maybe hardware went away? |
| 2105 | * Clear the "initialized" flag so we won't try |
| 2106 | * to call the low level drivers shutdown method. |
| 2107 | */ |
Alan Cox | 1922513 | 2010-06-01 22:52:51 +0200 | [diff] [blame] | 2108 | uart_shutdown(tty, state); |
Stanislav Brabec | 4547be7 | 2009-12-02 16:20:56 +0100 | [diff] [blame] | 2109 | } |
Russell King | ee31b33 | 2005-11-13 15:28:51 +0000 | [diff] [blame] | 2110 | } |
Russell King | a6b93a9 | 2006-10-01 17:17:40 +0100 | [diff] [blame] | 2111 | |
Alan Cox | ccce6de | 2009-09-19 13:13:30 -0700 | [diff] [blame] | 2112 | clear_bit(ASYNCB_SUSPENDED, &port->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2113 | } |
| 2114 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2115 | mutex_unlock(&port->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | |
| 2117 | return 0; |
| 2118 | } |
| 2119 | |
| 2120 | static inline void |
| 2121 | uart_report_port(struct uart_driver *drv, struct uart_port *port) |
| 2122 | { |
Russell King | 30b7a3b | 2005-09-03 15:30:21 +0100 | [diff] [blame] | 2123 | char address[64]; |
| 2124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2125 | switch (port->iotype) { |
| 2126 | case UPIO_PORT: |
Andrew Morton | 9bde10a | 2008-10-13 10:35:42 +0100 | [diff] [blame] | 2127 | snprintf(address, sizeof(address), "I/O 0x%lx", port->iobase); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2128 | break; |
| 2129 | case UPIO_HUB6: |
Russell King | 30b7a3b | 2005-09-03 15:30:21 +0100 | [diff] [blame] | 2130 | snprintf(address, sizeof(address), |
Andrew Morton | 9bde10a | 2008-10-13 10:35:42 +0100 | [diff] [blame] | 2131 | "I/O 0x%lx offset 0x%x", port->iobase, port->hub6); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2132 | break; |
| 2133 | case UPIO_MEM: |
| 2134 | case UPIO_MEM32: |
Pantelis Antoniou | 21c614a | 2005-11-06 09:07:03 +0000 | [diff] [blame] | 2135 | case UPIO_AU: |
Zang Roy-r61911 | 3be91ec | 2006-06-30 02:29:58 -0700 | [diff] [blame] | 2136 | case UPIO_TSI: |
Marc St-Jean | beab697 | 2007-05-06 14:48:45 -0700 | [diff] [blame] | 2137 | case UPIO_DWAPB: |
Russell King | 30b7a3b | 2005-09-03 15:30:21 +0100 | [diff] [blame] | 2138 | snprintf(address, sizeof(address), |
Josh Boyer | 4f640ef | 2007-07-23 18:43:44 -0700 | [diff] [blame] | 2139 | "MMIO 0x%llx", (unsigned long long)port->mapbase); |
Russell King | 30b7a3b | 2005-09-03 15:30:21 +0100 | [diff] [blame] | 2140 | break; |
| 2141 | default: |
| 2142 | strlcpy(address, "*unknown*", sizeof(address)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2143 | break; |
| 2144 | } |
Russell King | 30b7a3b | 2005-09-03 15:30:21 +0100 | [diff] [blame] | 2145 | |
Russell King | 0cf669d | 2005-10-31 11:42:22 +0000 | [diff] [blame] | 2146 | printk(KERN_INFO "%s%s%s%d at %s (irq = %d) is a %s\n", |
Kay Sievers | 4bfe090 | 2009-01-06 10:44:37 -0800 | [diff] [blame] | 2147 | port->dev ? dev_name(port->dev) : "", |
Russell King | 0cf669d | 2005-10-31 11:42:22 +0000 | [diff] [blame] | 2148 | port->dev ? ": " : "", |
David S. Miller | 8440838 | 2008-10-13 10:45:26 +0100 | [diff] [blame] | 2149 | drv->dev_name, |
| 2150 | drv->tty_driver->name_base + port->line, |
| 2151 | address, port->irq, uart_type(port)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2152 | } |
| 2153 | |
| 2154 | static void |
| 2155 | uart_configure_port(struct uart_driver *drv, struct uart_state *state, |
| 2156 | struct uart_port *port) |
| 2157 | { |
| 2158 | unsigned int flags; |
| 2159 | |
| 2160 | /* |
| 2161 | * If there isn't a port here, don't do anything further. |
| 2162 | */ |
| 2163 | if (!port->iobase && !port->mapbase && !port->membase) |
| 2164 | return; |
| 2165 | |
| 2166 | /* |
| 2167 | * Now do the auto configuration stuff. Note that config_port |
| 2168 | * is expected to claim the resources and map the port for us. |
| 2169 | */ |
David Daney | 8e23fcc | 2009-01-02 13:49:54 +0000 | [diff] [blame] | 2170 | flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2171 | if (port->flags & UPF_AUTO_IRQ) |
| 2172 | flags |= UART_CONFIG_IRQ; |
| 2173 | if (port->flags & UPF_BOOT_AUTOCONF) { |
David Daney | 8e23fcc | 2009-01-02 13:49:54 +0000 | [diff] [blame] | 2174 | if (!(port->flags & UPF_FIXED_TYPE)) { |
| 2175 | port->type = PORT_UNKNOWN; |
| 2176 | flags |= UART_CONFIG_TYPE; |
| 2177 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2178 | port->ops->config_port(port, flags); |
| 2179 | } |
| 2180 | |
| 2181 | if (port->type != PORT_UNKNOWN) { |
| 2182 | unsigned long flags; |
| 2183 | |
| 2184 | uart_report_port(drv, port); |
| 2185 | |
George G. Davis | 3689a0e | 2007-02-14 00:33:06 -0800 | [diff] [blame] | 2186 | /* Power up port for set_mctrl() */ |
| 2187 | uart_change_pm(state, 0); |
| 2188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2189 | /* |
| 2190 | * Ensure that the modem control lines are de-activated. |
Yinghai Lu | c3e4642 | 2008-02-04 22:27:46 -0800 | [diff] [blame] | 2191 | * keep the DTR setting that is set in uart_set_options() |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2192 | * We probably don't need a spinlock around this, but |
| 2193 | */ |
| 2194 | spin_lock_irqsave(&port->lock, flags); |
Yinghai Lu | c3e4642 | 2008-02-04 22:27:46 -0800 | [diff] [blame] | 2195 | port->ops->set_mctrl(port, port->mctrl & TIOCM_DTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | spin_unlock_irqrestore(&port->lock, flags); |
| 2197 | |
| 2198 | /* |
Russell King | 97d9722 | 2007-09-01 21:25:09 +0100 | [diff] [blame] | 2199 | * If this driver supports console, and it hasn't been |
| 2200 | * successfully registered yet, try to re-register it. |
| 2201 | * It may be that the port was not available. |
| 2202 | */ |
| 2203 | if (port->cons && !(port->cons->flags & CON_ENABLED)) |
| 2204 | register_console(port->cons); |
| 2205 | |
| 2206 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2207 | * Power down all ports by default, except the |
| 2208 | * console if we have one. |
| 2209 | */ |
| 2210 | if (!uart_console(port)) |
| 2211 | uart_change_pm(state, 3); |
| 2212 | } |
| 2213 | } |
| 2214 | |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 2215 | #ifdef CONFIG_CONSOLE_POLL |
| 2216 | |
| 2217 | static int uart_poll_init(struct tty_driver *driver, int line, char *options) |
| 2218 | { |
| 2219 | struct uart_driver *drv = driver->driver_state; |
| 2220 | struct uart_state *state = drv->state + line; |
| 2221 | struct uart_port *port; |
| 2222 | int baud = 9600; |
| 2223 | int bits = 8; |
| 2224 | int parity = 'n'; |
| 2225 | int flow = 'n'; |
| 2226 | |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 2227 | if (!state || !state->uart_port) |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 2228 | return -1; |
| 2229 | |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 2230 | port = state->uart_port; |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 2231 | if (!(port->ops->poll_get_char && port->ops->poll_put_char)) |
| 2232 | return -1; |
| 2233 | |
| 2234 | if (options) { |
| 2235 | uart_parse_options(options, &baud, &parity, &bits, &flow); |
| 2236 | return uart_set_options(port, NULL, baud, parity, bits, flow); |
| 2237 | } |
| 2238 | |
| 2239 | return 0; |
| 2240 | } |
| 2241 | |
| 2242 | static int uart_poll_get_char(struct tty_driver *driver, int line) |
| 2243 | { |
| 2244 | struct uart_driver *drv = driver->driver_state; |
| 2245 | struct uart_state *state = drv->state + line; |
| 2246 | struct uart_port *port; |
| 2247 | |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 2248 | if (!state || !state->uart_port) |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 2249 | return -1; |
| 2250 | |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 2251 | port = state->uart_port; |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 2252 | return port->ops->poll_get_char(port); |
| 2253 | } |
| 2254 | |
| 2255 | static void uart_poll_put_char(struct tty_driver *driver, int line, char ch) |
| 2256 | { |
| 2257 | struct uart_driver *drv = driver->driver_state; |
| 2258 | struct uart_state *state = drv->state + line; |
| 2259 | struct uart_port *port; |
| 2260 | |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 2261 | if (!state || !state->uart_port) |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 2262 | return; |
| 2263 | |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 2264 | port = state->uart_port; |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 2265 | port->ops->poll_put_char(port, ch); |
| 2266 | } |
| 2267 | #endif |
| 2268 | |
Jeff Dike | b68e31d | 2006-10-02 02:17:18 -0700 | [diff] [blame] | 2269 | static const struct tty_operations uart_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2270 | .open = uart_open, |
| 2271 | .close = uart_close, |
| 2272 | .write = uart_write, |
| 2273 | .put_char = uart_put_char, |
| 2274 | .flush_chars = uart_flush_chars, |
| 2275 | .write_room = uart_write_room, |
| 2276 | .chars_in_buffer= uart_chars_in_buffer, |
| 2277 | .flush_buffer = uart_flush_buffer, |
| 2278 | .ioctl = uart_ioctl, |
| 2279 | .throttle = uart_throttle, |
| 2280 | .unthrottle = uart_unthrottle, |
| 2281 | .send_xchar = uart_send_xchar, |
| 2282 | .set_termios = uart_set_termios, |
Alan Cox | 64e9159 | 2008-06-03 15:18:54 +0100 | [diff] [blame] | 2283 | .set_ldisc = uart_set_ldisc, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2284 | .stop = uart_stop, |
| 2285 | .start = uart_start, |
| 2286 | .hangup = uart_hangup, |
| 2287 | .break_ctl = uart_break_ctl, |
| 2288 | .wait_until_sent= uart_wait_until_sent, |
| 2289 | #ifdef CONFIG_PROC_FS |
Alexey Dobriyan | d196a94 | 2009-03-31 15:19:21 -0700 | [diff] [blame] | 2290 | .proc_fops = &uart_proc_fops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2291 | #endif |
| 2292 | .tiocmget = uart_tiocmget, |
| 2293 | .tiocmset = uart_tiocmset, |
Alan Cox | d281da7 | 2010-09-16 18:21:24 +0100 | [diff] [blame] | 2294 | .get_icount = uart_get_icount, |
Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 2295 | #ifdef CONFIG_CONSOLE_POLL |
| 2296 | .poll_init = uart_poll_init, |
| 2297 | .poll_get_char = uart_poll_get_char, |
| 2298 | .poll_put_char = uart_poll_put_char, |
| 2299 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2300 | }; |
| 2301 | |
Alan Cox | de0c8cb | 2010-06-01 22:52:58 +0200 | [diff] [blame] | 2302 | static const struct tty_port_operations uart_port_ops = { |
| 2303 | .carrier_raised = uart_carrier_raised, |
| 2304 | .dtr_rts = uart_dtr_rts, |
| 2305 | }; |
| 2306 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2307 | /** |
| 2308 | * uart_register_driver - register a driver with the uart core layer |
| 2309 | * @drv: low level driver structure |
| 2310 | * |
| 2311 | * Register a uart driver with the core driver. We in turn register |
| 2312 | * with the tty layer, and initialise the core driver per-port state. |
| 2313 | * |
| 2314 | * We have a proc file in /proc/tty/driver which is named after the |
| 2315 | * normal driver. |
| 2316 | * |
| 2317 | * drv->port should be NULL, and the per-port structures should be |
| 2318 | * registered using uart_add_one_port after this call has succeeded. |
| 2319 | */ |
| 2320 | int uart_register_driver(struct uart_driver *drv) |
| 2321 | { |
André Goddard Rosa | 9e845ab | 2009-10-25 11:16:32 -0200 | [diff] [blame] | 2322 | struct tty_driver *normal; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2323 | int i, retval; |
| 2324 | |
| 2325 | BUG_ON(drv->state); |
| 2326 | |
| 2327 | /* |
| 2328 | * Maybe we should be using a slab cache for this, especially if |
| 2329 | * we have a large number of ports to handle. |
| 2330 | */ |
Burman Yan | 8f31bb3 | 2007-02-14 00:33:07 -0800 | [diff] [blame] | 2331 | drv->state = kzalloc(sizeof(struct uart_state) * drv->nr, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2332 | if (!drv->state) |
| 2333 | goto out; |
| 2334 | |
André Goddard Rosa | 9e845ab | 2009-10-25 11:16:32 -0200 | [diff] [blame] | 2335 | normal = alloc_tty_driver(drv->nr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2336 | if (!normal) |
André Goddard Rosa | 9e845ab | 2009-10-25 11:16:32 -0200 | [diff] [blame] | 2337 | goto out_kfree; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2338 | |
| 2339 | drv->tty_driver = normal; |
| 2340 | |
| 2341 | normal->owner = drv->owner; |
| 2342 | normal->driver_name = drv->driver_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2343 | normal->name = drv->dev_name; |
| 2344 | normal->major = drv->major; |
| 2345 | normal->minor_start = drv->minor; |
| 2346 | normal->type = TTY_DRIVER_TYPE_SERIAL; |
| 2347 | normal->subtype = SERIAL_TYPE_NORMAL; |
| 2348 | normal->init_termios = tty_std_termios; |
| 2349 | normal->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL; |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 2350 | normal->init_termios.c_ispeed = normal->init_termios.c_ospeed = 9600; |
Greg Kroah-Hartman | 331b831 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 2351 | normal->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2352 | normal->driver_state = drv; |
| 2353 | tty_set_operations(normal, &uart_ops); |
| 2354 | |
| 2355 | /* |
| 2356 | * Initialise the UART state(s). |
| 2357 | */ |
| 2358 | for (i = 0; i < drv->nr; i++) { |
| 2359 | struct uart_state *state = drv->state + i; |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2360 | struct tty_port *port = &state->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2361 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2362 | tty_port_init(port); |
Alan Cox | de0c8cb | 2010-06-01 22:52:58 +0200 | [diff] [blame] | 2363 | port->ops = &uart_port_ops; |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2364 | port->close_delay = 500; /* .5 seconds */ |
| 2365 | port->closing_wait = 30000; /* 30 seconds */ |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 2366 | tasklet_init(&state->tlet, uart_tasklet_action, |
Alan Cox | f751928 | 2009-01-02 13:49:21 +0000 | [diff] [blame] | 2367 | (unsigned long)state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2368 | } |
| 2369 | |
| 2370 | retval = tty_register_driver(normal); |
André Goddard Rosa | 9e845ab | 2009-10-25 11:16:32 -0200 | [diff] [blame] | 2371 | if (retval >= 0) |
| 2372 | return retval; |
| 2373 | |
| 2374 | put_tty_driver(normal); |
| 2375 | out_kfree: |
| 2376 | kfree(drv->state); |
| 2377 | out: |
| 2378 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2379 | } |
| 2380 | |
| 2381 | /** |
| 2382 | * uart_unregister_driver - remove a driver from the uart core layer |
| 2383 | * @drv: low level driver structure |
| 2384 | * |
| 2385 | * Remove all references to a driver from the core driver. The low |
| 2386 | * level driver must have removed all its ports via the |
| 2387 | * uart_remove_one_port() if it registered them with uart_add_one_port(). |
| 2388 | * (ie, drv->port == NULL) |
| 2389 | */ |
| 2390 | void uart_unregister_driver(struct uart_driver *drv) |
| 2391 | { |
| 2392 | struct tty_driver *p = drv->tty_driver; |
| 2393 | tty_unregister_driver(p); |
| 2394 | put_tty_driver(p); |
| 2395 | kfree(drv->state); |
| 2396 | drv->tty_driver = NULL; |
| 2397 | } |
| 2398 | |
| 2399 | struct tty_driver *uart_console_device(struct console *co, int *index) |
| 2400 | { |
| 2401 | struct uart_driver *p = co->data; |
| 2402 | *index = co->index; |
| 2403 | return p->tty_driver; |
| 2404 | } |
| 2405 | |
| 2406 | /** |
| 2407 | * uart_add_one_port - attach a driver-defined port structure |
| 2408 | * @drv: pointer to the uart low level driver structure for this port |
Randy Dunlap | 1b9894f | 2009-09-21 11:12:03 -0700 | [diff] [blame] | 2409 | * @uport: uart port structure to use for this port. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2410 | * |
| 2411 | * This allows the driver to register its own uart_port structure |
| 2412 | * with the core driver. The main purpose is to allow the low |
| 2413 | * level uart drivers to expand uart_port, rather than having yet |
| 2414 | * more levels of structures. |
| 2415 | */ |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2416 | int uart_add_one_port(struct uart_driver *drv, struct uart_port *uport) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2417 | { |
| 2418 | struct uart_state *state; |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2419 | struct tty_port *port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2420 | int ret = 0; |
Guennadi Liakhovetski | b3b708f | 2007-10-16 01:24:02 -0700 | [diff] [blame] | 2421 | struct device *tty_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2422 | |
| 2423 | BUG_ON(in_interrupt()); |
| 2424 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2425 | if (uport->line >= drv->nr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2426 | return -EINVAL; |
| 2427 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2428 | state = drv->state + uport->line; |
| 2429 | port = &state->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2430 | |
Arjan van de Ven | f392ecf | 2006-01-12 18:44:32 +0000 | [diff] [blame] | 2431 | mutex_lock(&port_mutex); |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2432 | mutex_lock(&port->mutex); |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 2433 | if (state->uart_port) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2434 | ret = -EINVAL; |
| 2435 | goto out; |
| 2436 | } |
| 2437 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2438 | state->uart_port = uport; |
Russell King | 97d9722 | 2007-09-01 21:25:09 +0100 | [diff] [blame] | 2439 | state->pm_state = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2440 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2441 | uport->cons = drv->cons; |
| 2442 | uport->state = state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2443 | |
Russell King | 976ecd1 | 2005-07-03 21:05:45 +0100 | [diff] [blame] | 2444 | /* |
| 2445 | * If this port is a console, then the spinlock is already |
| 2446 | * initialised. |
| 2447 | */ |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2448 | if (!(uart_console(uport) && (uport->cons->flags & CON_ENABLED))) { |
| 2449 | spin_lock_init(&uport->lock); |
| 2450 | lockdep_set_class(&uport->lock, &port_lock_key); |
Ingo Molnar | 13e8359 | 2006-07-03 00:25:03 -0700 | [diff] [blame] | 2451 | } |
Russell King | 976ecd1 | 2005-07-03 21:05:45 +0100 | [diff] [blame] | 2452 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2453 | uart_configure_port(drv, state, uport); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2454 | |
| 2455 | /* |
| 2456 | * Register the port whether it's detected or not. This allows |
| 2457 | * setserial to be used to alter this ports parameters. |
| 2458 | */ |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2459 | tty_dev = tty_register_device(drv->tty_driver, uport->line, uport->dev); |
Guennadi Liakhovetski | b3b708f | 2007-10-16 01:24:02 -0700 | [diff] [blame] | 2460 | if (likely(!IS_ERR(tty_dev))) { |
Alan Stern | 74081f8 | 2008-03-19 22:35:13 +0100 | [diff] [blame] | 2461 | device_init_wakeup(tty_dev, 1); |
Guennadi Liakhovetski | b3b708f | 2007-10-16 01:24:02 -0700 | [diff] [blame] | 2462 | device_set_wakeup_enable(tty_dev, 0); |
| 2463 | } else |
| 2464 | printk(KERN_ERR "Cannot register tty device on line %d\n", |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2465 | uport->line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2466 | |
| 2467 | /* |
Russell King | 68ac64c | 2006-04-30 11:13:50 +0100 | [diff] [blame] | 2468 | * Ensure UPF_DEAD is not set. |
| 2469 | */ |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2470 | uport->flags &= ~UPF_DEAD; |
Russell King | 68ac64c | 2006-04-30 11:13:50 +0100 | [diff] [blame] | 2471 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2472 | out: |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2473 | mutex_unlock(&port->mutex); |
Arjan van de Ven | f392ecf | 2006-01-12 18:44:32 +0000 | [diff] [blame] | 2474 | mutex_unlock(&port_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2475 | |
| 2476 | return ret; |
| 2477 | } |
| 2478 | |
| 2479 | /** |
| 2480 | * uart_remove_one_port - detach a driver defined port structure |
| 2481 | * @drv: pointer to the uart low level driver structure for this port |
Randy Dunlap | 1b9894f | 2009-09-21 11:12:03 -0700 | [diff] [blame] | 2482 | * @uport: uart port structure for this port |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2483 | * |
| 2484 | * This unhooks (and hangs up) the specified port structure from the |
| 2485 | * core driver. No further calls will be made to the low-level code |
| 2486 | * for this port. |
| 2487 | */ |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2488 | int uart_remove_one_port(struct uart_driver *drv, struct uart_port *uport) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2489 | { |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2490 | struct uart_state *state = drv->state + uport->line; |
| 2491 | struct tty_port *port = &state->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2492 | |
| 2493 | BUG_ON(in_interrupt()); |
| 2494 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2495 | if (state->uart_port != uport) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2496 | printk(KERN_ALERT "Removing wrong port: %p != %p\n", |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2497 | state->uart_port, uport); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2498 | |
Arjan van de Ven | f392ecf | 2006-01-12 18:44:32 +0000 | [diff] [blame] | 2499 | mutex_lock(&port_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2500 | |
| 2501 | /* |
Russell King | 68ac64c | 2006-04-30 11:13:50 +0100 | [diff] [blame] | 2502 | * Mark the port "dead" - this prevents any opens from |
| 2503 | * succeeding while we shut down the port. |
| 2504 | */ |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2505 | mutex_lock(&port->mutex); |
| 2506 | uport->flags |= UPF_DEAD; |
| 2507 | mutex_unlock(&port->mutex); |
Russell King | 68ac64c | 2006-04-30 11:13:50 +0100 | [diff] [blame] | 2508 | |
| 2509 | /* |
Greg Kroah-Hartman | aa4148c | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 2510 | * Remove the devices from the tty layer |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2511 | */ |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2512 | tty_unregister_device(drv->tty_driver, uport->line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2513 | |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2514 | if (port->tty) |
| 2515 | tty_vhangup(port->tty); |
Russell King | 68ac64c | 2006-04-30 11:13:50 +0100 | [diff] [blame] | 2516 | |
| 2517 | /* |
Russell King | 68ac64c | 2006-04-30 11:13:50 +0100 | [diff] [blame] | 2518 | * Free the port IO and memory resources, if any. |
| 2519 | */ |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2520 | if (uport->type != PORT_UNKNOWN) |
| 2521 | uport->ops->release_port(uport); |
Russell King | 68ac64c | 2006-04-30 11:13:50 +0100 | [diff] [blame] | 2522 | |
| 2523 | /* |
| 2524 | * Indicate that there isn't a port here anymore. |
| 2525 | */ |
Alan Cox | a2bceae | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 2526 | uport->type = PORT_UNKNOWN; |
Russell King | 68ac64c | 2006-04-30 11:13:50 +0100 | [diff] [blame] | 2527 | |
| 2528 | /* |
| 2529 | * Kill the tasklet, and free resources. |
| 2530 | */ |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 2531 | tasklet_kill(&state->tlet); |
Russell King | 68ac64c | 2006-04-30 11:13:50 +0100 | [diff] [blame] | 2532 | |
Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 2533 | state->uart_port = NULL; |
Arjan van de Ven | f392ecf | 2006-01-12 18:44:32 +0000 | [diff] [blame] | 2534 | mutex_unlock(&port_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2535 | |
| 2536 | return 0; |
| 2537 | } |
| 2538 | |
| 2539 | /* |
| 2540 | * Are the two ports equivalent? |
| 2541 | */ |
| 2542 | int uart_match_port(struct uart_port *port1, struct uart_port *port2) |
| 2543 | { |
| 2544 | if (port1->iotype != port2->iotype) |
| 2545 | return 0; |
| 2546 | |
| 2547 | switch (port1->iotype) { |
| 2548 | case UPIO_PORT: |
| 2549 | return (port1->iobase == port2->iobase); |
| 2550 | case UPIO_HUB6: |
| 2551 | return (port1->iobase == port2->iobase) && |
| 2552 | (port1->hub6 == port2->hub6); |
| 2553 | case UPIO_MEM: |
Sergei Shtylyov | d21b55d | 2006-08-28 19:49:03 +0400 | [diff] [blame] | 2554 | case UPIO_MEM32: |
| 2555 | case UPIO_AU: |
| 2556 | case UPIO_TSI: |
Marc St-Jean | beab697 | 2007-05-06 14:48:45 -0700 | [diff] [blame] | 2557 | case UPIO_DWAPB: |
Benjamin Herrenschmidt | 1624f00 | 2006-01-04 18:09:44 +0000 | [diff] [blame] | 2558 | return (port1->mapbase == port2->mapbase); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2559 | } |
| 2560 | return 0; |
| 2561 | } |
| 2562 | EXPORT_SYMBOL(uart_match_port); |
| 2563 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2564 | EXPORT_SYMBOL(uart_write_wakeup); |
| 2565 | EXPORT_SYMBOL(uart_register_driver); |
| 2566 | EXPORT_SYMBOL(uart_unregister_driver); |
| 2567 | EXPORT_SYMBOL(uart_suspend_port); |
| 2568 | EXPORT_SYMBOL(uart_resume_port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2569 | EXPORT_SYMBOL(uart_add_one_port); |
| 2570 | EXPORT_SYMBOL(uart_remove_one_port); |
| 2571 | |
| 2572 | MODULE_DESCRIPTION("Serial driver core"); |
| 2573 | MODULE_LICENSE("GPL"); |