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