2 * Driver core for serial ports
4 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
6 * Copyright 1999 ARM Limited
7 * Copyright (C) 2000-2001 Deep Blue Solutions Ltd.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/module.h>
24 #include <linux/tty.h>
25 #include <linux/tty_flip.h>
26 #include <linux/slab.h>
27 #include <linux/init.h>
28 #include <linux/console.h>
29 #include <linux/proc_fs.h>
30 #include <linux/seq_file.h>
31 #include <linux/device.h>
32 #include <linux/serial.h> /* for serial_state and serial_icounter_struct */
33 #include <linux/serial_core.h>
34 #include <linux/delay.h>
35 #include <linux/mutex.h>
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 static void uart_change_speed(struct tty_struct
*tty
, struct uart_state
*state
,
54 struct ktermios
*old_termios
);
55 static void uart_wait_until_sent(struct tty_struct
*tty
, int timeout
);
56 static void uart_change_pm(struct uart_state
*state
,
57 enum uart_pm_state pm_state
);
59 static void uart_port_shutdown(struct tty_port
*port
);
62 * This routine is used by the interrupt handler to schedule processing in
63 * the software interrupt portion of the driver.
65 void uart_write_wakeup(struct uart_port
*port
)
67 struct uart_state
*state
= port
->state
;
69 * This means you called this function _after_ the port was
70 * closed. No cookie for you.
73 tty_wakeup(state
->port
.tty
);
76 static void uart_stop(struct tty_struct
*tty
)
78 struct uart_state
*state
= tty
->driver_data
;
79 struct uart_port
*port
= state
->uart_port
;
82 spin_lock_irqsave(&port
->lock
, flags
);
83 port
->ops
->stop_tx(port
);
84 spin_unlock_irqrestore(&port
->lock
, flags
);
87 static void __uart_start(struct tty_struct
*tty
)
89 struct uart_state
*state
= tty
->driver_data
;
90 struct uart_port
*port
= state
->uart_port
;
92 if (!uart_circ_empty(&state
->xmit
) && state
->xmit
.buf
&&
93 !tty
->stopped
&& !tty
->hw_stopped
)
94 port
->ops
->start_tx(port
);
97 static void uart_start(struct tty_struct
*tty
)
99 struct uart_state
*state
= tty
->driver_data
;
100 struct uart_port
*port
= state
->uart_port
;
103 spin_lock_irqsave(&port
->lock
, flags
);
105 spin_unlock_irqrestore(&port
->lock
, flags
);
109 uart_update_mctrl(struct uart_port
*port
, unsigned int set
, unsigned int clear
)
114 spin_lock_irqsave(&port
->lock
, flags
);
116 port
->mctrl
= (old
& ~clear
) | set
;
117 if (old
!= port
->mctrl
)
118 port
->ops
->set_mctrl(port
, port
->mctrl
);
119 spin_unlock_irqrestore(&port
->lock
, flags
);
122 #define uart_set_mctrl(port, set) uart_update_mctrl(port, set, 0)
123 #define uart_clear_mctrl(port, clear) uart_update_mctrl(port, 0, clear)
126 * Startup the port. This will be called once per open. All calls
127 * will be serialised by the per-port mutex.
129 static int uart_port_startup(struct tty_struct
*tty
, struct uart_state
*state
,
132 struct uart_port
*uport
= state
->uart_port
;
133 struct tty_port
*port
= &state
->port
;
137 if (uport
->type
== PORT_UNKNOWN
)
141 * Initialise and allocate the transmit and temporary
144 if (!state
->xmit
.buf
) {
145 /* This is protected by the per port mutex */
146 page
= get_zeroed_page(GFP_KERNEL
);
150 state
->xmit
.buf
= (unsigned char *) page
;
151 uart_circ_clear(&state
->xmit
);
154 retval
= uport
->ops
->startup(uport
);
156 if (uart_console(uport
) && uport
->cons
->cflag
) {
157 tty
->termios
.c_cflag
= uport
->cons
->cflag
;
158 uport
->cons
->cflag
= 0;
161 * Initialise the hardware port settings.
163 uart_change_speed(tty
, state
, NULL
);
167 * Setup the RTS and DTR signals once the
168 * port is open and ready to respond.
170 if (tty
->termios
.c_cflag
& CBAUD
)
171 uart_set_mctrl(uport
, TIOCM_RTS
| TIOCM_DTR
);
174 if (tty_port_cts_enabled(port
)) {
175 spin_lock_irq(&uport
->lock
);
176 if (!(uport
->ops
->get_mctrl(uport
) & TIOCM_CTS
))
178 spin_unlock_irq(&uport
->lock
);
183 * This is to allow setserial on this port. People may want to set
184 * port/irq/type and then reconfigure the port properly if it failed
187 if (retval
&& capable(CAP_SYS_ADMIN
))
193 static int uart_startup(struct tty_struct
*tty
, struct uart_state
*state
,
196 struct tty_port
*port
= &state
->port
;
199 if (port
->flags
& ASYNC_INITIALIZED
)
203 * Set the TTY IO error marker - we will only clear this
204 * once we have successfully opened the port.
206 set_bit(TTY_IO_ERROR
, &tty
->flags
);
208 retval
= uart_port_startup(tty
, state
, init_hw
);
210 set_bit(ASYNCB_INITIALIZED
, &port
->flags
);
211 clear_bit(TTY_IO_ERROR
, &tty
->flags
);
212 } else if (retval
> 0)
219 * This routine will shutdown a serial port; interrupts are disabled, and
220 * DTR is dropped if the hangup on close termio flag is on. Calls to
221 * uart_shutdown are serialised by the per-port semaphore.
223 static void uart_shutdown(struct tty_struct
*tty
, struct uart_state
*state
)
225 struct uart_port
*uport
= state
->uart_port
;
226 struct tty_port
*port
= &state
->port
;
229 * Set the TTY IO error marker
232 set_bit(TTY_IO_ERROR
, &tty
->flags
);
234 if (test_and_clear_bit(ASYNCB_INITIALIZED
, &port
->flags
)) {
236 * Turn off DTR and RTS early.
238 if (!tty
|| (tty
->termios
.c_cflag
& HUPCL
))
239 uart_clear_mctrl(uport
, TIOCM_DTR
| TIOCM_RTS
);
241 uart_port_shutdown(port
);
245 * It's possible for shutdown to be called after suspend if we get
246 * a DCD drop (hangup) at just the right time. Clear suspended bit so
247 * we don't try to resume a port that has been shutdown.
249 clear_bit(ASYNCB_SUSPENDED
, &port
->flags
);
252 * Free the transmit buffer page.
254 if (state
->xmit
.buf
) {
255 free_page((unsigned long)state
->xmit
.buf
);
256 state
->xmit
.buf
= NULL
;
261 * uart_update_timeout - update per-port FIFO timeout.
262 * @port: uart_port structure describing the port
263 * @cflag: termios cflag value
264 * @baud: speed of the port
266 * Set the port FIFO timeout value. The @cflag value should
267 * reflect the actual hardware settings.
270 uart_update_timeout(struct uart_port
*port
, unsigned int cflag
,
275 /* byte size and parity */
276 switch (cflag
& CSIZE
) {
297 * The total number of bits to be transmitted in the fifo.
299 bits
= bits
* port
->fifosize
;
302 * Figure the timeout to send the above number of bits.
303 * Add .02 seconds of slop
305 port
->timeout
= (HZ
* bits
) / baud
+ HZ
/50;
308 EXPORT_SYMBOL(uart_update_timeout
);
311 * uart_get_baud_rate - return baud rate for a particular port
312 * @port: uart_port structure describing the port in question.
313 * @termios: desired termios settings.
314 * @old: old termios (or NULL)
315 * @min: minimum acceptable baud rate
316 * @max: maximum acceptable baud rate
318 * Decode the termios structure into a numeric baud rate,
319 * taking account of the magic 38400 baud rate (with spd_*
320 * flags), and mapping the %B0 rate to 9600 baud.
322 * If the new baud rate is invalid, try the old termios setting.
323 * If it's still invalid, we try 9600 baud.
325 * Update the @termios structure to reflect the baud rate
326 * we're actually going to be using. Don't do this for the case
327 * where B0 is requested ("hang up").
330 uart_get_baud_rate(struct uart_port
*port
, struct ktermios
*termios
,
331 struct ktermios
*old
, unsigned int min
, unsigned int max
)
333 unsigned int try, baud
, altbaud
= 38400;
335 upf_t flags
= port
->flags
& UPF_SPD_MASK
;
337 if (flags
== UPF_SPD_HI
)
339 else if (flags
== UPF_SPD_VHI
)
341 else if (flags
== UPF_SPD_SHI
)
343 else if (flags
== UPF_SPD_WARP
)
346 for (try = 0; try < 2; try++) {
347 baud
= tty_termios_baud_rate(termios
);
350 * The spd_hi, spd_vhi, spd_shi, spd_warp kludge...
357 * Special case: B0 rate.
364 if (baud
>= min
&& baud
<= max
)
368 * Oops, the quotient was zero. Try again with
369 * the old baud rate if possible.
371 termios
->c_cflag
&= ~CBAUD
;
373 baud
= tty_termios_baud_rate(old
);
375 tty_termios_encode_baud_rate(termios
,
382 * As a last resort, if the range cannot be met then clip to
383 * the nearest chip supported rate.
387 tty_termios_encode_baud_rate(termios
,
390 tty_termios_encode_baud_rate(termios
,
394 /* Should never happen */
399 EXPORT_SYMBOL(uart_get_baud_rate
);
402 * uart_get_divisor - return uart clock divisor
403 * @port: uart_port structure describing the port.
404 * @baud: desired baud rate
406 * Calculate the uart clock divisor for the port.
409 uart_get_divisor(struct uart_port
*port
, unsigned int baud
)
414 * Old custom speed handling.
416 if (baud
== 38400 && (port
->flags
& UPF_SPD_MASK
) == UPF_SPD_CUST
)
417 quot
= port
->custom_divisor
;
419 quot
= DIV_ROUND_CLOSEST(port
->uartclk
, 16 * baud
);
424 EXPORT_SYMBOL(uart_get_divisor
);
426 /* FIXME: Consistent locking policy */
427 static void uart_change_speed(struct tty_struct
*tty
, struct uart_state
*state
,
428 struct ktermios
*old_termios
)
430 struct tty_port
*port
= &state
->port
;
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
|| 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
);
459 static inline int __uart_put_char(struct uart_port
*port
,
460 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
)
490 static int uart_write(struct tty_struct
*tty
,
491 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
;
608 struct uart_port
*port
= state
->uart_port
;
612 mask
|= UPF_SOFT_FLOW
;
613 if (tty
->termios
.c_cflag
& CRTSCTS
)
614 mask
|= UPF_HARD_FLOW
;
616 if (port
->flags
& mask
) {
617 port
->ops
->throttle(port
);
618 mask
&= ~port
->flags
;
621 if (mask
& UPF_SOFT_FLOW
)
622 uart_send_xchar(tty
, STOP_CHAR(tty
));
624 if (mask
& UPF_HARD_FLOW
)
625 uart_clear_mctrl(port
, TIOCM_RTS
);
628 static void uart_unthrottle(struct tty_struct
*tty
)
630 struct uart_state
*state
= tty
->driver_data
;
631 struct uart_port
*port
= state
->uart_port
;
635 mask
|= UPF_SOFT_FLOW
;
636 if (tty
->termios
.c_cflag
& CRTSCTS
)
637 mask
|= UPF_HARD_FLOW
;
639 if (port
->flags
& mask
) {
640 port
->ops
->unthrottle(port
);
641 mask
&= ~port
->flags
;
644 if (mask
& UPF_SOFT_FLOW
) {
648 uart_send_xchar(tty
, START_CHAR(tty
));
651 if (mask
& UPF_HARD_FLOW
)
652 uart_set_mctrl(port
, TIOCM_RTS
);
655 static void do_uart_get_info(struct tty_port
*port
,
656 struct serial_struct
*retinfo
)
658 struct uart_state
*state
= container_of(port
, struct uart_state
, port
);
659 struct uart_port
*uport
= state
->uart_port
;
661 memset(retinfo
, 0, sizeof(*retinfo
));
663 retinfo
->type
= uport
->type
;
664 retinfo
->line
= uport
->line
;
665 retinfo
->port
= uport
->iobase
;
666 if (HIGH_BITS_OFFSET
)
667 retinfo
->port_high
= (long) uport
->iobase
>> HIGH_BITS_OFFSET
;
668 retinfo
->irq
= uport
->irq
;
669 retinfo
->flags
= uport
->flags
;
670 retinfo
->xmit_fifo_size
= uport
->fifosize
;
671 retinfo
->baud_base
= uport
->uartclk
/ 16;
672 retinfo
->close_delay
= jiffies_to_msecs(port
->close_delay
) / 10;
673 retinfo
->closing_wait
= port
->closing_wait
== ASYNC_CLOSING_WAIT_NONE
?
674 ASYNC_CLOSING_WAIT_NONE
:
675 jiffies_to_msecs(port
->closing_wait
) / 10;
676 retinfo
->custom_divisor
= uport
->custom_divisor
;
677 retinfo
->hub6
= uport
->hub6
;
678 retinfo
->io_type
= uport
->iotype
;
679 retinfo
->iomem_reg_shift
= uport
->regshift
;
680 retinfo
->iomem_base
= (void *)(unsigned long)uport
->mapbase
;
683 static void uart_get_info(struct tty_port
*port
,
684 struct serial_struct
*retinfo
)
686 /* Ensure the state we copy is consistent and no hardware changes
688 mutex_lock(&port
->mutex
);
689 do_uart_get_info(port
, retinfo
);
690 mutex_unlock(&port
->mutex
);
693 static int uart_get_info_user(struct tty_port
*port
,
694 struct serial_struct __user
*retinfo
)
696 struct serial_struct tmp
;
697 uart_get_info(port
, &tmp
);
699 if (copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)))
704 static int uart_set_info(struct tty_struct
*tty
, struct tty_port
*port
,
705 struct uart_state
*state
,
706 struct serial_struct
*new_info
)
708 struct uart_port
*uport
= state
->uart_port
;
709 unsigned long new_port
;
710 unsigned int change_irq
, change_port
, closing_wait
;
711 unsigned int old_custom_divisor
, close_delay
;
712 upf_t old_flags
, new_flags
;
715 new_port
= new_info
->port
;
716 if (HIGH_BITS_OFFSET
)
717 new_port
+= (unsigned long) new_info
->port_high
<< HIGH_BITS_OFFSET
;
719 new_info
->irq
= irq_canonicalize(new_info
->irq
);
720 close_delay
= msecs_to_jiffies(new_info
->close_delay
* 10);
721 closing_wait
= new_info
->closing_wait
== ASYNC_CLOSING_WAIT_NONE
?
722 ASYNC_CLOSING_WAIT_NONE
:
723 msecs_to_jiffies(new_info
->closing_wait
* 10);
726 change_irq
= !(uport
->flags
& UPF_FIXED_PORT
)
727 && new_info
->irq
!= uport
->irq
;
730 * Since changing the 'type' of the port changes its resource
731 * allocations, we should treat type changes the same as
734 change_port
= !(uport
->flags
& UPF_FIXED_PORT
)
735 && (new_port
!= uport
->iobase
||
736 (unsigned long)new_info
->iomem_base
!= uport
->mapbase
||
737 new_info
->hub6
!= uport
->hub6
||
738 new_info
->io_type
!= uport
->iotype
||
739 new_info
->iomem_reg_shift
!= uport
->regshift
||
740 new_info
->type
!= uport
->type
);
742 old_flags
= uport
->flags
;
743 new_flags
= new_info
->flags
;
744 old_custom_divisor
= uport
->custom_divisor
;
746 if (!capable(CAP_SYS_ADMIN
)) {
748 if (change_irq
|| change_port
||
749 (new_info
->baud_base
!= uport
->uartclk
/ 16) ||
750 (close_delay
!= port
->close_delay
) ||
751 (closing_wait
!= port
->closing_wait
) ||
752 (new_info
->xmit_fifo_size
&&
753 new_info
->xmit_fifo_size
!= uport
->fifosize
) ||
754 (((new_flags
^ old_flags
) & ~UPF_USR_MASK
) != 0))
756 uport
->flags
= ((uport
->flags
& ~UPF_USR_MASK
) |
757 (new_flags
& UPF_USR_MASK
));
758 uport
->custom_divisor
= new_info
->custom_divisor
;
763 * Ask the low level driver to verify the settings.
765 if (uport
->ops
->verify_port
)
766 retval
= uport
->ops
->verify_port(uport
, new_info
);
768 if ((new_info
->irq
>= nr_irqs
) || (new_info
->irq
< 0) ||
769 (new_info
->baud_base
< 9600))
775 if (change_port
|| change_irq
) {
779 * Make sure that we are the sole user of this port.
781 if (tty_port_users(port
) > 1)
785 * We need to shutdown the serial port at the old
786 * port/type/irq combination.
788 uart_shutdown(tty
, state
);
792 unsigned long old_iobase
, old_mapbase
;
793 unsigned int old_type
, old_iotype
, old_hub6
, old_shift
;
795 old_iobase
= uport
->iobase
;
796 old_mapbase
= uport
->mapbase
;
797 old_type
= uport
->type
;
798 old_hub6
= uport
->hub6
;
799 old_iotype
= uport
->iotype
;
800 old_shift
= uport
->regshift
;
803 * Free and release old regions
805 if (old_type
!= PORT_UNKNOWN
)
806 uport
->ops
->release_port(uport
);
808 uport
->iobase
= new_port
;
809 uport
->type
= new_info
->type
;
810 uport
->hub6
= new_info
->hub6
;
811 uport
->iotype
= new_info
->io_type
;
812 uport
->regshift
= new_info
->iomem_reg_shift
;
813 uport
->mapbase
= (unsigned long)new_info
->iomem_base
;
816 * Claim and map the new regions
818 if (uport
->type
!= PORT_UNKNOWN
) {
819 retval
= uport
->ops
->request_port(uport
);
821 /* Always success - Jean II */
826 * If we fail to request resources for the
827 * new port, try to restore the old settings.
829 if (retval
&& old_type
!= PORT_UNKNOWN
) {
830 uport
->iobase
= old_iobase
;
831 uport
->type
= old_type
;
832 uport
->hub6
= old_hub6
;
833 uport
->iotype
= old_iotype
;
834 uport
->regshift
= old_shift
;
835 uport
->mapbase
= old_mapbase
;
836 retval
= uport
->ops
->request_port(uport
);
838 * If we failed to restore the old settings,
842 uport
->type
= PORT_UNKNOWN
;
848 /* Added to return the correct error -Ram Gupta */
854 uport
->irq
= new_info
->irq
;
855 if (!(uport
->flags
& UPF_FIXED_PORT
))
856 uport
->uartclk
= new_info
->baud_base
* 16;
857 uport
->flags
= (uport
->flags
& ~UPF_CHANGE_MASK
) |
858 (new_flags
& UPF_CHANGE_MASK
);
859 uport
->custom_divisor
= new_info
->custom_divisor
;
860 port
->close_delay
= close_delay
;
861 port
->closing_wait
= closing_wait
;
862 if (new_info
->xmit_fifo_size
)
863 uport
->fifosize
= new_info
->xmit_fifo_size
;
864 port
->low_latency
= (uport
->flags
& UPF_LOW_LATENCY
) ? 1 : 0;
868 if (uport
->type
== PORT_UNKNOWN
)
870 if (port
->flags
& ASYNC_INITIALIZED
) {
871 if (((old_flags
^ uport
->flags
) & UPF_SPD_MASK
) ||
872 old_custom_divisor
!= uport
->custom_divisor
) {
874 * If they're setting up a custom divisor or speed,
875 * instead of clearing it, then bitch about it. No
876 * need to rate-limit; it's CAP_SYS_ADMIN only.
878 if (uport
->flags
& UPF_SPD_MASK
) {
881 "%s sets custom speed on %s. This "
882 "is deprecated.\n", current
->comm
,
883 tty_name(port
->tty
, buf
));
885 uart_change_speed(tty
, state
, NULL
);
888 retval
= uart_startup(tty
, state
, 1);
893 static int uart_set_info_user(struct tty_struct
*tty
, struct uart_state
*state
,
894 struct serial_struct __user
*newinfo
)
896 struct serial_struct new_serial
;
897 struct tty_port
*port
= &state
->port
;
900 if (copy_from_user(&new_serial
, newinfo
, sizeof(new_serial
)))
904 * This semaphore protects port->count. It is also
905 * very useful to prevent opens. Also, take the
906 * port configuration semaphore to make sure that a
907 * module insertion/removal doesn't change anything
910 mutex_lock(&port
->mutex
);
911 retval
= uart_set_info(tty
, port
, state
, &new_serial
);
912 mutex_unlock(&port
->mutex
);
917 * uart_get_lsr_info - get line status register info
918 * @tty: tty associated with the UART
919 * @state: UART being queried
920 * @value: returned modem value
922 * Note: uart_ioctl protects us against hangups.
924 static int uart_get_lsr_info(struct tty_struct
*tty
,
925 struct uart_state
*state
, unsigned int __user
*value
)
927 struct uart_port
*uport
= state
->uart_port
;
930 result
= uport
->ops
->tx_empty(uport
);
933 * If we're about to load something into the transmit
934 * register, we'll pretend the transmitter isn't empty to
935 * avoid a race condition (depending on when the transmit
936 * interrupt happens).
939 ((uart_circ_chars_pending(&state
->xmit
) > 0) &&
940 !tty
->stopped
&& !tty
->hw_stopped
))
941 result
&= ~TIOCSER_TEMT
;
943 return put_user(result
, value
);
946 static int uart_tiocmget(struct tty_struct
*tty
)
948 struct uart_state
*state
= tty
->driver_data
;
949 struct tty_port
*port
= &state
->port
;
950 struct uart_port
*uport
= state
->uart_port
;
953 mutex_lock(&port
->mutex
);
954 if (!(tty
->flags
& (1 << TTY_IO_ERROR
))) {
955 result
= uport
->mctrl
;
956 spin_lock_irq(&uport
->lock
);
957 result
|= uport
->ops
->get_mctrl(uport
);
958 spin_unlock_irq(&uport
->lock
);
960 mutex_unlock(&port
->mutex
);
966 uart_tiocmset(struct tty_struct
*tty
, unsigned int set
, unsigned int clear
)
968 struct uart_state
*state
= tty
->driver_data
;
969 struct uart_port
*uport
= state
->uart_port
;
970 struct tty_port
*port
= &state
->port
;
973 mutex_lock(&port
->mutex
);
974 if (!(tty
->flags
& (1 << TTY_IO_ERROR
))) {
975 uart_update_mctrl(uport
, set
, clear
);
978 mutex_unlock(&port
->mutex
);
982 static int uart_break_ctl(struct tty_struct
*tty
, int break_state
)
984 struct uart_state
*state
= tty
->driver_data
;
985 struct tty_port
*port
= &state
->port
;
986 struct uart_port
*uport
= state
->uart_port
;
988 mutex_lock(&port
->mutex
);
990 if (uport
->type
!= PORT_UNKNOWN
)
991 uport
->ops
->break_ctl(uport
, break_state
);
993 mutex_unlock(&port
->mutex
);
997 static int uart_do_autoconfig(struct tty_struct
*tty
,struct uart_state
*state
)
999 struct uart_port
*uport
= state
->uart_port
;
1000 struct tty_port
*port
= &state
->port
;
1003 if (!capable(CAP_SYS_ADMIN
))
1007 * Take the per-port semaphore. This prevents count from
1008 * changing, and hence any extra opens of the port while
1009 * we're auto-configuring.
1011 if (mutex_lock_interruptible(&port
->mutex
))
1012 return -ERESTARTSYS
;
1015 if (tty_port_users(port
) == 1) {
1016 uart_shutdown(tty
, state
);
1019 * If we already have a port type configured,
1020 * we must release its resources.
1022 if (uport
->type
!= PORT_UNKNOWN
)
1023 uport
->ops
->release_port(uport
);
1025 flags
= UART_CONFIG_TYPE
;
1026 if (uport
->flags
& UPF_AUTO_IRQ
)
1027 flags
|= UART_CONFIG_IRQ
;
1030 * This will claim the ports resources if
1033 uport
->ops
->config_port(uport
, flags
);
1035 ret
= uart_startup(tty
, state
, 1);
1037 mutex_unlock(&port
->mutex
);
1042 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1043 * - mask passed in arg for lines of interest
1044 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1045 * Caller should use TIOCGICOUNT to see which one it was
1047 * FIXME: This wants extracting into a common all driver implementation
1048 * of TIOCMWAIT using tty_port.
1051 uart_wait_modem_status(struct uart_state
*state
, unsigned long arg
)
1053 struct uart_port
*uport
= state
->uart_port
;
1054 struct tty_port
*port
= &state
->port
;
1055 DECLARE_WAITQUEUE(wait
, current
);
1056 struct uart_icount cprev
, cnow
;
1060 * note the counters on entry
1062 spin_lock_irq(&uport
->lock
);
1063 memcpy(&cprev
, &uport
->icount
, sizeof(struct uart_icount
));
1066 * Force modem status interrupts on
1068 uport
->ops
->enable_ms(uport
);
1069 spin_unlock_irq(&uport
->lock
);
1071 add_wait_queue(&port
->delta_msr_wait
, &wait
);
1073 spin_lock_irq(&uport
->lock
);
1074 memcpy(&cnow
, &uport
->icount
, sizeof(struct uart_icount
));
1075 spin_unlock_irq(&uport
->lock
);
1077 set_current_state(TASK_INTERRUPTIBLE
);
1079 if (((arg
& TIOCM_RNG
) && (cnow
.rng
!= cprev
.rng
)) ||
1080 ((arg
& TIOCM_DSR
) && (cnow
.dsr
!= cprev
.dsr
)) ||
1081 ((arg
& TIOCM_CD
) && (cnow
.dcd
!= cprev
.dcd
)) ||
1082 ((arg
& TIOCM_CTS
) && (cnow
.cts
!= cprev
.cts
))) {
1089 /* see if a signal did it */
1090 if (signal_pending(current
)) {
1098 current
->state
= TASK_RUNNING
;
1099 remove_wait_queue(&port
->delta_msr_wait
, &wait
);
1105 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1106 * Return: write counters to the user passed counter struct
1107 * NB: both 1->0 and 0->1 transitions are counted except for
1108 * RI where only 0->1 is counted.
1110 static int uart_get_icount(struct tty_struct
*tty
,
1111 struct serial_icounter_struct
*icount
)
1113 struct uart_state
*state
= tty
->driver_data
;
1114 struct uart_icount cnow
;
1115 struct uart_port
*uport
= state
->uart_port
;
1117 spin_lock_irq(&uport
->lock
);
1118 memcpy(&cnow
, &uport
->icount
, sizeof(struct uart_icount
));
1119 spin_unlock_irq(&uport
->lock
);
1121 icount
->cts
= cnow
.cts
;
1122 icount
->dsr
= cnow
.dsr
;
1123 icount
->rng
= cnow
.rng
;
1124 icount
->dcd
= cnow
.dcd
;
1125 icount
->rx
= cnow
.rx
;
1126 icount
->tx
= cnow
.tx
;
1127 icount
->frame
= cnow
.frame
;
1128 icount
->overrun
= cnow
.overrun
;
1129 icount
->parity
= cnow
.parity
;
1130 icount
->brk
= cnow
.brk
;
1131 icount
->buf_overrun
= cnow
.buf_overrun
;
1137 * Called via sys_ioctl. We can use spin_lock_irq() here.
1140 uart_ioctl(struct tty_struct
*tty
, unsigned int cmd
,
1143 struct uart_state
*state
= tty
->driver_data
;
1144 struct tty_port
*port
= &state
->port
;
1145 void __user
*uarg
= (void __user
*)arg
;
1146 int ret
= -ENOIOCTLCMD
;
1150 * These ioctls don't rely on the hardware to be present.
1154 ret
= uart_get_info_user(port
, uarg
);
1158 ret
= uart_set_info_user(tty
, state
, uarg
);
1162 ret
= uart_do_autoconfig(tty
, state
);
1165 case TIOCSERGWILD
: /* obsolete */
1166 case TIOCSERSWILD
: /* obsolete */
1171 if (ret
!= -ENOIOCTLCMD
)
1174 if (tty
->flags
& (1 << TTY_IO_ERROR
)) {
1180 * The following should only be used when hardware is present.
1184 ret
= uart_wait_modem_status(state
, arg
);
1188 if (ret
!= -ENOIOCTLCMD
)
1191 mutex_lock(&port
->mutex
);
1193 if (tty
->flags
& (1 << TTY_IO_ERROR
)) {
1199 * All these rely on hardware being present and need to be
1200 * protected against the tty being hung up.
1203 case TIOCSERGETLSR
: /* Get line status register */
1204 ret
= uart_get_lsr_info(tty
, state
, uarg
);
1208 struct uart_port
*uport
= state
->uart_port
;
1209 if (uport
->ops
->ioctl
)
1210 ret
= uport
->ops
->ioctl(uport
, cmd
, arg
);
1215 mutex_unlock(&port
->mutex
);
1220 static void uart_set_ldisc(struct tty_struct
*tty
)
1222 struct uart_state
*state
= tty
->driver_data
;
1223 struct uart_port
*uport
= state
->uart_port
;
1225 if (uport
->ops
->set_ldisc
)
1226 uport
->ops
->set_ldisc(uport
, tty
->termios
.c_line
);
1229 static void uart_set_termios(struct tty_struct
*tty
,
1230 struct ktermios
*old_termios
)
1232 struct uart_state
*state
= tty
->driver_data
;
1233 struct uart_port
*uport
= state
->uart_port
;
1234 unsigned long flags
;
1235 unsigned int cflag
= tty
->termios
.c_cflag
;
1236 unsigned int iflag_mask
= IGNBRK
|BRKINT
|IGNPAR
|PARMRK
|INPCK
;
1237 bool sw_changed
= false;
1240 * Drivers doing software flow control also need to know
1241 * about changes to these input settings.
1243 if (uport
->flags
& UPF_SOFT_FLOW
) {
1244 iflag_mask
|= IXANY
|IXON
|IXOFF
;
1246 tty
->termios
.c_cc
[VSTART
] != old_termios
->c_cc
[VSTART
] ||
1247 tty
->termios
.c_cc
[VSTOP
] != old_termios
->c_cc
[VSTOP
];
1251 * These are the bits that are used to setup various
1252 * flags in the low level driver. We can ignore the Bfoo
1253 * bits in c_cflag; c_[io]speed will always be set
1254 * appropriately by set_termios() in tty_ioctl.c
1256 if ((cflag
^ old_termios
->c_cflag
) == 0 &&
1257 tty
->termios
.c_ospeed
== old_termios
->c_ospeed
&&
1258 tty
->termios
.c_ispeed
== old_termios
->c_ispeed
&&
1259 ((tty
->termios
.c_iflag
^ old_termios
->c_iflag
) & iflag_mask
) == 0 &&
1264 uart_change_speed(tty
, state
, old_termios
);
1266 /* Handle transition to B0 status */
1267 if ((old_termios
->c_cflag
& CBAUD
) && !(cflag
& CBAUD
))
1268 uart_clear_mctrl(uport
, TIOCM_RTS
| TIOCM_DTR
);
1269 /* Handle transition away from B0 status */
1270 else if (!(old_termios
->c_cflag
& CBAUD
) && (cflag
& CBAUD
)) {
1271 unsigned int mask
= TIOCM_DTR
;
1272 if (!(cflag
& CRTSCTS
) ||
1273 !test_bit(TTY_THROTTLED
, &tty
->flags
))
1275 uart_set_mctrl(uport
, mask
);
1279 * If the port is doing h/w assisted flow control, do nothing.
1280 * We assume that tty->hw_stopped has never been set.
1282 if (uport
->flags
& UPF_HARD_FLOW
)
1285 /* Handle turning off CRTSCTS */
1286 if ((old_termios
->c_cflag
& CRTSCTS
) && !(cflag
& CRTSCTS
)) {
1287 spin_lock_irqsave(&uport
->lock
, flags
);
1288 tty
->hw_stopped
= 0;
1290 spin_unlock_irqrestore(&uport
->lock
, flags
);
1292 /* Handle turning on CRTSCTS */
1293 else if (!(old_termios
->c_cflag
& CRTSCTS
) && (cflag
& CRTSCTS
)) {
1294 spin_lock_irqsave(&uport
->lock
, flags
);
1295 if (!(uport
->ops
->get_mctrl(uport
) & TIOCM_CTS
)) {
1296 tty
->hw_stopped
= 1;
1297 uport
->ops
->stop_tx(uport
);
1299 spin_unlock_irqrestore(&uport
->lock
, flags
);
1304 * Calls to uart_close() are serialised via the tty_lock in
1305 * drivers/tty/tty_io.c:tty_release()
1306 * drivers/tty/tty_io.c:do_tty_hangup()
1307 * This runs from a workqueue and can sleep for a _short_ time only.
1309 static void uart_close(struct tty_struct
*tty
, struct file
*filp
)
1311 struct uart_state
*state
= tty
->driver_data
;
1312 struct tty_port
*port
;
1313 struct uart_port
*uport
;
1314 unsigned long flags
;
1319 uport
= state
->uart_port
;
1320 port
= &state
->port
;
1322 pr_debug("uart_close(%d) called\n", uport
->line
);
1324 if (tty_port_close_start(port
, tty
, filp
) == 0)
1328 * At this point, we stop accepting input. To do this, we
1329 * disable the receive line status interrupts.
1331 if (port
->flags
& ASYNC_INITIALIZED
) {
1332 unsigned long flags
;
1333 spin_lock_irqsave(&uport
->lock
, flags
);
1334 uport
->ops
->stop_rx(uport
);
1335 spin_unlock_irqrestore(&uport
->lock
, flags
);
1337 * Before we drop DTR, make sure the UART transmitter
1338 * has completely drained; this is especially
1339 * important if there is a transmit FIFO!
1341 uart_wait_until_sent(tty
, uport
->timeout
);
1344 mutex_lock(&port
->mutex
);
1345 uart_shutdown(tty
, state
);
1346 uart_flush_buffer(tty
);
1348 tty_ldisc_flush(tty
);
1350 tty_port_tty_set(port
, NULL
);
1351 spin_lock_irqsave(&port
->lock
, flags
);
1354 if (port
->blocked_open
) {
1355 spin_unlock_irqrestore(&port
->lock
, flags
);
1356 if (port
->close_delay
)
1357 msleep_interruptible(
1358 jiffies_to_msecs(port
->close_delay
));
1359 spin_lock_irqsave(&port
->lock
, flags
);
1360 } else if (!uart_console(uport
)) {
1361 spin_unlock_irqrestore(&port
->lock
, flags
);
1362 uart_change_pm(state
, UART_PM_STATE_OFF
);
1363 spin_lock_irqsave(&port
->lock
, flags
);
1367 * Wake up anyone trying to open this port.
1369 clear_bit(ASYNCB_NORMAL_ACTIVE
, &port
->flags
);
1370 clear_bit(ASYNCB_CLOSING
, &port
->flags
);
1371 spin_unlock_irqrestore(&port
->lock
, flags
);
1372 wake_up_interruptible(&port
->open_wait
);
1373 wake_up_interruptible(&port
->close_wait
);
1375 mutex_unlock(&port
->mutex
);
1378 static void uart_wait_until_sent(struct tty_struct
*tty
, int timeout
)
1380 struct uart_state
*state
= tty
->driver_data
;
1381 struct uart_port
*port
= state
->uart_port
;
1382 unsigned long char_time
, expire
;
1384 if (port
->type
== PORT_UNKNOWN
|| port
->fifosize
== 0)
1388 * Set the check interval to be 1/5 of the estimated time to
1389 * send a single character, and make it at least 1. The check
1390 * interval should also be less than the timeout.
1392 * Note: we have to use pretty tight timings here to satisfy
1395 char_time
= (port
->timeout
- HZ
/50) / port
->fifosize
;
1396 char_time
= char_time
/ 5;
1399 if (timeout
&& timeout
< char_time
)
1400 char_time
= timeout
;
1403 * If the transmitter hasn't cleared in twice the approximate
1404 * amount of time to send the entire FIFO, it probably won't
1405 * ever clear. This assumes the UART isn't doing flow
1406 * control, which is currently the case. Hence, if it ever
1407 * takes longer than port->timeout, this is probably due to a
1408 * UART bug of some kind. So, we clamp the timeout parameter at
1411 if (timeout
== 0 || timeout
> 2 * port
->timeout
)
1412 timeout
= 2 * port
->timeout
;
1414 expire
= jiffies
+ timeout
;
1416 pr_debug("uart_wait_until_sent(%d), jiffies=%lu, expire=%lu...\n",
1417 port
->line
, jiffies
, expire
);
1420 * Check whether the transmitter is empty every 'char_time'.
1421 * 'timeout' / 'expire' give us the maximum amount of time
1424 while (!port
->ops
->tx_empty(port
)) {
1425 msleep_interruptible(jiffies_to_msecs(char_time
));
1426 if (signal_pending(current
))
1428 if (time_after(jiffies
, expire
))
1434 * Calls to uart_hangup() are serialised by the tty_lock in
1435 * drivers/tty/tty_io.c:do_tty_hangup()
1436 * This runs from a workqueue and can sleep for a _short_ time only.
1438 static void uart_hangup(struct tty_struct
*tty
)
1440 struct uart_state
*state
= tty
->driver_data
;
1441 struct tty_port
*port
= &state
->port
;
1442 unsigned long flags
;
1444 pr_debug("uart_hangup(%d)\n", state
->uart_port
->line
);
1446 mutex_lock(&port
->mutex
);
1447 if (port
->flags
& ASYNC_NORMAL_ACTIVE
) {
1448 uart_flush_buffer(tty
);
1449 uart_shutdown(tty
, state
);
1450 spin_lock_irqsave(&port
->lock
, flags
);
1452 clear_bit(ASYNCB_NORMAL_ACTIVE
, &port
->flags
);
1453 spin_unlock_irqrestore(&port
->lock
, flags
);
1454 tty_port_tty_set(port
, NULL
);
1455 wake_up_interruptible(&port
->open_wait
);
1456 wake_up_interruptible(&port
->delta_msr_wait
);
1458 mutex_unlock(&port
->mutex
);
1461 static int uart_port_activate(struct tty_port
*port
, struct tty_struct
*tty
)
1466 static void uart_port_shutdown(struct tty_port
*port
)
1468 struct uart_state
*state
= container_of(port
, struct uart_state
, port
);
1469 struct uart_port
*uport
= state
->uart_port
;
1472 * clear delta_msr_wait queue to avoid mem leaks: we may free
1473 * the irq here so the queue might never be woken up. Note
1474 * that we won't end up waiting on delta_msr_wait again since
1475 * any outstanding file descriptors should be pointing at
1476 * hung_up_tty_fops now.
1478 wake_up_interruptible(&port
->delta_msr_wait
);
1481 * Free the IRQ and disable the port.
1483 uport
->ops
->shutdown(uport
);
1486 * Ensure that the IRQ handler isn't running on another CPU.
1488 synchronize_irq(uport
->irq
);
1491 static int uart_carrier_raised(struct tty_port
*port
)
1493 struct uart_state
*state
= container_of(port
, struct uart_state
, port
);
1494 struct uart_port
*uport
= state
->uart_port
;
1496 spin_lock_irq(&uport
->lock
);
1497 uport
->ops
->enable_ms(uport
);
1498 mctrl
= uport
->ops
->get_mctrl(uport
);
1499 spin_unlock_irq(&uport
->lock
);
1500 if (mctrl
& TIOCM_CAR
)
1505 static void uart_dtr_rts(struct tty_port
*port
, int onoff
)
1507 struct uart_state
*state
= container_of(port
, struct uart_state
, port
);
1508 struct uart_port
*uport
= state
->uart_port
;
1511 uart_set_mctrl(uport
, TIOCM_DTR
| TIOCM_RTS
);
1513 uart_clear_mctrl(uport
, TIOCM_DTR
| TIOCM_RTS
);
1517 * Calls to uart_open are serialised by the tty_lock in
1518 * drivers/tty/tty_io.c:tty_open()
1519 * Note that if this fails, then uart_close() _will_ be called.
1521 * In time, we want to scrap the "opening nonpresent ports"
1522 * behaviour and implement an alternative way for setserial
1523 * to set base addresses/ports/types. This will allow us to
1524 * get rid of a certain amount of extra tests.
1526 static int uart_open(struct tty_struct
*tty
, struct file
*filp
)
1528 struct uart_driver
*drv
= (struct uart_driver
*)tty
->driver
->driver_state
;
1529 int retval
, line
= tty
->index
;
1530 struct uart_state
*state
= drv
->state
+ line
;
1531 struct tty_port
*port
= &state
->port
;
1533 pr_debug("uart_open(%d) called\n", line
);
1536 * We take the semaphore here to guarantee that we won't be re-entered
1537 * while allocating the state structure, or while we request any IRQs
1538 * that the driver may need. This also has the nice side-effect that
1539 * it delays the action of uart_hangup, so we can guarantee that
1540 * state->port.tty will always contain something reasonable.
1542 if (mutex_lock_interruptible(&port
->mutex
)) {
1543 retval
= -ERESTARTSYS
;
1548 if (!state
->uart_port
|| state
->uart_port
->flags
& UPF_DEAD
) {
1554 * Once we set tty->driver_data here, we are guaranteed that
1555 * uart_close() will decrement the driver module use count.
1556 * Any failures from here onwards should not touch the count.
1558 tty
->driver_data
= state
;
1559 state
->uart_port
->state
= state
;
1560 state
->port
.low_latency
=
1561 (state
->uart_port
->flags
& UPF_LOW_LATENCY
) ? 1 : 0;
1562 tty_port_tty_set(port
, tty
);
1565 * If the port is in the middle of closing, bail out now.
1567 if (tty_hung_up_p(filp
)) {
1573 * Make sure the device is in D0 state.
1575 if (port
->count
== 1)
1576 uart_change_pm(state
, UART_PM_STATE_ON
);
1579 * Start up the serial port.
1581 retval
= uart_startup(tty
, state
, 0);
1584 * If we succeeded, wait until the port is ready.
1586 mutex_unlock(&port
->mutex
);
1588 retval
= tty_port_block_til_ready(port
, tty
, filp
);
1594 mutex_unlock(&port
->mutex
);
1598 static const char *uart_type(struct uart_port
*port
)
1600 const char *str
= NULL
;
1602 if (port
->ops
->type
)
1603 str
= port
->ops
->type(port
);
1611 #ifdef CONFIG_PROC_FS
1613 static void uart_line_info(struct seq_file
*m
, struct uart_driver
*drv
, int i
)
1615 struct uart_state
*state
= drv
->state
+ i
;
1616 struct tty_port
*port
= &state
->port
;
1617 enum uart_pm_state pm_state
;
1618 struct uart_port
*uport
= state
->uart_port
;
1620 unsigned int status
;
1626 mmio
= uport
->iotype
>= UPIO_MEM
;
1627 seq_printf(m
, "%d: uart:%s %s%08llX irq:%d",
1628 uport
->line
, uart_type(uport
),
1629 mmio
? "mmio:0x" : "port:",
1630 mmio
? (unsigned long long)uport
->mapbase
1631 : (unsigned long long)uport
->iobase
,
1634 if (uport
->type
== PORT_UNKNOWN
) {
1639 if (capable(CAP_SYS_ADMIN
)) {
1640 mutex_lock(&port
->mutex
);
1641 pm_state
= state
->pm_state
;
1642 if (pm_state
!= UART_PM_STATE_ON
)
1643 uart_change_pm(state
, UART_PM_STATE_ON
);
1644 spin_lock_irq(&uport
->lock
);
1645 status
= uport
->ops
->get_mctrl(uport
);
1646 spin_unlock_irq(&uport
->lock
);
1647 if (pm_state
!= UART_PM_STATE_ON
)
1648 uart_change_pm(state
, pm_state
);
1649 mutex_unlock(&port
->mutex
);
1651 seq_printf(m
, " tx:%d rx:%d",
1652 uport
->icount
.tx
, uport
->icount
.rx
);
1653 if (uport
->icount
.frame
)
1654 seq_printf(m
, " fe:%d",
1655 uport
->icount
.frame
);
1656 if (uport
->icount
.parity
)
1657 seq_printf(m
, " pe:%d",
1658 uport
->icount
.parity
);
1659 if (uport
->icount
.brk
)
1660 seq_printf(m
, " brk:%d",
1662 if (uport
->icount
.overrun
)
1663 seq_printf(m
, " oe:%d",
1664 uport
->icount
.overrun
);
1666 #define INFOBIT(bit, str) \
1667 if (uport->mctrl & (bit)) \
1668 strncat(stat_buf, (str), sizeof(stat_buf) - \
1669 strlen(stat_buf) - 2)
1670 #define STATBIT(bit, str) \
1671 if (status & (bit)) \
1672 strncat(stat_buf, (str), sizeof(stat_buf) - \
1673 strlen(stat_buf) - 2)
1677 INFOBIT(TIOCM_RTS
, "|RTS");
1678 STATBIT(TIOCM_CTS
, "|CTS");
1679 INFOBIT(TIOCM_DTR
, "|DTR");
1680 STATBIT(TIOCM_DSR
, "|DSR");
1681 STATBIT(TIOCM_CAR
, "|CD");
1682 STATBIT(TIOCM_RNG
, "|RI");
1686 seq_puts(m
, stat_buf
);
1693 static int uart_proc_show(struct seq_file
*m
, void *v
)
1695 struct tty_driver
*ttydrv
= m
->private;
1696 struct uart_driver
*drv
= ttydrv
->driver_state
;
1699 seq_printf(m
, "serinfo:1.0 driver%s%s revision:%s\n",
1701 for (i
= 0; i
< drv
->nr
; i
++)
1702 uart_line_info(m
, drv
, i
);
1706 static int uart_proc_open(struct inode
*inode
, struct file
*file
)
1708 return single_open(file
, uart_proc_show
, PDE_DATA(inode
));
1711 static const struct file_operations uart_proc_fops
= {
1712 .owner
= THIS_MODULE
,
1713 .open
= uart_proc_open
,
1715 .llseek
= seq_lseek
,
1716 .release
= single_release
,
1720 #if defined(CONFIG_SERIAL_CORE_CONSOLE) || defined(CONFIG_CONSOLE_POLL)
1722 * uart_console_write - write a console message to a serial port
1723 * @port: the port to write the message
1724 * @s: array of characters
1725 * @count: number of characters in string to write
1726 * @write: function to write character to port
1728 void uart_console_write(struct uart_port
*port
, const char *s
,
1730 void (*putchar
)(struct uart_port
*, int))
1734 for (i
= 0; i
< count
; i
++, s
++) {
1736 putchar(port
, '\r');
1740 EXPORT_SYMBOL_GPL(uart_console_write
);
1743 * Check whether an invalid uart number has been specified, and
1744 * if so, search for the first available port that does have
1747 struct uart_port
* __init
1748 uart_get_console(struct uart_port
*ports
, int nr
, struct console
*co
)
1750 int idx
= co
->index
;
1752 if (idx
< 0 || idx
>= nr
|| (ports
[idx
].iobase
== 0 &&
1753 ports
[idx
].membase
== NULL
))
1754 for (idx
= 0; idx
< nr
; idx
++)
1755 if (ports
[idx
].iobase
!= 0 ||
1756 ports
[idx
].membase
!= NULL
)
1765 * uart_parse_options - Parse serial port baud/parity/bits/flow contro.
1766 * @options: pointer to option string
1767 * @baud: pointer to an 'int' variable for the baud rate.
1768 * @parity: pointer to an 'int' variable for the parity.
1769 * @bits: pointer to an 'int' variable for the number of data bits.
1770 * @flow: pointer to an 'int' variable for the flow control character.
1772 * uart_parse_options decodes a string containing the serial console
1773 * options. The format of the string is <baud><parity><bits><flow>,
1777 uart_parse_options(char *options
, int *baud
, int *parity
, int *bits
, int *flow
)
1781 *baud
= simple_strtoul(s
, NULL
, 10);
1782 while (*s
>= '0' && *s
<= '9')
1791 EXPORT_SYMBOL_GPL(uart_parse_options
);
1798 static const struct baud_rates baud_rates
[] = {
1799 { 921600, B921600
},
1800 { 460800, B460800
},
1801 { 230400, B230400
},
1802 { 115200, B115200
},
1814 * uart_set_options - setup the serial console parameters
1815 * @port: pointer to the serial ports uart_port structure
1816 * @co: console pointer
1818 * @parity: parity character - 'n' (none), 'o' (odd), 'e' (even)
1819 * @bits: number of data bits
1820 * @flow: flow control character - 'r' (rts)
1823 uart_set_options(struct uart_port
*port
, struct console
*co
,
1824 int baud
, int parity
, int bits
, int flow
)
1826 struct ktermios termios
;
1827 static struct ktermios dummy
;
1831 * Ensure that the serial console lock is initialised
1834 spin_lock_init(&port
->lock
);
1835 lockdep_set_class(&port
->lock
, &port_lock_key
);
1837 memset(&termios
, 0, sizeof(struct ktermios
));
1839 termios
.c_cflag
= CREAD
| HUPCL
| CLOCAL
;
1842 * Construct a cflag setting.
1844 for (i
= 0; baud_rates
[i
].rate
; i
++)
1845 if (baud_rates
[i
].rate
<= baud
)
1848 termios
.c_cflag
|= baud_rates
[i
].cflag
;
1851 termios
.c_cflag
|= CS7
;
1853 termios
.c_cflag
|= CS8
;
1857 termios
.c_cflag
|= PARODD
;
1860 termios
.c_cflag
|= PARENB
;
1865 termios
.c_cflag
|= CRTSCTS
;
1868 * some uarts on other side don't support no flow control.
1869 * So we set * DTR in host uart to make them happy
1871 port
->mctrl
|= TIOCM_DTR
;
1873 port
->ops
->set_termios(port
, &termios
, &dummy
);
1875 * Allow the setting of the UART parameters with a NULL console
1879 co
->cflag
= termios
.c_cflag
;
1883 EXPORT_SYMBOL_GPL(uart_set_options
);
1884 #endif /* CONFIG_SERIAL_CORE_CONSOLE */
1887 * uart_change_pm - set power state of the port
1889 * @state: port descriptor
1890 * @pm_state: new state
1892 * Locking: port->mutex has to be held
1894 static void uart_change_pm(struct uart_state
*state
,
1895 enum uart_pm_state pm_state
)
1897 struct uart_port
*port
= state
->uart_port
;
1899 if (state
->pm_state
!= pm_state
) {
1901 port
->ops
->pm(port
, pm_state
, state
->pm_state
);
1902 state
->pm_state
= pm_state
;
1907 struct uart_port
*port
;
1908 struct uart_driver
*driver
;
1911 static int serial_match_port(struct device
*dev
, void *data
)
1913 struct uart_match
*match
= data
;
1914 struct tty_driver
*tty_drv
= match
->driver
->tty_driver
;
1915 dev_t devt
= MKDEV(tty_drv
->major
, tty_drv
->minor_start
) +
1918 return dev
->devt
== devt
; /* Actually, only one tty per port */
1921 int uart_suspend_port(struct uart_driver
*drv
, struct uart_port
*uport
)
1923 struct uart_state
*state
= drv
->state
+ uport
->line
;
1924 struct tty_port
*port
= &state
->port
;
1925 struct device
*tty_dev
;
1926 struct uart_match match
= {uport
, drv
};
1928 mutex_lock(&port
->mutex
);
1930 tty_dev
= device_find_child(uport
->dev
, &match
, serial_match_port
);
1931 if (device_may_wakeup(tty_dev
)) {
1932 if (!enable_irq_wake(uport
->irq
))
1933 uport
->irq_wake
= 1;
1934 put_device(tty_dev
);
1935 mutex_unlock(&port
->mutex
);
1938 put_device(tty_dev
);
1940 if (console_suspend_enabled
|| !uart_console(uport
))
1941 uport
->suspended
= 1;
1943 if (port
->flags
& ASYNC_INITIALIZED
) {
1944 const struct uart_ops
*ops
= uport
->ops
;
1947 if (console_suspend_enabled
|| !uart_console(uport
)) {
1948 set_bit(ASYNCB_SUSPENDED
, &port
->flags
);
1949 clear_bit(ASYNCB_INITIALIZED
, &port
->flags
);
1951 spin_lock_irq(&uport
->lock
);
1952 ops
->stop_tx(uport
);
1953 ops
->set_mctrl(uport
, 0);
1954 ops
->stop_rx(uport
);
1955 spin_unlock_irq(&uport
->lock
);
1959 * Wait for the transmitter to empty.
1961 for (tries
= 3; !ops
->tx_empty(uport
) && tries
; tries
--)
1964 printk(KERN_ERR
"%s%s%s%d: Unable to drain "
1966 uport
->dev
? dev_name(uport
->dev
) : "",
1967 uport
->dev
? ": " : "",
1969 drv
->tty_driver
->name_base
+ uport
->line
);
1971 if (console_suspend_enabled
|| !uart_console(uport
))
1972 ops
->shutdown(uport
);
1976 * Disable the console device before suspending.
1978 if (console_suspend_enabled
&& uart_console(uport
))
1979 console_stop(uport
->cons
);
1981 if (console_suspend_enabled
|| !uart_console(uport
))
1982 uart_change_pm(state
, UART_PM_STATE_OFF
);
1984 mutex_unlock(&port
->mutex
);
1989 int uart_resume_port(struct uart_driver
*drv
, struct uart_port
*uport
)
1991 struct uart_state
*state
= drv
->state
+ uport
->line
;
1992 struct tty_port
*port
= &state
->port
;
1993 struct device
*tty_dev
;
1994 struct uart_match match
= {uport
, drv
};
1995 struct ktermios termios
;
1997 mutex_lock(&port
->mutex
);
1999 tty_dev
= device_find_child(uport
->dev
, &match
, serial_match_port
);
2000 if (!uport
->suspended
&& device_may_wakeup(tty_dev
)) {
2001 if (uport
->irq_wake
) {
2002 disable_irq_wake(uport
->irq
);
2003 uport
->irq_wake
= 0;
2005 put_device(tty_dev
);
2006 mutex_unlock(&port
->mutex
);
2009 put_device(tty_dev
);
2010 uport
->suspended
= 0;
2013 * Re-enable the console device after suspending.
2015 if (uart_console(uport
)) {
2017 * First try to use the console cflag setting.
2019 memset(&termios
, 0, sizeof(struct ktermios
));
2020 termios
.c_cflag
= uport
->cons
->cflag
;
2023 * If that's unset, use the tty termios setting.
2025 if (port
->tty
&& termios
.c_cflag
== 0)
2026 termios
= port
->tty
->termios
;
2028 if (console_suspend_enabled
)
2029 uart_change_pm(state
, UART_PM_STATE_ON
);
2030 uport
->ops
->set_termios(uport
, &termios
, NULL
);
2031 if (console_suspend_enabled
)
2032 console_start(uport
->cons
);
2035 if (port
->flags
& ASYNC_SUSPENDED
) {
2036 const struct uart_ops
*ops
= uport
->ops
;
2039 uart_change_pm(state
, UART_PM_STATE_ON
);
2040 spin_lock_irq(&uport
->lock
);
2041 ops
->set_mctrl(uport
, 0);
2042 spin_unlock_irq(&uport
->lock
);
2043 if (console_suspend_enabled
|| !uart_console(uport
)) {
2044 /* Protected by port mutex for now */
2045 struct tty_struct
*tty
= port
->tty
;
2046 ret
= ops
->startup(uport
);
2049 uart_change_speed(tty
, state
, NULL
);
2050 spin_lock_irq(&uport
->lock
);
2051 ops
->set_mctrl(uport
, uport
->mctrl
);
2052 ops
->start_tx(uport
);
2053 spin_unlock_irq(&uport
->lock
);
2054 set_bit(ASYNCB_INITIALIZED
, &port
->flags
);
2057 * Failed to resume - maybe hardware went away?
2058 * Clear the "initialized" flag so we won't try
2059 * to call the low level drivers shutdown method.
2061 uart_shutdown(tty
, state
);
2065 clear_bit(ASYNCB_SUSPENDED
, &port
->flags
);
2068 mutex_unlock(&port
->mutex
);
2074 uart_report_port(struct uart_driver
*drv
, struct uart_port
*port
)
2078 switch (port
->iotype
) {
2080 snprintf(address
, sizeof(address
), "I/O 0x%lx", port
->iobase
);
2083 snprintf(address
, sizeof(address
),
2084 "I/O 0x%lx offset 0x%x", port
->iobase
, port
->hub6
);
2090 snprintf(address
, sizeof(address
),
2091 "MMIO 0x%llx", (unsigned long long)port
->mapbase
);
2094 strlcpy(address
, "*unknown*", sizeof(address
));
2098 printk(KERN_INFO
"%s%s%s%d at %s (irq = %d) is a %s\n",
2099 port
->dev
? dev_name(port
->dev
) : "",
2100 port
->dev
? ": " : "",
2102 drv
->tty_driver
->name_base
+ port
->line
,
2103 address
, port
->irq
, uart_type(port
));
2107 uart_configure_port(struct uart_driver
*drv
, struct uart_state
*state
,
2108 struct uart_port
*port
)
2113 * If there isn't a port here, don't do anything further.
2115 if (!port
->iobase
&& !port
->mapbase
&& !port
->membase
)
2119 * Now do the auto configuration stuff. Note that config_port
2120 * is expected to claim the resources and map the port for us.
2123 if (port
->flags
& UPF_AUTO_IRQ
)
2124 flags
|= UART_CONFIG_IRQ
;
2125 if (port
->flags
& UPF_BOOT_AUTOCONF
) {
2126 if (!(port
->flags
& UPF_FIXED_TYPE
)) {
2127 port
->type
= PORT_UNKNOWN
;
2128 flags
|= UART_CONFIG_TYPE
;
2130 port
->ops
->config_port(port
, flags
);
2133 if (port
->type
!= PORT_UNKNOWN
) {
2134 unsigned long flags
;
2136 uart_report_port(drv
, port
);
2138 /* Power up port for set_mctrl() */
2139 uart_change_pm(state
, UART_PM_STATE_ON
);
2142 * Ensure that the modem control lines are de-activated.
2143 * keep the DTR setting that is set in uart_set_options()
2144 * We probably don't need a spinlock around this, but
2146 spin_lock_irqsave(&port
->lock
, flags
);
2147 port
->ops
->set_mctrl(port
, port
->mctrl
& TIOCM_DTR
);
2148 spin_unlock_irqrestore(&port
->lock
, flags
);
2151 * If this driver supports console, and it hasn't been
2152 * successfully registered yet, try to re-register it.
2153 * It may be that the port was not available.
2155 if (port
->cons
&& !(port
->cons
->flags
& CON_ENABLED
))
2156 register_console(port
->cons
);
2159 * Power down all ports by default, except the
2160 * console if we have one.
2162 if (!uart_console(port
))
2163 uart_change_pm(state
, UART_PM_STATE_OFF
);
2167 #ifdef CONFIG_CONSOLE_POLL
2169 static int uart_poll_init(struct tty_driver
*driver
, int line
, char *options
)
2171 struct uart_driver
*drv
= driver
->driver_state
;
2172 struct uart_state
*state
= drv
->state
+ line
;
2173 struct uart_port
*port
;
2180 if (!state
|| !state
->uart_port
)
2183 port
= state
->uart_port
;
2184 if (!(port
->ops
->poll_get_char
&& port
->ops
->poll_put_char
))
2187 if (port
->ops
->poll_init
) {
2188 struct tty_port
*tport
= &state
->port
;
2191 mutex_lock(&tport
->mutex
);
2193 * We don't set ASYNCB_INITIALIZED as we only initialized the
2194 * hw, e.g. state->xmit is still uninitialized.
2196 if (!test_bit(ASYNCB_INITIALIZED
, &tport
->flags
))
2197 ret
= port
->ops
->poll_init(port
);
2198 mutex_unlock(&tport
->mutex
);
2204 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
2205 return uart_set_options(port
, NULL
, baud
, parity
, bits
, flow
);
2211 static int uart_poll_get_char(struct tty_driver
*driver
, int line
)
2213 struct uart_driver
*drv
= driver
->driver_state
;
2214 struct uart_state
*state
= drv
->state
+ line
;
2215 struct uart_port
*port
;
2217 if (!state
|| !state
->uart_port
)
2220 port
= state
->uart_port
;
2221 return port
->ops
->poll_get_char(port
);
2224 static void uart_poll_put_char(struct tty_driver
*driver
, int line
, char ch
)
2226 struct uart_driver
*drv
= driver
->driver_state
;
2227 struct uart_state
*state
= drv
->state
+ line
;
2228 struct uart_port
*port
;
2230 if (!state
|| !state
->uart_port
)
2233 port
= state
->uart_port
;
2234 port
->ops
->poll_put_char(port
, ch
);
2238 static const struct tty_operations uart_ops
= {
2240 .close
= uart_close
,
2241 .write
= uart_write
,
2242 .put_char
= uart_put_char
,
2243 .flush_chars
= uart_flush_chars
,
2244 .write_room
= uart_write_room
,
2245 .chars_in_buffer
= uart_chars_in_buffer
,
2246 .flush_buffer
= uart_flush_buffer
,
2247 .ioctl
= uart_ioctl
,
2248 .throttle
= uart_throttle
,
2249 .unthrottle
= uart_unthrottle
,
2250 .send_xchar
= uart_send_xchar
,
2251 .set_termios
= uart_set_termios
,
2252 .set_ldisc
= uart_set_ldisc
,
2254 .start
= uart_start
,
2255 .hangup
= uart_hangup
,
2256 .break_ctl
= uart_break_ctl
,
2257 .wait_until_sent
= uart_wait_until_sent
,
2258 #ifdef CONFIG_PROC_FS
2259 .proc_fops
= &uart_proc_fops
,
2261 .tiocmget
= uart_tiocmget
,
2262 .tiocmset
= uart_tiocmset
,
2263 .get_icount
= uart_get_icount
,
2264 #ifdef CONFIG_CONSOLE_POLL
2265 .poll_init
= uart_poll_init
,
2266 .poll_get_char
= uart_poll_get_char
,
2267 .poll_put_char
= uart_poll_put_char
,
2271 static const struct tty_port_operations uart_port_ops
= {
2272 .activate
= uart_port_activate
,
2273 .shutdown
= uart_port_shutdown
,
2274 .carrier_raised
= uart_carrier_raised
,
2275 .dtr_rts
= uart_dtr_rts
,
2279 * uart_register_driver - register a driver with the uart core layer
2280 * @drv: low level driver structure
2282 * Register a uart driver with the core driver. We in turn register
2283 * with the tty layer, and initialise the core driver per-port state.
2285 * We have a proc file in /proc/tty/driver which is named after the
2288 * drv->port should be NULL, and the per-port structures should be
2289 * registered using uart_add_one_port after this call has succeeded.
2291 int uart_register_driver(struct uart_driver
*drv
)
2293 struct tty_driver
*normal
;
2299 * Maybe we should be using a slab cache for this, especially if
2300 * we have a large number of ports to handle.
2302 drv
->state
= kzalloc(sizeof(struct uart_state
) * drv
->nr
, GFP_KERNEL
);
2306 normal
= alloc_tty_driver(drv
->nr
);
2310 drv
->tty_driver
= normal
;
2312 normal
->driver_name
= drv
->driver_name
;
2313 normal
->name
= drv
->dev_name
;
2314 normal
->major
= drv
->major
;
2315 normal
->minor_start
= drv
->minor
;
2316 normal
->type
= TTY_DRIVER_TYPE_SERIAL
;
2317 normal
->subtype
= SERIAL_TYPE_NORMAL
;
2318 normal
->init_termios
= tty_std_termios
;
2319 normal
->init_termios
.c_cflag
= B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
2320 normal
->init_termios
.c_ispeed
= normal
->init_termios
.c_ospeed
= 9600;
2321 normal
->flags
= TTY_DRIVER_REAL_RAW
| TTY_DRIVER_DYNAMIC_DEV
;
2322 normal
->driver_state
= drv
;
2323 tty_set_operations(normal
, &uart_ops
);
2326 * Initialise the UART state(s).
2328 for (i
= 0; i
< drv
->nr
; i
++) {
2329 struct uart_state
*state
= drv
->state
+ i
;
2330 struct tty_port
*port
= &state
->port
;
2332 tty_port_init(port
);
2333 port
->ops
= &uart_port_ops
;
2334 port
->close_delay
= HZ
/ 2; /* .5 seconds */
2335 port
->closing_wait
= 30 * HZ
;/* 30 seconds */
2338 retval
= tty_register_driver(normal
);
2342 for (i
= 0; i
< drv
->nr
; i
++)
2343 tty_port_destroy(&drv
->state
[i
].port
);
2344 put_tty_driver(normal
);
2352 * uart_unregister_driver - remove a driver from the uart core layer
2353 * @drv: low level driver structure
2355 * Remove all references to a driver from the core driver. The low
2356 * level driver must have removed all its ports via the
2357 * uart_remove_one_port() if it registered them with uart_add_one_port().
2358 * (ie, drv->port == NULL)
2360 void uart_unregister_driver(struct uart_driver
*drv
)
2362 struct tty_driver
*p
= drv
->tty_driver
;
2365 tty_unregister_driver(p
);
2367 for (i
= 0; i
< drv
->nr
; i
++)
2368 tty_port_destroy(&drv
->state
[i
].port
);
2371 drv
->tty_driver
= NULL
;
2374 struct tty_driver
*uart_console_device(struct console
*co
, int *index
)
2376 struct uart_driver
*p
= co
->data
;
2378 return p
->tty_driver
;
2381 static ssize_t
uart_get_attr_uartclk(struct device
*dev
,
2382 struct device_attribute
*attr
, char *buf
)
2384 struct serial_struct tmp
;
2385 struct tty_port
*port
= dev_get_drvdata(dev
);
2387 uart_get_info(port
, &tmp
);
2388 return snprintf(buf
, PAGE_SIZE
, "%d\n", tmp
.baud_base
* 16);
2391 static ssize_t
uart_get_attr_type(struct device
*dev
,
2392 struct device_attribute
*attr
, char *buf
)
2394 struct serial_struct tmp
;
2395 struct tty_port
*port
= dev_get_drvdata(dev
);
2397 uart_get_info(port
, &tmp
);
2398 return snprintf(buf
, PAGE_SIZE
, "%d\n", tmp
.type
);
2400 static ssize_t
uart_get_attr_line(struct device
*dev
,
2401 struct device_attribute
*attr
, char *buf
)
2403 struct serial_struct tmp
;
2404 struct tty_port
*port
= dev_get_drvdata(dev
);
2406 uart_get_info(port
, &tmp
);
2407 return snprintf(buf
, PAGE_SIZE
, "%d\n", tmp
.line
);
2410 static ssize_t
uart_get_attr_port(struct device
*dev
,
2411 struct device_attribute
*attr
, char *buf
)
2413 struct serial_struct tmp
;
2414 struct tty_port
*port
= dev_get_drvdata(dev
);
2415 unsigned long ioaddr
;
2417 uart_get_info(port
, &tmp
);
2419 if (HIGH_BITS_OFFSET
)
2420 ioaddr
|= (unsigned long)tmp
.port_high
<< HIGH_BITS_OFFSET
;
2421 return snprintf(buf
, PAGE_SIZE
, "0x%lX\n", ioaddr
);
2424 static ssize_t
uart_get_attr_irq(struct device
*dev
,
2425 struct device_attribute
*attr
, char *buf
)
2427 struct serial_struct tmp
;
2428 struct tty_port
*port
= dev_get_drvdata(dev
);
2430 uart_get_info(port
, &tmp
);
2431 return snprintf(buf
, PAGE_SIZE
, "%d\n", tmp
.irq
);
2434 static ssize_t
uart_get_attr_flags(struct device
*dev
,
2435 struct device_attribute
*attr
, char *buf
)
2437 struct serial_struct tmp
;
2438 struct tty_port
*port
= dev_get_drvdata(dev
);
2440 uart_get_info(port
, &tmp
);
2441 return snprintf(buf
, PAGE_SIZE
, "0x%X\n", tmp
.flags
);
2444 static ssize_t
uart_get_attr_xmit_fifo_size(struct device
*dev
,
2445 struct device_attribute
*attr
, char *buf
)
2447 struct serial_struct tmp
;
2448 struct tty_port
*port
= dev_get_drvdata(dev
);
2450 uart_get_info(port
, &tmp
);
2451 return snprintf(buf
, PAGE_SIZE
, "%d\n", tmp
.xmit_fifo_size
);
2455 static ssize_t
uart_get_attr_close_delay(struct device
*dev
,
2456 struct device_attribute
*attr
, char *buf
)
2458 struct serial_struct tmp
;
2459 struct tty_port
*port
= dev_get_drvdata(dev
);
2461 uart_get_info(port
, &tmp
);
2462 return snprintf(buf
, PAGE_SIZE
, "%d\n", tmp
.close_delay
);
2466 static ssize_t
uart_get_attr_closing_wait(struct device
*dev
,
2467 struct device_attribute
*attr
, char *buf
)
2469 struct serial_struct tmp
;
2470 struct tty_port
*port
= dev_get_drvdata(dev
);
2472 uart_get_info(port
, &tmp
);
2473 return snprintf(buf
, PAGE_SIZE
, "%d\n", tmp
.closing_wait
);
2476 static ssize_t
uart_get_attr_custom_divisor(struct device
*dev
,
2477 struct device_attribute
*attr
, char *buf
)
2479 struct serial_struct tmp
;
2480 struct tty_port
*port
= dev_get_drvdata(dev
);
2482 uart_get_info(port
, &tmp
);
2483 return snprintf(buf
, PAGE_SIZE
, "%d\n", tmp
.custom_divisor
);
2486 static ssize_t
uart_get_attr_io_type(struct device
*dev
,
2487 struct device_attribute
*attr
, char *buf
)
2489 struct serial_struct tmp
;
2490 struct tty_port
*port
= dev_get_drvdata(dev
);
2492 uart_get_info(port
, &tmp
);
2493 return snprintf(buf
, PAGE_SIZE
, "%d\n", tmp
.io_type
);
2496 static ssize_t
uart_get_attr_iomem_base(struct device
*dev
,
2497 struct device_attribute
*attr
, char *buf
)
2499 struct serial_struct tmp
;
2500 struct tty_port
*port
= dev_get_drvdata(dev
);
2502 uart_get_info(port
, &tmp
);
2503 return snprintf(buf
, PAGE_SIZE
, "0x%lX\n", (unsigned long)tmp
.iomem_base
);
2506 static ssize_t
uart_get_attr_iomem_reg_shift(struct device
*dev
,
2507 struct device_attribute
*attr
, char *buf
)
2509 struct serial_struct tmp
;
2510 struct tty_port
*port
= dev_get_drvdata(dev
);
2512 uart_get_info(port
, &tmp
);
2513 return snprintf(buf
, PAGE_SIZE
, "%d\n", tmp
.iomem_reg_shift
);
2516 static DEVICE_ATTR(type
, S_IRUSR
| S_IRGRP
, uart_get_attr_type
, NULL
);
2517 static DEVICE_ATTR(line
, S_IRUSR
| S_IRGRP
, uart_get_attr_line
, NULL
);
2518 static DEVICE_ATTR(port
, S_IRUSR
| S_IRGRP
, uart_get_attr_port
, NULL
);
2519 static DEVICE_ATTR(irq
, S_IRUSR
| S_IRGRP
, uart_get_attr_irq
, NULL
);
2520 static DEVICE_ATTR(flags
, S_IRUSR
| S_IRGRP
, uart_get_attr_flags
, NULL
);
2521 static DEVICE_ATTR(xmit_fifo_size
, S_IRUSR
| S_IRGRP
, uart_get_attr_xmit_fifo_size
, NULL
);
2522 static DEVICE_ATTR(uartclk
, S_IRUSR
| S_IRGRP
, uart_get_attr_uartclk
, NULL
);
2523 static DEVICE_ATTR(close_delay
, S_IRUSR
| S_IRGRP
, uart_get_attr_close_delay
, NULL
);
2524 static DEVICE_ATTR(closing_wait
, S_IRUSR
| S_IRGRP
, uart_get_attr_closing_wait
, NULL
);
2525 static DEVICE_ATTR(custom_divisor
, S_IRUSR
| S_IRGRP
, uart_get_attr_custom_divisor
, NULL
);
2526 static DEVICE_ATTR(io_type
, S_IRUSR
| S_IRGRP
, uart_get_attr_io_type
, NULL
);
2527 static DEVICE_ATTR(iomem_base
, S_IRUSR
| S_IRGRP
, uart_get_attr_iomem_base
, NULL
);
2528 static DEVICE_ATTR(iomem_reg_shift
, S_IRUSR
| S_IRGRP
, uart_get_attr_iomem_reg_shift
, NULL
);
2530 static struct attribute
*tty_dev_attrs
[] = {
2531 &dev_attr_type
.attr
,
2532 &dev_attr_line
.attr
,
2533 &dev_attr_port
.attr
,
2535 &dev_attr_flags
.attr
,
2536 &dev_attr_xmit_fifo_size
.attr
,
2537 &dev_attr_uartclk
.attr
,
2538 &dev_attr_close_delay
.attr
,
2539 &dev_attr_closing_wait
.attr
,
2540 &dev_attr_custom_divisor
.attr
,
2541 &dev_attr_io_type
.attr
,
2542 &dev_attr_iomem_base
.attr
,
2543 &dev_attr_iomem_reg_shift
.attr
,
2547 static const struct attribute_group tty_dev_attr_group
= {
2548 .attrs
= tty_dev_attrs
,
2551 static const struct attribute_group
*tty_dev_attr_groups
[] = {
2552 &tty_dev_attr_group
,
2558 * uart_add_one_port - attach a driver-defined port structure
2559 * @drv: pointer to the uart low level driver structure for this port
2560 * @uport: uart port structure to use for this port.
2562 * This allows the driver to register its own uart_port structure
2563 * with the core driver. The main purpose is to allow the low
2564 * level uart drivers to expand uart_port, rather than having yet
2565 * more levels of structures.
2567 int uart_add_one_port(struct uart_driver
*drv
, struct uart_port
*uport
)
2569 struct uart_state
*state
;
2570 struct tty_port
*port
;
2572 struct device
*tty_dev
;
2574 BUG_ON(in_interrupt());
2576 if (uport
->line
>= drv
->nr
)
2579 state
= drv
->state
+ uport
->line
;
2580 port
= &state
->port
;
2582 mutex_lock(&port_mutex
);
2583 mutex_lock(&port
->mutex
);
2584 if (state
->uart_port
) {
2589 state
->uart_port
= uport
;
2590 state
->pm_state
= UART_PM_STATE_UNDEFINED
;
2592 uport
->cons
= drv
->cons
;
2593 uport
->state
= state
;
2596 * If this port is a console, then the spinlock is already
2599 if (!(uart_console(uport
) && (uport
->cons
->flags
& CON_ENABLED
))) {
2600 spin_lock_init(&uport
->lock
);
2601 lockdep_set_class(&uport
->lock
, &port_lock_key
);
2604 uart_configure_port(drv
, state
, uport
);
2607 * Register the port whether it's detected or not. This allows
2608 * setserial to be used to alter this ports parameters.
2610 tty_dev
= tty_port_register_device_attr(port
, drv
->tty_driver
,
2611 uport
->line
, uport
->dev
, port
, tty_dev_attr_groups
);
2612 if (likely(!IS_ERR(tty_dev
))) {
2613 device_set_wakeup_capable(tty_dev
, 1);
2615 printk(KERN_ERR
"Cannot register tty device on line %d\n",
2620 * Ensure UPF_DEAD is not set.
2622 uport
->flags
&= ~UPF_DEAD
;
2625 mutex_unlock(&port
->mutex
);
2626 mutex_unlock(&port_mutex
);
2632 * uart_remove_one_port - detach a driver defined port structure
2633 * @drv: pointer to the uart low level driver structure for this port
2634 * @uport: uart port structure for this port
2636 * This unhooks (and hangs up) the specified port structure from the
2637 * core driver. No further calls will be made to the low-level code
2640 int uart_remove_one_port(struct uart_driver
*drv
, struct uart_port
*uport
)
2642 struct uart_state
*state
= drv
->state
+ uport
->line
;
2643 struct tty_port
*port
= &state
->port
;
2646 BUG_ON(in_interrupt());
2648 if (state
->uart_port
!= uport
)
2649 printk(KERN_ALERT
"Removing wrong port: %p != %p\n",
2650 state
->uart_port
, uport
);
2652 mutex_lock(&port_mutex
);
2655 * Mark the port "dead" - this prevents any opens from
2656 * succeeding while we shut down the port.
2658 mutex_lock(&port
->mutex
);
2659 if (!state
->uart_port
) {
2660 mutex_unlock(&port
->mutex
);
2664 uport
->flags
|= UPF_DEAD
;
2665 mutex_unlock(&port
->mutex
);
2668 * Remove the devices from the tty layer
2670 tty_unregister_device(drv
->tty_driver
, uport
->line
);
2673 tty_vhangup(port
->tty
);
2676 * Free the port IO and memory resources, if any.
2678 if (uport
->type
!= PORT_UNKNOWN
)
2679 uport
->ops
->release_port(uport
);
2682 * Indicate that there isn't a port here anymore.
2684 uport
->type
= PORT_UNKNOWN
;
2686 state
->uart_port
= NULL
;
2688 mutex_unlock(&port_mutex
);
2694 * Are the two ports equivalent?
2696 int uart_match_port(struct uart_port
*port1
, struct uart_port
*port2
)
2698 if (port1
->iotype
!= port2
->iotype
)
2701 switch (port1
->iotype
) {
2703 return (port1
->iobase
== port2
->iobase
);
2705 return (port1
->iobase
== port2
->iobase
) &&
2706 (port1
->hub6
== port2
->hub6
);
2711 return (port1
->mapbase
== port2
->mapbase
);
2715 EXPORT_SYMBOL(uart_match_port
);
2718 * uart_handle_dcd_change - handle a change of carrier detect state
2719 * @uport: uart_port structure for the open port
2720 * @status: new carrier detect status, nonzero if active
2722 void uart_handle_dcd_change(struct uart_port
*uport
, unsigned int status
)
2724 struct tty_port
*port
= &uport
->state
->port
;
2725 struct tty_struct
*tty
= port
->tty
;
2726 struct tty_ldisc
*ld
= tty
? tty_ldisc_ref(tty
) : NULL
;
2729 if (ld
->ops
->dcd_change
)
2730 ld
->ops
->dcd_change(tty
, status
);
2731 tty_ldisc_deref(ld
);
2734 uport
->icount
.dcd
++;
2736 if (port
->flags
& ASYNC_CHECK_CD
) {
2738 wake_up_interruptible(&port
->open_wait
);
2743 EXPORT_SYMBOL_GPL(uart_handle_dcd_change
);
2746 * uart_handle_cts_change - handle a change of clear-to-send state
2747 * @uport: uart_port structure for the open port
2748 * @status: new clear to send status, nonzero if active
2750 void uart_handle_cts_change(struct uart_port
*uport
, unsigned int status
)
2752 struct tty_port
*port
= &uport
->state
->port
;
2753 struct tty_struct
*tty
= port
->tty
;
2755 uport
->icount
.cts
++;
2757 if (tty_port_cts_enabled(port
)) {
2758 if (tty
->hw_stopped
) {
2760 tty
->hw_stopped
= 0;
2761 uport
->ops
->start_tx(uport
);
2762 uart_write_wakeup(uport
);
2766 tty
->hw_stopped
= 1;
2767 uport
->ops
->stop_tx(uport
);
2772 EXPORT_SYMBOL_GPL(uart_handle_cts_change
);
2775 * uart_insert_char - push a char to the uart layer
2777 * User is responsible to call tty_flip_buffer_push when they are done with
2780 * @port: corresponding port
2781 * @status: state of the serial port RX buffer (LSR for 8250)
2782 * @overrun: mask of overrun bits in @status
2783 * @ch: character to push
2784 * @flag: flag for the character (see TTY_NORMAL and friends)
2786 void uart_insert_char(struct uart_port
*port
, unsigned int status
,
2787 unsigned int overrun
, unsigned int ch
, unsigned int flag
)
2789 struct tty_port
*tport
= &port
->state
->port
;
2791 if ((status
& port
->ignore_status_mask
& ~overrun
) == 0)
2792 if (tty_insert_flip_char(tport
, ch
, flag
) == 0)
2793 ++port
->icount
.buf_overrun
;
2796 * Overrun is special. Since it's reported immediately,
2797 * it doesn't affect the current character.
2799 if (status
& ~port
->ignore_status_mask
& overrun
)
2800 if (tty_insert_flip_char(tport
, 0, TTY_OVERRUN
) == 0)
2801 ++port
->icount
.buf_overrun
;
2803 EXPORT_SYMBOL_GPL(uart_insert_char
);
2805 EXPORT_SYMBOL(uart_write_wakeup
);
2806 EXPORT_SYMBOL(uart_register_driver
);
2807 EXPORT_SYMBOL(uart_unregister_driver
);
2808 EXPORT_SYMBOL(uart_suspend_port
);
2809 EXPORT_SYMBOL(uart_resume_port
);
2810 EXPORT_SYMBOL(uart_add_one_port
);
2811 EXPORT_SYMBOL(uart_remove_one_port
);
2813 MODULE_DESCRIPTION("Serial driver core");
2814 MODULE_LICENSE("GPL");