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/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>
40 #include <asm/uaccess.h>
43 * This is used to lock changes in serial line configuration.
45 static DEFINE_MUTEX(port_mutex
);
48 * lockdep: port->lock is initialized in two places, but we
49 * want only one lock-class:
51 static struct lock_class_key port_lock_key
;
53 #define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8)
55 #ifdef CONFIG_SERIAL_CORE_CONSOLE
56 #define uart_console(port) ((port)->cons && (port)->cons->index == (port)->line)
58 #define uart_console(port) (0)
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_state
*state
= port
->state
;
74 * This means you called this function _after_ the port was
75 * closed. No cookie for you.
78 tasklet_schedule(&state
->tlet
);
81 static void uart_stop(struct tty_struct
*tty
)
83 struct uart_state
*state
= tty
->driver_data
;
84 struct uart_port
*port
= state
->uart_port
;
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
->uart_port
;
97 if (!uart_circ_empty(&state
->xmit
) && state
->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
->uart_port
;
108 spin_lock_irqsave(&port
->lock
, flags
);
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
->port
.tty
);
120 uart_update_mctrl(struct uart_port
*port
, unsigned int set
, unsigned int clear
)
125 spin_lock_irqsave(&port
->lock
, flags
);
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 mutex.
140 static int uart_startup(struct uart_state
*state
, int init_hw
)
142 struct uart_port
*uport
= state
->uart_port
;
143 struct tty_port
*port
= &state
->port
;
147 if (port
->flags
& ASYNC_INITIALIZED
)
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
, &port
->tty
->flags
);
157 if (uport
->type
== PORT_UNKNOWN
)
161 * Initialise and allocate the transmit and temporary
164 if (!state
->xmit
.buf
) {
165 /* This is protected by the per port mutex */
166 page
= get_zeroed_page(GFP_KERNEL
);
170 state
->xmit
.buf
= (unsigned char *) page
;
171 uart_circ_clear(&state
->xmit
);
174 retval
= uport
->ops
->startup(uport
);
178 * Initialise the hardware port settings.
180 uart_change_speed(state
, NULL
);
183 * Setup the RTS and DTR signals once the
184 * port is open and ready to respond.
186 if (port
->tty
->termios
->c_cflag
& CBAUD
)
187 uart_set_mctrl(uport
, TIOCM_RTS
| TIOCM_DTR
);
190 if (port
->flags
& ASYNC_CTS_FLOW
) {
191 spin_lock_irq(&uport
->lock
);
192 if (!(uport
->ops
->get_mctrl(uport
) & TIOCM_CTS
))
193 port
->tty
->hw_stopped
= 1;
194 spin_unlock_irq(&uport
->lock
);
197 set_bit(ASYNCB_INITIALIZED
, &port
->flags
);
199 clear_bit(TTY_IO_ERROR
, &port
->tty
->flags
);
202 if (retval
&& capable(CAP_SYS_ADMIN
))
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.
213 static void uart_shutdown(struct uart_state
*state
)
215 struct uart_port
*uport
= state
->uart_port
;
216 struct tty_port
*port
= &state
->port
;
217 struct tty_struct
*tty
= port
->tty
;
220 * Set the TTY IO error marker
223 set_bit(TTY_IO_ERROR
, &tty
->flags
);
225 if (test_and_clear_bit(ASYNCB_INITIALIZED
, &port
->flags
)) {
227 * Turn off DTR and RTS early.
229 if (!tty
|| (tty
->termios
->c_cflag
& HUPCL
))
230 uart_clear_mctrl(uport
, 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(&port
->delta_msr_wait
);
242 * Free the IRQ and disable the port.
244 uport
->ops
->shutdown(uport
);
247 * Ensure that the IRQ handler isn't running on another CPU.
249 synchronize_irq(uport
->irq
);
253 * kill off our tasklet
255 tasklet_kill(&state
->tlet
);
258 * Free the transmit buffer page.
260 if (state
->xmit
.buf
) {
261 free_page((unsigned long)state
->xmit
.buf
);
262 state
->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.
276 uart_update_timeout(struct uart_port
*port
, unsigned int cflag
,
281 /* byte size and parity */
282 switch (cflag
& CSIZE
) {
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").
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;
341 upf_t flags
= port
->flags
& UPF_SPD_MASK
;
343 if (flags
== UPF_SPD_HI
)
345 if (flags
== UPF_SPD_VHI
)
347 if (flags
== UPF_SPD_SHI
)
349 if (flags
== UPF_SPD_WARP
)
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...
363 * Special case: B0 rate.
370 if (baud
>= min
&& baud
<= max
)
374 * Oops, the quotient was zero. Try again with
375 * the old baud rate if possible.
377 termios
->c_cflag
&= ~CBAUD
;
379 baud
= tty_termios_baud_rate(old
);
381 tty_termios_encode_baud_rate(termios
,
388 * As a last resort, if the quotient is zero,
389 * default to 9600 bps
392 tty_termios_encode_baud_rate(termios
, 9600, 9600);
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.
408 uart_get_divisor(struct uart_port
*port
, unsigned int baud
)
413 * Old custom speed handling.
415 if (baud
== 38400 && (port
->flags
& UPF_SPD_MASK
) == UPF_SPD_CUST
)
416 quot
= port
->custom_divisor
;
418 quot
= (port
->uartclk
+ (8 * baud
)) / (16 * baud
);
423 EXPORT_SYMBOL(uart_get_divisor
);
425 /* FIXME: Consistent locking policy */
427 uart_change_speed(struct uart_state
*state
, struct ktermios
*old_termios
)
429 struct tty_port
*port
= &state
->port
;
430 struct tty_struct
*tty
= port
->tty
;
431 struct uart_port
*uport
= state
->uart_port
;
432 struct ktermios
*termios
;
435 * If we have no tty, termios, or the port does not exist,
436 * then we can't set the parameters for this port.
438 if (!tty
|| !tty
->termios
|| uport
->type
== PORT_UNKNOWN
)
441 termios
= tty
->termios
;
444 * Set flags based on termios cflag
446 if (termios
->c_cflag
& CRTSCTS
)
447 set_bit(ASYNCB_CTS_FLOW
, &port
->flags
);
449 clear_bit(ASYNCB_CTS_FLOW
, &port
->flags
);
451 if (termios
->c_cflag
& CLOCAL
)
452 clear_bit(ASYNCB_CHECK_CD
, &port
->flags
);
454 set_bit(ASYNCB_CHECK_CD
, &port
->flags
);
456 uport
->ops
->set_termios(uport
, termios
, old_termios
);
460 __uart_put_char(struct uart_port
*port
, struct circ_buf
*circ
, unsigned char c
)
468 spin_lock_irqsave(&port
->lock
, flags
);
469 if (uart_circ_chars_free(circ
) != 0) {
470 circ
->buf
[circ
->head
] = c
;
471 circ
->head
= (circ
->head
+ 1) & (UART_XMIT_SIZE
- 1);
474 spin_unlock_irqrestore(&port
->lock
, flags
);
478 static int uart_put_char(struct tty_struct
*tty
, unsigned char ch
)
480 struct uart_state
*state
= tty
->driver_data
;
482 return __uart_put_char(state
->uart_port
, &state
->xmit
, ch
);
485 static void uart_flush_chars(struct tty_struct
*tty
)
491 uart_write(struct tty_struct
*tty
, const unsigned char *buf
, int count
)
493 struct uart_state
*state
= tty
->driver_data
;
494 struct uart_port
*port
;
495 struct circ_buf
*circ
;
500 * This means you called this function _after_ the port was
501 * closed. No cookie for you.
508 port
= state
->uart_port
;
514 spin_lock_irqsave(&port
->lock
, flags
);
516 c
= CIRC_SPACE_TO_END(circ
->head
, circ
->tail
, UART_XMIT_SIZE
);
521 memcpy(circ
->buf
+ circ
->head
, buf
, c
);
522 circ
->head
= (circ
->head
+ c
) & (UART_XMIT_SIZE
- 1);
527 spin_unlock_irqrestore(&port
->lock
, flags
);
533 static int uart_write_room(struct tty_struct
*tty
)
535 struct uart_state
*state
= tty
->driver_data
;
539 spin_lock_irqsave(&state
->uart_port
->lock
, flags
);
540 ret
= uart_circ_chars_free(&state
->xmit
);
541 spin_unlock_irqrestore(&state
->uart_port
->lock
, flags
);
545 static int uart_chars_in_buffer(struct tty_struct
*tty
)
547 struct uart_state
*state
= tty
->driver_data
;
551 spin_lock_irqsave(&state
->uart_port
->lock
, flags
);
552 ret
= uart_circ_chars_pending(&state
->xmit
);
553 spin_unlock_irqrestore(&state
->uart_port
->lock
, flags
);
557 static void uart_flush_buffer(struct tty_struct
*tty
)
559 struct uart_state
*state
= tty
->driver_data
;
560 struct uart_port
*port
;
564 * This means you called this function _after_ the port was
565 * closed. No cookie for you.
572 port
= state
->uart_port
;
573 pr_debug("uart_flush_buffer(%d) called\n", tty
->index
);
575 spin_lock_irqsave(&port
->lock
, flags
);
576 uart_circ_clear(&state
->xmit
);
577 if (port
->ops
->flush_buffer
)
578 port
->ops
->flush_buffer(port
);
579 spin_unlock_irqrestore(&port
->lock
, flags
);
584 * This function is used to send a high-priority XON/XOFF character to
587 static void uart_send_xchar(struct tty_struct
*tty
, char ch
)
589 struct uart_state
*state
= tty
->driver_data
;
590 struct uart_port
*port
= state
->uart_port
;
593 if (port
->ops
->send_xchar
)
594 port
->ops
->send_xchar(port
, ch
);
598 spin_lock_irqsave(&port
->lock
, flags
);
599 port
->ops
->start_tx(port
);
600 spin_unlock_irqrestore(&port
->lock
, flags
);
605 static void uart_throttle(struct tty_struct
*tty
)
607 struct uart_state
*state
= tty
->driver_data
;
610 uart_send_xchar(tty
, STOP_CHAR(tty
));
612 if (tty
->termios
->c_cflag
& CRTSCTS
)
613 uart_clear_mctrl(state
->uart_port
, TIOCM_RTS
);
616 static void uart_unthrottle(struct tty_struct
*tty
)
618 struct uart_state
*state
= tty
->driver_data
;
619 struct uart_port
*port
= state
->uart_port
;
625 uart_send_xchar(tty
, START_CHAR(tty
));
628 if (tty
->termios
->c_cflag
& CRTSCTS
)
629 uart_set_mctrl(port
, TIOCM_RTS
);
632 static int uart_get_info(struct uart_state
*state
,
633 struct serial_struct __user
*retinfo
)
635 struct uart_port
*uport
= state
->uart_port
;
636 struct tty_port
*port
= &state
->port
;
637 struct serial_struct tmp
;
639 memset(&tmp
, 0, sizeof(tmp
));
641 /* Ensure the state we copy is consistent and no hardware changes
643 mutex_lock(&port
->mutex
);
645 tmp
.type
= uport
->type
;
646 tmp
.line
= uport
->line
;
647 tmp
.port
= uport
->iobase
;
648 if (HIGH_BITS_OFFSET
)
649 tmp
.port_high
= (long) uport
->iobase
>> HIGH_BITS_OFFSET
;
650 tmp
.irq
= uport
->irq
;
651 tmp
.flags
= uport
->flags
;
652 tmp
.xmit_fifo_size
= uport
->fifosize
;
653 tmp
.baud_base
= uport
->uartclk
/ 16;
654 tmp
.close_delay
= port
->close_delay
/ 10;
655 tmp
.closing_wait
= port
->closing_wait
== ASYNC_CLOSING_WAIT_NONE
?
656 ASYNC_CLOSING_WAIT_NONE
:
657 port
->closing_wait
/ 10;
658 tmp
.custom_divisor
= uport
->custom_divisor
;
659 tmp
.hub6
= uport
->hub6
;
660 tmp
.io_type
= uport
->iotype
;
661 tmp
.iomem_reg_shift
= uport
->regshift
;
662 tmp
.iomem_base
= (void *)(unsigned long)uport
->mapbase
;
664 mutex_unlock(&port
->mutex
);
666 if (copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)))
671 static int uart_set_info(struct uart_state
*state
,
672 struct serial_struct __user
*newinfo
)
674 struct serial_struct new_serial
;
675 struct uart_port
*uport
= state
->uart_port
;
676 struct tty_port
*port
= &state
->port
;
677 unsigned long new_port
;
678 unsigned int change_irq
, change_port
, closing_wait
;
679 unsigned int old_custom_divisor
, close_delay
;
680 upf_t old_flags
, new_flags
;
683 if (copy_from_user(&new_serial
, newinfo
, sizeof(new_serial
)))
686 new_port
= new_serial
.port
;
687 if (HIGH_BITS_OFFSET
)
688 new_port
+= (unsigned long) new_serial
.port_high
<< HIGH_BITS_OFFSET
;
690 new_serial
.irq
= irq_canonicalize(new_serial
.irq
);
691 close_delay
= new_serial
.close_delay
* 10;
692 closing_wait
= new_serial
.closing_wait
== ASYNC_CLOSING_WAIT_NONE
?
693 ASYNC_CLOSING_WAIT_NONE
: new_serial
.closing_wait
* 10;
696 * This semaphore protects port->count. It is also
697 * very useful to prevent opens. Also, take the
698 * port configuration semaphore to make sure that a
699 * module insertion/removal doesn't change anything
702 mutex_lock(&port
->mutex
);
704 change_irq
= !(uport
->flags
& UPF_FIXED_PORT
)
705 && new_serial
.irq
!= uport
->irq
;
708 * Since changing the 'type' of the port changes its resource
709 * allocations, we should treat type changes the same as
712 change_port
= !(uport
->flags
& UPF_FIXED_PORT
)
713 && (new_port
!= uport
->iobase
||
714 (unsigned long)new_serial
.iomem_base
!= uport
->mapbase
||
715 new_serial
.hub6
!= uport
->hub6
||
716 new_serial
.io_type
!= uport
->iotype
||
717 new_serial
.iomem_reg_shift
!= uport
->regshift
||
718 new_serial
.type
!= uport
->type
);
720 old_flags
= uport
->flags
;
721 new_flags
= new_serial
.flags
;
722 old_custom_divisor
= uport
->custom_divisor
;
724 if (!capable(CAP_SYS_ADMIN
)) {
726 if (change_irq
|| change_port
||
727 (new_serial
.baud_base
!= uport
->uartclk
/ 16) ||
728 (close_delay
!= port
->close_delay
) ||
729 (closing_wait
!= port
->closing_wait
) ||
730 (new_serial
.xmit_fifo_size
&&
731 new_serial
.xmit_fifo_size
!= uport
->fifosize
) ||
732 (((new_flags
^ old_flags
) & ~UPF_USR_MASK
) != 0))
734 uport
->flags
= ((uport
->flags
& ~UPF_USR_MASK
) |
735 (new_flags
& UPF_USR_MASK
));
736 uport
->custom_divisor
= new_serial
.custom_divisor
;
741 * Ask the low level driver to verify the settings.
743 if (uport
->ops
->verify_port
)
744 retval
= uport
->ops
->verify_port(uport
, &new_serial
);
746 if ((new_serial
.irq
>= nr_irqs
) || (new_serial
.irq
< 0) ||
747 (new_serial
.baud_base
< 9600))
753 if (change_port
|| change_irq
) {
757 * Make sure that we are the sole user of this port.
759 if (tty_port_users(port
) > 1)
763 * We need to shutdown the serial port at the old
764 * port/type/irq combination.
766 uart_shutdown(state
);
770 unsigned long old_iobase
, old_mapbase
;
771 unsigned int old_type
, old_iotype
, old_hub6
, old_shift
;
773 old_iobase
= uport
->iobase
;
774 old_mapbase
= uport
->mapbase
;
775 old_type
= uport
->type
;
776 old_hub6
= uport
->hub6
;
777 old_iotype
= uport
->iotype
;
778 old_shift
= uport
->regshift
;
781 * Free and release old regions
783 if (old_type
!= PORT_UNKNOWN
)
784 uport
->ops
->release_port(uport
);
786 uport
->iobase
= new_port
;
787 uport
->type
= new_serial
.type
;
788 uport
->hub6
= new_serial
.hub6
;
789 uport
->iotype
= new_serial
.io_type
;
790 uport
->regshift
= new_serial
.iomem_reg_shift
;
791 uport
->mapbase
= (unsigned long)new_serial
.iomem_base
;
794 * Claim and map the new regions
796 if (uport
->type
!= PORT_UNKNOWN
) {
797 retval
= uport
->ops
->request_port(uport
);
799 /* Always success - Jean II */
804 * If we fail to request resources for the
805 * new port, try to restore the old settings.
807 if (retval
&& old_type
!= PORT_UNKNOWN
) {
808 uport
->iobase
= old_iobase
;
809 uport
->type
= old_type
;
810 uport
->hub6
= old_hub6
;
811 uport
->iotype
= old_iotype
;
812 uport
->regshift
= old_shift
;
813 uport
->mapbase
= old_mapbase
;
814 retval
= uport
->ops
->request_port(uport
);
816 * If we failed to restore the old settings,
820 uport
->type
= PORT_UNKNOWN
;
826 /* Added to return the correct error -Ram Gupta */
832 uport
->irq
= new_serial
.irq
;
833 if (!(uport
->flags
& UPF_FIXED_PORT
))
834 uport
->uartclk
= new_serial
.baud_base
* 16;
835 uport
->flags
= (uport
->flags
& ~UPF_CHANGE_MASK
) |
836 (new_flags
& UPF_CHANGE_MASK
);
837 uport
->custom_divisor
= new_serial
.custom_divisor
;
838 port
->close_delay
= close_delay
;
839 port
->closing_wait
= closing_wait
;
840 if (new_serial
.xmit_fifo_size
)
841 uport
->fifosize
= new_serial
.xmit_fifo_size
;
843 port
->tty
->low_latency
=
844 (uport
->flags
& UPF_LOW_LATENCY
) ? 1 : 0;
848 if (uport
->type
== PORT_UNKNOWN
)
850 if (port
->flags
& ASYNC_INITIALIZED
) {
851 if (((old_flags
^ uport
->flags
) & UPF_SPD_MASK
) ||
852 old_custom_divisor
!= uport
->custom_divisor
) {
854 * If they're setting up a custom divisor or speed,
855 * instead of clearing it, then bitch about it. No
856 * need to rate-limit; it's CAP_SYS_ADMIN only.
858 if (uport
->flags
& UPF_SPD_MASK
) {
861 "%s sets custom speed on %s. This "
862 "is deprecated.\n", current
->comm
,
863 tty_name(port
->tty
, buf
));
865 uart_change_speed(state
, NULL
);
868 retval
= uart_startup(state
, 1);
870 mutex_unlock(&port
->mutex
);
876 * uart_get_lsr_info - get line status register info.
877 * Note: uart_ioctl protects us against hangups.
879 static int uart_get_lsr_info(struct uart_state
*state
,
880 unsigned int __user
*value
)
882 struct uart_port
*uport
= state
->uart_port
;
883 struct tty_port
*port
= &state
->port
;
886 result
= uport
->ops
->tx_empty(uport
);
889 * If we're about to load something into the transmit
890 * register, we'll pretend the transmitter isn't empty to
891 * avoid a race condition (depending on when the transmit
892 * interrupt happens).
895 ((uart_circ_chars_pending(&state
->xmit
) > 0) &&
896 !port
->tty
->stopped
&& !port
->tty
->hw_stopped
))
897 result
&= ~TIOCSER_TEMT
;
899 return put_user(result
, value
);
902 static int uart_tiocmget(struct tty_struct
*tty
, struct file
*file
)
904 struct uart_state
*state
= tty
->driver_data
;
905 struct tty_port
*port
= &state
->port
;
906 struct uart_port
*uport
= state
->uart_port
;
909 mutex_lock(&port
->mutex
);
910 if ((!file
|| !tty_hung_up_p(file
)) &&
911 !(tty
->flags
& (1 << TTY_IO_ERROR
))) {
912 result
= uport
->mctrl
;
914 spin_lock_irq(&uport
->lock
);
915 result
|= uport
->ops
->get_mctrl(uport
);
916 spin_unlock_irq(&uport
->lock
);
918 mutex_unlock(&port
->mutex
);
924 uart_tiocmset(struct tty_struct
*tty
, struct file
*file
,
925 unsigned int set
, unsigned int clear
)
927 struct uart_state
*state
= tty
->driver_data
;
928 struct uart_port
*uport
= state
->uart_port
;
929 struct tty_port
*port
= &state
->port
;
932 mutex_lock(&port
->mutex
);
933 if ((!file
|| !tty_hung_up_p(file
)) &&
934 !(tty
->flags
& (1 << TTY_IO_ERROR
))) {
935 uart_update_mctrl(uport
, set
, clear
);
938 mutex_unlock(&port
->mutex
);
942 static int uart_break_ctl(struct tty_struct
*tty
, int break_state
)
944 struct uart_state
*state
= tty
->driver_data
;
945 struct tty_port
*port
= &state
->port
;
946 struct uart_port
*uport
= state
->uart_port
;
948 mutex_lock(&port
->mutex
);
950 if (uport
->type
!= PORT_UNKNOWN
)
951 uport
->ops
->break_ctl(uport
, break_state
);
953 mutex_unlock(&port
->mutex
);
957 static int uart_do_autoconfig(struct uart_state
*state
)
959 struct uart_port
*uport
= state
->uart_port
;
960 struct tty_port
*port
= &state
->port
;
963 if (!capable(CAP_SYS_ADMIN
))
967 * Take the per-port semaphore. This prevents count from
968 * changing, and hence any extra opens of the port while
969 * we're auto-configuring.
971 if (mutex_lock_interruptible(&port
->mutex
))
975 if (tty_port_users(port
) == 1) {
976 uart_shutdown(state
);
979 * If we already have a port type configured,
980 * we must release its resources.
982 if (uport
->type
!= PORT_UNKNOWN
)
983 uport
->ops
->release_port(uport
);
985 flags
= UART_CONFIG_TYPE
;
986 if (uport
->flags
& UPF_AUTO_IRQ
)
987 flags
|= UART_CONFIG_IRQ
;
990 * This will claim the ports resources if
993 uport
->ops
->config_port(uport
, flags
);
995 ret
= uart_startup(state
, 1);
997 mutex_unlock(&port
->mutex
);
1002 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1003 * - mask passed in arg for lines of interest
1004 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1005 * Caller should use TIOCGICOUNT to see which one it was
1007 * FIXME: This wants extracting into a common all driver implementation
1008 * of TIOCMWAIT using tty_port.
1011 uart_wait_modem_status(struct uart_state
*state
, unsigned long arg
)
1013 struct uart_port
*uport
= state
->uart_port
;
1014 struct tty_port
*port
= &state
->port
;
1015 DECLARE_WAITQUEUE(wait
, current
);
1016 struct uart_icount cprev
, cnow
;
1020 * note the counters on entry
1022 spin_lock_irq(&uport
->lock
);
1023 memcpy(&cprev
, &uport
->icount
, sizeof(struct uart_icount
));
1026 * Force modem status interrupts on
1028 uport
->ops
->enable_ms(uport
);
1029 spin_unlock_irq(&uport
->lock
);
1031 add_wait_queue(&port
->delta_msr_wait
, &wait
);
1033 spin_lock_irq(&uport
->lock
);
1034 memcpy(&cnow
, &uport
->icount
, sizeof(struct uart_icount
));
1035 spin_unlock_irq(&uport
->lock
);
1037 set_current_state(TASK_INTERRUPTIBLE
);
1039 if (((arg
& TIOCM_RNG
) && (cnow
.rng
!= cprev
.rng
)) ||
1040 ((arg
& TIOCM_DSR
) && (cnow
.dsr
!= cprev
.dsr
)) ||
1041 ((arg
& TIOCM_CD
) && (cnow
.dcd
!= cprev
.dcd
)) ||
1042 ((arg
& TIOCM_CTS
) && (cnow
.cts
!= cprev
.cts
))) {
1049 /* see if a signal did it */
1050 if (signal_pending(current
)) {
1058 current
->state
= TASK_RUNNING
;
1059 remove_wait_queue(&port
->delta_msr_wait
, &wait
);
1065 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1066 * Return: write counters to the user passed counter struct
1067 * NB: both 1->0 and 0->1 transitions are counted except for
1068 * RI where only 0->1 is counted.
1070 static int uart_get_count(struct uart_state
*state
,
1071 struct serial_icounter_struct __user
*icnt
)
1073 struct serial_icounter_struct icount
;
1074 struct uart_icount cnow
;
1075 struct uart_port
*uport
= state
->uart_port
;
1077 spin_lock_irq(&uport
->lock
);
1078 memcpy(&cnow
, &uport
->icount
, sizeof(struct uart_icount
));
1079 spin_unlock_irq(&uport
->lock
);
1081 icount
.cts
= cnow
.cts
;
1082 icount
.dsr
= cnow
.dsr
;
1083 icount
.rng
= cnow
.rng
;
1084 icount
.dcd
= cnow
.dcd
;
1085 icount
.rx
= cnow
.rx
;
1086 icount
.tx
= cnow
.tx
;
1087 icount
.frame
= cnow
.frame
;
1088 icount
.overrun
= cnow
.overrun
;
1089 icount
.parity
= cnow
.parity
;
1090 icount
.brk
= cnow
.brk
;
1091 icount
.buf_overrun
= cnow
.buf_overrun
;
1093 return copy_to_user(icnt
, &icount
, sizeof(icount
)) ? -EFAULT
: 0;
1097 * Called via sys_ioctl. We can use spin_lock_irq() here.
1100 uart_ioctl(struct tty_struct
*tty
, struct file
*filp
, unsigned int cmd
,
1103 struct uart_state
*state
= tty
->driver_data
;
1104 struct tty_port
*port
= &state
->port
;
1105 void __user
*uarg
= (void __user
*)arg
;
1106 int ret
= -ENOIOCTLCMD
;
1110 * These ioctls don't rely on the hardware to be present.
1114 ret
= uart_get_info(state
, uarg
);
1118 ret
= uart_set_info(state
, uarg
);
1122 ret
= uart_do_autoconfig(state
);
1125 case TIOCSERGWILD
: /* obsolete */
1126 case TIOCSERSWILD
: /* obsolete */
1131 if (ret
!= -ENOIOCTLCMD
)
1134 if (tty
->flags
& (1 << TTY_IO_ERROR
)) {
1140 * The following should only be used when hardware is present.
1144 ret
= uart_wait_modem_status(state
, arg
);
1148 ret
= uart_get_count(state
, uarg
);
1152 if (ret
!= -ENOIOCTLCMD
)
1155 mutex_lock(&port
->mutex
);
1157 if (tty_hung_up_p(filp
)) {
1163 * All these rely on hardware being present and need to be
1164 * protected against the tty being hung up.
1167 case TIOCSERGETLSR
: /* Get line status register */
1168 ret
= uart_get_lsr_info(state
, uarg
);
1172 struct uart_port
*uport
= state
->uart_port
;
1173 if (uport
->ops
->ioctl
)
1174 ret
= uport
->ops
->ioctl(uport
, cmd
, arg
);
1179 mutex_unlock(&port
->mutex
);
1184 static void uart_set_ldisc(struct tty_struct
*tty
)
1186 struct uart_state
*state
= tty
->driver_data
;
1187 struct uart_port
*uport
= state
->uart_port
;
1189 if (uport
->ops
->set_ldisc
)
1190 uport
->ops
->set_ldisc(uport
);
1193 static void uart_set_termios(struct tty_struct
*tty
,
1194 struct ktermios
*old_termios
)
1196 struct uart_state
*state
= tty
->driver_data
;
1197 unsigned long flags
;
1198 unsigned int cflag
= tty
->termios
->c_cflag
;
1202 * These are the bits that are used to setup various
1203 * flags in the low level driver. We can ignore the Bfoo
1204 * bits in c_cflag; c_[io]speed will always be set
1205 * appropriately by set_termios() in tty_ioctl.c
1207 #define RELEVANT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
1208 if ((cflag
^ old_termios
->c_cflag
) == 0 &&
1209 tty
->termios
->c_ospeed
== old_termios
->c_ospeed
&&
1210 tty
->termios
->c_ispeed
== old_termios
->c_ispeed
&&
1211 RELEVANT_IFLAG(tty
->termios
->c_iflag
^ old_termios
->c_iflag
) == 0) {
1215 uart_change_speed(state
, old_termios
);
1217 /* Handle transition to B0 status */
1218 if ((old_termios
->c_cflag
& CBAUD
) && !(cflag
& CBAUD
))
1219 uart_clear_mctrl(state
->uart_port
, TIOCM_RTS
| TIOCM_DTR
);
1221 /* Handle transition away from B0 status */
1222 if (!(old_termios
->c_cflag
& CBAUD
) && (cflag
& CBAUD
)) {
1223 unsigned int mask
= TIOCM_DTR
;
1224 if (!(cflag
& CRTSCTS
) ||
1225 !test_bit(TTY_THROTTLED
, &tty
->flags
))
1227 uart_set_mctrl(state
->uart_port
, mask
);
1230 /* Handle turning off CRTSCTS */
1231 if ((old_termios
->c_cflag
& CRTSCTS
) && !(cflag
& CRTSCTS
)) {
1232 spin_lock_irqsave(&state
->uart_port
->lock
, flags
);
1233 tty
->hw_stopped
= 0;
1235 spin_unlock_irqrestore(&state
->uart_port
->lock
, flags
);
1238 /* Handle turning on CRTSCTS */
1239 if (!(old_termios
->c_cflag
& CRTSCTS
) && (cflag
& CRTSCTS
)) {
1240 spin_lock_irqsave(&state
->uart_port
->lock
, flags
);
1241 if (!(state
->uart_port
->ops
->get_mctrl(state
->uart_port
) & TIOCM_CTS
)) {
1242 tty
->hw_stopped
= 1;
1243 state
->uart_port
->ops
->stop_tx(state
->uart_port
);
1245 spin_unlock_irqrestore(&state
->uart_port
->lock
, flags
);
1249 * No need to wake up processes in open wait, since they
1250 * sample the CLOCAL flag once, and don't recheck it.
1251 * XXX It's not clear whether the current behavior is correct
1252 * or not. Hence, this may change.....
1254 if (!(old_termios
->c_cflag
& CLOCAL
) &&
1255 (tty
->termios
->c_cflag
& CLOCAL
))
1256 wake_up_interruptible(&state
->uart_port
.open_wait
);
1261 * In 2.4.5, calls to this will be serialized via the BKL in
1262 * linux/drivers/char/tty_io.c:tty_release()
1263 * linux/drivers/char/tty_io.c:do_tty_handup()
1265 static void uart_close(struct tty_struct
*tty
, struct file
*filp
)
1267 struct uart_state
*state
= tty
->driver_data
;
1268 struct tty_port
*port
;
1269 struct uart_port
*uport
;
1271 BUG_ON(!kernel_locked());
1273 uport
= state
->uart_port
;
1274 port
= &state
->port
;
1276 pr_debug("uart_close(%d) called\n", uport
->line
);
1278 mutex_lock(&port
->mutex
);
1280 if (tty_hung_up_p(filp
))
1283 if ((tty
->count
== 1) && (port
->count
!= 1)) {
1285 * Uh, oh. tty->count is 1, which means that the tty
1286 * structure will be freed. port->count should always
1287 * be one in these conditions. If it's greater than
1288 * one, we've got real problems, since it means the
1289 * serial port won't be shutdown.
1291 printk(KERN_ERR
"uart_close: bad serial port count; tty->count is 1, "
1292 "port->count is %d\n", port
->count
);
1295 if (--port
->count
< 0) {
1296 printk(KERN_ERR
"uart_close: bad serial port count for %s: %d\n",
1297 tty
->name
, port
->count
);
1304 * Now we wait for the transmit buffer to clear; and we notify
1305 * the line discipline to only process XON/XOFF characters by
1306 * setting tty->closing.
1310 if (port
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
)
1311 tty_wait_until_sent(tty
, msecs_to_jiffies(port
->closing_wait
));
1314 * At this point, we stop accepting input. To do this, we
1315 * disable the receive line status interrupts.
1317 if (port
->flags
& ASYNC_INITIALIZED
) {
1318 unsigned long flags
;
1319 spin_lock_irqsave(&port
->lock
, flags
);
1320 uport
->ops
->stop_rx(uport
);
1321 spin_unlock_irqrestore(&port
->lock
, flags
);
1323 * Before we drop DTR, make sure the UART transmitter
1324 * has completely drained; this is especially
1325 * important if there is a transmit FIFO!
1327 uart_wait_until_sent(tty
, uport
->timeout
);
1330 uart_shutdown(state
);
1331 uart_flush_buffer(tty
);
1333 tty_ldisc_flush(tty
);
1336 tty_port_tty_set(port
, NULL
);
1338 if (port
->blocked_open
) {
1339 if (port
->close_delay
)
1340 msleep_interruptible(port
->close_delay
);
1341 } else if (!uart_console(uport
)) {
1342 uart_change_pm(state
, 3);
1346 * Wake up anyone trying to open this port.
1348 clear_bit(ASYNCB_NORMAL_ACTIVE
, &port
->flags
);
1349 wake_up_interruptible(&port
->open_wait
);
1352 mutex_unlock(&port
->mutex
);
1355 static void uart_wait_until_sent(struct tty_struct
*tty
, int timeout
)
1357 struct uart_state
*state
= tty
->driver_data
;
1358 struct uart_port
*port
= state
->uart_port
;
1359 unsigned long char_time
, expire
;
1361 if (port
->type
== PORT_UNKNOWN
|| port
->fifosize
== 0)
1367 * Set the check interval to be 1/5 of the estimated time to
1368 * send a single character, and make it at least 1. The check
1369 * interval should also be less than the timeout.
1371 * Note: we have to use pretty tight timings here to satisfy
1374 char_time
= (port
->timeout
- HZ
/50) / port
->fifosize
;
1375 char_time
= char_time
/ 5;
1378 if (timeout
&& timeout
< char_time
)
1379 char_time
= timeout
;
1382 * If the transmitter hasn't cleared in twice the approximate
1383 * amount of time to send the entire FIFO, it probably won't
1384 * ever clear. This assumes the UART isn't doing flow
1385 * control, which is currently the case. Hence, if it ever
1386 * takes longer than port->timeout, this is probably due to a
1387 * UART bug of some kind. So, we clamp the timeout parameter at
1390 if (timeout
== 0 || timeout
> 2 * port
->timeout
)
1391 timeout
= 2 * port
->timeout
;
1393 expire
= jiffies
+ timeout
;
1395 pr_debug("uart_wait_until_sent(%d), jiffies=%lu, expire=%lu...\n",
1396 port
->line
, jiffies
, expire
);
1399 * Check whether the transmitter is empty every 'char_time'.
1400 * 'timeout' / 'expire' give us the maximum amount of time
1403 while (!port
->ops
->tx_empty(port
)) {
1404 msleep_interruptible(jiffies_to_msecs(char_time
));
1405 if (signal_pending(current
))
1407 if (time_after(jiffies
, expire
))
1410 set_current_state(TASK_RUNNING
); /* might not be needed */
1415 * This is called with the BKL held in
1416 * linux/drivers/char/tty_io.c:do_tty_hangup()
1417 * We're called from the eventd thread, so we can sleep for
1418 * a _short_ time only.
1420 static void uart_hangup(struct tty_struct
*tty
)
1422 struct uart_state
*state
= tty
->driver_data
;
1423 struct tty_port
*port
= &state
->port
;
1425 BUG_ON(!kernel_locked());
1426 pr_debug("uart_hangup(%d)\n", state
->uart_port
->line
);
1428 mutex_lock(&port
->mutex
);
1429 if (port
->flags
& ASYNC_NORMAL_ACTIVE
) {
1430 uart_flush_buffer(tty
);
1431 uart_shutdown(state
);
1433 clear_bit(ASYNCB_NORMAL_ACTIVE
, &port
->flags
);
1434 tty_port_tty_set(port
, NULL
);
1435 wake_up_interruptible(&port
->open_wait
);
1436 wake_up_interruptible(&port
->delta_msr_wait
);
1438 mutex_unlock(&port
->mutex
);
1442 * Copy across the serial console cflag setting into the termios settings
1443 * for the initial open of the port. This allows continuity between the
1444 * kernel settings, and the settings init adopts when it opens the port
1445 * for the first time.
1447 static void uart_update_termios(struct uart_state
*state
)
1449 struct tty_struct
*tty
= state
->port
.tty
;
1450 struct uart_port
*port
= state
->uart_port
;
1452 if (uart_console(port
) && port
->cons
->cflag
) {
1453 tty
->termios
->c_cflag
= port
->cons
->cflag
;
1454 port
->cons
->cflag
= 0;
1458 * If the device failed to grab its irq resources,
1459 * or some other error occurred, don't try to talk
1460 * to the port hardware.
1462 if (!(tty
->flags
& (1 << TTY_IO_ERROR
))) {
1464 * Make termios settings take effect.
1466 uart_change_speed(state
, NULL
);
1469 * And finally enable the RTS and DTR signals.
1471 if (tty
->termios
->c_cflag
& CBAUD
)
1472 uart_set_mctrl(port
, TIOCM_DTR
| TIOCM_RTS
);
1477 * Block the open until the port is ready. We must be called with
1478 * the per-port semaphore held.
1481 uart_block_til_ready(struct file
*filp
, struct uart_state
*state
)
1483 DECLARE_WAITQUEUE(wait
, current
);
1484 struct uart_port
*uport
= state
->uart_port
;
1485 struct tty_port
*port
= &state
->port
;
1488 port
->blocked_open
++;
1491 add_wait_queue(&port
->open_wait
, &wait
);
1493 set_current_state(TASK_INTERRUPTIBLE
);
1496 * If we have been hung up, tell userspace/restart open.
1498 if (tty_hung_up_p(filp
) || port
->tty
== NULL
)
1502 * If the port has been closed, tell userspace/restart open.
1504 if (!(port
->flags
& ASYNC_INITIALIZED
))
1508 * If non-blocking mode is set, or CLOCAL mode is set,
1509 * we don't want to wait for the modem status lines to
1510 * indicate that the port is ready.
1512 * Also, if the port is not enabled/configured, we want
1513 * to allow the open to succeed here. Note that we will
1514 * have set TTY_IO_ERROR for a non-existant port.
1516 if ((filp
->f_flags
& O_NONBLOCK
) ||
1517 (port
->tty
->termios
->c_cflag
& CLOCAL
) ||
1518 (port
->tty
->flags
& (1 << TTY_IO_ERROR
)))
1522 * Set DTR to allow modem to know we're waiting. Do
1523 * not set RTS here - we want to make sure we catch
1524 * the data from the modem.
1526 if (port
->tty
->termios
->c_cflag
& CBAUD
)
1527 uart_set_mctrl(uport
, TIOCM_DTR
);
1530 * and wait for the carrier to indicate that the
1531 * modem is ready for us.
1533 spin_lock_irq(&uport
->lock
);
1534 uport
->ops
->enable_ms(uport
);
1535 mctrl
= uport
->ops
->get_mctrl(uport
);
1536 spin_unlock_irq(&uport
->lock
);
1537 if (mctrl
& TIOCM_CAR
)
1540 mutex_unlock(&port
->mutex
);
1542 mutex_lock(&port
->mutex
);
1544 if (signal_pending(current
))
1547 set_current_state(TASK_RUNNING
);
1548 remove_wait_queue(&port
->open_wait
, &wait
);
1551 port
->blocked_open
--;
1553 if (signal_pending(current
))
1554 return -ERESTARTSYS
;
1556 if (!port
->tty
|| tty_hung_up_p(filp
))
1562 static struct uart_state
*uart_get(struct uart_driver
*drv
, int line
)
1564 struct uart_state
*state
;
1565 struct tty_port
*port
;
1568 state
= drv
->state
+ line
;
1569 port
= &state
->port
;
1570 if (mutex_lock_interruptible(&port
->mutex
)) {
1576 if (!state
->uart_port
|| state
->uart_port
->flags
& UPF_DEAD
) {
1584 mutex_unlock(&port
->mutex
);
1586 return ERR_PTR(ret
);
1590 * calls to uart_open are serialised by the BKL in
1591 * fs/char_dev.c:chrdev_open()
1592 * Note that if this fails, then uart_close() _will_ be called.
1594 * In time, we want to scrap the "opening nonpresent ports"
1595 * behaviour and implement an alternative way for setserial
1596 * to set base addresses/ports/types. This will allow us to
1597 * get rid of a certain amount of extra tests.
1599 static int uart_open(struct tty_struct
*tty
, struct file
*filp
)
1601 struct uart_driver
*drv
= (struct uart_driver
*)tty
->driver
->driver_state
;
1602 struct uart_state
*state
;
1603 struct tty_port
*port
;
1604 int retval
, line
= tty
->index
;
1606 BUG_ON(!kernel_locked());
1607 pr_debug("uart_open(%d) called\n", line
);
1610 * tty->driver->num won't change, so we won't fail here with
1611 * tty->driver_data set to something non-NULL (and therefore
1612 * we won't get caught by uart_close()).
1615 if (line
>= tty
->driver
->num
)
1619 * We take the semaphore inside uart_get to guarantee that we won't
1620 * be re-entered while allocating the state structure, or while we
1621 * request any IRQs that the driver may need. This also has the nice
1622 * side-effect that it delays the action of uart_hangup, so we can
1623 * guarantee that state->port.tty will always contain something
1626 state
= uart_get(drv
, line
);
1627 if (IS_ERR(state
)) {
1628 retval
= PTR_ERR(state
);
1631 port
= &state
->port
;
1634 * Once we set tty->driver_data here, we are guaranteed that
1635 * uart_close() will decrement the driver module use count.
1636 * Any failures from here onwards should not touch the count.
1638 tty
->driver_data
= state
;
1639 state
->uart_port
->state
= state
;
1640 tty
->low_latency
= (state
->uart_port
->flags
& UPF_LOW_LATENCY
) ? 1 : 0;
1642 tty_port_tty_set(port
, tty
);
1645 * If the port is in the middle of closing, bail out now.
1647 if (tty_hung_up_p(filp
)) {
1650 mutex_unlock(&port
->mutex
);
1655 * Make sure the device is in D0 state.
1657 if (port
->count
== 1)
1658 uart_change_pm(state
, 0);
1661 * Start up the serial port.
1663 retval
= uart_startup(state
, 0);
1666 * If we succeeded, wait until the port is ready.
1669 retval
= uart_block_til_ready(filp
, state
);
1670 mutex_unlock(&port
->mutex
);
1673 * If this is the first open to succeed, adjust things to suit.
1675 if (retval
== 0 && !(port
->flags
& ASYNC_NORMAL_ACTIVE
)) {
1676 set_bit(ASYNCB_NORMAL_ACTIVE
, &port
->flags
);
1678 uart_update_termios(state
);
1685 static const char *uart_type(struct uart_port
*port
)
1687 const char *str
= NULL
;
1689 if (port
->ops
->type
)
1690 str
= port
->ops
->type(port
);
1698 #ifdef CONFIG_PROC_FS
1700 static void uart_line_info(struct seq_file
*m
, struct uart_driver
*drv
, int i
)
1702 struct uart_state
*state
= drv
->state
+ i
;
1703 struct tty_port
*port
= &state
->port
;
1705 struct uart_port
*uport
= state
->uart_port
;
1707 unsigned int status
;
1713 mmio
= uport
->iotype
>= UPIO_MEM
;
1714 seq_printf(m
, "%d: uart:%s %s%08llX irq:%d",
1715 uport
->line
, uart_type(uport
),
1716 mmio
? "mmio:0x" : "port:",
1717 mmio
? (unsigned long long)uport
->mapbase
1718 : (unsigned long long)uport
->iobase
,
1721 if (uport
->type
== PORT_UNKNOWN
) {
1726 if (capable(CAP_SYS_ADMIN
)) {
1727 mutex_lock(&port
->mutex
);
1728 pm_state
= state
->pm_state
;
1730 uart_change_pm(state
, 0);
1731 spin_lock_irq(&uport
->lock
);
1732 status
= uport
->ops
->get_mctrl(uport
);
1733 spin_unlock_irq(&uport
->lock
);
1735 uart_change_pm(state
, pm_state
);
1736 mutex_unlock(&port
->mutex
);
1738 seq_printf(m
, " tx:%d rx:%d",
1739 uport
->icount
.tx
, uport
->icount
.rx
);
1740 if (uport
->icount
.frame
)
1741 seq_printf(m
, " fe:%d",
1742 uport
->icount
.frame
);
1743 if (uport
->icount
.parity
)
1744 seq_printf(m
, " pe:%d",
1745 uport
->icount
.parity
);
1746 if (uport
->icount
.brk
)
1747 seq_printf(m
, " brk:%d",
1749 if (uport
->icount
.overrun
)
1750 seq_printf(m
, " oe:%d",
1751 uport
->icount
.overrun
);
1753 #define INFOBIT(bit, str) \
1754 if (uport->mctrl & (bit)) \
1755 strncat(stat_buf, (str), sizeof(stat_buf) - \
1756 strlen(stat_buf) - 2)
1757 #define STATBIT(bit, str) \
1758 if (status & (bit)) \
1759 strncat(stat_buf, (str), sizeof(stat_buf) - \
1760 strlen(stat_buf) - 2)
1764 INFOBIT(TIOCM_RTS
, "|RTS");
1765 STATBIT(TIOCM_CTS
, "|CTS");
1766 INFOBIT(TIOCM_DTR
, "|DTR");
1767 STATBIT(TIOCM_DSR
, "|DSR");
1768 STATBIT(TIOCM_CAR
, "|CD");
1769 STATBIT(TIOCM_RNG
, "|RI");
1773 seq_puts(m
, stat_buf
);
1780 static int uart_proc_show(struct seq_file
*m
, void *v
)
1782 struct tty_driver
*ttydrv
= m
->private;
1783 struct uart_driver
*drv
= ttydrv
->driver_state
;
1786 seq_printf(m
, "serinfo:1.0 driver%s%s revision:%s\n",
1788 for (i
= 0; i
< drv
->nr
; i
++)
1789 uart_line_info(m
, drv
, i
);
1793 static int uart_proc_open(struct inode
*inode
, struct file
*file
)
1795 return single_open(file
, uart_proc_show
, PDE(inode
)->data
);
1798 static const struct file_operations uart_proc_fops
= {
1799 .owner
= THIS_MODULE
,
1800 .open
= uart_proc_open
,
1802 .llseek
= seq_lseek
,
1803 .release
= single_release
,
1807 #if defined(CONFIG_SERIAL_CORE_CONSOLE) || defined(CONFIG_CONSOLE_POLL)
1809 * uart_console_write - write a console message to a serial port
1810 * @port: the port to write the message
1811 * @s: array of characters
1812 * @count: number of characters in string to write
1813 * @write: function to write character to port
1815 void uart_console_write(struct uart_port
*port
, const char *s
,
1817 void (*putchar
)(struct uart_port
*, int))
1821 for (i
= 0; i
< count
; i
++, s
++) {
1823 putchar(port
, '\r');
1827 EXPORT_SYMBOL_GPL(uart_console_write
);
1830 * Check whether an invalid uart number has been specified, and
1831 * if so, search for the first available port that does have
1834 struct uart_port
* __init
1835 uart_get_console(struct uart_port
*ports
, int nr
, struct console
*co
)
1837 int idx
= co
->index
;
1839 if (idx
< 0 || idx
>= nr
|| (ports
[idx
].iobase
== 0 &&
1840 ports
[idx
].membase
== NULL
))
1841 for (idx
= 0; idx
< nr
; idx
++)
1842 if (ports
[idx
].iobase
!= 0 ||
1843 ports
[idx
].membase
!= NULL
)
1852 * uart_parse_options - Parse serial port baud/parity/bits/flow contro.
1853 * @options: pointer to option string
1854 * @baud: pointer to an 'int' variable for the baud rate.
1855 * @parity: pointer to an 'int' variable for the parity.
1856 * @bits: pointer to an 'int' variable for the number of data bits.
1857 * @flow: pointer to an 'int' variable for the flow control character.
1859 * uart_parse_options decodes a string containing the serial console
1860 * options. The format of the string is <baud><parity><bits><flow>,
1864 uart_parse_options(char *options
, int *baud
, int *parity
, int *bits
, int *flow
)
1868 *baud
= simple_strtoul(s
, NULL
, 10);
1869 while (*s
>= '0' && *s
<= '9')
1878 EXPORT_SYMBOL_GPL(uart_parse_options
);
1885 static const struct baud_rates baud_rates
[] = {
1886 { 921600, B921600
},
1887 { 460800, B460800
},
1888 { 230400, B230400
},
1889 { 115200, B115200
},
1901 * uart_set_options - setup the serial console parameters
1902 * @port: pointer to the serial ports uart_port structure
1903 * @co: console pointer
1905 * @parity: parity character - 'n' (none), 'o' (odd), 'e' (even)
1906 * @bits: number of data bits
1907 * @flow: flow control character - 'r' (rts)
1910 uart_set_options(struct uart_port
*port
, struct console
*co
,
1911 int baud
, int parity
, int bits
, int flow
)
1913 struct ktermios termios
;
1914 static struct ktermios dummy
;
1918 * Ensure that the serial console lock is initialised
1921 spin_lock_init(&port
->lock
);
1922 lockdep_set_class(&port
->lock
, &port_lock_key
);
1924 memset(&termios
, 0, sizeof(struct ktermios
));
1926 termios
.c_cflag
= CREAD
| HUPCL
| CLOCAL
;
1929 * Construct a cflag setting.
1931 for (i
= 0; baud_rates
[i
].rate
; i
++)
1932 if (baud_rates
[i
].rate
<= baud
)
1935 termios
.c_cflag
|= baud_rates
[i
].cflag
;
1938 termios
.c_cflag
|= CS7
;
1940 termios
.c_cflag
|= CS8
;
1944 termios
.c_cflag
|= PARODD
;
1947 termios
.c_cflag
|= PARENB
;
1952 termios
.c_cflag
|= CRTSCTS
;
1955 * some uarts on other side don't support no flow control.
1956 * So we set * DTR in host uart to make them happy
1958 port
->mctrl
|= TIOCM_DTR
;
1960 port
->ops
->set_termios(port
, &termios
, &dummy
);
1962 * Allow the setting of the UART parameters with a NULL console
1966 co
->cflag
= termios
.c_cflag
;
1970 EXPORT_SYMBOL_GPL(uart_set_options
);
1971 #endif /* CONFIG_SERIAL_CORE_CONSOLE */
1973 static void uart_change_pm(struct uart_state
*state
, int pm_state
)
1975 struct uart_port
*port
= state
->uart_port
;
1977 if (state
->pm_state
!= pm_state
) {
1979 port
->ops
->pm(port
, pm_state
, state
->pm_state
);
1980 state
->pm_state
= pm_state
;
1985 struct uart_port
*port
;
1986 struct uart_driver
*driver
;
1989 static int serial_match_port(struct device
*dev
, void *data
)
1991 struct uart_match
*match
= data
;
1992 struct tty_driver
*tty_drv
= match
->driver
->tty_driver
;
1993 dev_t devt
= MKDEV(tty_drv
->major
, tty_drv
->minor_start
) +
1996 return dev
->devt
== devt
; /* Actually, only one tty per port */
1999 int uart_suspend_port(struct uart_driver
*drv
, struct uart_port
*uport
)
2001 struct uart_state
*state
= drv
->state
+ uport
->line
;
2002 struct tty_port
*port
= &state
->port
;
2003 struct device
*tty_dev
;
2004 struct uart_match match
= {uport
, drv
};
2006 mutex_lock(&port
->mutex
);
2008 if (!console_suspend_enabled
&& uart_console(uport
)) {
2009 /* we're going to avoid suspending serial console */
2010 mutex_unlock(&port
->mutex
);
2014 tty_dev
= device_find_child(uport
->dev
, &match
, serial_match_port
);
2015 if (device_may_wakeup(tty_dev
)) {
2016 enable_irq_wake(uport
->irq
);
2017 put_device(tty_dev
);
2018 mutex_unlock(&port
->mutex
);
2021 uport
->suspended
= 1;
2023 if (port
->flags
& ASYNC_INITIALIZED
) {
2024 const struct uart_ops
*ops
= uport
->ops
;
2027 set_bit(ASYNCB_SUSPENDED
, &port
->flags
);
2028 clear_bit(ASYNCB_INITIALIZED
, &port
->flags
);
2030 spin_lock_irq(&uport
->lock
);
2031 ops
->stop_tx(uport
);
2032 ops
->set_mctrl(uport
, 0);
2033 ops
->stop_rx(uport
);
2034 spin_unlock_irq(&uport
->lock
);
2037 * Wait for the transmitter to empty.
2039 for (tries
= 3; !ops
->tx_empty(uport
) && tries
; tries
--)
2042 printk(KERN_ERR
"%s%s%s%d: Unable to drain "
2044 uport
->dev
? dev_name(uport
->dev
) : "",
2045 uport
->dev
? ": " : "",
2047 drv
->tty_driver
->name_base
+ uport
->line
);
2049 ops
->shutdown(uport
);
2053 * Disable the console device before suspending.
2055 if (uart_console(uport
))
2056 console_stop(uport
->cons
);
2058 uart_change_pm(state
, 3);
2060 mutex_unlock(&port
->mutex
);
2065 int uart_resume_port(struct uart_driver
*drv
, struct uart_port
*uport
)
2067 struct uart_state
*state
= drv
->state
+ uport
->line
;
2068 struct tty_port
*port
= &state
->port
;
2069 struct device
*tty_dev
;
2070 struct uart_match match
= {uport
, drv
};
2071 struct ktermios termios
;
2073 mutex_lock(&port
->mutex
);
2075 if (!console_suspend_enabled
&& uart_console(uport
)) {
2076 /* no need to resume serial console, it wasn't suspended */
2078 * First try to use the console cflag setting.
2080 memset(&termios
, 0, sizeof(struct ktermios
));
2081 termios
.c_cflag
= uport
->cons
->cflag
;
2083 * If that's unset, use the tty termios setting.
2085 if (termios
.c_cflag
== 0)
2086 termios
= *state
->port
.tty
->termios
;
2088 termios
.c_ispeed
= termios
.c_ospeed
=
2089 tty_termios_input_baud_rate(&termios
);
2090 termios
.c_ispeed
= termios
.c_ospeed
=
2091 tty_termios_baud_rate(&termios
);
2093 uport
->ops
->set_termios(uport
, &termios
, NULL
);
2094 mutex_unlock(&port
->mutex
);
2098 tty_dev
= device_find_child(uport
->dev
, &match
, serial_match_port
);
2099 if (!uport
->suspended
&& device_may_wakeup(tty_dev
)) {
2100 disable_irq_wake(uport
->irq
);
2101 mutex_unlock(&port
->mutex
);
2104 uport
->suspended
= 0;
2107 * Re-enable the console device after suspending.
2109 if (uart_console(uport
)) {
2110 uart_change_pm(state
, 0);
2111 uport
->ops
->set_termios(uport
, &termios
, NULL
);
2112 console_start(uport
->cons
);
2115 if (port
->flags
& ASYNC_SUSPENDED
) {
2116 const struct uart_ops
*ops
= uport
->ops
;
2119 uart_change_pm(state
, 0);
2120 spin_lock_irq(&uport
->lock
);
2121 ops
->set_mctrl(uport
, 0);
2122 spin_unlock_irq(&uport
->lock
);
2123 ret
= ops
->startup(uport
);
2125 uart_change_speed(state
, NULL
);
2126 spin_lock_irq(&uport
->lock
);
2127 ops
->set_mctrl(uport
, uport
->mctrl
);
2128 ops
->start_tx(uport
);
2129 spin_unlock_irq(&uport
->lock
);
2130 set_bit(ASYNCB_INITIALIZED
, &port
->flags
);
2133 * Failed to resume - maybe hardware went away?
2134 * Clear the "initialized" flag so we won't try
2135 * to call the low level drivers shutdown method.
2137 uart_shutdown(state
);
2140 clear_bit(ASYNCB_SUSPENDED
, &port
->flags
);
2143 mutex_unlock(&port
->mutex
);
2149 uart_report_port(struct uart_driver
*drv
, struct uart_port
*port
)
2153 switch (port
->iotype
) {
2155 snprintf(address
, sizeof(address
), "I/O 0x%lx", port
->iobase
);
2158 snprintf(address
, sizeof(address
),
2159 "I/O 0x%lx offset 0x%x", port
->iobase
, port
->hub6
);
2166 snprintf(address
, sizeof(address
),
2167 "MMIO 0x%llx", (unsigned long long)port
->mapbase
);
2170 strlcpy(address
, "*unknown*", sizeof(address
));
2174 printk(KERN_INFO
"%s%s%s%d at %s (irq = %d) is a %s\n",
2175 port
->dev
? dev_name(port
->dev
) : "",
2176 port
->dev
? ": " : "",
2178 drv
->tty_driver
->name_base
+ port
->line
,
2179 address
, port
->irq
, uart_type(port
));
2183 uart_configure_port(struct uart_driver
*drv
, struct uart_state
*state
,
2184 struct uart_port
*port
)
2189 * If there isn't a port here, don't do anything further.
2191 if (!port
->iobase
&& !port
->mapbase
&& !port
->membase
)
2195 * Now do the auto configuration stuff. Note that config_port
2196 * is expected to claim the resources and map the port for us.
2199 if (port
->flags
& UPF_AUTO_IRQ
)
2200 flags
|= UART_CONFIG_IRQ
;
2201 if (port
->flags
& UPF_BOOT_AUTOCONF
) {
2202 if (!(port
->flags
& UPF_FIXED_TYPE
)) {
2203 port
->type
= PORT_UNKNOWN
;
2204 flags
|= UART_CONFIG_TYPE
;
2206 port
->ops
->config_port(port
, flags
);
2209 if (port
->type
!= PORT_UNKNOWN
) {
2210 unsigned long flags
;
2212 uart_report_port(drv
, port
);
2214 /* Power up port for set_mctrl() */
2215 uart_change_pm(state
, 0);
2218 * Ensure that the modem control lines are de-activated.
2219 * keep the DTR setting that is set in uart_set_options()
2220 * We probably don't need a spinlock around this, but
2222 spin_lock_irqsave(&port
->lock
, flags
);
2223 port
->ops
->set_mctrl(port
, port
->mctrl
& TIOCM_DTR
);
2224 spin_unlock_irqrestore(&port
->lock
, flags
);
2227 * If this driver supports console, and it hasn't been
2228 * successfully registered yet, try to re-register it.
2229 * It may be that the port was not available.
2231 if (port
->cons
&& !(port
->cons
->flags
& CON_ENABLED
))
2232 register_console(port
->cons
);
2235 * Power down all ports by default, except the
2236 * console if we have one.
2238 if (!uart_console(port
))
2239 uart_change_pm(state
, 3);
2243 #ifdef CONFIG_CONSOLE_POLL
2245 static int uart_poll_init(struct tty_driver
*driver
, int line
, char *options
)
2247 struct uart_driver
*drv
= driver
->driver_state
;
2248 struct uart_state
*state
= drv
->state
+ line
;
2249 struct uart_port
*port
;
2255 if (!state
|| !state
->uart_port
)
2258 port
= state
->uart_port
;
2259 if (!(port
->ops
->poll_get_char
&& port
->ops
->poll_put_char
))
2263 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
2264 return uart_set_options(port
, NULL
, baud
, parity
, bits
, flow
);
2270 static int uart_poll_get_char(struct tty_driver
*driver
, int line
)
2272 struct uart_driver
*drv
= driver
->driver_state
;
2273 struct uart_state
*state
= drv
->state
+ line
;
2274 struct uart_port
*port
;
2276 if (!state
|| !state
->uart_port
)
2279 port
= state
->uart_port
;
2280 return port
->ops
->poll_get_char(port
);
2283 static void uart_poll_put_char(struct tty_driver
*driver
, int line
, char ch
)
2285 struct uart_driver
*drv
= driver
->driver_state
;
2286 struct uart_state
*state
= drv
->state
+ line
;
2287 struct uart_port
*port
;
2289 if (!state
|| !state
->uart_port
)
2292 port
= state
->uart_port
;
2293 port
->ops
->poll_put_char(port
, ch
);
2297 static const struct tty_operations uart_ops
= {
2299 .close
= uart_close
,
2300 .write
= uart_write
,
2301 .put_char
= uart_put_char
,
2302 .flush_chars
= uart_flush_chars
,
2303 .write_room
= uart_write_room
,
2304 .chars_in_buffer
= uart_chars_in_buffer
,
2305 .flush_buffer
= uart_flush_buffer
,
2306 .ioctl
= uart_ioctl
,
2307 .throttle
= uart_throttle
,
2308 .unthrottle
= uart_unthrottle
,
2309 .send_xchar
= uart_send_xchar
,
2310 .set_termios
= uart_set_termios
,
2311 .set_ldisc
= uart_set_ldisc
,
2313 .start
= uart_start
,
2314 .hangup
= uart_hangup
,
2315 .break_ctl
= uart_break_ctl
,
2316 .wait_until_sent
= uart_wait_until_sent
,
2317 #ifdef CONFIG_PROC_FS
2318 .proc_fops
= &uart_proc_fops
,
2320 .tiocmget
= uart_tiocmget
,
2321 .tiocmset
= uart_tiocmset
,
2322 #ifdef CONFIG_CONSOLE_POLL
2323 .poll_init
= uart_poll_init
,
2324 .poll_get_char
= uart_poll_get_char
,
2325 .poll_put_char
= uart_poll_put_char
,
2330 * uart_register_driver - register a driver with the uart core layer
2331 * @drv: low level driver structure
2333 * Register a uart driver with the core driver. We in turn register
2334 * with the tty layer, and initialise the core driver per-port state.
2336 * We have a proc file in /proc/tty/driver which is named after the
2339 * drv->port should be NULL, and the per-port structures should be
2340 * registered using uart_add_one_port after this call has succeeded.
2342 int uart_register_driver(struct uart_driver
*drv
)
2344 struct tty_driver
*normal
= NULL
;
2350 * Maybe we should be using a slab cache for this, especially if
2351 * we have a large number of ports to handle.
2353 drv
->state
= kzalloc(sizeof(struct uart_state
) * drv
->nr
, GFP_KERNEL
);
2358 normal
= alloc_tty_driver(drv
->nr
);
2362 drv
->tty_driver
= normal
;
2364 normal
->owner
= drv
->owner
;
2365 normal
->driver_name
= drv
->driver_name
;
2366 normal
->name
= drv
->dev_name
;
2367 normal
->major
= drv
->major
;
2368 normal
->minor_start
= drv
->minor
;
2369 normal
->type
= TTY_DRIVER_TYPE_SERIAL
;
2370 normal
->subtype
= SERIAL_TYPE_NORMAL
;
2371 normal
->init_termios
= tty_std_termios
;
2372 normal
->init_termios
.c_cflag
= B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
2373 normal
->init_termios
.c_ispeed
= normal
->init_termios
.c_ospeed
= 9600;
2374 normal
->flags
= TTY_DRIVER_REAL_RAW
| TTY_DRIVER_DYNAMIC_DEV
;
2375 normal
->driver_state
= drv
;
2376 tty_set_operations(normal
, &uart_ops
);
2379 * Initialise the UART state(s).
2381 for (i
= 0; i
< drv
->nr
; i
++) {
2382 struct uart_state
*state
= drv
->state
+ i
;
2383 struct tty_port
*port
= &state
->port
;
2385 tty_port_init(port
);
2386 port
->close_delay
= 500; /* .5 seconds */
2387 port
->closing_wait
= 30000; /* 30 seconds */
2388 tasklet_init(&state
->tlet
, uart_tasklet_action
,
2389 (unsigned long)state
);
2392 retval
= tty_register_driver(normal
);
2395 put_tty_driver(normal
);
2402 * uart_unregister_driver - remove a driver from the uart core layer
2403 * @drv: low level driver structure
2405 * Remove all references to a driver from the core driver. The low
2406 * level driver must have removed all its ports via the
2407 * uart_remove_one_port() if it registered them with uart_add_one_port().
2408 * (ie, drv->port == NULL)
2410 void uart_unregister_driver(struct uart_driver
*drv
)
2412 struct tty_driver
*p
= drv
->tty_driver
;
2413 tty_unregister_driver(p
);
2416 drv
->tty_driver
= NULL
;
2419 struct tty_driver
*uart_console_device(struct console
*co
, int *index
)
2421 struct uart_driver
*p
= co
->data
;
2423 return p
->tty_driver
;
2427 * uart_add_one_port - attach a driver-defined port structure
2428 * @drv: pointer to the uart low level driver structure for this port
2429 * @uport: uart port structure to use for this port.
2431 * This allows the driver to register its own uart_port structure
2432 * with the core driver. The main purpose is to allow the low
2433 * level uart drivers to expand uart_port, rather than having yet
2434 * more levels of structures.
2436 int uart_add_one_port(struct uart_driver
*drv
, struct uart_port
*uport
)
2438 struct uart_state
*state
;
2439 struct tty_port
*port
;
2441 struct device
*tty_dev
;
2443 BUG_ON(in_interrupt());
2445 if (uport
->line
>= drv
->nr
)
2448 state
= drv
->state
+ uport
->line
;
2449 port
= &state
->port
;
2451 mutex_lock(&port_mutex
);
2452 mutex_lock(&port
->mutex
);
2453 if (state
->uart_port
) {
2458 state
->uart_port
= uport
;
2459 state
->pm_state
= -1;
2461 uport
->cons
= drv
->cons
;
2462 uport
->state
= state
;
2465 * If this port is a console, then the spinlock is already
2468 if (!(uart_console(uport
) && (uport
->cons
->flags
& CON_ENABLED
))) {
2469 spin_lock_init(&uport
->lock
);
2470 lockdep_set_class(&uport
->lock
, &port_lock_key
);
2473 uart_configure_port(drv
, state
, uport
);
2476 * Register the port whether it's detected or not. This allows
2477 * setserial to be used to alter this ports parameters.
2479 tty_dev
= tty_register_device(drv
->tty_driver
, uport
->line
, uport
->dev
);
2480 if (likely(!IS_ERR(tty_dev
))) {
2481 device_init_wakeup(tty_dev
, 1);
2482 device_set_wakeup_enable(tty_dev
, 0);
2484 printk(KERN_ERR
"Cannot register tty device on line %d\n",
2488 * Ensure UPF_DEAD is not set.
2490 uport
->flags
&= ~UPF_DEAD
;
2493 mutex_unlock(&port
->mutex
);
2494 mutex_unlock(&port_mutex
);
2500 * uart_remove_one_port - detach a driver defined port structure
2501 * @drv: pointer to the uart low level driver structure for this port
2502 * @uport: uart port structure for this port
2504 * This unhooks (and hangs up) the specified port structure from the
2505 * core driver. No further calls will be made to the low-level code
2508 int uart_remove_one_port(struct uart_driver
*drv
, struct uart_port
*uport
)
2510 struct uart_state
*state
= drv
->state
+ uport
->line
;
2511 struct tty_port
*port
= &state
->port
;
2513 BUG_ON(in_interrupt());
2515 if (state
->uart_port
!= uport
)
2516 printk(KERN_ALERT
"Removing wrong port: %p != %p\n",
2517 state
->uart_port
, uport
);
2519 mutex_lock(&port_mutex
);
2522 * Mark the port "dead" - this prevents any opens from
2523 * succeeding while we shut down the port.
2525 mutex_lock(&port
->mutex
);
2526 uport
->flags
|= UPF_DEAD
;
2527 mutex_unlock(&port
->mutex
);
2530 * Remove the devices from the tty layer
2532 tty_unregister_device(drv
->tty_driver
, uport
->line
);
2535 tty_vhangup(port
->tty
);
2538 * Free the port IO and memory resources, if any.
2540 if (uport
->type
!= PORT_UNKNOWN
)
2541 uport
->ops
->release_port(uport
);
2544 * Indicate that there isn't a port here anymore.
2546 uport
->type
= PORT_UNKNOWN
;
2549 * Kill the tasklet, and free resources.
2551 tasklet_kill(&state
->tlet
);
2553 state
->uart_port
= NULL
;
2554 mutex_unlock(&port_mutex
);
2560 * Are the two ports equivalent?
2562 int uart_match_port(struct uart_port
*port1
, struct uart_port
*port2
)
2564 if (port1
->iotype
!= port2
->iotype
)
2567 switch (port1
->iotype
) {
2569 return (port1
->iobase
== port2
->iobase
);
2571 return (port1
->iobase
== port2
->iobase
) &&
2572 (port1
->hub6
== port2
->hub6
);
2578 return (port1
->mapbase
== port2
->mapbase
);
2582 EXPORT_SYMBOL(uart_match_port
);
2584 EXPORT_SYMBOL(uart_write_wakeup
);
2585 EXPORT_SYMBOL(uart_register_driver
);
2586 EXPORT_SYMBOL(uart_unregister_driver
);
2587 EXPORT_SYMBOL(uart_suspend_port
);
2588 EXPORT_SYMBOL(uart_resume_port
);
2589 EXPORT_SYMBOL(uart_add_one_port
);
2590 EXPORT_SYMBOL(uart_remove_one_port
);
2592 MODULE_DESCRIPTION("Serial driver core");
2593 MODULE_LICENSE("GPL");