serial: Clear rs485 struct when non-RS485 mode is set
[linux-2.6-microblaze.git] / drivers / tty / serial / serial_core.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  *  Driver core for serial ports
4  *
5  *  Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
6  *
7  *  Copyright 1999 ARM Limited
8  *  Copyright (C) 2000-2001 Deep Blue Solutions Ltd.
9  */
10 #include <linux/module.h>
11 #include <linux/tty.h>
12 #include <linux/tty_flip.h>
13 #include <linux/slab.h>
14 #include <linux/sched/signal.h>
15 #include <linux/init.h>
16 #include <linux/console.h>
17 #include <linux/gpio/consumer.h>
18 #include <linux/of.h>
19 #include <linux/proc_fs.h>
20 #include <linux/seq_file.h>
21 #include <linux/device.h>
22 #include <linux/serial.h> /* for serial_state and serial_icounter_struct */
23 #include <linux/serial_core.h>
24 #include <linux/sysrq.h>
25 #include <linux/delay.h>
26 #include <linux/mutex.h>
27 #include <linux/math64.h>
28 #include <linux/security.h>
29
30 #include <linux/irq.h>
31 #include <linux/uaccess.h>
32
33 /*
34  * This is used to lock changes in serial line configuration.
35  */
36 static DEFINE_MUTEX(port_mutex);
37
38 /*
39  * lockdep: port->lock is initialized in two places, but we
40  *          want only one lock-class:
41  */
42 static struct lock_class_key port_lock_key;
43
44 #define HIGH_BITS_OFFSET        ((sizeof(long)-sizeof(int))*8)
45
46 /*
47  * Max time with active RTS before/after data is sent.
48  */
49 #define RS485_MAX_RTS_DELAY     100 /* msecs */
50
51 static void uart_change_speed(struct tty_struct *tty, struct uart_state *state,
52                                         struct ktermios *old_termios);
53 static void uart_wait_until_sent(struct tty_struct *tty, int timeout);
54 static void uart_change_pm(struct uart_state *state,
55                            enum uart_pm_state pm_state);
56
57 static void uart_port_shutdown(struct tty_port *port);
58
59 static int uart_dcd_enabled(struct uart_port *uport)
60 {
61         return !!(uport->status & UPSTAT_DCD_ENABLE);
62 }
63
64 static inline struct uart_port *uart_port_ref(struct uart_state *state)
65 {
66         if (atomic_add_unless(&state->refcount, 1, 0))
67                 return state->uart_port;
68         return NULL;
69 }
70
71 static inline void uart_port_deref(struct uart_port *uport)
72 {
73         if (atomic_dec_and_test(&uport->state->refcount))
74                 wake_up(&uport->state->remove_wait);
75 }
76
77 #define uart_port_lock(state, flags)                                    \
78         ({                                                              \
79                 struct uart_port *__uport = uart_port_ref(state);       \
80                 if (__uport)                                            \
81                         spin_lock_irqsave(&__uport->lock, flags);       \
82                 __uport;                                                \
83         })
84
85 #define uart_port_unlock(uport, flags)                                  \
86         ({                                                              \
87                 struct uart_port *__uport = uport;                      \
88                 if (__uport) {                                          \
89                         spin_unlock_irqrestore(&__uport->lock, flags);  \
90                         uart_port_deref(__uport);                       \
91                 }                                                       \
92         })
93
94 static inline struct uart_port *uart_port_check(struct uart_state *state)
95 {
96         lockdep_assert_held(&state->port.mutex);
97         return state->uart_port;
98 }
99
100 /*
101  * This routine is used by the interrupt handler to schedule processing in
102  * the software interrupt portion of the driver.
103  */
104 void uart_write_wakeup(struct uart_port *port)
105 {
106         struct uart_state *state = port->state;
107         /*
108          * This means you called this function _after_ the port was
109          * closed.  No cookie for you.
110          */
111         BUG_ON(!state);
112         tty_port_tty_wakeup(&state->port);
113 }
114 EXPORT_SYMBOL(uart_write_wakeup);
115
116 static void uart_stop(struct tty_struct *tty)
117 {
118         struct uart_state *state = tty->driver_data;
119         struct uart_port *port;
120         unsigned long flags;
121
122         port = uart_port_lock(state, flags);
123         if (port)
124                 port->ops->stop_tx(port);
125         uart_port_unlock(port, flags);
126 }
127
128 static void __uart_start(struct tty_struct *tty)
129 {
130         struct uart_state *state = tty->driver_data;
131         struct uart_port *port = state->uart_port;
132
133         if (port && !uart_tx_stopped(port))
134                 port->ops->start_tx(port);
135 }
136
137 static void uart_start(struct tty_struct *tty)
138 {
139         struct uart_state *state = tty->driver_data;
140         struct uart_port *port;
141         unsigned long flags;
142
143         port = uart_port_lock(state, flags);
144         __uart_start(tty);
145         uart_port_unlock(port, flags);
146 }
147
148 static void
149 uart_update_mctrl(struct uart_port *port, unsigned int set, unsigned int clear)
150 {
151         unsigned long flags;
152         unsigned int old;
153
154         if (port->rs485.flags & SER_RS485_ENABLED) {
155                 set &= ~TIOCM_RTS;
156                 clear &= ~TIOCM_RTS;
157         }
158
159         spin_lock_irqsave(&port->lock, flags);
160         old = port->mctrl;
161         port->mctrl = (old & ~clear) | set;
162         if (old != port->mctrl)
163                 port->ops->set_mctrl(port, port->mctrl);
164         spin_unlock_irqrestore(&port->lock, flags);
165 }
166
167 #define uart_set_mctrl(port, set)       uart_update_mctrl(port, set, 0)
168 #define uart_clear_mctrl(port, clear)   uart_update_mctrl(port, 0, clear)
169
170 static void uart_port_dtr_rts(struct uart_port *uport, int raise)
171 {
172         if (raise)
173                 uart_set_mctrl(uport, TIOCM_DTR | TIOCM_RTS);
174         else
175                 uart_clear_mctrl(uport, TIOCM_DTR | TIOCM_RTS);
176 }
177
178 /*
179  * Startup the port.  This will be called once per open.  All calls
180  * will be serialised by the per-port mutex.
181  */
182 static int uart_port_startup(struct tty_struct *tty, struct uart_state *state,
183                 int init_hw)
184 {
185         struct uart_port *uport = uart_port_check(state);
186         unsigned long flags;
187         unsigned long page;
188         int retval = 0;
189
190         if (uport->type == PORT_UNKNOWN)
191                 return 1;
192
193         /*
194          * Make sure the device is in D0 state.
195          */
196         uart_change_pm(state, UART_PM_STATE_ON);
197
198         /*
199          * Initialise and allocate the transmit and temporary
200          * buffer.
201          */
202         page = get_zeroed_page(GFP_KERNEL);
203         if (!page)
204                 return -ENOMEM;
205
206         uart_port_lock(state, flags);
207         if (!state->xmit.buf) {
208                 state->xmit.buf = (unsigned char *) page;
209                 uart_circ_clear(&state->xmit);
210                 uart_port_unlock(uport, flags);
211         } else {
212                 uart_port_unlock(uport, flags);
213                 /*
214                  * Do not free() the page under the port lock, see
215                  * uart_shutdown().
216                  */
217                 free_page(page);
218         }
219
220         retval = uport->ops->startup(uport);
221         if (retval == 0) {
222                 if (uart_console(uport) && uport->cons->cflag) {
223                         tty->termios.c_cflag = uport->cons->cflag;
224                         tty->termios.c_ispeed = uport->cons->ispeed;
225                         tty->termios.c_ospeed = uport->cons->ospeed;
226                         uport->cons->cflag = 0;
227                         uport->cons->ispeed = 0;
228                         uport->cons->ospeed = 0;
229                 }
230                 /*
231                  * Initialise the hardware port settings.
232                  */
233                 uart_change_speed(tty, state, NULL);
234
235                 /*
236                  * Setup the RTS and DTR signals once the
237                  * port is open and ready to respond.
238                  */
239                 if (init_hw && C_BAUD(tty))
240                         uart_port_dtr_rts(uport, 1);
241         }
242
243         /*
244          * This is to allow setserial on this port. People may want to set
245          * port/irq/type and then reconfigure the port properly if it failed
246          * now.
247          */
248         if (retval && capable(CAP_SYS_ADMIN))
249                 return 1;
250
251         return retval;
252 }
253
254 static int uart_startup(struct tty_struct *tty, struct uart_state *state,
255                 int init_hw)
256 {
257         struct tty_port *port = &state->port;
258         int retval;
259
260         if (tty_port_initialized(port))
261                 return 0;
262
263         retval = uart_port_startup(tty, state, init_hw);
264         if (retval)
265                 set_bit(TTY_IO_ERROR, &tty->flags);
266
267         return retval;
268 }
269
270 /*
271  * This routine will shutdown a serial port; interrupts are disabled, and
272  * DTR is dropped if the hangup on close termio flag is on.  Calls to
273  * uart_shutdown are serialised by the per-port semaphore.
274  *
275  * uport == NULL if uart_port has already been removed
276  */
277 static void uart_shutdown(struct tty_struct *tty, struct uart_state *state)
278 {
279         struct uart_port *uport = uart_port_check(state);
280         struct tty_port *port = &state->port;
281         unsigned long flags;
282         char *xmit_buf = NULL;
283
284         /*
285          * Set the TTY IO error marker
286          */
287         if (tty)
288                 set_bit(TTY_IO_ERROR, &tty->flags);
289
290         if (tty_port_initialized(port)) {
291                 tty_port_set_initialized(port, 0);
292
293                 /*
294                  * Turn off DTR and RTS early.
295                  */
296                 if (uport && uart_console(uport) && tty) {
297                         uport->cons->cflag = tty->termios.c_cflag;
298                         uport->cons->ispeed = tty->termios.c_ispeed;
299                         uport->cons->ospeed = tty->termios.c_ospeed;
300                 }
301
302                 if (!tty || C_HUPCL(tty))
303                         uart_port_dtr_rts(uport, 0);
304
305                 uart_port_shutdown(port);
306         }
307
308         /*
309          * It's possible for shutdown to be called after suspend if we get
310          * a DCD drop (hangup) at just the right time.  Clear suspended bit so
311          * we don't try to resume a port that has been shutdown.
312          */
313         tty_port_set_suspended(port, 0);
314
315         /*
316          * Do not free() the transmit buffer page under the port lock since
317          * this can create various circular locking scenarios. For instance,
318          * console driver may need to allocate/free a debug object, which
319          * can endup in printk() recursion.
320          */
321         uart_port_lock(state, flags);
322         xmit_buf = state->xmit.buf;
323         state->xmit.buf = NULL;
324         uart_port_unlock(uport, flags);
325
326         free_page((unsigned long)xmit_buf);
327 }
328
329 /**
330  *      uart_update_timeout - update per-port FIFO timeout.
331  *      @port:  uart_port structure describing the port
332  *      @cflag: termios cflag value
333  *      @baud:  speed of the port
334  *
335  *      Set the port FIFO timeout value.  The @cflag value should
336  *      reflect the actual hardware settings.
337  */
338 void
339 uart_update_timeout(struct uart_port *port, unsigned int cflag,
340                     unsigned int baud)
341 {
342         unsigned int size = tty_get_frame_size(cflag);
343         u64 frame_time;
344
345         frame_time = (u64)size * NSEC_PER_SEC;
346         size *= port->fifosize;
347
348         /*
349          * Figure the timeout to send the above number of bits.
350          * Add .02 seconds of slop
351          */
352         port->timeout = (HZ * size) / baud + HZ/50;
353         port->frame_time = DIV64_U64_ROUND_UP(frame_time, baud);
354 }
355 EXPORT_SYMBOL(uart_update_timeout);
356
357 /**
358  *      uart_get_baud_rate - return baud rate for a particular port
359  *      @port: uart_port structure describing the port in question.
360  *      @termios: desired termios settings.
361  *      @old: old termios (or NULL)
362  *      @min: minimum acceptable baud rate
363  *      @max: maximum acceptable baud rate
364  *
365  *      Decode the termios structure into a numeric baud rate,
366  *      taking account of the magic 38400 baud rate (with spd_*
367  *      flags), and mapping the %B0 rate to 9600 baud.
368  *
369  *      If the new baud rate is invalid, try the old termios setting.
370  *      If it's still invalid, we try 9600 baud.
371  *
372  *      Update the @termios structure to reflect the baud rate
373  *      we're actually going to be using. Don't do this for the case
374  *      where B0 is requested ("hang up").
375  */
376 unsigned int
377 uart_get_baud_rate(struct uart_port *port, struct ktermios *termios,
378                    struct ktermios *old, unsigned int min, unsigned int max)
379 {
380         unsigned int try;
381         unsigned int baud;
382         unsigned int altbaud;
383         int hung_up = 0;
384         upf_t flags = port->flags & UPF_SPD_MASK;
385
386         switch (flags) {
387         case UPF_SPD_HI:
388                 altbaud = 57600;
389                 break;
390         case UPF_SPD_VHI:
391                 altbaud = 115200;
392                 break;
393         case UPF_SPD_SHI:
394                 altbaud = 230400;
395                 break;
396         case UPF_SPD_WARP:
397                 altbaud = 460800;
398                 break;
399         default:
400                 altbaud = 38400;
401                 break;
402         }
403
404         for (try = 0; try < 2; try++) {
405                 baud = tty_termios_baud_rate(termios);
406
407                 /*
408                  * The spd_hi, spd_vhi, spd_shi, spd_warp kludge...
409                  * Die! Die! Die!
410                  */
411                 if (try == 0 && baud == 38400)
412                         baud = altbaud;
413
414                 /*
415                  * Special case: B0 rate.
416                  */
417                 if (baud == 0) {
418                         hung_up = 1;
419                         baud = 9600;
420                 }
421
422                 if (baud >= min && baud <= max)
423                         return baud;
424
425                 /*
426                  * Oops, the quotient was zero.  Try again with
427                  * the old baud rate if possible.
428                  */
429                 termios->c_cflag &= ~CBAUD;
430                 if (old) {
431                         baud = tty_termios_baud_rate(old);
432                         if (!hung_up)
433                                 tty_termios_encode_baud_rate(termios,
434                                                                 baud, baud);
435                         old = NULL;
436                         continue;
437                 }
438
439                 /*
440                  * As a last resort, if the range cannot be met then clip to
441                  * the nearest chip supported rate.
442                  */
443                 if (!hung_up) {
444                         if (baud <= min)
445                                 tty_termios_encode_baud_rate(termios,
446                                                         min + 1, min + 1);
447                         else
448                                 tty_termios_encode_baud_rate(termios,
449                                                         max - 1, max - 1);
450                 }
451         }
452         /* Should never happen */
453         WARN_ON(1);
454         return 0;
455 }
456 EXPORT_SYMBOL(uart_get_baud_rate);
457
458 /**
459  *      uart_get_divisor - return uart clock divisor
460  *      @port: uart_port structure describing the port.
461  *      @baud: desired baud rate
462  *
463  *      Calculate the uart clock divisor for the port.
464  */
465 unsigned int
466 uart_get_divisor(struct uart_port *port, unsigned int baud)
467 {
468         unsigned int quot;
469
470         /*
471          * Old custom speed handling.
472          */
473         if (baud == 38400 && (port->flags & UPF_SPD_MASK) == UPF_SPD_CUST)
474                 quot = port->custom_divisor;
475         else
476                 quot = DIV_ROUND_CLOSEST(port->uartclk, 16 * baud);
477
478         return quot;
479 }
480 EXPORT_SYMBOL(uart_get_divisor);
481
482 /* Caller holds port mutex */
483 static void uart_change_speed(struct tty_struct *tty, struct uart_state *state,
484                                         struct ktermios *old_termios)
485 {
486         struct uart_port *uport = uart_port_check(state);
487         struct ktermios *termios;
488         int hw_stopped;
489
490         /*
491          * If we have no tty, termios, or the port does not exist,
492          * then we can't set the parameters for this port.
493          */
494         if (!tty || uport->type == PORT_UNKNOWN)
495                 return;
496
497         termios = &tty->termios;
498         uport->ops->set_termios(uport, termios, old_termios);
499
500         /*
501          * Set modem status enables based on termios cflag
502          */
503         spin_lock_irq(&uport->lock);
504         if (termios->c_cflag & CRTSCTS)
505                 uport->status |= UPSTAT_CTS_ENABLE;
506         else
507                 uport->status &= ~UPSTAT_CTS_ENABLE;
508
509         if (termios->c_cflag & CLOCAL)
510                 uport->status &= ~UPSTAT_DCD_ENABLE;
511         else
512                 uport->status |= UPSTAT_DCD_ENABLE;
513
514         /* reset sw-assisted CTS flow control based on (possibly) new mode */
515         hw_stopped = uport->hw_stopped;
516         uport->hw_stopped = uart_softcts_mode(uport) &&
517                                 !(uport->ops->get_mctrl(uport) & TIOCM_CTS);
518         if (uport->hw_stopped) {
519                 if (!hw_stopped)
520                         uport->ops->stop_tx(uport);
521         } else {
522                 if (hw_stopped)
523                         __uart_start(tty);
524         }
525         spin_unlock_irq(&uport->lock);
526 }
527
528 static int uart_put_char(struct tty_struct *tty, unsigned char c)
529 {
530         struct uart_state *state = tty->driver_data;
531         struct uart_port *port;
532         struct circ_buf *circ;
533         unsigned long flags;
534         int ret = 0;
535
536         circ = &state->xmit;
537         port = uart_port_lock(state, flags);
538         if (!circ->buf) {
539                 uart_port_unlock(port, flags);
540                 return 0;
541         }
542
543         if (port && uart_circ_chars_free(circ) != 0) {
544                 circ->buf[circ->head] = c;
545                 circ->head = (circ->head + 1) & (UART_XMIT_SIZE - 1);
546                 ret = 1;
547         }
548         uart_port_unlock(port, flags);
549         return ret;
550 }
551
552 static void uart_flush_chars(struct tty_struct *tty)
553 {
554         uart_start(tty);
555 }
556
557 static int uart_write(struct tty_struct *tty,
558                                         const unsigned char *buf, int count)
559 {
560         struct uart_state *state = tty->driver_data;
561         struct uart_port *port;
562         struct circ_buf *circ;
563         unsigned long flags;
564         int c, ret = 0;
565
566         /*
567          * This means you called this function _after_ the port was
568          * closed.  No cookie for you.
569          */
570         if (!state) {
571                 WARN_ON(1);
572                 return -EL3HLT;
573         }
574
575         port = uart_port_lock(state, flags);
576         circ = &state->xmit;
577         if (!circ->buf) {
578                 uart_port_unlock(port, flags);
579                 return 0;
580         }
581
582         while (port) {
583                 c = CIRC_SPACE_TO_END(circ->head, circ->tail, UART_XMIT_SIZE);
584                 if (count < c)
585                         c = count;
586                 if (c <= 0)
587                         break;
588                 memcpy(circ->buf + circ->head, buf, c);
589                 circ->head = (circ->head + c) & (UART_XMIT_SIZE - 1);
590                 buf += c;
591                 count -= c;
592                 ret += c;
593         }
594
595         __uart_start(tty);
596         uart_port_unlock(port, flags);
597         return ret;
598 }
599
600 static unsigned int uart_write_room(struct tty_struct *tty)
601 {
602         struct uart_state *state = tty->driver_data;
603         struct uart_port *port;
604         unsigned long flags;
605         unsigned int ret;
606
607         port = uart_port_lock(state, flags);
608         ret = uart_circ_chars_free(&state->xmit);
609         uart_port_unlock(port, flags);
610         return ret;
611 }
612
613 static unsigned int uart_chars_in_buffer(struct tty_struct *tty)
614 {
615         struct uart_state *state = tty->driver_data;
616         struct uart_port *port;
617         unsigned long flags;
618         unsigned int ret;
619
620         port = uart_port_lock(state, flags);
621         ret = uart_circ_chars_pending(&state->xmit);
622         uart_port_unlock(port, flags);
623         return ret;
624 }
625
626 static void uart_flush_buffer(struct tty_struct *tty)
627 {
628         struct uart_state *state = tty->driver_data;
629         struct uart_port *port;
630         unsigned long flags;
631
632         /*
633          * This means you called this function _after_ the port was
634          * closed.  No cookie for you.
635          */
636         if (!state) {
637                 WARN_ON(1);
638                 return;
639         }
640
641         pr_debug("uart_flush_buffer(%d) called\n", tty->index);
642
643         port = uart_port_lock(state, flags);
644         if (!port)
645                 return;
646         uart_circ_clear(&state->xmit);
647         if (port->ops->flush_buffer)
648                 port->ops->flush_buffer(port);
649         uart_port_unlock(port, flags);
650         tty_port_tty_wakeup(&state->port);
651 }
652
653 /*
654  * This function performs low-level write of high-priority XON/XOFF
655  * character and accounting for it.
656  *
657  * Requires uart_port to implement .serial_out().
658  */
659 void uart_xchar_out(struct uart_port *uport, int offset)
660 {
661         serial_port_out(uport, offset, uport->x_char);
662         uport->icount.tx++;
663         uport->x_char = 0;
664 }
665 EXPORT_SYMBOL_GPL(uart_xchar_out);
666
667 /*
668  * This function is used to send a high-priority XON/XOFF character to
669  * the device
670  */
671 static void uart_send_xchar(struct tty_struct *tty, char ch)
672 {
673         struct uart_state *state = tty->driver_data;
674         struct uart_port *port;
675         unsigned long flags;
676
677         port = uart_port_ref(state);
678         if (!port)
679                 return;
680
681         if (port->ops->send_xchar)
682                 port->ops->send_xchar(port, ch);
683         else {
684                 spin_lock_irqsave(&port->lock, flags);
685                 port->x_char = ch;
686                 if (ch)
687                         port->ops->start_tx(port);
688                 spin_unlock_irqrestore(&port->lock, flags);
689         }
690         uart_port_deref(port);
691 }
692
693 static void uart_throttle(struct tty_struct *tty)
694 {
695         struct uart_state *state = tty->driver_data;
696         upstat_t mask = UPSTAT_SYNC_FIFO;
697         struct uart_port *port;
698
699         port = uart_port_ref(state);
700         if (!port)
701                 return;
702
703         if (I_IXOFF(tty))
704                 mask |= UPSTAT_AUTOXOFF;
705         if (C_CRTSCTS(tty))
706                 mask |= UPSTAT_AUTORTS;
707
708         if (port->status & mask) {
709                 port->ops->throttle(port);
710                 mask &= ~port->status;
711         }
712
713         if (mask & UPSTAT_AUTORTS)
714                 uart_clear_mctrl(port, TIOCM_RTS);
715
716         if (mask & UPSTAT_AUTOXOFF)
717                 uart_send_xchar(tty, STOP_CHAR(tty));
718
719         uart_port_deref(port);
720 }
721
722 static void uart_unthrottle(struct tty_struct *tty)
723 {
724         struct uart_state *state = tty->driver_data;
725         upstat_t mask = UPSTAT_SYNC_FIFO;
726         struct uart_port *port;
727
728         port = uart_port_ref(state);
729         if (!port)
730                 return;
731
732         if (I_IXOFF(tty))
733                 mask |= UPSTAT_AUTOXOFF;
734         if (C_CRTSCTS(tty))
735                 mask |= UPSTAT_AUTORTS;
736
737         if (port->status & mask) {
738                 port->ops->unthrottle(port);
739                 mask &= ~port->status;
740         }
741
742         if (mask & UPSTAT_AUTORTS)
743                 uart_set_mctrl(port, TIOCM_RTS);
744
745         if (mask & UPSTAT_AUTOXOFF)
746                 uart_send_xchar(tty, START_CHAR(tty));
747
748         uart_port_deref(port);
749 }
750
751 static int uart_get_info(struct tty_port *port, struct serial_struct *retinfo)
752 {
753         struct uart_state *state = container_of(port, struct uart_state, port);
754         struct uart_port *uport;
755         int ret = -ENODEV;
756
757         /*
758          * Ensure the state we copy is consistent and no hardware changes
759          * occur as we go
760          */
761         mutex_lock(&port->mutex);
762         uport = uart_port_check(state);
763         if (!uport)
764                 goto out;
765
766         retinfo->type       = uport->type;
767         retinfo->line       = uport->line;
768         retinfo->port       = uport->iobase;
769         if (HIGH_BITS_OFFSET)
770                 retinfo->port_high = (long) uport->iobase >> HIGH_BITS_OFFSET;
771         retinfo->irq                = uport->irq;
772         retinfo->flags      = (__force int)uport->flags;
773         retinfo->xmit_fifo_size  = uport->fifosize;
774         retinfo->baud_base          = uport->uartclk / 16;
775         retinfo->close_delay        = jiffies_to_msecs(port->close_delay) / 10;
776         retinfo->closing_wait    = port->closing_wait == ASYNC_CLOSING_WAIT_NONE ?
777                                 ASYNC_CLOSING_WAIT_NONE :
778                                 jiffies_to_msecs(port->closing_wait) / 10;
779         retinfo->custom_divisor  = uport->custom_divisor;
780         retinfo->hub6       = uport->hub6;
781         retinfo->io_type         = uport->iotype;
782         retinfo->iomem_reg_shift = uport->regshift;
783         retinfo->iomem_base      = (void *)(unsigned long)uport->mapbase;
784
785         ret = 0;
786 out:
787         mutex_unlock(&port->mutex);
788         return ret;
789 }
790
791 static int uart_get_info_user(struct tty_struct *tty,
792                          struct serial_struct *ss)
793 {
794         struct uart_state *state = tty->driver_data;
795         struct tty_port *port = &state->port;
796
797         return uart_get_info(port, ss) < 0 ? -EIO : 0;
798 }
799
800 static int uart_set_info(struct tty_struct *tty, struct tty_port *port,
801                          struct uart_state *state,
802                          struct serial_struct *new_info)
803 {
804         struct uart_port *uport = uart_port_check(state);
805         unsigned long new_port;
806         unsigned int change_irq, change_port, closing_wait;
807         unsigned int old_custom_divisor, close_delay;
808         upf_t old_flags, new_flags;
809         int retval = 0;
810
811         if (!uport)
812                 return -EIO;
813
814         new_port = new_info->port;
815         if (HIGH_BITS_OFFSET)
816                 new_port += (unsigned long) new_info->port_high << HIGH_BITS_OFFSET;
817
818         new_info->irq = irq_canonicalize(new_info->irq);
819         close_delay = msecs_to_jiffies(new_info->close_delay * 10);
820         closing_wait = new_info->closing_wait == ASYNC_CLOSING_WAIT_NONE ?
821                         ASYNC_CLOSING_WAIT_NONE :
822                         msecs_to_jiffies(new_info->closing_wait * 10);
823
824
825         change_irq  = !(uport->flags & UPF_FIXED_PORT)
826                 && new_info->irq != uport->irq;
827
828         /*
829          * Since changing the 'type' of the port changes its resource
830          * allocations, we should treat type changes the same as
831          * IO port changes.
832          */
833         change_port = !(uport->flags & UPF_FIXED_PORT)
834                 && (new_port != uport->iobase ||
835                     (unsigned long)new_info->iomem_base != uport->mapbase ||
836                     new_info->hub6 != uport->hub6 ||
837                     new_info->io_type != uport->iotype ||
838                     new_info->iomem_reg_shift != uport->regshift ||
839                     new_info->type != uport->type);
840
841         old_flags = uport->flags;
842         new_flags = (__force upf_t)new_info->flags;
843         old_custom_divisor = uport->custom_divisor;
844
845         if (!capable(CAP_SYS_ADMIN)) {
846                 retval = -EPERM;
847                 if (change_irq || change_port ||
848                     (new_info->baud_base != uport->uartclk / 16) ||
849                     (close_delay != port->close_delay) ||
850                     (closing_wait != port->closing_wait) ||
851                     (new_info->xmit_fifo_size &&
852                      new_info->xmit_fifo_size != uport->fifosize) ||
853                     (((new_flags ^ old_flags) & ~UPF_USR_MASK) != 0))
854                         goto exit;
855                 uport->flags = ((uport->flags & ~UPF_USR_MASK) |
856                                (new_flags & UPF_USR_MASK));
857                 uport->custom_divisor = new_info->custom_divisor;
858                 goto check_and_exit;
859         }
860
861         if (change_irq || change_port) {
862                 retval = security_locked_down(LOCKDOWN_TIOCSSERIAL);
863                 if (retval)
864                         goto exit;
865         }
866
867         /*
868          * Ask the low level driver to verify the settings.
869          */
870         if (uport->ops->verify_port)
871                 retval = uport->ops->verify_port(uport, new_info);
872
873         if ((new_info->irq >= nr_irqs) || (new_info->irq < 0) ||
874             (new_info->baud_base < 9600))
875                 retval = -EINVAL;
876
877         if (retval)
878                 goto exit;
879
880         if (change_port || change_irq) {
881                 retval = -EBUSY;
882
883                 /*
884                  * Make sure that we are the sole user of this port.
885                  */
886                 if (tty_port_users(port) > 1)
887                         goto exit;
888
889                 /*
890                  * We need to shutdown the serial port at the old
891                  * port/type/irq combination.
892                  */
893                 uart_shutdown(tty, state);
894         }
895
896         if (change_port) {
897                 unsigned long old_iobase, old_mapbase;
898                 unsigned int old_type, old_iotype, old_hub6, old_shift;
899
900                 old_iobase = uport->iobase;
901                 old_mapbase = uport->mapbase;
902                 old_type = uport->type;
903                 old_hub6 = uport->hub6;
904                 old_iotype = uport->iotype;
905                 old_shift = uport->regshift;
906
907                 /*
908                  * Free and release old regions
909                  */
910                 if (old_type != PORT_UNKNOWN && uport->ops->release_port)
911                         uport->ops->release_port(uport);
912
913                 uport->iobase = new_port;
914                 uport->type = new_info->type;
915                 uport->hub6 = new_info->hub6;
916                 uport->iotype = new_info->io_type;
917                 uport->regshift = new_info->iomem_reg_shift;
918                 uport->mapbase = (unsigned long)new_info->iomem_base;
919
920                 /*
921                  * Claim and map the new regions
922                  */
923                 if (uport->type != PORT_UNKNOWN && uport->ops->request_port) {
924                         retval = uport->ops->request_port(uport);
925                 } else {
926                         /* Always success - Jean II */
927                         retval = 0;
928                 }
929
930                 /*
931                  * If we fail to request resources for the
932                  * new port, try to restore the old settings.
933                  */
934                 if (retval) {
935                         uport->iobase = old_iobase;
936                         uport->type = old_type;
937                         uport->hub6 = old_hub6;
938                         uport->iotype = old_iotype;
939                         uport->regshift = old_shift;
940                         uport->mapbase = old_mapbase;
941
942                         if (old_type != PORT_UNKNOWN) {
943                                 retval = uport->ops->request_port(uport);
944                                 /*
945                                  * If we failed to restore the old settings,
946                                  * we fail like this.
947                                  */
948                                 if (retval)
949                                         uport->type = PORT_UNKNOWN;
950
951                                 /*
952                                  * We failed anyway.
953                                  */
954                                 retval = -EBUSY;
955                         }
956
957                         /* Added to return the correct error -Ram Gupta */
958                         goto exit;
959                 }
960         }
961
962         if (change_irq)
963                 uport->irq      = new_info->irq;
964         if (!(uport->flags & UPF_FIXED_PORT))
965                 uport->uartclk  = new_info->baud_base * 16;
966         uport->flags            = (uport->flags & ~UPF_CHANGE_MASK) |
967                                  (new_flags & UPF_CHANGE_MASK);
968         uport->custom_divisor   = new_info->custom_divisor;
969         port->close_delay     = close_delay;
970         port->closing_wait    = closing_wait;
971         if (new_info->xmit_fifo_size)
972                 uport->fifosize = new_info->xmit_fifo_size;
973
974  check_and_exit:
975         retval = 0;
976         if (uport->type == PORT_UNKNOWN)
977                 goto exit;
978         if (tty_port_initialized(port)) {
979                 if (((old_flags ^ uport->flags) & UPF_SPD_MASK) ||
980                     old_custom_divisor != uport->custom_divisor) {
981                         /*
982                          * If they're setting up a custom divisor or speed,
983                          * instead of clearing it, then bitch about it.
984                          */
985                         if (uport->flags & UPF_SPD_MASK) {
986                                 dev_notice_ratelimited(uport->dev,
987                                        "%s sets custom speed on %s. This is deprecated.\n",
988                                       current->comm,
989                                       tty_name(port->tty));
990                         }
991                         uart_change_speed(tty, state, NULL);
992                 }
993         } else {
994                 retval = uart_startup(tty, state, 1);
995                 if (retval == 0)
996                         tty_port_set_initialized(port, true);
997                 if (retval > 0)
998                         retval = 0;
999         }
1000  exit:
1001         return retval;
1002 }
1003
1004 static int uart_set_info_user(struct tty_struct *tty, struct serial_struct *ss)
1005 {
1006         struct uart_state *state = tty->driver_data;
1007         struct tty_port *port = &state->port;
1008         int retval;
1009
1010         down_write(&tty->termios_rwsem);
1011         /*
1012          * This semaphore protects port->count.  It is also
1013          * very useful to prevent opens.  Also, take the
1014          * port configuration semaphore to make sure that a
1015          * module insertion/removal doesn't change anything
1016          * under us.
1017          */
1018         mutex_lock(&port->mutex);
1019         retval = uart_set_info(tty, port, state, ss);
1020         mutex_unlock(&port->mutex);
1021         up_write(&tty->termios_rwsem);
1022         return retval;
1023 }
1024
1025 /**
1026  *      uart_get_lsr_info       -       get line status register info
1027  *      @tty: tty associated with the UART
1028  *      @state: UART being queried
1029  *      @value: returned modem value
1030  */
1031 static int uart_get_lsr_info(struct tty_struct *tty,
1032                         struct uart_state *state, unsigned int __user *value)
1033 {
1034         struct uart_port *uport = uart_port_check(state);
1035         unsigned int result;
1036
1037         result = uport->ops->tx_empty(uport);
1038
1039         /*
1040          * If we're about to load something into the transmit
1041          * register, we'll pretend the transmitter isn't empty to
1042          * avoid a race condition (depending on when the transmit
1043          * interrupt happens).
1044          */
1045         if (uport->x_char ||
1046             ((uart_circ_chars_pending(&state->xmit) > 0) &&
1047              !uart_tx_stopped(uport)))
1048                 result &= ~TIOCSER_TEMT;
1049
1050         return put_user(result, value);
1051 }
1052
1053 static int uart_tiocmget(struct tty_struct *tty)
1054 {
1055         struct uart_state *state = tty->driver_data;
1056         struct tty_port *port = &state->port;
1057         struct uart_port *uport;
1058         int result = -EIO;
1059
1060         mutex_lock(&port->mutex);
1061         uport = uart_port_check(state);
1062         if (!uport)
1063                 goto out;
1064
1065         if (!tty_io_error(tty)) {
1066                 result = uport->mctrl;
1067                 spin_lock_irq(&uport->lock);
1068                 result |= uport->ops->get_mctrl(uport);
1069                 spin_unlock_irq(&uport->lock);
1070         }
1071 out:
1072         mutex_unlock(&port->mutex);
1073         return result;
1074 }
1075
1076 static int
1077 uart_tiocmset(struct tty_struct *tty, unsigned int set, unsigned int clear)
1078 {
1079         struct uart_state *state = tty->driver_data;
1080         struct tty_port *port = &state->port;
1081         struct uart_port *uport;
1082         int ret = -EIO;
1083
1084         mutex_lock(&port->mutex);
1085         uport = uart_port_check(state);
1086         if (!uport)
1087                 goto out;
1088
1089         if (!tty_io_error(tty)) {
1090                 uart_update_mctrl(uport, set, clear);
1091                 ret = 0;
1092         }
1093 out:
1094         mutex_unlock(&port->mutex);
1095         return ret;
1096 }
1097
1098 static int uart_break_ctl(struct tty_struct *tty, int break_state)
1099 {
1100         struct uart_state *state = tty->driver_data;
1101         struct tty_port *port = &state->port;
1102         struct uart_port *uport;
1103         int ret = -EIO;
1104
1105         mutex_lock(&port->mutex);
1106         uport = uart_port_check(state);
1107         if (!uport)
1108                 goto out;
1109
1110         if (uport->type != PORT_UNKNOWN && uport->ops->break_ctl)
1111                 uport->ops->break_ctl(uport, break_state);
1112         ret = 0;
1113 out:
1114         mutex_unlock(&port->mutex);
1115         return ret;
1116 }
1117
1118 static int uart_do_autoconfig(struct tty_struct *tty, struct uart_state *state)
1119 {
1120         struct tty_port *port = &state->port;
1121         struct uart_port *uport;
1122         int flags, ret;
1123
1124         if (!capable(CAP_SYS_ADMIN))
1125                 return -EPERM;
1126
1127         /*
1128          * Take the per-port semaphore.  This prevents count from
1129          * changing, and hence any extra opens of the port while
1130          * we're auto-configuring.
1131          */
1132         if (mutex_lock_interruptible(&port->mutex))
1133                 return -ERESTARTSYS;
1134
1135         uport = uart_port_check(state);
1136         if (!uport) {
1137                 ret = -EIO;
1138                 goto out;
1139         }
1140
1141         ret = -EBUSY;
1142         if (tty_port_users(port) == 1) {
1143                 uart_shutdown(tty, state);
1144
1145                 /*
1146                  * If we already have a port type configured,
1147                  * we must release its resources.
1148                  */
1149                 if (uport->type != PORT_UNKNOWN && uport->ops->release_port)
1150                         uport->ops->release_port(uport);
1151
1152                 flags = UART_CONFIG_TYPE;
1153                 if (uport->flags & UPF_AUTO_IRQ)
1154                         flags |= UART_CONFIG_IRQ;
1155
1156                 /*
1157                  * This will claim the ports resources if
1158                  * a port is found.
1159                  */
1160                 uport->ops->config_port(uport, flags);
1161
1162                 ret = uart_startup(tty, state, 1);
1163                 if (ret == 0)
1164                         tty_port_set_initialized(port, true);
1165                 if (ret > 0)
1166                         ret = 0;
1167         }
1168 out:
1169         mutex_unlock(&port->mutex);
1170         return ret;
1171 }
1172
1173 static void uart_enable_ms(struct uart_port *uport)
1174 {
1175         /*
1176          * Force modem status interrupts on
1177          */
1178         if (uport->ops->enable_ms)
1179                 uport->ops->enable_ms(uport);
1180 }
1181
1182 /*
1183  * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1184  * - mask passed in arg for lines of interest
1185  *   (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1186  * Caller should use TIOCGICOUNT to see which one it was
1187  *
1188  * FIXME: This wants extracting into a common all driver implementation
1189  * of TIOCMWAIT using tty_port.
1190  */
1191 static int uart_wait_modem_status(struct uart_state *state, unsigned long arg)
1192 {
1193         struct uart_port *uport;
1194         struct tty_port *port = &state->port;
1195         DECLARE_WAITQUEUE(wait, current);
1196         struct uart_icount cprev, cnow;
1197         int ret;
1198
1199         /*
1200          * note the counters on entry
1201          */
1202         uport = uart_port_ref(state);
1203         if (!uport)
1204                 return -EIO;
1205         spin_lock_irq(&uport->lock);
1206         memcpy(&cprev, &uport->icount, sizeof(struct uart_icount));
1207         uart_enable_ms(uport);
1208         spin_unlock_irq(&uport->lock);
1209
1210         add_wait_queue(&port->delta_msr_wait, &wait);
1211         for (;;) {
1212                 spin_lock_irq(&uport->lock);
1213                 memcpy(&cnow, &uport->icount, sizeof(struct uart_icount));
1214                 spin_unlock_irq(&uport->lock);
1215
1216                 set_current_state(TASK_INTERRUPTIBLE);
1217
1218                 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
1219                     ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
1220                     ((arg & TIOCM_CD)  && (cnow.dcd != cprev.dcd)) ||
1221                     ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
1222                         ret = 0;
1223                         break;
1224                 }
1225
1226                 schedule();
1227
1228                 /* see if a signal did it */
1229                 if (signal_pending(current)) {
1230                         ret = -ERESTARTSYS;
1231                         break;
1232                 }
1233
1234                 cprev = cnow;
1235         }
1236         __set_current_state(TASK_RUNNING);
1237         remove_wait_queue(&port->delta_msr_wait, &wait);
1238         uart_port_deref(uport);
1239
1240         return ret;
1241 }
1242
1243 /*
1244  * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1245  * Return: write counters to the user passed counter struct
1246  * NB: both 1->0 and 0->1 transitions are counted except for
1247  *     RI where only 0->1 is counted.
1248  */
1249 static int uart_get_icount(struct tty_struct *tty,
1250                           struct serial_icounter_struct *icount)
1251 {
1252         struct uart_state *state = tty->driver_data;
1253         struct uart_icount cnow;
1254         struct uart_port *uport;
1255
1256         uport = uart_port_ref(state);
1257         if (!uport)
1258                 return -EIO;
1259         spin_lock_irq(&uport->lock);
1260         memcpy(&cnow, &uport->icount, sizeof(struct uart_icount));
1261         spin_unlock_irq(&uport->lock);
1262         uart_port_deref(uport);
1263
1264         icount->cts         = cnow.cts;
1265         icount->dsr         = cnow.dsr;
1266         icount->rng         = cnow.rng;
1267         icount->dcd         = cnow.dcd;
1268         icount->rx          = cnow.rx;
1269         icount->tx          = cnow.tx;
1270         icount->frame       = cnow.frame;
1271         icount->overrun     = cnow.overrun;
1272         icount->parity      = cnow.parity;
1273         icount->brk         = cnow.brk;
1274         icount->buf_overrun = cnow.buf_overrun;
1275
1276         return 0;
1277 }
1278
1279 static void uart_sanitize_serial_rs485(struct uart_port *port, struct serial_rs485 *rs485)
1280 {
1281         u32 supported_flags = port->rs485_supported->flags;
1282
1283         if (!(rs485->flags & SER_RS485_ENABLED)) {
1284                 memset(rs485, 0, sizeof(*rs485));
1285                 return;
1286         }
1287
1288         /* pick sane settings if the user hasn't */
1289         if ((supported_flags & (SER_RS485_RTS_ON_SEND|SER_RS485_RTS_AFTER_SEND)) &&
1290             !(rs485->flags & SER_RS485_RTS_ON_SEND) ==
1291             !(rs485->flags & SER_RS485_RTS_AFTER_SEND)) {
1292                 dev_warn_ratelimited(port->dev,
1293                         "%s (%d): invalid RTS setting, using RTS_ON_SEND instead\n",
1294                         port->name, port->line);
1295                 rs485->flags |= SER_RS485_RTS_ON_SEND;
1296                 rs485->flags &= ~SER_RS485_RTS_AFTER_SEND;
1297                 supported_flags |= SER_RS485_RTS_ON_SEND|SER_RS485_RTS_AFTER_SEND;
1298         }
1299
1300         if (!port->rs485_supported->delay_rts_before_send) {
1301                 if (rs485->delay_rts_before_send) {
1302                         dev_warn_ratelimited(port->dev,
1303                                 "%s (%d): RTS delay before sending not supported\n",
1304                                 port->name, port->line);
1305                 }
1306                 rs485->delay_rts_before_send = 0;
1307         } else if (rs485->delay_rts_before_send > RS485_MAX_RTS_DELAY) {
1308                 rs485->delay_rts_before_send = RS485_MAX_RTS_DELAY;
1309                 dev_warn_ratelimited(port->dev,
1310                         "%s (%d): RTS delay before sending clamped to %u ms\n",
1311                         port->name, port->line, rs485->delay_rts_before_send);
1312         }
1313
1314         if (!port->rs485_supported->delay_rts_after_send) {
1315                 if (rs485->delay_rts_after_send) {
1316                         dev_warn_ratelimited(port->dev,
1317                                 "%s (%d): RTS delay after sending not supported\n",
1318                                 port->name, port->line);
1319                 }
1320                 rs485->delay_rts_after_send = 0;
1321         } else if (rs485->delay_rts_after_send > RS485_MAX_RTS_DELAY) {
1322                 rs485->delay_rts_after_send = RS485_MAX_RTS_DELAY;
1323                 dev_warn_ratelimited(port->dev,
1324                         "%s (%d): RTS delay after sending clamped to %u ms\n",
1325                         port->name, port->line, rs485->delay_rts_after_send);
1326         }
1327
1328         rs485->flags &= supported_flags;
1329
1330         /* Return clean padding area to userspace */
1331         memset(rs485->padding, 0, sizeof(rs485->padding));
1332 }
1333
1334 int uart_rs485_config(struct uart_port *port)
1335 {
1336         struct serial_rs485 *rs485 = &port->rs485;
1337         int ret;
1338
1339         uart_sanitize_serial_rs485(port, rs485);
1340
1341         ret = port->rs485_config(port, rs485);
1342         if (ret)
1343                 memset(rs485, 0, sizeof(*rs485));
1344
1345         return ret;
1346 }
1347 EXPORT_SYMBOL_GPL(uart_rs485_config);
1348
1349 static int uart_get_rs485_config(struct uart_port *port,
1350                          struct serial_rs485 __user *rs485)
1351 {
1352         unsigned long flags;
1353         struct serial_rs485 aux;
1354
1355         spin_lock_irqsave(&port->lock, flags);
1356         aux = port->rs485;
1357         spin_unlock_irqrestore(&port->lock, flags);
1358
1359         if (copy_to_user(rs485, &aux, sizeof(aux)))
1360                 return -EFAULT;
1361
1362         return 0;
1363 }
1364
1365 static int uart_set_rs485_config(struct uart_port *port,
1366                          struct serial_rs485 __user *rs485_user)
1367 {
1368         struct serial_rs485 rs485;
1369         int ret;
1370         unsigned long flags;
1371
1372         if (!port->rs485_config)
1373                 return -ENOTTY;
1374
1375         if (copy_from_user(&rs485, rs485_user, sizeof(*rs485_user)))
1376                 return -EFAULT;
1377
1378         uart_sanitize_serial_rs485(port, &rs485);
1379
1380         spin_lock_irqsave(&port->lock, flags);
1381         ret = port->rs485_config(port, &rs485);
1382         if (!ret)
1383                 port->rs485 = rs485;
1384         spin_unlock_irqrestore(&port->lock, flags);
1385         if (ret)
1386                 return ret;
1387
1388         if (copy_to_user(rs485_user, &port->rs485, sizeof(port->rs485)))
1389                 return -EFAULT;
1390
1391         return 0;
1392 }
1393
1394 static int uart_get_iso7816_config(struct uart_port *port,
1395                                    struct serial_iso7816 __user *iso7816)
1396 {
1397         unsigned long flags;
1398         struct serial_iso7816 aux;
1399
1400         if (!port->iso7816_config)
1401                 return -ENOTTY;
1402
1403         spin_lock_irqsave(&port->lock, flags);
1404         aux = port->iso7816;
1405         spin_unlock_irqrestore(&port->lock, flags);
1406
1407         if (copy_to_user(iso7816, &aux, sizeof(aux)))
1408                 return -EFAULT;
1409
1410         return 0;
1411 }
1412
1413 static int uart_set_iso7816_config(struct uart_port *port,
1414                                    struct serial_iso7816 __user *iso7816_user)
1415 {
1416         struct serial_iso7816 iso7816;
1417         int i, ret;
1418         unsigned long flags;
1419
1420         if (!port->iso7816_config)
1421                 return -ENOTTY;
1422
1423         if (copy_from_user(&iso7816, iso7816_user, sizeof(*iso7816_user)))
1424                 return -EFAULT;
1425
1426         /*
1427          * There are 5 words reserved for future use. Check that userspace
1428          * doesn't put stuff in there to prevent breakages in the future.
1429          */
1430         for (i = 0; i < 5; i++)
1431                 if (iso7816.reserved[i])
1432                         return -EINVAL;
1433
1434         spin_lock_irqsave(&port->lock, flags);
1435         ret = port->iso7816_config(port, &iso7816);
1436         spin_unlock_irqrestore(&port->lock, flags);
1437         if (ret)
1438                 return ret;
1439
1440         if (copy_to_user(iso7816_user, &port->iso7816, sizeof(port->iso7816)))
1441                 return -EFAULT;
1442
1443         return 0;
1444 }
1445
1446 /*
1447  * Called via sys_ioctl.  We can use spin_lock_irq() here.
1448  */
1449 static int
1450 uart_ioctl(struct tty_struct *tty, unsigned int cmd, unsigned long arg)
1451 {
1452         struct uart_state *state = tty->driver_data;
1453         struct tty_port *port = &state->port;
1454         struct uart_port *uport;
1455         void __user *uarg = (void __user *)arg;
1456         int ret = -ENOIOCTLCMD;
1457
1458
1459         /*
1460          * These ioctls don't rely on the hardware to be present.
1461          */
1462         switch (cmd) {
1463         case TIOCSERCONFIG:
1464                 down_write(&tty->termios_rwsem);
1465                 ret = uart_do_autoconfig(tty, state);
1466                 up_write(&tty->termios_rwsem);
1467                 break;
1468         }
1469
1470         if (ret != -ENOIOCTLCMD)
1471                 goto out;
1472
1473         if (tty_io_error(tty)) {
1474                 ret = -EIO;
1475                 goto out;
1476         }
1477
1478         /*
1479          * The following should only be used when hardware is present.
1480          */
1481         switch (cmd) {
1482         case TIOCMIWAIT:
1483                 ret = uart_wait_modem_status(state, arg);
1484                 break;
1485         }
1486
1487         if (ret != -ENOIOCTLCMD)
1488                 goto out;
1489
1490         mutex_lock(&port->mutex);
1491         uport = uart_port_check(state);
1492
1493         if (!uport || tty_io_error(tty)) {
1494                 ret = -EIO;
1495                 goto out_up;
1496         }
1497
1498         /*
1499          * All these rely on hardware being present and need to be
1500          * protected against the tty being hung up.
1501          */
1502
1503         switch (cmd) {
1504         case TIOCSERGETLSR: /* Get line status register */
1505                 ret = uart_get_lsr_info(tty, state, uarg);
1506                 break;
1507
1508         case TIOCGRS485:
1509                 ret = uart_get_rs485_config(uport, uarg);
1510                 break;
1511
1512         case TIOCSRS485:
1513                 ret = uart_set_rs485_config(uport, uarg);
1514                 break;
1515
1516         case TIOCSISO7816:
1517                 ret = uart_set_iso7816_config(state->uart_port, uarg);
1518                 break;
1519
1520         case TIOCGISO7816:
1521                 ret = uart_get_iso7816_config(state->uart_port, uarg);
1522                 break;
1523         default:
1524                 if (uport->ops->ioctl)
1525                         ret = uport->ops->ioctl(uport, cmd, arg);
1526                 break;
1527         }
1528 out_up:
1529         mutex_unlock(&port->mutex);
1530 out:
1531         return ret;
1532 }
1533
1534 static void uart_set_ldisc(struct tty_struct *tty)
1535 {
1536         struct uart_state *state = tty->driver_data;
1537         struct uart_port *uport;
1538         struct tty_port *port = &state->port;
1539
1540         if (!tty_port_initialized(port))
1541                 return;
1542
1543         mutex_lock(&state->port.mutex);
1544         uport = uart_port_check(state);
1545         if (uport && uport->ops->set_ldisc)
1546                 uport->ops->set_ldisc(uport, &tty->termios);
1547         mutex_unlock(&state->port.mutex);
1548 }
1549
1550 static void uart_set_termios(struct tty_struct *tty,
1551                                                 struct ktermios *old_termios)
1552 {
1553         struct uart_state *state = tty->driver_data;
1554         struct uart_port *uport;
1555         unsigned int cflag = tty->termios.c_cflag;
1556         unsigned int iflag_mask = IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK;
1557         bool sw_changed = false;
1558
1559         mutex_lock(&state->port.mutex);
1560         uport = uart_port_check(state);
1561         if (!uport)
1562                 goto out;
1563
1564         /*
1565          * Drivers doing software flow control also need to know
1566          * about changes to these input settings.
1567          */
1568         if (uport->flags & UPF_SOFT_FLOW) {
1569                 iflag_mask |= IXANY|IXON|IXOFF;
1570                 sw_changed =
1571                    tty->termios.c_cc[VSTART] != old_termios->c_cc[VSTART] ||
1572                    tty->termios.c_cc[VSTOP] != old_termios->c_cc[VSTOP];
1573         }
1574
1575         /*
1576          * These are the bits that are used to setup various
1577          * flags in the low level driver. We can ignore the Bfoo
1578          * bits in c_cflag; c_[io]speed will always be set
1579          * appropriately by set_termios() in tty_ioctl.c
1580          */
1581         if ((cflag ^ old_termios->c_cflag) == 0 &&
1582             tty->termios.c_ospeed == old_termios->c_ospeed &&
1583             tty->termios.c_ispeed == old_termios->c_ispeed &&
1584             ((tty->termios.c_iflag ^ old_termios->c_iflag) & iflag_mask) == 0 &&
1585             !sw_changed) {
1586                 goto out;
1587         }
1588
1589         uart_change_speed(tty, state, old_termios);
1590         /* reload cflag from termios; port driver may have overridden flags */
1591         cflag = tty->termios.c_cflag;
1592
1593         /* Handle transition to B0 status */
1594         if ((old_termios->c_cflag & CBAUD) && !(cflag & CBAUD))
1595                 uart_clear_mctrl(uport, TIOCM_RTS | TIOCM_DTR);
1596         /* Handle transition away from B0 status */
1597         else if (!(old_termios->c_cflag & CBAUD) && (cflag & CBAUD)) {
1598                 unsigned int mask = TIOCM_DTR;
1599
1600                 if (!(cflag & CRTSCTS) || !tty_throttled(tty))
1601                         mask |= TIOCM_RTS;
1602                 uart_set_mctrl(uport, mask);
1603         }
1604 out:
1605         mutex_unlock(&state->port.mutex);
1606 }
1607
1608 /*
1609  * Calls to uart_close() are serialised via the tty_lock in
1610  *   drivers/tty/tty_io.c:tty_release()
1611  *   drivers/tty/tty_io.c:do_tty_hangup()
1612  */
1613 static void uart_close(struct tty_struct *tty, struct file *filp)
1614 {
1615         struct uart_state *state = tty->driver_data;
1616
1617         if (!state) {
1618                 struct uart_driver *drv = tty->driver->driver_state;
1619                 struct tty_port *port;
1620
1621                 state = drv->state + tty->index;
1622                 port = &state->port;
1623                 spin_lock_irq(&port->lock);
1624                 --port->count;
1625                 spin_unlock_irq(&port->lock);
1626                 return;
1627         }
1628
1629         pr_debug("uart_close(%d) called\n", tty->index);
1630
1631         tty_port_close(tty->port, tty, filp);
1632 }
1633
1634 static void uart_tty_port_shutdown(struct tty_port *port)
1635 {
1636         struct uart_state *state = container_of(port, struct uart_state, port);
1637         struct uart_port *uport = uart_port_check(state);
1638         char *buf;
1639
1640         /*
1641          * At this point, we stop accepting input.  To do this, we
1642          * disable the receive line status interrupts.
1643          */
1644         if (WARN(!uport, "detached port still initialized!\n"))
1645                 return;
1646
1647         spin_lock_irq(&uport->lock);
1648         uport->ops->stop_rx(uport);
1649         spin_unlock_irq(&uport->lock);
1650
1651         uart_port_shutdown(port);
1652
1653         /*
1654          * It's possible for shutdown to be called after suspend if we get
1655          * a DCD drop (hangup) at just the right time.  Clear suspended bit so
1656          * we don't try to resume a port that has been shutdown.
1657          */
1658         tty_port_set_suspended(port, 0);
1659
1660         /*
1661          * Free the transmit buffer.
1662          */
1663         spin_lock_irq(&uport->lock);
1664         buf = state->xmit.buf;
1665         state->xmit.buf = NULL;
1666         spin_unlock_irq(&uport->lock);
1667
1668         free_page((unsigned long)buf);
1669
1670         uart_change_pm(state, UART_PM_STATE_OFF);
1671 }
1672
1673 static void uart_wait_until_sent(struct tty_struct *tty, int timeout)
1674 {
1675         struct uart_state *state = tty->driver_data;
1676         struct uart_port *port;
1677         unsigned long char_time, expire;
1678
1679         port = uart_port_ref(state);
1680         if (!port)
1681                 return;
1682
1683         if (port->type == PORT_UNKNOWN || port->fifosize == 0) {
1684                 uart_port_deref(port);
1685                 return;
1686         }
1687
1688         /*
1689          * Set the check interval to be 1/5 of the estimated time to
1690          * send a single character, and make it at least 1.  The check
1691          * interval should also be less than the timeout.
1692          *
1693          * Note: we have to use pretty tight timings here to satisfy
1694          * the NIST-PCTS.
1695          */
1696         char_time = max(nsecs_to_jiffies(port->frame_time / 5), 1UL);
1697
1698         if (timeout && timeout < char_time)
1699                 char_time = timeout;
1700
1701         if (!uart_cts_enabled(port)) {
1702                 /*
1703                  * If the transmitter hasn't cleared in twice the approximate
1704                  * amount of time to send the entire FIFO, it probably won't
1705                  * ever clear.  This assumes the UART isn't doing flow
1706                  * control, which is currently the case.  Hence, if it ever
1707                  * takes longer than port->timeout, this is probably due to a
1708                  * UART bug of some kind.  So, we clamp the timeout parameter at
1709                  * 2*port->timeout.
1710                  */
1711                 if (timeout == 0 || timeout > 2 * port->timeout)
1712                         timeout = 2 * port->timeout;
1713         }
1714
1715         expire = jiffies + timeout;
1716
1717         pr_debug("uart_wait_until_sent(%d), jiffies=%lu, expire=%lu...\n",
1718                 port->line, jiffies, expire);
1719
1720         /*
1721          * Check whether the transmitter is empty every 'char_time'.
1722          * 'timeout' / 'expire' give us the maximum amount of time
1723          * we wait.
1724          */
1725         while (!port->ops->tx_empty(port)) {
1726                 msleep_interruptible(jiffies_to_msecs(char_time));
1727                 if (signal_pending(current))
1728                         break;
1729                 if (timeout && time_after(jiffies, expire))
1730                         break;
1731         }
1732         uart_port_deref(port);
1733 }
1734
1735 /*
1736  * Calls to uart_hangup() are serialised by the tty_lock in
1737  *   drivers/tty/tty_io.c:do_tty_hangup()
1738  * This runs from a workqueue and can sleep for a _short_ time only.
1739  */
1740 static void uart_hangup(struct tty_struct *tty)
1741 {
1742         struct uart_state *state = tty->driver_data;
1743         struct tty_port *port = &state->port;
1744         struct uart_port *uport;
1745         unsigned long flags;
1746
1747         pr_debug("uart_hangup(%d)\n", tty->index);
1748
1749         mutex_lock(&port->mutex);
1750         uport = uart_port_check(state);
1751         WARN(!uport, "hangup of detached port!\n");
1752
1753         if (tty_port_active(port)) {
1754                 uart_flush_buffer(tty);
1755                 uart_shutdown(tty, state);
1756                 spin_lock_irqsave(&port->lock, flags);
1757                 port->count = 0;
1758                 spin_unlock_irqrestore(&port->lock, flags);
1759                 tty_port_set_active(port, 0);
1760                 tty_port_tty_set(port, NULL);
1761                 if (uport && !uart_console(uport))
1762                         uart_change_pm(state, UART_PM_STATE_OFF);
1763                 wake_up_interruptible(&port->open_wait);
1764                 wake_up_interruptible(&port->delta_msr_wait);
1765         }
1766         mutex_unlock(&port->mutex);
1767 }
1768
1769 /* uport == NULL if uart_port has already been removed */
1770 static void uart_port_shutdown(struct tty_port *port)
1771 {
1772         struct uart_state *state = container_of(port, struct uart_state, port);
1773         struct uart_port *uport = uart_port_check(state);
1774
1775         /*
1776          * clear delta_msr_wait queue to avoid mem leaks: we may free
1777          * the irq here so the queue might never be woken up.  Note
1778          * that we won't end up waiting on delta_msr_wait again since
1779          * any outstanding file descriptors should be pointing at
1780          * hung_up_tty_fops now.
1781          */
1782         wake_up_interruptible(&port->delta_msr_wait);
1783
1784         if (uport) {
1785                 /* Free the IRQ and disable the port. */
1786                 uport->ops->shutdown(uport);
1787
1788                 /* Ensure that the IRQ handler isn't running on another CPU. */
1789                 synchronize_irq(uport->irq);
1790         }
1791 }
1792
1793 static int uart_carrier_raised(struct tty_port *port)
1794 {
1795         struct uart_state *state = container_of(port, struct uart_state, port);
1796         struct uart_port *uport;
1797         int mctrl;
1798
1799         uport = uart_port_ref(state);
1800         /*
1801          * Should never observe uport == NULL since checks for hangup should
1802          * abort the tty_port_block_til_ready() loop before checking for carrier
1803          * raised -- but report carrier raised if it does anyway so open will
1804          * continue and not sleep
1805          */
1806         if (WARN_ON(!uport))
1807                 return 1;
1808         spin_lock_irq(&uport->lock);
1809         uart_enable_ms(uport);
1810         mctrl = uport->ops->get_mctrl(uport);
1811         spin_unlock_irq(&uport->lock);
1812         uart_port_deref(uport);
1813         if (mctrl & TIOCM_CAR)
1814                 return 1;
1815         return 0;
1816 }
1817
1818 static void uart_dtr_rts(struct tty_port *port, int raise)
1819 {
1820         struct uart_state *state = container_of(port, struct uart_state, port);
1821         struct uart_port *uport;
1822
1823         uport = uart_port_ref(state);
1824         if (!uport)
1825                 return;
1826         uart_port_dtr_rts(uport, raise);
1827         uart_port_deref(uport);
1828 }
1829
1830 static int uart_install(struct tty_driver *driver, struct tty_struct *tty)
1831 {
1832         struct uart_driver *drv = driver->driver_state;
1833         struct uart_state *state = drv->state + tty->index;
1834
1835         tty->driver_data = state;
1836
1837         return tty_standard_install(driver, tty);
1838 }
1839
1840 /*
1841  * Calls to uart_open are serialised by the tty_lock in
1842  *   drivers/tty/tty_io.c:tty_open()
1843  * Note that if this fails, then uart_close() _will_ be called.
1844  *
1845  * In time, we want to scrap the "opening nonpresent ports"
1846  * behaviour and implement an alternative way for setserial
1847  * to set base addresses/ports/types.  This will allow us to
1848  * get rid of a certain amount of extra tests.
1849  */
1850 static int uart_open(struct tty_struct *tty, struct file *filp)
1851 {
1852         struct uart_state *state = tty->driver_data;
1853         int retval;
1854
1855         retval = tty_port_open(&state->port, tty, filp);
1856         if (retval > 0)
1857                 retval = 0;
1858
1859         return retval;
1860 }
1861
1862 static int uart_port_activate(struct tty_port *port, struct tty_struct *tty)
1863 {
1864         struct uart_state *state = container_of(port, struct uart_state, port);
1865         struct uart_port *uport;
1866         int ret;
1867
1868         uport = uart_port_check(state);
1869         if (!uport || uport->flags & UPF_DEAD)
1870                 return -ENXIO;
1871
1872         /*
1873          * Start up the serial port.
1874          */
1875         ret = uart_startup(tty, state, 0);
1876         if (ret > 0)
1877                 tty_port_set_active(port, 1);
1878
1879         return ret;
1880 }
1881
1882 static const char *uart_type(struct uart_port *port)
1883 {
1884         const char *str = NULL;
1885
1886         if (port->ops->type)
1887                 str = port->ops->type(port);
1888
1889         if (!str)
1890                 str = "unknown";
1891
1892         return str;
1893 }
1894
1895 #ifdef CONFIG_PROC_FS
1896
1897 static void uart_line_info(struct seq_file *m, struct uart_driver *drv, int i)
1898 {
1899         struct uart_state *state = drv->state + i;
1900         struct tty_port *port = &state->port;
1901         enum uart_pm_state pm_state;
1902         struct uart_port *uport;
1903         char stat_buf[32];
1904         unsigned int status;
1905         int mmio;
1906
1907         mutex_lock(&port->mutex);
1908         uport = uart_port_check(state);
1909         if (!uport)
1910                 goto out;
1911
1912         mmio = uport->iotype >= UPIO_MEM;
1913         seq_printf(m, "%d: uart:%s %s%08llX irq:%d",
1914                         uport->line, uart_type(uport),
1915                         mmio ? "mmio:0x" : "port:",
1916                         mmio ? (unsigned long long)uport->mapbase
1917                              : (unsigned long long)uport->iobase,
1918                         uport->irq);
1919
1920         if (uport->type == PORT_UNKNOWN) {
1921                 seq_putc(m, '\n');
1922                 goto out;
1923         }
1924
1925         if (capable(CAP_SYS_ADMIN)) {
1926                 pm_state = state->pm_state;
1927                 if (pm_state != UART_PM_STATE_ON)
1928                         uart_change_pm(state, UART_PM_STATE_ON);
1929                 spin_lock_irq(&uport->lock);
1930                 status = uport->ops->get_mctrl(uport);
1931                 spin_unlock_irq(&uport->lock);
1932                 if (pm_state != UART_PM_STATE_ON)
1933                         uart_change_pm(state, pm_state);
1934
1935                 seq_printf(m, " tx:%d rx:%d",
1936                                 uport->icount.tx, uport->icount.rx);
1937                 if (uport->icount.frame)
1938                         seq_printf(m, " fe:%d", uport->icount.frame);
1939                 if (uport->icount.parity)
1940                         seq_printf(m, " pe:%d", uport->icount.parity);
1941                 if (uport->icount.brk)
1942                         seq_printf(m, " brk:%d", uport->icount.brk);
1943                 if (uport->icount.overrun)
1944                         seq_printf(m, " oe:%d", uport->icount.overrun);
1945                 if (uport->icount.buf_overrun)
1946                         seq_printf(m, " bo:%d", uport->icount.buf_overrun);
1947
1948 #define INFOBIT(bit, str) \
1949         if (uport->mctrl & (bit)) \
1950                 strncat(stat_buf, (str), sizeof(stat_buf) - \
1951                         strlen(stat_buf) - 2)
1952 #define STATBIT(bit, str) \
1953         if (status & (bit)) \
1954                 strncat(stat_buf, (str), sizeof(stat_buf) - \
1955                        strlen(stat_buf) - 2)
1956
1957                 stat_buf[0] = '\0';
1958                 stat_buf[1] = '\0';
1959                 INFOBIT(TIOCM_RTS, "|RTS");
1960                 STATBIT(TIOCM_CTS, "|CTS");
1961                 INFOBIT(TIOCM_DTR, "|DTR");
1962                 STATBIT(TIOCM_DSR, "|DSR");
1963                 STATBIT(TIOCM_CAR, "|CD");
1964                 STATBIT(TIOCM_RNG, "|RI");
1965                 if (stat_buf[0])
1966                         stat_buf[0] = ' ';
1967
1968                 seq_puts(m, stat_buf);
1969         }
1970         seq_putc(m, '\n');
1971 #undef STATBIT
1972 #undef INFOBIT
1973 out:
1974         mutex_unlock(&port->mutex);
1975 }
1976
1977 static int uart_proc_show(struct seq_file *m, void *v)
1978 {
1979         struct tty_driver *ttydrv = m->private;
1980         struct uart_driver *drv = ttydrv->driver_state;
1981         int i;
1982
1983         seq_printf(m, "serinfo:1.0 driver%s%s revision:%s\n", "", "", "");
1984         for (i = 0; i < drv->nr; i++)
1985                 uart_line_info(m, drv, i);
1986         return 0;
1987 }
1988 #endif
1989
1990 static inline bool uart_console_enabled(struct uart_port *port)
1991 {
1992         return uart_console(port) && (port->cons->flags & CON_ENABLED);
1993 }
1994
1995 static void uart_port_spin_lock_init(struct uart_port *port)
1996 {
1997         spin_lock_init(&port->lock);
1998         lockdep_set_class(&port->lock, &port_lock_key);
1999 }
2000
2001 #if defined(CONFIG_SERIAL_CORE_CONSOLE) || defined(CONFIG_CONSOLE_POLL)
2002 /**
2003  *      uart_console_write - write a console message to a serial port
2004  *      @port: the port to write the message
2005  *      @s: array of characters
2006  *      @count: number of characters in string to write
2007  *      @putchar: function to write character to port
2008  */
2009 void uart_console_write(struct uart_port *port, const char *s,
2010                         unsigned int count,
2011                         void (*putchar)(struct uart_port *, unsigned char))
2012 {
2013         unsigned int i;
2014
2015         for (i = 0; i < count; i++, s++) {
2016                 if (*s == '\n')
2017                         putchar(port, '\r');
2018                 putchar(port, *s);
2019         }
2020 }
2021 EXPORT_SYMBOL_GPL(uart_console_write);
2022
2023 /*
2024  *      Check whether an invalid uart number has been specified, and
2025  *      if so, search for the first available port that does have
2026  *      console support.
2027  */
2028 struct uart_port * __init
2029 uart_get_console(struct uart_port *ports, int nr, struct console *co)
2030 {
2031         int idx = co->index;
2032
2033         if (idx < 0 || idx >= nr || (ports[idx].iobase == 0 &&
2034                                      ports[idx].membase == NULL))
2035                 for (idx = 0; idx < nr; idx++)
2036                         if (ports[idx].iobase != 0 ||
2037                             ports[idx].membase != NULL)
2038                                 break;
2039
2040         co->index = idx;
2041
2042         return ports + idx;
2043 }
2044
2045 /**
2046  *      uart_parse_earlycon - Parse earlycon options
2047  *      @p:       ptr to 2nd field (ie., just beyond '<name>,')
2048  *      @iotype:  ptr for decoded iotype (out)
2049  *      @addr:    ptr for decoded mapbase/iobase (out)
2050  *      @options: ptr for <options> field; NULL if not present (out)
2051  *
2052  *      Decodes earlycon kernel command line parameters of the form
2053  *         earlycon=<name>,io|mmio|mmio16|mmio32|mmio32be|mmio32native,<addr>,<options>
2054  *         console=<name>,io|mmio|mmio16|mmio32|mmio32be|mmio32native,<addr>,<options>
2055  *
2056  *      The optional form
2057  *
2058  *         earlycon=<name>,0x<addr>,<options>
2059  *         console=<name>,0x<addr>,<options>
2060  *
2061  *      is also accepted; the returned @iotype will be UPIO_MEM.
2062  *
2063  *      Returns 0 on success or -EINVAL on failure
2064  */
2065 int uart_parse_earlycon(char *p, unsigned char *iotype, resource_size_t *addr,
2066                         char **options)
2067 {
2068         if (strncmp(p, "mmio,", 5) == 0) {
2069                 *iotype = UPIO_MEM;
2070                 p += 5;
2071         } else if (strncmp(p, "mmio16,", 7) == 0) {
2072                 *iotype = UPIO_MEM16;
2073                 p += 7;
2074         } else if (strncmp(p, "mmio32,", 7) == 0) {
2075                 *iotype = UPIO_MEM32;
2076                 p += 7;
2077         } else if (strncmp(p, "mmio32be,", 9) == 0) {
2078                 *iotype = UPIO_MEM32BE;
2079                 p += 9;
2080         } else if (strncmp(p, "mmio32native,", 13) == 0) {
2081                 *iotype = IS_ENABLED(CONFIG_CPU_BIG_ENDIAN) ?
2082                         UPIO_MEM32BE : UPIO_MEM32;
2083                 p += 13;
2084         } else if (strncmp(p, "io,", 3) == 0) {
2085                 *iotype = UPIO_PORT;
2086                 p += 3;
2087         } else if (strncmp(p, "0x", 2) == 0) {
2088                 *iotype = UPIO_MEM;
2089         } else {
2090                 return -EINVAL;
2091         }
2092
2093         /*
2094          * Before you replace it with kstrtoull(), think about options separator
2095          * (',') it will not tolerate
2096          */
2097         *addr = simple_strtoull(p, NULL, 0);
2098         p = strchr(p, ',');
2099         if (p)
2100                 p++;
2101
2102         *options = p;
2103         return 0;
2104 }
2105 EXPORT_SYMBOL_GPL(uart_parse_earlycon);
2106
2107 /**
2108  *      uart_parse_options - Parse serial port baud/parity/bits/flow control.
2109  *      @options: pointer to option string
2110  *      @baud: pointer to an 'int' variable for the baud rate.
2111  *      @parity: pointer to an 'int' variable for the parity.
2112  *      @bits: pointer to an 'int' variable for the number of data bits.
2113  *      @flow: pointer to an 'int' variable for the flow control character.
2114  *
2115  *      uart_parse_options decodes a string containing the serial console
2116  *      options.  The format of the string is <baud><parity><bits><flow>,
2117  *      eg: 115200n8r
2118  */
2119 void
2120 uart_parse_options(const char *options, int *baud, int *parity,
2121                    int *bits, int *flow)
2122 {
2123         const char *s = options;
2124
2125         *baud = simple_strtoul(s, NULL, 10);
2126         while (*s >= '0' && *s <= '9')
2127                 s++;
2128         if (*s)
2129                 *parity = *s++;
2130         if (*s)
2131                 *bits = *s++ - '0';
2132         if (*s)
2133                 *flow = *s;
2134 }
2135 EXPORT_SYMBOL_GPL(uart_parse_options);
2136
2137 /**
2138  *      uart_set_options - setup the serial console parameters
2139  *      @port: pointer to the serial ports uart_port structure
2140  *      @co: console pointer
2141  *      @baud: baud rate
2142  *      @parity: parity character - 'n' (none), 'o' (odd), 'e' (even)
2143  *      @bits: number of data bits
2144  *      @flow: flow control character - 'r' (rts)
2145  */
2146 int
2147 uart_set_options(struct uart_port *port, struct console *co,
2148                  int baud, int parity, int bits, int flow)
2149 {
2150         struct ktermios termios;
2151         static struct ktermios dummy;
2152
2153         /*
2154          * Ensure that the serial-console lock is initialised early.
2155          *
2156          * Note that the console-enabled check is needed because of kgdboc,
2157          * which can end up calling uart_set_options() for an already enabled
2158          * console via tty_find_polling_driver() and uart_poll_init().
2159          */
2160         if (!uart_console_enabled(port) && !port->console_reinit)
2161                 uart_port_spin_lock_init(port);
2162
2163         memset(&termios, 0, sizeof(struct ktermios));
2164
2165         termios.c_cflag |= CREAD | HUPCL | CLOCAL;
2166         tty_termios_encode_baud_rate(&termios, baud, baud);
2167
2168         if (bits == 7)
2169                 termios.c_cflag |= CS7;
2170         else
2171                 termios.c_cflag |= CS8;
2172
2173         switch (parity) {
2174         case 'o': case 'O':
2175                 termios.c_cflag |= PARODD;
2176                 fallthrough;
2177         case 'e': case 'E':
2178                 termios.c_cflag |= PARENB;
2179                 break;
2180         }
2181
2182         if (flow == 'r')
2183                 termios.c_cflag |= CRTSCTS;
2184
2185         /*
2186          * some uarts on other side don't support no flow control.
2187          * So we set * DTR in host uart to make them happy
2188          */
2189         port->mctrl |= TIOCM_DTR;
2190
2191         port->ops->set_termios(port, &termios, &dummy);
2192         /*
2193          * Allow the setting of the UART parameters with a NULL console
2194          * too:
2195          */
2196         if (co) {
2197                 co->cflag = termios.c_cflag;
2198                 co->ispeed = termios.c_ispeed;
2199                 co->ospeed = termios.c_ospeed;
2200         }
2201
2202         return 0;
2203 }
2204 EXPORT_SYMBOL_GPL(uart_set_options);
2205 #endif /* CONFIG_SERIAL_CORE_CONSOLE */
2206
2207 /**
2208  * uart_change_pm - set power state of the port
2209  *
2210  * @state: port descriptor
2211  * @pm_state: new state
2212  *
2213  * Locking: port->mutex has to be held
2214  */
2215 static void uart_change_pm(struct uart_state *state,
2216                            enum uart_pm_state pm_state)
2217 {
2218         struct uart_port *port = uart_port_check(state);
2219
2220         if (state->pm_state != pm_state) {
2221                 if (port && port->ops->pm)
2222                         port->ops->pm(port, pm_state, state->pm_state);
2223                 state->pm_state = pm_state;
2224         }
2225 }
2226
2227 struct uart_match {
2228         struct uart_port *port;
2229         struct uart_driver *driver;
2230 };
2231
2232 static int serial_match_port(struct device *dev, void *data)
2233 {
2234         struct uart_match *match = data;
2235         struct tty_driver *tty_drv = match->driver->tty_driver;
2236         dev_t devt = MKDEV(tty_drv->major, tty_drv->minor_start) +
2237                 match->port->line;
2238
2239         return dev->devt == devt; /* Actually, only one tty per port */
2240 }
2241
2242 int uart_suspend_port(struct uart_driver *drv, struct uart_port *uport)
2243 {
2244         struct uart_state *state = drv->state + uport->line;
2245         struct tty_port *port = &state->port;
2246         struct device *tty_dev;
2247         struct uart_match match = {uport, drv};
2248
2249         mutex_lock(&port->mutex);
2250
2251         tty_dev = device_find_child(uport->dev, &match, serial_match_port);
2252         if (tty_dev && device_may_wakeup(tty_dev)) {
2253                 enable_irq_wake(uport->irq);
2254                 put_device(tty_dev);
2255                 mutex_unlock(&port->mutex);
2256                 return 0;
2257         }
2258         put_device(tty_dev);
2259
2260         /*
2261          * Nothing to do if the console is not suspending
2262          * except stop_rx to prevent any asynchronous data
2263          * over RX line. Re-start_rx, when required, is
2264          * done by set_termios in resume sequence
2265          */
2266         if (!console_suspend_enabled && uart_console(uport)) {
2267                 uport->ops->stop_rx(uport);
2268                 goto unlock;
2269         }
2270
2271         uport->suspended = 1;
2272
2273         if (tty_port_initialized(port)) {
2274                 const struct uart_ops *ops = uport->ops;
2275                 int tries;
2276                 unsigned int mctrl;
2277
2278                 tty_port_set_suspended(port, 1);
2279                 tty_port_set_initialized(port, 0);
2280
2281                 spin_lock_irq(&uport->lock);
2282                 ops->stop_tx(uport);
2283                 ops->set_mctrl(uport, 0);
2284                 /* save mctrl so it can be restored on resume */
2285                 mctrl = uport->mctrl;
2286                 uport->mctrl = 0;
2287                 ops->stop_rx(uport);
2288                 spin_unlock_irq(&uport->lock);
2289
2290                 /*
2291                  * Wait for the transmitter to empty.
2292                  */
2293                 for (tries = 3; !ops->tx_empty(uport) && tries; tries--)
2294                         msleep(10);
2295                 if (!tries)
2296                         dev_err(uport->dev, "%s: Unable to drain transmitter\n",
2297                                 uport->name);
2298
2299                 ops->shutdown(uport);
2300                 uport->mctrl = mctrl;
2301         }
2302
2303         /*
2304          * Disable the console device before suspending.
2305          */
2306         if (uart_console(uport))
2307                 console_stop(uport->cons);
2308
2309         uart_change_pm(state, UART_PM_STATE_OFF);
2310 unlock:
2311         mutex_unlock(&port->mutex);
2312
2313         return 0;
2314 }
2315 EXPORT_SYMBOL(uart_suspend_port);
2316
2317 int uart_resume_port(struct uart_driver *drv, struct uart_port *uport)
2318 {
2319         struct uart_state *state = drv->state + uport->line;
2320         struct tty_port *port = &state->port;
2321         struct device *tty_dev;
2322         struct uart_match match = {uport, drv};
2323         struct ktermios termios;
2324
2325         mutex_lock(&port->mutex);
2326
2327         tty_dev = device_find_child(uport->dev, &match, serial_match_port);
2328         if (!uport->suspended && device_may_wakeup(tty_dev)) {
2329                 if (irqd_is_wakeup_set(irq_get_irq_data((uport->irq))))
2330                         disable_irq_wake(uport->irq);
2331                 put_device(tty_dev);
2332                 mutex_unlock(&port->mutex);
2333                 return 0;
2334         }
2335         put_device(tty_dev);
2336         uport->suspended = 0;
2337
2338         /*
2339          * Re-enable the console device after suspending.
2340          */
2341         if (uart_console(uport)) {
2342                 /*
2343                  * First try to use the console cflag setting.
2344                  */
2345                 memset(&termios, 0, sizeof(struct ktermios));
2346                 termios.c_cflag = uport->cons->cflag;
2347                 termios.c_ispeed = uport->cons->ispeed;
2348                 termios.c_ospeed = uport->cons->ospeed;
2349
2350                 /*
2351                  * If that's unset, use the tty termios setting.
2352                  */
2353                 if (port->tty && termios.c_cflag == 0)
2354                         termios = port->tty->termios;
2355
2356                 if (console_suspend_enabled)
2357                         uart_change_pm(state, UART_PM_STATE_ON);
2358                 uport->ops->set_termios(uport, &termios, NULL);
2359                 if (console_suspend_enabled)
2360                         console_start(uport->cons);
2361         }
2362
2363         if (tty_port_suspended(port)) {
2364                 const struct uart_ops *ops = uport->ops;
2365                 int ret;
2366
2367                 uart_change_pm(state, UART_PM_STATE_ON);
2368                 spin_lock_irq(&uport->lock);
2369                 ops->set_mctrl(uport, 0);
2370                 spin_unlock_irq(&uport->lock);
2371                 if (console_suspend_enabled || !uart_console(uport)) {
2372                         /* Protected by port mutex for now */
2373                         struct tty_struct *tty = port->tty;
2374
2375                         ret = ops->startup(uport);
2376                         if (ret == 0) {
2377                                 if (tty)
2378                                         uart_change_speed(tty, state, NULL);
2379                                 spin_lock_irq(&uport->lock);
2380                                 ops->set_mctrl(uport, uport->mctrl);
2381                                 ops->start_tx(uport);
2382                                 spin_unlock_irq(&uport->lock);
2383                                 tty_port_set_initialized(port, 1);
2384                         } else {
2385                                 /*
2386                                  * Failed to resume - maybe hardware went away?
2387                                  * Clear the "initialized" flag so we won't try
2388                                  * to call the low level drivers shutdown method.
2389                                  */
2390                                 uart_shutdown(tty, state);
2391                         }
2392                 }
2393
2394                 tty_port_set_suspended(port, 0);
2395         }
2396
2397         mutex_unlock(&port->mutex);
2398
2399         return 0;
2400 }
2401 EXPORT_SYMBOL(uart_resume_port);
2402
2403 static inline void
2404 uart_report_port(struct uart_driver *drv, struct uart_port *port)
2405 {
2406         char address[64];
2407
2408         switch (port->iotype) {
2409         case UPIO_PORT:
2410                 snprintf(address, sizeof(address), "I/O 0x%lx", port->iobase);
2411                 break;
2412         case UPIO_HUB6:
2413                 snprintf(address, sizeof(address),
2414                          "I/O 0x%lx offset 0x%x", port->iobase, port->hub6);
2415                 break;
2416         case UPIO_MEM:
2417         case UPIO_MEM16:
2418         case UPIO_MEM32:
2419         case UPIO_MEM32BE:
2420         case UPIO_AU:
2421         case UPIO_TSI:
2422                 snprintf(address, sizeof(address),
2423                          "MMIO 0x%llx", (unsigned long long)port->mapbase);
2424                 break;
2425         default:
2426                 strlcpy(address, "*unknown*", sizeof(address));
2427                 break;
2428         }
2429
2430         pr_info("%s%s%s at %s (irq = %d, base_baud = %d) is a %s\n",
2431                port->dev ? dev_name(port->dev) : "",
2432                port->dev ? ": " : "",
2433                port->name,
2434                address, port->irq, port->uartclk / 16, uart_type(port));
2435
2436         /* The magic multiplier feature is a bit obscure, so report it too.  */
2437         if (port->flags & UPF_MAGIC_MULTIPLIER)
2438                 pr_info("%s%s%s extra baud rates supported: %d, %d",
2439                         port->dev ? dev_name(port->dev) : "",
2440                         port->dev ? ": " : "",
2441                         port->name,
2442                         port->uartclk / 8, port->uartclk / 4);
2443 }
2444
2445 static void
2446 uart_configure_port(struct uart_driver *drv, struct uart_state *state,
2447                     struct uart_port *port)
2448 {
2449         unsigned int flags;
2450
2451         /*
2452          * If there isn't a port here, don't do anything further.
2453          */
2454         if (!port->iobase && !port->mapbase && !port->membase)
2455                 return;
2456
2457         /*
2458          * Now do the auto configuration stuff.  Note that config_port
2459          * is expected to claim the resources and map the port for us.
2460          */
2461         flags = 0;
2462         if (port->flags & UPF_AUTO_IRQ)
2463                 flags |= UART_CONFIG_IRQ;
2464         if (port->flags & UPF_BOOT_AUTOCONF) {
2465                 if (!(port->flags & UPF_FIXED_TYPE)) {
2466                         port->type = PORT_UNKNOWN;
2467                         flags |= UART_CONFIG_TYPE;
2468                 }
2469                 port->ops->config_port(port, flags);
2470         }
2471
2472         if (port->type != PORT_UNKNOWN) {
2473                 unsigned long flags;
2474
2475                 uart_report_port(drv, port);
2476
2477                 /* Power up port for set_mctrl() */
2478                 uart_change_pm(state, UART_PM_STATE_ON);
2479
2480                 /*
2481                  * Ensure that the modem control lines are de-activated.
2482                  * keep the DTR setting that is set in uart_set_options()
2483                  * We probably don't need a spinlock around this, but
2484                  */
2485                 spin_lock_irqsave(&port->lock, flags);
2486                 port->mctrl &= TIOCM_DTR;
2487                 if (port->rs485.flags & SER_RS485_ENABLED &&
2488                     !(port->rs485.flags & SER_RS485_RTS_AFTER_SEND))
2489                         port->mctrl |= TIOCM_RTS;
2490                 port->ops->set_mctrl(port, port->mctrl);
2491                 spin_unlock_irqrestore(&port->lock, flags);
2492
2493                 /*
2494                  * If this driver supports console, and it hasn't been
2495                  * successfully registered yet, try to re-register it.
2496                  * It may be that the port was not available.
2497                  */
2498                 if (port->cons && !(port->cons->flags & CON_ENABLED))
2499                         register_console(port->cons);
2500
2501                 /*
2502                  * Power down all ports by default, except the
2503                  * console if we have one.
2504                  */
2505                 if (!uart_console(port))
2506                         uart_change_pm(state, UART_PM_STATE_OFF);
2507         }
2508 }
2509
2510 #ifdef CONFIG_CONSOLE_POLL
2511
2512 static int uart_poll_init(struct tty_driver *driver, int line, char *options)
2513 {
2514         struct uart_driver *drv = driver->driver_state;
2515         struct uart_state *state = drv->state + line;
2516         struct tty_port *tport;
2517         struct uart_port *port;
2518         int baud = 9600;
2519         int bits = 8;
2520         int parity = 'n';
2521         int flow = 'n';
2522         int ret = 0;
2523
2524         tport = &state->port;
2525         mutex_lock(&tport->mutex);
2526
2527         port = uart_port_check(state);
2528         if (!port || !(port->ops->poll_get_char && port->ops->poll_put_char)) {
2529                 ret = -1;
2530                 goto out;
2531         }
2532
2533         if (port->ops->poll_init) {
2534                 /*
2535                  * We don't set initialized as we only initialized the hw,
2536                  * e.g. state->xmit is still uninitialized.
2537                  */
2538                 if (!tty_port_initialized(tport))
2539                         ret = port->ops->poll_init(port);
2540         }
2541
2542         if (!ret && options) {
2543                 uart_parse_options(options, &baud, &parity, &bits, &flow);
2544                 ret = uart_set_options(port, NULL, baud, parity, bits, flow);
2545         }
2546 out:
2547         mutex_unlock(&tport->mutex);
2548         return ret;
2549 }
2550
2551 static int uart_poll_get_char(struct tty_driver *driver, int line)
2552 {
2553         struct uart_driver *drv = driver->driver_state;
2554         struct uart_state *state = drv->state + line;
2555         struct uart_port *port;
2556         int ret = -1;
2557
2558         port = uart_port_ref(state);
2559         if (port) {
2560                 ret = port->ops->poll_get_char(port);
2561                 uart_port_deref(port);
2562         }
2563
2564         return ret;
2565 }
2566
2567 static void uart_poll_put_char(struct tty_driver *driver, int line, char ch)
2568 {
2569         struct uart_driver *drv = driver->driver_state;
2570         struct uart_state *state = drv->state + line;
2571         struct uart_port *port;
2572
2573         port = uart_port_ref(state);
2574         if (!port)
2575                 return;
2576
2577         if (ch == '\n')
2578                 port->ops->poll_put_char(port, '\r');
2579         port->ops->poll_put_char(port, ch);
2580         uart_port_deref(port);
2581 }
2582 #endif
2583
2584 static const struct tty_operations uart_ops = {
2585         .install        = uart_install,
2586         .open           = uart_open,
2587         .close          = uart_close,
2588         .write          = uart_write,
2589         .put_char       = uart_put_char,
2590         .flush_chars    = uart_flush_chars,
2591         .write_room     = uart_write_room,
2592         .chars_in_buffer= uart_chars_in_buffer,
2593         .flush_buffer   = uart_flush_buffer,
2594         .ioctl          = uart_ioctl,
2595         .throttle       = uart_throttle,
2596         .unthrottle     = uart_unthrottle,
2597         .send_xchar     = uart_send_xchar,
2598         .set_termios    = uart_set_termios,
2599         .set_ldisc      = uart_set_ldisc,
2600         .stop           = uart_stop,
2601         .start          = uart_start,
2602         .hangup         = uart_hangup,
2603         .break_ctl      = uart_break_ctl,
2604         .wait_until_sent= uart_wait_until_sent,
2605 #ifdef CONFIG_PROC_FS
2606         .proc_show      = uart_proc_show,
2607 #endif
2608         .tiocmget       = uart_tiocmget,
2609         .tiocmset       = uart_tiocmset,
2610         .set_serial     = uart_set_info_user,
2611         .get_serial     = uart_get_info_user,
2612         .get_icount     = uart_get_icount,
2613 #ifdef CONFIG_CONSOLE_POLL
2614         .poll_init      = uart_poll_init,
2615         .poll_get_char  = uart_poll_get_char,
2616         .poll_put_char  = uart_poll_put_char,
2617 #endif
2618 };
2619
2620 static const struct tty_port_operations uart_port_ops = {
2621         .carrier_raised = uart_carrier_raised,
2622         .dtr_rts        = uart_dtr_rts,
2623         .activate       = uart_port_activate,
2624         .shutdown       = uart_tty_port_shutdown,
2625 };
2626
2627 /**
2628  *      uart_register_driver - register a driver with the uart core layer
2629  *      @drv: low level driver structure
2630  *
2631  *      Register a uart driver with the core driver.  We in turn register
2632  *      with the tty layer, and initialise the core driver per-port state.
2633  *
2634  *      We have a proc file in /proc/tty/driver which is named after the
2635  *      normal driver.
2636  *
2637  *      drv->port should be NULL, and the per-port structures should be
2638  *      registered using uart_add_one_port after this call has succeeded.
2639  */
2640 int uart_register_driver(struct uart_driver *drv)
2641 {
2642         struct tty_driver *normal;
2643         int i, retval = -ENOMEM;
2644
2645         BUG_ON(drv->state);
2646
2647         /*
2648          * Maybe we should be using a slab cache for this, especially if
2649          * we have a large number of ports to handle.
2650          */
2651         drv->state = kcalloc(drv->nr, sizeof(struct uart_state), GFP_KERNEL);
2652         if (!drv->state)
2653                 goto out;
2654
2655         normal = tty_alloc_driver(drv->nr, TTY_DRIVER_REAL_RAW |
2656                         TTY_DRIVER_DYNAMIC_DEV);
2657         if (IS_ERR(normal)) {
2658                 retval = PTR_ERR(normal);
2659                 goto out_kfree;
2660         }
2661
2662         drv->tty_driver = normal;
2663
2664         normal->driver_name     = drv->driver_name;
2665         normal->name            = drv->dev_name;
2666         normal->major           = drv->major;
2667         normal->minor_start     = drv->minor;
2668         normal->type            = TTY_DRIVER_TYPE_SERIAL;
2669         normal->subtype         = SERIAL_TYPE_NORMAL;
2670         normal->init_termios    = tty_std_termios;
2671         normal->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
2672         normal->init_termios.c_ispeed = normal->init_termios.c_ospeed = 9600;
2673         normal->driver_state    = drv;
2674         tty_set_operations(normal, &uart_ops);
2675
2676         /*
2677          * Initialise the UART state(s).
2678          */
2679         for (i = 0; i < drv->nr; i++) {
2680                 struct uart_state *state = drv->state + i;
2681                 struct tty_port *port = &state->port;
2682
2683                 tty_port_init(port);
2684                 port->ops = &uart_port_ops;
2685         }
2686
2687         retval = tty_register_driver(normal);
2688         if (retval >= 0)
2689                 return retval;
2690
2691         for (i = 0; i < drv->nr; i++)
2692                 tty_port_destroy(&drv->state[i].port);
2693         tty_driver_kref_put(normal);
2694 out_kfree:
2695         kfree(drv->state);
2696 out:
2697         return retval;
2698 }
2699 EXPORT_SYMBOL(uart_register_driver);
2700
2701 /**
2702  *      uart_unregister_driver - remove a driver from the uart core layer
2703  *      @drv: low level driver structure
2704  *
2705  *      Remove all references to a driver from the core driver.  The low
2706  *      level driver must have removed all its ports via the
2707  *      uart_remove_one_port() if it registered them with uart_add_one_port().
2708  *      (ie, drv->port == NULL)
2709  */
2710 void uart_unregister_driver(struct uart_driver *drv)
2711 {
2712         struct tty_driver *p = drv->tty_driver;
2713         unsigned int i;
2714
2715         tty_unregister_driver(p);
2716         tty_driver_kref_put(p);
2717         for (i = 0; i < drv->nr; i++)
2718                 tty_port_destroy(&drv->state[i].port);
2719         kfree(drv->state);
2720         drv->state = NULL;
2721         drv->tty_driver = NULL;
2722 }
2723 EXPORT_SYMBOL(uart_unregister_driver);
2724
2725 struct tty_driver *uart_console_device(struct console *co, int *index)
2726 {
2727         struct uart_driver *p = co->data;
2728         *index = co->index;
2729         return p->tty_driver;
2730 }
2731 EXPORT_SYMBOL_GPL(uart_console_device);
2732
2733 static ssize_t uartclk_show(struct device *dev,
2734         struct device_attribute *attr, char *buf)
2735 {
2736         struct serial_struct tmp;
2737         struct tty_port *port = dev_get_drvdata(dev);
2738
2739         uart_get_info(port, &tmp);
2740         return sprintf(buf, "%d\n", tmp.baud_base * 16);
2741 }
2742
2743 static ssize_t type_show(struct device *dev,
2744         struct device_attribute *attr, char *buf)
2745 {
2746         struct serial_struct tmp;
2747         struct tty_port *port = dev_get_drvdata(dev);
2748
2749         uart_get_info(port, &tmp);
2750         return sprintf(buf, "%d\n", tmp.type);
2751 }
2752
2753 static ssize_t line_show(struct device *dev,
2754         struct device_attribute *attr, char *buf)
2755 {
2756         struct serial_struct tmp;
2757         struct tty_port *port = dev_get_drvdata(dev);
2758
2759         uart_get_info(port, &tmp);
2760         return sprintf(buf, "%d\n", tmp.line);
2761 }
2762
2763 static ssize_t port_show(struct device *dev,
2764         struct device_attribute *attr, char *buf)
2765 {
2766         struct serial_struct tmp;
2767         struct tty_port *port = dev_get_drvdata(dev);
2768         unsigned long ioaddr;
2769
2770         uart_get_info(port, &tmp);
2771         ioaddr = tmp.port;
2772         if (HIGH_BITS_OFFSET)
2773                 ioaddr |= (unsigned long)tmp.port_high << HIGH_BITS_OFFSET;
2774         return sprintf(buf, "0x%lX\n", ioaddr);
2775 }
2776
2777 static ssize_t irq_show(struct device *dev,
2778         struct device_attribute *attr, char *buf)
2779 {
2780         struct serial_struct tmp;
2781         struct tty_port *port = dev_get_drvdata(dev);
2782
2783         uart_get_info(port, &tmp);
2784         return sprintf(buf, "%d\n", tmp.irq);
2785 }
2786
2787 static ssize_t flags_show(struct device *dev,
2788         struct device_attribute *attr, char *buf)
2789 {
2790         struct serial_struct tmp;
2791         struct tty_port *port = dev_get_drvdata(dev);
2792
2793         uart_get_info(port, &tmp);
2794         return sprintf(buf, "0x%X\n", tmp.flags);
2795 }
2796
2797 static ssize_t xmit_fifo_size_show(struct device *dev,
2798         struct device_attribute *attr, char *buf)
2799 {
2800         struct serial_struct tmp;
2801         struct tty_port *port = dev_get_drvdata(dev);
2802
2803         uart_get_info(port, &tmp);
2804         return sprintf(buf, "%d\n", tmp.xmit_fifo_size);
2805 }
2806
2807 static ssize_t close_delay_show(struct device *dev,
2808         struct device_attribute *attr, char *buf)
2809 {
2810         struct serial_struct tmp;
2811         struct tty_port *port = dev_get_drvdata(dev);
2812
2813         uart_get_info(port, &tmp);
2814         return sprintf(buf, "%d\n", tmp.close_delay);
2815 }
2816
2817 static ssize_t closing_wait_show(struct device *dev,
2818         struct device_attribute *attr, char *buf)
2819 {
2820         struct serial_struct tmp;
2821         struct tty_port *port = dev_get_drvdata(dev);
2822
2823         uart_get_info(port, &tmp);
2824         return sprintf(buf, "%d\n", tmp.closing_wait);
2825 }
2826
2827 static ssize_t custom_divisor_show(struct device *dev,
2828         struct device_attribute *attr, char *buf)
2829 {
2830         struct serial_struct tmp;
2831         struct tty_port *port = dev_get_drvdata(dev);
2832
2833         uart_get_info(port, &tmp);
2834         return sprintf(buf, "%d\n", tmp.custom_divisor);
2835 }
2836
2837 static ssize_t io_type_show(struct device *dev,
2838         struct device_attribute *attr, char *buf)
2839 {
2840         struct serial_struct tmp;
2841         struct tty_port *port = dev_get_drvdata(dev);
2842
2843         uart_get_info(port, &tmp);
2844         return sprintf(buf, "%d\n", tmp.io_type);
2845 }
2846
2847 static ssize_t iomem_base_show(struct device *dev,
2848         struct device_attribute *attr, char *buf)
2849 {
2850         struct serial_struct tmp;
2851         struct tty_port *port = dev_get_drvdata(dev);
2852
2853         uart_get_info(port, &tmp);
2854         return sprintf(buf, "0x%lX\n", (unsigned long)tmp.iomem_base);
2855 }
2856
2857 static ssize_t iomem_reg_shift_show(struct device *dev,
2858         struct device_attribute *attr, char *buf)
2859 {
2860         struct serial_struct tmp;
2861         struct tty_port *port = dev_get_drvdata(dev);
2862
2863         uart_get_info(port, &tmp);
2864         return sprintf(buf, "%d\n", tmp.iomem_reg_shift);
2865 }
2866
2867 static ssize_t console_show(struct device *dev,
2868         struct device_attribute *attr, char *buf)
2869 {
2870         struct tty_port *port = dev_get_drvdata(dev);
2871         struct uart_state *state = container_of(port, struct uart_state, port);
2872         struct uart_port *uport;
2873         bool console = false;
2874
2875         mutex_lock(&port->mutex);
2876         uport = uart_port_check(state);
2877         if (uport)
2878                 console = uart_console_enabled(uport);
2879         mutex_unlock(&port->mutex);
2880
2881         return sprintf(buf, "%c\n", console ? 'Y' : 'N');
2882 }
2883
2884 static ssize_t console_store(struct device *dev,
2885         struct device_attribute *attr, const char *buf, size_t count)
2886 {
2887         struct tty_port *port = dev_get_drvdata(dev);
2888         struct uart_state *state = container_of(port, struct uart_state, port);
2889         struct uart_port *uport;
2890         bool oldconsole, newconsole;
2891         int ret;
2892
2893         ret = kstrtobool(buf, &newconsole);
2894         if (ret)
2895                 return ret;
2896
2897         mutex_lock(&port->mutex);
2898         uport = uart_port_check(state);
2899         if (uport) {
2900                 oldconsole = uart_console_enabled(uport);
2901                 if (oldconsole && !newconsole) {
2902                         ret = unregister_console(uport->cons);
2903                 } else if (!oldconsole && newconsole) {
2904                         if (uart_console(uport)) {
2905                                 uport->console_reinit = 1;
2906                                 register_console(uport->cons);
2907                         } else {
2908                                 ret = -ENOENT;
2909                         }
2910                 }
2911         } else {
2912                 ret = -ENXIO;
2913         }
2914         mutex_unlock(&port->mutex);
2915
2916         return ret < 0 ? ret : count;
2917 }
2918
2919 static DEVICE_ATTR_RO(uartclk);
2920 static DEVICE_ATTR_RO(type);
2921 static DEVICE_ATTR_RO(line);
2922 static DEVICE_ATTR_RO(port);
2923 static DEVICE_ATTR_RO(irq);
2924 static DEVICE_ATTR_RO(flags);
2925 static DEVICE_ATTR_RO(xmit_fifo_size);
2926 static DEVICE_ATTR_RO(close_delay);
2927 static DEVICE_ATTR_RO(closing_wait);
2928 static DEVICE_ATTR_RO(custom_divisor);
2929 static DEVICE_ATTR_RO(io_type);
2930 static DEVICE_ATTR_RO(iomem_base);
2931 static DEVICE_ATTR_RO(iomem_reg_shift);
2932 static DEVICE_ATTR_RW(console);
2933
2934 static struct attribute *tty_dev_attrs[] = {
2935         &dev_attr_uartclk.attr,
2936         &dev_attr_type.attr,
2937         &dev_attr_line.attr,
2938         &dev_attr_port.attr,
2939         &dev_attr_irq.attr,
2940         &dev_attr_flags.attr,
2941         &dev_attr_xmit_fifo_size.attr,
2942         &dev_attr_close_delay.attr,
2943         &dev_attr_closing_wait.attr,
2944         &dev_attr_custom_divisor.attr,
2945         &dev_attr_io_type.attr,
2946         &dev_attr_iomem_base.attr,
2947         &dev_attr_iomem_reg_shift.attr,
2948         &dev_attr_console.attr,
2949         NULL
2950 };
2951
2952 static const struct attribute_group tty_dev_attr_group = {
2953         .attrs = tty_dev_attrs,
2954 };
2955
2956 /**
2957  *      uart_add_one_port - attach a driver-defined port structure
2958  *      @drv: pointer to the uart low level driver structure for this port
2959  *      @uport: uart port structure to use for this port.
2960  *
2961  *      Context: task context, might sleep
2962  *
2963  *      This allows the driver to register its own uart_port structure
2964  *      with the core driver.  The main purpose is to allow the low
2965  *      level uart drivers to expand uart_port, rather than having yet
2966  *      more levels of structures.
2967  */
2968 int uart_add_one_port(struct uart_driver *drv, struct uart_port *uport)
2969 {
2970         struct uart_state *state;
2971         struct tty_port *port;
2972         int ret = 0;
2973         struct device *tty_dev;
2974         int num_groups;
2975
2976         if (uport->line >= drv->nr)
2977                 return -EINVAL;
2978
2979         state = drv->state + uport->line;
2980         port = &state->port;
2981
2982         mutex_lock(&port_mutex);
2983         mutex_lock(&port->mutex);
2984         if (state->uart_port) {
2985                 ret = -EINVAL;
2986                 goto out;
2987         }
2988
2989         /* Link the port to the driver state table and vice versa */
2990         atomic_set(&state->refcount, 1);
2991         init_waitqueue_head(&state->remove_wait);
2992         state->uart_port = uport;
2993         uport->state = state;
2994
2995         state->pm_state = UART_PM_STATE_UNDEFINED;
2996         uport->cons = drv->cons;
2997         uport->minor = drv->tty_driver->minor_start + uport->line;
2998         uport->name = kasprintf(GFP_KERNEL, "%s%d", drv->dev_name,
2999                                 drv->tty_driver->name_base + uport->line);
3000         if (!uport->name) {
3001                 ret = -ENOMEM;
3002                 goto out;
3003         }
3004
3005         /*
3006          * If this port is in use as a console then the spinlock is already
3007          * initialised.
3008          */
3009         if (!uart_console_enabled(uport))
3010                 uart_port_spin_lock_init(uport);
3011
3012         if (uport->cons && uport->dev)
3013                 of_console_check(uport->dev->of_node, uport->cons->name, uport->line);
3014
3015         tty_port_link_device(port, drv->tty_driver, uport->line);
3016         uart_configure_port(drv, state, uport);
3017
3018         port->console = uart_console(uport);
3019
3020         num_groups = 2;
3021         if (uport->attr_group)
3022                 num_groups++;
3023
3024         uport->tty_groups = kcalloc(num_groups, sizeof(*uport->tty_groups),
3025                                     GFP_KERNEL);
3026         if (!uport->tty_groups) {
3027                 ret = -ENOMEM;
3028                 goto out;
3029         }
3030         uport->tty_groups[0] = &tty_dev_attr_group;
3031         if (uport->attr_group)
3032                 uport->tty_groups[1] = uport->attr_group;
3033
3034         /*
3035          * Register the port whether it's detected or not.  This allows
3036          * setserial to be used to alter this port's parameters.
3037          */
3038         tty_dev = tty_port_register_device_attr_serdev(port, drv->tty_driver,
3039                         uport->line, uport->dev, port, uport->tty_groups);
3040         if (!IS_ERR(tty_dev)) {
3041                 device_set_wakeup_capable(tty_dev, 1);
3042         } else {
3043                 dev_err(uport->dev, "Cannot register tty device on line %d\n",
3044                        uport->line);
3045         }
3046
3047         /*
3048          * Ensure UPF_DEAD is not set.
3049          */
3050         uport->flags &= ~UPF_DEAD;
3051
3052  out:
3053         mutex_unlock(&port->mutex);
3054         mutex_unlock(&port_mutex);
3055
3056         return ret;
3057 }
3058 EXPORT_SYMBOL(uart_add_one_port);
3059
3060 /**
3061  *      uart_remove_one_port - detach a driver defined port structure
3062  *      @drv: pointer to the uart low level driver structure for this port
3063  *      @uport: uart port structure for this port
3064  *
3065  *      Context: task context, might sleep
3066  *
3067  *      This unhooks (and hangs up) the specified port structure from the
3068  *      core driver.  No further calls will be made to the low-level code
3069  *      for this port.
3070  */
3071 int uart_remove_one_port(struct uart_driver *drv, struct uart_port *uport)
3072 {
3073         struct uart_state *state = drv->state + uport->line;
3074         struct tty_port *port = &state->port;
3075         struct uart_port *uart_port;
3076         struct tty_struct *tty;
3077         int ret = 0;
3078
3079         mutex_lock(&port_mutex);
3080
3081         /*
3082          * Mark the port "dead" - this prevents any opens from
3083          * succeeding while we shut down the port.
3084          */
3085         mutex_lock(&port->mutex);
3086         uart_port = uart_port_check(state);
3087         if (uart_port != uport)
3088                 dev_alert(uport->dev, "Removing wrong port: %p != %p\n",
3089                           uart_port, uport);
3090
3091         if (!uart_port) {
3092                 mutex_unlock(&port->mutex);
3093                 ret = -EINVAL;
3094                 goto out;
3095         }
3096         uport->flags |= UPF_DEAD;
3097         mutex_unlock(&port->mutex);
3098
3099         /*
3100          * Remove the devices from the tty layer
3101          */
3102         tty_port_unregister_device(port, drv->tty_driver, uport->line);
3103
3104         tty = tty_port_tty_get(port);
3105         if (tty) {
3106                 tty_vhangup(port->tty);
3107                 tty_kref_put(tty);
3108         }
3109
3110         /*
3111          * If the port is used as a console, unregister it
3112          */
3113         if (uart_console(uport))
3114                 unregister_console(uport->cons);
3115
3116         /*
3117          * Free the port IO and memory resources, if any.
3118          */
3119         if (uport->type != PORT_UNKNOWN && uport->ops->release_port)
3120                 uport->ops->release_port(uport);
3121         kfree(uport->tty_groups);
3122         kfree(uport->name);
3123
3124         /*
3125          * Indicate that there isn't a port here anymore.
3126          */
3127         uport->type = PORT_UNKNOWN;
3128
3129         mutex_lock(&port->mutex);
3130         WARN_ON(atomic_dec_return(&state->refcount) < 0);
3131         wait_event(state->remove_wait, !atomic_read(&state->refcount));
3132         state->uart_port = NULL;
3133         mutex_unlock(&port->mutex);
3134 out:
3135         mutex_unlock(&port_mutex);
3136
3137         return ret;
3138 }
3139 EXPORT_SYMBOL(uart_remove_one_port);
3140
3141 /*
3142  *      Are the two ports equivalent?
3143  */
3144 bool uart_match_port(const struct uart_port *port1,
3145                 const struct uart_port *port2)
3146 {
3147         if (port1->iotype != port2->iotype)
3148                 return false;
3149
3150         switch (port1->iotype) {
3151         case UPIO_PORT:
3152                 return port1->iobase == port2->iobase;
3153         case UPIO_HUB6:
3154                 return port1->iobase == port2->iobase &&
3155                        port1->hub6   == port2->hub6;
3156         case UPIO_MEM:
3157         case UPIO_MEM16:
3158         case UPIO_MEM32:
3159         case UPIO_MEM32BE:
3160         case UPIO_AU:
3161         case UPIO_TSI:
3162                 return port1->mapbase == port2->mapbase;
3163         }
3164
3165         return false;
3166 }
3167 EXPORT_SYMBOL(uart_match_port);
3168
3169 /**
3170  *      uart_handle_dcd_change - handle a change of carrier detect state
3171  *      @uport: uart_port structure for the open port
3172  *      @status: new carrier detect status, nonzero if active
3173  *
3174  *      Caller must hold uport->lock
3175  */
3176 void uart_handle_dcd_change(struct uart_port *uport, unsigned int status)
3177 {
3178         struct tty_port *port = &uport->state->port;
3179         struct tty_struct *tty = port->tty;
3180         struct tty_ldisc *ld;
3181
3182         lockdep_assert_held_once(&uport->lock);
3183
3184         if (tty) {
3185                 ld = tty_ldisc_ref(tty);
3186                 if (ld) {
3187                         if (ld->ops->dcd_change)
3188                                 ld->ops->dcd_change(tty, status);
3189                         tty_ldisc_deref(ld);
3190                 }
3191         }
3192
3193         uport->icount.dcd++;
3194
3195         if (uart_dcd_enabled(uport)) {
3196                 if (status)
3197                         wake_up_interruptible(&port->open_wait);
3198                 else if (tty)
3199                         tty_hangup(tty);
3200         }
3201 }
3202 EXPORT_SYMBOL_GPL(uart_handle_dcd_change);
3203
3204 /**
3205  *      uart_handle_cts_change - handle a change of clear-to-send state
3206  *      @uport: uart_port structure for the open port
3207  *      @status: new clear to send status, nonzero if active
3208  *
3209  *      Caller must hold uport->lock
3210  */
3211 void uart_handle_cts_change(struct uart_port *uport, unsigned int status)
3212 {
3213         lockdep_assert_held_once(&uport->lock);
3214
3215         uport->icount.cts++;
3216
3217         if (uart_softcts_mode(uport)) {
3218                 if (uport->hw_stopped) {
3219                         if (status) {
3220                                 uport->hw_stopped = 0;
3221                                 uport->ops->start_tx(uport);
3222                                 uart_write_wakeup(uport);
3223                         }
3224                 } else {
3225                         if (!status) {
3226                                 uport->hw_stopped = 1;
3227                                 uport->ops->stop_tx(uport);
3228                         }
3229                 }
3230
3231         }
3232 }
3233 EXPORT_SYMBOL_GPL(uart_handle_cts_change);
3234
3235 /**
3236  * uart_insert_char - push a char to the uart layer
3237  *
3238  * User is responsible to call tty_flip_buffer_push when they are done with
3239  * insertion.
3240  *
3241  * @port: corresponding port
3242  * @status: state of the serial port RX buffer (LSR for 8250)
3243  * @overrun: mask of overrun bits in @status
3244  * @ch: character to push
3245  * @flag: flag for the character (see TTY_NORMAL and friends)
3246  */
3247 void uart_insert_char(struct uart_port *port, unsigned int status,
3248                  unsigned int overrun, unsigned int ch, unsigned int flag)
3249 {
3250         struct tty_port *tport = &port->state->port;
3251
3252         if ((status & port->ignore_status_mask & ~overrun) == 0)
3253                 if (tty_insert_flip_char(tport, ch, flag) == 0)
3254                         ++port->icount.buf_overrun;
3255
3256         /*
3257          * Overrun is special.  Since it's reported immediately,
3258          * it doesn't affect the current character.
3259          */
3260         if (status & ~port->ignore_status_mask & overrun)
3261                 if (tty_insert_flip_char(tport, 0, TTY_OVERRUN) == 0)
3262                         ++port->icount.buf_overrun;
3263 }
3264 EXPORT_SYMBOL_GPL(uart_insert_char);
3265
3266 #ifdef CONFIG_MAGIC_SYSRQ_SERIAL
3267 static const char sysrq_toggle_seq[] = CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE;
3268
3269 static void uart_sysrq_on(struct work_struct *w)
3270 {
3271         int sysrq_toggle_seq_len = strlen(sysrq_toggle_seq);
3272
3273         sysrq_toggle_support(1);
3274         pr_info("SysRq is enabled by magic sequence '%*pE' on serial\n",
3275                 sysrq_toggle_seq_len, sysrq_toggle_seq);
3276 }
3277 static DECLARE_WORK(sysrq_enable_work, uart_sysrq_on);
3278
3279 /**
3280  *      uart_try_toggle_sysrq - Enables SysRq from serial line
3281  *      @port: uart_port structure where char(s) after BREAK met
3282  *      @ch: new character in the sequence after received BREAK
3283  *
3284  *      Enables magic SysRq when the required sequence is met on port
3285  *      (see CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE).
3286  *
3287  *      Returns false if @ch is out of enabling sequence and should be
3288  *      handled some other way, true if @ch was consumed.
3289  */
3290 bool uart_try_toggle_sysrq(struct uart_port *port, unsigned int ch)
3291 {
3292         int sysrq_toggle_seq_len = strlen(sysrq_toggle_seq);
3293
3294         if (!sysrq_toggle_seq_len)
3295                 return false;
3296
3297         BUILD_BUG_ON(ARRAY_SIZE(sysrq_toggle_seq) >= U8_MAX);
3298         if (sysrq_toggle_seq[port->sysrq_seq] != ch) {
3299                 port->sysrq_seq = 0;
3300                 return false;
3301         }
3302
3303         if (++port->sysrq_seq < sysrq_toggle_seq_len) {
3304                 port->sysrq = jiffies + SYSRQ_TIMEOUT;
3305                 return true;
3306         }
3307
3308         schedule_work(&sysrq_enable_work);
3309
3310         port->sysrq = 0;
3311         return true;
3312 }
3313 EXPORT_SYMBOL_GPL(uart_try_toggle_sysrq);
3314 #endif
3315
3316 /**
3317  * uart_get_rs485_mode() - retrieve rs485 properties for given uart
3318  * @port: uart device's target port
3319  *
3320  * This function implements the device tree binding described in
3321  * Documentation/devicetree/bindings/serial/rs485.txt.
3322  */
3323 int uart_get_rs485_mode(struct uart_port *port)
3324 {
3325         struct serial_rs485 *rs485conf = &port->rs485;
3326         struct device *dev = port->dev;
3327         u32 rs485_delay[2];
3328         int ret;
3329
3330         ret = device_property_read_u32_array(dev, "rs485-rts-delay",
3331                                              rs485_delay, 2);
3332         if (!ret) {
3333                 rs485conf->delay_rts_before_send = rs485_delay[0];
3334                 rs485conf->delay_rts_after_send = rs485_delay[1];
3335         } else {
3336                 rs485conf->delay_rts_before_send = 0;
3337                 rs485conf->delay_rts_after_send = 0;
3338         }
3339
3340         /*
3341          * Clear full-duplex and enabled flags, set RTS polarity to active high
3342          * to get to a defined state with the following properties:
3343          */
3344         rs485conf->flags &= ~(SER_RS485_RX_DURING_TX | SER_RS485_ENABLED |
3345                               SER_RS485_TERMINATE_BUS |
3346                               SER_RS485_RTS_AFTER_SEND);
3347         rs485conf->flags |= SER_RS485_RTS_ON_SEND;
3348
3349         if (device_property_read_bool(dev, "rs485-rx-during-tx"))
3350                 rs485conf->flags |= SER_RS485_RX_DURING_TX;
3351
3352         if (device_property_read_bool(dev, "linux,rs485-enabled-at-boot-time"))
3353                 rs485conf->flags |= SER_RS485_ENABLED;
3354
3355         if (device_property_read_bool(dev, "rs485-rts-active-low")) {
3356                 rs485conf->flags &= ~SER_RS485_RTS_ON_SEND;
3357                 rs485conf->flags |= SER_RS485_RTS_AFTER_SEND;
3358         }
3359
3360         /*
3361          * Disabling termination by default is the safe choice:  Else if many
3362          * bus participants enable it, no communication is possible at all.
3363          * Works fine for short cables and users may enable for longer cables.
3364          */
3365         port->rs485_term_gpio = devm_gpiod_get_optional(dev, "rs485-term",
3366                                                         GPIOD_OUT_LOW);
3367         if (IS_ERR(port->rs485_term_gpio)) {
3368                 ret = PTR_ERR(port->rs485_term_gpio);
3369                 port->rs485_term_gpio = NULL;
3370                 return dev_err_probe(dev, ret, "Cannot get rs485-term-gpios\n");
3371         }
3372
3373         return 0;
3374 }
3375 EXPORT_SYMBOL_GPL(uart_get_rs485_mode);
3376
3377 MODULE_DESCRIPTION("Serial driver core");
3378 MODULE_LICENSE("GPL");