blob: 0406d7ff505ea265634c2e294be1fa8b58dc375b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Driver core for serial ports
3 *
4 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
5 *
6 * Copyright 1999 ARM Limited
7 * Copyright (C) 2000-2001 Deep Blue Solutions Ltd.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/module.h>
24#include <linux/tty.h>
25#include <linux/slab.h>
26#include <linux/init.h>
27#include <linux/console.h>
Alexey Dobriyand196a942009-03-31 15:19:21 -070028#include <linux/proc_fs.h>
29#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/device.h>
31#include <linux/serial.h> /* for serial_state and serial_icounter_struct */
Alan Coxccce6de2009-09-19 13:13:30 -070032#include <linux/serial_core.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/delay.h>
Arjan van de Venf392ecf2006-01-12 18:44:32 +000034#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#include <asm/irq.h>
37#include <asm/uaccess.h>
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/*
40 * This is used to lock changes in serial line configuration.
41 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +000042static DEFINE_MUTEX(port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Ingo Molnar13e83592006-07-03 00:25:03 -070044/*
45 * lockdep: port->lock is initialized in two places, but we
46 * want only one lock-class:
47 */
48static struct lock_class_key port_lock_key;
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8)
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#ifdef CONFIG_SERIAL_CORE_CONSOLE
53#define uart_console(port) ((port)->cons && (port)->cons->index == (port)->line)
54#else
55#define uart_console(port) (0)
56#endif
57
Alan Cox19225132010-06-01 22:52:51 +020058static void uart_change_speed(struct tty_struct *tty, struct uart_state *state,
Alan Coxa46c9992008-02-08 04:18:53 -080059 struct ktermios *old_termios);
Jiri Slaby1f33a512011-07-14 14:35:10 +020060static void uart_wait_until_sent(struct tty_struct *tty, int timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static void uart_change_pm(struct uart_state *state, int pm_state);
62
63/*
64 * This routine is used by the interrupt handler to schedule processing in
65 * the software interrupt portion of the driver.
66 */
67void uart_write_wakeup(struct uart_port *port)
68{
Alan Coxebd2c8f2009-09-19 13:13:28 -070069 struct uart_state *state = port->state;
Pavel Machekd5f735e2006-03-07 21:55:20 -080070 /*
71 * This means you called this function _after_ the port was
72 * closed. No cookie for you.
73 */
Alan Coxebd2c8f2009-09-19 13:13:28 -070074 BUG_ON(!state);
Jiri Slaby6a3e492b2011-07-14 14:35:12 +020075 tty_wakeup(state->port.tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
78static void uart_stop(struct tty_struct *tty)
79{
80 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -070081 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 unsigned long flags;
83
84 spin_lock_irqsave(&port->lock, flags);
Russell Kingb129a8c2005-08-31 10:12:14 +010085 port->ops->stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 spin_unlock_irqrestore(&port->lock, flags);
87}
88
89static void __uart_start(struct tty_struct *tty)
90{
91 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -070092 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Alan Coxebd2c8f2009-09-19 13:13:28 -070094 if (!uart_circ_empty(&state->xmit) && state->xmit.buf &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 !tty->stopped && !tty->hw_stopped)
Russell Kingb129a8c2005-08-31 10:12:14 +010096 port->ops->start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
99static void uart_start(struct tty_struct *tty)
100{
101 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700102 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 unsigned long flags;
104
105 spin_lock_irqsave(&port->lock, flags);
106 __uart_start(tty);
107 spin_unlock_irqrestore(&port->lock, flags);
108}
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110static inline void
111uart_update_mctrl(struct uart_port *port, unsigned int set, unsigned int clear)
112{
113 unsigned long flags;
114 unsigned int old;
115
116 spin_lock_irqsave(&port->lock, flags);
117 old = port->mctrl;
118 port->mctrl = (old & ~clear) | set;
119 if (old != port->mctrl)
120 port->ops->set_mctrl(port, port->mctrl);
121 spin_unlock_irqrestore(&port->lock, flags);
122}
123
Alan Coxa46c9992008-02-08 04:18:53 -0800124#define uart_set_mctrl(port, set) uart_update_mctrl(port, set, 0)
125#define uart_clear_mctrl(port, clear) uart_update_mctrl(port, 0, clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127/*
128 * Startup the port. This will be called once per open. All calls
Alan Coxdf4f4dd2008-07-16 21:53:50 +0100129 * will be serialised by the per-port mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 */
Alan Cox19225132010-06-01 22:52:51 +0200131static int uart_startup(struct tty_struct *tty, struct uart_state *state, int init_hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Alan Cox46d57a42009-09-19 13:13:29 -0700133 struct uart_port *uport = state->uart_port;
134 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 unsigned long page;
136 int retval = 0;
137
Alan Coxccce6de2009-09-19 13:13:30 -0700138 if (port->flags & ASYNC_INITIALIZED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return 0;
140
141 /*
142 * Set the TTY IO error marker - we will only clear this
143 * once we have successfully opened the port. Also set
144 * up the tty->alt_speed kludge
145 */
Alan Cox19225132010-06-01 22:52:51 +0200146 set_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Alan Cox46d57a42009-09-19 13:13:29 -0700148 if (uport->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 return 0;
150
151 /*
152 * Initialise and allocate the transmit and temporary
153 * buffer.
154 */
Alan Coxebd2c8f2009-09-19 13:13:28 -0700155 if (!state->xmit.buf) {
Alan Coxdf4f4dd2008-07-16 21:53:50 +0100156 /* This is protected by the per port mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 page = get_zeroed_page(GFP_KERNEL);
158 if (!page)
159 return -ENOMEM;
160
Alan Coxebd2c8f2009-09-19 13:13:28 -0700161 state->xmit.buf = (unsigned char *) page;
162 uart_circ_clear(&state->xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 }
164
Alan Cox46d57a42009-09-19 13:13:29 -0700165 retval = uport->ops->startup(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 if (retval == 0) {
Jiri Slabyc7d7abf2011-03-30 00:10:55 +0200167 if (uart_console(uport) && uport->cons->cflag) {
168 tty->termios->c_cflag = uport->cons->cflag;
169 uport->cons->cflag = 0;
170 }
171 /*
172 * Initialise the hardware port settings.
173 */
174 uart_change_speed(tty, state, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Jiri Slabyc7d7abf2011-03-30 00:10:55 +0200176 if (init_hw) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 /*
178 * Setup the RTS and DTR signals once the
179 * port is open and ready to respond.
180 */
Alan Cox19225132010-06-01 22:52:51 +0200181 if (tty->termios->c_cflag & CBAUD)
Alan Cox46d57a42009-09-19 13:13:29 -0700182 uart_set_mctrl(uport, TIOCM_RTS | TIOCM_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184
Alan Coxccce6de2009-09-19 13:13:30 -0700185 if (port->flags & ASYNC_CTS_FLOW) {
Alan Cox46d57a42009-09-19 13:13:29 -0700186 spin_lock_irq(&uport->lock);
187 if (!(uport->ops->get_mctrl(uport) & TIOCM_CTS))
Alan Cox19225132010-06-01 22:52:51 +0200188 tty->hw_stopped = 1;
Alan Cox46d57a42009-09-19 13:13:29 -0700189 spin_unlock_irq(&uport->lock);
Russell King0dd7a1a2005-06-29 18:40:53 +0100190 }
191
Alan Coxccce6de2009-09-19 13:13:30 -0700192 set_bit(ASYNCB_INITIALIZED, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Alan Cox19225132010-06-01 22:52:51 +0200194 clear_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196
Jiri Slaby00551972011-08-17 13:48:15 +0200197 /*
198 * This is to allow setserial on this port. People may want to set
199 * port/irq/type and then reconfigure the port properly if it failed
200 * now.
201 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 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 Cox19225132010-06-01 22:52:51 +0200213static void uart_shutdown(struct tty_struct *tty, struct uart_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Alan Coxccce6de2009-09-19 13:13:30 -0700215 struct uart_port *uport = state->uart_port;
Alan Coxbdc04e32009-09-19 13:13:31 -0700216 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Russell Kingee31b332005-11-13 15:28:51 +0000218 /*
219 * Set the TTY IO error marker
220 */
Alan Coxf7519282009-01-02 13:49:21 +0000221 if (tty)
222 set_bit(TTY_IO_ERROR, &tty->flags);
Russell Kingee31b332005-11-13 15:28:51 +0000223
Alan Coxbdc04e32009-09-19 13:13:31 -0700224 if (test_and_clear_bit(ASYNCB_INITIALIZED, &port->flags)) {
Russell Kingee31b332005-11-13 15:28:51 +0000225 /*
226 * Turn off DTR and RTS early.
227 */
Alan Coxf7519282009-01-02 13:49:21 +0000228 if (!tty || (tty->termios->c_cflag & HUPCL))
Alan Coxccce6de2009-09-19 13:13:30 -0700229 uart_clear_mctrl(uport, TIOCM_DTR | TIOCM_RTS);
Russell Kingee31b332005-11-13 15:28:51 +0000230
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 Coxbdc04e32009-09-19 13:13:31 -0700238 wake_up_interruptible(&port->delta_msr_wait);
Russell Kingee31b332005-11-13 15:28:51 +0000239
240 /*
241 * Free the IRQ and disable the port.
242 */
Alan Coxccce6de2009-09-19 13:13:30 -0700243 uport->ops->shutdown(uport);
Russell Kingee31b332005-11-13 15:28:51 +0000244
245 /*
246 * Ensure that the IRQ handler isn't running on another CPU.
247 */
Alan Coxccce6de2009-09-19 13:13:30 -0700248 synchronize_irq(uport->irq);
Russell Kingee31b332005-11-13 15:28:51 +0000249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 /*
Doug Andersond208a3b2011-10-19 11:52:01 -0700252 * It's possible for shutdown to be called after suspend if we get
253 * a DCD drop (hangup) at just the right time. Clear suspended bit so
254 * we don't try to resume a port that has been shutdown.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 */
Doug Andersond208a3b2011-10-19 11:52:01 -0700256 clear_bit(ASYNCB_SUSPENDED, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 /*
259 * Free the transmit buffer page.
260 */
Alan Coxebd2c8f2009-09-19 13:13:28 -0700261 if (state->xmit.buf) {
262 free_page((unsigned long)state->xmit.buf);
263 state->xmit.buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
267/**
268 * uart_update_timeout - update per-port FIFO timeout.
269 * @port: uart_port structure describing the port
270 * @cflag: termios cflag value
271 * @baud: speed of the port
272 *
273 * Set the port FIFO timeout value. The @cflag value should
274 * reflect the actual hardware settings.
275 */
276void
277uart_update_timeout(struct uart_port *port, unsigned int cflag,
278 unsigned int baud)
279{
280 unsigned int bits;
281
282 /* byte size and parity */
283 switch (cflag & CSIZE) {
284 case CS5:
285 bits = 7;
286 break;
287 case CS6:
288 bits = 8;
289 break;
290 case CS7:
291 bits = 9;
292 break;
293 default:
294 bits = 10;
Alan Coxa46c9992008-02-08 04:18:53 -0800295 break; /* CS8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
297
298 if (cflag & CSTOPB)
299 bits++;
300 if (cflag & PARENB)
301 bits++;
302
303 /*
304 * The total number of bits to be transmitted in the fifo.
305 */
306 bits = bits * port->fifosize;
307
308 /*
309 * Figure the timeout to send the above number of bits.
310 * Add .02 seconds of slop
311 */
312 port->timeout = (HZ * bits) / baud + HZ/50;
313}
314
315EXPORT_SYMBOL(uart_update_timeout);
316
317/**
318 * uart_get_baud_rate - return baud rate for a particular port
319 * @port: uart_port structure describing the port in question.
320 * @termios: desired termios settings.
321 * @old: old termios (or NULL)
322 * @min: minimum acceptable baud rate
323 * @max: maximum acceptable baud rate
324 *
325 * Decode the termios structure into a numeric baud rate,
326 * taking account of the magic 38400 baud rate (with spd_*
327 * flags), and mapping the %B0 rate to 9600 baud.
328 *
329 * If the new baud rate is invalid, try the old termios setting.
330 * If it's still invalid, we try 9600 baud.
331 *
332 * Update the @termios structure to reflect the baud rate
Alan Coxeb424fd2008-04-28 02:14:07 -0700333 * we're actually going to be using. Don't do this for the case
334 * where B0 is requested ("hang up").
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 */
336unsigned int
Alan Cox606d0992006-12-08 02:38:45 -0800337uart_get_baud_rate(struct uart_port *port, struct ktermios *termios,
338 struct ktermios *old, unsigned int min, unsigned int max)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
340 unsigned int try, baud, altbaud = 38400;
Alan Coxeb424fd2008-04-28 02:14:07 -0700341 int hung_up = 0;
Russell King0077d452006-01-21 23:03:28 +0000342 upf_t flags = port->flags & UPF_SPD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 if (flags == UPF_SPD_HI)
345 altbaud = 57600;
André Goddard Rosa82cb7ba2009-10-25 11:18:26 -0200346 else if (flags == UPF_SPD_VHI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 altbaud = 115200;
André Goddard Rosa82cb7ba2009-10-25 11:18:26 -0200348 else if (flags == UPF_SPD_SHI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 altbaud = 230400;
André Goddard Rosa82cb7ba2009-10-25 11:18:26 -0200350 else if (flags == UPF_SPD_WARP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 altbaud = 460800;
352
353 for (try = 0; try < 2; try++) {
354 baud = tty_termios_baud_rate(termios);
355
356 /*
357 * The spd_hi, spd_vhi, spd_shi, spd_warp kludge...
358 * Die! Die! Die!
359 */
360 if (baud == 38400)
361 baud = altbaud;
362
363 /*
364 * Special case: B0 rate.
365 */
Alan Coxeb424fd2008-04-28 02:14:07 -0700366 if (baud == 0) {
367 hung_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 baud = 9600;
Alan Coxeb424fd2008-04-28 02:14:07 -0700369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 if (baud >= min && baud <= max)
372 return baud;
373
374 /*
375 * Oops, the quotient was zero. Try again with
376 * the old baud rate if possible.
377 */
378 termios->c_cflag &= ~CBAUD;
379 if (old) {
Alan Cox6d4d67b2008-02-04 22:27:53 -0800380 baud = tty_termios_baud_rate(old);
Alan Coxeb424fd2008-04-28 02:14:07 -0700381 if (!hung_up)
382 tty_termios_encode_baud_rate(termios,
383 baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 old = NULL;
385 continue;
386 }
387
388 /*
Alan Cox16ae2a82010-01-04 16:26:21 +0000389 * As a last resort, if the range cannot be met then clip to
390 * the nearest chip supported rate.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 */
Alan Cox16ae2a82010-01-04 16:26:21 +0000392 if (!hung_up) {
393 if (baud <= min)
394 tty_termios_encode_baud_rate(termios,
395 min + 1, min + 1);
396 else
397 tty_termios_encode_baud_rate(termios,
398 max - 1, max - 1);
399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
Alan Cox16ae2a82010-01-04 16:26:21 +0000401 /* Should never happen */
402 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return 0;
404}
405
406EXPORT_SYMBOL(uart_get_baud_rate);
407
408/**
409 * uart_get_divisor - return uart clock divisor
410 * @port: uart_port structure describing the port.
411 * @baud: desired baud rate
412 *
413 * Calculate the uart clock divisor for the port.
414 */
415unsigned int
416uart_get_divisor(struct uart_port *port, unsigned int baud)
417{
418 unsigned int quot;
419
420 /*
421 * Old custom speed handling.
422 */
423 if (baud == 38400 && (port->flags & UPF_SPD_MASK) == UPF_SPD_CUST)
424 quot = port->custom_divisor;
425 else
426 quot = (port->uartclk + (8 * baud)) / (16 * baud);
427
428 return quot;
429}
430
431EXPORT_SYMBOL(uart_get_divisor);
432
Alan Cox23d22ce2008-04-30 00:54:11 -0700433/* FIXME: Consistent locking policy */
Alan Cox19225132010-06-01 22:52:51 +0200434static void uart_change_speed(struct tty_struct *tty, struct uart_state *state,
435 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Alan Coxccce6de2009-09-19 13:13:30 -0700437 struct tty_port *port = &state->port;
Alan Coxccce6de2009-09-19 13:13:30 -0700438 struct uart_port *uport = state->uart_port;
Alan Cox606d0992006-12-08 02:38:45 -0800439 struct ktermios *termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 /*
442 * If we have no tty, termios, or the port does not exist,
443 * then we can't set the parameters for this port.
444 */
Alan Coxccce6de2009-09-19 13:13:30 -0700445 if (!tty || !tty->termios || uport->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 return;
447
448 termios = tty->termios;
449
450 /*
451 * Set flags based on termios cflag
452 */
453 if (termios->c_cflag & CRTSCTS)
Alan Coxccce6de2009-09-19 13:13:30 -0700454 set_bit(ASYNCB_CTS_FLOW, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 else
Alan Coxccce6de2009-09-19 13:13:30 -0700456 clear_bit(ASYNCB_CTS_FLOW, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 if (termios->c_cflag & CLOCAL)
Alan Coxccce6de2009-09-19 13:13:30 -0700459 clear_bit(ASYNCB_CHECK_CD, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 else
Alan Coxccce6de2009-09-19 13:13:30 -0700461 set_bit(ASYNCB_CHECK_CD, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Alan Coxccce6de2009-09-19 13:13:30 -0700463 uport->ops->set_termios(uport, termios, old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
Alan Cox19225132010-06-01 22:52:51 +0200466static inline int __uart_put_char(struct uart_port *port,
467 struct circ_buf *circ, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
469 unsigned long flags;
Alan Cox23d22ce2008-04-30 00:54:11 -0700470 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 if (!circ->buf)
Alan Cox23d22ce2008-04-30 00:54:11 -0700473 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 spin_lock_irqsave(&port->lock, flags);
476 if (uart_circ_chars_free(circ) != 0) {
477 circ->buf[circ->head] = c;
478 circ->head = (circ->head + 1) & (UART_XMIT_SIZE - 1);
Alan Cox23d22ce2008-04-30 00:54:11 -0700479 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481 spin_unlock_irqrestore(&port->lock, flags);
Alan Cox23d22ce2008-04-30 00:54:11 -0700482 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
Alan Cox23d22ce2008-04-30 00:54:11 -0700485static int uart_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
487 struct uart_state *state = tty->driver_data;
488
Alan Coxebd2c8f2009-09-19 13:13:28 -0700489 return __uart_put_char(state->uart_port, &state->xmit, ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
492static void uart_flush_chars(struct tty_struct *tty)
493{
494 uart_start(tty);
495}
496
Alan Cox19225132010-06-01 22:52:51 +0200497static int uart_write(struct tty_struct *tty,
498 const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
500 struct uart_state *state = tty->driver_data;
Pavel Machekd5f735e2006-03-07 21:55:20 -0800501 struct uart_port *port;
502 struct circ_buf *circ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 unsigned long flags;
504 int c, ret = 0;
505
Pavel Machekd5f735e2006-03-07 21:55:20 -0800506 /*
507 * This means you called this function _after_ the port was
508 * closed. No cookie for you.
509 */
Alan Coxf7519282009-01-02 13:49:21 +0000510 if (!state) {
Pavel Machekd5f735e2006-03-07 21:55:20 -0800511 WARN_ON(1);
512 return -EL3HLT;
513 }
514
Alan Coxebd2c8f2009-09-19 13:13:28 -0700515 port = state->uart_port;
516 circ = &state->xmit;
Pavel Machekd5f735e2006-03-07 21:55:20 -0800517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (!circ->buf)
519 return 0;
520
521 spin_lock_irqsave(&port->lock, flags);
522 while (1) {
523 c = CIRC_SPACE_TO_END(circ->head, circ->tail, UART_XMIT_SIZE);
524 if (count < c)
525 c = count;
526 if (c <= 0)
527 break;
528 memcpy(circ->buf + circ->head, buf, c);
529 circ->head = (circ->head + c) & (UART_XMIT_SIZE - 1);
530 buf += c;
531 count -= c;
532 ret += c;
533 }
534 spin_unlock_irqrestore(&port->lock, flags);
535
536 uart_start(tty);
537 return ret;
538}
539
540static int uart_write_room(struct tty_struct *tty)
541{
542 struct uart_state *state = tty->driver_data;
Alan Coxf34d7a52008-04-30 00:54:13 -0700543 unsigned long flags;
544 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Alan Coxebd2c8f2009-09-19 13:13:28 -0700546 spin_lock_irqsave(&state->uart_port->lock, flags);
547 ret = uart_circ_chars_free(&state->xmit);
548 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700549 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
552static int uart_chars_in_buffer(struct tty_struct *tty)
553{
554 struct uart_state *state = tty->driver_data;
Alan Coxf34d7a52008-04-30 00:54:13 -0700555 unsigned long flags;
556 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Alan Coxebd2c8f2009-09-19 13:13:28 -0700558 spin_lock_irqsave(&state->uart_port->lock, flags);
559 ret = uart_circ_chars_pending(&state->xmit);
560 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700561 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
564static void uart_flush_buffer(struct tty_struct *tty)
565{
566 struct uart_state *state = tty->driver_data;
Tetsuo Handa55d7b682008-05-06 20:42:27 -0700567 struct uart_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 unsigned long flags;
569
Pavel Machekd5f735e2006-03-07 21:55:20 -0800570 /*
571 * This means you called this function _after_ the port was
572 * closed. No cookie for you.
573 */
Alan Coxf7519282009-01-02 13:49:21 +0000574 if (!state) {
Pavel Machekd5f735e2006-03-07 21:55:20 -0800575 WARN_ON(1);
576 return;
577 }
578
Alan Coxebd2c8f2009-09-19 13:13:28 -0700579 port = state->uart_port;
Jiri Slabyeb3a1e12007-05-06 14:48:52 -0700580 pr_debug("uart_flush_buffer(%d) called\n", tty->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 spin_lock_irqsave(&port->lock, flags);
Alan Coxebd2c8f2009-09-19 13:13:28 -0700583 uart_circ_clear(&state->xmit);
Haavard Skinnemoen6bb0e3a2008-07-16 21:52:36 +0100584 if (port->ops->flush_buffer)
585 port->ops->flush_buffer(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 spin_unlock_irqrestore(&port->lock, flags);
587 tty_wakeup(tty);
588}
589
590/*
591 * This function is used to send a high-priority XON/XOFF character to
592 * the device
593 */
594static void uart_send_xchar(struct tty_struct *tty, char ch)
595{
596 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700597 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 unsigned long flags;
599
600 if (port->ops->send_xchar)
601 port->ops->send_xchar(port, ch);
602 else {
603 port->x_char = ch;
604 if (ch) {
605 spin_lock_irqsave(&port->lock, flags);
Russell Kingb129a8c2005-08-31 10:12:14 +0100606 port->ops->start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 spin_unlock_irqrestore(&port->lock, flags);
608 }
609 }
610}
611
612static void uart_throttle(struct tty_struct *tty)
613{
614 struct uart_state *state = tty->driver_data;
615
616 if (I_IXOFF(tty))
617 uart_send_xchar(tty, STOP_CHAR(tty));
618
619 if (tty->termios->c_cflag & CRTSCTS)
Alan Coxebd2c8f2009-09-19 13:13:28 -0700620 uart_clear_mctrl(state->uart_port, TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
623static void uart_unthrottle(struct tty_struct *tty)
624{
625 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700626 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 if (I_IXOFF(tty)) {
629 if (port->x_char)
630 port->x_char = 0;
631 else
632 uart_send_xchar(tty, START_CHAR(tty));
633 }
634
635 if (tty->termios->c_cflag & CRTSCTS)
636 uart_set_mctrl(port, TIOCM_RTS);
637}
638
639static int uart_get_info(struct uart_state *state,
640 struct serial_struct __user *retinfo)
641{
Alan Coxa2bceae2009-09-19 13:13:31 -0700642 struct uart_port *uport = state->uart_port;
643 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 struct serial_struct tmp;
645
646 memset(&tmp, 0, sizeof(tmp));
Alan Coxf34d7a52008-04-30 00:54:13 -0700647
648 /* Ensure the state we copy is consistent and no hardware changes
649 occur as we go */
Alan Coxa2bceae2009-09-19 13:13:31 -0700650 mutex_lock(&port->mutex);
Alan Coxf34d7a52008-04-30 00:54:13 -0700651
Alan Coxa2bceae2009-09-19 13:13:31 -0700652 tmp.type = uport->type;
653 tmp.line = uport->line;
654 tmp.port = uport->iobase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 if (HIGH_BITS_OFFSET)
Alan Coxa2bceae2009-09-19 13:13:31 -0700656 tmp.port_high = (long) uport->iobase >> HIGH_BITS_OFFSET;
657 tmp.irq = uport->irq;
658 tmp.flags = uport->flags;
659 tmp.xmit_fifo_size = uport->fifosize;
660 tmp.baud_base = uport->uartclk / 16;
661 tmp.close_delay = port->close_delay / 10;
Alan Cox016af532009-09-19 13:13:32 -0700662 tmp.closing_wait = port->closing_wait == ASYNC_CLOSING_WAIT_NONE ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 ASYNC_CLOSING_WAIT_NONE :
Alan Coxa2bceae2009-09-19 13:13:31 -0700664 port->closing_wait / 10;
665 tmp.custom_divisor = uport->custom_divisor;
666 tmp.hub6 = uport->hub6;
667 tmp.io_type = uport->iotype;
668 tmp.iomem_reg_shift = uport->regshift;
669 tmp.iomem_base = (void *)(unsigned long)uport->mapbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Alan Coxa2bceae2009-09-19 13:13:31 -0700671 mutex_unlock(&port->mutex);
Alan Coxf34d7a52008-04-30 00:54:13 -0700672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
674 return -EFAULT;
675 return 0;
676}
677
Alan Cox19225132010-06-01 22:52:51 +0200678static int uart_set_info(struct tty_struct *tty, struct uart_state *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 struct serial_struct __user *newinfo)
680{
681 struct serial_struct new_serial;
Alan Cox46d57a42009-09-19 13:13:29 -0700682 struct uart_port *uport = state->uart_port;
683 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 unsigned long new_port;
Russell King0077d452006-01-21 23:03:28 +0000685 unsigned int change_irq, change_port, closing_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 unsigned int old_custom_divisor, close_delay;
Russell King0077d452006-01-21 23:03:28 +0000687 upf_t old_flags, new_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 int retval = 0;
689
690 if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
691 return -EFAULT;
692
693 new_port = new_serial.port;
694 if (HIGH_BITS_OFFSET)
695 new_port += (unsigned long) new_serial.port_high << HIGH_BITS_OFFSET;
696
697 new_serial.irq = irq_canonicalize(new_serial.irq);
698 close_delay = new_serial.close_delay * 10;
699 closing_wait = new_serial.closing_wait == ASYNC_CLOSING_WAIT_NONE ?
Alan Cox016af532009-09-19 13:13:32 -0700700 ASYNC_CLOSING_WAIT_NONE : new_serial.closing_wait * 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 /*
Alan Cox91312cd2009-09-19 13:13:29 -0700703 * This semaphore protects port->count. It is also
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 * very useful to prevent opens. Also, take the
705 * port configuration semaphore to make sure that a
706 * module insertion/removal doesn't change anything
707 * under us.
708 */
Alan Coxa2bceae2009-09-19 13:13:31 -0700709 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Alan Cox46d57a42009-09-19 13:13:29 -0700711 change_irq = !(uport->flags & UPF_FIXED_PORT)
712 && new_serial.irq != uport->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 /*
715 * Since changing the 'type' of the port changes its resource
716 * allocations, we should treat type changes the same as
717 * IO port changes.
718 */
Alan Cox46d57a42009-09-19 13:13:29 -0700719 change_port = !(uport->flags & UPF_FIXED_PORT)
720 && (new_port != uport->iobase ||
721 (unsigned long)new_serial.iomem_base != uport->mapbase ||
722 new_serial.hub6 != uport->hub6 ||
723 new_serial.io_type != uport->iotype ||
724 new_serial.iomem_reg_shift != uport->regshift ||
725 new_serial.type != uport->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Alan Cox46d57a42009-09-19 13:13:29 -0700727 old_flags = uport->flags;
Russell King0077d452006-01-21 23:03:28 +0000728 new_flags = new_serial.flags;
Alan Cox46d57a42009-09-19 13:13:29 -0700729 old_custom_divisor = uport->custom_divisor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 if (!capable(CAP_SYS_ADMIN)) {
732 retval = -EPERM;
733 if (change_irq || change_port ||
Alan Cox46d57a42009-09-19 13:13:29 -0700734 (new_serial.baud_base != uport->uartclk / 16) ||
735 (close_delay != port->close_delay) ||
736 (closing_wait != port->closing_wait) ||
Russell King947deee2006-07-02 20:45:51 +0100737 (new_serial.xmit_fifo_size &&
Alan Cox46d57a42009-09-19 13:13:29 -0700738 new_serial.xmit_fifo_size != uport->fifosize) ||
Russell King0077d452006-01-21 23:03:28 +0000739 (((new_flags ^ old_flags) & ~UPF_USR_MASK) != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 goto exit;
Alan Cox46d57a42009-09-19 13:13:29 -0700741 uport->flags = ((uport->flags & ~UPF_USR_MASK) |
Russell King0077d452006-01-21 23:03:28 +0000742 (new_flags & UPF_USR_MASK));
Alan Cox46d57a42009-09-19 13:13:29 -0700743 uport->custom_divisor = new_serial.custom_divisor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 goto check_and_exit;
745 }
746
747 /*
748 * Ask the low level driver to verify the settings.
749 */
Alan Cox46d57a42009-09-19 13:13:29 -0700750 if (uport->ops->verify_port)
751 retval = uport->ops->verify_port(uport, &new_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Yinghai Lua62c4132008-08-19 20:49:55 -0700753 if ((new_serial.irq >= nr_irqs) || (new_serial.irq < 0) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 (new_serial.baud_base < 9600))
755 retval = -EINVAL;
756
757 if (retval)
758 goto exit;
759
760 if (change_port || change_irq) {
761 retval = -EBUSY;
762
763 /*
764 * Make sure that we are the sole user of this port.
765 */
Alan Coxb58d13a2009-09-19 13:13:32 -0700766 if (tty_port_users(port) > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 goto exit;
768
769 /*
770 * We need to shutdown the serial port at the old
771 * port/type/irq combination.
772 */
Alan Cox19225132010-06-01 22:52:51 +0200773 uart_shutdown(tty, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
775
776 if (change_port) {
777 unsigned long old_iobase, old_mapbase;
778 unsigned int old_type, old_iotype, old_hub6, old_shift;
779
Alan Cox46d57a42009-09-19 13:13:29 -0700780 old_iobase = uport->iobase;
781 old_mapbase = uport->mapbase;
782 old_type = uport->type;
783 old_hub6 = uport->hub6;
784 old_iotype = uport->iotype;
785 old_shift = uport->regshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 /*
788 * Free and release old regions
789 */
790 if (old_type != PORT_UNKNOWN)
Alan Cox46d57a42009-09-19 13:13:29 -0700791 uport->ops->release_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Alan Cox46d57a42009-09-19 13:13:29 -0700793 uport->iobase = new_port;
794 uport->type = new_serial.type;
795 uport->hub6 = new_serial.hub6;
796 uport->iotype = new_serial.io_type;
797 uport->regshift = new_serial.iomem_reg_shift;
798 uport->mapbase = (unsigned long)new_serial.iomem_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 /*
801 * Claim and map the new regions
802 */
Alan Cox46d57a42009-09-19 13:13:29 -0700803 if (uport->type != PORT_UNKNOWN) {
804 retval = uport->ops->request_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 } else {
806 /* Always success - Jean II */
807 retval = 0;
808 }
809
810 /*
811 * If we fail to request resources for the
812 * new port, try to restore the old settings.
813 */
814 if (retval && old_type != PORT_UNKNOWN) {
Alan Cox46d57a42009-09-19 13:13:29 -0700815 uport->iobase = old_iobase;
816 uport->type = old_type;
817 uport->hub6 = old_hub6;
818 uport->iotype = old_iotype;
819 uport->regshift = old_shift;
820 uport->mapbase = old_mapbase;
821 retval = uport->ops->request_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 /*
823 * If we failed to restore the old settings,
824 * we fail like this.
825 */
826 if (retval)
Alan Cox46d57a42009-09-19 13:13:29 -0700827 uport->type = PORT_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 /*
830 * We failed anyway.
831 */
832 retval = -EBUSY;
Alan Coxa46c9992008-02-08 04:18:53 -0800833 /* Added to return the correct error -Ram Gupta */
834 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
836 }
837
David Gibsonabb4a232007-05-06 14:48:49 -0700838 if (change_irq)
Alan Cox46d57a42009-09-19 13:13:29 -0700839 uport->irq = new_serial.irq;
840 if (!(uport->flags & UPF_FIXED_PORT))
841 uport->uartclk = new_serial.baud_base * 16;
842 uport->flags = (uport->flags & ~UPF_CHANGE_MASK) |
Russell King0077d452006-01-21 23:03:28 +0000843 (new_flags & UPF_CHANGE_MASK);
Alan Cox46d57a42009-09-19 13:13:29 -0700844 uport->custom_divisor = new_serial.custom_divisor;
845 port->close_delay = close_delay;
846 port->closing_wait = closing_wait;
Russell King947deee2006-07-02 20:45:51 +0100847 if (new_serial.xmit_fifo_size)
Alan Cox46d57a42009-09-19 13:13:29 -0700848 uport->fifosize = new_serial.xmit_fifo_size;
849 if (port->tty)
850 port->tty->low_latency =
851 (uport->flags & UPF_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 check_and_exit:
854 retval = 0;
Alan Cox46d57a42009-09-19 13:13:29 -0700855 if (uport->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 goto exit;
Alan Coxccce6de2009-09-19 13:13:30 -0700857 if (port->flags & ASYNC_INITIALIZED) {
Alan Cox46d57a42009-09-19 13:13:29 -0700858 if (((old_flags ^ uport->flags) & UPF_SPD_MASK) ||
859 old_custom_divisor != uport->custom_divisor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 /*
861 * If they're setting up a custom divisor or speed,
862 * instead of clearing it, then bitch about it. No
863 * need to rate-limit; it's CAP_SYS_ADMIN only.
864 */
Alan Cox46d57a42009-09-19 13:13:29 -0700865 if (uport->flags & UPF_SPD_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 char buf[64];
867 printk(KERN_NOTICE
868 "%s sets custom speed on %s. This "
869 "is deprecated.\n", current->comm,
Alan Cox46d57a42009-09-19 13:13:29 -0700870 tty_name(port->tty, buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
Alan Cox19225132010-06-01 22:52:51 +0200872 uart_change_speed(tty, state, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
874 } else
Alan Cox19225132010-06-01 22:52:51 +0200875 retval = uart_startup(tty, state, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 exit:
Alan Coxa2bceae2009-09-19 13:13:31 -0700877 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 return retval;
879}
880
Alan Cox19225132010-06-01 22:52:51 +0200881/**
882 * uart_get_lsr_info - get line status register info
883 * @tty: tty associated with the UART
884 * @state: UART being queried
885 * @value: returned modem value
886 *
887 * Note: uart_ioctl protects us against hangups.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 */
Alan Cox19225132010-06-01 22:52:51 +0200889static int uart_get_lsr_info(struct tty_struct *tty,
890 struct uart_state *state, unsigned int __user *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Alan Cox46d57a42009-09-19 13:13:29 -0700892 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 unsigned int result;
894
Alan Cox46d57a42009-09-19 13:13:29 -0700895 result = uport->ops->tx_empty(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 /*
898 * If we're about to load something into the transmit
899 * register, we'll pretend the transmitter isn't empty to
900 * avoid a race condition (depending on when the transmit
901 * interrupt happens).
902 */
Alan Cox46d57a42009-09-19 13:13:29 -0700903 if (uport->x_char ||
Alan Coxebd2c8f2009-09-19 13:13:28 -0700904 ((uart_circ_chars_pending(&state->xmit) > 0) &&
Alan Cox19225132010-06-01 22:52:51 +0200905 !tty->stopped && !tty->hw_stopped))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 result &= ~TIOCSER_TEMT;
Alan Coxa46c9992008-02-08 04:18:53 -0800907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 return put_user(result, value);
909}
910
Alan Cox60b33c12011-02-14 16:26:14 +0000911static int uart_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
913 struct uart_state *state = tty->driver_data;
Alan Coxa2bceae2009-09-19 13:13:31 -0700914 struct tty_port *port = &state->port;
Alan Cox46d57a42009-09-19 13:13:29 -0700915 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 int result = -EIO;
917
Alan Coxa2bceae2009-09-19 13:13:31 -0700918 mutex_lock(&port->mutex);
Alan Cox60b33c12011-02-14 16:26:14 +0000919 if (!(tty->flags & (1 << TTY_IO_ERROR))) {
Alan Cox46d57a42009-09-19 13:13:29 -0700920 result = uport->mctrl;
Alan Cox46d57a42009-09-19 13:13:29 -0700921 spin_lock_irq(&uport->lock);
922 result |= uport->ops->get_mctrl(uport);
923 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
Alan Coxa2bceae2009-09-19 13:13:31 -0700925 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 return result;
928}
929
930static int
Alan Cox20b9d172011-02-14 16:26:50 +0000931uart_tiocmset(struct tty_struct *tty, unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
933 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -0700934 struct uart_port *uport = state->uart_port;
Alan Coxa2bceae2009-09-19 13:13:31 -0700935 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 int ret = -EIO;
937
Alan Coxa2bceae2009-09-19 13:13:31 -0700938 mutex_lock(&port->mutex);
Alan Cox20b9d172011-02-14 16:26:50 +0000939 if (!(tty->flags & (1 << TTY_IO_ERROR))) {
Alan Cox46d57a42009-09-19 13:13:29 -0700940 uart_update_mctrl(uport, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 ret = 0;
942 }
Alan Coxa2bceae2009-09-19 13:13:31 -0700943 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 return ret;
945}
946
Alan Cox9e989662008-07-22 11:18:03 +0100947static int uart_break_ctl(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
949 struct uart_state *state = tty->driver_data;
Alan Coxa2bceae2009-09-19 13:13:31 -0700950 struct tty_port *port = &state->port;
Alan Cox46d57a42009-09-19 13:13:29 -0700951 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Alan Coxa2bceae2009-09-19 13:13:31 -0700953 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Alan Cox46d57a42009-09-19 13:13:29 -0700955 if (uport->type != PORT_UNKNOWN)
956 uport->ops->break_ctl(uport, break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Alan Coxa2bceae2009-09-19 13:13:31 -0700958 mutex_unlock(&port->mutex);
Alan Cox9e989662008-07-22 11:18:03 +0100959 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960}
961
Alan Cox19225132010-06-01 22:52:51 +0200962static int uart_do_autoconfig(struct tty_struct *tty,struct uart_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
Alan Cox46d57a42009-09-19 13:13:29 -0700964 struct uart_port *uport = state->uart_port;
Alan Coxa2bceae2009-09-19 13:13:31 -0700965 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 int flags, ret;
967
968 if (!capable(CAP_SYS_ADMIN))
969 return -EPERM;
970
971 /*
972 * Take the per-port semaphore. This prevents count from
973 * changing, and hence any extra opens of the port while
974 * we're auto-configuring.
975 */
Alan Coxa2bceae2009-09-19 13:13:31 -0700976 if (mutex_lock_interruptible(&port->mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 return -ERESTARTSYS;
978
979 ret = -EBUSY;
Alan Coxb58d13a2009-09-19 13:13:32 -0700980 if (tty_port_users(port) == 1) {
Alan Cox19225132010-06-01 22:52:51 +0200981 uart_shutdown(tty, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 /*
984 * If we already have a port type configured,
985 * we must release its resources.
986 */
Alan Cox46d57a42009-09-19 13:13:29 -0700987 if (uport->type != PORT_UNKNOWN)
988 uport->ops->release_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 flags = UART_CONFIG_TYPE;
Alan Cox46d57a42009-09-19 13:13:29 -0700991 if (uport->flags & UPF_AUTO_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 flags |= UART_CONFIG_IRQ;
993
994 /*
995 * This will claim the ports resources if
996 * a port is found.
997 */
Alan Cox46d57a42009-09-19 13:13:29 -0700998 uport->ops->config_port(uport, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Alan Cox19225132010-06-01 22:52:51 +02001000 ret = uart_startup(tty, state, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 }
Alan Coxa2bceae2009-09-19 13:13:31 -07001002 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 return ret;
1004}
1005
1006/*
1007 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1008 * - mask passed in arg for lines of interest
1009 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1010 * Caller should use TIOCGICOUNT to see which one it was
Alan Coxbdc04e32009-09-19 13:13:31 -07001011 *
1012 * FIXME: This wants extracting into a common all driver implementation
1013 * of TIOCMWAIT using tty_port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 */
1015static int
1016uart_wait_modem_status(struct uart_state *state, unsigned long arg)
1017{
Alan Cox46d57a42009-09-19 13:13:29 -07001018 struct uart_port *uport = state->uart_port;
Alan Coxbdc04e32009-09-19 13:13:31 -07001019 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 DECLARE_WAITQUEUE(wait, current);
1021 struct uart_icount cprev, cnow;
1022 int ret;
1023
1024 /*
1025 * note the counters on entry
1026 */
Alan Cox46d57a42009-09-19 13:13:29 -07001027 spin_lock_irq(&uport->lock);
1028 memcpy(&cprev, &uport->icount, sizeof(struct uart_icount));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030 /*
1031 * Force modem status interrupts on
1032 */
Alan Cox46d57a42009-09-19 13:13:29 -07001033 uport->ops->enable_ms(uport);
1034 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Alan Coxbdc04e32009-09-19 13:13:31 -07001036 add_wait_queue(&port->delta_msr_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 for (;;) {
Alan Cox46d57a42009-09-19 13:13:29 -07001038 spin_lock_irq(&uport->lock);
1039 memcpy(&cnow, &uport->icount, sizeof(struct uart_icount));
1040 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042 set_current_state(TASK_INTERRUPTIBLE);
1043
1044 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
1045 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
1046 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
1047 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
Alan Coxa46c9992008-02-08 04:18:53 -08001048 ret = 0;
1049 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051
1052 schedule();
1053
1054 /* see if a signal did it */
1055 if (signal_pending(current)) {
1056 ret = -ERESTARTSYS;
1057 break;
1058 }
1059
1060 cprev = cnow;
1061 }
1062
1063 current->state = TASK_RUNNING;
Alan Coxbdc04e32009-09-19 13:13:31 -07001064 remove_wait_queue(&port->delta_msr_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 return ret;
1067}
1068
1069/*
1070 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1071 * Return: write counters to the user passed counter struct
1072 * NB: both 1->0 and 0->1 transitions are counted except for
1073 * RI where only 0->1 is counted.
1074 */
Alan Coxd281da72010-09-16 18:21:24 +01001075static int uart_get_icount(struct tty_struct *tty,
1076 struct serial_icounter_struct *icount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
Alan Coxd281da72010-09-16 18:21:24 +01001078 struct uart_state *state = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 struct uart_icount cnow;
Alan Cox46d57a42009-09-19 13:13:29 -07001080 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
Alan Cox46d57a42009-09-19 13:13:29 -07001082 spin_lock_irq(&uport->lock);
1083 memcpy(&cnow, &uport->icount, sizeof(struct uart_icount));
1084 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Alan Coxd281da72010-09-16 18:21:24 +01001086 icount->cts = cnow.cts;
1087 icount->dsr = cnow.dsr;
1088 icount->rng = cnow.rng;
1089 icount->dcd = cnow.dcd;
1090 icount->rx = cnow.rx;
1091 icount->tx = cnow.tx;
1092 icount->frame = cnow.frame;
1093 icount->overrun = cnow.overrun;
1094 icount->parity = cnow.parity;
1095 icount->brk = cnow.brk;
1096 icount->buf_overrun = cnow.buf_overrun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Alan Coxd281da72010-09-16 18:21:24 +01001098 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
1100
1101/*
Alan Coxe5238442008-04-30 00:53:28 -07001102 * Called via sys_ioctl. We can use spin_lock_irq() here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 */
1104static int
Alan Cox6caa76b2011-02-14 16:27:22 +00001105uart_ioctl(struct tty_struct *tty, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 unsigned long arg)
1107{
1108 struct uart_state *state = tty->driver_data;
Alan Coxa2bceae2009-09-19 13:13:31 -07001109 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 void __user *uarg = (void __user *)arg;
1111 int ret = -ENOIOCTLCMD;
1112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
1114 /*
1115 * These ioctls don't rely on the hardware to be present.
1116 */
1117 switch (cmd) {
1118 case TIOCGSERIAL:
1119 ret = uart_get_info(state, uarg);
1120 break;
1121
1122 case TIOCSSERIAL:
Alan Cox19225132010-06-01 22:52:51 +02001123 ret = uart_set_info(tty, state, uarg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 break;
1125
1126 case TIOCSERCONFIG:
Alan Cox19225132010-06-01 22:52:51 +02001127 ret = uart_do_autoconfig(tty, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 break;
1129
1130 case TIOCSERGWILD: /* obsolete */
1131 case TIOCSERSWILD: /* obsolete */
1132 ret = 0;
1133 break;
1134 }
1135
1136 if (ret != -ENOIOCTLCMD)
1137 goto out;
1138
1139 if (tty->flags & (1 << TTY_IO_ERROR)) {
1140 ret = -EIO;
1141 goto out;
1142 }
1143
1144 /*
1145 * The following should only be used when hardware is present.
1146 */
1147 switch (cmd) {
1148 case TIOCMIWAIT:
1149 ret = uart_wait_modem_status(state, arg);
1150 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 }
1152
1153 if (ret != -ENOIOCTLCMD)
1154 goto out;
1155
Alan Coxa2bceae2009-09-19 13:13:31 -07001156 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Alan Cox6caa76b2011-02-14 16:27:22 +00001158 if (tty->flags & (1 << TTY_IO_ERROR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 ret = -EIO;
1160 goto out_up;
1161 }
1162
1163 /*
1164 * All these rely on hardware being present and need to be
1165 * protected against the tty being hung up.
1166 */
1167 switch (cmd) {
1168 case TIOCSERGETLSR: /* Get line status register */
Alan Cox19225132010-06-01 22:52:51 +02001169 ret = uart_get_lsr_info(tty, state, uarg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 break;
1171
1172 default: {
Alan Cox46d57a42009-09-19 13:13:29 -07001173 struct uart_port *uport = state->uart_port;
1174 if (uport->ops->ioctl)
1175 ret = uport->ops->ioctl(uport, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 break;
1177 }
1178 }
Alan Coxf34d7a52008-04-30 00:54:13 -07001179out_up:
Alan Coxa2bceae2009-09-19 13:13:31 -07001180 mutex_unlock(&port->mutex);
Alan Coxf34d7a52008-04-30 00:54:13 -07001181out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 return ret;
1183}
1184
Linus Torvaldsedeb2802008-06-04 10:35:03 -07001185static void uart_set_ldisc(struct tty_struct *tty)
Alan Cox64e91592008-06-03 15:18:54 +01001186{
1187 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -07001188 struct uart_port *uport = state->uart_port;
Alan Cox64e91592008-06-03 15:18:54 +01001189
Alan Cox46d57a42009-09-19 13:13:29 -07001190 if (uport->ops->set_ldisc)
Alan Coxd87d9b72010-06-01 22:52:53 +02001191 uport->ops->set_ldisc(uport, tty->termios->c_line);
Alan Cox64e91592008-06-03 15:18:54 +01001192}
1193
Alan Coxa46c9992008-02-08 04:18:53 -08001194static void uart_set_termios(struct tty_struct *tty,
1195 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
1197 struct uart_state *state = tty->driver_data;
1198 unsigned long flags;
1199 unsigned int cflag = tty->termios->c_cflag;
1200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 /*
1203 * These are the bits that are used to setup various
David Woodhouse20620d62007-08-22 14:01:11 -07001204 * flags in the low level driver. We can ignore the Bfoo
1205 * bits in c_cflag; c_[io]speed will always be set
1206 * appropriately by set_termios() in tty_ioctl.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 */
1208#define RELEVANT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 if ((cflag ^ old_termios->c_cflag) == 0 &&
David Woodhouse20620d62007-08-22 14:01:11 -07001210 tty->termios->c_ospeed == old_termios->c_ospeed &&
1211 tty->termios->c_ispeed == old_termios->c_ispeed &&
Alan Coxe5238442008-04-30 00:53:28 -07001212 RELEVANT_IFLAG(tty->termios->c_iflag ^ old_termios->c_iflag) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 return;
Alan Coxe5238442008-04-30 00:53:28 -07001214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Alan Cox19225132010-06-01 22:52:51 +02001216 uart_change_speed(tty, state, old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218 /* Handle transition to B0 status */
1219 if ((old_termios->c_cflag & CBAUD) && !(cflag & CBAUD))
Alan Coxebd2c8f2009-09-19 13:13:28 -07001220 uart_clear_mctrl(state->uart_port, TIOCM_RTS | TIOCM_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 /* Handle transition away from B0 status */
André Goddard Rosa82cb7ba2009-10-25 11:18:26 -02001222 else if (!(old_termios->c_cflag & CBAUD) && (cflag & CBAUD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 unsigned int mask = TIOCM_DTR;
1224 if (!(cflag & CRTSCTS) ||
1225 !test_bit(TTY_THROTTLED, &tty->flags))
1226 mask |= TIOCM_RTS;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001227 uart_set_mctrl(state->uart_port, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
1229
1230 /* Handle turning off CRTSCTS */
1231 if ((old_termios->c_cflag & CRTSCTS) && !(cflag & CRTSCTS)) {
Alan Coxebd2c8f2009-09-19 13:13:28 -07001232 spin_lock_irqsave(&state->uart_port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 tty->hw_stopped = 0;
1234 __uart_start(tty);
Alan Coxebd2c8f2009-09-19 13:13:28 -07001235 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
Russell King0dd7a1a2005-06-29 18:40:53 +01001237 /* Handle turning on CRTSCTS */
André Goddard Rosa82cb7ba2009-10-25 11:18:26 -02001238 else if (!(old_termios->c_cflag & CRTSCTS) && (cflag & CRTSCTS)) {
Alan Coxebd2c8f2009-09-19 13:13:28 -07001239 spin_lock_irqsave(&state->uart_port->lock, flags);
1240 if (!(state->uart_port->ops->get_mctrl(state->uart_port) & TIOCM_CTS)) {
Russell King0dd7a1a2005-06-29 18:40:53 +01001241 tty->hw_stopped = 1;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001242 state->uart_port->ops->stop_tx(state->uart_port);
Russell King0dd7a1a2005-06-29 18:40:53 +01001243 }
Alan Coxebd2c8f2009-09-19 13:13:28 -07001244 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Russell King0dd7a1a2005-06-29 18:40:53 +01001245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246}
1247
1248/*
1249 * In 2.4.5, calls to this will be serialized via the BKL in
1250 * linux/drivers/char/tty_io.c:tty_release()
1251 * linux/drivers/char/tty_io.c:do_tty_handup()
1252 */
1253static void uart_close(struct tty_struct *tty, struct file *filp)
1254{
1255 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -07001256 struct tty_port *port;
1257 struct uart_port *uport;
Alan Cox61cd8a22010-06-01 22:52:57 +02001258 unsigned long flags;
Alan Coxa46c9992008-02-08 04:18:53 -08001259
Linus Torvaldseea7e172009-10-12 19:13:54 +02001260 if (!state)
1261 return;
1262
Alan Cox46d57a42009-09-19 13:13:29 -07001263 uport = state->uart_port;
1264 port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Alan Cox46d57a42009-09-19 13:13:29 -07001266 pr_debug("uart_close(%d) called\n", uport->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Alan Cox61cd8a22010-06-01 22:52:57 +02001268 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Alan Cox61cd8a22010-06-01 22:52:57 +02001270 if (tty_hung_up_p(filp)) {
1271 spin_unlock_irqrestore(&port->lock, flags);
Nobuhiro Iwamatsu55956212011-08-29 15:43:36 +09001272 return;
Alan Cox61cd8a22010-06-01 22:52:57 +02001273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Alan Cox91312cd2009-09-19 13:13:29 -07001275 if ((tty->count == 1) && (port->count != 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 /*
1277 * Uh, oh. tty->count is 1, which means that the tty
Alan Cox91312cd2009-09-19 13:13:29 -07001278 * structure will be freed. port->count should always
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 * be one in these conditions. If it's greater than
1280 * one, we've got real problems, since it means the
1281 * serial port won't be shutdown.
1282 */
1283 printk(KERN_ERR "uart_close: bad serial port count; tty->count is 1, "
Alan Cox91312cd2009-09-19 13:13:29 -07001284 "port->count is %d\n", port->count);
1285 port->count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 }
Alan Cox91312cd2009-09-19 13:13:29 -07001287 if (--port->count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 printk(KERN_ERR "uart_close: bad serial port count for %s: %d\n",
Alan Cox91312cd2009-09-19 13:13:29 -07001289 tty->name, port->count);
1290 port->count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
Alan Cox61cd8a22010-06-01 22:52:57 +02001292 if (port->count) {
1293 spin_unlock_irqrestore(&port->lock, flags);
Nobuhiro Iwamatsu55956212011-08-29 15:43:36 +09001294 return;
Alan Cox61cd8a22010-06-01 22:52:57 +02001295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 /*
1298 * Now we wait for the transmit buffer to clear; and we notify
1299 * the line discipline to only process XON/XOFF characters by
1300 * setting tty->closing.
1301 */
Jiri Slaby426929f2011-08-25 15:12:04 +02001302 set_bit(ASYNCB_CLOSING, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 tty->closing = 1;
Alan Cox61cd8a22010-06-01 22:52:57 +02001304 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Jiri Slaby1f33a512011-07-14 14:35:10 +02001306 if (port->closing_wait != ASYNC_CLOSING_WAIT_NONE)
Jiri Slaby0b058352011-08-25 15:12:08 +02001307 tty_wait_until_sent_from_close(tty,
1308 msecs_to_jiffies(port->closing_wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 /*
1311 * At this point, we stop accepting input. To do this, we
1312 * disable the receive line status interrupts.
1313 */
Alan Coxccce6de2009-09-19 13:13:30 -07001314 if (port->flags & ASYNC_INITIALIZED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 unsigned long flags;
Linus Torvaldseea7e172009-10-12 19:13:54 +02001316 spin_lock_irqsave(&uport->lock, flags);
Alan Cox46d57a42009-09-19 13:13:29 -07001317 uport->ops->stop_rx(uport);
Linus Torvaldseea7e172009-10-12 19:13:54 +02001318 spin_unlock_irqrestore(&uport->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 /*
1320 * Before we drop DTR, make sure the UART transmitter
1321 * has completely drained; this is especially
1322 * important if there is a transmit FIFO!
1323 */
Jiri Slaby1f33a512011-07-14 14:35:10 +02001324 uart_wait_until_sent(tty, uport->timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 }
1326
Jiri Slabybafb0bd2011-08-25 15:12:05 +02001327 mutex_lock(&port->mutex);
Alan Cox19225132010-06-01 22:52:51 +02001328 uart_shutdown(tty, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 uart_flush_buffer(tty);
1330
Alan Coxa46c9992008-02-08 04:18:53 -08001331 tty_ldisc_flush(tty);
1332
Alan Cox7b014782009-09-19 13:13:33 -07001333 tty_port_tty_set(port, NULL);
Alan Cox61cd8a22010-06-01 22:52:57 +02001334 spin_lock_irqsave(&port->lock, flags);
1335 tty->closing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Alan Cox46d57a42009-09-19 13:13:29 -07001337 if (port->blocked_open) {
Alan Cox61cd8a22010-06-01 22:52:57 +02001338 spin_unlock_irqrestore(&port->lock, flags);
Alan Cox46d57a42009-09-19 13:13:29 -07001339 if (port->close_delay)
1340 msleep_interruptible(port->close_delay);
Alan Cox61cd8a22010-06-01 22:52:57 +02001341 spin_lock_irqsave(&port->lock, flags);
Alan Cox46d57a42009-09-19 13:13:29 -07001342 } else if (!uart_console(uport)) {
Alan Cox61cd8a22010-06-01 22:52:57 +02001343 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 uart_change_pm(state, 3);
Alan Cox61cd8a22010-06-01 22:52:57 +02001345 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 }
1347
1348 /*
1349 * Wake up anyone trying to open this port.
1350 */
Alan Coxccce6de2009-09-19 13:13:30 -07001351 clear_bit(ASYNCB_NORMAL_ACTIVE, &port->flags);
Jiri Slaby426929f2011-08-25 15:12:04 +02001352 clear_bit(ASYNCB_CLOSING, &port->flags);
Alan Cox61cd8a22010-06-01 22:52:57 +02001353 spin_unlock_irqrestore(&port->lock, flags);
Alan Cox46d57a42009-09-19 13:13:29 -07001354 wake_up_interruptible(&port->open_wait);
Jiri Slaby426929f2011-08-25 15:12:04 +02001355 wake_up_interruptible(&port->close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Alan Coxa2bceae2009-09-19 13:13:31 -07001357 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358}
1359
Jiri Slaby1f33a512011-07-14 14:35:10 +02001360static void uart_wait_until_sent(struct tty_struct *tty, int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
Jiri Slaby1f33a512011-07-14 14:35:10 +02001362 struct uart_state *state = tty->driver_data;
1363 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 unsigned long char_time, expire;
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 if (port->type == PORT_UNKNOWN || port->fifosize == 0)
1367 return;
1368
1369 /*
1370 * Set the check interval to be 1/5 of the estimated time to
1371 * send a single character, and make it at least 1. The check
1372 * interval should also be less than the timeout.
1373 *
1374 * Note: we have to use pretty tight timings here to satisfy
1375 * the NIST-PCTS.
1376 */
1377 char_time = (port->timeout - HZ/50) / port->fifosize;
1378 char_time = char_time / 5;
1379 if (char_time == 0)
1380 char_time = 1;
1381 if (timeout && timeout < char_time)
1382 char_time = timeout;
1383
1384 /*
1385 * If the transmitter hasn't cleared in twice the approximate
1386 * amount of time to send the entire FIFO, it probably won't
1387 * ever clear. This assumes the UART isn't doing flow
1388 * control, which is currently the case. Hence, if it ever
1389 * takes longer than port->timeout, this is probably due to a
1390 * UART bug of some kind. So, we clamp the timeout parameter at
1391 * 2*port->timeout.
1392 */
1393 if (timeout == 0 || timeout > 2 * port->timeout)
1394 timeout = 2 * port->timeout;
1395
1396 expire = jiffies + timeout;
1397
Jiri Slabyeb3a1e12007-05-06 14:48:52 -07001398 pr_debug("uart_wait_until_sent(%d), jiffies=%lu, expire=%lu...\n",
Alan Coxa46c9992008-02-08 04:18:53 -08001399 port->line, jiffies, expire);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 /*
1402 * Check whether the transmitter is empty every 'char_time'.
1403 * 'timeout' / 'expire' give us the maximum amount of time
1404 * we wait.
1405 */
1406 while (!port->ops->tx_empty(port)) {
1407 msleep_interruptible(jiffies_to_msecs(char_time));
1408 if (signal_pending(current))
1409 break;
1410 if (time_after(jiffies, expire))
1411 break;
1412 }
Arnd Bergmann20365212010-06-01 22:53:07 +02001413}
1414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415/*
1416 * This is called with the BKL held in
1417 * linux/drivers/char/tty_io.c:do_tty_hangup()
1418 * We're called from the eventd thread, so we can sleep for
1419 * a _short_ time only.
1420 */
1421static void uart_hangup(struct tty_struct *tty)
1422{
1423 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -07001424 struct tty_port *port = &state->port;
Alan Cox61cd8a22010-06-01 22:52:57 +02001425 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Alan Coxebd2c8f2009-09-19 13:13:28 -07001427 pr_debug("uart_hangup(%d)\n", state->uart_port->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Alan Coxa2bceae2009-09-19 13:13:31 -07001429 mutex_lock(&port->mutex);
Alan Coxccce6de2009-09-19 13:13:30 -07001430 if (port->flags & ASYNC_NORMAL_ACTIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 uart_flush_buffer(tty);
Alan Cox19225132010-06-01 22:52:51 +02001432 uart_shutdown(tty, state);
Alan Cox61cd8a22010-06-01 22:52:57 +02001433 spin_lock_irqsave(&port->lock, flags);
Alan Cox91312cd2009-09-19 13:13:29 -07001434 port->count = 0;
Alan Coxccce6de2009-09-19 13:13:30 -07001435 clear_bit(ASYNCB_NORMAL_ACTIVE, &port->flags);
Alan Cox61cd8a22010-06-01 22:52:57 +02001436 spin_unlock_irqrestore(&port->lock, flags);
Alan Cox7b014782009-09-19 13:13:33 -07001437 tty_port_tty_set(port, NULL);
Alan Cox46d57a42009-09-19 13:13:29 -07001438 wake_up_interruptible(&port->open_wait);
Alan Coxbdc04e32009-09-19 13:13:31 -07001439 wake_up_interruptible(&port->delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 }
Alan Coxa2bceae2009-09-19 13:13:31 -07001441 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442}
1443
Alan Coxde0c8cb2010-06-01 22:52:58 +02001444static int uart_carrier_raised(struct tty_port *port)
1445{
1446 struct uart_state *state = container_of(port, struct uart_state, port);
1447 struct uart_port *uport = state->uart_port;
1448 int mctrl;
Alan Coxde0c8cb2010-06-01 22:52:58 +02001449 spin_lock_irq(&uport->lock);
1450 uport->ops->enable_ms(uport);
1451 mctrl = uport->ops->get_mctrl(uport);
1452 spin_unlock_irq(&uport->lock);
Alan Coxde0c8cb2010-06-01 22:52:58 +02001453 if (mctrl & TIOCM_CAR)
1454 return 1;
1455 return 0;
1456}
1457
1458static void uart_dtr_rts(struct tty_port *port, int onoff)
1459{
1460 struct uart_state *state = container_of(port, struct uart_state, port);
1461 struct uart_port *uport = state->uart_port;
Alan Cox24fcc7c2010-06-01 22:52:59 +02001462
Jiri Slaby6f5c24a2011-03-30 00:10:57 +02001463 if (onoff)
Alan Coxde0c8cb2010-06-01 22:52:58 +02001464 uart_set_mctrl(uport, TIOCM_DTR | TIOCM_RTS);
1465 else
1466 uart_clear_mctrl(uport, TIOCM_DTR | TIOCM_RTS);
Alan Coxde0c8cb2010-06-01 22:52:58 +02001467}
1468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469static struct uart_state *uart_get(struct uart_driver *drv, int line)
1470{
1471 struct uart_state *state;
Alan Coxa2bceae2009-09-19 13:13:31 -07001472 struct tty_port *port;
Russell King68ac64c2006-04-30 11:13:50 +01001473 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 state = drv->state + line;
Alan Coxa2bceae2009-09-19 13:13:31 -07001476 port = &state->port;
1477 if (mutex_lock_interruptible(&port->mutex)) {
Russell King68ac64c2006-04-30 11:13:50 +01001478 ret = -ERESTARTSYS;
1479 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 }
1481
Alan Coxa2bceae2009-09-19 13:13:31 -07001482 port->count++;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001483 if (!state->uart_port || state->uart_port->flags & UPF_DEAD) {
Russell King68ac64c2006-04-30 11:13:50 +01001484 ret = -ENXIO;
1485 goto err_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 return state;
Russell King68ac64c2006-04-30 11:13:50 +01001488
1489 err_unlock:
Alan Coxa2bceae2009-09-19 13:13:31 -07001490 port->count--;
1491 mutex_unlock(&port->mutex);
Russell King68ac64c2006-04-30 11:13:50 +01001492 err:
1493 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
1496/*
Denis Cheng922f9cf2008-02-08 04:22:00 -08001497 * calls to uart_open are serialised by the BKL in
1498 * fs/char_dev.c:chrdev_open()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 * Note that if this fails, then uart_close() _will_ be called.
1500 *
1501 * In time, we want to scrap the "opening nonpresent ports"
1502 * behaviour and implement an alternative way for setserial
1503 * to set base addresses/ports/types. This will allow us to
1504 * get rid of a certain amount of extra tests.
1505 */
1506static int uart_open(struct tty_struct *tty, struct file *filp)
1507{
1508 struct uart_driver *drv = (struct uart_driver *)tty->driver->driver_state;
1509 struct uart_state *state;
Alan Cox91312cd2009-09-19 13:13:29 -07001510 struct tty_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 int retval, line = tty->index;
1512
Jiri Slabyeb3a1e12007-05-06 14:48:52 -07001513 pr_debug("uart_open(%d) called\n", line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 * We take the semaphore inside uart_get to guarantee that we won't
Alan Coxebd2c8f2009-09-19 13:13:28 -07001517 * be re-entered while allocating the state structure, or while we
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 * request any IRQs that the driver may need. This also has the nice
1519 * side-effect that it delays the action of uart_hangup, so we can
Alan Coxebd2c8f2009-09-19 13:13:28 -07001520 * guarantee that state->port.tty will always contain something
1521 * reasonable.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 */
1523 state = uart_get(drv, line);
1524 if (IS_ERR(state)) {
1525 retval = PTR_ERR(state);
1526 goto fail;
1527 }
Alan Cox91312cd2009-09-19 13:13:29 -07001528 port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
1530 /*
1531 * Once we set tty->driver_data here, we are guaranteed that
1532 * uart_close() will decrement the driver module use count.
1533 * Any failures from here onwards should not touch the count.
1534 */
1535 tty->driver_data = state;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001536 state->uart_port->state = state;
1537 tty->low_latency = (state->uart_port->flags & UPF_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 tty->alt_speed = 0;
Alan Cox7b014782009-09-19 13:13:33 -07001539 tty_port_tty_set(port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
1541 /*
1542 * If the port is in the middle of closing, bail out now.
1543 */
1544 if (tty_hung_up_p(filp)) {
1545 retval = -EAGAIN;
Alan Cox91312cd2009-09-19 13:13:29 -07001546 port->count--;
Alan Coxa2bceae2009-09-19 13:13:31 -07001547 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 goto fail;
1549 }
1550
1551 /*
1552 * Make sure the device is in D0 state.
1553 */
Alan Cox91312cd2009-09-19 13:13:29 -07001554 if (port->count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 uart_change_pm(state, 0);
1556
1557 /*
1558 * Start up the serial port.
1559 */
Alan Cox19225132010-06-01 22:52:51 +02001560 retval = uart_startup(tty, state, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
1562 /*
1563 * If we succeeded, wait until the port is ready.
1564 */
Alan Cox61cd8a22010-06-01 22:52:57 +02001565 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 if (retval == 0)
Alan Cox74c21072010-06-01 22:53:00 +02001567 retval = tty_port_block_til_ready(port, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Alan Coxa2bceae2009-09-19 13:13:31 -07001569fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 return retval;
1571}
1572
1573static const char *uart_type(struct uart_port *port)
1574{
1575 const char *str = NULL;
1576
1577 if (port->ops->type)
1578 str = port->ops->type(port);
1579
1580 if (!str)
1581 str = "unknown";
1582
1583 return str;
1584}
1585
1586#ifdef CONFIG_PROC_FS
1587
Alexey Dobriyand196a942009-03-31 15:19:21 -07001588static void uart_line_info(struct seq_file *m, struct uart_driver *drv, int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589{
1590 struct uart_state *state = drv->state + i;
Alan Coxa2bceae2009-09-19 13:13:31 -07001591 struct tty_port *port = &state->port;
George G. Davis3689a0e2007-02-14 00:33:06 -08001592 int pm_state;
Alan Coxa2bceae2009-09-19 13:13:31 -07001593 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 char stat_buf[32];
1595 unsigned int status;
Alexey Dobriyand196a942009-03-31 15:19:21 -07001596 int mmio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Alan Coxa2bceae2009-09-19 13:13:31 -07001598 if (!uport)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001599 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Alan Coxa2bceae2009-09-19 13:13:31 -07001601 mmio = uport->iotype >= UPIO_MEM;
Alexey Dobriyand196a942009-03-31 15:19:21 -07001602 seq_printf(m, "%d: uart:%s %s%08llX irq:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001603 uport->line, uart_type(uport),
Sergei Shtylyov6c6a2332006-09-04 00:04:20 +04001604 mmio ? "mmio:0x" : "port:",
Alan Coxa2bceae2009-09-19 13:13:31 -07001605 mmio ? (unsigned long long)uport->mapbase
1606 : (unsigned long long)uport->iobase,
1607 uport->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Alan Coxa2bceae2009-09-19 13:13:31 -07001609 if (uport->type == PORT_UNKNOWN) {
Alexey Dobriyand196a942009-03-31 15:19:21 -07001610 seq_putc(m, '\n');
1611 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 }
1613
Alan Coxa46c9992008-02-08 04:18:53 -08001614 if (capable(CAP_SYS_ADMIN)) {
Alan Coxa2bceae2009-09-19 13:13:31 -07001615 mutex_lock(&port->mutex);
George G. Davis3689a0e2007-02-14 00:33:06 -08001616 pm_state = state->pm_state;
1617 if (pm_state)
1618 uart_change_pm(state, 0);
Alan Coxa2bceae2009-09-19 13:13:31 -07001619 spin_lock_irq(&uport->lock);
1620 status = uport->ops->get_mctrl(uport);
1621 spin_unlock_irq(&uport->lock);
George G. Davis3689a0e2007-02-14 00:33:06 -08001622 if (pm_state)
1623 uart_change_pm(state, pm_state);
Alan Coxa2bceae2009-09-19 13:13:31 -07001624 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Alexey Dobriyand196a942009-03-31 15:19:21 -07001626 seq_printf(m, " tx:%d rx:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001627 uport->icount.tx, uport->icount.rx);
1628 if (uport->icount.frame)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001629 seq_printf(m, " fe:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001630 uport->icount.frame);
1631 if (uport->icount.parity)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001632 seq_printf(m, " pe:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001633 uport->icount.parity);
1634 if (uport->icount.brk)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001635 seq_printf(m, " brk:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001636 uport->icount.brk);
1637 if (uport->icount.overrun)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001638 seq_printf(m, " oe:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001639 uport->icount.overrun);
Alan Coxa46c9992008-02-08 04:18:53 -08001640
1641#define INFOBIT(bit, str) \
Alan Coxa2bceae2009-09-19 13:13:31 -07001642 if (uport->mctrl & (bit)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 strncat(stat_buf, (str), sizeof(stat_buf) - \
1644 strlen(stat_buf) - 2)
Alan Coxa46c9992008-02-08 04:18:53 -08001645#define STATBIT(bit, str) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 if (status & (bit)) \
1647 strncat(stat_buf, (str), sizeof(stat_buf) - \
1648 strlen(stat_buf) - 2)
1649
1650 stat_buf[0] = '\0';
1651 stat_buf[1] = '\0';
1652 INFOBIT(TIOCM_RTS, "|RTS");
1653 STATBIT(TIOCM_CTS, "|CTS");
1654 INFOBIT(TIOCM_DTR, "|DTR");
1655 STATBIT(TIOCM_DSR, "|DSR");
1656 STATBIT(TIOCM_CAR, "|CD");
1657 STATBIT(TIOCM_RNG, "|RI");
1658 if (stat_buf[0])
1659 stat_buf[0] = ' ';
Alan Coxa46c9992008-02-08 04:18:53 -08001660
Alexey Dobriyand196a942009-03-31 15:19:21 -07001661 seq_puts(m, stat_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 }
Alexey Dobriyand196a942009-03-31 15:19:21 -07001663 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664#undef STATBIT
1665#undef INFOBIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666}
1667
Alexey Dobriyand196a942009-03-31 15:19:21 -07001668static int uart_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669{
Alexey Dobriyan833bb302009-04-02 01:30:04 +04001670 struct tty_driver *ttydrv = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 struct uart_driver *drv = ttydrv->driver_state;
Alexey Dobriyand196a942009-03-31 15:19:21 -07001672 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Alexey Dobriyand196a942009-03-31 15:19:21 -07001674 seq_printf(m, "serinfo:1.0 driver%s%s revision:%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 "", "", "");
Alexey Dobriyand196a942009-03-31 15:19:21 -07001676 for (i = 0; i < drv->nr; i++)
1677 uart_line_info(m, drv, i);
1678 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679}
Alexey Dobriyand196a942009-03-31 15:19:21 -07001680
1681static int uart_proc_open(struct inode *inode, struct file *file)
1682{
1683 return single_open(file, uart_proc_show, PDE(inode)->data);
1684}
1685
1686static const struct file_operations uart_proc_fops = {
1687 .owner = THIS_MODULE,
1688 .open = uart_proc_open,
1689 .read = seq_read,
1690 .llseek = seq_lseek,
1691 .release = single_release,
1692};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693#endif
1694
Andrew Morton4a1b5502008-03-07 15:51:16 -08001695#if defined(CONFIG_SERIAL_CORE_CONSOLE) || defined(CONFIG_CONSOLE_POLL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696/*
Russell Kingd3587882006-03-20 20:00:09 +00001697 * uart_console_write - write a console message to a serial port
1698 * @port: the port to write the message
1699 * @s: array of characters
1700 * @count: number of characters in string to write
1701 * @write: function to write character to port
1702 */
1703void uart_console_write(struct uart_port *port, const char *s,
1704 unsigned int count,
1705 void (*putchar)(struct uart_port *, int))
1706{
1707 unsigned int i;
1708
1709 for (i = 0; i < count; i++, s++) {
1710 if (*s == '\n')
1711 putchar(port, '\r');
1712 putchar(port, *s);
1713 }
1714}
1715EXPORT_SYMBOL_GPL(uart_console_write);
1716
1717/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 * Check whether an invalid uart number has been specified, and
1719 * if so, search for the first available port that does have
1720 * console support.
1721 */
1722struct uart_port * __init
1723uart_get_console(struct uart_port *ports, int nr, struct console *co)
1724{
1725 int idx = co->index;
1726
1727 if (idx < 0 || idx >= nr || (ports[idx].iobase == 0 &&
1728 ports[idx].membase == NULL))
1729 for (idx = 0; idx < nr; idx++)
1730 if (ports[idx].iobase != 0 ||
1731 ports[idx].membase != NULL)
1732 break;
1733
1734 co->index = idx;
1735
1736 return ports + idx;
1737}
1738
1739/**
1740 * uart_parse_options - Parse serial port baud/parity/bits/flow contro.
1741 * @options: pointer to option string
1742 * @baud: pointer to an 'int' variable for the baud rate.
1743 * @parity: pointer to an 'int' variable for the parity.
1744 * @bits: pointer to an 'int' variable for the number of data bits.
1745 * @flow: pointer to an 'int' variable for the flow control character.
1746 *
1747 * uart_parse_options decodes a string containing the serial console
1748 * options. The format of the string is <baud><parity><bits><flow>,
1749 * eg: 115200n8r
1750 */
Jason Wesself2d937f2008-04-17 20:05:37 +02001751void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752uart_parse_options(char *options, int *baud, int *parity, int *bits, int *flow)
1753{
1754 char *s = options;
1755
1756 *baud = simple_strtoul(s, NULL, 10);
1757 while (*s >= '0' && *s <= '9')
1758 s++;
1759 if (*s)
1760 *parity = *s++;
1761 if (*s)
1762 *bits = *s++ - '0';
1763 if (*s)
1764 *flow = *s;
1765}
Jason Wesself2d937f2008-04-17 20:05:37 +02001766EXPORT_SYMBOL_GPL(uart_parse_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
1768struct baud_rates {
1769 unsigned int rate;
1770 unsigned int cflag;
1771};
1772
Arjan van de Vencb3592b2005-11-28 21:04:11 +00001773static const struct baud_rates baud_rates[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 { 921600, B921600 },
1775 { 460800, B460800 },
1776 { 230400, B230400 },
1777 { 115200, B115200 },
1778 { 57600, B57600 },
1779 { 38400, B38400 },
1780 { 19200, B19200 },
1781 { 9600, B9600 },
1782 { 4800, B4800 },
1783 { 2400, B2400 },
1784 { 1200, B1200 },
1785 { 0, B38400 }
1786};
1787
1788/**
1789 * uart_set_options - setup the serial console parameters
1790 * @port: pointer to the serial ports uart_port structure
1791 * @co: console pointer
1792 * @baud: baud rate
1793 * @parity: parity character - 'n' (none), 'o' (odd), 'e' (even)
1794 * @bits: number of data bits
1795 * @flow: flow control character - 'r' (rts)
1796 */
Jason Wesself2d937f2008-04-17 20:05:37 +02001797int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798uart_set_options(struct uart_port *port, struct console *co,
1799 int baud, int parity, int bits, int flow)
1800{
Alan Cox606d0992006-12-08 02:38:45 -08001801 struct ktermios termios;
Alan Cox149b36e2007-10-18 01:24:16 -07001802 static struct ktermios dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 int i;
1804
Russell King976ecd12005-07-03 21:05:45 +01001805 /*
1806 * Ensure that the serial console lock is initialised
1807 * early.
1808 */
1809 spin_lock_init(&port->lock);
Ingo Molnar13e83592006-07-03 00:25:03 -07001810 lockdep_set_class(&port->lock, &port_lock_key);
Russell King976ecd12005-07-03 21:05:45 +01001811
Alan Cox606d0992006-12-08 02:38:45 -08001812 memset(&termios, 0, sizeof(struct ktermios));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
1814 termios.c_cflag = CREAD | HUPCL | CLOCAL;
1815
1816 /*
1817 * Construct a cflag setting.
1818 */
1819 for (i = 0; baud_rates[i].rate; i++)
1820 if (baud_rates[i].rate <= baud)
1821 break;
1822
1823 termios.c_cflag |= baud_rates[i].cflag;
1824
1825 if (bits == 7)
1826 termios.c_cflag |= CS7;
1827 else
1828 termios.c_cflag |= CS8;
1829
1830 switch (parity) {
1831 case 'o': case 'O':
1832 termios.c_cflag |= PARODD;
1833 /*fall through*/
1834 case 'e': case 'E':
1835 termios.c_cflag |= PARENB;
1836 break;
1837 }
1838
1839 if (flow == 'r')
1840 termios.c_cflag |= CRTSCTS;
1841
Yinghai Lu79492682007-07-15 23:37:25 -07001842 /*
1843 * some uarts on other side don't support no flow control.
1844 * So we set * DTR in host uart to make them happy
1845 */
1846 port->mctrl |= TIOCM_DTR;
1847
Alan Cox149b36e2007-10-18 01:24:16 -07001848 port->ops->set_termios(port, &termios, &dummy);
Jason Wesself2d937f2008-04-17 20:05:37 +02001849 /*
1850 * Allow the setting of the UART parameters with a NULL console
1851 * too:
1852 */
1853 if (co)
1854 co->cflag = termios.c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856 return 0;
1857}
Jason Wesself2d937f2008-04-17 20:05:37 +02001858EXPORT_SYMBOL_GPL(uart_set_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859#endif /* CONFIG_SERIAL_CORE_CONSOLE */
1860
1861static void uart_change_pm(struct uart_state *state, int pm_state)
1862{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001863 struct uart_port *port = state->uart_port;
Andrew Victor1281e362006-05-16 11:28:49 +01001864
1865 if (state->pm_state != pm_state) {
1866 if (port->ops->pm)
1867 port->ops->pm(port, pm_state, state->pm_state);
1868 state->pm_state = pm_state;
1869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870}
1871
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001872struct uart_match {
1873 struct uart_port *port;
1874 struct uart_driver *driver;
1875};
1876
1877static int serial_match_port(struct device *dev, void *data)
1878{
1879 struct uart_match *match = data;
Guennadi Liakhovetski7ca796f2008-07-04 09:59:28 -07001880 struct tty_driver *tty_drv = match->driver->tty_driver;
1881 dev_t devt = MKDEV(tty_drv->major, tty_drv->minor_start) +
1882 match->port->line;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001883
1884 return dev->devt == devt; /* Actually, only one tty per port */
1885}
1886
Alan Coxccce6de2009-09-19 13:13:30 -07001887int uart_suspend_port(struct uart_driver *drv, struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888{
Alan Coxccce6de2009-09-19 13:13:30 -07001889 struct uart_state *state = drv->state + uport->line;
1890 struct tty_port *port = &state->port;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001891 struct device *tty_dev;
Alan Coxccce6de2009-09-19 13:13:30 -07001892 struct uart_match match = {uport, drv};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Alan Coxa2bceae2009-09-19 13:13:31 -07001894 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Alan Coxccce6de2009-09-19 13:13:30 -07001896 tty_dev = device_find_child(uport->dev, &match, serial_match_port);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001897 if (device_may_wakeup(tty_dev)) {
Govindraj.R3f960db2010-12-16 18:12:47 +05301898 if (!enable_irq_wake(uport->irq))
1899 uport->irq_wake = 1;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001900 put_device(tty_dev);
Alan Coxa2bceae2009-09-19 13:13:31 -07001901 mutex_unlock(&port->mutex);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001902 return 0;
1903 }
Stanislav Brabec4547be72009-12-02 16:20:56 +01001904 if (console_suspend_enabled || !uart_console(uport))
1905 uport->suspended = 1;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001906
Alan Coxccce6de2009-09-19 13:13:30 -07001907 if (port->flags & ASYNC_INITIALIZED) {
1908 const struct uart_ops *ops = uport->ops;
Russell Kingc8c6bfa2008-02-04 22:27:52 -08001909 int tries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Stanislav Brabec4547be72009-12-02 16:20:56 +01001911 if (console_suspend_enabled || !uart_console(uport)) {
1912 set_bit(ASYNCB_SUSPENDED, &port->flags);
1913 clear_bit(ASYNCB_INITIALIZED, &port->flags);
Russell Kinga6b93a92006-10-01 17:17:40 +01001914
Stanislav Brabec4547be72009-12-02 16:20:56 +01001915 spin_lock_irq(&uport->lock);
1916 ops->stop_tx(uport);
1917 ops->set_mctrl(uport, 0);
1918 ops->stop_rx(uport);
1919 spin_unlock_irq(&uport->lock);
1920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
1922 /*
1923 * Wait for the transmitter to empty.
1924 */
Alan Coxccce6de2009-09-19 13:13:30 -07001925 for (tries = 3; !ops->tx_empty(uport) && tries; tries--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 msleep(10);
Russell Kingc8c6bfa2008-02-04 22:27:52 -08001927 if (!tries)
Alan Coxa46c9992008-02-08 04:18:53 -08001928 printk(KERN_ERR "%s%s%s%d: Unable to drain "
1929 "transmitter\n",
Alan Coxccce6de2009-09-19 13:13:30 -07001930 uport->dev ? dev_name(uport->dev) : "",
1931 uport->dev ? ": " : "",
David S. Miller84408382008-10-13 10:45:26 +01001932 drv->dev_name,
Alan Coxccce6de2009-09-19 13:13:30 -07001933 drv->tty_driver->name_base + uport->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Stanislav Brabec4547be72009-12-02 16:20:56 +01001935 if (console_suspend_enabled || !uart_console(uport))
1936 ops->shutdown(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
1938
1939 /*
1940 * Disable the console device before suspending.
1941 */
Stanislav Brabec4547be72009-12-02 16:20:56 +01001942 if (console_suspend_enabled && uart_console(uport))
Alan Coxccce6de2009-09-19 13:13:30 -07001943 console_stop(uport->cons);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Stanislav Brabec4547be72009-12-02 16:20:56 +01001945 if (console_suspend_enabled || !uart_console(uport))
1946 uart_change_pm(state, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Alan Coxa2bceae2009-09-19 13:13:31 -07001948 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950 return 0;
1951}
1952
Alan Coxccce6de2009-09-19 13:13:30 -07001953int uart_resume_port(struct uart_driver *drv, struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954{
Alan Coxccce6de2009-09-19 13:13:30 -07001955 struct uart_state *state = drv->state + uport->line;
1956 struct tty_port *port = &state->port;
Arjan van de Ven03a74dc2008-05-23 13:04:49 -07001957 struct device *tty_dev;
Alan Coxccce6de2009-09-19 13:13:30 -07001958 struct uart_match match = {uport, drv};
Deepak Saxenaba15ab02009-09-19 13:13:33 -07001959 struct ktermios termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Alan Coxa2bceae2009-09-19 13:13:31 -07001961 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
Alan Coxccce6de2009-09-19 13:13:30 -07001963 tty_dev = device_find_child(uport->dev, &match, serial_match_port);
1964 if (!uport->suspended && device_may_wakeup(tty_dev)) {
Govindraj.R3f960db2010-12-16 18:12:47 +05301965 if (uport->irq_wake) {
1966 disable_irq_wake(uport->irq);
1967 uport->irq_wake = 0;
1968 }
Alan Coxa2bceae2009-09-19 13:13:31 -07001969 mutex_unlock(&port->mutex);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001970 return 0;
1971 }
Alan Coxccce6de2009-09-19 13:13:30 -07001972 uport->suspended = 0;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 /*
1975 * Re-enable the console device after suspending.
1976 */
Yin Kangkai5933a162011-01-30 11:15:30 +08001977 if (uart_console(uport)) {
Jason Wang891b9dd2010-08-21 15:14:42 +08001978 /*
1979 * First try to use the console cflag setting.
1980 */
1981 memset(&termios, 0, sizeof(struct ktermios));
1982 termios.c_cflag = uport->cons->cflag;
1983
1984 /*
1985 * If that's unset, use the tty termios setting.
1986 */
1987 if (port->tty && port->tty->termios && termios.c_cflag == 0)
1988 termios = *(port->tty->termios);
1989
Ning Jiang94abc562011-09-05 16:28:18 +08001990 if (console_suspend_enabled)
1991 uart_change_pm(state, 0);
Alan Coxccce6de2009-09-19 13:13:30 -07001992 uport->ops->set_termios(uport, &termios, NULL);
Yin Kangkai5933a162011-01-30 11:15:30 +08001993 if (console_suspend_enabled)
1994 console_start(uport->cons);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 }
1996
Alan Coxccce6de2009-09-19 13:13:30 -07001997 if (port->flags & ASYNC_SUSPENDED) {
1998 const struct uart_ops *ops = uport->ops;
Russell Kingee31b332005-11-13 15:28:51 +00001999 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Russell King9d778a62008-02-04 22:27:51 -08002001 uart_change_pm(state, 0);
Alan Coxccce6de2009-09-19 13:13:30 -07002002 spin_lock_irq(&uport->lock);
2003 ops->set_mctrl(uport, 0);
2004 spin_unlock_irq(&uport->lock);
Stanislav Brabec4547be72009-12-02 16:20:56 +01002005 if (console_suspend_enabled || !uart_console(uport)) {
Alan Cox19225132010-06-01 22:52:51 +02002006 /* Protected by port mutex for now */
2007 struct tty_struct *tty = port->tty;
Stanislav Brabec4547be72009-12-02 16:20:56 +01002008 ret = ops->startup(uport);
2009 if (ret == 0) {
Alan Cox19225132010-06-01 22:52:51 +02002010 if (tty)
2011 uart_change_speed(tty, state, NULL);
Stanislav Brabec4547be72009-12-02 16:20:56 +01002012 spin_lock_irq(&uport->lock);
2013 ops->set_mctrl(uport, uport->mctrl);
2014 ops->start_tx(uport);
2015 spin_unlock_irq(&uport->lock);
2016 set_bit(ASYNCB_INITIALIZED, &port->flags);
2017 } else {
2018 /*
2019 * Failed to resume - maybe hardware went away?
2020 * Clear the "initialized" flag so we won't try
2021 * to call the low level drivers shutdown method.
2022 */
Alan Cox19225132010-06-01 22:52:51 +02002023 uart_shutdown(tty, state);
Stanislav Brabec4547be72009-12-02 16:20:56 +01002024 }
Russell Kingee31b332005-11-13 15:28:51 +00002025 }
Russell Kinga6b93a92006-10-01 17:17:40 +01002026
Alan Coxccce6de2009-09-19 13:13:30 -07002027 clear_bit(ASYNCB_SUSPENDED, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 }
2029
Alan Coxa2bceae2009-09-19 13:13:31 -07002030 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
2032 return 0;
2033}
2034
2035static inline void
2036uart_report_port(struct uart_driver *drv, struct uart_port *port)
2037{
Russell King30b7a3b2005-09-03 15:30:21 +01002038 char address[64];
2039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 switch (port->iotype) {
2041 case UPIO_PORT:
Andrew Morton9bde10a2008-10-13 10:35:42 +01002042 snprintf(address, sizeof(address), "I/O 0x%lx", port->iobase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 break;
2044 case UPIO_HUB6:
Russell King30b7a3b2005-09-03 15:30:21 +01002045 snprintf(address, sizeof(address),
Andrew Morton9bde10a2008-10-13 10:35:42 +01002046 "I/O 0x%lx offset 0x%x", port->iobase, port->hub6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 break;
2048 case UPIO_MEM:
2049 case UPIO_MEM32:
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002050 case UPIO_AU:
Zang Roy-r619113be91ec2006-06-30 02:29:58 -07002051 case UPIO_TSI:
Russell King30b7a3b2005-09-03 15:30:21 +01002052 snprintf(address, sizeof(address),
Josh Boyer4f640ef2007-07-23 18:43:44 -07002053 "MMIO 0x%llx", (unsigned long long)port->mapbase);
Russell King30b7a3b2005-09-03 15:30:21 +01002054 break;
2055 default:
2056 strlcpy(address, "*unknown*", sizeof(address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 break;
2058 }
Russell King30b7a3b2005-09-03 15:30:21 +01002059
Russell King0cf669d2005-10-31 11:42:22 +00002060 printk(KERN_INFO "%s%s%s%d at %s (irq = %d) is a %s\n",
Kay Sievers4bfe0902009-01-06 10:44:37 -08002061 port->dev ? dev_name(port->dev) : "",
Russell King0cf669d2005-10-31 11:42:22 +00002062 port->dev ? ": " : "",
David S. Miller84408382008-10-13 10:45:26 +01002063 drv->dev_name,
2064 drv->tty_driver->name_base + port->line,
2065 address, port->irq, uart_type(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066}
2067
2068static void
2069uart_configure_port(struct uart_driver *drv, struct uart_state *state,
2070 struct uart_port *port)
2071{
2072 unsigned int flags;
2073
2074 /*
2075 * If there isn't a port here, don't do anything further.
2076 */
2077 if (!port->iobase && !port->mapbase && !port->membase)
2078 return;
2079
2080 /*
2081 * Now do the auto configuration stuff. Note that config_port
2082 * is expected to claim the resources and map the port for us.
2083 */
David Daney8e23fcc2009-01-02 13:49:54 +00002084 flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 if (port->flags & UPF_AUTO_IRQ)
2086 flags |= UART_CONFIG_IRQ;
2087 if (port->flags & UPF_BOOT_AUTOCONF) {
David Daney8e23fcc2009-01-02 13:49:54 +00002088 if (!(port->flags & UPF_FIXED_TYPE)) {
2089 port->type = PORT_UNKNOWN;
2090 flags |= UART_CONFIG_TYPE;
2091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 port->ops->config_port(port, flags);
2093 }
2094
2095 if (port->type != PORT_UNKNOWN) {
2096 unsigned long flags;
2097
2098 uart_report_port(drv, port);
2099
George G. Davis3689a0e2007-02-14 00:33:06 -08002100 /* Power up port for set_mctrl() */
2101 uart_change_pm(state, 0);
2102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 /*
2104 * Ensure that the modem control lines are de-activated.
Yinghai Luc3e46422008-02-04 22:27:46 -08002105 * keep the DTR setting that is set in uart_set_options()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 * We probably don't need a spinlock around this, but
2107 */
2108 spin_lock_irqsave(&port->lock, flags);
Yinghai Luc3e46422008-02-04 22:27:46 -08002109 port->ops->set_mctrl(port, port->mctrl & TIOCM_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 spin_unlock_irqrestore(&port->lock, flags);
2111
2112 /*
Russell King97d97222007-09-01 21:25:09 +01002113 * If this driver supports console, and it hasn't been
2114 * successfully registered yet, try to re-register it.
2115 * It may be that the port was not available.
2116 */
2117 if (port->cons && !(port->cons->flags & CON_ENABLED))
2118 register_console(port->cons);
2119
2120 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 * Power down all ports by default, except the
2122 * console if we have one.
2123 */
2124 if (!uart_console(port))
2125 uart_change_pm(state, 3);
2126 }
2127}
2128
Jason Wesself2d937f2008-04-17 20:05:37 +02002129#ifdef CONFIG_CONSOLE_POLL
2130
2131static int uart_poll_init(struct tty_driver *driver, int line, char *options)
2132{
2133 struct uart_driver *drv = driver->driver_state;
2134 struct uart_state *state = drv->state + line;
2135 struct uart_port *port;
2136 int baud = 9600;
2137 int bits = 8;
2138 int parity = 'n';
2139 int flow = 'n';
2140
Alan Coxebd2c8f2009-09-19 13:13:28 -07002141 if (!state || !state->uart_port)
Jason Wesself2d937f2008-04-17 20:05:37 +02002142 return -1;
2143
Alan Coxebd2c8f2009-09-19 13:13:28 -07002144 port = state->uart_port;
Jason Wesself2d937f2008-04-17 20:05:37 +02002145 if (!(port->ops->poll_get_char && port->ops->poll_put_char))
2146 return -1;
2147
2148 if (options) {
2149 uart_parse_options(options, &baud, &parity, &bits, &flow);
2150 return uart_set_options(port, NULL, baud, parity, bits, flow);
2151 }
2152
2153 return 0;
2154}
2155
2156static int uart_poll_get_char(struct tty_driver *driver, int line)
2157{
2158 struct uart_driver *drv = driver->driver_state;
2159 struct uart_state *state = drv->state + line;
2160 struct uart_port *port;
2161
Alan Coxebd2c8f2009-09-19 13:13:28 -07002162 if (!state || !state->uart_port)
Jason Wesself2d937f2008-04-17 20:05:37 +02002163 return -1;
2164
Alan Coxebd2c8f2009-09-19 13:13:28 -07002165 port = state->uart_port;
Jason Wesself2d937f2008-04-17 20:05:37 +02002166 return port->ops->poll_get_char(port);
2167}
2168
2169static void uart_poll_put_char(struct tty_driver *driver, int line, char ch)
2170{
2171 struct uart_driver *drv = driver->driver_state;
2172 struct uart_state *state = drv->state + line;
2173 struct uart_port *port;
2174
Alan Coxebd2c8f2009-09-19 13:13:28 -07002175 if (!state || !state->uart_port)
Jason Wesself2d937f2008-04-17 20:05:37 +02002176 return;
2177
Alan Coxebd2c8f2009-09-19 13:13:28 -07002178 port = state->uart_port;
Jason Wesself2d937f2008-04-17 20:05:37 +02002179 port->ops->poll_put_char(port, ch);
2180}
2181#endif
2182
Jeff Dikeb68e31d2006-10-02 02:17:18 -07002183static const struct tty_operations uart_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 .open = uart_open,
2185 .close = uart_close,
2186 .write = uart_write,
2187 .put_char = uart_put_char,
2188 .flush_chars = uart_flush_chars,
2189 .write_room = uart_write_room,
2190 .chars_in_buffer= uart_chars_in_buffer,
2191 .flush_buffer = uart_flush_buffer,
2192 .ioctl = uart_ioctl,
2193 .throttle = uart_throttle,
2194 .unthrottle = uart_unthrottle,
2195 .send_xchar = uart_send_xchar,
2196 .set_termios = uart_set_termios,
Alan Cox64e91592008-06-03 15:18:54 +01002197 .set_ldisc = uart_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 .stop = uart_stop,
2199 .start = uart_start,
2200 .hangup = uart_hangup,
2201 .break_ctl = uart_break_ctl,
2202 .wait_until_sent= uart_wait_until_sent,
2203#ifdef CONFIG_PROC_FS
Alexey Dobriyand196a942009-03-31 15:19:21 -07002204 .proc_fops = &uart_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205#endif
2206 .tiocmget = uart_tiocmget,
2207 .tiocmset = uart_tiocmset,
Alan Coxd281da72010-09-16 18:21:24 +01002208 .get_icount = uart_get_icount,
Jason Wesself2d937f2008-04-17 20:05:37 +02002209#ifdef CONFIG_CONSOLE_POLL
2210 .poll_init = uart_poll_init,
2211 .poll_get_char = uart_poll_get_char,
2212 .poll_put_char = uart_poll_put_char,
2213#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214};
2215
Alan Coxde0c8cb2010-06-01 22:52:58 +02002216static const struct tty_port_operations uart_port_ops = {
2217 .carrier_raised = uart_carrier_raised,
2218 .dtr_rts = uart_dtr_rts,
2219};
2220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221/**
2222 * uart_register_driver - register a driver with the uart core layer
2223 * @drv: low level driver structure
2224 *
2225 * Register a uart driver with the core driver. We in turn register
2226 * with the tty layer, and initialise the core driver per-port state.
2227 *
2228 * We have a proc file in /proc/tty/driver which is named after the
2229 * normal driver.
2230 *
2231 * drv->port should be NULL, and the per-port structures should be
2232 * registered using uart_add_one_port after this call has succeeded.
2233 */
2234int uart_register_driver(struct uart_driver *drv)
2235{
André Goddard Rosa9e845ab2009-10-25 11:16:32 -02002236 struct tty_driver *normal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 int i, retval;
2238
2239 BUG_ON(drv->state);
2240
2241 /*
2242 * Maybe we should be using a slab cache for this, especially if
2243 * we have a large number of ports to handle.
2244 */
Burman Yan8f31bb32007-02-14 00:33:07 -08002245 drv->state = kzalloc(sizeof(struct uart_state) * drv->nr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 if (!drv->state)
2247 goto out;
2248
André Goddard Rosa9e845ab2009-10-25 11:16:32 -02002249 normal = alloc_tty_driver(drv->nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 if (!normal)
André Goddard Rosa9e845ab2009-10-25 11:16:32 -02002251 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
2253 drv->tty_driver = normal;
2254
2255 normal->owner = drv->owner;
2256 normal->driver_name = drv->driver_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 normal->name = drv->dev_name;
2258 normal->major = drv->major;
2259 normal->minor_start = drv->minor;
2260 normal->type = TTY_DRIVER_TYPE_SERIAL;
2261 normal->subtype = SERIAL_TYPE_NORMAL;
2262 normal->init_termios = tty_std_termios;
2263 normal->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
Alan Cox606d0992006-12-08 02:38:45 -08002264 normal->init_termios.c_ispeed = normal->init_termios.c_ospeed = 9600;
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -07002265 normal->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 normal->driver_state = drv;
2267 tty_set_operations(normal, &uart_ops);
2268
2269 /*
2270 * Initialise the UART state(s).
2271 */
2272 for (i = 0; i < drv->nr; i++) {
2273 struct uart_state *state = drv->state + i;
Alan Coxa2bceae2009-09-19 13:13:31 -07002274 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Alan Coxa2bceae2009-09-19 13:13:31 -07002276 tty_port_init(port);
Alan Coxde0c8cb2010-06-01 22:52:58 +02002277 port->ops = &uart_port_ops;
Alan Coxa2bceae2009-09-19 13:13:31 -07002278 port->close_delay = 500; /* .5 seconds */
2279 port->closing_wait = 30000; /* 30 seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 }
2281
2282 retval = tty_register_driver(normal);
André Goddard Rosa9e845ab2009-10-25 11:16:32 -02002283 if (retval >= 0)
2284 return retval;
2285
2286 put_tty_driver(normal);
2287out_kfree:
2288 kfree(drv->state);
2289out:
2290 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291}
2292
2293/**
2294 * uart_unregister_driver - remove a driver from the uart core layer
2295 * @drv: low level driver structure
2296 *
2297 * Remove all references to a driver from the core driver. The low
2298 * level driver must have removed all its ports via the
2299 * uart_remove_one_port() if it registered them with uart_add_one_port().
2300 * (ie, drv->port == NULL)
2301 */
2302void uart_unregister_driver(struct uart_driver *drv)
2303{
2304 struct tty_driver *p = drv->tty_driver;
2305 tty_unregister_driver(p);
2306 put_tty_driver(p);
2307 kfree(drv->state);
2308 drv->tty_driver = NULL;
2309}
2310
2311struct tty_driver *uart_console_device(struct console *co, int *index)
2312{
2313 struct uart_driver *p = co->data;
2314 *index = co->index;
2315 return p->tty_driver;
2316}
2317
2318/**
2319 * uart_add_one_port - attach a driver-defined port structure
2320 * @drv: pointer to the uart low level driver structure for this port
Randy Dunlap1b9894f2009-09-21 11:12:03 -07002321 * @uport: uart port structure to use for this port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 *
2323 * This allows the driver to register its own uart_port structure
2324 * with the core driver. The main purpose is to allow the low
2325 * level uart drivers to expand uart_port, rather than having yet
2326 * more levels of structures.
2327 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002328int uart_add_one_port(struct uart_driver *drv, struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329{
2330 struct uart_state *state;
Alan Coxa2bceae2009-09-19 13:13:31 -07002331 struct tty_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 int ret = 0;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002333 struct device *tty_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
2335 BUG_ON(in_interrupt());
2336
Alan Coxa2bceae2009-09-19 13:13:31 -07002337 if (uport->line >= drv->nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 return -EINVAL;
2339
Alan Coxa2bceae2009-09-19 13:13:31 -07002340 state = drv->state + uport->line;
2341 port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002343 mutex_lock(&port_mutex);
Alan Coxa2bceae2009-09-19 13:13:31 -07002344 mutex_lock(&port->mutex);
Alan Coxebd2c8f2009-09-19 13:13:28 -07002345 if (state->uart_port) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 ret = -EINVAL;
2347 goto out;
2348 }
2349
Alan Coxa2bceae2009-09-19 13:13:31 -07002350 state->uart_port = uport;
Russell King97d97222007-09-01 21:25:09 +01002351 state->pm_state = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
Alan Coxa2bceae2009-09-19 13:13:31 -07002353 uport->cons = drv->cons;
2354 uport->state = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
Russell King976ecd12005-07-03 21:05:45 +01002356 /*
2357 * If this port is a console, then the spinlock is already
2358 * initialised.
2359 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002360 if (!(uart_console(uport) && (uport->cons->flags & CON_ENABLED))) {
2361 spin_lock_init(&uport->lock);
2362 lockdep_set_class(&uport->lock, &port_lock_key);
Ingo Molnar13e83592006-07-03 00:25:03 -07002363 }
Russell King976ecd12005-07-03 21:05:45 +01002364
Alan Coxa2bceae2009-09-19 13:13:31 -07002365 uart_configure_port(drv, state, uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
2367 /*
2368 * Register the port whether it's detected or not. This allows
2369 * setserial to be used to alter this ports parameters.
2370 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002371 tty_dev = tty_register_device(drv->tty_driver, uport->line, uport->dev);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002372 if (likely(!IS_ERR(tty_dev))) {
Alan Stern74081f82008-03-19 22:35:13 +01002373 device_init_wakeup(tty_dev, 1);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002374 device_set_wakeup_enable(tty_dev, 0);
2375 } else
2376 printk(KERN_ERR "Cannot register tty device on line %d\n",
Alan Coxa2bceae2009-09-19 13:13:31 -07002377 uport->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
2379 /*
Russell King68ac64c2006-04-30 11:13:50 +01002380 * Ensure UPF_DEAD is not set.
2381 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002382 uport->flags &= ~UPF_DEAD;
Russell King68ac64c2006-04-30 11:13:50 +01002383
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 out:
Alan Coxa2bceae2009-09-19 13:13:31 -07002385 mutex_unlock(&port->mutex);
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002386 mutex_unlock(&port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
2388 return ret;
2389}
2390
2391/**
2392 * uart_remove_one_port - detach a driver defined port structure
2393 * @drv: pointer to the uart low level driver structure for this port
Randy Dunlap1b9894f2009-09-21 11:12:03 -07002394 * @uport: uart port structure for this port
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 *
2396 * This unhooks (and hangs up) the specified port structure from the
2397 * core driver. No further calls will be made to the low-level code
2398 * for this port.
2399 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002400int uart_remove_one_port(struct uart_driver *drv, struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401{
Alan Coxa2bceae2009-09-19 13:13:31 -07002402 struct uart_state *state = drv->state + uport->line;
2403 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
2405 BUG_ON(in_interrupt());
2406
Alan Coxa2bceae2009-09-19 13:13:31 -07002407 if (state->uart_port != uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 printk(KERN_ALERT "Removing wrong port: %p != %p\n",
Alan Coxa2bceae2009-09-19 13:13:31 -07002409 state->uart_port, uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002411 mutex_lock(&port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
2413 /*
Russell King68ac64c2006-04-30 11:13:50 +01002414 * Mark the port "dead" - this prevents any opens from
2415 * succeeding while we shut down the port.
2416 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002417 mutex_lock(&port->mutex);
2418 uport->flags |= UPF_DEAD;
2419 mutex_unlock(&port->mutex);
Russell King68ac64c2006-04-30 11:13:50 +01002420
2421 /*
Greg Kroah-Hartmanaa4148c2005-06-20 21:15:16 -07002422 * Remove the devices from the tty layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002424 tty_unregister_device(drv->tty_driver, uport->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Alan Coxa2bceae2009-09-19 13:13:31 -07002426 if (port->tty)
2427 tty_vhangup(port->tty);
Russell King68ac64c2006-04-30 11:13:50 +01002428
2429 /*
Russell King68ac64c2006-04-30 11:13:50 +01002430 * Free the port IO and memory resources, if any.
2431 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002432 if (uport->type != PORT_UNKNOWN)
2433 uport->ops->release_port(uport);
Russell King68ac64c2006-04-30 11:13:50 +01002434
2435 /*
2436 * Indicate that there isn't a port here anymore.
2437 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002438 uport->type = PORT_UNKNOWN;
Russell King68ac64c2006-04-30 11:13:50 +01002439
Alan Coxebd2c8f2009-09-19 13:13:28 -07002440 state->uart_port = NULL;
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002441 mutex_unlock(&port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
2443 return 0;
2444}
2445
2446/*
2447 * Are the two ports equivalent?
2448 */
2449int uart_match_port(struct uart_port *port1, struct uart_port *port2)
2450{
2451 if (port1->iotype != port2->iotype)
2452 return 0;
2453
2454 switch (port1->iotype) {
2455 case UPIO_PORT:
2456 return (port1->iobase == port2->iobase);
2457 case UPIO_HUB6:
2458 return (port1->iobase == port2->iobase) &&
2459 (port1->hub6 == port2->hub6);
2460 case UPIO_MEM:
Sergei Shtylyovd21b55d2006-08-28 19:49:03 +04002461 case UPIO_MEM32:
2462 case UPIO_AU:
2463 case UPIO_TSI:
Benjamin Herrenschmidt1624f002006-01-04 18:09:44 +00002464 return (port1->mapbase == port2->mapbase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 }
2466 return 0;
2467}
2468EXPORT_SYMBOL(uart_match_port);
2469
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470EXPORT_SYMBOL(uart_write_wakeup);
2471EXPORT_SYMBOL(uart_register_driver);
2472EXPORT_SYMBOL(uart_unregister_driver);
2473EXPORT_SYMBOL(uart_suspend_port);
2474EXPORT_SYMBOL(uart_resume_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475EXPORT_SYMBOL(uart_add_one_port);
2476EXPORT_SYMBOL(uart_remove_one_port);
2477
2478MODULE_DESCRIPTION("Serial driver core");
2479MODULE_LICENSE("GPL");