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