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