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