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