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