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