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