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