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