2 * linux/drivers/char/8250.c
4 * Driver for 8250/16550-type serial ports
6 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
8 * Copyright (C) 2001 Russell King.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * A note about mapbase / membase
17 * mapbase is the physical address of the IO port.
18 * membase is an 'ioremapped' cookie.
21 #if defined(CONFIG_SERIAL_8250_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
25 #include <linux/module.h>
26 #include <linux/moduleparam.h>
27 #include <linux/ioport.h>
28 #include <linux/init.h>
29 #include <linux/console.h>
30 #include <linux/sysrq.h>
31 #include <linux/delay.h>
32 #include <linux/platform_device.h>
33 #include <linux/tty.h>
34 #include <linux/ratelimit.h>
35 #include <linux/tty_flip.h>
36 #include <linux/serial_reg.h>
37 #include <linux/serial_core.h>
38 #include <linux/serial.h>
39 #include <linux/serial_8250.h>
40 #include <linux/nmi.h>
41 #include <linux/mutex.h>
42 #include <linux/slab.h>
55 * share_irqs - whether we pass IRQF_SHARED to request_irq(). This option
56 * is unsafe when used on edge-triggered interrupts.
58 static unsigned int share_irqs
= SERIAL8250_SHARE_IRQS
;
60 static unsigned int nr_uarts
= CONFIG_SERIAL_8250_RUNTIME_UARTS
;
62 static struct uart_driver serial8250_reg
;
64 static int serial_index(struct uart_port
*port
)
66 return (serial8250_reg
.minor
- 64) + port
->line
;
69 static unsigned int skip_txen_test
; /* force skip of txen test at init time */
75 #define DEBUG_AUTOCONF(fmt...) printk(fmt)
77 #define DEBUG_AUTOCONF(fmt...) do { } while (0)
81 #define DEBUG_INTR(fmt...) printk(fmt)
83 #define DEBUG_INTR(fmt...) do { } while (0)
86 #define PASS_LIMIT 256
88 #define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
92 * We default to IRQ0 for the "no irq" hack. Some
93 * machine types want others as well - they're free
94 * to redefine this in their header file.
96 #define is_real_interrupt(irq) ((irq) != 0)
98 #ifdef CONFIG_SERIAL_8250_DETECT_IRQ
99 #define CONFIG_SERIAL_DETECT_IRQ 1
101 #ifdef CONFIG_SERIAL_8250_MANY_PORTS
102 #define CONFIG_SERIAL_MANY_PORTS 1
106 * HUB6 is always on. This will be removed once the header
107 * files have been cleaned.
109 #define CONFIG_HUB6 1
111 #include <asm/serial.h>
113 * SERIAL_PORT_DFNS tells us about built-in ports that have no
114 * standard enumeration mechanism. Platforms that can find all
115 * serial ports via mechanisms like ACPI or PCI need not supply it.
117 #ifndef SERIAL_PORT_DFNS
118 #define SERIAL_PORT_DFNS
121 static const struct old_serial_port old_serial_port
[] = {
122 SERIAL_PORT_DFNS
/* defined in asm/serial.h */
125 #define UART_NR CONFIG_SERIAL_8250_NR_UARTS
127 #ifdef CONFIG_SERIAL_8250_RSA
129 #define PORT_RSA_MAX 4
130 static unsigned long probe_rsa
[PORT_RSA_MAX
];
131 static unsigned int probe_rsa_count
;
132 #endif /* CONFIG_SERIAL_8250_RSA */
134 struct uart_8250_port
{
135 struct uart_port port
;
136 struct timer_list timer
; /* "no irq" timer */
137 struct list_head list
; /* ports on this IRQ */
138 unsigned short capabilities
; /* port capabilities */
139 unsigned short bugs
; /* port bugs */
140 unsigned int tx_loadsz
; /* transmit fifo load size */
145 unsigned char mcr_mask
; /* mask of user bits */
146 unsigned char mcr_force
; /* mask of forced bits */
147 unsigned char cur_iotype
; /* Running I/O type */
150 * Some bits in registers are cleared on a read, so they must
151 * be saved whenever the register is read but the bits will not
152 * be immediately processed.
154 #define LSR_SAVE_FLAGS UART_LSR_BRK_ERROR_BITS
155 unsigned char lsr_saved_flags
;
156 #define MSR_SAVE_FLAGS UART_MSR_ANY_DELTA
157 unsigned char msr_saved_flags
;
161 struct hlist_node node
;
163 spinlock_t lock
; /* Protects list not the hash */
164 struct list_head
*head
;
167 #define NR_IRQ_HASH 32 /* Can be adjusted later */
168 static struct hlist_head irq_lists
[NR_IRQ_HASH
];
169 static DEFINE_MUTEX(hash_mutex
); /* Used to walk the hash */
172 * Here we define the default xmit fifo size used for each type of UART.
174 static const struct serial8250_config uart_config
[] = {
199 .fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_R_TRIG_10
,
200 .flags
= UART_CAP_FIFO
,
211 .flags
= UART_CAP_FIFO
| UART_CAP_EFR
| UART_CAP_SLEEP
,
217 .fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_R_TRIG_01
|
219 .flags
= UART_CAP_FIFO
| UART_CAP_EFR
| UART_CAP_SLEEP
,
225 .fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_R_TRIG_10
|
227 .flags
= UART_CAP_FIFO
| UART_CAP_SLEEP
| UART_CAP_AFE
,
235 .name
= "16C950/954",
238 .fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_R_TRIG_10
,
239 /* UART_CAP_EFR breaks billionon CF bluetooth card. */
240 .flags
= UART_CAP_FIFO
| UART_CAP_SLEEP
,
246 .fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_R_TRIG_01
|
248 .flags
= UART_CAP_FIFO
| UART_CAP_EFR
| UART_CAP_SLEEP
,
254 .fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_R_TRIG_10
,
255 .flags
= UART_CAP_FIFO
| UART_CAP_EFR
| UART_CAP_SLEEP
,
261 .fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_R_TRIG_11
,
262 .flags
= UART_CAP_FIFO
,
268 .fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_R_TRIG_10
,
269 .flags
= UART_CAP_FIFO
| UART_NATSEMI
,
275 .fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_R_TRIG_10
,
276 .flags
= UART_CAP_FIFO
| UART_CAP_UUE
,
282 .fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_R_TRIG_10
,
283 .flags
= UART_CAP_FIFO
,
289 .fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_R_TRIG_10
,
290 .flags
= UART_CAP_FIFO
,
296 .fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_R_TRIG_00
,
297 .flags
= UART_CAP_FIFO
| UART_CAP_AFE
,
303 .fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_R_TRIG_10
,
304 .flags
= UART_CAP_FIFO
| UART_CAP_AFE
,
308 #if defined(CONFIG_MIPS_ALCHEMY)
310 /* Au1x00 UART hardware has a weird register layout */
311 static const u8 au_io_in_map
[] = {
321 static const u8 au_io_out_map
[] = {
329 /* sane hardware needs no mapping */
330 static inline int map_8250_in_reg(struct uart_port
*p
, int offset
)
332 if (p
->iotype
!= UPIO_AU
)
334 return au_io_in_map
[offset
];
337 static inline int map_8250_out_reg(struct uart_port
*p
, int offset
)
339 if (p
->iotype
!= UPIO_AU
)
341 return au_io_out_map
[offset
];
344 #elif defined(CONFIG_SERIAL_8250_RM9K)
368 static inline int map_8250_in_reg(struct uart_port
*p
, int offset
)
370 if (p
->iotype
!= UPIO_RM9000
)
372 return regmap_in
[offset
];
375 static inline int map_8250_out_reg(struct uart_port
*p
, int offset
)
377 if (p
->iotype
!= UPIO_RM9000
)
379 return regmap_out
[offset
];
384 /* sane hardware needs no mapping */
385 #define map_8250_in_reg(up, offset) (offset)
386 #define map_8250_out_reg(up, offset) (offset)
390 static unsigned int hub6_serial_in(struct uart_port
*p
, int offset
)
392 offset
= map_8250_in_reg(p
, offset
) << p
->regshift
;
393 outb(p
->hub6
- 1 + offset
, p
->iobase
);
394 return inb(p
->iobase
+ 1);
397 static void hub6_serial_out(struct uart_port
*p
, int offset
, int value
)
399 offset
= map_8250_out_reg(p
, offset
) << p
->regshift
;
400 outb(p
->hub6
- 1 + offset
, p
->iobase
);
401 outb(value
, p
->iobase
+ 1);
404 static unsigned int mem_serial_in(struct uart_port
*p
, int offset
)
406 offset
= map_8250_in_reg(p
, offset
) << p
->regshift
;
407 return readb(p
->membase
+ offset
);
410 static void mem_serial_out(struct uart_port
*p
, int offset
, int value
)
412 offset
= map_8250_out_reg(p
, offset
) << p
->regshift
;
413 writeb(value
, p
->membase
+ offset
);
416 static void mem32_serial_out(struct uart_port
*p
, int offset
, int value
)
418 offset
= map_8250_out_reg(p
, offset
) << p
->regshift
;
419 writel(value
, p
->membase
+ offset
);
422 static unsigned int mem32_serial_in(struct uart_port
*p
, int offset
)
424 offset
= map_8250_in_reg(p
, offset
) << p
->regshift
;
425 return readl(p
->membase
+ offset
);
428 static unsigned int au_serial_in(struct uart_port
*p
, int offset
)
430 offset
= map_8250_in_reg(p
, offset
) << p
->regshift
;
431 return __raw_readl(p
->membase
+ offset
);
434 static void au_serial_out(struct uart_port
*p
, int offset
, int value
)
436 offset
= map_8250_out_reg(p
, offset
) << p
->regshift
;
437 __raw_writel(value
, p
->membase
+ offset
);
440 static unsigned int tsi_serial_in(struct uart_port
*p
, int offset
)
443 offset
= map_8250_in_reg(p
, offset
) << p
->regshift
;
444 if (offset
== UART_IIR
) {
445 tmp
= readl(p
->membase
+ (UART_IIR
& ~3));
446 return (tmp
>> 16) & 0xff; /* UART_IIR % 4 == 2 */
448 return readb(p
->membase
+ offset
);
451 static void tsi_serial_out(struct uart_port
*p
, int offset
, int value
)
453 offset
= map_8250_out_reg(p
, offset
) << p
->regshift
;
454 if (!((offset
== UART_IER
) && (value
& UART_IER_UUE
)))
455 writeb(value
, p
->membase
+ offset
);
458 /* Save the LCR value so it can be re-written when a Busy Detect IRQ occurs. */
459 static inline void dwapb_save_out_value(struct uart_port
*p
, int offset
,
462 struct uart_8250_port
*up
=
463 container_of(p
, struct uart_8250_port
, port
);
465 if (offset
== UART_LCR
)
469 /* Read the IER to ensure any interrupt is cleared before returning from ISR. */
470 static inline void dwapb_check_clear_ier(struct uart_port
*p
, int offset
)
472 if (offset
== UART_TX
|| offset
== UART_IER
)
473 p
->serial_in(p
, UART_IER
);
476 static void dwapb_serial_out(struct uart_port
*p
, int offset
, int value
)
478 int save_offset
= offset
;
479 offset
= map_8250_out_reg(p
, offset
) << p
->regshift
;
480 dwapb_save_out_value(p
, save_offset
, value
);
481 writeb(value
, p
->membase
+ offset
);
482 dwapb_check_clear_ier(p
, save_offset
);
485 static void dwapb32_serial_out(struct uart_port
*p
, int offset
, int value
)
487 int save_offset
= offset
;
488 offset
= map_8250_out_reg(p
, offset
) << p
->regshift
;
489 dwapb_save_out_value(p
, save_offset
, value
);
490 writel(value
, p
->membase
+ offset
);
491 dwapb_check_clear_ier(p
, save_offset
);
494 static unsigned int io_serial_in(struct uart_port
*p
, int offset
)
496 offset
= map_8250_in_reg(p
, offset
) << p
->regshift
;
497 return inb(p
->iobase
+ offset
);
500 static void io_serial_out(struct uart_port
*p
, int offset
, int value
)
502 offset
= map_8250_out_reg(p
, offset
) << p
->regshift
;
503 outb(value
, p
->iobase
+ offset
);
506 static void set_io_from_upio(struct uart_port
*p
)
508 struct uart_8250_port
*up
=
509 container_of(p
, struct uart_8250_port
, port
);
512 p
->serial_in
= hub6_serial_in
;
513 p
->serial_out
= hub6_serial_out
;
517 p
->serial_in
= mem_serial_in
;
518 p
->serial_out
= mem_serial_out
;
523 p
->serial_in
= mem32_serial_in
;
524 p
->serial_out
= mem32_serial_out
;
528 p
->serial_in
= au_serial_in
;
529 p
->serial_out
= au_serial_out
;
533 p
->serial_in
= tsi_serial_in
;
534 p
->serial_out
= tsi_serial_out
;
538 p
->serial_in
= mem_serial_in
;
539 p
->serial_out
= dwapb_serial_out
;
543 p
->serial_in
= mem32_serial_in
;
544 p
->serial_out
= dwapb32_serial_out
;
548 p
->serial_in
= io_serial_in
;
549 p
->serial_out
= io_serial_out
;
552 /* Remember loaded iotype */
553 up
->cur_iotype
= p
->iotype
;
557 serial_out_sync(struct uart_8250_port
*up
, int offset
, int value
)
559 struct uart_port
*p
= &up
->port
;
566 p
->serial_out(p
, offset
, value
);
567 p
->serial_in(p
, UART_LCR
); /* safe, no side-effects */
570 p
->serial_out(p
, offset
, value
);
574 #define serial_in(up, offset) \
575 (up->port.serial_in(&(up)->port, (offset)))
576 #define serial_out(up, offset, value) \
577 (up->port.serial_out(&(up)->port, (offset), (value)))
579 * We used to support using pause I/O for certain machines. We
580 * haven't supported this for a while, but just in case it's badly
581 * needed for certain old 386 machines, I've left these #define's
584 #define serial_inp(up, offset) serial_in(up, offset)
585 #define serial_outp(up, offset, value) serial_out(up, offset, value)
587 /* Uart divisor latch read */
588 static inline int _serial_dl_read(struct uart_8250_port
*up
)
590 return serial_inp(up
, UART_DLL
) | serial_inp(up
, UART_DLM
) << 8;
593 /* Uart divisor latch write */
594 static inline void _serial_dl_write(struct uart_8250_port
*up
, int value
)
596 serial_outp(up
, UART_DLL
, value
& 0xff);
597 serial_outp(up
, UART_DLM
, value
>> 8 & 0xff);
600 #if defined(CONFIG_MIPS_ALCHEMY)
601 /* Au1x00 haven't got a standard divisor latch */
602 static int serial_dl_read(struct uart_8250_port
*up
)
604 if (up
->port
.iotype
== UPIO_AU
)
605 return __raw_readl(up
->port
.membase
+ 0x28);
607 return _serial_dl_read(up
);
610 static void serial_dl_write(struct uart_8250_port
*up
, int value
)
612 if (up
->port
.iotype
== UPIO_AU
)
613 __raw_writel(value
, up
->port
.membase
+ 0x28);
615 _serial_dl_write(up
, value
);
617 #elif defined(CONFIG_SERIAL_8250_RM9K)
618 static int serial_dl_read(struct uart_8250_port
*up
)
620 return (up
->port
.iotype
== UPIO_RM9000
) ?
621 (((__raw_readl(up
->port
.membase
+ 0x10) << 8) |
622 (__raw_readl(up
->port
.membase
+ 0x08) & 0xff)) & 0xffff) :
626 static void serial_dl_write(struct uart_8250_port
*up
, int value
)
628 if (up
->port
.iotype
== UPIO_RM9000
) {
629 __raw_writel(value
, up
->port
.membase
+ 0x08);
630 __raw_writel(value
>> 8, up
->port
.membase
+ 0x10);
632 _serial_dl_write(up
, value
);
636 #define serial_dl_read(up) _serial_dl_read(up)
637 #define serial_dl_write(up, value) _serial_dl_write(up, value)
643 static void serial_icr_write(struct uart_8250_port
*up
, int offset
, int value
)
645 serial_out(up
, UART_SCR
, offset
);
646 serial_out(up
, UART_ICR
, value
);
649 static unsigned int serial_icr_read(struct uart_8250_port
*up
, int offset
)
653 serial_icr_write(up
, UART_ACR
, up
->acr
| UART_ACR_ICRRD
);
654 serial_out(up
, UART_SCR
, offset
);
655 value
= serial_in(up
, UART_ICR
);
656 serial_icr_write(up
, UART_ACR
, up
->acr
);
664 static void serial8250_clear_fifos(struct uart_8250_port
*p
)
666 if (p
->capabilities
& UART_CAP_FIFO
) {
667 serial_outp(p
, UART_FCR
, UART_FCR_ENABLE_FIFO
);
668 serial_outp(p
, UART_FCR
, UART_FCR_ENABLE_FIFO
|
669 UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
);
670 serial_outp(p
, UART_FCR
, 0);
675 * IER sleep support. UARTs which have EFRs need the "extended
676 * capability" bit enabled. Note that on XR16C850s, we need to
677 * reset LCR to write to IER.
679 static void serial8250_set_sleep(struct uart_8250_port
*p
, int sleep
)
681 if (p
->capabilities
& UART_CAP_SLEEP
) {
682 if (p
->capabilities
& UART_CAP_EFR
) {
683 serial_outp(p
, UART_LCR
, UART_LCR_CONF_MODE_B
);
684 serial_outp(p
, UART_EFR
, UART_EFR_ECB
);
685 serial_outp(p
, UART_LCR
, 0);
687 serial_outp(p
, UART_IER
, sleep
? UART_IERX_SLEEP
: 0);
688 if (p
->capabilities
& UART_CAP_EFR
) {
689 serial_outp(p
, UART_LCR
, UART_LCR_CONF_MODE_B
);
690 serial_outp(p
, UART_EFR
, 0);
691 serial_outp(p
, UART_LCR
, 0);
696 #ifdef CONFIG_SERIAL_8250_RSA
698 * Attempts to turn on the RSA FIFO. Returns zero on failure.
699 * We set the port uart clock rate if we succeed.
701 static int __enable_rsa(struct uart_8250_port
*up
)
706 mode
= serial_inp(up
, UART_RSA_MSR
);
707 result
= mode
& UART_RSA_MSR_FIFO
;
710 serial_outp(up
, UART_RSA_MSR
, mode
| UART_RSA_MSR_FIFO
);
711 mode
= serial_inp(up
, UART_RSA_MSR
);
712 result
= mode
& UART_RSA_MSR_FIFO
;
716 up
->port
.uartclk
= SERIAL_RSA_BAUD_BASE
* 16;
721 static void enable_rsa(struct uart_8250_port
*up
)
723 if (up
->port
.type
== PORT_RSA
) {
724 if (up
->port
.uartclk
!= SERIAL_RSA_BAUD_BASE
* 16) {
725 spin_lock_irq(&up
->port
.lock
);
727 spin_unlock_irq(&up
->port
.lock
);
729 if (up
->port
.uartclk
== SERIAL_RSA_BAUD_BASE
* 16)
730 serial_outp(up
, UART_RSA_FRR
, 0);
735 * Attempts to turn off the RSA FIFO. Returns zero on failure.
736 * It is unknown why interrupts were disabled in here. However,
737 * the caller is expected to preserve this behaviour by grabbing
738 * the spinlock before calling this function.
740 static void disable_rsa(struct uart_8250_port
*up
)
745 if (up
->port
.type
== PORT_RSA
&&
746 up
->port
.uartclk
== SERIAL_RSA_BAUD_BASE
* 16) {
747 spin_lock_irq(&up
->port
.lock
);
749 mode
= serial_inp(up
, UART_RSA_MSR
);
750 result
= !(mode
& UART_RSA_MSR_FIFO
);
753 serial_outp(up
, UART_RSA_MSR
, mode
& ~UART_RSA_MSR_FIFO
);
754 mode
= serial_inp(up
, UART_RSA_MSR
);
755 result
= !(mode
& UART_RSA_MSR_FIFO
);
759 up
->port
.uartclk
= SERIAL_RSA_BAUD_BASE_LO
* 16;
760 spin_unlock_irq(&up
->port
.lock
);
763 #endif /* CONFIG_SERIAL_8250_RSA */
766 * This is a quickie test to see how big the FIFO is.
767 * It doesn't work at all the time, more's the pity.
769 static int size_fifo(struct uart_8250_port
*up
)
771 unsigned char old_fcr
, old_mcr
, old_lcr
;
772 unsigned short old_dl
;
775 old_lcr
= serial_inp(up
, UART_LCR
);
776 serial_outp(up
, UART_LCR
, 0);
777 old_fcr
= serial_inp(up
, UART_FCR
);
778 old_mcr
= serial_inp(up
, UART_MCR
);
779 serial_outp(up
, UART_FCR
, UART_FCR_ENABLE_FIFO
|
780 UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
);
781 serial_outp(up
, UART_MCR
, UART_MCR_LOOP
);
782 serial_outp(up
, UART_LCR
, UART_LCR_CONF_MODE_A
);
783 old_dl
= serial_dl_read(up
);
784 serial_dl_write(up
, 0x0001);
785 serial_outp(up
, UART_LCR
, 0x03);
786 for (count
= 0; count
< 256; count
++)
787 serial_outp(up
, UART_TX
, count
);
788 mdelay(20);/* FIXME - schedule_timeout */
789 for (count
= 0; (serial_inp(up
, UART_LSR
) & UART_LSR_DR
) &&
790 (count
< 256); count
++)
791 serial_inp(up
, UART_RX
);
792 serial_outp(up
, UART_FCR
, old_fcr
);
793 serial_outp(up
, UART_MCR
, old_mcr
);
794 serial_outp(up
, UART_LCR
, UART_LCR_CONF_MODE_A
);
795 serial_dl_write(up
, old_dl
);
796 serial_outp(up
, UART_LCR
, old_lcr
);
802 * Read UART ID using the divisor method - set DLL and DLM to zero
803 * and the revision will be in DLL and device type in DLM. We
804 * preserve the device state across this.
806 static unsigned int autoconfig_read_divisor_id(struct uart_8250_port
*p
)
808 unsigned char old_dll
, old_dlm
, old_lcr
;
811 old_lcr
= serial_inp(p
, UART_LCR
);
812 serial_outp(p
, UART_LCR
, UART_LCR_CONF_MODE_A
);
814 old_dll
= serial_inp(p
, UART_DLL
);
815 old_dlm
= serial_inp(p
, UART_DLM
);
817 serial_outp(p
, UART_DLL
, 0);
818 serial_outp(p
, UART_DLM
, 0);
820 id
= serial_inp(p
, UART_DLL
) | serial_inp(p
, UART_DLM
) << 8;
822 serial_outp(p
, UART_DLL
, old_dll
);
823 serial_outp(p
, UART_DLM
, old_dlm
);
824 serial_outp(p
, UART_LCR
, old_lcr
);
830 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
831 * When this function is called we know it is at least a StarTech
832 * 16650 V2, but it might be one of several StarTech UARTs, or one of
833 * its clones. (We treat the broken original StarTech 16650 V1 as a
834 * 16550, and why not? Startech doesn't seem to even acknowledge its
837 * What evil have men's minds wrought...
839 static void autoconfig_has_efr(struct uart_8250_port
*up
)
841 unsigned int id1
, id2
, id3
, rev
;
844 * Everything with an EFR has SLEEP
846 up
->capabilities
|= UART_CAP_EFR
| UART_CAP_SLEEP
;
849 * First we check to see if it's an Oxford Semiconductor UART.
851 * If we have to do this here because some non-National
852 * Semiconductor clone chips lock up if you try writing to the
853 * LSR register (which serial_icr_read does)
857 * Check for Oxford Semiconductor 16C950.
859 * EFR [4] must be set else this test fails.
861 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
862 * claims that it's needed for 952 dual UART's (which are not
863 * recommended for new designs).
866 serial_out(up
, UART_LCR
, UART_LCR_CONF_MODE_B
);
867 serial_out(up
, UART_EFR
, UART_EFR_ECB
);
868 serial_out(up
, UART_LCR
, 0x00);
869 id1
= serial_icr_read(up
, UART_ID1
);
870 id2
= serial_icr_read(up
, UART_ID2
);
871 id3
= serial_icr_read(up
, UART_ID3
);
872 rev
= serial_icr_read(up
, UART_REV
);
874 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1
, id2
, id3
, rev
);
876 if (id1
== 0x16 && id2
== 0xC9 &&
877 (id3
== 0x50 || id3
== 0x52 || id3
== 0x54)) {
878 up
->port
.type
= PORT_16C950
;
881 * Enable work around for the Oxford Semiconductor 952 rev B
882 * chip which causes it to seriously miscalculate baud rates
885 if (id3
== 0x52 && rev
== 0x01)
886 up
->bugs
|= UART_BUG_QUOT
;
891 * We check for a XR16C850 by setting DLL and DLM to 0, and then
892 * reading back DLL and DLM. The chip type depends on the DLM
894 * 0x10 - XR16C850 and the DLL contains the chip revision.
898 id1
= autoconfig_read_divisor_id(up
);
899 DEBUG_AUTOCONF("850id=%04x ", id1
);
902 if (id2
== 0x10 || id2
== 0x12 || id2
== 0x14) {
903 up
->port
.type
= PORT_16850
;
908 * It wasn't an XR16C850.
910 * We distinguish between the '654 and the '650 by counting
911 * how many bytes are in the FIFO. I'm using this for now,
912 * since that's the technique that was sent to me in the
913 * serial driver update, but I'm not convinced this works.
914 * I've had problems doing this in the past. -TYT
916 if (size_fifo(up
) == 64)
917 up
->port
.type
= PORT_16654
;
919 up
->port
.type
= PORT_16650V2
;
923 * We detected a chip without a FIFO. Only two fall into
924 * this category - the original 8250 and the 16450. The
925 * 16450 has a scratch register (accessible with LCR=0)
927 static void autoconfig_8250(struct uart_8250_port
*up
)
929 unsigned char scratch
, status1
, status2
;
931 up
->port
.type
= PORT_8250
;
933 scratch
= serial_in(up
, UART_SCR
);
934 serial_outp(up
, UART_SCR
, 0xa5);
935 status1
= serial_in(up
, UART_SCR
);
936 serial_outp(up
, UART_SCR
, 0x5a);
937 status2
= serial_in(up
, UART_SCR
);
938 serial_outp(up
, UART_SCR
, scratch
);
940 if (status1
== 0xa5 && status2
== 0x5a)
941 up
->port
.type
= PORT_16450
;
944 static int broken_efr(struct uart_8250_port
*up
)
947 * Exar ST16C2550 "A2" devices incorrectly detect as
948 * having an EFR, and report an ID of 0x0201. See
949 * http://linux.derkeiler.com/Mailing-Lists/Kernel/2004-11/4812.html
951 if (autoconfig_read_divisor_id(up
) == 0x0201 && size_fifo(up
) == 16)
957 static inline int ns16550a_goto_highspeed(struct uart_8250_port
*up
)
959 unsigned char status
;
961 status
= serial_in(up
, 0x04); /* EXCR2 */
962 #define PRESL(x) ((x) & 0x30)
963 if (PRESL(status
) == 0x10) {
964 /* already in high speed mode */
967 status
&= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
968 status
|= 0x10; /* 1.625 divisor for baud_base --> 921600 */
969 serial_outp(up
, 0x04, status
);
975 * We know that the chip has FIFOs. Does it have an EFR? The
976 * EFR is located in the same register position as the IIR and
977 * we know the top two bits of the IIR are currently set. The
978 * EFR should contain zero. Try to read the EFR.
980 static void autoconfig_16550a(struct uart_8250_port
*up
)
982 unsigned char status1
, status2
;
983 unsigned int iersave
;
985 up
->port
.type
= PORT_16550A
;
986 up
->capabilities
|= UART_CAP_FIFO
;
989 * Check for presence of the EFR when DLAB is set.
990 * Only ST16C650V1 UARTs pass this test.
992 serial_outp(up
, UART_LCR
, UART_LCR_CONF_MODE_A
);
993 if (serial_in(up
, UART_EFR
) == 0) {
994 serial_outp(up
, UART_EFR
, 0xA8);
995 if (serial_in(up
, UART_EFR
) != 0) {
996 DEBUG_AUTOCONF("EFRv1 ");
997 up
->port
.type
= PORT_16650
;
998 up
->capabilities
|= UART_CAP_EFR
| UART_CAP_SLEEP
;
1000 DEBUG_AUTOCONF("Motorola 8xxx DUART ");
1002 serial_outp(up
, UART_EFR
, 0);
1007 * Maybe it requires 0xbf to be written to the LCR.
1008 * (other ST16C650V2 UARTs, TI16C752A, etc)
1010 serial_outp(up
, UART_LCR
, UART_LCR_CONF_MODE_B
);
1011 if (serial_in(up
, UART_EFR
) == 0 && !broken_efr(up
)) {
1012 DEBUG_AUTOCONF("EFRv2 ");
1013 autoconfig_has_efr(up
);
1018 * Check for a National Semiconductor SuperIO chip.
1019 * Attempt to switch to bank 2, read the value of the LOOP bit
1020 * from EXCR1. Switch back to bank 0, change it in MCR. Then
1021 * switch back to bank 2, read it from EXCR1 again and check
1022 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
1024 serial_outp(up
, UART_LCR
, 0);
1025 status1
= serial_in(up
, UART_MCR
);
1026 serial_outp(up
, UART_LCR
, 0xE0);
1027 status2
= serial_in(up
, 0x02); /* EXCR1 */
1029 if (!((status2
^ status1
) & UART_MCR_LOOP
)) {
1030 serial_outp(up
, UART_LCR
, 0);
1031 serial_outp(up
, UART_MCR
, status1
^ UART_MCR_LOOP
);
1032 serial_outp(up
, UART_LCR
, 0xE0);
1033 status2
= serial_in(up
, 0x02); /* EXCR1 */
1034 serial_outp(up
, UART_LCR
, 0);
1035 serial_outp(up
, UART_MCR
, status1
);
1037 if ((status2
^ status1
) & UART_MCR_LOOP
) {
1038 unsigned short quot
;
1040 serial_outp(up
, UART_LCR
, 0xE0);
1042 quot
= serial_dl_read(up
);
1045 if (ns16550a_goto_highspeed(up
))
1046 serial_dl_write(up
, quot
);
1048 serial_outp(up
, UART_LCR
, 0);
1050 up
->port
.uartclk
= 921600*16;
1051 up
->port
.type
= PORT_NS16550A
;
1052 up
->capabilities
|= UART_NATSEMI
;
1058 * No EFR. Try to detect a TI16750, which only sets bit 5 of
1059 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
1060 * Try setting it with and without DLAB set. Cheap clones
1061 * set bit 5 without DLAB set.
1063 serial_outp(up
, UART_LCR
, 0);
1064 serial_outp(up
, UART_FCR
, UART_FCR_ENABLE_FIFO
| UART_FCR7_64BYTE
);
1065 status1
= serial_in(up
, UART_IIR
) >> 5;
1066 serial_outp(up
, UART_FCR
, UART_FCR_ENABLE_FIFO
);
1067 serial_outp(up
, UART_LCR
, UART_LCR_CONF_MODE_A
);
1068 serial_outp(up
, UART_FCR
, UART_FCR_ENABLE_FIFO
| UART_FCR7_64BYTE
);
1069 status2
= serial_in(up
, UART_IIR
) >> 5;
1070 serial_outp(up
, UART_FCR
, UART_FCR_ENABLE_FIFO
);
1071 serial_outp(up
, UART_LCR
, 0);
1073 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1
, status2
);
1075 if (status1
== 6 && status2
== 7) {
1076 up
->port
.type
= PORT_16750
;
1077 up
->capabilities
|= UART_CAP_AFE
| UART_CAP_SLEEP
;
1082 * Try writing and reading the UART_IER_UUE bit (b6).
1083 * If it works, this is probably one of the Xscale platform's
1085 * We're going to explicitly set the UUE bit to 0 before
1086 * trying to write and read a 1 just to make sure it's not
1087 * already a 1 and maybe locked there before we even start start.
1089 iersave
= serial_in(up
, UART_IER
);
1090 serial_outp(up
, UART_IER
, iersave
& ~UART_IER_UUE
);
1091 if (!(serial_in(up
, UART_IER
) & UART_IER_UUE
)) {
1093 * OK it's in a known zero state, try writing and reading
1094 * without disturbing the current state of the other bits.
1096 serial_outp(up
, UART_IER
, iersave
| UART_IER_UUE
);
1097 if (serial_in(up
, UART_IER
) & UART_IER_UUE
) {
1100 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
1102 DEBUG_AUTOCONF("Xscale ");
1103 up
->port
.type
= PORT_XSCALE
;
1104 up
->capabilities
|= UART_CAP_UUE
;
1109 * If we got here we couldn't force the IER_UUE bit to 0.
1110 * Log it and continue.
1112 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
1114 serial_outp(up
, UART_IER
, iersave
);
1117 * We distinguish between 16550A and U6 16550A by counting
1118 * how many bytes are in the FIFO.
1120 if (up
->port
.type
== PORT_16550A
&& size_fifo(up
) == 64) {
1121 up
->port
.type
= PORT_U6_16550A
;
1122 up
->capabilities
|= UART_CAP_AFE
;
1127 * This routine is called by rs_init() to initialize a specific serial
1128 * port. It determines what type of UART chip this serial port is
1129 * using: 8250, 16450, 16550, 16550A. The important question is
1130 * whether or not this UART is a 16550A or not, since this will
1131 * determine whether or not we can use its FIFO features or not.
1133 static void autoconfig(struct uart_8250_port
*up
, unsigned int probeflags
)
1135 unsigned char status1
, scratch
, scratch2
, scratch3
;
1136 unsigned char save_lcr
, save_mcr
;
1137 unsigned long flags
;
1139 if (!up
->port
.iobase
&& !up
->port
.mapbase
&& !up
->port
.membase
)
1142 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04lx, 0x%p): ",
1143 serial_index(&up
->port
), up
->port
.iobase
, up
->port
.membase
);
1146 * We really do need global IRQs disabled here - we're going to
1147 * be frobbing the chips IRQ enable register to see if it exists.
1149 spin_lock_irqsave(&up
->port
.lock
, flags
);
1151 up
->capabilities
= 0;
1154 if (!(up
->port
.flags
& UPF_BUGGY_UART
)) {
1156 * Do a simple existence test first; if we fail this,
1157 * there's no point trying anything else.
1159 * 0x80 is used as a nonsense port to prevent against
1160 * false positives due to ISA bus float. The
1161 * assumption is that 0x80 is a non-existent port;
1162 * which should be safe since include/asm/io.h also
1163 * makes this assumption.
1165 * Note: this is safe as long as MCR bit 4 is clear
1166 * and the device is in "PC" mode.
1168 scratch
= serial_inp(up
, UART_IER
);
1169 serial_outp(up
, UART_IER
, 0);
1174 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1175 * 16C754B) allow only to modify them if an EFR bit is set.
1177 scratch2
= serial_inp(up
, UART_IER
) & 0x0f;
1178 serial_outp(up
, UART_IER
, 0x0F);
1182 scratch3
= serial_inp(up
, UART_IER
) & 0x0f;
1183 serial_outp(up
, UART_IER
, scratch
);
1184 if (scratch2
!= 0 || scratch3
!= 0x0F) {
1186 * We failed; there's nothing here
1188 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1189 scratch2
, scratch3
);
1194 save_mcr
= serial_in(up
, UART_MCR
);
1195 save_lcr
= serial_in(up
, UART_LCR
);
1198 * Check to see if a UART is really there. Certain broken
1199 * internal modems based on the Rockwell chipset fail this
1200 * test, because they apparently don't implement the loopback
1201 * test mode. So this test is skipped on the COM 1 through
1202 * COM 4 ports. This *should* be safe, since no board
1203 * manufacturer would be stupid enough to design a board
1204 * that conflicts with COM 1-4 --- we hope!
1206 if (!(up
->port
.flags
& UPF_SKIP_TEST
)) {
1207 serial_outp(up
, UART_MCR
, UART_MCR_LOOP
| 0x0A);
1208 status1
= serial_inp(up
, UART_MSR
) & 0xF0;
1209 serial_outp(up
, UART_MCR
, save_mcr
);
1210 if (status1
!= 0x90) {
1211 DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1218 * We're pretty sure there's a port here. Lets find out what
1219 * type of port it is. The IIR top two bits allows us to find
1220 * out if it's 8250 or 16450, 16550, 16550A or later. This
1221 * determines what we test for next.
1223 * We also initialise the EFR (if any) to zero for later. The
1224 * EFR occupies the same register location as the FCR and IIR.
1226 serial_outp(up
, UART_LCR
, UART_LCR_CONF_MODE_B
);
1227 serial_outp(up
, UART_EFR
, 0);
1228 serial_outp(up
, UART_LCR
, 0);
1230 serial_outp(up
, UART_FCR
, UART_FCR_ENABLE_FIFO
);
1231 scratch
= serial_in(up
, UART_IIR
) >> 6;
1233 DEBUG_AUTOCONF("iir=%d ", scratch
);
1237 autoconfig_8250(up
);
1240 up
->port
.type
= PORT_UNKNOWN
;
1243 up
->port
.type
= PORT_16550
;
1246 autoconfig_16550a(up
);
1250 #ifdef CONFIG_SERIAL_8250_RSA
1252 * Only probe for RSA ports if we got the region.
1254 if (up
->port
.type
== PORT_16550A
&& probeflags
& PROBE_RSA
) {
1257 for (i
= 0 ; i
< probe_rsa_count
; ++i
) {
1258 if (probe_rsa
[i
] == up
->port
.iobase
&&
1260 up
->port
.type
= PORT_RSA
;
1267 serial_outp(up
, UART_LCR
, save_lcr
);
1269 if (up
->capabilities
!= uart_config
[up
->port
.type
].flags
) {
1271 "ttyS%d: detected caps %08x should be %08x\n",
1272 serial_index(&up
->port
), up
->capabilities
,
1273 uart_config
[up
->port
.type
].flags
);
1276 up
->port
.fifosize
= uart_config
[up
->port
.type
].fifo_size
;
1277 up
->capabilities
= uart_config
[up
->port
.type
].flags
;
1278 up
->tx_loadsz
= uart_config
[up
->port
.type
].tx_loadsz
;
1280 if (up
->port
.type
== PORT_UNKNOWN
)
1286 #ifdef CONFIG_SERIAL_8250_RSA
1287 if (up
->port
.type
== PORT_RSA
)
1288 serial_outp(up
, UART_RSA_FRR
, 0);
1290 serial_outp(up
, UART_MCR
, save_mcr
);
1291 serial8250_clear_fifos(up
);
1292 serial_in(up
, UART_RX
);
1293 if (up
->capabilities
& UART_CAP_UUE
)
1294 serial_outp(up
, UART_IER
, UART_IER_UUE
);
1296 serial_outp(up
, UART_IER
, 0);
1299 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
1300 DEBUG_AUTOCONF("type=%s\n", uart_config
[up
->port
.type
].name
);
1303 static void autoconfig_irq(struct uart_8250_port
*up
)
1305 unsigned char save_mcr
, save_ier
;
1306 unsigned char save_ICP
= 0;
1307 unsigned int ICP
= 0;
1311 if (up
->port
.flags
& UPF_FOURPORT
) {
1312 ICP
= (up
->port
.iobase
& 0xfe0) | 0x1f;
1313 save_ICP
= inb_p(ICP
);
1318 /* forget possible initially masked and pending IRQ */
1319 probe_irq_off(probe_irq_on());
1320 save_mcr
= serial_inp(up
, UART_MCR
);
1321 save_ier
= serial_inp(up
, UART_IER
);
1322 serial_outp(up
, UART_MCR
, UART_MCR_OUT1
| UART_MCR_OUT2
);
1324 irqs
= probe_irq_on();
1325 serial_outp(up
, UART_MCR
, 0);
1327 if (up
->port
.flags
& UPF_FOURPORT
) {
1328 serial_outp(up
, UART_MCR
,
1329 UART_MCR_DTR
| UART_MCR_RTS
);
1331 serial_outp(up
, UART_MCR
,
1332 UART_MCR_DTR
| UART_MCR_RTS
| UART_MCR_OUT2
);
1334 serial_outp(up
, UART_IER
, 0x0f); /* enable all intrs */
1335 (void)serial_inp(up
, UART_LSR
);
1336 (void)serial_inp(up
, UART_RX
);
1337 (void)serial_inp(up
, UART_IIR
);
1338 (void)serial_inp(up
, UART_MSR
);
1339 serial_outp(up
, UART_TX
, 0xFF);
1341 irq
= probe_irq_off(irqs
);
1343 serial_outp(up
, UART_MCR
, save_mcr
);
1344 serial_outp(up
, UART_IER
, save_ier
);
1346 if (up
->port
.flags
& UPF_FOURPORT
)
1347 outb_p(save_ICP
, ICP
);
1349 up
->port
.irq
= (irq
> 0) ? irq
: 0;
1352 static inline void __stop_tx(struct uart_8250_port
*p
)
1354 if (p
->ier
& UART_IER_THRI
) {
1355 p
->ier
&= ~UART_IER_THRI
;
1356 serial_out(p
, UART_IER
, p
->ier
);
1360 static void serial8250_stop_tx(struct uart_port
*port
)
1362 struct uart_8250_port
*up
=
1363 container_of(port
, struct uart_8250_port
, port
);
1368 * We really want to stop the transmitter from sending.
1370 if (up
->port
.type
== PORT_16C950
) {
1371 up
->acr
|= UART_ACR_TXDIS
;
1372 serial_icr_write(up
, UART_ACR
, up
->acr
);
1376 static void transmit_chars(struct uart_8250_port
*up
);
1378 static void serial8250_start_tx(struct uart_port
*port
)
1380 struct uart_8250_port
*up
=
1381 container_of(port
, struct uart_8250_port
, port
);
1383 if (!(up
->ier
& UART_IER_THRI
)) {
1384 up
->ier
|= UART_IER_THRI
;
1385 serial_out(up
, UART_IER
, up
->ier
);
1387 if (up
->bugs
& UART_BUG_TXEN
) {
1389 lsr
= serial_in(up
, UART_LSR
);
1390 up
->lsr_saved_flags
|= lsr
& LSR_SAVE_FLAGS
;
1391 if ((up
->port
.type
== PORT_RM9000
) ?
1392 (lsr
& UART_LSR_THRE
) :
1393 (lsr
& UART_LSR_TEMT
))
1399 * Re-enable the transmitter if we disabled it.
1401 if (up
->port
.type
== PORT_16C950
&& up
->acr
& UART_ACR_TXDIS
) {
1402 up
->acr
&= ~UART_ACR_TXDIS
;
1403 serial_icr_write(up
, UART_ACR
, up
->acr
);
1407 static void serial8250_stop_rx(struct uart_port
*port
)
1409 struct uart_8250_port
*up
=
1410 container_of(port
, struct uart_8250_port
, port
);
1412 up
->ier
&= ~UART_IER_RLSI
;
1413 up
->port
.read_status_mask
&= ~UART_LSR_DR
;
1414 serial_out(up
, UART_IER
, up
->ier
);
1417 static void serial8250_enable_ms(struct uart_port
*port
)
1419 struct uart_8250_port
*up
=
1420 container_of(port
, struct uart_8250_port
, port
);
1422 /* no MSR capabilities */
1423 if (up
->bugs
& UART_BUG_NOMSR
)
1426 up
->ier
|= UART_IER_MSI
;
1427 serial_out(up
, UART_IER
, up
->ier
);
1431 receive_chars(struct uart_8250_port
*up
, unsigned int *status
)
1433 struct tty_struct
*tty
= up
->port
.state
->port
.tty
;
1434 unsigned char ch
, lsr
= *status
;
1435 int max_count
= 256;
1439 if (likely(lsr
& UART_LSR_DR
))
1440 ch
= serial_inp(up
, UART_RX
);
1443 * Intel 82571 has a Serial Over Lan device that will
1444 * set UART_LSR_BI without setting UART_LSR_DR when
1445 * it receives a break. To avoid reading from the
1446 * receive buffer without UART_LSR_DR bit set, we
1447 * just force the read character to be 0
1452 up
->port
.icount
.rx
++;
1454 lsr
|= up
->lsr_saved_flags
;
1455 up
->lsr_saved_flags
= 0;
1457 if (unlikely(lsr
& UART_LSR_BRK_ERROR_BITS
)) {
1459 * For statistics only
1461 if (lsr
& UART_LSR_BI
) {
1462 lsr
&= ~(UART_LSR_FE
| UART_LSR_PE
);
1463 up
->port
.icount
.brk
++;
1465 * We do the SysRQ and SAK checking
1466 * here because otherwise the break
1467 * may get masked by ignore_status_mask
1468 * or read_status_mask.
1470 if (uart_handle_break(&up
->port
))
1472 } else if (lsr
& UART_LSR_PE
)
1473 up
->port
.icount
.parity
++;
1474 else if (lsr
& UART_LSR_FE
)
1475 up
->port
.icount
.frame
++;
1476 if (lsr
& UART_LSR_OE
)
1477 up
->port
.icount
.overrun
++;
1480 * Mask off conditions which should be ignored.
1482 lsr
&= up
->port
.read_status_mask
;
1484 if (lsr
& UART_LSR_BI
) {
1485 DEBUG_INTR("handling break....");
1487 } else if (lsr
& UART_LSR_PE
)
1489 else if (lsr
& UART_LSR_FE
)
1492 if (uart_handle_sysrq_char(&up
->port
, ch
))
1495 uart_insert_char(&up
->port
, lsr
, UART_LSR_OE
, ch
, flag
);
1498 lsr
= serial_inp(up
, UART_LSR
);
1499 } while ((lsr
& (UART_LSR_DR
| UART_LSR_BI
)) && (max_count
-- > 0));
1500 spin_unlock(&up
->port
.lock
);
1501 tty_flip_buffer_push(tty
);
1502 spin_lock(&up
->port
.lock
);
1506 static void transmit_chars(struct uart_8250_port
*up
)
1508 struct circ_buf
*xmit
= &up
->port
.state
->xmit
;
1511 if (up
->port
.x_char
) {
1512 serial_outp(up
, UART_TX
, up
->port
.x_char
);
1513 up
->port
.icount
.tx
++;
1514 up
->port
.x_char
= 0;
1517 if (uart_tx_stopped(&up
->port
)) {
1518 serial8250_stop_tx(&up
->port
);
1521 if (uart_circ_empty(xmit
)) {
1526 count
= up
->tx_loadsz
;
1528 serial_out(up
, UART_TX
, xmit
->buf
[xmit
->tail
]);
1529 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
1530 up
->port
.icount
.tx
++;
1531 if (uart_circ_empty(xmit
))
1533 } while (--count
> 0);
1535 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
1536 uart_write_wakeup(&up
->port
);
1538 DEBUG_INTR("THRE...");
1540 if (uart_circ_empty(xmit
))
1544 static unsigned int check_modem_status(struct uart_8250_port
*up
)
1546 unsigned int status
= serial_in(up
, UART_MSR
);
1548 status
|= up
->msr_saved_flags
;
1549 up
->msr_saved_flags
= 0;
1550 if (status
& UART_MSR_ANY_DELTA
&& up
->ier
& UART_IER_MSI
&&
1551 up
->port
.state
!= NULL
) {
1552 if (status
& UART_MSR_TERI
)
1553 up
->port
.icount
.rng
++;
1554 if (status
& UART_MSR_DDSR
)
1555 up
->port
.icount
.dsr
++;
1556 if (status
& UART_MSR_DDCD
)
1557 uart_handle_dcd_change(&up
->port
, status
& UART_MSR_DCD
);
1558 if (status
& UART_MSR_DCTS
)
1559 uart_handle_cts_change(&up
->port
, status
& UART_MSR_CTS
);
1561 wake_up_interruptible(&up
->port
.state
->port
.delta_msr_wait
);
1568 * This handles the interrupt from one port.
1570 static void serial8250_handle_port(struct uart_8250_port
*up
)
1572 unsigned int status
;
1573 unsigned long flags
;
1575 spin_lock_irqsave(&up
->port
.lock
, flags
);
1577 status
= serial_inp(up
, UART_LSR
);
1579 DEBUG_INTR("status = %x...", status
);
1581 if (status
& (UART_LSR_DR
| UART_LSR_BI
))
1582 receive_chars(up
, &status
);
1583 check_modem_status(up
);
1584 if (status
& UART_LSR_THRE
)
1587 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
1591 * This is the serial driver's interrupt routine.
1593 * Arjan thinks the old way was overly complex, so it got simplified.
1594 * Alan disagrees, saying that need the complexity to handle the weird
1595 * nature of ISA shared interrupts. (This is a special exception.)
1597 * In order to handle ISA shared interrupts properly, we need to check
1598 * that all ports have been serviced, and therefore the ISA interrupt
1599 * line has been de-asserted.
1601 * This means we need to loop through all ports. checking that they
1602 * don't have an interrupt pending.
1604 static irqreturn_t
serial8250_interrupt(int irq
, void *dev_id
)
1606 struct irq_info
*i
= dev_id
;
1607 struct list_head
*l
, *end
= NULL
;
1608 int pass_counter
= 0, handled
= 0;
1610 DEBUG_INTR("serial8250_interrupt(%d)...", irq
);
1612 spin_lock(&i
->lock
);
1616 struct uart_8250_port
*up
;
1619 up
= list_entry(l
, struct uart_8250_port
, list
);
1621 iir
= serial_in(up
, UART_IIR
);
1622 if (!(iir
& UART_IIR_NO_INT
)) {
1623 serial8250_handle_port(up
);
1628 } else if ((up
->port
.iotype
== UPIO_DWAPB
||
1629 up
->port
.iotype
== UPIO_DWAPB32
) &&
1630 (iir
& UART_IIR_BUSY
) == UART_IIR_BUSY
) {
1631 /* The DesignWare APB UART has an Busy Detect (0x07)
1632 * interrupt meaning an LCR write attempt occurred while the
1633 * UART was busy. The interrupt must be cleared by reading
1634 * the UART status register (USR) and the LCR re-written. */
1635 unsigned int status
;
1636 status
= *(volatile u32
*)up
->port
.private_data
;
1637 serial_out(up
, UART_LCR
, up
->lcr
);
1642 } else if (end
== NULL
)
1647 if (l
== i
->head
&& pass_counter
++ > PASS_LIMIT
) {
1648 /* If we hit this, we're dead. */
1649 printk_ratelimited(KERN_ERR
1650 "serial8250: too much work for irq%d\n", irq
);
1655 spin_unlock(&i
->lock
);
1657 DEBUG_INTR("end.\n");
1659 return IRQ_RETVAL(handled
);
1663 * To support ISA shared interrupts, we need to have one interrupt
1664 * handler that ensures that the IRQ line has been deasserted
1665 * before returning. Failing to do this will result in the IRQ
1666 * line being stuck active, and, since ISA irqs are edge triggered,
1667 * no more IRQs will be seen.
1669 static void serial_do_unlink(struct irq_info
*i
, struct uart_8250_port
*up
)
1671 spin_lock_irq(&i
->lock
);
1673 if (!list_empty(i
->head
)) {
1674 if (i
->head
== &up
->list
)
1675 i
->head
= i
->head
->next
;
1676 list_del(&up
->list
);
1678 BUG_ON(i
->head
!= &up
->list
);
1681 spin_unlock_irq(&i
->lock
);
1682 /* List empty so throw away the hash node */
1683 if (i
->head
== NULL
) {
1684 hlist_del(&i
->node
);
1689 static int serial_link_irq_chain(struct uart_8250_port
*up
)
1691 struct hlist_head
*h
;
1692 struct hlist_node
*n
;
1694 int ret
, irq_flags
= up
->port
.flags
& UPF_SHARE_IRQ
? IRQF_SHARED
: 0;
1696 mutex_lock(&hash_mutex
);
1698 h
= &irq_lists
[up
->port
.irq
% NR_IRQ_HASH
];
1700 hlist_for_each(n
, h
) {
1701 i
= hlist_entry(n
, struct irq_info
, node
);
1702 if (i
->irq
== up
->port
.irq
)
1707 i
= kzalloc(sizeof(struct irq_info
), GFP_KERNEL
);
1709 mutex_unlock(&hash_mutex
);
1712 spin_lock_init(&i
->lock
);
1713 i
->irq
= up
->port
.irq
;
1714 hlist_add_head(&i
->node
, h
);
1716 mutex_unlock(&hash_mutex
);
1718 spin_lock_irq(&i
->lock
);
1721 list_add(&up
->list
, i
->head
);
1722 spin_unlock_irq(&i
->lock
);
1726 INIT_LIST_HEAD(&up
->list
);
1727 i
->head
= &up
->list
;
1728 spin_unlock_irq(&i
->lock
);
1729 irq_flags
|= up
->port
.irqflags
;
1730 ret
= request_irq(up
->port
.irq
, serial8250_interrupt
,
1731 irq_flags
, "serial", i
);
1733 serial_do_unlink(i
, up
);
1739 static void serial_unlink_irq_chain(struct uart_8250_port
*up
)
1742 struct hlist_node
*n
;
1743 struct hlist_head
*h
;
1745 mutex_lock(&hash_mutex
);
1747 h
= &irq_lists
[up
->port
.irq
% NR_IRQ_HASH
];
1749 hlist_for_each(n
, h
) {
1750 i
= hlist_entry(n
, struct irq_info
, node
);
1751 if (i
->irq
== up
->port
.irq
)
1756 BUG_ON(i
->head
== NULL
);
1758 if (list_empty(i
->head
))
1759 free_irq(up
->port
.irq
, i
);
1761 serial_do_unlink(i
, up
);
1762 mutex_unlock(&hash_mutex
);
1766 * This function is used to handle ports that do not have an
1767 * interrupt. This doesn't work very well for 16450's, but gives
1768 * barely passable results for a 16550A. (Although at the expense
1769 * of much CPU overhead).
1771 static void serial8250_timeout(unsigned long data
)
1773 struct uart_8250_port
*up
= (struct uart_8250_port
*)data
;
1776 iir
= serial_in(up
, UART_IIR
);
1777 if (!(iir
& UART_IIR_NO_INT
))
1778 serial8250_handle_port(up
);
1779 mod_timer(&up
->timer
, jiffies
+ uart_poll_timeout(&up
->port
));
1782 static void serial8250_backup_timeout(unsigned long data
)
1784 struct uart_8250_port
*up
= (struct uart_8250_port
*)data
;
1785 unsigned int iir
, ier
= 0, lsr
;
1786 unsigned long flags
;
1789 * Must disable interrupts or else we risk racing with the interrupt
1792 if (is_real_interrupt(up
->port
.irq
)) {
1793 ier
= serial_in(up
, UART_IER
);
1794 serial_out(up
, UART_IER
, 0);
1797 iir
= serial_in(up
, UART_IIR
);
1800 * This should be a safe test for anyone who doesn't trust the
1801 * IIR bits on their UART, but it's specifically designed for
1802 * the "Diva" UART used on the management processor on many HP
1803 * ia64 and parisc boxes.
1805 spin_lock_irqsave(&up
->port
.lock
, flags
);
1806 lsr
= serial_in(up
, UART_LSR
);
1807 up
->lsr_saved_flags
|= lsr
& LSR_SAVE_FLAGS
;
1808 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
1809 if ((iir
& UART_IIR_NO_INT
) && (up
->ier
& UART_IER_THRI
) &&
1810 (!uart_circ_empty(&up
->port
.state
->xmit
) || up
->port
.x_char
) &&
1811 (lsr
& UART_LSR_THRE
)) {
1812 iir
&= ~(UART_IIR_ID
| UART_IIR_NO_INT
);
1813 iir
|= UART_IIR_THRI
;
1816 if (!(iir
& UART_IIR_NO_INT
))
1817 serial8250_handle_port(up
);
1819 if (is_real_interrupt(up
->port
.irq
))
1820 serial_out(up
, UART_IER
, ier
);
1822 /* Standard timer interval plus 0.2s to keep the port running */
1823 mod_timer(&up
->timer
,
1824 jiffies
+ uart_poll_timeout(&up
->port
) + HZ
/ 5);
1827 static unsigned int serial8250_tx_empty(struct uart_port
*port
)
1829 struct uart_8250_port
*up
=
1830 container_of(port
, struct uart_8250_port
, port
);
1831 unsigned long flags
;
1834 spin_lock_irqsave(&up
->port
.lock
, flags
);
1835 lsr
= serial_in(up
, UART_LSR
);
1836 up
->lsr_saved_flags
|= lsr
& LSR_SAVE_FLAGS
;
1837 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
1839 return (lsr
& BOTH_EMPTY
) == BOTH_EMPTY
? TIOCSER_TEMT
: 0;
1842 static unsigned int serial8250_get_mctrl(struct uart_port
*port
)
1844 struct uart_8250_port
*up
=
1845 container_of(port
, struct uart_8250_port
, port
);
1846 unsigned int status
;
1849 status
= check_modem_status(up
);
1852 if (status
& UART_MSR_DCD
)
1854 if (status
& UART_MSR_RI
)
1856 if (status
& UART_MSR_DSR
)
1858 if (status
& UART_MSR_CTS
)
1863 static void serial8250_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
1865 struct uart_8250_port
*up
=
1866 container_of(port
, struct uart_8250_port
, port
);
1867 unsigned char mcr
= 0;
1869 if (mctrl
& TIOCM_RTS
)
1870 mcr
|= UART_MCR_RTS
;
1871 if (mctrl
& TIOCM_DTR
)
1872 mcr
|= UART_MCR_DTR
;
1873 if (mctrl
& TIOCM_OUT1
)
1874 mcr
|= UART_MCR_OUT1
;
1875 if (mctrl
& TIOCM_OUT2
)
1876 mcr
|= UART_MCR_OUT2
;
1877 if (mctrl
& TIOCM_LOOP
)
1878 mcr
|= UART_MCR_LOOP
;
1880 mcr
= (mcr
& up
->mcr_mask
) | up
->mcr_force
| up
->mcr
;
1882 serial_out(up
, UART_MCR
, mcr
);
1885 static void serial8250_break_ctl(struct uart_port
*port
, int break_state
)
1887 struct uart_8250_port
*up
=
1888 container_of(port
, struct uart_8250_port
, port
);
1889 unsigned long flags
;
1891 spin_lock_irqsave(&up
->port
.lock
, flags
);
1892 if (break_state
== -1)
1893 up
->lcr
|= UART_LCR_SBC
;
1895 up
->lcr
&= ~UART_LCR_SBC
;
1896 serial_out(up
, UART_LCR
, up
->lcr
);
1897 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
1901 * Wait for transmitter & holding register to empty
1903 static void wait_for_xmitr(struct uart_8250_port
*up
, int bits
)
1905 unsigned int status
, tmout
= 10000;
1907 /* Wait up to 10ms for the character(s) to be sent. */
1909 status
= serial_in(up
, UART_LSR
);
1911 up
->lsr_saved_flags
|= status
& LSR_SAVE_FLAGS
;
1913 if ((status
& bits
) == bits
)
1920 /* Wait up to 1s for flow control if necessary */
1921 if (up
->port
.flags
& UPF_CONS_FLOW
) {
1923 for (tmout
= 1000000; tmout
; tmout
--) {
1924 unsigned int msr
= serial_in(up
, UART_MSR
);
1925 up
->msr_saved_flags
|= msr
& MSR_SAVE_FLAGS
;
1926 if (msr
& UART_MSR_CTS
)
1929 touch_nmi_watchdog();
1934 #ifdef CONFIG_CONSOLE_POLL
1936 * Console polling routines for writing and reading from the uart while
1937 * in an interrupt or debug context.
1940 static int serial8250_get_poll_char(struct uart_port
*port
)
1942 struct uart_8250_port
*up
=
1943 container_of(port
, struct uart_8250_port
, port
);
1944 unsigned char lsr
= serial_inp(up
, UART_LSR
);
1946 if (!(lsr
& UART_LSR_DR
))
1947 return NO_POLL_CHAR
;
1949 return serial_inp(up
, UART_RX
);
1953 static void serial8250_put_poll_char(struct uart_port
*port
,
1957 struct uart_8250_port
*up
=
1958 container_of(port
, struct uart_8250_port
, port
);
1961 * First save the IER then disable the interrupts
1963 ier
= serial_in(up
, UART_IER
);
1964 if (up
->capabilities
& UART_CAP_UUE
)
1965 serial_out(up
, UART_IER
, UART_IER_UUE
);
1967 serial_out(up
, UART_IER
, 0);
1969 wait_for_xmitr(up
, BOTH_EMPTY
);
1971 * Send the character out.
1972 * If a LF, also do CR...
1974 serial_out(up
, UART_TX
, c
);
1976 wait_for_xmitr(up
, BOTH_EMPTY
);
1977 serial_out(up
, UART_TX
, 13);
1981 * Finally, wait for transmitter to become empty
1982 * and restore the IER
1984 wait_for_xmitr(up
, BOTH_EMPTY
);
1985 serial_out(up
, UART_IER
, ier
);
1988 #endif /* CONFIG_CONSOLE_POLL */
1990 static int serial8250_startup(struct uart_port
*port
)
1992 struct uart_8250_port
*up
=
1993 container_of(port
, struct uart_8250_port
, port
);
1994 unsigned long flags
;
1995 unsigned char lsr
, iir
;
1998 up
->port
.fifosize
= uart_config
[up
->port
.type
].fifo_size
;
1999 up
->tx_loadsz
= uart_config
[up
->port
.type
].tx_loadsz
;
2000 up
->capabilities
= uart_config
[up
->port
.type
].flags
;
2003 if (up
->port
.iotype
!= up
->cur_iotype
)
2004 set_io_from_upio(port
);
2006 if (up
->port
.type
== PORT_16C950
) {
2007 /* Wake up and initialize UART */
2009 serial_outp(up
, UART_LCR
, UART_LCR_CONF_MODE_B
);
2010 serial_outp(up
, UART_EFR
, UART_EFR_ECB
);
2011 serial_outp(up
, UART_IER
, 0);
2012 serial_outp(up
, UART_LCR
, 0);
2013 serial_icr_write(up
, UART_CSR
, 0); /* Reset the UART */
2014 serial_outp(up
, UART_LCR
, 0xBF);
2015 serial_outp(up
, UART_EFR
, UART_EFR_ECB
);
2016 serial_outp(up
, UART_LCR
, 0);
2019 #ifdef CONFIG_SERIAL_8250_RSA
2021 * If this is an RSA port, see if we can kick it up to the
2022 * higher speed clock.
2028 * Clear the FIFO buffers and disable them.
2029 * (they will be reenabled in set_termios())
2031 serial8250_clear_fifos(up
);
2034 * Clear the interrupt registers.
2036 (void) serial_inp(up
, UART_LSR
);
2037 (void) serial_inp(up
, UART_RX
);
2038 (void) serial_inp(up
, UART_IIR
);
2039 (void) serial_inp(up
, UART_MSR
);
2042 * At this point, there's no way the LSR could still be 0xff;
2043 * if it is, then bail out, because there's likely no UART
2046 if (!(up
->port
.flags
& UPF_BUGGY_UART
) &&
2047 (serial_inp(up
, UART_LSR
) == 0xff)) {
2048 printk(KERN_INFO
"ttyS%d: LSR safety check engaged!\n",
2049 serial_index(&up
->port
));
2054 * For a XR16C850, we need to set the trigger levels
2056 if (up
->port
.type
== PORT_16850
) {
2059 serial_outp(up
, UART_LCR
, UART_LCR_CONF_MODE_B
);
2061 fctr
= serial_inp(up
, UART_FCTR
) & ~(UART_FCTR_RX
|UART_FCTR_TX
);
2062 serial_outp(up
, UART_FCTR
, fctr
| UART_FCTR_TRGD
| UART_FCTR_RX
);
2063 serial_outp(up
, UART_TRG
, UART_TRG_96
);
2064 serial_outp(up
, UART_FCTR
, fctr
| UART_FCTR_TRGD
| UART_FCTR_TX
);
2065 serial_outp(up
, UART_TRG
, UART_TRG_96
);
2067 serial_outp(up
, UART_LCR
, 0);
2070 if (is_real_interrupt(up
->port
.irq
)) {
2073 * Test for UARTs that do not reassert THRE when the
2074 * transmitter is idle and the interrupt has already
2075 * been cleared. Real 16550s should always reassert
2076 * this interrupt whenever the transmitter is idle and
2077 * the interrupt is enabled. Delays are necessary to
2078 * allow register changes to become visible.
2080 spin_lock_irqsave(&up
->port
.lock
, flags
);
2081 if (up
->port
.irqflags
& IRQF_SHARED
)
2082 disable_irq_nosync(up
->port
.irq
);
2084 wait_for_xmitr(up
, UART_LSR_THRE
);
2085 serial_out_sync(up
, UART_IER
, UART_IER_THRI
);
2086 udelay(1); /* allow THRE to set */
2087 iir1
= serial_in(up
, UART_IIR
);
2088 serial_out(up
, UART_IER
, 0);
2089 serial_out_sync(up
, UART_IER
, UART_IER_THRI
);
2090 udelay(1); /* allow a working UART time to re-assert THRE */
2091 iir
= serial_in(up
, UART_IIR
);
2092 serial_out(up
, UART_IER
, 0);
2094 if (up
->port
.irqflags
& IRQF_SHARED
)
2095 enable_irq(up
->port
.irq
);
2096 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
2099 * If the interrupt is not reasserted, setup a timer to
2100 * kick the UART on a regular basis.
2102 if (!(iir1
& UART_IIR_NO_INT
) && (iir
& UART_IIR_NO_INT
)) {
2103 up
->bugs
|= UART_BUG_THRE
;
2104 pr_debug("ttyS%d - using backup timer\n",
2105 serial_index(port
));
2110 * The above check will only give an accurate result the first time
2111 * the port is opened so this value needs to be preserved.
2113 if (up
->bugs
& UART_BUG_THRE
) {
2114 up
->timer
.function
= serial8250_backup_timeout
;
2115 up
->timer
.data
= (unsigned long)up
;
2116 mod_timer(&up
->timer
, jiffies
+
2117 uart_poll_timeout(port
) + HZ
/ 5);
2121 * If the "interrupt" for this port doesn't correspond with any
2122 * hardware interrupt, we use a timer-based system. The original
2123 * driver used to do this with IRQ0.
2125 if (!is_real_interrupt(up
->port
.irq
)) {
2126 up
->timer
.data
= (unsigned long)up
;
2127 mod_timer(&up
->timer
, jiffies
+ uart_poll_timeout(port
));
2129 retval
= serial_link_irq_chain(up
);
2135 * Now, initialize the UART
2137 serial_outp(up
, UART_LCR
, UART_LCR_WLEN8
);
2139 spin_lock_irqsave(&up
->port
.lock
, flags
);
2140 if (up
->port
.flags
& UPF_FOURPORT
) {
2141 if (!is_real_interrupt(up
->port
.irq
))
2142 up
->port
.mctrl
|= TIOCM_OUT1
;
2145 * Most PC uarts need OUT2 raised to enable interrupts.
2147 if (is_real_interrupt(up
->port
.irq
))
2148 up
->port
.mctrl
|= TIOCM_OUT2
;
2150 serial8250_set_mctrl(&up
->port
, up
->port
.mctrl
);
2152 /* Serial over Lan (SoL) hack:
2153 Intel 8257x Gigabit ethernet chips have a
2154 16550 emulation, to be used for Serial Over Lan.
2155 Those chips take a longer time than a normal
2156 serial device to signalize that a transmission
2157 data was queued. Due to that, the above test generally
2158 fails. One solution would be to delay the reading of
2159 iir. However, this is not reliable, since the timeout
2160 is variable. So, let's just don't test if we receive
2161 TX irq. This way, we'll never enable UART_BUG_TXEN.
2163 if (skip_txen_test
|| up
->port
.flags
& UPF_NO_TXEN_TEST
)
2164 goto dont_test_tx_en
;
2167 * Do a quick test to see if we receive an
2168 * interrupt when we enable the TX irq.
2170 serial_outp(up
, UART_IER
, UART_IER_THRI
);
2171 lsr
= serial_in(up
, UART_LSR
);
2172 iir
= serial_in(up
, UART_IIR
);
2173 serial_outp(up
, UART_IER
, 0);
2175 if (lsr
& UART_LSR_TEMT
&& iir
& UART_IIR_NO_INT
) {
2176 if (!(up
->bugs
& UART_BUG_TXEN
)) {
2177 up
->bugs
|= UART_BUG_TXEN
;
2178 pr_debug("ttyS%d - enabling bad tx status workarounds\n",
2179 serial_index(port
));
2182 up
->bugs
&= ~UART_BUG_TXEN
;
2186 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
2189 * Clear the interrupt registers again for luck, and clear the
2190 * saved flags to avoid getting false values from polling
2191 * routines or the previous session.
2193 serial_inp(up
, UART_LSR
);
2194 serial_inp(up
, UART_RX
);
2195 serial_inp(up
, UART_IIR
);
2196 serial_inp(up
, UART_MSR
);
2197 up
->lsr_saved_flags
= 0;
2198 up
->msr_saved_flags
= 0;
2201 * Finally, enable interrupts. Note: Modem status interrupts
2202 * are set via set_termios(), which will be occurring imminently
2203 * anyway, so we don't enable them here.
2205 up
->ier
= UART_IER_RLSI
| UART_IER_RDI
;
2206 serial_outp(up
, UART_IER
, up
->ier
);
2208 if (up
->port
.flags
& UPF_FOURPORT
) {
2211 * Enable interrupts on the AST Fourport board
2213 icp
= (up
->port
.iobase
& 0xfe0) | 0x01f;
2221 static void serial8250_shutdown(struct uart_port
*port
)
2223 struct uart_8250_port
*up
=
2224 container_of(port
, struct uart_8250_port
, port
);
2225 unsigned long flags
;
2228 * Disable interrupts from this port
2231 serial_outp(up
, UART_IER
, 0);
2233 spin_lock_irqsave(&up
->port
.lock
, flags
);
2234 if (up
->port
.flags
& UPF_FOURPORT
) {
2235 /* reset interrupts on the AST Fourport board */
2236 inb((up
->port
.iobase
& 0xfe0) | 0x1f);
2237 up
->port
.mctrl
|= TIOCM_OUT1
;
2239 up
->port
.mctrl
&= ~TIOCM_OUT2
;
2241 serial8250_set_mctrl(&up
->port
, up
->port
.mctrl
);
2242 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
2245 * Disable break condition and FIFOs
2247 serial_out(up
, UART_LCR
, serial_inp(up
, UART_LCR
) & ~UART_LCR_SBC
);
2248 serial8250_clear_fifos(up
);
2250 #ifdef CONFIG_SERIAL_8250_RSA
2252 * Reset the RSA board back to 115kbps compat mode.
2258 * Read data port to reset things, and then unlink from
2261 (void) serial_in(up
, UART_RX
);
2263 del_timer_sync(&up
->timer
);
2264 up
->timer
.function
= serial8250_timeout
;
2265 if (is_real_interrupt(up
->port
.irq
))
2266 serial_unlink_irq_chain(up
);
2269 static unsigned int serial8250_get_divisor(struct uart_port
*port
, unsigned int baud
)
2274 * Handle magic divisors for baud rates above baud_base on
2275 * SMSC SuperIO chips.
2277 if ((port
->flags
& UPF_MAGIC_MULTIPLIER
) &&
2278 baud
== (port
->uartclk
/4))
2280 else if ((port
->flags
& UPF_MAGIC_MULTIPLIER
) &&
2281 baud
== (port
->uartclk
/8))
2284 quot
= uart_get_divisor(port
, baud
);
2290 serial8250_do_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
2291 struct ktermios
*old
)
2293 struct uart_8250_port
*up
=
2294 container_of(port
, struct uart_8250_port
, port
);
2295 unsigned char cval
, fcr
= 0;
2296 unsigned long flags
;
2297 unsigned int baud
, quot
;
2299 switch (termios
->c_cflag
& CSIZE
) {
2301 cval
= UART_LCR_WLEN5
;
2304 cval
= UART_LCR_WLEN6
;
2307 cval
= UART_LCR_WLEN7
;
2311 cval
= UART_LCR_WLEN8
;
2315 if (termios
->c_cflag
& CSTOPB
)
2316 cval
|= UART_LCR_STOP
;
2317 if (termios
->c_cflag
& PARENB
)
2318 cval
|= UART_LCR_PARITY
;
2319 if (!(termios
->c_cflag
& PARODD
))
2320 cval
|= UART_LCR_EPAR
;
2322 if (termios
->c_cflag
& CMSPAR
)
2323 cval
|= UART_LCR_SPAR
;
2327 * Ask the core to calculate the divisor for us.
2329 baud
= uart_get_baud_rate(port
, termios
, old
,
2330 port
->uartclk
/ 16 / 0xffff,
2331 port
->uartclk
/ 16);
2332 quot
= serial8250_get_divisor(port
, baud
);
2335 * Oxford Semi 952 rev B workaround
2337 if (up
->bugs
& UART_BUG_QUOT
&& (quot
& 0xff) == 0)
2340 if (up
->capabilities
& UART_CAP_FIFO
&& up
->port
.fifosize
> 1) {
2342 fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_TRIGGER_1
;
2344 fcr
= uart_config
[up
->port
.type
].fcr
;
2348 * MCR-based auto flow control. When AFE is enabled, RTS will be
2349 * deasserted when the receive FIFO contains more characters than
2350 * the trigger, or the MCR RTS bit is cleared. In the case where
2351 * the remote UART is not using CTS auto flow control, we must
2352 * have sufficient FIFO entries for the latency of the remote
2353 * UART to respond. IOW, at least 32 bytes of FIFO.
2355 if (up
->capabilities
& UART_CAP_AFE
&& up
->port
.fifosize
>= 32) {
2356 up
->mcr
&= ~UART_MCR_AFE
;
2357 if (termios
->c_cflag
& CRTSCTS
)
2358 up
->mcr
|= UART_MCR_AFE
;
2362 * Ok, we're now changing the port state. Do it with
2363 * interrupts disabled.
2365 spin_lock_irqsave(&up
->port
.lock
, flags
);
2368 * Update the per-port timeout.
2370 uart_update_timeout(port
, termios
->c_cflag
, baud
);
2372 up
->port
.read_status_mask
= UART_LSR_OE
| UART_LSR_THRE
| UART_LSR_DR
;
2373 if (termios
->c_iflag
& INPCK
)
2374 up
->port
.read_status_mask
|= UART_LSR_FE
| UART_LSR_PE
;
2375 if (termios
->c_iflag
& (BRKINT
| PARMRK
))
2376 up
->port
.read_status_mask
|= UART_LSR_BI
;
2379 * Characteres to ignore
2381 up
->port
.ignore_status_mask
= 0;
2382 if (termios
->c_iflag
& IGNPAR
)
2383 up
->port
.ignore_status_mask
|= UART_LSR_PE
| UART_LSR_FE
;
2384 if (termios
->c_iflag
& IGNBRK
) {
2385 up
->port
.ignore_status_mask
|= UART_LSR_BI
;
2387 * If we're ignoring parity and break indicators,
2388 * ignore overruns too (for real raw support).
2390 if (termios
->c_iflag
& IGNPAR
)
2391 up
->port
.ignore_status_mask
|= UART_LSR_OE
;
2395 * ignore all characters if CREAD is not set
2397 if ((termios
->c_cflag
& CREAD
) == 0)
2398 up
->port
.ignore_status_mask
|= UART_LSR_DR
;
2401 * CTS flow control flag and modem status interrupts
2403 up
->ier
&= ~UART_IER_MSI
;
2404 if (!(up
->bugs
& UART_BUG_NOMSR
) &&
2405 UART_ENABLE_MS(&up
->port
, termios
->c_cflag
))
2406 up
->ier
|= UART_IER_MSI
;
2407 if (up
->capabilities
& UART_CAP_UUE
)
2408 up
->ier
|= UART_IER_UUE
| UART_IER_RTOIE
;
2410 serial_out(up
, UART_IER
, up
->ier
);
2412 if (up
->capabilities
& UART_CAP_EFR
) {
2413 unsigned char efr
= 0;
2415 * TI16C752/Startech hardware flow control. FIXME:
2416 * - TI16C752 requires control thresholds to be set.
2417 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2419 if (termios
->c_cflag
& CRTSCTS
)
2420 efr
|= UART_EFR_CTS
;
2422 serial_outp(up
, UART_LCR
, UART_LCR_CONF_MODE_B
);
2423 serial_outp(up
, UART_EFR
, efr
);
2426 #ifdef CONFIG_ARCH_OMAP
2427 /* Workaround to enable 115200 baud on OMAP1510 internal ports */
2428 if (cpu_is_omap1510() && is_omap_port(up
)) {
2429 if (baud
== 115200) {
2431 serial_out(up
, UART_OMAP_OSC_12M_SEL
, 1);
2433 serial_out(up
, UART_OMAP_OSC_12M_SEL
, 0);
2437 if (up
->capabilities
& UART_NATSEMI
) {
2438 /* Switch to bank 2 not bank 1, to avoid resetting EXCR2 */
2439 serial_outp(up
, UART_LCR
, 0xe0);
2441 serial_outp(up
, UART_LCR
, cval
| UART_LCR_DLAB
);/* set DLAB */
2444 serial_dl_write(up
, quot
);
2447 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2448 * is written without DLAB set, this mode will be disabled.
2450 if (up
->port
.type
== PORT_16750
)
2451 serial_outp(up
, UART_FCR
, fcr
);
2453 serial_outp(up
, UART_LCR
, cval
); /* reset DLAB */
2454 up
->lcr
= cval
; /* Save LCR */
2455 if (up
->port
.type
!= PORT_16750
) {
2456 if (fcr
& UART_FCR_ENABLE_FIFO
) {
2457 /* emulated UARTs (Lucent Venus 167x) need two steps */
2458 serial_outp(up
, UART_FCR
, UART_FCR_ENABLE_FIFO
);
2460 serial_outp(up
, UART_FCR
, fcr
); /* set fcr */
2462 serial8250_set_mctrl(&up
->port
, up
->port
.mctrl
);
2463 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
2464 /* Don't rewrite B0 */
2465 if (tty_termios_baud_rate(termios
))
2466 tty_termios_encode_baud_rate(termios
, baud
, baud
);
2468 EXPORT_SYMBOL(serial8250_do_set_termios
);
2471 serial8250_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
2472 struct ktermios
*old
)
2474 if (port
->set_termios
)
2475 port
->set_termios(port
, termios
, old
);
2477 serial8250_do_set_termios(port
, termios
, old
);
2481 serial8250_set_ldisc(struct uart_port
*port
, int new)
2484 port
->flags
|= UPF_HARDPPS_CD
;
2485 serial8250_enable_ms(port
);
2487 port
->flags
&= ~UPF_HARDPPS_CD
;
2491 void serial8250_do_pm(struct uart_port
*port
, unsigned int state
,
2492 unsigned int oldstate
)
2494 struct uart_8250_port
*p
=
2495 container_of(port
, struct uart_8250_port
, port
);
2497 serial8250_set_sleep(p
, state
!= 0);
2499 EXPORT_SYMBOL(serial8250_do_pm
);
2502 serial8250_pm(struct uart_port
*port
, unsigned int state
,
2503 unsigned int oldstate
)
2506 port
->pm(port
, state
, oldstate
);
2508 serial8250_do_pm(port
, state
, oldstate
);
2511 static unsigned int serial8250_port_size(struct uart_8250_port
*pt
)
2513 if (pt
->port
.iotype
== UPIO_AU
)
2515 #ifdef CONFIG_ARCH_OMAP
2516 if (is_omap_port(pt
))
2517 return 0x16 << pt
->port
.regshift
;
2519 return 8 << pt
->port
.regshift
;
2523 * Resource handling.
2525 static int serial8250_request_std_resource(struct uart_8250_port
*up
)
2527 unsigned int size
= serial8250_port_size(up
);
2530 switch (up
->port
.iotype
) {
2537 if (!up
->port
.mapbase
)
2540 if (!request_mem_region(up
->port
.mapbase
, size
, "serial")) {
2545 if (up
->port
.flags
& UPF_IOREMAP
) {
2546 up
->port
.membase
= ioremap_nocache(up
->port
.mapbase
,
2548 if (!up
->port
.membase
) {
2549 release_mem_region(up
->port
.mapbase
, size
);
2557 if (!request_region(up
->port
.iobase
, size
, "serial"))
2564 static void serial8250_release_std_resource(struct uart_8250_port
*up
)
2566 unsigned int size
= serial8250_port_size(up
);
2568 switch (up
->port
.iotype
) {
2575 if (!up
->port
.mapbase
)
2578 if (up
->port
.flags
& UPF_IOREMAP
) {
2579 iounmap(up
->port
.membase
);
2580 up
->port
.membase
= NULL
;
2583 release_mem_region(up
->port
.mapbase
, size
);
2588 release_region(up
->port
.iobase
, size
);
2593 static int serial8250_request_rsa_resource(struct uart_8250_port
*up
)
2595 unsigned long start
= UART_RSA_BASE
<< up
->port
.regshift
;
2596 unsigned int size
= 8 << up
->port
.regshift
;
2599 switch (up
->port
.iotype
) {
2602 start
+= up
->port
.iobase
;
2603 if (request_region(start
, size
, "serial-rsa"))
2613 static void serial8250_release_rsa_resource(struct uart_8250_port
*up
)
2615 unsigned long offset
= UART_RSA_BASE
<< up
->port
.regshift
;
2616 unsigned int size
= 8 << up
->port
.regshift
;
2618 switch (up
->port
.iotype
) {
2621 release_region(up
->port
.iobase
+ offset
, size
);
2626 static void serial8250_release_port(struct uart_port
*port
)
2628 struct uart_8250_port
*up
=
2629 container_of(port
, struct uart_8250_port
, port
);
2631 serial8250_release_std_resource(up
);
2632 if (up
->port
.type
== PORT_RSA
)
2633 serial8250_release_rsa_resource(up
);
2636 static int serial8250_request_port(struct uart_port
*port
)
2638 struct uart_8250_port
*up
=
2639 container_of(port
, struct uart_8250_port
, port
);
2642 ret
= serial8250_request_std_resource(up
);
2643 if (ret
== 0 && up
->port
.type
== PORT_RSA
) {
2644 ret
= serial8250_request_rsa_resource(up
);
2646 serial8250_release_std_resource(up
);
2652 static void serial8250_config_port(struct uart_port
*port
, int flags
)
2654 struct uart_8250_port
*up
=
2655 container_of(port
, struct uart_8250_port
, port
);
2656 int probeflags
= PROBE_ANY
;
2660 * Find the region that we can probe for. This in turn
2661 * tells us whether we can probe for the type of port.
2663 ret
= serial8250_request_std_resource(up
);
2667 ret
= serial8250_request_rsa_resource(up
);
2669 probeflags
&= ~PROBE_RSA
;
2671 if (up
->port
.iotype
!= up
->cur_iotype
)
2672 set_io_from_upio(port
);
2674 if (flags
& UART_CONFIG_TYPE
)
2675 autoconfig(up
, probeflags
);
2677 /* if access method is AU, it is a 16550 with a quirk */
2678 if (up
->port
.type
== PORT_16550A
&& up
->port
.iotype
== UPIO_AU
)
2679 up
->bugs
|= UART_BUG_NOMSR
;
2681 if (up
->port
.type
!= PORT_UNKNOWN
&& flags
& UART_CONFIG_IRQ
)
2684 if (up
->port
.type
!= PORT_RSA
&& probeflags
& PROBE_RSA
)
2685 serial8250_release_rsa_resource(up
);
2686 if (up
->port
.type
== PORT_UNKNOWN
)
2687 serial8250_release_std_resource(up
);
2691 serial8250_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
2693 if (ser
->irq
>= nr_irqs
|| ser
->irq
< 0 ||
2694 ser
->baud_base
< 9600 || ser
->type
< PORT_UNKNOWN
||
2695 ser
->type
>= ARRAY_SIZE(uart_config
) || ser
->type
== PORT_CIRRUS
||
2696 ser
->type
== PORT_STARTECH
)
2702 serial8250_type(struct uart_port
*port
)
2704 int type
= port
->type
;
2706 if (type
>= ARRAY_SIZE(uart_config
))
2708 return uart_config
[type
].name
;
2711 static struct uart_ops serial8250_pops
= {
2712 .tx_empty
= serial8250_tx_empty
,
2713 .set_mctrl
= serial8250_set_mctrl
,
2714 .get_mctrl
= serial8250_get_mctrl
,
2715 .stop_tx
= serial8250_stop_tx
,
2716 .start_tx
= serial8250_start_tx
,
2717 .stop_rx
= serial8250_stop_rx
,
2718 .enable_ms
= serial8250_enable_ms
,
2719 .break_ctl
= serial8250_break_ctl
,
2720 .startup
= serial8250_startup
,
2721 .shutdown
= serial8250_shutdown
,
2722 .set_termios
= serial8250_set_termios
,
2723 .set_ldisc
= serial8250_set_ldisc
,
2724 .pm
= serial8250_pm
,
2725 .type
= serial8250_type
,
2726 .release_port
= serial8250_release_port
,
2727 .request_port
= serial8250_request_port
,
2728 .config_port
= serial8250_config_port
,
2729 .verify_port
= serial8250_verify_port
,
2730 #ifdef CONFIG_CONSOLE_POLL
2731 .poll_get_char
= serial8250_get_poll_char
,
2732 .poll_put_char
= serial8250_put_poll_char
,
2736 static struct uart_8250_port serial8250_ports
[UART_NR
];
2738 static void (*serial8250_isa_config
)(int port
, struct uart_port
*up
,
2739 unsigned short *capabilities
);
2741 void serial8250_set_isa_configurator(
2742 void (*v
)(int port
, struct uart_port
*up
, unsigned short *capabilities
))
2744 serial8250_isa_config
= v
;
2746 EXPORT_SYMBOL(serial8250_set_isa_configurator
);
2748 static void __init
serial8250_isa_init_ports(void)
2750 struct uart_8250_port
*up
;
2751 static int first
= 1;
2758 for (i
= 0; i
< nr_uarts
; i
++) {
2759 struct uart_8250_port
*up
= &serial8250_ports
[i
];
2762 spin_lock_init(&up
->port
.lock
);
2764 init_timer(&up
->timer
);
2765 up
->timer
.function
= serial8250_timeout
;
2768 * ALPHA_KLUDGE_MCR needs to be killed.
2770 up
->mcr_mask
= ~ALPHA_KLUDGE_MCR
;
2771 up
->mcr_force
= ALPHA_KLUDGE_MCR
;
2773 up
->port
.ops
= &serial8250_pops
;
2777 irqflag
= IRQF_SHARED
;
2779 for (i
= 0, up
= serial8250_ports
;
2780 i
< ARRAY_SIZE(old_serial_port
) && i
< nr_uarts
;
2782 up
->port
.iobase
= old_serial_port
[i
].port
;
2783 up
->port
.irq
= irq_canonicalize(old_serial_port
[i
].irq
);
2784 up
->port
.irqflags
= old_serial_port
[i
].irqflags
;
2785 up
->port
.uartclk
= old_serial_port
[i
].baud_base
* 16;
2786 up
->port
.flags
= old_serial_port
[i
].flags
;
2787 up
->port
.hub6
= old_serial_port
[i
].hub6
;
2788 up
->port
.membase
= old_serial_port
[i
].iomem_base
;
2789 up
->port
.iotype
= old_serial_port
[i
].io_type
;
2790 up
->port
.regshift
= old_serial_port
[i
].iomem_reg_shift
;
2791 set_io_from_upio(&up
->port
);
2792 up
->port
.irqflags
|= irqflag
;
2793 if (serial8250_isa_config
!= NULL
)
2794 serial8250_isa_config(i
, &up
->port
, &up
->capabilities
);
2800 serial8250_init_fixed_type_port(struct uart_8250_port
*up
, unsigned int type
)
2802 up
->port
.type
= type
;
2803 up
->port
.fifosize
= uart_config
[type
].fifo_size
;
2804 up
->capabilities
= uart_config
[type
].flags
;
2805 up
->tx_loadsz
= uart_config
[type
].tx_loadsz
;
2809 serial8250_register_ports(struct uart_driver
*drv
, struct device
*dev
)
2813 for (i
= 0; i
< nr_uarts
; i
++) {
2814 struct uart_8250_port
*up
= &serial8250_ports
[i
];
2815 up
->cur_iotype
= 0xFF;
2818 serial8250_isa_init_ports();
2820 for (i
= 0; i
< nr_uarts
; i
++) {
2821 struct uart_8250_port
*up
= &serial8250_ports
[i
];
2825 if (up
->port
.flags
& UPF_FIXED_TYPE
)
2826 serial8250_init_fixed_type_port(up
, up
->port
.type
);
2828 uart_add_one_port(drv
, &up
->port
);
2832 #ifdef CONFIG_SERIAL_8250_CONSOLE
2834 static void serial8250_console_putchar(struct uart_port
*port
, int ch
)
2836 struct uart_8250_port
*up
=
2837 container_of(port
, struct uart_8250_port
, port
);
2839 wait_for_xmitr(up
, UART_LSR_THRE
);
2840 serial_out(up
, UART_TX
, ch
);
2844 * Print a string to the serial port trying not to disturb
2845 * any possible real use of the port...
2847 * The console_lock must be held when we get here.
2850 serial8250_console_write(struct console
*co
, const char *s
, unsigned int count
)
2852 struct uart_8250_port
*up
= &serial8250_ports
[co
->index
];
2853 unsigned long flags
;
2857 touch_nmi_watchdog();
2859 local_irq_save(flags
);
2860 if (up
->port
.sysrq
) {
2861 /* serial8250_handle_port() already took the lock */
2863 } else if (oops_in_progress
) {
2864 locked
= spin_trylock(&up
->port
.lock
);
2866 spin_lock(&up
->port
.lock
);
2869 * First save the IER then disable the interrupts
2871 ier
= serial_in(up
, UART_IER
);
2873 if (up
->capabilities
& UART_CAP_UUE
)
2874 serial_out(up
, UART_IER
, UART_IER_UUE
);
2876 serial_out(up
, UART_IER
, 0);
2878 uart_console_write(&up
->port
, s
, count
, serial8250_console_putchar
);
2881 * Finally, wait for transmitter to become empty
2882 * and restore the IER
2884 wait_for_xmitr(up
, BOTH_EMPTY
);
2885 serial_out(up
, UART_IER
, ier
);
2888 * The receive handling will happen properly because the
2889 * receive ready bit will still be set; it is not cleared
2890 * on read. However, modem control will not, we must
2891 * call it if we have saved something in the saved flags
2892 * while processing with interrupts off.
2894 if (up
->msr_saved_flags
)
2895 check_modem_status(up
);
2898 spin_unlock(&up
->port
.lock
);
2899 local_irq_restore(flags
);
2902 static int __init
serial8250_console_setup(struct console
*co
, char *options
)
2904 struct uart_port
*port
;
2911 * Check whether an invalid uart number has been specified, and
2912 * if so, search for the first available port that does have
2915 if (co
->index
>= nr_uarts
)
2917 port
= &serial8250_ports
[co
->index
].port
;
2918 if (!port
->iobase
&& !port
->membase
)
2922 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
2924 return uart_set_options(port
, co
, baud
, parity
, bits
, flow
);
2927 static int serial8250_console_early_setup(void)
2929 return serial8250_find_port_for_earlycon();
2932 static struct console serial8250_console
= {
2934 .write
= serial8250_console_write
,
2935 .device
= uart_console_device
,
2936 .setup
= serial8250_console_setup
,
2937 .early_setup
= serial8250_console_early_setup
,
2938 .flags
= CON_PRINTBUFFER
| CON_ANYTIME
,
2940 .data
= &serial8250_reg
,
2943 static int __init
serial8250_console_init(void)
2945 if (nr_uarts
> UART_NR
)
2948 serial8250_isa_init_ports();
2949 register_console(&serial8250_console
);
2952 console_initcall(serial8250_console_init
);
2954 int serial8250_find_port(struct uart_port
*p
)
2957 struct uart_port
*port
;
2959 for (line
= 0; line
< nr_uarts
; line
++) {
2960 port
= &serial8250_ports
[line
].port
;
2961 if (uart_match_port(p
, port
))
2967 #define SERIAL8250_CONSOLE &serial8250_console
2969 #define SERIAL8250_CONSOLE NULL
2972 static struct uart_driver serial8250_reg
= {
2973 .owner
= THIS_MODULE
,
2974 .driver_name
= "serial",
2978 .cons
= SERIAL8250_CONSOLE
,
2982 * early_serial_setup - early registration for 8250 ports
2984 * Setup an 8250 port structure prior to console initialisation. Use
2985 * after console initialisation will cause undefined behaviour.
2987 int __init
early_serial_setup(struct uart_port
*port
)
2989 struct uart_port
*p
;
2991 if (port
->line
>= ARRAY_SIZE(serial8250_ports
))
2994 serial8250_isa_init_ports();
2995 p
= &serial8250_ports
[port
->line
].port
;
2996 p
->iobase
= port
->iobase
;
2997 p
->membase
= port
->membase
;
2999 p
->irqflags
= port
->irqflags
;
3000 p
->uartclk
= port
->uartclk
;
3001 p
->fifosize
= port
->fifosize
;
3002 p
->regshift
= port
->regshift
;
3003 p
->iotype
= port
->iotype
;
3004 p
->flags
= port
->flags
;
3005 p
->mapbase
= port
->mapbase
;
3006 p
->private_data
= port
->private_data
;
3007 p
->type
= port
->type
;
3008 p
->line
= port
->line
;
3010 set_io_from_upio(p
);
3011 if (port
->serial_in
)
3012 p
->serial_in
= port
->serial_in
;
3013 if (port
->serial_out
)
3014 p
->serial_out
= port
->serial_out
;
3020 * serial8250_suspend_port - suspend one serial port
3021 * @line: serial line number
3023 * Suspend one serial port.
3025 void serial8250_suspend_port(int line
)
3027 uart_suspend_port(&serial8250_reg
, &serial8250_ports
[line
].port
);
3031 * serial8250_resume_port - resume one serial port
3032 * @line: serial line number
3034 * Resume one serial port.
3036 void serial8250_resume_port(int line
)
3038 struct uart_8250_port
*up
= &serial8250_ports
[line
];
3040 if (up
->capabilities
& UART_NATSEMI
) {
3041 /* Ensure it's still in high speed mode */
3042 serial_outp(up
, UART_LCR
, 0xE0);
3044 ns16550a_goto_highspeed(up
);
3046 serial_outp(up
, UART_LCR
, 0);
3047 up
->port
.uartclk
= 921600*16;
3049 uart_resume_port(&serial8250_reg
, &up
->port
);
3053 * Register a set of serial devices attached to a platform device. The
3054 * list is terminated with a zero flags entry, which means we expect
3055 * all entries to have at least UPF_BOOT_AUTOCONF set.
3057 static int __devinit
serial8250_probe(struct platform_device
*dev
)
3059 struct plat_serial8250_port
*p
= dev
->dev
.platform_data
;
3060 struct uart_port port
;
3061 int ret
, i
, irqflag
= 0;
3063 memset(&port
, 0, sizeof(struct uart_port
));
3066 irqflag
= IRQF_SHARED
;
3068 for (i
= 0; p
&& p
->flags
!= 0; p
++, i
++) {
3069 port
.iobase
= p
->iobase
;
3070 port
.membase
= p
->membase
;
3072 port
.irqflags
= p
->irqflags
;
3073 port
.uartclk
= p
->uartclk
;
3074 port
.regshift
= p
->regshift
;
3075 port
.iotype
= p
->iotype
;
3076 port
.flags
= p
->flags
;
3077 port
.mapbase
= p
->mapbase
;
3078 port
.hub6
= p
->hub6
;
3079 port
.private_data
= p
->private_data
;
3080 port
.type
= p
->type
;
3081 port
.serial_in
= p
->serial_in
;
3082 port
.serial_out
= p
->serial_out
;
3083 port
.set_termios
= p
->set_termios
;
3085 port
.dev
= &dev
->dev
;
3086 port
.irqflags
|= irqflag
;
3087 ret
= serial8250_register_port(&port
);
3089 dev_err(&dev
->dev
, "unable to register port at index %d "
3090 "(IO%lx MEM%llx IRQ%d): %d\n", i
,
3091 p
->iobase
, (unsigned long long)p
->mapbase
,
3099 * Remove serial ports registered against a platform device.
3101 static int __devexit
serial8250_remove(struct platform_device
*dev
)
3105 for (i
= 0; i
< nr_uarts
; i
++) {
3106 struct uart_8250_port
*up
= &serial8250_ports
[i
];
3108 if (up
->port
.dev
== &dev
->dev
)
3109 serial8250_unregister_port(i
);
3114 static int serial8250_suspend(struct platform_device
*dev
, pm_message_t state
)
3118 for (i
= 0; i
< UART_NR
; i
++) {
3119 struct uart_8250_port
*up
= &serial8250_ports
[i
];
3121 if (up
->port
.type
!= PORT_UNKNOWN
&& up
->port
.dev
== &dev
->dev
)
3122 uart_suspend_port(&serial8250_reg
, &up
->port
);
3128 static int serial8250_resume(struct platform_device
*dev
)
3132 for (i
= 0; i
< UART_NR
; i
++) {
3133 struct uart_8250_port
*up
= &serial8250_ports
[i
];
3135 if (up
->port
.type
!= PORT_UNKNOWN
&& up
->port
.dev
== &dev
->dev
)
3136 serial8250_resume_port(i
);
3142 static struct platform_driver serial8250_isa_driver
= {
3143 .probe
= serial8250_probe
,
3144 .remove
= __devexit_p(serial8250_remove
),
3145 .suspend
= serial8250_suspend
,
3146 .resume
= serial8250_resume
,
3148 .name
= "serial8250",
3149 .owner
= THIS_MODULE
,
3154 * This "device" covers _all_ ISA 8250-compatible serial devices listed
3155 * in the table in include/asm/serial.h
3157 static struct platform_device
*serial8250_isa_devs
;
3160 * serial8250_register_port and serial8250_unregister_port allows for
3161 * 16x50 serial ports to be configured at run-time, to support PCMCIA
3162 * modems and PCI multiport cards.
3164 static DEFINE_MUTEX(serial_mutex
);
3166 static struct uart_8250_port
*serial8250_find_match_or_unused(struct uart_port
*port
)
3171 * First, find a port entry which matches.
3173 for (i
= 0; i
< nr_uarts
; i
++)
3174 if (uart_match_port(&serial8250_ports
[i
].port
, port
))
3175 return &serial8250_ports
[i
];
3178 * We didn't find a matching entry, so look for the first
3179 * free entry. We look for one which hasn't been previously
3180 * used (indicated by zero iobase).
3182 for (i
= 0; i
< nr_uarts
; i
++)
3183 if (serial8250_ports
[i
].port
.type
== PORT_UNKNOWN
&&
3184 serial8250_ports
[i
].port
.iobase
== 0)
3185 return &serial8250_ports
[i
];
3188 * That also failed. Last resort is to find any entry which
3189 * doesn't have a real port associated with it.
3191 for (i
= 0; i
< nr_uarts
; i
++)
3192 if (serial8250_ports
[i
].port
.type
== PORT_UNKNOWN
)
3193 return &serial8250_ports
[i
];
3199 * serial8250_register_port - register a serial port
3200 * @port: serial port template
3202 * Configure the serial port specified by the request. If the
3203 * port exists and is in use, it is hung up and unregistered
3206 * The port is then probed and if necessary the IRQ is autodetected
3207 * If this fails an error is returned.
3209 * On success the port is ready to use and the line number is returned.
3211 int serial8250_register_port(struct uart_port
*port
)
3213 struct uart_8250_port
*uart
;
3216 if (port
->uartclk
== 0)
3219 mutex_lock(&serial_mutex
);
3221 uart
= serial8250_find_match_or_unused(port
);
3223 uart_remove_one_port(&serial8250_reg
, &uart
->port
);
3225 uart
->port
.iobase
= port
->iobase
;
3226 uart
->port
.membase
= port
->membase
;
3227 uart
->port
.irq
= port
->irq
;
3228 uart
->port
.irqflags
= port
->irqflags
;
3229 uart
->port
.uartclk
= port
->uartclk
;
3230 uart
->port
.fifosize
= port
->fifosize
;
3231 uart
->port
.regshift
= port
->regshift
;
3232 uart
->port
.iotype
= port
->iotype
;
3233 uart
->port
.flags
= port
->flags
| UPF_BOOT_AUTOCONF
;
3234 uart
->port
.mapbase
= port
->mapbase
;
3235 uart
->port
.private_data
= port
->private_data
;
3237 uart
->port
.dev
= port
->dev
;
3239 if (port
->flags
& UPF_FIXED_TYPE
)
3240 serial8250_init_fixed_type_port(uart
, port
->type
);
3242 set_io_from_upio(&uart
->port
);
3243 /* Possibly override default I/O functions. */
3244 if (port
->serial_in
)
3245 uart
->port
.serial_in
= port
->serial_in
;
3246 if (port
->serial_out
)
3247 uart
->port
.serial_out
= port
->serial_out
;
3248 /* Possibly override set_termios call */
3249 if (port
->set_termios
)
3250 uart
->port
.set_termios
= port
->set_termios
;
3252 uart
->port
.pm
= port
->pm
;
3254 if (serial8250_isa_config
!= NULL
)
3255 serial8250_isa_config(0, &uart
->port
,
3256 &uart
->capabilities
);
3258 ret
= uart_add_one_port(&serial8250_reg
, &uart
->port
);
3260 ret
= uart
->port
.line
;
3262 mutex_unlock(&serial_mutex
);
3266 EXPORT_SYMBOL(serial8250_register_port
);
3269 * serial8250_unregister_port - remove a 16x50 serial port at runtime
3270 * @line: serial line number
3272 * Remove one serial port. This may not be called from interrupt
3273 * context. We hand the port back to the our control.
3275 void serial8250_unregister_port(int line
)
3277 struct uart_8250_port
*uart
= &serial8250_ports
[line
];
3279 mutex_lock(&serial_mutex
);
3280 uart_remove_one_port(&serial8250_reg
, &uart
->port
);
3281 if (serial8250_isa_devs
) {
3282 uart
->port
.flags
&= ~UPF_BOOT_AUTOCONF
;
3283 uart
->port
.type
= PORT_UNKNOWN
;
3284 uart
->port
.dev
= &serial8250_isa_devs
->dev
;
3285 uart_add_one_port(&serial8250_reg
, &uart
->port
);
3287 uart
->port
.dev
= NULL
;
3289 mutex_unlock(&serial_mutex
);
3291 EXPORT_SYMBOL(serial8250_unregister_port
);
3293 static int __init
serial8250_init(void)
3297 if (nr_uarts
> UART_NR
)
3300 printk(KERN_INFO
"Serial: 8250/16550 driver, "
3301 "%d ports, IRQ sharing %sabled\n", nr_uarts
,
3302 share_irqs
? "en" : "dis");
3305 ret
= sunserial_register_minors(&serial8250_reg
, UART_NR
);
3307 serial8250_reg
.nr
= UART_NR
;
3308 ret
= uart_register_driver(&serial8250_reg
);
3313 serial8250_isa_devs
= platform_device_alloc("serial8250",
3314 PLAT8250_DEV_LEGACY
);
3315 if (!serial8250_isa_devs
) {
3317 goto unreg_uart_drv
;
3320 ret
= platform_device_add(serial8250_isa_devs
);
3324 serial8250_register_ports(&serial8250_reg
, &serial8250_isa_devs
->dev
);
3326 ret
= platform_driver_register(&serial8250_isa_driver
);
3330 platform_device_del(serial8250_isa_devs
);
3332 platform_device_put(serial8250_isa_devs
);
3335 sunserial_unregister_minors(&serial8250_reg
, UART_NR
);
3337 uart_unregister_driver(&serial8250_reg
);
3343 static void __exit
serial8250_exit(void)
3345 struct platform_device
*isa_dev
= serial8250_isa_devs
;
3348 * This tells serial8250_unregister_port() not to re-register
3349 * the ports (thereby making serial8250_isa_driver permanently
3352 serial8250_isa_devs
= NULL
;
3354 platform_driver_unregister(&serial8250_isa_driver
);
3355 platform_device_unregister(isa_dev
);
3358 sunserial_unregister_minors(&serial8250_reg
, UART_NR
);
3360 uart_unregister_driver(&serial8250_reg
);
3364 module_init(serial8250_init
);
3365 module_exit(serial8250_exit
);
3367 EXPORT_SYMBOL(serial8250_suspend_port
);
3368 EXPORT_SYMBOL(serial8250_resume_port
);
3370 MODULE_LICENSE("GPL");
3371 MODULE_DESCRIPTION("Generic 8250/16x50 serial driver");
3373 module_param(share_irqs
, uint
, 0644);
3374 MODULE_PARM_DESC(share_irqs
, "Share IRQs with other non-8250/16x50 devices"
3377 module_param(nr_uarts
, uint
, 0644);
3378 MODULE_PARM_DESC(nr_uarts
, "Maximum number of UARTs supported. (1-" __MODULE_STRING(CONFIG_SERIAL_8250_NR_UARTS
) ")");
3380 module_param(skip_txen_test
, uint
, 0644);
3381 MODULE_PARM_DESC(skip_txen_test
, "Skip checking for the TXEN bug at init time");
3383 #ifdef CONFIG_SERIAL_8250_RSA
3384 module_param_array(probe_rsa
, ulong
, &probe_rsa_count
, 0444);
3385 MODULE_PARM_DESC(probe_rsa
, "Probe I/O ports for RSA");
3387 MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR
);