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