blob: 0fcfd98a9566c09c11a5b567dac8d6bcfd2295cd [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>
Jiri Slaby027d7da2011-11-09 21:33:43 +010025#include <linux/tty_flip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/slab.h>
27#include <linux/init.h>
28#include <linux/console.h>
Alexey Dobriyand196a942009-03-31 15:19:21 -070029#include <linux/proc_fs.h>
30#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/device.h>
32#include <linux/serial.h> /* for serial_state and serial_icounter_struct */
Alan Coxccce6de2009-09-19 13:13:30 -070033#include <linux/serial_core.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/delay.h>
Arjan van de Venf392ecf2006-01-12 18:44:32 +000035#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <asm/irq.h>
38#include <asm/uaccess.h>
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/*
41 * This is used to lock changes in serial line configuration.
42 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +000043static DEFINE_MUTEX(port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Ingo Molnar13e83592006-07-03 00:25:03 -070045/*
46 * lockdep: port->lock is initialized in two places, but we
47 * want only one lock-class:
48 */
49static struct lock_class_key port_lock_key;
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8)
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#ifdef CONFIG_SERIAL_CORE_CONSOLE
54#define uart_console(port) ((port)->cons && (port)->cons->index == (port)->line)
55#else
56#define uart_console(port) (0)
57#endif
58
Alan Cox19225132010-06-01 22:52:51 +020059static void uart_change_speed(struct tty_struct *tty, struct uart_state *state,
Alan Coxa46c9992008-02-08 04:18:53 -080060 struct ktermios *old_termios);
Jiri Slaby1f33a512011-07-14 14:35:10 +020061static void uart_wait_until_sent(struct tty_struct *tty, int timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static void uart_change_pm(struct uart_state *state, int pm_state);
63
Jiri Slabyb922e192011-11-09 21:33:51 +010064static void uart_port_shutdown(struct tty_port *port);
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*
67 * This routine is used by the interrupt handler to schedule processing in
68 * the software interrupt portion of the driver.
69 */
70void uart_write_wakeup(struct uart_port *port)
71{
Alan Coxebd2c8f2009-09-19 13:13:28 -070072 struct uart_state *state = port->state;
Pavel Machekd5f735e2006-03-07 21:55:20 -080073 /*
74 * This means you called this function _after_ the port was
75 * closed. No cookie for you.
76 */
Alan Coxebd2c8f2009-09-19 13:13:28 -070077 BUG_ON(!state);
Jiri Slaby6a3e492b2011-07-14 14:35:12 +020078 tty_wakeup(state->port.tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
81static void uart_stop(struct tty_struct *tty)
82{
83 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -070084 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 unsigned long flags;
86
87 spin_lock_irqsave(&port->lock, flags);
Russell Kingb129a8c2005-08-31 10:12:14 +010088 port->ops->stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 spin_unlock_irqrestore(&port->lock, flags);
90}
91
92static void __uart_start(struct tty_struct *tty)
93{
94 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -070095 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Alan Coxebd2c8f2009-09-19 13:13:28 -070097 if (!uart_circ_empty(&state->xmit) && state->xmit.buf &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 !tty->stopped && !tty->hw_stopped)
Russell Kingb129a8c2005-08-31 10:12:14 +010099 port->ops->start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
102static void uart_start(struct tty_struct *tty)
103{
104 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700105 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 unsigned long flags;
107
108 spin_lock_irqsave(&port->lock, flags);
109 __uart_start(tty);
110 spin_unlock_irqrestore(&port->lock, flags);
111}
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113static inline void
114uart_update_mctrl(struct uart_port *port, unsigned int set, unsigned int clear)
115{
116 unsigned long flags;
117 unsigned int old;
118
119 spin_lock_irqsave(&port->lock, flags);
120 old = port->mctrl;
121 port->mctrl = (old & ~clear) | set;
122 if (old != port->mctrl)
123 port->ops->set_mctrl(port, port->mctrl);
124 spin_unlock_irqrestore(&port->lock, flags);
125}
126
Alan Coxa46c9992008-02-08 04:18:53 -0800127#define uart_set_mctrl(port, set) uart_update_mctrl(port, set, 0)
128#define uart_clear_mctrl(port, clear) uart_update_mctrl(port, 0, clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/*
131 * Startup the port. This will be called once per open. All calls
Alan Coxdf4f4dd2008-07-16 21:53:50 +0100132 * will be serialised by the per-port mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 */
Jiri Slabyc0d92be2011-11-09 21:34:14 +0100134static int uart_port_startup(struct tty_struct *tty, struct uart_state *state,
135 int init_hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
Alan Cox46d57a42009-09-19 13:13:29 -0700137 struct uart_port *uport = state->uart_port;
138 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 unsigned long page;
140 int retval = 0;
141
Alan Cox46d57a42009-09-19 13:13:29 -0700142 if (uport->type == PORT_UNKNOWN)
Jiri Slabyc0d92be2011-11-09 21:34:14 +0100143 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 /*
146 * Initialise and allocate the transmit and temporary
147 * buffer.
148 */
Alan Coxebd2c8f2009-09-19 13:13:28 -0700149 if (!state->xmit.buf) {
Alan Coxdf4f4dd2008-07-16 21:53:50 +0100150 /* This is protected by the per port mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 page = get_zeroed_page(GFP_KERNEL);
152 if (!page)
153 return -ENOMEM;
154
Alan Coxebd2c8f2009-09-19 13:13:28 -0700155 state->xmit.buf = (unsigned char *) page;
156 uart_circ_clear(&state->xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 }
158
Alan Cox46d57a42009-09-19 13:13:29 -0700159 retval = uport->ops->startup(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (retval == 0) {
Jiri Slabyc7d7abf2011-03-30 00:10:55 +0200161 if (uart_console(uport) && uport->cons->cflag) {
Alan Coxadc8d742012-07-14 15:31:47 +0100162 tty->termios.c_cflag = uport->cons->cflag;
Jiri Slabyc7d7abf2011-03-30 00:10:55 +0200163 uport->cons->cflag = 0;
164 }
165 /*
166 * Initialise the hardware port settings.
167 */
168 uart_change_speed(tty, state, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Jiri Slabyc7d7abf2011-03-30 00:10:55 +0200170 if (init_hw) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 /*
172 * Setup the RTS and DTR signals once the
173 * port is open and ready to respond.
174 */
Alan Coxadc8d742012-07-14 15:31:47 +0100175 if (tty->termios.c_cflag & CBAUD)
Alan Cox46d57a42009-09-19 13:13:29 -0700176 uart_set_mctrl(uport, TIOCM_RTS | TIOCM_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178
Huang Shijief21ec3d2012-08-22 22:13:36 -0400179 if (tty_port_cts_enabled(port)) {
Alan Cox46d57a42009-09-19 13:13:29 -0700180 spin_lock_irq(&uport->lock);
181 if (!(uport->ops->get_mctrl(uport) & TIOCM_CTS))
Alan Cox19225132010-06-01 22:52:51 +0200182 tty->hw_stopped = 1;
Alan Cox46d57a42009-09-19 13:13:29 -0700183 spin_unlock_irq(&uport->lock);
Russell King0dd7a1a2005-06-29 18:40:53 +0100184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
186
Jiri Slaby00551972011-08-17 13:48:15 +0200187 /*
188 * This is to allow setserial on this port. People may want to set
189 * port/irq/type and then reconfigure the port properly if it failed
190 * now.
191 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 if (retval && capable(CAP_SYS_ADMIN))
Jiri Slabyc0d92be2011-11-09 21:34:14 +0100193 return 1;
194
195 return retval;
196}
197
198static int uart_startup(struct tty_struct *tty, struct uart_state *state,
199 int init_hw)
200{
201 struct tty_port *port = &state->port;
202 int retval;
203
204 if (port->flags & ASYNC_INITIALIZED)
205 return 0;
206
207 /*
208 * Set the TTY IO error marker - we will only clear this
209 * once we have successfully opened the port.
210 */
211 set_bit(TTY_IO_ERROR, &tty->flags);
212
213 retval = uart_port_startup(tty, state, init_hw);
214 if (!retval) {
215 set_bit(ASYNCB_INITIALIZED, &port->flags);
216 clear_bit(TTY_IO_ERROR, &tty->flags);
217 } else if (retval > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 retval = 0;
219
220 return retval;
221}
222
223/*
224 * This routine will shutdown a serial port; interrupts are disabled, and
225 * DTR is dropped if the hangup on close termio flag is on. Calls to
226 * uart_shutdown are serialised by the per-port semaphore.
227 */
Alan Cox19225132010-06-01 22:52:51 +0200228static void uart_shutdown(struct tty_struct *tty, struct uart_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Alan Coxccce6de2009-09-19 13:13:30 -0700230 struct uart_port *uport = state->uart_port;
Alan Coxbdc04e32009-09-19 13:13:31 -0700231 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Russell Kingee31b332005-11-13 15:28:51 +0000233 /*
234 * Set the TTY IO error marker
235 */
Alan Coxf7519282009-01-02 13:49:21 +0000236 if (tty)
237 set_bit(TTY_IO_ERROR, &tty->flags);
Russell Kingee31b332005-11-13 15:28:51 +0000238
Alan Coxbdc04e32009-09-19 13:13:31 -0700239 if (test_and_clear_bit(ASYNCB_INITIALIZED, &port->flags)) {
Russell Kingee31b332005-11-13 15:28:51 +0000240 /*
241 * Turn off DTR and RTS early.
242 */
Alan Coxadc8d742012-07-14 15:31:47 +0100243 if (!tty || (tty->termios.c_cflag & HUPCL))
Alan Coxccce6de2009-09-19 13:13:30 -0700244 uart_clear_mctrl(uport, TIOCM_DTR | TIOCM_RTS);
Russell Kingee31b332005-11-13 15:28:51 +0000245
Jiri Slabyb922e192011-11-09 21:33:51 +0100246 uart_port_shutdown(port);
Russell Kingee31b332005-11-13 15:28:51 +0000247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 /*
Doug Andersond208a3b2011-10-19 11:52:01 -0700250 * It's possible for shutdown to be called after suspend if we get
251 * a DCD drop (hangup) at just the right time. Clear suspended bit so
252 * we don't try to resume a port that has been shutdown.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 */
Doug Andersond208a3b2011-10-19 11:52:01 -0700254 clear_bit(ASYNCB_SUSPENDED, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 /*
257 * Free the transmit buffer page.
258 */
Alan Coxebd2c8f2009-09-19 13:13:28 -0700259 if (state->xmit.buf) {
260 free_page((unsigned long)state->xmit.buf);
261 state->xmit.buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265/**
266 * uart_update_timeout - update per-port FIFO timeout.
267 * @port: uart_port structure describing the port
268 * @cflag: termios cflag value
269 * @baud: speed of the port
270 *
271 * Set the port FIFO timeout value. The @cflag value should
272 * reflect the actual hardware settings.
273 */
274void
275uart_update_timeout(struct uart_port *port, unsigned int cflag,
276 unsigned int baud)
277{
278 unsigned int bits;
279
280 /* byte size and parity */
281 switch (cflag & CSIZE) {
282 case CS5:
283 bits = 7;
284 break;
285 case CS6:
286 bits = 8;
287 break;
288 case CS7:
289 bits = 9;
290 break;
291 default:
292 bits = 10;
Alan Coxa46c9992008-02-08 04:18:53 -0800293 break; /* CS8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295
296 if (cflag & CSTOPB)
297 bits++;
298 if (cflag & PARENB)
299 bits++;
300
301 /*
302 * The total number of bits to be transmitted in the fifo.
303 */
304 bits = bits * port->fifosize;
305
306 /*
307 * Figure the timeout to send the above number of bits.
308 * Add .02 seconds of slop
309 */
310 port->timeout = (HZ * bits) / baud + HZ/50;
311}
312
313EXPORT_SYMBOL(uart_update_timeout);
314
315/**
316 * uart_get_baud_rate - return baud rate for a particular port
317 * @port: uart_port structure describing the port in question.
318 * @termios: desired termios settings.
319 * @old: old termios (or NULL)
320 * @min: minimum acceptable baud rate
321 * @max: maximum acceptable baud rate
322 *
323 * Decode the termios structure into a numeric baud rate,
324 * taking account of the magic 38400 baud rate (with spd_*
325 * flags), and mapping the %B0 rate to 9600 baud.
326 *
327 * If the new baud rate is invalid, try the old termios setting.
328 * If it's still invalid, we try 9600 baud.
329 *
330 * Update the @termios structure to reflect the baud rate
Alan Coxeb424fd2008-04-28 02:14:07 -0700331 * we're actually going to be using. Don't do this for the case
332 * where B0 is requested ("hang up").
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 */
334unsigned int
Alan Cox606d0992006-12-08 02:38:45 -0800335uart_get_baud_rate(struct uart_port *port, struct ktermios *termios,
336 struct ktermios *old, unsigned int min, unsigned int max)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 unsigned int try, baud, altbaud = 38400;
Alan Coxeb424fd2008-04-28 02:14:07 -0700339 int hung_up = 0;
Russell King0077d452006-01-21 23:03:28 +0000340 upf_t flags = port->flags & UPF_SPD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 if (flags == UPF_SPD_HI)
343 altbaud = 57600;
André Goddard Rosa82cb7ba2009-10-25 11:18:26 -0200344 else if (flags == UPF_SPD_VHI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 altbaud = 115200;
André Goddard Rosa82cb7ba2009-10-25 11:18:26 -0200346 else if (flags == UPF_SPD_SHI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 altbaud = 230400;
André Goddard Rosa82cb7ba2009-10-25 11:18:26 -0200348 else if (flags == UPF_SPD_WARP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 altbaud = 460800;
350
351 for (try = 0; try < 2; try++) {
352 baud = tty_termios_baud_rate(termios);
353
354 /*
355 * The spd_hi, spd_vhi, spd_shi, spd_warp kludge...
356 * Die! Die! Die!
357 */
358 if (baud == 38400)
359 baud = altbaud;
360
361 /*
362 * Special case: B0 rate.
363 */
Alan Coxeb424fd2008-04-28 02:14:07 -0700364 if (baud == 0) {
365 hung_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 baud = 9600;
Alan Coxeb424fd2008-04-28 02:14:07 -0700367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 if (baud >= min && baud <= max)
370 return baud;
371
372 /*
373 * Oops, the quotient was zero. Try again with
374 * the old baud rate if possible.
375 */
376 termios->c_cflag &= ~CBAUD;
377 if (old) {
Alan Cox6d4d67b2008-02-04 22:27:53 -0800378 baud = tty_termios_baud_rate(old);
Alan Coxeb424fd2008-04-28 02:14:07 -0700379 if (!hung_up)
380 tty_termios_encode_baud_rate(termios,
381 baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 old = NULL;
383 continue;
384 }
385
386 /*
Alan Cox16ae2a82010-01-04 16:26:21 +0000387 * As a last resort, if the range cannot be met then clip to
388 * the nearest chip supported rate.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 */
Alan Cox16ae2a82010-01-04 16:26:21 +0000390 if (!hung_up) {
391 if (baud <= min)
392 tty_termios_encode_baud_rate(termios,
393 min + 1, min + 1);
394 else
395 tty_termios_encode_baud_rate(termios,
396 max - 1, max - 1);
397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
Alan Cox16ae2a82010-01-04 16:26:21 +0000399 /* Should never happen */
400 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return 0;
402}
403
404EXPORT_SYMBOL(uart_get_baud_rate);
405
406/**
407 * uart_get_divisor - return uart clock divisor
408 * @port: uart_port structure describing the port.
409 * @baud: desired baud rate
410 *
411 * Calculate the uart clock divisor for the port.
412 */
413unsigned int
414uart_get_divisor(struct uart_port *port, unsigned int baud)
415{
416 unsigned int quot;
417
418 /*
419 * Old custom speed handling.
420 */
421 if (baud == 38400 && (port->flags & UPF_SPD_MASK) == UPF_SPD_CUST)
422 quot = port->custom_divisor;
423 else
Uwe Kleine-König97d24632011-12-20 11:47:44 +0100424 quot = DIV_ROUND_CLOSEST(port->uartclk, 16 * baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 return quot;
427}
428
429EXPORT_SYMBOL(uart_get_divisor);
430
Alan Cox23d22ce2008-04-30 00:54:11 -0700431/* FIXME: Consistent locking policy */
Alan Cox19225132010-06-01 22:52:51 +0200432static void uart_change_speed(struct tty_struct *tty, struct uart_state *state,
433 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Alan Coxccce6de2009-09-19 13:13:30 -0700435 struct tty_port *port = &state->port;
Alan Coxccce6de2009-09-19 13:13:30 -0700436 struct uart_port *uport = state->uart_port;
Alan Cox606d0992006-12-08 02:38:45 -0800437 struct ktermios *termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 /*
440 * If we have no tty, termios, or the port does not exist,
441 * then we can't set the parameters for this port.
442 */
Alan Coxadc8d742012-07-14 15:31:47 +0100443 if (!tty || uport->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return;
445
Alan Coxadc8d742012-07-14 15:31:47 +0100446 termios = &tty->termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 /*
449 * Set flags based on termios cflag
450 */
451 if (termios->c_cflag & CRTSCTS)
Alan Coxccce6de2009-09-19 13:13:30 -0700452 set_bit(ASYNCB_CTS_FLOW, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 else
Alan Coxccce6de2009-09-19 13:13:30 -0700454 clear_bit(ASYNCB_CTS_FLOW, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 if (termios->c_cflag & CLOCAL)
Alan Coxccce6de2009-09-19 13:13:30 -0700457 clear_bit(ASYNCB_CHECK_CD, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 else
Alan Coxccce6de2009-09-19 13:13:30 -0700459 set_bit(ASYNCB_CHECK_CD, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Alan Coxccce6de2009-09-19 13:13:30 -0700461 uport->ops->set_termios(uport, termios, old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
Alan Cox19225132010-06-01 22:52:51 +0200464static inline int __uart_put_char(struct uart_port *port,
465 struct circ_buf *circ, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 unsigned long flags;
Alan Cox23d22ce2008-04-30 00:54:11 -0700468 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 if (!circ->buf)
Alan Cox23d22ce2008-04-30 00:54:11 -0700471 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 spin_lock_irqsave(&port->lock, flags);
474 if (uart_circ_chars_free(circ) != 0) {
475 circ->buf[circ->head] = c;
476 circ->head = (circ->head + 1) & (UART_XMIT_SIZE - 1);
Alan Cox23d22ce2008-04-30 00:54:11 -0700477 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
479 spin_unlock_irqrestore(&port->lock, flags);
Alan Cox23d22ce2008-04-30 00:54:11 -0700480 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Alan Cox23d22ce2008-04-30 00:54:11 -0700483static int uart_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
485 struct uart_state *state = tty->driver_data;
486
Alan Coxebd2c8f2009-09-19 13:13:28 -0700487 return __uart_put_char(state->uart_port, &state->xmit, ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
490static void uart_flush_chars(struct tty_struct *tty)
491{
492 uart_start(tty);
493}
494
Alan Cox19225132010-06-01 22:52:51 +0200495static int uart_write(struct tty_struct *tty,
496 const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 struct uart_state *state = tty->driver_data;
Pavel Machekd5f735e2006-03-07 21:55:20 -0800499 struct uart_port *port;
500 struct circ_buf *circ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 unsigned long flags;
502 int c, ret = 0;
503
Pavel Machekd5f735e2006-03-07 21:55:20 -0800504 /*
505 * This means you called this function _after_ the port was
506 * closed. No cookie for you.
507 */
Alan Coxf7519282009-01-02 13:49:21 +0000508 if (!state) {
Pavel Machekd5f735e2006-03-07 21:55:20 -0800509 WARN_ON(1);
510 return -EL3HLT;
511 }
512
Alan Coxebd2c8f2009-09-19 13:13:28 -0700513 port = state->uart_port;
514 circ = &state->xmit;
Pavel Machekd5f735e2006-03-07 21:55:20 -0800515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (!circ->buf)
517 return 0;
518
519 spin_lock_irqsave(&port->lock, flags);
520 while (1) {
521 c = CIRC_SPACE_TO_END(circ->head, circ->tail, UART_XMIT_SIZE);
522 if (count < c)
523 c = count;
524 if (c <= 0)
525 break;
526 memcpy(circ->buf + circ->head, buf, c);
527 circ->head = (circ->head + c) & (UART_XMIT_SIZE - 1);
528 buf += c;
529 count -= c;
530 ret += c;
531 }
532 spin_unlock_irqrestore(&port->lock, flags);
533
534 uart_start(tty);
535 return ret;
536}
537
538static int uart_write_room(struct tty_struct *tty)
539{
540 struct uart_state *state = tty->driver_data;
Alan Coxf34d7a52008-04-30 00:54:13 -0700541 unsigned long flags;
542 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Alan Coxebd2c8f2009-09-19 13:13:28 -0700544 spin_lock_irqsave(&state->uart_port->lock, flags);
545 ret = uart_circ_chars_free(&state->xmit);
546 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700547 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
550static int uart_chars_in_buffer(struct tty_struct *tty)
551{
552 struct uart_state *state = tty->driver_data;
Alan Coxf34d7a52008-04-30 00:54:13 -0700553 unsigned long flags;
554 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Alan Coxebd2c8f2009-09-19 13:13:28 -0700556 spin_lock_irqsave(&state->uart_port->lock, flags);
557 ret = uart_circ_chars_pending(&state->xmit);
558 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700559 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
562static void uart_flush_buffer(struct tty_struct *tty)
563{
564 struct uart_state *state = tty->driver_data;
Tetsuo Handa55d7b682008-05-06 20:42:27 -0700565 struct uart_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 unsigned long flags;
567
Pavel Machekd5f735e2006-03-07 21:55:20 -0800568 /*
569 * This means you called this function _after_ the port was
570 * closed. No cookie for you.
571 */
Alan Coxf7519282009-01-02 13:49:21 +0000572 if (!state) {
Pavel Machekd5f735e2006-03-07 21:55:20 -0800573 WARN_ON(1);
574 return;
575 }
576
Alan Coxebd2c8f2009-09-19 13:13:28 -0700577 port = state->uart_port;
Jiri Slabyeb3a1e12007-05-06 14:48:52 -0700578 pr_debug("uart_flush_buffer(%d) called\n", tty->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 spin_lock_irqsave(&port->lock, flags);
Alan Coxebd2c8f2009-09-19 13:13:28 -0700581 uart_circ_clear(&state->xmit);
Haavard Skinnemoen6bb0e3a2008-07-16 21:52:36 +0100582 if (port->ops->flush_buffer)
583 port->ops->flush_buffer(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 spin_unlock_irqrestore(&port->lock, flags);
585 tty_wakeup(tty);
586}
587
588/*
589 * This function is used to send a high-priority XON/XOFF character to
590 * the device
591 */
592static void uart_send_xchar(struct tty_struct *tty, char ch)
593{
594 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700595 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 unsigned long flags;
597
598 if (port->ops->send_xchar)
599 port->ops->send_xchar(port, ch);
600 else {
601 port->x_char = ch;
602 if (ch) {
603 spin_lock_irqsave(&port->lock, flags);
Russell Kingb129a8c2005-08-31 10:12:14 +0100604 port->ops->start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 spin_unlock_irqrestore(&port->lock, flags);
606 }
607 }
608}
609
610static void uart_throttle(struct tty_struct *tty)
611{
612 struct uart_state *state = tty->driver_data;
613
614 if (I_IXOFF(tty))
615 uart_send_xchar(tty, STOP_CHAR(tty));
616
Alan Coxadc8d742012-07-14 15:31:47 +0100617 if (tty->termios.c_cflag & CRTSCTS)
Alan Coxebd2c8f2009-09-19 13:13:28 -0700618 uart_clear_mctrl(state->uart_port, TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619}
620
621static void uart_unthrottle(struct tty_struct *tty)
622{
623 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700624 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 if (I_IXOFF(tty)) {
627 if (port->x_char)
628 port->x_char = 0;
629 else
630 uart_send_xchar(tty, START_CHAR(tty));
631 }
632
Alan Coxadc8d742012-07-14 15:31:47 +0100633 if (tty->termios.c_cflag & CRTSCTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 uart_set_mctrl(port, TIOCM_RTS);
635}
636
Alan Cox7ba2e762012-09-04 16:34:45 +0100637static void uart_get_info(struct tty_port *port,
638 struct uart_state *state,
639 struct serial_struct *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Alan Coxa2bceae2009-09-19 13:13:31 -0700641 struct uart_port *uport = state->uart_port;
Alan Cox7ba2e762012-09-04 16:34:45 +0100642
Fengguang Wu37cd0c92012-09-06 10:27:51 +0800643 memset(retinfo, 0, sizeof(*retinfo));
Alan Cox7ba2e762012-09-04 16:34:45 +0100644
645 retinfo->type = uport->type;
646 retinfo->line = uport->line;
647 retinfo->port = uport->iobase;
648 if (HIGH_BITS_OFFSET)
649 retinfo->port_high = (long) uport->iobase >> HIGH_BITS_OFFSET;
650 retinfo->irq = uport->irq;
651 retinfo->flags = uport->flags;
652 retinfo->xmit_fifo_size = uport->fifosize;
653 retinfo->baud_base = uport->uartclk / 16;
654 retinfo->close_delay = jiffies_to_msecs(port->close_delay) / 10;
655 retinfo->closing_wait = port->closing_wait == ASYNC_CLOSING_WAIT_NONE ?
656 ASYNC_CLOSING_WAIT_NONE :
657 jiffies_to_msecs(port->closing_wait) / 10;
658 retinfo->custom_divisor = uport->custom_divisor;
659 retinfo->hub6 = uport->hub6;
660 retinfo->io_type = uport->iotype;
661 retinfo->iomem_reg_shift = uport->regshift;
662 retinfo->iomem_base = (void *)(unsigned long)uport->mapbase;
663}
664
665static int uart_get_info_user(struct uart_state *state,
666 struct serial_struct __user *retinfo)
667{
Alan Coxa2bceae2009-09-19 13:13:31 -0700668 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 struct serial_struct tmp;
670
Alan Coxf34d7a52008-04-30 00:54:13 -0700671 /* Ensure the state we copy is consistent and no hardware changes
672 occur as we go */
Alan Coxa2bceae2009-09-19 13:13:31 -0700673 mutex_lock(&port->mutex);
Alan Cox7ba2e762012-09-04 16:34:45 +0100674 uart_get_info(port, state, &tmp);
Alan Coxa2bceae2009-09-19 13:13:31 -0700675 mutex_unlock(&port->mutex);
Alan Coxf34d7a52008-04-30 00:54:13 -0700676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
678 return -EFAULT;
679 return 0;
680}
681
Alan Cox7ba2e762012-09-04 16:34:45 +0100682static int uart_set_info(struct tty_struct *tty, struct tty_port *port,
683 struct uart_state *state,
684 struct serial_struct *new_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Alan Cox46d57a42009-09-19 13:13:29 -0700686 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 unsigned long new_port;
Russell King0077d452006-01-21 23:03:28 +0000688 unsigned int change_irq, change_port, closing_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 unsigned int old_custom_divisor, close_delay;
Russell King0077d452006-01-21 23:03:28 +0000690 upf_t old_flags, new_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 int retval = 0;
692
Alan Cox7ba2e762012-09-04 16:34:45 +0100693 new_port = new_info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (HIGH_BITS_OFFSET)
Alan Cox7ba2e762012-09-04 16:34:45 +0100695 new_port += (unsigned long) new_info->port_high << HIGH_BITS_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Alan Cox7ba2e762012-09-04 16:34:45 +0100697 new_info->irq = irq_canonicalize(new_info->irq);
698 close_delay = msecs_to_jiffies(new_info->close_delay * 10);
699 closing_wait = new_info->closing_wait == ASYNC_CLOSING_WAIT_NONE ?
Jiri Slaby4cb0fbf2011-11-09 21:33:45 +0100700 ASYNC_CLOSING_WAIT_NONE :
Alan Cox7ba2e762012-09-04 16:34:45 +0100701 msecs_to_jiffies(new_info->closing_wait * 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Alan Cox46d57a42009-09-19 13:13:29 -0700704 change_irq = !(uport->flags & UPF_FIXED_PORT)
Alan Cox7ba2e762012-09-04 16:34:45 +0100705 && new_info->irq != uport->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 /*
708 * Since changing the 'type' of the port changes its resource
709 * allocations, we should treat type changes the same as
710 * IO port changes.
711 */
Alan Cox46d57a42009-09-19 13:13:29 -0700712 change_port = !(uport->flags & UPF_FIXED_PORT)
713 && (new_port != uport->iobase ||
Alan Cox7ba2e762012-09-04 16:34:45 +0100714 (unsigned long)new_info->iomem_base != uport->mapbase ||
715 new_info->hub6 != uport->hub6 ||
716 new_info->io_type != uport->iotype ||
717 new_info->iomem_reg_shift != uport->regshift ||
718 new_info->type != uport->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Alan Cox46d57a42009-09-19 13:13:29 -0700720 old_flags = uport->flags;
Alan Cox7ba2e762012-09-04 16:34:45 +0100721 new_flags = new_info->flags;
Alan Cox46d57a42009-09-19 13:13:29 -0700722 old_custom_divisor = uport->custom_divisor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 if (!capable(CAP_SYS_ADMIN)) {
725 retval = -EPERM;
726 if (change_irq || change_port ||
Alan Cox7ba2e762012-09-04 16:34:45 +0100727 (new_info->baud_base != uport->uartclk / 16) ||
Alan Cox46d57a42009-09-19 13:13:29 -0700728 (close_delay != port->close_delay) ||
729 (closing_wait != port->closing_wait) ||
Alan Cox7ba2e762012-09-04 16:34:45 +0100730 (new_info->xmit_fifo_size &&
731 new_info->xmit_fifo_size != uport->fifosize) ||
Russell King0077d452006-01-21 23:03:28 +0000732 (((new_flags ^ old_flags) & ~UPF_USR_MASK) != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 goto exit;
Alan Cox46d57a42009-09-19 13:13:29 -0700734 uport->flags = ((uport->flags & ~UPF_USR_MASK) |
Russell King0077d452006-01-21 23:03:28 +0000735 (new_flags & UPF_USR_MASK));
Alan Cox7ba2e762012-09-04 16:34:45 +0100736 uport->custom_divisor = new_info->custom_divisor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 goto check_and_exit;
738 }
739
740 /*
741 * Ask the low level driver to verify the settings.
742 */
Alan Cox46d57a42009-09-19 13:13:29 -0700743 if (uport->ops->verify_port)
Alan Cox7ba2e762012-09-04 16:34:45 +0100744 retval = uport->ops->verify_port(uport, new_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Alan Cox7ba2e762012-09-04 16:34:45 +0100746 if ((new_info->irq >= nr_irqs) || (new_info->irq < 0) ||
747 (new_info->baud_base < 9600))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 retval = -EINVAL;
749
750 if (retval)
751 goto exit;
752
753 if (change_port || change_irq) {
754 retval = -EBUSY;
755
756 /*
757 * Make sure that we are the sole user of this port.
758 */
Alan Coxb58d13a2009-09-19 13:13:32 -0700759 if (tty_port_users(port) > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 goto exit;
761
762 /*
763 * We need to shutdown the serial port at the old
764 * port/type/irq combination.
765 */
Alan Cox19225132010-06-01 22:52:51 +0200766 uart_shutdown(tty, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
768
769 if (change_port) {
770 unsigned long old_iobase, old_mapbase;
771 unsigned int old_type, old_iotype, old_hub6, old_shift;
772
Alan Cox46d57a42009-09-19 13:13:29 -0700773 old_iobase = uport->iobase;
774 old_mapbase = uport->mapbase;
775 old_type = uport->type;
776 old_hub6 = uport->hub6;
777 old_iotype = uport->iotype;
778 old_shift = uport->regshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 /*
781 * Free and release old regions
782 */
783 if (old_type != PORT_UNKNOWN)
Alan Cox46d57a42009-09-19 13:13:29 -0700784 uport->ops->release_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Alan Cox46d57a42009-09-19 13:13:29 -0700786 uport->iobase = new_port;
Alan Cox7ba2e762012-09-04 16:34:45 +0100787 uport->type = new_info->type;
788 uport->hub6 = new_info->hub6;
789 uport->iotype = new_info->io_type;
790 uport->regshift = new_info->iomem_reg_shift;
791 uport->mapbase = (unsigned long)new_info->iomem_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 /*
794 * Claim and map the new regions
795 */
Alan Cox46d57a42009-09-19 13:13:29 -0700796 if (uport->type != PORT_UNKNOWN) {
797 retval = uport->ops->request_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 } else {
799 /* Always success - Jean II */
800 retval = 0;
801 }
802
803 /*
804 * If we fail to request resources for the
805 * new port, try to restore the old settings.
806 */
807 if (retval && old_type != PORT_UNKNOWN) {
Alan Cox46d57a42009-09-19 13:13:29 -0700808 uport->iobase = old_iobase;
809 uport->type = old_type;
810 uport->hub6 = old_hub6;
811 uport->iotype = old_iotype;
812 uport->regshift = old_shift;
813 uport->mapbase = old_mapbase;
814 retval = uport->ops->request_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 /*
816 * If we failed to restore the old settings,
817 * we fail like this.
818 */
819 if (retval)
Alan Cox46d57a42009-09-19 13:13:29 -0700820 uport->type = PORT_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 /*
823 * We failed anyway.
824 */
825 retval = -EBUSY;
Alan Coxa46c9992008-02-08 04:18:53 -0800826 /* Added to return the correct error -Ram Gupta */
827 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
829 }
830
David Gibsonabb4a232007-05-06 14:48:49 -0700831 if (change_irq)
Alan Cox7ba2e762012-09-04 16:34:45 +0100832 uport->irq = new_info->irq;
Alan Cox46d57a42009-09-19 13:13:29 -0700833 if (!(uport->flags & UPF_FIXED_PORT))
Alan Cox7ba2e762012-09-04 16:34:45 +0100834 uport->uartclk = new_info->baud_base * 16;
Alan Cox46d57a42009-09-19 13:13:29 -0700835 uport->flags = (uport->flags & ~UPF_CHANGE_MASK) |
Russell King0077d452006-01-21 23:03:28 +0000836 (new_flags & UPF_CHANGE_MASK);
Alan Cox7ba2e762012-09-04 16:34:45 +0100837 uport->custom_divisor = new_info->custom_divisor;
Alan Cox46d57a42009-09-19 13:13:29 -0700838 port->close_delay = close_delay;
839 port->closing_wait = closing_wait;
Alan Cox7ba2e762012-09-04 16:34:45 +0100840 if (new_info->xmit_fifo_size)
841 uport->fifosize = new_info->xmit_fifo_size;
Alan Cox46d57a42009-09-19 13:13:29 -0700842 if (port->tty)
843 port->tty->low_latency =
844 (uport->flags & UPF_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 check_and_exit:
847 retval = 0;
Alan Cox46d57a42009-09-19 13:13:29 -0700848 if (uport->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 goto exit;
Alan Coxccce6de2009-09-19 13:13:30 -0700850 if (port->flags & ASYNC_INITIALIZED) {
Alan Cox46d57a42009-09-19 13:13:29 -0700851 if (((old_flags ^ uport->flags) & UPF_SPD_MASK) ||
852 old_custom_divisor != uport->custom_divisor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 /*
854 * If they're setting up a custom divisor or speed,
855 * instead of clearing it, then bitch about it. No
856 * need to rate-limit; it's CAP_SYS_ADMIN only.
857 */
Alan Cox46d57a42009-09-19 13:13:29 -0700858 if (uport->flags & UPF_SPD_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 char buf[64];
860 printk(KERN_NOTICE
861 "%s sets custom speed on %s. This "
862 "is deprecated.\n", current->comm,
Alan Cox46d57a42009-09-19 13:13:29 -0700863 tty_name(port->tty, buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 }
Alan Cox19225132010-06-01 22:52:51 +0200865 uart_change_speed(tty, state, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 }
867 } else
Alan Cox19225132010-06-01 22:52:51 +0200868 retval = uart_startup(tty, state, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 exit:
Alan Cox7ba2e762012-09-04 16:34:45 +0100870 return retval;
871}
872
873static int uart_set_info_user(struct tty_struct *tty, struct uart_state *state,
874 struct serial_struct __user *newinfo)
875{
876 struct serial_struct new_serial;
877 struct tty_port *port = &state->port;
878 int retval;
879
880 if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
881 return -EFAULT;
882
883 /*
884 * This semaphore protects port->count. It is also
885 * very useful to prevent opens. Also, take the
886 * port configuration semaphore to make sure that a
887 * module insertion/removal doesn't change anything
888 * under us.
889 */
890 mutex_lock(&port->mutex);
891 retval = uart_set_info(tty, port, state, &new_serial);
Alan Coxa2bceae2009-09-19 13:13:31 -0700892 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return retval;
894}
895
Alan Cox19225132010-06-01 22:52:51 +0200896/**
897 * uart_get_lsr_info - get line status register info
898 * @tty: tty associated with the UART
899 * @state: UART being queried
900 * @value: returned modem value
901 *
902 * Note: uart_ioctl protects us against hangups.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 */
Alan Cox19225132010-06-01 22:52:51 +0200904static int uart_get_lsr_info(struct tty_struct *tty,
905 struct uart_state *state, unsigned int __user *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Alan Cox46d57a42009-09-19 13:13:29 -0700907 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 unsigned int result;
909
Alan Cox46d57a42009-09-19 13:13:29 -0700910 result = uport->ops->tx_empty(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 /*
913 * If we're about to load something into the transmit
914 * register, we'll pretend the transmitter isn't empty to
915 * avoid a race condition (depending on when the transmit
916 * interrupt happens).
917 */
Alan Cox46d57a42009-09-19 13:13:29 -0700918 if (uport->x_char ||
Alan Coxebd2c8f2009-09-19 13:13:28 -0700919 ((uart_circ_chars_pending(&state->xmit) > 0) &&
Alan Cox19225132010-06-01 22:52:51 +0200920 !tty->stopped && !tty->hw_stopped))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 result &= ~TIOCSER_TEMT;
Alan Coxa46c9992008-02-08 04:18:53 -0800922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 return put_user(result, value);
924}
925
Alan Cox60b33c12011-02-14 16:26:14 +0000926static int uart_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
928 struct uart_state *state = tty->driver_data;
Alan Coxa2bceae2009-09-19 13:13:31 -0700929 struct tty_port *port = &state->port;
Alan Cox46d57a42009-09-19 13:13:29 -0700930 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 int result = -EIO;
932
Alan Coxa2bceae2009-09-19 13:13:31 -0700933 mutex_lock(&port->mutex);
Alan Cox60b33c12011-02-14 16:26:14 +0000934 if (!(tty->flags & (1 << TTY_IO_ERROR))) {
Alan Cox46d57a42009-09-19 13:13:29 -0700935 result = uport->mctrl;
Alan Cox46d57a42009-09-19 13:13:29 -0700936 spin_lock_irq(&uport->lock);
937 result |= uport->ops->get_mctrl(uport);
938 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 }
Alan Coxa2bceae2009-09-19 13:13:31 -0700940 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 return result;
943}
944
945static int
Alan Cox20b9d172011-02-14 16:26:50 +0000946uart_tiocmset(struct tty_struct *tty, unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
948 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -0700949 struct uart_port *uport = state->uart_port;
Alan Coxa2bceae2009-09-19 13:13:31 -0700950 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 int ret = -EIO;
952
Alan Coxa2bceae2009-09-19 13:13:31 -0700953 mutex_lock(&port->mutex);
Alan Cox20b9d172011-02-14 16:26:50 +0000954 if (!(tty->flags & (1 << TTY_IO_ERROR))) {
Alan Cox46d57a42009-09-19 13:13:29 -0700955 uart_update_mctrl(uport, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 ret = 0;
957 }
Alan Coxa2bceae2009-09-19 13:13:31 -0700958 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 return ret;
960}
961
Alan Cox9e989662008-07-22 11:18:03 +0100962static int uart_break_ctl(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
964 struct uart_state *state = tty->driver_data;
Alan Coxa2bceae2009-09-19 13:13:31 -0700965 struct tty_port *port = &state->port;
Alan Cox46d57a42009-09-19 13:13:29 -0700966 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Alan Coxa2bceae2009-09-19 13:13:31 -0700968 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Alan Cox46d57a42009-09-19 13:13:29 -0700970 if (uport->type != PORT_UNKNOWN)
971 uport->ops->break_ctl(uport, break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Alan Coxa2bceae2009-09-19 13:13:31 -0700973 mutex_unlock(&port->mutex);
Alan Cox9e989662008-07-22 11:18:03 +0100974 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
976
Alan Cox19225132010-06-01 22:52:51 +0200977static int uart_do_autoconfig(struct tty_struct *tty,struct uart_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
Alan Cox46d57a42009-09-19 13:13:29 -0700979 struct uart_port *uport = state->uart_port;
Alan Coxa2bceae2009-09-19 13:13:31 -0700980 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 int flags, ret;
982
983 if (!capable(CAP_SYS_ADMIN))
984 return -EPERM;
985
986 /*
987 * Take the per-port semaphore. This prevents count from
988 * changing, and hence any extra opens of the port while
989 * we're auto-configuring.
990 */
Alan Coxa2bceae2009-09-19 13:13:31 -0700991 if (mutex_lock_interruptible(&port->mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 return -ERESTARTSYS;
993
994 ret = -EBUSY;
Alan Coxb58d13a2009-09-19 13:13:32 -0700995 if (tty_port_users(port) == 1) {
Alan Cox19225132010-06-01 22:52:51 +0200996 uart_shutdown(tty, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 /*
999 * If we already have a port type configured,
1000 * we must release its resources.
1001 */
Alan Cox46d57a42009-09-19 13:13:29 -07001002 if (uport->type != PORT_UNKNOWN)
1003 uport->ops->release_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 flags = UART_CONFIG_TYPE;
Alan Cox46d57a42009-09-19 13:13:29 -07001006 if (uport->flags & UPF_AUTO_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 flags |= UART_CONFIG_IRQ;
1008
1009 /*
1010 * This will claim the ports resources if
1011 * a port is found.
1012 */
Alan Cox46d57a42009-09-19 13:13:29 -07001013 uport->ops->config_port(uport, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Alan Cox19225132010-06-01 22:52:51 +02001015 ret = uart_startup(tty, state, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
Alan Coxa2bceae2009-09-19 13:13:31 -07001017 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 return ret;
1019}
1020
1021/*
1022 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1023 * - mask passed in arg for lines of interest
1024 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1025 * Caller should use TIOCGICOUNT to see which one it was
Alan Coxbdc04e32009-09-19 13:13:31 -07001026 *
1027 * FIXME: This wants extracting into a common all driver implementation
1028 * of TIOCMWAIT using tty_port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 */
1030static int
1031uart_wait_modem_status(struct uart_state *state, unsigned long arg)
1032{
Alan Cox46d57a42009-09-19 13:13:29 -07001033 struct uart_port *uport = state->uart_port;
Alan Coxbdc04e32009-09-19 13:13:31 -07001034 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 DECLARE_WAITQUEUE(wait, current);
1036 struct uart_icount cprev, cnow;
1037 int ret;
1038
1039 /*
1040 * note the counters on entry
1041 */
Alan Cox46d57a42009-09-19 13:13:29 -07001042 spin_lock_irq(&uport->lock);
1043 memcpy(&cprev, &uport->icount, sizeof(struct uart_icount));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
1045 /*
1046 * Force modem status interrupts on
1047 */
Alan Cox46d57a42009-09-19 13:13:29 -07001048 uport->ops->enable_ms(uport);
1049 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Alan Coxbdc04e32009-09-19 13:13:31 -07001051 add_wait_queue(&port->delta_msr_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 for (;;) {
Alan Cox46d57a42009-09-19 13:13:29 -07001053 spin_lock_irq(&uport->lock);
1054 memcpy(&cnow, &uport->icount, sizeof(struct uart_icount));
1055 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057 set_current_state(TASK_INTERRUPTIBLE);
1058
1059 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
1060 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
1061 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
1062 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
Alan Coxa46c9992008-02-08 04:18:53 -08001063 ret = 0;
1064 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 }
1066
1067 schedule();
1068
1069 /* see if a signal did it */
1070 if (signal_pending(current)) {
1071 ret = -ERESTARTSYS;
1072 break;
1073 }
1074
1075 cprev = cnow;
1076 }
1077
1078 current->state = TASK_RUNNING;
Alan Coxbdc04e32009-09-19 13:13:31 -07001079 remove_wait_queue(&port->delta_msr_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 return ret;
1082}
1083
1084/*
1085 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1086 * Return: write counters to the user passed counter struct
1087 * NB: both 1->0 and 0->1 transitions are counted except for
1088 * RI where only 0->1 is counted.
1089 */
Alan Coxd281da72010-09-16 18:21:24 +01001090static int uart_get_icount(struct tty_struct *tty,
1091 struct serial_icounter_struct *icount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092{
Alan Coxd281da72010-09-16 18:21:24 +01001093 struct uart_state *state = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 struct uart_icount cnow;
Alan Cox46d57a42009-09-19 13:13:29 -07001095 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Alan Cox46d57a42009-09-19 13:13:29 -07001097 spin_lock_irq(&uport->lock);
1098 memcpy(&cnow, &uport->icount, sizeof(struct uart_icount));
1099 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Alan Coxd281da72010-09-16 18:21:24 +01001101 icount->cts = cnow.cts;
1102 icount->dsr = cnow.dsr;
1103 icount->rng = cnow.rng;
1104 icount->dcd = cnow.dcd;
1105 icount->rx = cnow.rx;
1106 icount->tx = cnow.tx;
1107 icount->frame = cnow.frame;
1108 icount->overrun = cnow.overrun;
1109 icount->parity = cnow.parity;
1110 icount->brk = cnow.brk;
1111 icount->buf_overrun = cnow.buf_overrun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Alan Coxd281da72010-09-16 18:21:24 +01001113 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114}
1115
1116/*
Alan Coxe5238442008-04-30 00:53:28 -07001117 * Called via sys_ioctl. We can use spin_lock_irq() here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 */
1119static int
Alan Cox6caa76b2011-02-14 16:27:22 +00001120uart_ioctl(struct tty_struct *tty, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 unsigned long arg)
1122{
1123 struct uart_state *state = tty->driver_data;
Alan Coxa2bceae2009-09-19 13:13:31 -07001124 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 void __user *uarg = (void __user *)arg;
1126 int ret = -ENOIOCTLCMD;
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
1129 /*
1130 * These ioctls don't rely on the hardware to be present.
1131 */
1132 switch (cmd) {
1133 case TIOCGSERIAL:
Alan Cox7ba2e762012-09-04 16:34:45 +01001134 ret = uart_get_info_user(state, uarg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 break;
1136
1137 case TIOCSSERIAL:
Alan Cox7ba2e762012-09-04 16:34:45 +01001138 ret = uart_set_info_user(tty, state, uarg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 break;
1140
1141 case TIOCSERCONFIG:
Alan Cox19225132010-06-01 22:52:51 +02001142 ret = uart_do_autoconfig(tty, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 break;
1144
1145 case TIOCSERGWILD: /* obsolete */
1146 case TIOCSERSWILD: /* obsolete */
1147 ret = 0;
1148 break;
1149 }
1150
1151 if (ret != -ENOIOCTLCMD)
1152 goto out;
1153
1154 if (tty->flags & (1 << TTY_IO_ERROR)) {
1155 ret = -EIO;
1156 goto out;
1157 }
1158
1159 /*
1160 * The following should only be used when hardware is present.
1161 */
1162 switch (cmd) {
1163 case TIOCMIWAIT:
1164 ret = uart_wait_modem_status(state, arg);
1165 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 }
1167
1168 if (ret != -ENOIOCTLCMD)
1169 goto out;
1170
Alan Coxa2bceae2009-09-19 13:13:31 -07001171 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Alan Cox6caa76b2011-02-14 16:27:22 +00001173 if (tty->flags & (1 << TTY_IO_ERROR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 ret = -EIO;
1175 goto out_up;
1176 }
1177
1178 /*
1179 * All these rely on hardware being present and need to be
1180 * protected against the tty being hung up.
1181 */
1182 switch (cmd) {
1183 case TIOCSERGETLSR: /* Get line status register */
Alan Cox19225132010-06-01 22:52:51 +02001184 ret = uart_get_lsr_info(tty, state, uarg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 break;
1186
1187 default: {
Alan Cox46d57a42009-09-19 13:13:29 -07001188 struct uart_port *uport = state->uart_port;
1189 if (uport->ops->ioctl)
1190 ret = uport->ops->ioctl(uport, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 break;
1192 }
1193 }
Alan Coxf34d7a52008-04-30 00:54:13 -07001194out_up:
Alan Coxa2bceae2009-09-19 13:13:31 -07001195 mutex_unlock(&port->mutex);
Alan Coxf34d7a52008-04-30 00:54:13 -07001196out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 return ret;
1198}
1199
Linus Torvaldsedeb2802008-06-04 10:35:03 -07001200static void uart_set_ldisc(struct tty_struct *tty)
Alan Cox64e91592008-06-03 15:18:54 +01001201{
1202 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -07001203 struct uart_port *uport = state->uart_port;
Alan Cox64e91592008-06-03 15:18:54 +01001204
Alan Cox46d57a42009-09-19 13:13:29 -07001205 if (uport->ops->set_ldisc)
Alan Coxadc8d742012-07-14 15:31:47 +01001206 uport->ops->set_ldisc(uport, tty->termios.c_line);
Alan Cox64e91592008-06-03 15:18:54 +01001207}
1208
Alan Coxa46c9992008-02-08 04:18:53 -08001209static void uart_set_termios(struct tty_struct *tty,
1210 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
1212 struct uart_state *state = tty->driver_data;
1213 unsigned long flags;
Alan Coxadc8d742012-07-14 15:31:47 +01001214 unsigned int cflag = tty->termios.c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 /*
1218 * These are the bits that are used to setup various
David Woodhouse20620d62007-08-22 14:01:11 -07001219 * flags in the low level driver. We can ignore the Bfoo
1220 * bits in c_cflag; c_[io]speed will always be set
1221 * appropriately by set_termios() in tty_ioctl.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 */
1223#define RELEVANT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if ((cflag ^ old_termios->c_cflag) == 0 &&
Alan Coxadc8d742012-07-14 15:31:47 +01001225 tty->termios.c_ospeed == old_termios->c_ospeed &&
1226 tty->termios.c_ispeed == old_termios->c_ispeed &&
1227 RELEVANT_IFLAG(tty->termios.c_iflag ^ old_termios->c_iflag) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 return;
Alan Coxe5238442008-04-30 00:53:28 -07001229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Alan Cox19225132010-06-01 22:52:51 +02001231 uart_change_speed(tty, state, old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 /* Handle transition to B0 status */
1234 if ((old_termios->c_cflag & CBAUD) && !(cflag & CBAUD))
Alan Coxebd2c8f2009-09-19 13:13:28 -07001235 uart_clear_mctrl(state->uart_port, TIOCM_RTS | TIOCM_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 /* Handle transition away from B0 status */
André Goddard Rosa82cb7ba2009-10-25 11:18:26 -02001237 else if (!(old_termios->c_cflag & CBAUD) && (cflag & CBAUD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 unsigned int mask = TIOCM_DTR;
1239 if (!(cflag & CRTSCTS) ||
1240 !test_bit(TTY_THROTTLED, &tty->flags))
1241 mask |= TIOCM_RTS;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001242 uart_set_mctrl(state->uart_port, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 }
1244
1245 /* Handle turning off CRTSCTS */
1246 if ((old_termios->c_cflag & CRTSCTS) && !(cflag & CRTSCTS)) {
Alan Coxebd2c8f2009-09-19 13:13:28 -07001247 spin_lock_irqsave(&state->uart_port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 tty->hw_stopped = 0;
1249 __uart_start(tty);
Alan Coxebd2c8f2009-09-19 13:13:28 -07001250 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 }
Russell King0dd7a1a2005-06-29 18:40:53 +01001252 /* Handle turning on CRTSCTS */
André Goddard Rosa82cb7ba2009-10-25 11:18:26 -02001253 else if (!(old_termios->c_cflag & CRTSCTS) && (cflag & CRTSCTS)) {
Alan Coxebd2c8f2009-09-19 13:13:28 -07001254 spin_lock_irqsave(&state->uart_port->lock, flags);
1255 if (!(state->uart_port->ops->get_mctrl(state->uart_port) & TIOCM_CTS)) {
Russell King0dd7a1a2005-06-29 18:40:53 +01001256 tty->hw_stopped = 1;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001257 state->uart_port->ops->stop_tx(state->uart_port);
Russell King0dd7a1a2005-06-29 18:40:53 +01001258 }
Alan Coxebd2c8f2009-09-19 13:13:28 -07001259 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Russell King0dd7a1a2005-06-29 18:40:53 +01001260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261}
1262
1263/*
1264 * In 2.4.5, calls to this will be serialized via the BKL in
1265 * linux/drivers/char/tty_io.c:tty_release()
1266 * linux/drivers/char/tty_io.c:do_tty_handup()
1267 */
1268static void uart_close(struct tty_struct *tty, struct file *filp)
1269{
1270 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -07001271 struct tty_port *port;
1272 struct uart_port *uport;
Alan Cox61cd8a22010-06-01 22:52:57 +02001273 unsigned long flags;
Alan Coxa46c9992008-02-08 04:18:53 -08001274
Linus Torvaldseea7e172009-10-12 19:13:54 +02001275 if (!state)
1276 return;
1277
Alan Cox46d57a42009-09-19 13:13:29 -07001278 uport = state->uart_port;
1279 port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Alan Cox46d57a42009-09-19 13:13:29 -07001281 pr_debug("uart_close(%d) called\n", uport->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Jiri Slabyd30ccf02011-11-09 21:33:46 +01001283 if (tty_port_close_start(port, tty, filp) == 0)
Nobuhiro Iwamatsu55956212011-08-29 15:43:36 +09001284 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 /*
1287 * At this point, we stop accepting input. To do this, we
1288 * disable the receive line status interrupts.
1289 */
Alan Coxccce6de2009-09-19 13:13:30 -07001290 if (port->flags & ASYNC_INITIALIZED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 unsigned long flags;
Linus Torvaldseea7e172009-10-12 19:13:54 +02001292 spin_lock_irqsave(&uport->lock, flags);
Alan Cox46d57a42009-09-19 13:13:29 -07001293 uport->ops->stop_rx(uport);
Linus Torvaldseea7e172009-10-12 19:13:54 +02001294 spin_unlock_irqrestore(&uport->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 /*
1296 * Before we drop DTR, make sure the UART transmitter
1297 * has completely drained; this is especially
1298 * important if there is a transmit FIFO!
1299 */
Jiri Slaby1f33a512011-07-14 14:35:10 +02001300 uart_wait_until_sent(tty, uport->timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
1302
Jiri Slabybafb0bd2011-08-25 15:12:05 +02001303 mutex_lock(&port->mutex);
Alan Cox19225132010-06-01 22:52:51 +02001304 uart_shutdown(tty, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 uart_flush_buffer(tty);
1306
Alan Coxa46c9992008-02-08 04:18:53 -08001307 tty_ldisc_flush(tty);
1308
Alan Cox7b014782009-09-19 13:13:33 -07001309 tty_port_tty_set(port, NULL);
Alan Cox61cd8a22010-06-01 22:52:57 +02001310 spin_lock_irqsave(&port->lock, flags);
1311 tty->closing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Alan Cox46d57a42009-09-19 13:13:29 -07001313 if (port->blocked_open) {
Alan Cox61cd8a22010-06-01 22:52:57 +02001314 spin_unlock_irqrestore(&port->lock, flags);
Alan Cox46d57a42009-09-19 13:13:29 -07001315 if (port->close_delay)
Jiri Slaby4cb0fbf2011-11-09 21:33:45 +01001316 msleep_interruptible(
1317 jiffies_to_msecs(port->close_delay));
Alan Cox61cd8a22010-06-01 22:52:57 +02001318 spin_lock_irqsave(&port->lock, flags);
Alan Cox46d57a42009-09-19 13:13:29 -07001319 } else if (!uart_console(uport)) {
Alan Cox61cd8a22010-06-01 22:52:57 +02001320 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 uart_change_pm(state, 3);
Alan Cox61cd8a22010-06-01 22:52:57 +02001322 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 }
1324
1325 /*
1326 * Wake up anyone trying to open this port.
1327 */
Alan Coxccce6de2009-09-19 13:13:30 -07001328 clear_bit(ASYNCB_NORMAL_ACTIVE, &port->flags);
Jiri Slaby426929f2011-08-25 15:12:04 +02001329 clear_bit(ASYNCB_CLOSING, &port->flags);
Alan Cox61cd8a22010-06-01 22:52:57 +02001330 spin_unlock_irqrestore(&port->lock, flags);
Alan Cox46d57a42009-09-19 13:13:29 -07001331 wake_up_interruptible(&port->open_wait);
Jiri Slaby426929f2011-08-25 15:12:04 +02001332 wake_up_interruptible(&port->close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Alan Coxa2bceae2009-09-19 13:13:31 -07001334 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
Jiri Slaby1f33a512011-07-14 14:35:10 +02001337static void uart_wait_until_sent(struct tty_struct *tty, int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
Jiri Slaby1f33a512011-07-14 14:35:10 +02001339 struct uart_state *state = tty->driver_data;
1340 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 unsigned long char_time, expire;
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 if (port->type == PORT_UNKNOWN || port->fifosize == 0)
1344 return;
1345
1346 /*
1347 * Set the check interval to be 1/5 of the estimated time to
1348 * send a single character, and make it at least 1. The check
1349 * interval should also be less than the timeout.
1350 *
1351 * Note: we have to use pretty tight timings here to satisfy
1352 * the NIST-PCTS.
1353 */
1354 char_time = (port->timeout - HZ/50) / port->fifosize;
1355 char_time = char_time / 5;
1356 if (char_time == 0)
1357 char_time = 1;
1358 if (timeout && timeout < char_time)
1359 char_time = timeout;
1360
1361 /*
1362 * If the transmitter hasn't cleared in twice the approximate
1363 * amount of time to send the entire FIFO, it probably won't
1364 * ever clear. This assumes the UART isn't doing flow
1365 * control, which is currently the case. Hence, if it ever
1366 * takes longer than port->timeout, this is probably due to a
1367 * UART bug of some kind. So, we clamp the timeout parameter at
1368 * 2*port->timeout.
1369 */
1370 if (timeout == 0 || timeout > 2 * port->timeout)
1371 timeout = 2 * port->timeout;
1372
1373 expire = jiffies + timeout;
1374
Jiri Slabyeb3a1e12007-05-06 14:48:52 -07001375 pr_debug("uart_wait_until_sent(%d), jiffies=%lu, expire=%lu...\n",
Alan Coxa46c9992008-02-08 04:18:53 -08001376 port->line, jiffies, expire);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378 /*
1379 * Check whether the transmitter is empty every 'char_time'.
1380 * 'timeout' / 'expire' give us the maximum amount of time
1381 * we wait.
1382 */
1383 while (!port->ops->tx_empty(port)) {
1384 msleep_interruptible(jiffies_to_msecs(char_time));
1385 if (signal_pending(current))
1386 break;
1387 if (time_after(jiffies, expire))
1388 break;
1389 }
Arnd Bergmann20365212010-06-01 22:53:07 +02001390}
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392/*
1393 * This is called with the BKL held in
1394 * linux/drivers/char/tty_io.c:do_tty_hangup()
1395 * We're called from the eventd thread, so we can sleep for
1396 * a _short_ time only.
1397 */
1398static void uart_hangup(struct tty_struct *tty)
1399{
1400 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -07001401 struct tty_port *port = &state->port;
Alan Cox61cd8a22010-06-01 22:52:57 +02001402 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Alan Coxebd2c8f2009-09-19 13:13:28 -07001404 pr_debug("uart_hangup(%d)\n", state->uart_port->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Alan Coxa2bceae2009-09-19 13:13:31 -07001406 mutex_lock(&port->mutex);
Alan Coxccce6de2009-09-19 13:13:30 -07001407 if (port->flags & ASYNC_NORMAL_ACTIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 uart_flush_buffer(tty);
Alan Cox19225132010-06-01 22:52:51 +02001409 uart_shutdown(tty, state);
Alan Cox61cd8a22010-06-01 22:52:57 +02001410 spin_lock_irqsave(&port->lock, flags);
Alan Cox91312cd2009-09-19 13:13:29 -07001411 port->count = 0;
Alan Coxccce6de2009-09-19 13:13:30 -07001412 clear_bit(ASYNCB_NORMAL_ACTIVE, &port->flags);
Alan Cox61cd8a22010-06-01 22:52:57 +02001413 spin_unlock_irqrestore(&port->lock, flags);
Alan Cox7b014782009-09-19 13:13:33 -07001414 tty_port_tty_set(port, NULL);
Alan Cox46d57a42009-09-19 13:13:29 -07001415 wake_up_interruptible(&port->open_wait);
Alan Coxbdc04e32009-09-19 13:13:31 -07001416 wake_up_interruptible(&port->delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 }
Alan Coxa2bceae2009-09-19 13:13:31 -07001418 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419}
1420
Jiri Slaby0b1db832011-11-09 21:33:50 +01001421static int uart_port_activate(struct tty_port *port, struct tty_struct *tty)
1422{
1423 return 0;
1424}
1425
1426static void uart_port_shutdown(struct tty_port *port)
1427{
Jiri Slabyb922e192011-11-09 21:33:51 +01001428 struct uart_state *state = container_of(port, struct uart_state, port);
1429 struct uart_port *uport = state->uart_port;
1430
1431 /*
1432 * clear delta_msr_wait queue to avoid mem leaks: we may free
1433 * the irq here so the queue might never be woken up. Note
1434 * that we won't end up waiting on delta_msr_wait again since
1435 * any outstanding file descriptors should be pointing at
1436 * hung_up_tty_fops now.
1437 */
1438 wake_up_interruptible(&port->delta_msr_wait);
1439
1440 /*
1441 * Free the IRQ and disable the port.
1442 */
1443 uport->ops->shutdown(uport);
1444
1445 /*
1446 * Ensure that the IRQ handler isn't running on another CPU.
1447 */
1448 synchronize_irq(uport->irq);
Jiri Slaby0b1db832011-11-09 21:33:50 +01001449}
1450
Alan Coxde0c8cb2010-06-01 22:52:58 +02001451static int uart_carrier_raised(struct tty_port *port)
1452{
1453 struct uart_state *state = container_of(port, struct uart_state, port);
1454 struct uart_port *uport = state->uart_port;
1455 int mctrl;
Alan Coxde0c8cb2010-06-01 22:52:58 +02001456 spin_lock_irq(&uport->lock);
1457 uport->ops->enable_ms(uport);
1458 mctrl = uport->ops->get_mctrl(uport);
1459 spin_unlock_irq(&uport->lock);
Alan Coxde0c8cb2010-06-01 22:52:58 +02001460 if (mctrl & TIOCM_CAR)
1461 return 1;
1462 return 0;
1463}
1464
1465static void uart_dtr_rts(struct tty_port *port, int onoff)
1466{
1467 struct uart_state *state = container_of(port, struct uart_state, port);
1468 struct uart_port *uport = state->uart_port;
Alan Cox24fcc7c2010-06-01 22:52:59 +02001469
Jiri Slaby6f5c24a2011-03-30 00:10:57 +02001470 if (onoff)
Alan Coxde0c8cb2010-06-01 22:52:58 +02001471 uart_set_mctrl(uport, TIOCM_DTR | TIOCM_RTS);
1472 else
1473 uart_clear_mctrl(uport, TIOCM_DTR | TIOCM_RTS);
Alan Coxde0c8cb2010-06-01 22:52:58 +02001474}
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476/*
Denis Cheng922f9cf2008-02-08 04:22:00 -08001477 * calls to uart_open are serialised by the BKL in
1478 * fs/char_dev.c:chrdev_open()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 * Note that if this fails, then uart_close() _will_ be called.
1480 *
1481 * In time, we want to scrap the "opening nonpresent ports"
1482 * behaviour and implement an alternative way for setserial
1483 * to set base addresses/ports/types. This will allow us to
1484 * get rid of a certain amount of extra tests.
1485 */
1486static int uart_open(struct tty_struct *tty, struct file *filp)
1487{
1488 struct uart_driver *drv = (struct uart_driver *)tty->driver->driver_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 int retval, line = tty->index;
Jiri Slaby1c7b13c2011-11-09 21:33:49 +01001490 struct uart_state *state = drv->state + line;
1491 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Jiri Slabyeb3a1e12007-05-06 14:48:52 -07001493 pr_debug("uart_open(%d) called\n", line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495 /*
Jiri Slaby1c7b13c2011-11-09 21:33:49 +01001496 * We take the semaphore here to guarantee that we won't be re-entered
1497 * while allocating the state structure, or while we request any IRQs
1498 * that the driver may need. This also has the nice side-effect that
1499 * it delays the action of uart_hangup, so we can guarantee that
1500 * state->port.tty will always contain something reasonable.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 */
Jiri Slaby1c7b13c2011-11-09 21:33:49 +01001502 if (mutex_lock_interruptible(&port->mutex)) {
1503 retval = -ERESTARTSYS;
1504 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 }
Jiri Slaby1c7b13c2011-11-09 21:33:49 +01001506
1507 port->count++;
1508 if (!state->uart_port || state->uart_port->flags & UPF_DEAD) {
1509 retval = -ENXIO;
1510 goto err_dec_count;
1511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513 /*
1514 * Once we set tty->driver_data here, we are guaranteed that
1515 * uart_close() will decrement the driver module use count.
1516 * Any failures from here onwards should not touch the count.
1517 */
1518 tty->driver_data = state;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001519 state->uart_port->state = state;
1520 tty->low_latency = (state->uart_port->flags & UPF_LOW_LATENCY) ? 1 : 0;
Alan Cox7b014782009-09-19 13:13:33 -07001521 tty_port_tty_set(port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
1523 /*
1524 * If the port is in the middle of closing, bail out now.
1525 */
1526 if (tty_hung_up_p(filp)) {
1527 retval = -EAGAIN;
Jiri Slaby1c7b13c2011-11-09 21:33:49 +01001528 goto err_dec_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 }
1530
1531 /*
1532 * Make sure the device is in D0 state.
1533 */
Alan Cox91312cd2009-09-19 13:13:29 -07001534 if (port->count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 uart_change_pm(state, 0);
1536
1537 /*
1538 * Start up the serial port.
1539 */
Alan Cox19225132010-06-01 22:52:51 +02001540 retval = uart_startup(tty, state, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542 /*
1543 * If we succeeded, wait until the port is ready.
1544 */
Alan Cox61cd8a22010-06-01 22:52:57 +02001545 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 if (retval == 0)
Alan Cox74c21072010-06-01 22:53:00 +02001547 retval = tty_port_block_til_ready(port, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Jiri Slaby1c7b13c2011-11-09 21:33:49 +01001549end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 return retval;
Jiri Slaby1c7b13c2011-11-09 21:33:49 +01001551err_dec_count:
1552 port->count--;
1553 mutex_unlock(&port->mutex);
1554 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555}
1556
1557static const char *uart_type(struct uart_port *port)
1558{
1559 const char *str = NULL;
1560
1561 if (port->ops->type)
1562 str = port->ops->type(port);
1563
1564 if (!str)
1565 str = "unknown";
1566
1567 return str;
1568}
1569
1570#ifdef CONFIG_PROC_FS
1571
Alexey Dobriyand196a942009-03-31 15:19:21 -07001572static void uart_line_info(struct seq_file *m, struct uart_driver *drv, int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573{
1574 struct uart_state *state = drv->state + i;
Alan Coxa2bceae2009-09-19 13:13:31 -07001575 struct tty_port *port = &state->port;
George G. Davis3689a0e2007-02-14 00:33:06 -08001576 int pm_state;
Alan Coxa2bceae2009-09-19 13:13:31 -07001577 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 char stat_buf[32];
1579 unsigned int status;
Alexey Dobriyand196a942009-03-31 15:19:21 -07001580 int mmio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Alan Coxa2bceae2009-09-19 13:13:31 -07001582 if (!uport)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001583 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Alan Coxa2bceae2009-09-19 13:13:31 -07001585 mmio = uport->iotype >= UPIO_MEM;
Alexey Dobriyand196a942009-03-31 15:19:21 -07001586 seq_printf(m, "%d: uart:%s %s%08llX irq:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001587 uport->line, uart_type(uport),
Sergei Shtylyov6c6a2332006-09-04 00:04:20 +04001588 mmio ? "mmio:0x" : "port:",
Alan Coxa2bceae2009-09-19 13:13:31 -07001589 mmio ? (unsigned long long)uport->mapbase
1590 : (unsigned long long)uport->iobase,
1591 uport->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Alan Coxa2bceae2009-09-19 13:13:31 -07001593 if (uport->type == PORT_UNKNOWN) {
Alexey Dobriyand196a942009-03-31 15:19:21 -07001594 seq_putc(m, '\n');
1595 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 }
1597
Alan Coxa46c9992008-02-08 04:18:53 -08001598 if (capable(CAP_SYS_ADMIN)) {
Alan Coxa2bceae2009-09-19 13:13:31 -07001599 mutex_lock(&port->mutex);
George G. Davis3689a0e2007-02-14 00:33:06 -08001600 pm_state = state->pm_state;
1601 if (pm_state)
1602 uart_change_pm(state, 0);
Alan Coxa2bceae2009-09-19 13:13:31 -07001603 spin_lock_irq(&uport->lock);
1604 status = uport->ops->get_mctrl(uport);
1605 spin_unlock_irq(&uport->lock);
George G. Davis3689a0e2007-02-14 00:33:06 -08001606 if (pm_state)
1607 uart_change_pm(state, pm_state);
Alan Coxa2bceae2009-09-19 13:13:31 -07001608 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Alexey Dobriyand196a942009-03-31 15:19:21 -07001610 seq_printf(m, " tx:%d rx:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001611 uport->icount.tx, uport->icount.rx);
1612 if (uport->icount.frame)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001613 seq_printf(m, " fe:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001614 uport->icount.frame);
1615 if (uport->icount.parity)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001616 seq_printf(m, " pe:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001617 uport->icount.parity);
1618 if (uport->icount.brk)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001619 seq_printf(m, " brk:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001620 uport->icount.brk);
1621 if (uport->icount.overrun)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001622 seq_printf(m, " oe:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001623 uport->icount.overrun);
Alan Coxa46c9992008-02-08 04:18:53 -08001624
1625#define INFOBIT(bit, str) \
Alan Coxa2bceae2009-09-19 13:13:31 -07001626 if (uport->mctrl & (bit)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 strncat(stat_buf, (str), sizeof(stat_buf) - \
1628 strlen(stat_buf) - 2)
Alan Coxa46c9992008-02-08 04:18:53 -08001629#define STATBIT(bit, str) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 if (status & (bit)) \
1631 strncat(stat_buf, (str), sizeof(stat_buf) - \
1632 strlen(stat_buf) - 2)
1633
1634 stat_buf[0] = '\0';
1635 stat_buf[1] = '\0';
1636 INFOBIT(TIOCM_RTS, "|RTS");
1637 STATBIT(TIOCM_CTS, "|CTS");
1638 INFOBIT(TIOCM_DTR, "|DTR");
1639 STATBIT(TIOCM_DSR, "|DSR");
1640 STATBIT(TIOCM_CAR, "|CD");
1641 STATBIT(TIOCM_RNG, "|RI");
1642 if (stat_buf[0])
1643 stat_buf[0] = ' ';
Alan Coxa46c9992008-02-08 04:18:53 -08001644
Alexey Dobriyand196a942009-03-31 15:19:21 -07001645 seq_puts(m, stat_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 }
Alexey Dobriyand196a942009-03-31 15:19:21 -07001647 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648#undef STATBIT
1649#undef INFOBIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650}
1651
Alexey Dobriyand196a942009-03-31 15:19:21 -07001652static int uart_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653{
Alexey Dobriyan833bb302009-04-02 01:30:04 +04001654 struct tty_driver *ttydrv = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 struct uart_driver *drv = ttydrv->driver_state;
Alexey Dobriyand196a942009-03-31 15:19:21 -07001656 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Alexey Dobriyand196a942009-03-31 15:19:21 -07001658 seq_printf(m, "serinfo:1.0 driver%s%s revision:%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 "", "", "");
Alexey Dobriyand196a942009-03-31 15:19:21 -07001660 for (i = 0; i < drv->nr; i++)
1661 uart_line_info(m, drv, i);
1662 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663}
Alexey Dobriyand196a942009-03-31 15:19:21 -07001664
1665static int uart_proc_open(struct inode *inode, struct file *file)
1666{
1667 return single_open(file, uart_proc_show, PDE(inode)->data);
1668}
1669
1670static const struct file_operations uart_proc_fops = {
1671 .owner = THIS_MODULE,
1672 .open = uart_proc_open,
1673 .read = seq_read,
1674 .llseek = seq_lseek,
1675 .release = single_release,
1676};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677#endif
1678
Andrew Morton4a1b5502008-03-07 15:51:16 -08001679#if defined(CONFIG_SERIAL_CORE_CONSOLE) || defined(CONFIG_CONSOLE_POLL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680/*
Russell Kingd3587882006-03-20 20:00:09 +00001681 * uart_console_write - write a console message to a serial port
1682 * @port: the port to write the message
1683 * @s: array of characters
1684 * @count: number of characters in string to write
1685 * @write: function to write character to port
1686 */
1687void uart_console_write(struct uart_port *port, const char *s,
1688 unsigned int count,
1689 void (*putchar)(struct uart_port *, int))
1690{
1691 unsigned int i;
1692
1693 for (i = 0; i < count; i++, s++) {
1694 if (*s == '\n')
1695 putchar(port, '\r');
1696 putchar(port, *s);
1697 }
1698}
1699EXPORT_SYMBOL_GPL(uart_console_write);
1700
1701/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 * Check whether an invalid uart number has been specified, and
1703 * if so, search for the first available port that does have
1704 * console support.
1705 */
1706struct uart_port * __init
1707uart_get_console(struct uart_port *ports, int nr, struct console *co)
1708{
1709 int idx = co->index;
1710
1711 if (idx < 0 || idx >= nr || (ports[idx].iobase == 0 &&
1712 ports[idx].membase == NULL))
1713 for (idx = 0; idx < nr; idx++)
1714 if (ports[idx].iobase != 0 ||
1715 ports[idx].membase != NULL)
1716 break;
1717
1718 co->index = idx;
1719
1720 return ports + idx;
1721}
1722
1723/**
1724 * uart_parse_options - Parse serial port baud/parity/bits/flow contro.
1725 * @options: pointer to option string
1726 * @baud: pointer to an 'int' variable for the baud rate.
1727 * @parity: pointer to an 'int' variable for the parity.
1728 * @bits: pointer to an 'int' variable for the number of data bits.
1729 * @flow: pointer to an 'int' variable for the flow control character.
1730 *
1731 * uart_parse_options decodes a string containing the serial console
1732 * options. The format of the string is <baud><parity><bits><flow>,
1733 * eg: 115200n8r
1734 */
Jason Wesself2d937f2008-04-17 20:05:37 +02001735void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736uart_parse_options(char *options, int *baud, int *parity, int *bits, int *flow)
1737{
1738 char *s = options;
1739
1740 *baud = simple_strtoul(s, NULL, 10);
1741 while (*s >= '0' && *s <= '9')
1742 s++;
1743 if (*s)
1744 *parity = *s++;
1745 if (*s)
1746 *bits = *s++ - '0';
1747 if (*s)
1748 *flow = *s;
1749}
Jason Wesself2d937f2008-04-17 20:05:37 +02001750EXPORT_SYMBOL_GPL(uart_parse_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752struct baud_rates {
1753 unsigned int rate;
1754 unsigned int cflag;
1755};
1756
Arjan van de Vencb3592b2005-11-28 21:04:11 +00001757static const struct baud_rates baud_rates[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 { 921600, B921600 },
1759 { 460800, B460800 },
1760 { 230400, B230400 },
1761 { 115200, B115200 },
1762 { 57600, B57600 },
1763 { 38400, B38400 },
1764 { 19200, B19200 },
1765 { 9600, B9600 },
1766 { 4800, B4800 },
1767 { 2400, B2400 },
1768 { 1200, B1200 },
1769 { 0, B38400 }
1770};
1771
1772/**
1773 * uart_set_options - setup the serial console parameters
1774 * @port: pointer to the serial ports uart_port structure
1775 * @co: console pointer
1776 * @baud: baud rate
1777 * @parity: parity character - 'n' (none), 'o' (odd), 'e' (even)
1778 * @bits: number of data bits
1779 * @flow: flow control character - 'r' (rts)
1780 */
Jason Wesself2d937f2008-04-17 20:05:37 +02001781int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782uart_set_options(struct uart_port *port, struct console *co,
1783 int baud, int parity, int bits, int flow)
1784{
Alan Cox606d0992006-12-08 02:38:45 -08001785 struct ktermios termios;
Alan Cox149b36e2007-10-18 01:24:16 -07001786 static struct ktermios dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 int i;
1788
Russell King976ecd12005-07-03 21:05:45 +01001789 /*
1790 * Ensure that the serial console lock is initialised
1791 * early.
1792 */
1793 spin_lock_init(&port->lock);
Ingo Molnar13e83592006-07-03 00:25:03 -07001794 lockdep_set_class(&port->lock, &port_lock_key);
Russell King976ecd12005-07-03 21:05:45 +01001795
Alan Cox606d0992006-12-08 02:38:45 -08001796 memset(&termios, 0, sizeof(struct ktermios));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
1798 termios.c_cflag = CREAD | HUPCL | CLOCAL;
1799
1800 /*
1801 * Construct a cflag setting.
1802 */
1803 for (i = 0; baud_rates[i].rate; i++)
1804 if (baud_rates[i].rate <= baud)
1805 break;
1806
1807 termios.c_cflag |= baud_rates[i].cflag;
1808
1809 if (bits == 7)
1810 termios.c_cflag |= CS7;
1811 else
1812 termios.c_cflag |= CS8;
1813
1814 switch (parity) {
1815 case 'o': case 'O':
1816 termios.c_cflag |= PARODD;
1817 /*fall through*/
1818 case 'e': case 'E':
1819 termios.c_cflag |= PARENB;
1820 break;
1821 }
1822
1823 if (flow == 'r')
1824 termios.c_cflag |= CRTSCTS;
1825
Yinghai Lu79492682007-07-15 23:37:25 -07001826 /*
1827 * some uarts on other side don't support no flow control.
1828 * So we set * DTR in host uart to make them happy
1829 */
1830 port->mctrl |= TIOCM_DTR;
1831
Alan Cox149b36e2007-10-18 01:24:16 -07001832 port->ops->set_termios(port, &termios, &dummy);
Jason Wesself2d937f2008-04-17 20:05:37 +02001833 /*
1834 * Allow the setting of the UART parameters with a NULL console
1835 * too:
1836 */
1837 if (co)
1838 co->cflag = termios.c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
1840 return 0;
1841}
Jason Wesself2d937f2008-04-17 20:05:37 +02001842EXPORT_SYMBOL_GPL(uart_set_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843#endif /* CONFIG_SERIAL_CORE_CONSOLE */
1844
Jiri Slabycf755252011-11-09 21:33:47 +01001845/**
1846 * uart_change_pm - set power state of the port
1847 *
1848 * @state: port descriptor
1849 * @pm_state: new state
1850 *
1851 * Locking: port->mutex has to be held
1852 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853static void uart_change_pm(struct uart_state *state, int pm_state)
1854{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001855 struct uart_port *port = state->uart_port;
Andrew Victor1281e362006-05-16 11:28:49 +01001856
1857 if (state->pm_state != pm_state) {
1858 if (port->ops->pm)
1859 port->ops->pm(port, pm_state, state->pm_state);
1860 state->pm_state = pm_state;
1861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862}
1863
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001864struct uart_match {
1865 struct uart_port *port;
1866 struct uart_driver *driver;
1867};
1868
1869static int serial_match_port(struct device *dev, void *data)
1870{
1871 struct uart_match *match = data;
Guennadi Liakhovetski7ca796f2008-07-04 09:59:28 -07001872 struct tty_driver *tty_drv = match->driver->tty_driver;
1873 dev_t devt = MKDEV(tty_drv->major, tty_drv->minor_start) +
1874 match->port->line;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001875
1876 return dev->devt == devt; /* Actually, only one tty per port */
1877}
1878
Alan Coxccce6de2009-09-19 13:13:30 -07001879int uart_suspend_port(struct uart_driver *drv, struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880{
Alan Coxccce6de2009-09-19 13:13:30 -07001881 struct uart_state *state = drv->state + uport->line;
1882 struct tty_port *port = &state->port;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001883 struct device *tty_dev;
Alan Coxccce6de2009-09-19 13:13:30 -07001884 struct uart_match match = {uport, drv};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
Alan Coxa2bceae2009-09-19 13:13:31 -07001886 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Alan Coxccce6de2009-09-19 13:13:30 -07001888 tty_dev = device_find_child(uport->dev, &match, serial_match_port);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001889 if (device_may_wakeup(tty_dev)) {
Govindraj.R3f960db2010-12-16 18:12:47 +05301890 if (!enable_irq_wake(uport->irq))
1891 uport->irq_wake = 1;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001892 put_device(tty_dev);
Alan Coxa2bceae2009-09-19 13:13:31 -07001893 mutex_unlock(&port->mutex);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001894 return 0;
1895 }
Stanislav Brabec4547be72009-12-02 16:20:56 +01001896 if (console_suspend_enabled || !uart_console(uport))
1897 uport->suspended = 1;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001898
Alan Coxccce6de2009-09-19 13:13:30 -07001899 if (port->flags & ASYNC_INITIALIZED) {
1900 const struct uart_ops *ops = uport->ops;
Russell Kingc8c6bfa2008-02-04 22:27:52 -08001901 int tries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Stanislav Brabec4547be72009-12-02 16:20:56 +01001903 if (console_suspend_enabled || !uart_console(uport)) {
1904 set_bit(ASYNCB_SUSPENDED, &port->flags);
1905 clear_bit(ASYNCB_INITIALIZED, &port->flags);
Russell Kinga6b93a92006-10-01 17:17:40 +01001906
Stanislav Brabec4547be72009-12-02 16:20:56 +01001907 spin_lock_irq(&uport->lock);
1908 ops->stop_tx(uport);
1909 ops->set_mctrl(uport, 0);
1910 ops->stop_rx(uport);
1911 spin_unlock_irq(&uport->lock);
1912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914 /*
1915 * Wait for the transmitter to empty.
1916 */
Alan Coxccce6de2009-09-19 13:13:30 -07001917 for (tries = 3; !ops->tx_empty(uport) && tries; tries--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 msleep(10);
Russell Kingc8c6bfa2008-02-04 22:27:52 -08001919 if (!tries)
Alan Coxa46c9992008-02-08 04:18:53 -08001920 printk(KERN_ERR "%s%s%s%d: Unable to drain "
1921 "transmitter\n",
Alan Coxccce6de2009-09-19 13:13:30 -07001922 uport->dev ? dev_name(uport->dev) : "",
1923 uport->dev ? ": " : "",
David S. Miller84408382008-10-13 10:45:26 +01001924 drv->dev_name,
Alan Coxccce6de2009-09-19 13:13:30 -07001925 drv->tty_driver->name_base + uport->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
Stanislav Brabec4547be72009-12-02 16:20:56 +01001927 if (console_suspend_enabled || !uart_console(uport))
1928 ops->shutdown(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 }
1930
1931 /*
1932 * Disable the console device before suspending.
1933 */
Stanislav Brabec4547be72009-12-02 16:20:56 +01001934 if (console_suspend_enabled && uart_console(uport))
Alan Coxccce6de2009-09-19 13:13:30 -07001935 console_stop(uport->cons);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Stanislav Brabec4547be72009-12-02 16:20:56 +01001937 if (console_suspend_enabled || !uart_console(uport))
1938 uart_change_pm(state, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Alan Coxa2bceae2009-09-19 13:13:31 -07001940 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
1942 return 0;
1943}
1944
Alan Coxccce6de2009-09-19 13:13:30 -07001945int uart_resume_port(struct uart_driver *drv, struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946{
Alan Coxccce6de2009-09-19 13:13:30 -07001947 struct uart_state *state = drv->state + uport->line;
1948 struct tty_port *port = &state->port;
Arjan van de Ven03a74dc2008-05-23 13:04:49 -07001949 struct device *tty_dev;
Alan Coxccce6de2009-09-19 13:13:30 -07001950 struct uart_match match = {uport, drv};
Deepak Saxenaba15ab02009-09-19 13:13:33 -07001951 struct ktermios termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Alan Coxa2bceae2009-09-19 13:13:31 -07001953 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Alan Coxccce6de2009-09-19 13:13:30 -07001955 tty_dev = device_find_child(uport->dev, &match, serial_match_port);
1956 if (!uport->suspended && device_may_wakeup(tty_dev)) {
Govindraj.R3f960db2010-12-16 18:12:47 +05301957 if (uport->irq_wake) {
1958 disable_irq_wake(uport->irq);
1959 uport->irq_wake = 0;
1960 }
Alan Coxa2bceae2009-09-19 13:13:31 -07001961 mutex_unlock(&port->mutex);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001962 return 0;
1963 }
Alan Coxccce6de2009-09-19 13:13:30 -07001964 uport->suspended = 0;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 /*
1967 * Re-enable the console device after suspending.
1968 */
Yin Kangkai5933a162011-01-30 11:15:30 +08001969 if (uart_console(uport)) {
Jason Wang891b9dd2010-08-21 15:14:42 +08001970 /*
1971 * First try to use the console cflag setting.
1972 */
1973 memset(&termios, 0, sizeof(struct ktermios));
1974 termios.c_cflag = uport->cons->cflag;
1975
1976 /*
1977 * If that's unset, use the tty termios setting.
1978 */
Alan Coxadc8d742012-07-14 15:31:47 +01001979 if (port->tty && termios.c_cflag == 0)
1980 termios = port->tty->termios;
Jason Wang891b9dd2010-08-21 15:14:42 +08001981
Ning Jiang94abc562011-09-05 16:28:18 +08001982 if (console_suspend_enabled)
1983 uart_change_pm(state, 0);
Alan Coxccce6de2009-09-19 13:13:30 -07001984 uport->ops->set_termios(uport, &termios, NULL);
Yin Kangkai5933a162011-01-30 11:15:30 +08001985 if (console_suspend_enabled)
1986 console_start(uport->cons);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 }
1988
Alan Coxccce6de2009-09-19 13:13:30 -07001989 if (port->flags & ASYNC_SUSPENDED) {
1990 const struct uart_ops *ops = uport->ops;
Russell Kingee31b332005-11-13 15:28:51 +00001991 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Russell King9d778a62008-02-04 22:27:51 -08001993 uart_change_pm(state, 0);
Alan Coxccce6de2009-09-19 13:13:30 -07001994 spin_lock_irq(&uport->lock);
1995 ops->set_mctrl(uport, 0);
1996 spin_unlock_irq(&uport->lock);
Stanislav Brabec4547be72009-12-02 16:20:56 +01001997 if (console_suspend_enabled || !uart_console(uport)) {
Alan Cox19225132010-06-01 22:52:51 +02001998 /* Protected by port mutex for now */
1999 struct tty_struct *tty = port->tty;
Stanislav Brabec4547be72009-12-02 16:20:56 +01002000 ret = ops->startup(uport);
2001 if (ret == 0) {
Alan Cox19225132010-06-01 22:52:51 +02002002 if (tty)
2003 uart_change_speed(tty, state, NULL);
Stanislav Brabec4547be72009-12-02 16:20:56 +01002004 spin_lock_irq(&uport->lock);
2005 ops->set_mctrl(uport, uport->mctrl);
2006 ops->start_tx(uport);
2007 spin_unlock_irq(&uport->lock);
2008 set_bit(ASYNCB_INITIALIZED, &port->flags);
2009 } else {
2010 /*
2011 * Failed to resume - maybe hardware went away?
2012 * Clear the "initialized" flag so we won't try
2013 * to call the low level drivers shutdown method.
2014 */
Alan Cox19225132010-06-01 22:52:51 +02002015 uart_shutdown(tty, state);
Stanislav Brabec4547be72009-12-02 16:20:56 +01002016 }
Russell Kingee31b332005-11-13 15:28:51 +00002017 }
Russell Kinga6b93a92006-10-01 17:17:40 +01002018
Alan Coxccce6de2009-09-19 13:13:30 -07002019 clear_bit(ASYNCB_SUSPENDED, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 }
2021
Alan Coxa2bceae2009-09-19 13:13:31 -07002022 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
2024 return 0;
2025}
2026
2027static inline void
2028uart_report_port(struct uart_driver *drv, struct uart_port *port)
2029{
Russell King30b7a3b2005-09-03 15:30:21 +01002030 char address[64];
2031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 switch (port->iotype) {
2033 case UPIO_PORT:
Andrew Morton9bde10a2008-10-13 10:35:42 +01002034 snprintf(address, sizeof(address), "I/O 0x%lx", port->iobase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 break;
2036 case UPIO_HUB6:
Russell King30b7a3b2005-09-03 15:30:21 +01002037 snprintf(address, sizeof(address),
Andrew Morton9bde10a2008-10-13 10:35:42 +01002038 "I/O 0x%lx offset 0x%x", port->iobase, port->hub6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 break;
2040 case UPIO_MEM:
2041 case UPIO_MEM32:
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002042 case UPIO_AU:
Zang Roy-r619113be91ec2006-06-30 02:29:58 -07002043 case UPIO_TSI:
Russell King30b7a3b2005-09-03 15:30:21 +01002044 snprintf(address, sizeof(address),
Josh Boyer4f640ef2007-07-23 18:43:44 -07002045 "MMIO 0x%llx", (unsigned long long)port->mapbase);
Russell King30b7a3b2005-09-03 15:30:21 +01002046 break;
2047 default:
2048 strlcpy(address, "*unknown*", sizeof(address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 break;
2050 }
Russell King30b7a3b2005-09-03 15:30:21 +01002051
Russell King0cf669d2005-10-31 11:42:22 +00002052 printk(KERN_INFO "%s%s%s%d at %s (irq = %d) is a %s\n",
Kay Sievers4bfe0902009-01-06 10:44:37 -08002053 port->dev ? dev_name(port->dev) : "",
Russell King0cf669d2005-10-31 11:42:22 +00002054 port->dev ? ": " : "",
David S. Miller84408382008-10-13 10:45:26 +01002055 drv->dev_name,
2056 drv->tty_driver->name_base + port->line,
2057 address, port->irq, uart_type(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058}
2059
2060static void
2061uart_configure_port(struct uart_driver *drv, struct uart_state *state,
2062 struct uart_port *port)
2063{
2064 unsigned int flags;
2065
2066 /*
2067 * If there isn't a port here, don't do anything further.
2068 */
2069 if (!port->iobase && !port->mapbase && !port->membase)
2070 return;
2071
2072 /*
2073 * Now do the auto configuration stuff. Note that config_port
2074 * is expected to claim the resources and map the port for us.
2075 */
David Daney8e23fcc2009-01-02 13:49:54 +00002076 flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 if (port->flags & UPF_AUTO_IRQ)
2078 flags |= UART_CONFIG_IRQ;
2079 if (port->flags & UPF_BOOT_AUTOCONF) {
David Daney8e23fcc2009-01-02 13:49:54 +00002080 if (!(port->flags & UPF_FIXED_TYPE)) {
2081 port->type = PORT_UNKNOWN;
2082 flags |= UART_CONFIG_TYPE;
2083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 port->ops->config_port(port, flags);
2085 }
2086
2087 if (port->type != PORT_UNKNOWN) {
2088 unsigned long flags;
2089
2090 uart_report_port(drv, port);
2091
George G. Davis3689a0e2007-02-14 00:33:06 -08002092 /* Power up port for set_mctrl() */
2093 uart_change_pm(state, 0);
2094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 /*
2096 * Ensure that the modem control lines are de-activated.
Yinghai Luc3e46422008-02-04 22:27:46 -08002097 * keep the DTR setting that is set in uart_set_options()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 * We probably don't need a spinlock around this, but
2099 */
2100 spin_lock_irqsave(&port->lock, flags);
Yinghai Luc3e46422008-02-04 22:27:46 -08002101 port->ops->set_mctrl(port, port->mctrl & TIOCM_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 spin_unlock_irqrestore(&port->lock, flags);
2103
2104 /*
Russell King97d97222007-09-01 21:25:09 +01002105 * If this driver supports console, and it hasn't been
2106 * successfully registered yet, try to re-register it.
2107 * It may be that the port was not available.
2108 */
2109 if (port->cons && !(port->cons->flags & CON_ENABLED))
2110 register_console(port->cons);
2111
2112 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 * Power down all ports by default, except the
2114 * console if we have one.
2115 */
2116 if (!uart_console(port))
2117 uart_change_pm(state, 3);
2118 }
2119}
2120
Jason Wesself2d937f2008-04-17 20:05:37 +02002121#ifdef CONFIG_CONSOLE_POLL
2122
2123static int uart_poll_init(struct tty_driver *driver, int line, char *options)
2124{
2125 struct uart_driver *drv = driver->driver_state;
2126 struct uart_state *state = drv->state + line;
2127 struct uart_port *port;
2128 int baud = 9600;
2129 int bits = 8;
2130 int parity = 'n';
2131 int flow = 'n';
Anton Vorontsovc7f3e702012-09-24 14:27:53 -07002132 int ret;
Jason Wesself2d937f2008-04-17 20:05:37 +02002133
Alan Coxebd2c8f2009-09-19 13:13:28 -07002134 if (!state || !state->uart_port)
Jason Wesself2d937f2008-04-17 20:05:37 +02002135 return -1;
2136
Alan Coxebd2c8f2009-09-19 13:13:28 -07002137 port = state->uart_port;
Jason Wesself2d937f2008-04-17 20:05:37 +02002138 if (!(port->ops->poll_get_char && port->ops->poll_put_char))
2139 return -1;
2140
Anton Vorontsovc7f3e702012-09-24 14:27:53 -07002141 if (port->ops->poll_init) {
2142 struct tty_port *tport = &state->port;
2143
2144 ret = 0;
2145 mutex_lock(&tport->mutex);
2146 /*
2147 * We don't set ASYNCB_INITIALIZED as we only initialized the
2148 * hw, e.g. state->xmit is still uninitialized.
2149 */
2150 if (!test_bit(ASYNCB_INITIALIZED, &tport->flags))
2151 ret = port->ops->poll_init(port);
2152 mutex_unlock(&tport->mutex);
2153 if (ret)
2154 return ret;
2155 }
2156
Jason Wesself2d937f2008-04-17 20:05:37 +02002157 if (options) {
2158 uart_parse_options(options, &baud, &parity, &bits, &flow);
2159 return uart_set_options(port, NULL, baud, parity, bits, flow);
2160 }
2161
2162 return 0;
2163}
2164
2165static int uart_poll_get_char(struct tty_driver *driver, int line)
2166{
2167 struct uart_driver *drv = driver->driver_state;
2168 struct uart_state *state = drv->state + line;
2169 struct uart_port *port;
2170
Alan Coxebd2c8f2009-09-19 13:13:28 -07002171 if (!state || !state->uart_port)
Jason Wesself2d937f2008-04-17 20:05:37 +02002172 return -1;
2173
Alan Coxebd2c8f2009-09-19 13:13:28 -07002174 port = state->uart_port;
Jason Wesself2d937f2008-04-17 20:05:37 +02002175 return port->ops->poll_get_char(port);
2176}
2177
2178static void uart_poll_put_char(struct tty_driver *driver, int line, char ch)
2179{
2180 struct uart_driver *drv = driver->driver_state;
2181 struct uart_state *state = drv->state + line;
2182 struct uart_port *port;
2183
Alan Coxebd2c8f2009-09-19 13:13:28 -07002184 if (!state || !state->uart_port)
Jason Wesself2d937f2008-04-17 20:05:37 +02002185 return;
2186
Alan Coxebd2c8f2009-09-19 13:13:28 -07002187 port = state->uart_port;
Jason Wesself2d937f2008-04-17 20:05:37 +02002188 port->ops->poll_put_char(port, ch);
2189}
2190#endif
2191
Jeff Dikeb68e31d2006-10-02 02:17:18 -07002192static const struct tty_operations uart_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 .open = uart_open,
2194 .close = uart_close,
2195 .write = uart_write,
2196 .put_char = uart_put_char,
2197 .flush_chars = uart_flush_chars,
2198 .write_room = uart_write_room,
2199 .chars_in_buffer= uart_chars_in_buffer,
2200 .flush_buffer = uart_flush_buffer,
2201 .ioctl = uart_ioctl,
2202 .throttle = uart_throttle,
2203 .unthrottle = uart_unthrottle,
2204 .send_xchar = uart_send_xchar,
2205 .set_termios = uart_set_termios,
Alan Cox64e91592008-06-03 15:18:54 +01002206 .set_ldisc = uart_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 .stop = uart_stop,
2208 .start = uart_start,
2209 .hangup = uart_hangup,
2210 .break_ctl = uart_break_ctl,
2211 .wait_until_sent= uart_wait_until_sent,
2212#ifdef CONFIG_PROC_FS
Alexey Dobriyand196a942009-03-31 15:19:21 -07002213 .proc_fops = &uart_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214#endif
2215 .tiocmget = uart_tiocmget,
2216 .tiocmset = uart_tiocmset,
Alan Coxd281da72010-09-16 18:21:24 +01002217 .get_icount = uart_get_icount,
Jason Wesself2d937f2008-04-17 20:05:37 +02002218#ifdef CONFIG_CONSOLE_POLL
2219 .poll_init = uart_poll_init,
2220 .poll_get_char = uart_poll_get_char,
2221 .poll_put_char = uart_poll_put_char,
2222#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223};
2224
Alan Coxde0c8cb2010-06-01 22:52:58 +02002225static const struct tty_port_operations uart_port_ops = {
Jiri Slaby0b1db832011-11-09 21:33:50 +01002226 .activate = uart_port_activate,
2227 .shutdown = uart_port_shutdown,
Alan Coxde0c8cb2010-06-01 22:52:58 +02002228 .carrier_raised = uart_carrier_raised,
2229 .dtr_rts = uart_dtr_rts,
2230};
2231
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232/**
2233 * uart_register_driver - register a driver with the uart core layer
2234 * @drv: low level driver structure
2235 *
2236 * Register a uart driver with the core driver. We in turn register
2237 * with the tty layer, and initialise the core driver per-port state.
2238 *
2239 * We have a proc file in /proc/tty/driver which is named after the
2240 * normal driver.
2241 *
2242 * drv->port should be NULL, and the per-port structures should be
2243 * registered using uart_add_one_port after this call has succeeded.
2244 */
2245int uart_register_driver(struct uart_driver *drv)
2246{
André Goddard Rosa9e845ab2009-10-25 11:16:32 -02002247 struct tty_driver *normal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 int i, retval;
2249
2250 BUG_ON(drv->state);
2251
2252 /*
2253 * Maybe we should be using a slab cache for this, especially if
2254 * we have a large number of ports to handle.
2255 */
Burman Yan8f31bb32007-02-14 00:33:07 -08002256 drv->state = kzalloc(sizeof(struct uart_state) * drv->nr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 if (!drv->state)
2258 goto out;
2259
André Goddard Rosa9e845ab2009-10-25 11:16:32 -02002260 normal = alloc_tty_driver(drv->nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 if (!normal)
André Goddard Rosa9e845ab2009-10-25 11:16:32 -02002262 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
2264 drv->tty_driver = normal;
2265
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 normal->driver_name = drv->driver_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 normal->name = drv->dev_name;
2268 normal->major = drv->major;
2269 normal->minor_start = drv->minor;
2270 normal->type = TTY_DRIVER_TYPE_SERIAL;
2271 normal->subtype = SERIAL_TYPE_NORMAL;
2272 normal->init_termios = tty_std_termios;
2273 normal->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
Alan Cox606d0992006-12-08 02:38:45 -08002274 normal->init_termios.c_ispeed = normal->init_termios.c_ospeed = 9600;
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -07002275 normal->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 normal->driver_state = drv;
2277 tty_set_operations(normal, &uart_ops);
2278
2279 /*
2280 * Initialise the UART state(s).
2281 */
2282 for (i = 0; i < drv->nr; i++) {
2283 struct uart_state *state = drv->state + i;
Alan Coxa2bceae2009-09-19 13:13:31 -07002284 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
Alan Coxa2bceae2009-09-19 13:13:31 -07002286 tty_port_init(port);
Alan Coxde0c8cb2010-06-01 22:52:58 +02002287 port->ops = &uart_port_ops;
Jiri Slaby4cb0fbf2011-11-09 21:33:45 +01002288 port->close_delay = HZ / 2; /* .5 seconds */
2289 port->closing_wait = 30 * HZ;/* 30 seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 }
2291
2292 retval = tty_register_driver(normal);
André Goddard Rosa9e845ab2009-10-25 11:16:32 -02002293 if (retval >= 0)
2294 return retval;
2295
2296 put_tty_driver(normal);
2297out_kfree:
2298 kfree(drv->state);
2299out:
2300 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301}
2302
2303/**
2304 * uart_unregister_driver - remove a driver from the uart core layer
2305 * @drv: low level driver structure
2306 *
2307 * Remove all references to a driver from the core driver. The low
2308 * level driver must have removed all its ports via the
2309 * uart_remove_one_port() if it registered them with uart_add_one_port().
2310 * (ie, drv->port == NULL)
2311 */
2312void uart_unregister_driver(struct uart_driver *drv)
2313{
2314 struct tty_driver *p = drv->tty_driver;
2315 tty_unregister_driver(p);
2316 put_tty_driver(p);
2317 kfree(drv->state);
Alan Cox1e66cded2012-05-14 14:51:22 +01002318 drv->state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 drv->tty_driver = NULL;
2320}
2321
2322struct tty_driver *uart_console_device(struct console *co, int *index)
2323{
2324 struct uart_driver *p = co->data;
2325 *index = co->index;
2326 return p->tty_driver;
2327}
2328
Tomas Hlavacek6915c0e2012-09-06 03:17:18 +02002329static ssize_t uart_get_attr_uartclk(struct device *dev,
2330 struct device_attribute *attr, char *buf)
2331{
2332 int ret;
Tomas Hlavacek6915c0e2012-09-06 03:17:18 +02002333 struct tty_port *port = dev_get_drvdata(dev);
2334 struct uart_state *state = container_of(port, struct uart_state, port);
Tomas Hlavacekb1b79912012-09-06 23:17:47 +02002335
Tomas Hlavacek6915c0e2012-09-06 03:17:18 +02002336 mutex_lock(&state->port.mutex);
2337 ret = snprintf(buf, PAGE_SIZE, "%d\n", state->uart_port->uartclk);
2338 mutex_unlock(&state->port.mutex);
2339
2340 return ret;
2341}
2342
2343static DEVICE_ATTR(uartclk, S_IRUSR | S_IRGRP, uart_get_attr_uartclk, NULL);
2344
2345static struct attribute *tty_dev_attrs[] = {
2346 &dev_attr_uartclk.attr,
2347 NULL,
2348 };
2349
Tomas Hlavacekb1b79912012-09-06 23:17:47 +02002350static const struct attribute_group tty_dev_attr_group = {
Tomas Hlavacek6915c0e2012-09-06 03:17:18 +02002351 .attrs = tty_dev_attrs,
2352 };
2353
2354static const struct attribute_group *tty_dev_attr_groups[] = {
2355 &tty_dev_attr_group,
2356 NULL
2357 };
2358
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359/**
2360 * uart_add_one_port - attach a driver-defined port structure
2361 * @drv: pointer to the uart low level driver structure for this port
Randy Dunlap1b9894f2009-09-21 11:12:03 -07002362 * @uport: uart port structure to use for this port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 *
2364 * This allows the driver to register its own uart_port structure
2365 * with the core driver. The main purpose is to allow the low
2366 * level uart drivers to expand uart_port, rather than having yet
2367 * more levels of structures.
2368 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002369int uart_add_one_port(struct uart_driver *drv, struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370{
2371 struct uart_state *state;
Alan Coxa2bceae2009-09-19 13:13:31 -07002372 struct tty_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 int ret = 0;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002374 struct device *tty_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375
2376 BUG_ON(in_interrupt());
2377
Alan Coxa2bceae2009-09-19 13:13:31 -07002378 if (uport->line >= drv->nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 return -EINVAL;
2380
Alan Coxa2bceae2009-09-19 13:13:31 -07002381 state = drv->state + uport->line;
2382 port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002384 mutex_lock(&port_mutex);
Alan Coxa2bceae2009-09-19 13:13:31 -07002385 mutex_lock(&port->mutex);
Alan Coxebd2c8f2009-09-19 13:13:28 -07002386 if (state->uart_port) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 ret = -EINVAL;
2388 goto out;
2389 }
2390
Alan Coxa2bceae2009-09-19 13:13:31 -07002391 state->uart_port = uport;
Russell King97d97222007-09-01 21:25:09 +01002392 state->pm_state = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
Alan Coxa2bceae2009-09-19 13:13:31 -07002394 uport->cons = drv->cons;
2395 uport->state = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
Russell King976ecd12005-07-03 21:05:45 +01002397 /*
2398 * If this port is a console, then the spinlock is already
2399 * initialised.
2400 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002401 if (!(uart_console(uport) && (uport->cons->flags & CON_ENABLED))) {
2402 spin_lock_init(&uport->lock);
2403 lockdep_set_class(&uport->lock, &port_lock_key);
Ingo Molnar13e83592006-07-03 00:25:03 -07002404 }
Russell King976ecd12005-07-03 21:05:45 +01002405
Alan Coxa2bceae2009-09-19 13:13:31 -07002406 uart_configure_port(drv, state, uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
2408 /*
2409 * Register the port whether it's detected or not. This allows
2410 * setserial to be used to alter this ports parameters.
2411 */
Tomas Hlavacekb1b79912012-09-06 23:17:47 +02002412 tty_dev = tty_port_register_device_attr(port, drv->tty_driver,
2413 uport->line, uport->dev, port, tty_dev_attr_groups);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002414 if (likely(!IS_ERR(tty_dev))) {
Simon Glass77359832012-01-19 11:28:56 -08002415 device_set_wakeup_capable(tty_dev, 1);
2416 } else {
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002417 printk(KERN_ERR "Cannot register tty device on line %d\n",
Alan Coxa2bceae2009-09-19 13:13:31 -07002418 uport->line);
Simon Glass77359832012-01-19 11:28:56 -08002419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
2421 /*
Russell King68ac64c2006-04-30 11:13:50 +01002422 * Ensure UPF_DEAD is not set.
2423 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002424 uport->flags &= ~UPF_DEAD;
Russell King68ac64c2006-04-30 11:13:50 +01002425
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 out:
Alan Coxa2bceae2009-09-19 13:13:31 -07002427 mutex_unlock(&port->mutex);
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002428 mutex_unlock(&port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
2430 return ret;
2431}
2432
2433/**
2434 * uart_remove_one_port - detach a driver defined port structure
2435 * @drv: pointer to the uart low level driver structure for this port
Randy Dunlap1b9894f2009-09-21 11:12:03 -07002436 * @uport: uart port structure for this port
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 *
2438 * This unhooks (and hangs up) the specified port structure from the
2439 * core driver. No further calls will be made to the low-level code
2440 * for this port.
2441 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002442int uart_remove_one_port(struct uart_driver *drv, struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443{
Alan Coxa2bceae2009-09-19 13:13:31 -07002444 struct uart_state *state = drv->state + uport->line;
2445 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
2447 BUG_ON(in_interrupt());
2448
Alan Coxa2bceae2009-09-19 13:13:31 -07002449 if (state->uart_port != uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 printk(KERN_ALERT "Removing wrong port: %p != %p\n",
Alan Coxa2bceae2009-09-19 13:13:31 -07002451 state->uart_port, uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002453 mutex_lock(&port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
2455 /*
Russell King68ac64c2006-04-30 11:13:50 +01002456 * Mark the port "dead" - this prevents any opens from
2457 * succeeding while we shut down the port.
2458 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002459 mutex_lock(&port->mutex);
2460 uport->flags |= UPF_DEAD;
2461 mutex_unlock(&port->mutex);
Russell King68ac64c2006-04-30 11:13:50 +01002462
2463 /*
Greg Kroah-Hartmanaa4148c2005-06-20 21:15:16 -07002464 * Remove the devices from the tty layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002466 tty_unregister_device(drv->tty_driver, uport->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
Alan Coxa2bceae2009-09-19 13:13:31 -07002468 if (port->tty)
2469 tty_vhangup(port->tty);
Russell King68ac64c2006-04-30 11:13:50 +01002470
2471 /*
Russell King68ac64c2006-04-30 11:13:50 +01002472 * Free the port IO and memory resources, if any.
2473 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002474 if (uport->type != PORT_UNKNOWN)
2475 uport->ops->release_port(uport);
Russell King68ac64c2006-04-30 11:13:50 +01002476
2477 /*
2478 * Indicate that there isn't a port here anymore.
2479 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002480 uport->type = PORT_UNKNOWN;
Russell King68ac64c2006-04-30 11:13:50 +01002481
Alan Coxebd2c8f2009-09-19 13:13:28 -07002482 state->uart_port = NULL;
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002483 mutex_unlock(&port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
2485 return 0;
2486}
2487
2488/*
2489 * Are the two ports equivalent?
2490 */
2491int uart_match_port(struct uart_port *port1, struct uart_port *port2)
2492{
2493 if (port1->iotype != port2->iotype)
2494 return 0;
2495
2496 switch (port1->iotype) {
2497 case UPIO_PORT:
2498 return (port1->iobase == port2->iobase);
2499 case UPIO_HUB6:
2500 return (port1->iobase == port2->iobase) &&
2501 (port1->hub6 == port2->hub6);
2502 case UPIO_MEM:
Sergei Shtylyovd21b55d2006-08-28 19:49:03 +04002503 case UPIO_MEM32:
2504 case UPIO_AU:
2505 case UPIO_TSI:
Benjamin Herrenschmidt1624f002006-01-04 18:09:44 +00002506 return (port1->mapbase == port2->mapbase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 }
2508 return 0;
2509}
2510EXPORT_SYMBOL(uart_match_port);
2511
Jiri Slaby027d7da2011-11-09 21:33:43 +01002512/**
2513 * uart_handle_dcd_change - handle a change of carrier detect state
2514 * @uport: uart_port structure for the open port
2515 * @status: new carrier detect status, nonzero if active
2516 */
2517void uart_handle_dcd_change(struct uart_port *uport, unsigned int status)
2518{
2519 struct uart_state *state = uport->state;
2520 struct tty_port *port = &state->port;
Alan Cox43eca0a2012-09-19 15:35:46 +01002521 struct tty_ldisc *ld = NULL;
Jiri Slaby027d7da2011-11-09 21:33:43 +01002522 struct pps_event_time ts;
Alan Cox43eca0a2012-09-19 15:35:46 +01002523 struct tty_struct *tty = port->tty;
Jiri Slaby027d7da2011-11-09 21:33:43 +01002524
Alan Cox43eca0a2012-09-19 15:35:46 +01002525 if (tty)
2526 ld = tty_ldisc_ref(tty);
Jiri Slaby027d7da2011-11-09 21:33:43 +01002527 if (ld && ld->ops->dcd_change)
2528 pps_get_ts(&ts);
2529
2530 uport->icount.dcd++;
2531#ifdef CONFIG_HARD_PPS
2532 if ((uport->flags & UPF_HARDPPS_CD) && status)
2533 hardpps();
2534#endif
2535
2536 if (port->flags & ASYNC_CHECK_CD) {
2537 if (status)
2538 wake_up_interruptible(&port->open_wait);
Alan Cox43eca0a2012-09-19 15:35:46 +01002539 else if (tty)
2540 tty_hangup(tty);
Jiri Slaby027d7da2011-11-09 21:33:43 +01002541 }
2542
2543 if (ld && ld->ops->dcd_change)
Alan Cox43eca0a2012-09-19 15:35:46 +01002544 ld->ops->dcd_change(tty, status, &ts);
Jiri Slaby027d7da2011-11-09 21:33:43 +01002545 if (ld)
2546 tty_ldisc_deref(ld);
2547}
2548EXPORT_SYMBOL_GPL(uart_handle_dcd_change);
2549
2550/**
2551 * uart_handle_cts_change - handle a change of clear-to-send state
2552 * @uport: uart_port structure for the open port
2553 * @status: new clear to send status, nonzero if active
2554 */
2555void uart_handle_cts_change(struct uart_port *uport, unsigned int status)
2556{
2557 struct tty_port *port = &uport->state->port;
2558 struct tty_struct *tty = port->tty;
2559
2560 uport->icount.cts++;
2561
Huang Shijief21ec3d2012-08-22 22:13:36 -04002562 if (tty_port_cts_enabled(port)) {
Jiri Slaby027d7da2011-11-09 21:33:43 +01002563 if (tty->hw_stopped) {
2564 if (status) {
2565 tty->hw_stopped = 0;
2566 uport->ops->start_tx(uport);
2567 uart_write_wakeup(uport);
2568 }
2569 } else {
2570 if (!status) {
2571 tty->hw_stopped = 1;
2572 uport->ops->stop_tx(uport);
2573 }
2574 }
2575 }
2576}
2577EXPORT_SYMBOL_GPL(uart_handle_cts_change);
2578
Jiri Slabycf755252011-11-09 21:33:47 +01002579/**
2580 * uart_insert_char - push a char to the uart layer
2581 *
2582 * User is responsible to call tty_flip_buffer_push when they are done with
2583 * insertion.
2584 *
2585 * @port: corresponding port
2586 * @status: state of the serial port RX buffer (LSR for 8250)
2587 * @overrun: mask of overrun bits in @status
2588 * @ch: character to push
2589 * @flag: flag for the character (see TTY_NORMAL and friends)
2590 */
Jiri Slaby027d7da2011-11-09 21:33:43 +01002591void uart_insert_char(struct uart_port *port, unsigned int status,
2592 unsigned int overrun, unsigned int ch, unsigned int flag)
2593{
2594 struct tty_struct *tty = port->state->port.tty;
2595
2596 if ((status & port->ignore_status_mask & ~overrun) == 0)
Corbindabfb352012-05-23 09:37:31 -05002597 if (tty_insert_flip_char(tty, ch, flag) == 0)
2598 ++port->icount.buf_overrun;
Jiri Slaby027d7da2011-11-09 21:33:43 +01002599
2600 /*
2601 * Overrun is special. Since it's reported immediately,
2602 * it doesn't affect the current character.
2603 */
2604 if (status & ~port->ignore_status_mask & overrun)
Corbindabfb352012-05-23 09:37:31 -05002605 if (tty_insert_flip_char(tty, 0, TTY_OVERRUN) == 0)
2606 ++port->icount.buf_overrun;
Jiri Slaby027d7da2011-11-09 21:33:43 +01002607}
2608EXPORT_SYMBOL_GPL(uart_insert_char);
2609
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610EXPORT_SYMBOL(uart_write_wakeup);
2611EXPORT_SYMBOL(uart_register_driver);
2612EXPORT_SYMBOL(uart_unregister_driver);
2613EXPORT_SYMBOL(uart_suspend_port);
2614EXPORT_SYMBOL(uart_resume_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615EXPORT_SYMBOL(uart_add_one_port);
2616EXPORT_SYMBOL(uart_remove_one_port);
2617
2618MODULE_DESCRIPTION("Serial driver core");
2619MODULE_LICENSE("GPL");