iwlwifi: remove 4965 prefix from iwl4965_ucode
[linux-2.6/mini2440.git] / drivers / serial / serial_core.c
blob53b03c629afffc86812e4fc22ba973d0c757cc5a
1 /*
2 * linux/drivers/char/core.c
4 * Driver core for serial ports
6 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
8 * Copyright 1999 ARM Limited
9 * Copyright (C) 2000-2001 Deep Blue Solutions Ltd.
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.
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.
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
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/serial_core.h>
31 #include <linux/smp_lock.h>
32 #include <linux/device.h>
33 #include <linux/serial.h> /* for serial_state and serial_icounter_struct */
34 #include <linux/delay.h>
35 #include <linux/mutex.h>
37 #include <asm/irq.h>
38 #include <asm/uaccess.h>
41 * This is used to lock changes in serial line configuration.
43 static DEFINE_MUTEX(port_mutex);
46 * lockdep: port->lock is initialized in two places, but we
47 * want only one lock-class:
49 static struct lock_class_key port_lock_key;
51 #define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8)
53 #define uart_users(state) ((state)->count + ((state)->info ? (state)->info->blocked_open : 0))
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
61 static void uart_change_speed(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);
67 * This routine is used by the interrupt handler to schedule processing in
68 * the software interrupt portion of the driver.
70 void uart_write_wakeup(struct uart_port *port)
72 struct uart_info *info = port->info;
74 * This means you called this function _after_ the port was
75 * closed. No cookie for you.
77 BUG_ON(!info);
78 tasklet_schedule(&info->tlet);
81 static void uart_stop(struct tty_struct *tty)
83 struct uart_state *state = tty->driver_data;
84 struct uart_port *port = state->port;
85 unsigned long flags;
87 spin_lock_irqsave(&port->lock, flags);
88 port->ops->stop_tx(port);
89 spin_unlock_irqrestore(&port->lock, flags);
92 static void __uart_start(struct tty_struct *tty)
94 struct uart_state *state = tty->driver_data;
95 struct uart_port *port = state->port;
97 if (!uart_circ_empty(&state->info->xmit) && state->info->xmit.buf &&
98 !tty->stopped && !tty->hw_stopped)
99 port->ops->start_tx(port);
102 static void uart_start(struct tty_struct *tty)
104 struct uart_state *state = tty->driver_data;
105 struct uart_port *port = state->port;
106 unsigned long flags;
108 spin_lock_irqsave(&port->lock, flags);
109 __uart_start(tty);
110 spin_unlock_irqrestore(&port->lock, flags);
113 static void uart_tasklet_action(unsigned long data)
115 struct uart_state *state = (struct uart_state *)data;
116 tty_wakeup(state->info->tty);
119 static inline void
120 uart_update_mctrl(struct uart_port *port, unsigned int set, unsigned int clear)
122 unsigned long flags;
123 unsigned int old;
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);
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)
137 * Startup the port. This will be called once per open. All calls
138 * will be serialised by the per-port semaphore.
140 static int uart_startup(struct uart_state *state, int init_hw)
142 struct uart_info *info = state->info;
143 struct uart_port *port = state->port;
144 unsigned long page;
145 int retval = 0;
147 if (info->flags & UIF_INITIALIZED)
148 return 0;
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
155 set_bit(TTY_IO_ERROR, &info->tty->flags);
157 if (port->type == PORT_UNKNOWN)
158 return 0;
161 * Initialise and allocate the transmit and temporary
162 * buffer.
164 if (!info->xmit.buf) {
165 page = get_zeroed_page(GFP_KERNEL);
166 if (!page)
167 return -ENOMEM;
169 info->xmit.buf = (unsigned char *) page;
170 uart_circ_clear(&info->xmit);
173 retval = port->ops->startup(port);
174 if (retval == 0) {
175 if (init_hw) {
177 * Initialise the hardware port settings.
179 uart_change_speed(state, NULL);
182 * Setup the RTS and DTR signals once the
183 * port is open and ready to respond.
185 if (info->tty->termios->c_cflag & CBAUD)
186 uart_set_mctrl(port, TIOCM_RTS | TIOCM_DTR);
189 if (info->flags & UIF_CTS_FLOW) {
190 spin_lock_irq(&port->lock);
191 if (!(port->ops->get_mctrl(port) & TIOCM_CTS))
192 info->tty->hw_stopped = 1;
193 spin_unlock_irq(&port->lock);
196 info->flags |= UIF_INITIALIZED;
198 clear_bit(TTY_IO_ERROR, &info->tty->flags);
201 if (retval && capable(CAP_SYS_ADMIN))
202 retval = 0;
204 return retval;
208 * This routine will shutdown a serial port; interrupts are disabled, and
209 * DTR is dropped if the hangup on close termio flag is on. Calls to
210 * uart_shutdown are serialised by the per-port semaphore.
212 static void uart_shutdown(struct uart_state *state)
214 struct uart_info *info = state->info;
215 struct uart_port *port = state->port;
218 * Set the TTY IO error marker
220 if (info->tty)
221 set_bit(TTY_IO_ERROR, &info->tty->flags);
223 if (info->flags & UIF_INITIALIZED) {
224 info->flags &= ~UIF_INITIALIZED;
227 * Turn off DTR and RTS early.
229 if (!info->tty || (info->tty->termios->c_cflag & HUPCL))
230 uart_clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
233 * clear delta_msr_wait queue to avoid mem leaks: we may free
234 * the irq here so the queue might never be woken up. Note
235 * that we won't end up waiting on delta_msr_wait again since
236 * any outstanding file descriptors should be pointing at
237 * hung_up_tty_fops now.
239 wake_up_interruptible(&info->delta_msr_wait);
242 * Free the IRQ and disable the port.
244 port->ops->shutdown(port);
247 * Ensure that the IRQ handler isn't running on another CPU.
249 synchronize_irq(port->irq);
253 * kill off our tasklet
255 tasklet_kill(&info->tlet);
258 * Free the transmit buffer page.
260 if (info->xmit.buf) {
261 free_page((unsigned long)info->xmit.buf);
262 info->xmit.buf = NULL;
267 * uart_update_timeout - update per-port FIFO timeout.
268 * @port: uart_port structure describing the port
269 * @cflag: termios cflag value
270 * @baud: speed of the port
272 * Set the port FIFO timeout value. The @cflag value should
273 * reflect the actual hardware settings.
275 void
276 uart_update_timeout(struct uart_port *port, unsigned int cflag,
277 unsigned int baud)
279 unsigned int bits;
281 /* byte size and parity */
282 switch (cflag & CSIZE) {
283 case CS5:
284 bits = 7;
285 break;
286 case CS6:
287 bits = 8;
288 break;
289 case CS7:
290 bits = 9;
291 break;
292 default:
293 bits = 10;
294 break; /* CS8 */
297 if (cflag & CSTOPB)
298 bits++;
299 if (cflag & PARENB)
300 bits++;
303 * The total number of bits to be transmitted in the fifo.
305 bits = bits * port->fifosize;
308 * Figure the timeout to send the above number of bits.
309 * Add .02 seconds of slop
311 port->timeout = (HZ * bits) / baud + HZ/50;
314 EXPORT_SYMBOL(uart_update_timeout);
317 * uart_get_baud_rate - return baud rate for a particular port
318 * @port: uart_port structure describing the port in question.
319 * @termios: desired termios settings.
320 * @old: old termios (or NULL)
321 * @min: minimum acceptable baud rate
322 * @max: maximum acceptable baud rate
324 * Decode the termios structure into a numeric baud rate,
325 * taking account of the magic 38400 baud rate (with spd_*
326 * flags), and mapping the %B0 rate to 9600 baud.
328 * If the new baud rate is invalid, try the old termios setting.
329 * If it's still invalid, we try 9600 baud.
331 * Update the @termios structure to reflect the baud rate
332 * we're actually going to be using. Don't do this for the case
333 * where B0 is requested ("hang up").
335 unsigned int
336 uart_get_baud_rate(struct uart_port *port, struct ktermios *termios,
337 struct ktermios *old, unsigned int min, unsigned int max)
339 unsigned int try, baud, altbaud = 38400;
340 int hung_up = 0;
341 upf_t flags = port->flags & UPF_SPD_MASK;
343 if (flags == UPF_SPD_HI)
344 altbaud = 57600;
345 if (flags == UPF_SPD_VHI)
346 altbaud = 115200;
347 if (flags == UPF_SPD_SHI)
348 altbaud = 230400;
349 if (flags == UPF_SPD_WARP)
350 altbaud = 460800;
352 for (try = 0; try < 2; try++) {
353 baud = tty_termios_baud_rate(termios);
356 * The spd_hi, spd_vhi, spd_shi, spd_warp kludge...
357 * Die! Die! Die!
359 if (baud == 38400)
360 baud = altbaud;
363 * Special case: B0 rate.
365 if (baud == 0) {
366 hung_up = 1;
367 baud = 9600;
370 if (baud >= min && baud <= max)
371 return baud;
374 * Oops, the quotient was zero. Try again with
375 * the old baud rate if possible.
377 termios->c_cflag &= ~CBAUD;
378 if (old) {
379 baud = tty_termios_baud_rate(old);
380 if (!hung_up)
381 tty_termios_encode_baud_rate(termios,
382 baud, baud);
383 old = NULL;
384 continue;
388 * As a last resort, if the quotient is zero,
389 * default to 9600 bps
391 if (!hung_up)
392 tty_termios_encode_baud_rate(termios, 9600, 9600);
395 return 0;
398 EXPORT_SYMBOL(uart_get_baud_rate);
401 * uart_get_divisor - return uart clock divisor
402 * @port: uart_port structure describing the port.
403 * @baud: desired baud rate
405 * Calculate the uart clock divisor for the port.
407 unsigned int
408 uart_get_divisor(struct uart_port *port, unsigned int baud)
410 unsigned int quot;
413 * Old custom speed handling.
415 if (baud == 38400 && (port->flags & UPF_SPD_MASK) == UPF_SPD_CUST)
416 quot = port->custom_divisor;
417 else
418 quot = (port->uartclk + (8 * baud)) / (16 * baud);
420 return quot;
423 EXPORT_SYMBOL(uart_get_divisor);
425 /* FIXME: Consistent locking policy */
426 static void
427 uart_change_speed(struct uart_state *state, struct ktermios *old_termios)
429 struct tty_struct *tty = state->info->tty;
430 struct uart_port *port = state->port;
431 struct ktermios *termios;
434 * If we have no tty, termios, or the port does not exist,
435 * then we can't set the parameters for this port.
437 if (!tty || !tty->termios || port->type == PORT_UNKNOWN)
438 return;
440 termios = tty->termios;
443 * Set flags based on termios cflag
445 if (termios->c_cflag & CRTSCTS)
446 state->info->flags |= UIF_CTS_FLOW;
447 else
448 state->info->flags &= ~UIF_CTS_FLOW;
450 if (termios->c_cflag & CLOCAL)
451 state->info->flags &= ~UIF_CHECK_CD;
452 else
453 state->info->flags |= UIF_CHECK_CD;
455 port->ops->set_termios(port, termios, old_termios);
458 static inline int
459 __uart_put_char(struct uart_port *port, struct circ_buf *circ, unsigned char c)
461 unsigned long flags;
462 int ret = 0;
464 if (!circ->buf)
465 return 0;
467 spin_lock_irqsave(&port->lock, flags);
468 if (uart_circ_chars_free(circ) != 0) {
469 circ->buf[circ->head] = c;
470 circ->head = (circ->head + 1) & (UART_XMIT_SIZE - 1);
471 ret = 1;
473 spin_unlock_irqrestore(&port->lock, flags);
474 return ret;
477 static int uart_put_char(struct tty_struct *tty, unsigned char ch)
479 struct uart_state *state = tty->driver_data;
481 return __uart_put_char(state->port, &state->info->xmit, ch);
484 static void uart_flush_chars(struct tty_struct *tty)
486 uart_start(tty);
489 static int
490 uart_write(struct tty_struct *tty, const unsigned char *buf, int count)
492 struct uart_state *state = tty->driver_data;
493 struct uart_port *port;
494 struct circ_buf *circ;
495 unsigned long flags;
496 int c, ret = 0;
499 * This means you called this function _after_ the port was
500 * closed. No cookie for you.
502 if (!state || !state->info) {
503 WARN_ON(1);
504 return -EL3HLT;
507 port = state->port;
508 circ = &state->info->xmit;
510 if (!circ->buf)
511 return 0;
513 spin_lock_irqsave(&port->lock, flags);
514 while (1) {
515 c = CIRC_SPACE_TO_END(circ->head, circ->tail, UART_XMIT_SIZE);
516 if (count < c)
517 c = count;
518 if (c <= 0)
519 break;
520 memcpy(circ->buf + circ->head, buf, c);
521 circ->head = (circ->head + c) & (UART_XMIT_SIZE - 1);
522 buf += c;
523 count -= c;
524 ret += c;
526 spin_unlock_irqrestore(&port->lock, flags);
528 uart_start(tty);
529 return ret;
532 static int uart_write_room(struct tty_struct *tty)
534 struct uart_state *state = tty->driver_data;
535 unsigned long flags;
536 int ret;
538 spin_lock_irqsave(&state->port->lock, flags);
539 ret = uart_circ_chars_free(&state->info->xmit);
540 spin_unlock_irqrestore(&state->port->lock, flags);
541 return ret;
544 static int uart_chars_in_buffer(struct tty_struct *tty)
546 struct uart_state *state = tty->driver_data;
547 unsigned long flags;
548 int ret;
550 spin_lock_irqsave(&state->port->lock, flags);
551 ret = uart_circ_chars_pending(&state->info->xmit);
552 spin_unlock_irqrestore(&state->port->lock, flags);
553 return ret;
556 static void uart_flush_buffer(struct tty_struct *tty)
558 struct uart_state *state = tty->driver_data;
559 struct uart_port *port;
560 unsigned long flags;
563 * This means you called this function _after_ the port was
564 * closed. No cookie for you.
566 if (!state || !state->info) {
567 WARN_ON(1);
568 return;
571 port = state->port;
572 pr_debug("uart_flush_buffer(%d) called\n", tty->index);
574 spin_lock_irqsave(&port->lock, flags);
575 uart_circ_clear(&state->info->xmit);
576 spin_unlock_irqrestore(&port->lock, flags);
577 tty_wakeup(tty);
581 * This function is used to send a high-priority XON/XOFF character to
582 * the device
584 static void uart_send_xchar(struct tty_struct *tty, char ch)
586 struct uart_state *state = tty->driver_data;
587 struct uart_port *port = state->port;
588 unsigned long flags;
590 if (port->ops->send_xchar)
591 port->ops->send_xchar(port, ch);
592 else {
593 port->x_char = ch;
594 if (ch) {
595 spin_lock_irqsave(&port->lock, flags);
596 port->ops->start_tx(port);
597 spin_unlock_irqrestore(&port->lock, flags);
602 static void uart_throttle(struct tty_struct *tty)
604 struct uart_state *state = tty->driver_data;
606 if (I_IXOFF(tty))
607 uart_send_xchar(tty, STOP_CHAR(tty));
609 if (tty->termios->c_cflag & CRTSCTS)
610 uart_clear_mctrl(state->port, TIOCM_RTS);
613 static void uart_unthrottle(struct tty_struct *tty)
615 struct uart_state *state = tty->driver_data;
616 struct uart_port *port = state->port;
618 if (I_IXOFF(tty)) {
619 if (port->x_char)
620 port->x_char = 0;
621 else
622 uart_send_xchar(tty, START_CHAR(tty));
625 if (tty->termios->c_cflag & CRTSCTS)
626 uart_set_mctrl(port, TIOCM_RTS);
629 static int uart_get_info(struct uart_state *state,
630 struct serial_struct __user *retinfo)
632 struct uart_port *port = state->port;
633 struct serial_struct tmp;
635 memset(&tmp, 0, sizeof(tmp));
637 /* Ensure the state we copy is consistent and no hardware changes
638 occur as we go */
639 mutex_lock(&state->mutex);
641 tmp.type = port->type;
642 tmp.line = port->line;
643 tmp.port = port->iobase;
644 if (HIGH_BITS_OFFSET)
645 tmp.port_high = (long) port->iobase >> HIGH_BITS_OFFSET;
646 tmp.irq = port->irq;
647 tmp.flags = port->flags;
648 tmp.xmit_fifo_size = port->fifosize;
649 tmp.baud_base = port->uartclk / 16;
650 tmp.close_delay = state->close_delay / 10;
651 tmp.closing_wait = state->closing_wait == USF_CLOSING_WAIT_NONE ?
652 ASYNC_CLOSING_WAIT_NONE :
653 state->closing_wait / 10;
654 tmp.custom_divisor = port->custom_divisor;
655 tmp.hub6 = port->hub6;
656 tmp.io_type = port->iotype;
657 tmp.iomem_reg_shift = port->regshift;
658 tmp.iomem_base = (void *)(unsigned long)port->mapbase;
660 mutex_unlock(&state->mutex);
662 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
663 return -EFAULT;
664 return 0;
667 static int uart_set_info(struct uart_state *state,
668 struct serial_struct __user *newinfo)
670 struct serial_struct new_serial;
671 struct uart_port *port = state->port;
672 unsigned long new_port;
673 unsigned int change_irq, change_port, closing_wait;
674 unsigned int old_custom_divisor, close_delay;
675 upf_t old_flags, new_flags;
676 int retval = 0;
678 if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
679 return -EFAULT;
681 new_port = new_serial.port;
682 if (HIGH_BITS_OFFSET)
683 new_port += (unsigned long) new_serial.port_high << HIGH_BITS_OFFSET;
685 new_serial.irq = irq_canonicalize(new_serial.irq);
686 close_delay = new_serial.close_delay * 10;
687 closing_wait = new_serial.closing_wait == ASYNC_CLOSING_WAIT_NONE ?
688 USF_CLOSING_WAIT_NONE : new_serial.closing_wait * 10;
691 * This semaphore protects state->count. It is also
692 * very useful to prevent opens. Also, take the
693 * port configuration semaphore to make sure that a
694 * module insertion/removal doesn't change anything
695 * under us.
697 mutex_lock(&state->mutex);
699 change_irq = !(port->flags & UPF_FIXED_PORT)
700 && new_serial.irq != port->irq;
703 * Since changing the 'type' of the port changes its resource
704 * allocations, we should treat type changes the same as
705 * IO port changes.
707 change_port = !(port->flags & UPF_FIXED_PORT)
708 && (new_port != port->iobase ||
709 (unsigned long)new_serial.iomem_base != port->mapbase ||
710 new_serial.hub6 != port->hub6 ||
711 new_serial.io_type != port->iotype ||
712 new_serial.iomem_reg_shift != port->regshift ||
713 new_serial.type != port->type);
715 old_flags = port->flags;
716 new_flags = new_serial.flags;
717 old_custom_divisor = port->custom_divisor;
719 if (!capable(CAP_SYS_ADMIN)) {
720 retval = -EPERM;
721 if (change_irq || change_port ||
722 (new_serial.baud_base != port->uartclk / 16) ||
723 (close_delay != state->close_delay) ||
724 (closing_wait != state->closing_wait) ||
725 (new_serial.xmit_fifo_size &&
726 new_serial.xmit_fifo_size != port->fifosize) ||
727 (((new_flags ^ old_flags) & ~UPF_USR_MASK) != 0))
728 goto exit;
729 port->flags = ((port->flags & ~UPF_USR_MASK) |
730 (new_flags & UPF_USR_MASK));
731 port->custom_divisor = new_serial.custom_divisor;
732 goto check_and_exit;
736 * Ask the low level driver to verify the settings.
738 if (port->ops->verify_port)
739 retval = port->ops->verify_port(port, &new_serial);
741 if ((new_serial.irq >= NR_IRQS) || (new_serial.irq < 0) ||
742 (new_serial.baud_base < 9600))
743 retval = -EINVAL;
745 if (retval)
746 goto exit;
748 if (change_port || change_irq) {
749 retval = -EBUSY;
752 * Make sure that we are the sole user of this port.
754 if (uart_users(state) > 1)
755 goto exit;
758 * We need to shutdown the serial port at the old
759 * port/type/irq combination.
761 uart_shutdown(state);
764 if (change_port) {
765 unsigned long old_iobase, old_mapbase;
766 unsigned int old_type, old_iotype, old_hub6, old_shift;
768 old_iobase = port->iobase;
769 old_mapbase = port->mapbase;
770 old_type = port->type;
771 old_hub6 = port->hub6;
772 old_iotype = port->iotype;
773 old_shift = port->regshift;
776 * Free and release old regions
778 if (old_type != PORT_UNKNOWN)
779 port->ops->release_port(port);
781 port->iobase = new_port;
782 port->type = new_serial.type;
783 port->hub6 = new_serial.hub6;
784 port->iotype = new_serial.io_type;
785 port->regshift = new_serial.iomem_reg_shift;
786 port->mapbase = (unsigned long)new_serial.iomem_base;
789 * Claim and map the new regions
791 if (port->type != PORT_UNKNOWN) {
792 retval = port->ops->request_port(port);
793 } else {
794 /* Always success - Jean II */
795 retval = 0;
799 * If we fail to request resources for the
800 * new port, try to restore the old settings.
802 if (retval && old_type != PORT_UNKNOWN) {
803 port->iobase = old_iobase;
804 port->type = old_type;
805 port->hub6 = old_hub6;
806 port->iotype = old_iotype;
807 port->regshift = old_shift;
808 port->mapbase = old_mapbase;
809 retval = port->ops->request_port(port);
811 * If we failed to restore the old settings,
812 * we fail like this.
814 if (retval)
815 port->type = PORT_UNKNOWN;
818 * We failed anyway.
820 retval = -EBUSY;
821 /* Added to return the correct error -Ram Gupta */
822 goto exit;
826 if (change_irq)
827 port->irq = new_serial.irq;
828 if (!(port->flags & UPF_FIXED_PORT))
829 port->uartclk = new_serial.baud_base * 16;
830 port->flags = (port->flags & ~UPF_CHANGE_MASK) |
831 (new_flags & UPF_CHANGE_MASK);
832 port->custom_divisor = new_serial.custom_divisor;
833 state->close_delay = close_delay;
834 state->closing_wait = closing_wait;
835 if (new_serial.xmit_fifo_size)
836 port->fifosize = new_serial.xmit_fifo_size;
837 if (state->info->tty)
838 state->info->tty->low_latency =
839 (port->flags & UPF_LOW_LATENCY) ? 1 : 0;
841 check_and_exit:
842 retval = 0;
843 if (port->type == PORT_UNKNOWN)
844 goto exit;
845 if (state->info->flags & UIF_INITIALIZED) {
846 if (((old_flags ^ port->flags) & UPF_SPD_MASK) ||
847 old_custom_divisor != port->custom_divisor) {
849 * If they're setting up a custom divisor or speed,
850 * instead of clearing it, then bitch about it. No
851 * need to rate-limit; it's CAP_SYS_ADMIN only.
853 if (port->flags & UPF_SPD_MASK) {
854 char buf[64];
855 printk(KERN_NOTICE
856 "%s sets custom speed on %s. This "
857 "is deprecated.\n", current->comm,
858 tty_name(state->info->tty, buf));
860 uart_change_speed(state, NULL);
862 } else
863 retval = uart_startup(state, 1);
864 exit:
865 mutex_unlock(&state->mutex);
866 return retval;
871 * uart_get_lsr_info - get line status register info.
872 * Note: uart_ioctl protects us against hangups.
874 static int uart_get_lsr_info(struct uart_state *state,
875 unsigned int __user *value)
877 struct uart_port *port = state->port;
878 unsigned int result;
880 result = port->ops->tx_empty(port);
883 * If we're about to load something into the transmit
884 * register, we'll pretend the transmitter isn't empty to
885 * avoid a race condition (depending on when the transmit
886 * interrupt happens).
888 if (port->x_char ||
889 ((uart_circ_chars_pending(&state->info->xmit) > 0) &&
890 !state->info->tty->stopped && !state->info->tty->hw_stopped))
891 result &= ~TIOCSER_TEMT;
893 return put_user(result, value);
896 static int uart_tiocmget(struct tty_struct *tty, struct file *file)
898 struct uart_state *state = tty->driver_data;
899 struct uart_port *port = state->port;
900 int result = -EIO;
902 mutex_lock(&state->mutex);
903 if ((!file || !tty_hung_up_p(file)) &&
904 !(tty->flags & (1 << TTY_IO_ERROR))) {
905 result = port->mctrl;
907 spin_lock_irq(&port->lock);
908 result |= port->ops->get_mctrl(port);
909 spin_unlock_irq(&port->lock);
911 mutex_unlock(&state->mutex);
913 return result;
916 static int
917 uart_tiocmset(struct tty_struct *tty, struct file *file,
918 unsigned int set, unsigned int clear)
920 struct uart_state *state = tty->driver_data;
921 struct uart_port *port = state->port;
922 int ret = -EIO;
924 mutex_lock(&state->mutex);
925 if ((!file || !tty_hung_up_p(file)) &&
926 !(tty->flags & (1 << TTY_IO_ERROR))) {
927 uart_update_mctrl(port, set, clear);
928 ret = 0;
930 mutex_unlock(&state->mutex);
931 return ret;
934 static void uart_break_ctl(struct tty_struct *tty, int break_state)
936 struct uart_state *state = tty->driver_data;
937 struct uart_port *port = state->port;
939 mutex_lock(&state->mutex);
941 if (port->type != PORT_UNKNOWN)
942 port->ops->break_ctl(port, break_state);
944 mutex_unlock(&state->mutex);
947 static int uart_do_autoconfig(struct uart_state *state)
949 struct uart_port *port = state->port;
950 int flags, ret;
952 if (!capable(CAP_SYS_ADMIN))
953 return -EPERM;
956 * Take the per-port semaphore. This prevents count from
957 * changing, and hence any extra opens of the port while
958 * we're auto-configuring.
960 if (mutex_lock_interruptible(&state->mutex))
961 return -ERESTARTSYS;
963 ret = -EBUSY;
964 if (uart_users(state) == 1) {
965 uart_shutdown(state);
968 * If we already have a port type configured,
969 * we must release its resources.
971 if (port->type != PORT_UNKNOWN)
972 port->ops->release_port(port);
974 flags = UART_CONFIG_TYPE;
975 if (port->flags & UPF_AUTO_IRQ)
976 flags |= UART_CONFIG_IRQ;
979 * This will claim the ports resources if
980 * a port is found.
982 port->ops->config_port(port, flags);
984 ret = uart_startup(state, 1);
986 mutex_unlock(&state->mutex);
987 return ret;
991 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
992 * - mask passed in arg for lines of interest
993 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
994 * Caller should use TIOCGICOUNT to see which one it was
996 static int
997 uart_wait_modem_status(struct uart_state *state, unsigned long arg)
999 struct uart_port *port = state->port;
1000 DECLARE_WAITQUEUE(wait, current);
1001 struct uart_icount cprev, cnow;
1002 int ret;
1005 * note the counters on entry
1007 spin_lock_irq(&port->lock);
1008 memcpy(&cprev, &port->icount, sizeof(struct uart_icount));
1011 * Force modem status interrupts on
1013 port->ops->enable_ms(port);
1014 spin_unlock_irq(&port->lock);
1016 add_wait_queue(&state->info->delta_msr_wait, &wait);
1017 for (;;) {
1018 spin_lock_irq(&port->lock);
1019 memcpy(&cnow, &port->icount, sizeof(struct uart_icount));
1020 spin_unlock_irq(&port->lock);
1022 set_current_state(TASK_INTERRUPTIBLE);
1024 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
1025 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
1026 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
1027 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
1028 ret = 0;
1029 break;
1032 schedule();
1034 /* see if a signal did it */
1035 if (signal_pending(current)) {
1036 ret = -ERESTARTSYS;
1037 break;
1040 cprev = cnow;
1043 current->state = TASK_RUNNING;
1044 remove_wait_queue(&state->info->delta_msr_wait, &wait);
1046 return ret;
1050 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1051 * Return: write counters to the user passed counter struct
1052 * NB: both 1->0 and 0->1 transitions are counted except for
1053 * RI where only 0->1 is counted.
1055 static int uart_get_count(struct uart_state *state,
1056 struct serial_icounter_struct __user *icnt)
1058 struct serial_icounter_struct icount;
1059 struct uart_icount cnow;
1060 struct uart_port *port = state->port;
1062 spin_lock_irq(&port->lock);
1063 memcpy(&cnow, &port->icount, sizeof(struct uart_icount));
1064 spin_unlock_irq(&port->lock);
1066 icount.cts = cnow.cts;
1067 icount.dsr = cnow.dsr;
1068 icount.rng = cnow.rng;
1069 icount.dcd = cnow.dcd;
1070 icount.rx = cnow.rx;
1071 icount.tx = cnow.tx;
1072 icount.frame = cnow.frame;
1073 icount.overrun = cnow.overrun;
1074 icount.parity = cnow.parity;
1075 icount.brk = cnow.brk;
1076 icount.buf_overrun = cnow.buf_overrun;
1078 return copy_to_user(icnt, &icount, sizeof(icount)) ? -EFAULT : 0;
1082 * Called via sys_ioctl. We can use spin_lock_irq() here.
1084 static int
1085 uart_ioctl(struct tty_struct *tty, struct file *filp, unsigned int cmd,
1086 unsigned long arg)
1088 struct uart_state *state = tty->driver_data;
1089 void __user *uarg = (void __user *)arg;
1090 int ret = -ENOIOCTLCMD;
1094 * These ioctls don't rely on the hardware to be present.
1096 switch (cmd) {
1097 case TIOCGSERIAL:
1098 ret = uart_get_info(state, uarg);
1099 break;
1101 case TIOCSSERIAL:
1102 ret = uart_set_info(state, uarg);
1103 break;
1105 case TIOCSERCONFIG:
1106 ret = uart_do_autoconfig(state);
1107 break;
1109 case TIOCSERGWILD: /* obsolete */
1110 case TIOCSERSWILD: /* obsolete */
1111 ret = 0;
1112 break;
1115 if (ret != -ENOIOCTLCMD)
1116 goto out;
1118 if (tty->flags & (1 << TTY_IO_ERROR)) {
1119 ret = -EIO;
1120 goto out;
1124 * The following should only be used when hardware is present.
1126 switch (cmd) {
1127 case TIOCMIWAIT:
1128 ret = uart_wait_modem_status(state, arg);
1129 break;
1131 case TIOCGICOUNT:
1132 ret = uart_get_count(state, uarg);
1133 break;
1136 if (ret != -ENOIOCTLCMD)
1137 goto out;
1139 mutex_lock(&state->mutex);
1141 if (tty_hung_up_p(filp)) {
1142 ret = -EIO;
1143 goto out_up;
1147 * All these rely on hardware being present and need to be
1148 * protected against the tty being hung up.
1150 switch (cmd) {
1151 case TIOCSERGETLSR: /* Get line status register */
1152 ret = uart_get_lsr_info(state, uarg);
1153 break;
1155 default: {
1156 struct uart_port *port = state->port;
1157 if (port->ops->ioctl)
1158 ret = port->ops->ioctl(port, cmd, arg);
1159 break;
1162 out_up:
1163 mutex_unlock(&state->mutex);
1164 out:
1165 return ret;
1168 static void uart_set_termios(struct tty_struct *tty,
1169 struct ktermios *old_termios)
1171 struct uart_state *state = tty->driver_data;
1172 unsigned long flags;
1173 unsigned int cflag = tty->termios->c_cflag;
1177 * These are the bits that are used to setup various
1178 * flags in the low level driver. We can ignore the Bfoo
1179 * bits in c_cflag; c_[io]speed will always be set
1180 * appropriately by set_termios() in tty_ioctl.c
1182 #define RELEVANT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
1183 if ((cflag ^ old_termios->c_cflag) == 0 &&
1184 tty->termios->c_ospeed == old_termios->c_ospeed &&
1185 tty->termios->c_ispeed == old_termios->c_ispeed &&
1186 RELEVANT_IFLAG(tty->termios->c_iflag ^ old_termios->c_iflag) == 0) {
1187 return;
1190 uart_change_speed(state, old_termios);
1192 /* Handle transition to B0 status */
1193 if ((old_termios->c_cflag & CBAUD) && !(cflag & CBAUD))
1194 uart_clear_mctrl(state->port, TIOCM_RTS | TIOCM_DTR);
1196 /* Handle transition away from B0 status */
1197 if (!(old_termios->c_cflag & CBAUD) && (cflag & CBAUD)) {
1198 unsigned int mask = TIOCM_DTR;
1199 if (!(cflag & CRTSCTS) ||
1200 !test_bit(TTY_THROTTLED, &tty->flags))
1201 mask |= TIOCM_RTS;
1202 uart_set_mctrl(state->port, mask);
1205 /* Handle turning off CRTSCTS */
1206 if ((old_termios->c_cflag & CRTSCTS) && !(cflag & CRTSCTS)) {
1207 spin_lock_irqsave(&state->port->lock, flags);
1208 tty->hw_stopped = 0;
1209 __uart_start(tty);
1210 spin_unlock_irqrestore(&state->port->lock, flags);
1213 /* Handle turning on CRTSCTS */
1214 if (!(old_termios->c_cflag & CRTSCTS) && (cflag & CRTSCTS)) {
1215 spin_lock_irqsave(&state->port->lock, flags);
1216 if (!(state->port->ops->get_mctrl(state->port) & TIOCM_CTS)) {
1217 tty->hw_stopped = 1;
1218 state->port->ops->stop_tx(state->port);
1220 spin_unlock_irqrestore(&state->port->lock, flags);
1222 #if 0
1224 * No need to wake up processes in open wait, since they
1225 * sample the CLOCAL flag once, and don't recheck it.
1226 * XXX It's not clear whether the current behavior is correct
1227 * or not. Hence, this may change.....
1229 if (!(old_termios->c_cflag & CLOCAL) &&
1230 (tty->termios->c_cflag & CLOCAL))
1231 wake_up_interruptible(&state->info->open_wait);
1232 #endif
1236 * In 2.4.5, calls to this will be serialized via the BKL in
1237 * linux/drivers/char/tty_io.c:tty_release()
1238 * linux/drivers/char/tty_io.c:do_tty_handup()
1240 static void uart_close(struct tty_struct *tty, struct file *filp)
1242 struct uart_state *state = tty->driver_data;
1243 struct uart_port *port;
1245 BUG_ON(!kernel_locked());
1247 if (!state || !state->port)
1248 return;
1250 port = state->port;
1252 pr_debug("uart_close(%d) called\n", port->line);
1254 mutex_lock(&state->mutex);
1256 if (tty_hung_up_p(filp))
1257 goto done;
1259 if ((tty->count == 1) && (state->count != 1)) {
1261 * Uh, oh. tty->count is 1, which means that the tty
1262 * structure will be freed. state->count should always
1263 * be one in these conditions. If it's greater than
1264 * one, we've got real problems, since it means the
1265 * serial port won't be shutdown.
1267 printk(KERN_ERR "uart_close: bad serial port count; tty->count is 1, "
1268 "state->count is %d\n", state->count);
1269 state->count = 1;
1271 if (--state->count < 0) {
1272 printk(KERN_ERR "uart_close: bad serial port count for %s: %d\n",
1273 tty->name, state->count);
1274 state->count = 0;
1276 if (state->count)
1277 goto done;
1280 * Now we wait for the transmit buffer to clear; and we notify
1281 * the line discipline to only process XON/XOFF characters by
1282 * setting tty->closing.
1284 tty->closing = 1;
1286 if (state->closing_wait != USF_CLOSING_WAIT_NONE)
1287 tty_wait_until_sent(tty, msecs_to_jiffies(state->closing_wait));
1290 * At this point, we stop accepting input. To do this, we
1291 * disable the receive line status interrupts.
1293 if (state->info->flags & UIF_INITIALIZED) {
1294 unsigned long flags;
1295 spin_lock_irqsave(&port->lock, flags);
1296 port->ops->stop_rx(port);
1297 spin_unlock_irqrestore(&port->lock, flags);
1299 * Before we drop DTR, make sure the UART transmitter
1300 * has completely drained; this is especially
1301 * important if there is a transmit FIFO!
1303 uart_wait_until_sent(tty, port->timeout);
1306 uart_shutdown(state);
1307 uart_flush_buffer(tty);
1309 tty_ldisc_flush(tty);
1311 tty->closing = 0;
1312 state->info->tty = NULL;
1314 if (state->info->blocked_open) {
1315 if (state->close_delay)
1316 msleep_interruptible(state->close_delay);
1317 } else if (!uart_console(port)) {
1318 uart_change_pm(state, 3);
1322 * Wake up anyone trying to open this port.
1324 state->info->flags &= ~UIF_NORMAL_ACTIVE;
1325 wake_up_interruptible(&state->info->open_wait);
1327 done:
1328 mutex_unlock(&state->mutex);
1331 static void uart_wait_until_sent(struct tty_struct *tty, int timeout)
1333 struct uart_state *state = tty->driver_data;
1334 struct uart_port *port = state->port;
1335 unsigned long char_time, expire;
1337 if (port->type == PORT_UNKNOWN || port->fifosize == 0)
1338 return;
1340 lock_kernel();
1343 * Set the check interval to be 1/5 of the estimated time to
1344 * send a single character, and make it at least 1. The check
1345 * interval should also be less than the timeout.
1347 * Note: we have to use pretty tight timings here to satisfy
1348 * the NIST-PCTS.
1350 char_time = (port->timeout - HZ/50) / port->fifosize;
1351 char_time = char_time / 5;
1352 if (char_time == 0)
1353 char_time = 1;
1354 if (timeout && timeout < char_time)
1355 char_time = timeout;
1358 * If the transmitter hasn't cleared in twice the approximate
1359 * amount of time to send the entire FIFO, it probably won't
1360 * ever clear. This assumes the UART isn't doing flow
1361 * control, which is currently the case. Hence, if it ever
1362 * takes longer than port->timeout, this is probably due to a
1363 * UART bug of some kind. So, we clamp the timeout parameter at
1364 * 2*port->timeout.
1366 if (timeout == 0 || timeout > 2 * port->timeout)
1367 timeout = 2 * port->timeout;
1369 expire = jiffies + timeout;
1371 pr_debug("uart_wait_until_sent(%d), jiffies=%lu, expire=%lu...\n",
1372 port->line, jiffies, expire);
1375 * Check whether the transmitter is empty every 'char_time'.
1376 * 'timeout' / 'expire' give us the maximum amount of time
1377 * we wait.
1379 while (!port->ops->tx_empty(port)) {
1380 msleep_interruptible(jiffies_to_msecs(char_time));
1381 if (signal_pending(current))
1382 break;
1383 if (time_after(jiffies, expire))
1384 break;
1386 set_current_state(TASK_RUNNING); /* might not be needed */
1387 unlock_kernel();
1391 * This is called with the BKL held in
1392 * linux/drivers/char/tty_io.c:do_tty_hangup()
1393 * We're called from the eventd thread, so we can sleep for
1394 * a _short_ time only.
1396 static void uart_hangup(struct tty_struct *tty)
1398 struct uart_state *state = tty->driver_data;
1400 BUG_ON(!kernel_locked());
1401 pr_debug("uart_hangup(%d)\n", state->port->line);
1403 mutex_lock(&state->mutex);
1404 if (state->info && state->info->flags & UIF_NORMAL_ACTIVE) {
1405 uart_flush_buffer(tty);
1406 uart_shutdown(state);
1407 state->count = 0;
1408 state->info->flags &= ~UIF_NORMAL_ACTIVE;
1409 state->info->tty = NULL;
1410 wake_up_interruptible(&state->info->open_wait);
1411 wake_up_interruptible(&state->info->delta_msr_wait);
1413 mutex_unlock(&state->mutex);
1417 * Copy across the serial console cflag setting into the termios settings
1418 * for the initial open of the port. This allows continuity between the
1419 * kernel settings, and the settings init adopts when it opens the port
1420 * for the first time.
1422 static void uart_update_termios(struct uart_state *state)
1424 struct tty_struct *tty = state->info->tty;
1425 struct uart_port *port = state->port;
1427 if (uart_console(port) && port->cons->cflag) {
1428 tty->termios->c_cflag = port->cons->cflag;
1429 port->cons->cflag = 0;
1433 * If the device failed to grab its irq resources,
1434 * or some other error occurred, don't try to talk
1435 * to the port hardware.
1437 if (!(tty->flags & (1 << TTY_IO_ERROR))) {
1439 * Make termios settings take effect.
1441 uart_change_speed(state, NULL);
1444 * And finally enable the RTS and DTR signals.
1446 if (tty->termios->c_cflag & CBAUD)
1447 uart_set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
1452 * Block the open until the port is ready. We must be called with
1453 * the per-port semaphore held.
1455 static int
1456 uart_block_til_ready(struct file *filp, struct uart_state *state)
1458 DECLARE_WAITQUEUE(wait, current);
1459 struct uart_info *info = state->info;
1460 struct uart_port *port = state->port;
1461 unsigned int mctrl;
1463 info->blocked_open++;
1464 state->count--;
1466 add_wait_queue(&info->open_wait, &wait);
1467 while (1) {
1468 set_current_state(TASK_INTERRUPTIBLE);
1471 * If we have been hung up, tell userspace/restart open.
1473 if (tty_hung_up_p(filp) || info->tty == NULL)
1474 break;
1477 * If the port has been closed, tell userspace/restart open.
1479 if (!(info->flags & UIF_INITIALIZED))
1480 break;
1483 * If non-blocking mode is set, or CLOCAL mode is set,
1484 * we don't want to wait for the modem status lines to
1485 * indicate that the port is ready.
1487 * Also, if the port is not enabled/configured, we want
1488 * to allow the open to succeed here. Note that we will
1489 * have set TTY_IO_ERROR for a non-existant port.
1491 if ((filp->f_flags & O_NONBLOCK) ||
1492 (info->tty->termios->c_cflag & CLOCAL) ||
1493 (info->tty->flags & (1 << TTY_IO_ERROR)))
1494 break;
1497 * Set DTR to allow modem to know we're waiting. Do
1498 * not set RTS here - we want to make sure we catch
1499 * the data from the modem.
1501 if (info->tty->termios->c_cflag & CBAUD)
1502 uart_set_mctrl(port, TIOCM_DTR);
1505 * and wait for the carrier to indicate that the
1506 * modem is ready for us.
1508 spin_lock_irq(&port->lock);
1509 port->ops->enable_ms(port);
1510 mctrl = port->ops->get_mctrl(port);
1511 spin_unlock_irq(&port->lock);
1512 if (mctrl & TIOCM_CAR)
1513 break;
1515 mutex_unlock(&state->mutex);
1516 schedule();
1517 mutex_lock(&state->mutex);
1519 if (signal_pending(current))
1520 break;
1522 set_current_state(TASK_RUNNING);
1523 remove_wait_queue(&info->open_wait, &wait);
1525 state->count++;
1526 info->blocked_open--;
1528 if (signal_pending(current))
1529 return -ERESTARTSYS;
1531 if (!info->tty || tty_hung_up_p(filp))
1532 return -EAGAIN;
1534 return 0;
1537 static struct uart_state *uart_get(struct uart_driver *drv, int line)
1539 struct uart_state *state;
1540 int ret = 0;
1542 state = drv->state + line;
1543 if (mutex_lock_interruptible(&state->mutex)) {
1544 ret = -ERESTARTSYS;
1545 goto err;
1548 state->count++;
1549 if (!state->port || state->port->flags & UPF_DEAD) {
1550 ret = -ENXIO;
1551 goto err_unlock;
1554 if (!state->info) {
1555 state->info = kzalloc(sizeof(struct uart_info), GFP_KERNEL);
1556 if (state->info) {
1557 init_waitqueue_head(&state->info->open_wait);
1558 init_waitqueue_head(&state->info->delta_msr_wait);
1561 * Link the info into the other structures.
1563 state->port->info = state->info;
1565 tasklet_init(&state->info->tlet, uart_tasklet_action,
1566 (unsigned long)state);
1567 } else {
1568 ret = -ENOMEM;
1569 goto err_unlock;
1572 return state;
1574 err_unlock:
1575 state->count--;
1576 mutex_unlock(&state->mutex);
1577 err:
1578 return ERR_PTR(ret);
1582 * calls to uart_open are serialised by the BKL in
1583 * fs/char_dev.c:chrdev_open()
1584 * Note that if this fails, then uart_close() _will_ be called.
1586 * In time, we want to scrap the "opening nonpresent ports"
1587 * behaviour and implement an alternative way for setserial
1588 * to set base addresses/ports/types. This will allow us to
1589 * get rid of a certain amount of extra tests.
1591 static int uart_open(struct tty_struct *tty, struct file *filp)
1593 struct uart_driver *drv = (struct uart_driver *)tty->driver->driver_state;
1594 struct uart_state *state;
1595 int retval, line = tty->index;
1597 BUG_ON(!kernel_locked());
1598 pr_debug("uart_open(%d) called\n", line);
1601 * tty->driver->num won't change, so we won't fail here with
1602 * tty->driver_data set to something non-NULL (and therefore
1603 * we won't get caught by uart_close()).
1605 retval = -ENODEV;
1606 if (line >= tty->driver->num)
1607 goto fail;
1610 * We take the semaphore inside uart_get to guarantee that we won't
1611 * be re-entered while allocating the info structure, or while we
1612 * request any IRQs that the driver may need. This also has the nice
1613 * side-effect that it delays the action of uart_hangup, so we can
1614 * guarantee that info->tty will always contain something reasonable.
1616 state = uart_get(drv, line);
1617 if (IS_ERR(state)) {
1618 retval = PTR_ERR(state);
1619 goto fail;
1623 * Once we set tty->driver_data here, we are guaranteed that
1624 * uart_close() will decrement the driver module use count.
1625 * Any failures from here onwards should not touch the count.
1627 tty->driver_data = state;
1628 tty->low_latency = (state->port->flags & UPF_LOW_LATENCY) ? 1 : 0;
1629 tty->alt_speed = 0;
1630 state->info->tty = tty;
1633 * If the port is in the middle of closing, bail out now.
1635 if (tty_hung_up_p(filp)) {
1636 retval = -EAGAIN;
1637 state->count--;
1638 mutex_unlock(&state->mutex);
1639 goto fail;
1643 * Make sure the device is in D0 state.
1645 if (state->count == 1)
1646 uart_change_pm(state, 0);
1649 * Start up the serial port.
1651 retval = uart_startup(state, 0);
1654 * If we succeeded, wait until the port is ready.
1656 if (retval == 0)
1657 retval = uart_block_til_ready(filp, state);
1658 mutex_unlock(&state->mutex);
1661 * If this is the first open to succeed, adjust things to suit.
1663 if (retval == 0 && !(state->info->flags & UIF_NORMAL_ACTIVE)) {
1664 state->info->flags |= UIF_NORMAL_ACTIVE;
1666 uart_update_termios(state);
1669 fail:
1670 return retval;
1673 static const char *uart_type(struct uart_port *port)
1675 const char *str = NULL;
1677 if (port->ops->type)
1678 str = port->ops->type(port);
1680 if (!str)
1681 str = "unknown";
1683 return str;
1686 #ifdef CONFIG_PROC_FS
1688 static int uart_line_info(char *buf, struct uart_driver *drv, int i)
1690 struct uart_state *state = drv->state + i;
1691 int pm_state;
1692 struct uart_port *port = state->port;
1693 char stat_buf[32];
1694 unsigned int status;
1695 int mmio, ret;
1697 if (!port)
1698 return 0;
1700 mmio = port->iotype >= UPIO_MEM;
1701 ret = sprintf(buf, "%d: uart:%s %s%08llX irq:%d",
1702 port->line, uart_type(port),
1703 mmio ? "mmio:0x" : "port:",
1704 mmio ? (unsigned long long)port->mapbase
1705 : (unsigned long long) port->iobase,
1706 port->irq);
1708 if (port->type == PORT_UNKNOWN) {
1709 strcat(buf, "\n");
1710 return ret + 1;
1713 if (capable(CAP_SYS_ADMIN)) {
1714 mutex_lock(&state->mutex);
1715 pm_state = state->pm_state;
1716 if (pm_state)
1717 uart_change_pm(state, 0);
1718 spin_lock_irq(&port->lock);
1719 status = port->ops->get_mctrl(port);
1720 spin_unlock_irq(&port->lock);
1721 if (pm_state)
1722 uart_change_pm(state, pm_state);
1723 mutex_unlock(&state->mutex);
1725 ret += sprintf(buf + ret, " tx:%d rx:%d",
1726 port->icount.tx, port->icount.rx);
1727 if (port->icount.frame)
1728 ret += sprintf(buf + ret, " fe:%d",
1729 port->icount.frame);
1730 if (port->icount.parity)
1731 ret += sprintf(buf + ret, " pe:%d",
1732 port->icount.parity);
1733 if (port->icount.brk)
1734 ret += sprintf(buf + ret, " brk:%d",
1735 port->icount.brk);
1736 if (port->icount.overrun)
1737 ret += sprintf(buf + ret, " oe:%d",
1738 port->icount.overrun);
1740 #define INFOBIT(bit, str) \
1741 if (port->mctrl & (bit)) \
1742 strncat(stat_buf, (str), sizeof(stat_buf) - \
1743 strlen(stat_buf) - 2)
1744 #define STATBIT(bit, str) \
1745 if (status & (bit)) \
1746 strncat(stat_buf, (str), sizeof(stat_buf) - \
1747 strlen(stat_buf) - 2)
1749 stat_buf[0] = '\0';
1750 stat_buf[1] = '\0';
1751 INFOBIT(TIOCM_RTS, "|RTS");
1752 STATBIT(TIOCM_CTS, "|CTS");
1753 INFOBIT(TIOCM_DTR, "|DTR");
1754 STATBIT(TIOCM_DSR, "|DSR");
1755 STATBIT(TIOCM_CAR, "|CD");
1756 STATBIT(TIOCM_RNG, "|RI");
1757 if (stat_buf[0])
1758 stat_buf[0] = ' ';
1759 strcat(stat_buf, "\n");
1761 ret += sprintf(buf + ret, stat_buf);
1762 } else {
1763 strcat(buf, "\n");
1764 ret++;
1766 #undef STATBIT
1767 #undef INFOBIT
1768 return ret;
1771 static int uart_read_proc(char *page, char **start, off_t off,
1772 int count, int *eof, void *data)
1774 struct tty_driver *ttydrv = data;
1775 struct uart_driver *drv = ttydrv->driver_state;
1776 int i, len = 0, l;
1777 off_t begin = 0;
1779 len += sprintf(page, "serinfo:1.0 driver%s%s revision:%s\n",
1780 "", "", "");
1781 for (i = 0; i < drv->nr && len < PAGE_SIZE - 96; i++) {
1782 l = uart_line_info(page + len, drv, i);
1783 len += l;
1784 if (len + begin > off + count)
1785 goto done;
1786 if (len + begin < off) {
1787 begin += len;
1788 len = 0;
1791 *eof = 1;
1792 done:
1793 if (off >= len + begin)
1794 return 0;
1795 *start = page + (off - begin);
1796 return (count < begin + len - off) ? count : (begin + len - off);
1798 #endif
1800 #if defined(CONFIG_SERIAL_CORE_CONSOLE) || defined(CONFIG_CONSOLE_POLL)
1802 * uart_console_write - write a console message to a serial port
1803 * @port: the port to write the message
1804 * @s: array of characters
1805 * @count: number of characters in string to write
1806 * @write: function to write character to port
1808 void uart_console_write(struct uart_port *port, const char *s,
1809 unsigned int count,
1810 void (*putchar)(struct uart_port *, int))
1812 unsigned int i;
1814 for (i = 0; i < count; i++, s++) {
1815 if (*s == '\n')
1816 putchar(port, '\r');
1817 putchar(port, *s);
1820 EXPORT_SYMBOL_GPL(uart_console_write);
1823 * Check whether an invalid uart number has been specified, and
1824 * if so, search for the first available port that does have
1825 * console support.
1827 struct uart_port * __init
1828 uart_get_console(struct uart_port *ports, int nr, struct console *co)
1830 int idx = co->index;
1832 if (idx < 0 || idx >= nr || (ports[idx].iobase == 0 &&
1833 ports[idx].membase == NULL))
1834 for (idx = 0; idx < nr; idx++)
1835 if (ports[idx].iobase != 0 ||
1836 ports[idx].membase != NULL)
1837 break;
1839 co->index = idx;
1841 return ports + idx;
1845 * uart_parse_options - Parse serial port baud/parity/bits/flow contro.
1846 * @options: pointer to option string
1847 * @baud: pointer to an 'int' variable for the baud rate.
1848 * @parity: pointer to an 'int' variable for the parity.
1849 * @bits: pointer to an 'int' variable for the number of data bits.
1850 * @flow: pointer to an 'int' variable for the flow control character.
1852 * uart_parse_options decodes a string containing the serial console
1853 * options. The format of the string is <baud><parity><bits><flow>,
1854 * eg: 115200n8r
1856 void
1857 uart_parse_options(char *options, int *baud, int *parity, int *bits, int *flow)
1859 char *s = options;
1861 *baud = simple_strtoul(s, NULL, 10);
1862 while (*s >= '0' && *s <= '9')
1863 s++;
1864 if (*s)
1865 *parity = *s++;
1866 if (*s)
1867 *bits = *s++ - '0';
1868 if (*s)
1869 *flow = *s;
1871 EXPORT_SYMBOL_GPL(uart_parse_options);
1873 struct baud_rates {
1874 unsigned int rate;
1875 unsigned int cflag;
1878 static const struct baud_rates baud_rates[] = {
1879 { 921600, B921600 },
1880 { 460800, B460800 },
1881 { 230400, B230400 },
1882 { 115200, B115200 },
1883 { 57600, B57600 },
1884 { 38400, B38400 },
1885 { 19200, B19200 },
1886 { 9600, B9600 },
1887 { 4800, B4800 },
1888 { 2400, B2400 },
1889 { 1200, B1200 },
1890 { 0, B38400 }
1894 * uart_set_options - setup the serial console parameters
1895 * @port: pointer to the serial ports uart_port structure
1896 * @co: console pointer
1897 * @baud: baud rate
1898 * @parity: parity character - 'n' (none), 'o' (odd), 'e' (even)
1899 * @bits: number of data bits
1900 * @flow: flow control character - 'r' (rts)
1903 uart_set_options(struct uart_port *port, struct console *co,
1904 int baud, int parity, int bits, int flow)
1906 struct ktermios termios;
1907 static struct ktermios dummy;
1908 int i;
1911 * Ensure that the serial console lock is initialised
1912 * early.
1914 spin_lock_init(&port->lock);
1915 lockdep_set_class(&port->lock, &port_lock_key);
1917 memset(&termios, 0, sizeof(struct ktermios));
1919 termios.c_cflag = CREAD | HUPCL | CLOCAL;
1922 * Construct a cflag setting.
1924 for (i = 0; baud_rates[i].rate; i++)
1925 if (baud_rates[i].rate <= baud)
1926 break;
1928 termios.c_cflag |= baud_rates[i].cflag;
1930 if (bits == 7)
1931 termios.c_cflag |= CS7;
1932 else
1933 termios.c_cflag |= CS8;
1935 switch (parity) {
1936 case 'o': case 'O':
1937 termios.c_cflag |= PARODD;
1938 /*fall through*/
1939 case 'e': case 'E':
1940 termios.c_cflag |= PARENB;
1941 break;
1944 if (flow == 'r')
1945 termios.c_cflag |= CRTSCTS;
1948 * some uarts on other side don't support no flow control.
1949 * So we set * DTR in host uart to make them happy
1951 port->mctrl |= TIOCM_DTR;
1953 port->ops->set_termios(port, &termios, &dummy);
1955 * Allow the setting of the UART parameters with a NULL console
1956 * too:
1958 if (co)
1959 co->cflag = termios.c_cflag;
1961 return 0;
1963 EXPORT_SYMBOL_GPL(uart_set_options);
1964 #endif /* CONFIG_SERIAL_CORE_CONSOLE */
1966 static void uart_change_pm(struct uart_state *state, int pm_state)
1968 struct uart_port *port = state->port;
1970 if (state->pm_state != pm_state) {
1971 if (port->ops->pm)
1972 port->ops->pm(port, pm_state, state->pm_state);
1973 state->pm_state = pm_state;
1977 struct uart_match {
1978 struct uart_port *port;
1979 struct uart_driver *driver;
1982 static int serial_match_port(struct device *dev, void *data)
1984 struct uart_match *match = data;
1985 dev_t devt = MKDEV(match->driver->major, match->driver->minor) + match->port->line;
1987 return dev->devt == devt; /* Actually, only one tty per port */
1990 int uart_suspend_port(struct uart_driver *drv, struct uart_port *port)
1992 struct uart_state *state = drv->state + port->line;
1993 struct device *tty_dev;
1994 struct uart_match match = {port, drv};
1996 mutex_lock(&state->mutex);
1998 if (!console_suspend_enabled && uart_console(port)) {
1999 /* we're going to avoid suspending serial console */
2000 mutex_unlock(&state->mutex);
2001 return 0;
2004 tty_dev = device_find_child(port->dev, &match, serial_match_port);
2005 if (device_may_wakeup(tty_dev)) {
2006 enable_irq_wake(port->irq);
2007 put_device(tty_dev);
2008 mutex_unlock(&state->mutex);
2009 return 0;
2011 port->suspended = 1;
2013 if (state->info && state->info->flags & UIF_INITIALIZED) {
2014 const struct uart_ops *ops = port->ops;
2015 int tries;
2017 state->info->flags = (state->info->flags & ~UIF_INITIALIZED)
2018 | UIF_SUSPENDED;
2020 spin_lock_irq(&port->lock);
2021 ops->stop_tx(port);
2022 ops->set_mctrl(port, 0);
2023 ops->stop_rx(port);
2024 spin_unlock_irq(&port->lock);
2027 * Wait for the transmitter to empty.
2029 for (tries = 3; !ops->tx_empty(port) && tries; tries--)
2030 msleep(10);
2031 if (!tries)
2032 printk(KERN_ERR "%s%s%s%d: Unable to drain "
2033 "transmitter\n",
2034 port->dev ? port->dev->bus_id : "",
2035 port->dev ? ": " : "",
2036 drv->dev_name, port->line);
2038 ops->shutdown(port);
2042 * Disable the console device before suspending.
2044 if (uart_console(port))
2045 console_stop(port->cons);
2047 uart_change_pm(state, 3);
2049 mutex_unlock(&state->mutex);
2051 return 0;
2054 int uart_resume_port(struct uart_driver *drv, struct uart_port *port)
2056 struct uart_state *state = drv->state + port->line;
2057 struct device *tty_dev;
2058 struct uart_match match = {port, drv};
2060 mutex_lock(&state->mutex);
2062 if (!console_suspend_enabled && uart_console(port)) {
2063 /* no need to resume serial console, it wasn't suspended */
2064 mutex_unlock(&state->mutex);
2065 return 0;
2068 tty_dev = device_find_child(port->dev, &match, serial_match_port);
2069 if (!port->suspended && device_may_wakeup(tty_dev)) {
2070 disable_irq_wake(port->irq);
2071 mutex_unlock(&state->mutex);
2072 return 0;
2074 port->suspended = 0;
2077 * Re-enable the console device after suspending.
2079 if (uart_console(port)) {
2080 struct ktermios termios;
2083 * First try to use the console cflag setting.
2085 memset(&termios, 0, sizeof(struct ktermios));
2086 termios.c_cflag = port->cons->cflag;
2089 * If that's unset, use the tty termios setting.
2091 if (state->info && state->info->tty && termios.c_cflag == 0)
2092 termios = *state->info->tty->termios;
2094 uart_change_pm(state, 0);
2095 port->ops->set_termios(port, &termios, NULL);
2096 console_start(port->cons);
2099 if (state->info && state->info->flags & UIF_SUSPENDED) {
2100 const struct uart_ops *ops = port->ops;
2101 int ret;
2103 uart_change_pm(state, 0);
2104 spin_lock_irq(&port->lock);
2105 ops->set_mctrl(port, 0);
2106 spin_unlock_irq(&port->lock);
2107 ret = ops->startup(port);
2108 if (ret == 0) {
2109 uart_change_speed(state, NULL);
2110 spin_lock_irq(&port->lock);
2111 ops->set_mctrl(port, port->mctrl);
2112 ops->start_tx(port);
2113 spin_unlock_irq(&port->lock);
2114 state->info->flags |= UIF_INITIALIZED;
2115 } else {
2117 * Failed to resume - maybe hardware went away?
2118 * Clear the "initialized" flag so we won't try
2119 * to call the low level drivers shutdown method.
2121 uart_shutdown(state);
2124 state->info->flags &= ~UIF_SUSPENDED;
2127 mutex_unlock(&state->mutex);
2129 return 0;
2132 static inline void
2133 uart_report_port(struct uart_driver *drv, struct uart_port *port)
2135 char address[64];
2137 switch (port->iotype) {
2138 case UPIO_PORT:
2139 snprintf(address, sizeof(address),
2140 "I/O 0x%x", port->iobase);
2141 break;
2142 case UPIO_HUB6:
2143 snprintf(address, sizeof(address),
2144 "I/O 0x%x offset 0x%x", port->iobase, port->hub6);
2145 break;
2146 case UPIO_MEM:
2147 case UPIO_MEM32:
2148 case UPIO_AU:
2149 case UPIO_TSI:
2150 case UPIO_DWAPB:
2151 snprintf(address, sizeof(address),
2152 "MMIO 0x%llx", (unsigned long long)port->mapbase);
2153 break;
2154 default:
2155 strlcpy(address, "*unknown*", sizeof(address));
2156 break;
2159 printk(KERN_INFO "%s%s%s%d at %s (irq = %d) is a %s\n",
2160 port->dev ? port->dev->bus_id : "",
2161 port->dev ? ": " : "",
2162 drv->dev_name, port->line, address, port->irq, uart_type(port));
2165 static void
2166 uart_configure_port(struct uart_driver *drv, struct uart_state *state,
2167 struct uart_port *port)
2169 unsigned int flags;
2172 * If there isn't a port here, don't do anything further.
2174 if (!port->iobase && !port->mapbase && !port->membase)
2175 return;
2178 * Now do the auto configuration stuff. Note that config_port
2179 * is expected to claim the resources and map the port for us.
2181 flags = UART_CONFIG_TYPE;
2182 if (port->flags & UPF_AUTO_IRQ)
2183 flags |= UART_CONFIG_IRQ;
2184 if (port->flags & UPF_BOOT_AUTOCONF) {
2185 port->type = PORT_UNKNOWN;
2186 port->ops->config_port(port, flags);
2189 if (port->type != PORT_UNKNOWN) {
2190 unsigned long flags;
2192 uart_report_port(drv, port);
2194 /* Power up port for set_mctrl() */
2195 uart_change_pm(state, 0);
2198 * Ensure that the modem control lines are de-activated.
2199 * keep the DTR setting that is set in uart_set_options()
2200 * We probably don't need a spinlock around this, but
2202 spin_lock_irqsave(&port->lock, flags);
2203 port->ops->set_mctrl(port, port->mctrl & TIOCM_DTR);
2204 spin_unlock_irqrestore(&port->lock, flags);
2207 * If this driver supports console, and it hasn't been
2208 * successfully registered yet, try to re-register it.
2209 * It may be that the port was not available.
2211 if (port->cons && !(port->cons->flags & CON_ENABLED))
2212 register_console(port->cons);
2215 * Power down all ports by default, except the
2216 * console if we have one.
2218 if (!uart_console(port))
2219 uart_change_pm(state, 3);
2223 #ifdef CONFIG_CONSOLE_POLL
2225 static int uart_poll_init(struct tty_driver *driver, int line, char *options)
2227 struct uart_driver *drv = driver->driver_state;
2228 struct uart_state *state = drv->state + line;
2229 struct uart_port *port;
2230 int baud = 9600;
2231 int bits = 8;
2232 int parity = 'n';
2233 int flow = 'n';
2235 if (!state || !state->port)
2236 return -1;
2238 port = state->port;
2239 if (!(port->ops->poll_get_char && port->ops->poll_put_char))
2240 return -1;
2242 if (options) {
2243 uart_parse_options(options, &baud, &parity, &bits, &flow);
2244 return uart_set_options(port, NULL, baud, parity, bits, flow);
2247 return 0;
2250 static int uart_poll_get_char(struct tty_driver *driver, int line)
2252 struct uart_driver *drv = driver->driver_state;
2253 struct uart_state *state = drv->state + line;
2254 struct uart_port *port;
2256 if (!state || !state->port)
2257 return -1;
2259 port = state->port;
2260 return port->ops->poll_get_char(port);
2263 static void uart_poll_put_char(struct tty_driver *driver, int line, char ch)
2265 struct uart_driver *drv = driver->driver_state;
2266 struct uart_state *state = drv->state + line;
2267 struct uart_port *port;
2269 if (!state || !state->port)
2270 return;
2272 port = state->port;
2273 port->ops->poll_put_char(port, ch);
2275 #endif
2277 static const struct tty_operations uart_ops = {
2278 .open = uart_open,
2279 .close = uart_close,
2280 .write = uart_write,
2281 .put_char = uart_put_char,
2282 .flush_chars = uart_flush_chars,
2283 .write_room = uart_write_room,
2284 .chars_in_buffer= uart_chars_in_buffer,
2285 .flush_buffer = uart_flush_buffer,
2286 .ioctl = uart_ioctl,
2287 .throttle = uart_throttle,
2288 .unthrottle = uart_unthrottle,
2289 .send_xchar = uart_send_xchar,
2290 .set_termios = uart_set_termios,
2291 .stop = uart_stop,
2292 .start = uart_start,
2293 .hangup = uart_hangup,
2294 .break_ctl = uart_break_ctl,
2295 .wait_until_sent= uart_wait_until_sent,
2296 #ifdef CONFIG_PROC_FS
2297 .read_proc = uart_read_proc,
2298 #endif
2299 .tiocmget = uart_tiocmget,
2300 .tiocmset = uart_tiocmset,
2301 #ifdef CONFIG_CONSOLE_POLL
2302 .poll_init = uart_poll_init,
2303 .poll_get_char = uart_poll_get_char,
2304 .poll_put_char = uart_poll_put_char,
2305 #endif
2309 * uart_register_driver - register a driver with the uart core layer
2310 * @drv: low level driver structure
2312 * Register a uart driver with the core driver. We in turn register
2313 * with the tty layer, and initialise the core driver per-port state.
2315 * We have a proc file in /proc/tty/driver which is named after the
2316 * normal driver.
2318 * drv->port should be NULL, and the per-port structures should be
2319 * registered using uart_add_one_port after this call has succeeded.
2321 int uart_register_driver(struct uart_driver *drv)
2323 struct tty_driver *normal = NULL;
2324 int i, retval;
2326 BUG_ON(drv->state);
2329 * Maybe we should be using a slab cache for this, especially if
2330 * we have a large number of ports to handle.
2332 drv->state = kzalloc(sizeof(struct uart_state) * drv->nr, GFP_KERNEL);
2333 retval = -ENOMEM;
2334 if (!drv->state)
2335 goto out;
2337 normal = alloc_tty_driver(drv->nr);
2338 if (!normal)
2339 goto out;
2341 drv->tty_driver = normal;
2343 normal->owner = drv->owner;
2344 normal->driver_name = drv->driver_name;
2345 normal->name = drv->dev_name;
2346 normal->major = drv->major;
2347 normal->minor_start = drv->minor;
2348 normal->type = TTY_DRIVER_TYPE_SERIAL;
2349 normal->subtype = SERIAL_TYPE_NORMAL;
2350 normal->init_termios = tty_std_termios;
2351 normal->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
2352 normal->init_termios.c_ispeed = normal->init_termios.c_ospeed = 9600;
2353 normal->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
2354 normal->driver_state = drv;
2355 tty_set_operations(normal, &uart_ops);
2358 * Initialise the UART state(s).
2360 for (i = 0; i < drv->nr; i++) {
2361 struct uart_state *state = drv->state + i;
2363 state->close_delay = 500; /* .5 seconds */
2364 state->closing_wait = 30000; /* 30 seconds */
2366 mutex_init(&state->mutex);
2369 retval = tty_register_driver(normal);
2370 out:
2371 if (retval < 0) {
2372 put_tty_driver(normal);
2373 kfree(drv->state);
2375 return retval;
2379 * uart_unregister_driver - remove a driver from the uart core layer
2380 * @drv: low level driver structure
2382 * Remove all references to a driver from the core driver. The low
2383 * level driver must have removed all its ports via the
2384 * uart_remove_one_port() if it registered them with uart_add_one_port().
2385 * (ie, drv->port == NULL)
2387 void uart_unregister_driver(struct uart_driver *drv)
2389 struct tty_driver *p = drv->tty_driver;
2390 tty_unregister_driver(p);
2391 put_tty_driver(p);
2392 kfree(drv->state);
2393 drv->tty_driver = NULL;
2396 struct tty_driver *uart_console_device(struct console *co, int *index)
2398 struct uart_driver *p = co->data;
2399 *index = co->index;
2400 return p->tty_driver;
2404 * uart_add_one_port - attach a driver-defined port structure
2405 * @drv: pointer to the uart low level driver structure for this port
2406 * @port: uart port structure to use for this port.
2408 * This allows the driver to register its own uart_port structure
2409 * with the core driver. The main purpose is to allow the low
2410 * level uart drivers to expand uart_port, rather than having yet
2411 * more levels of structures.
2413 int uart_add_one_port(struct uart_driver *drv, struct uart_port *port)
2415 struct uart_state *state;
2416 int ret = 0;
2417 struct device *tty_dev;
2419 BUG_ON(in_interrupt());
2421 if (port->line >= drv->nr)
2422 return -EINVAL;
2424 state = drv->state + port->line;
2426 mutex_lock(&port_mutex);
2427 mutex_lock(&state->mutex);
2428 if (state->port) {
2429 ret = -EINVAL;
2430 goto out;
2433 state->port = port;
2434 state->pm_state = -1;
2436 port->cons = drv->cons;
2437 port->info = state->info;
2440 * If this port is a console, then the spinlock is already
2441 * initialised.
2443 if (!(uart_console(port) && (port->cons->flags & CON_ENABLED))) {
2444 spin_lock_init(&port->lock);
2445 lockdep_set_class(&port->lock, &port_lock_key);
2448 uart_configure_port(drv, state, port);
2451 * Register the port whether it's detected or not. This allows
2452 * setserial to be used to alter this ports parameters.
2454 tty_dev = tty_register_device(drv->tty_driver, port->line, port->dev);
2455 if (likely(!IS_ERR(tty_dev))) {
2456 device_init_wakeup(tty_dev, 1);
2457 device_set_wakeup_enable(tty_dev, 0);
2458 } else
2459 printk(KERN_ERR "Cannot register tty device on line %d\n",
2460 port->line);
2463 * Ensure UPF_DEAD is not set.
2465 port->flags &= ~UPF_DEAD;
2467 out:
2468 mutex_unlock(&state->mutex);
2469 mutex_unlock(&port_mutex);
2471 return ret;
2475 * uart_remove_one_port - detach a driver defined port structure
2476 * @drv: pointer to the uart low level driver structure for this port
2477 * @port: uart port structure for this port
2479 * This unhooks (and hangs up) the specified port structure from the
2480 * core driver. No further calls will be made to the low-level code
2481 * for this port.
2483 int uart_remove_one_port(struct uart_driver *drv, struct uart_port *port)
2485 struct uart_state *state = drv->state + port->line;
2486 struct uart_info *info;
2488 BUG_ON(in_interrupt());
2490 if (state->port != port)
2491 printk(KERN_ALERT "Removing wrong port: %p != %p\n",
2492 state->port, port);
2494 mutex_lock(&port_mutex);
2497 * Mark the port "dead" - this prevents any opens from
2498 * succeeding while we shut down the port.
2500 mutex_lock(&state->mutex);
2501 port->flags |= UPF_DEAD;
2502 mutex_unlock(&state->mutex);
2505 * Remove the devices from the tty layer
2507 tty_unregister_device(drv->tty_driver, port->line);
2509 info = state->info;
2510 if (info && info->tty)
2511 tty_vhangup(info->tty);
2514 * All users of this port should now be disconnected from
2515 * this driver, and the port shut down. We should be the
2516 * only thread fiddling with this port from now on.
2518 state->info = NULL;
2521 * Free the port IO and memory resources, if any.
2523 if (port->type != PORT_UNKNOWN)
2524 port->ops->release_port(port);
2527 * Indicate that there isn't a port here anymore.
2529 port->type = PORT_UNKNOWN;
2532 * Kill the tasklet, and free resources.
2534 if (info) {
2535 tasklet_kill(&info->tlet);
2536 kfree(info);
2539 state->port = NULL;
2540 mutex_unlock(&port_mutex);
2542 return 0;
2546 * Are the two ports equivalent?
2548 int uart_match_port(struct uart_port *port1, struct uart_port *port2)
2550 if (port1->iotype != port2->iotype)
2551 return 0;
2553 switch (port1->iotype) {
2554 case UPIO_PORT:
2555 return (port1->iobase == port2->iobase);
2556 case UPIO_HUB6:
2557 return (port1->iobase == port2->iobase) &&
2558 (port1->hub6 == port2->hub6);
2559 case UPIO_MEM:
2560 case UPIO_MEM32:
2561 case UPIO_AU:
2562 case UPIO_TSI:
2563 case UPIO_DWAPB:
2564 return (port1->mapbase == port2->mapbase);
2566 return 0;
2568 EXPORT_SYMBOL(uart_match_port);
2570 EXPORT_SYMBOL(uart_write_wakeup);
2571 EXPORT_SYMBOL(uart_register_driver);
2572 EXPORT_SYMBOL(uart_unregister_driver);
2573 EXPORT_SYMBOL(uart_suspend_port);
2574 EXPORT_SYMBOL(uart_resume_port);
2575 EXPORT_SYMBOL(uart_add_one_port);
2576 EXPORT_SYMBOL(uart_remove_one_port);
2578 MODULE_DESCRIPTION("Serial driver core");
2579 MODULE_LICENSE("GPL");