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