2 * Driver for 8250/16550-type serial ports
4 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
6 * Copyright (C) 2001 Russell King.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * A note about mapbase / membase
15 * mapbase is the physical address of the IO port. Currently, we don't
16 * support this very well, and it may well be dropped from this driver
17 * in future. As such, mapbase should be NULL.
19 * membase is an 'ioremapped' cookie. This is compatible with the old
20 * serial.c driver, and is currently the preferred form.
22 #include <linux/config.h>
23 #include <linux/module.h>
24 #include <linux/tty.h>
25 #include <linux/ioport.h>
26 #include <linux/init.h>
27 #include <linux/console.h>
28 #include <linux/sysrq.h>
29 #include <linux/serial.h>
30 #include <linux/serialP.h>
31 #include <linux/delay.h>
33 #include <asm/serial.h>
36 #include <asm/mach-au1x00/au1000.h>
38 #if defined(CONFIG_SERIAL_AU1X00_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
42 #include <linux/serial_core.h>
49 #define DEBUG_AUTOCONF(fmt...) printk(fmt)
51 #define DEBUG_AUTOCONF(fmt...) do { } while (0)
55 #define DEBUG_INTR(fmt...) printk(fmt)
57 #define DEBUG_INTR(fmt...) do { } while (0)
60 #define PASS_LIMIT 256
63 * We default to IRQ0 for the "no irq" hack. Some
64 * machine types want others as well - they're free
65 * to redefine this in their header file.
67 #define is_real_interrupt(irq) ((irq) != 0)
69 static struct old_serial_port old_serial_port
[] = {
71 .iomem_base
= (u8
*)UART0_ADDR
,
72 .irq
= AU1000_UART0_INT
,
73 .flags
= STD_COM_FLAGS
,
77 .iomem_base
= (u8
*)UART1_ADDR
,
78 .irq
= AU1000_UART1_INT
,
79 .flags
= STD_COM_FLAGS
,
83 .iomem_base
= (u8
*)UART2_ADDR
,
84 .irq
= AU1000_UART2_INT
,
85 .flags
= STD_COM_FLAGS
,
89 .iomem_base
= (u8
*)UART3_ADDR
,
90 .irq
= AU1000_UART3_INT
,
91 .flags
= STD_COM_FLAGS
,
96 #define UART_NR ARRAY_SIZE(old_serial_port)
98 struct uart_8250_port
{
99 struct uart_port port
;
100 struct timer_list timer
; /* "no irq" timer */
101 struct list_head list
; /* ports on this IRQ */
106 unsigned char mcr_mask
; /* mask of user bits */
107 unsigned char mcr_force
; /* mask of forced bits */
108 unsigned char lsr_break_flag
;
111 * We provide a per-port pm hook.
113 void (*pm
)(struct uart_port
*port
,
114 unsigned int state
, unsigned int old
);
119 struct list_head
*head
;
122 static struct irq_info irq_lists
[NR_IRQS
];
125 * Here we define the default xmit fifo size used for each type of UART.
127 static const struct serial_uart_config uart_config
[PORT_MAX_8250
+1] = {
133 { "AU1X00_UART",16, UART_CLEAR_FIFO
| UART_USE_FIFO
},
136 static _INLINE_
unsigned int serial_in(struct uart_8250_port
*up
, int offset
)
138 return au_readl((unsigned long)up
->port
.membase
+ offset
);
142 serial_out(struct uart_8250_port
*up
, int offset
, int value
)
144 au_writel(value
, (unsigned long)up
->port
.membase
+ offset
);
147 #define serial_inp(up, offset) serial_in(up, offset)
148 #define serial_outp(up, offset, value) serial_out(up, offset, value)
151 * This routine is called by rs_init() to initialize a specific serial
152 * port. It determines what type of UART chip this serial port is
153 * using: 8250, 16450, 16550, 16550A. The important question is
154 * whether or not this UART is a 16550A or not, since this will
155 * determine whether or not we can use its FIFO features or not.
157 static void autoconfig(struct uart_8250_port
*up
, unsigned int probeflags
)
159 unsigned char save_lcr
, save_mcr
;
162 if (!up
->port
.iobase
&& !up
->port
.mapbase
&& !up
->port
.membase
)
165 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04x, 0x%08lx): ",
166 up
->port
.line
, up
->port
.iobase
, up
->port
.membase
);
169 * We really do need global IRQs disabled here - we're going to
170 * be frobbing the chips IRQ enable register to see if it exists.
172 spin_lock_irqsave(&up
->port
.lock
, flags
);
173 // save_flags(flags); cli();
175 save_mcr
= serial_in(up
, UART_MCR
);
176 save_lcr
= serial_in(up
, UART_LCR
);
178 up
->port
.type
= PORT_16550A
;
179 serial_outp(up
, UART_LCR
, save_lcr
);
181 up
->port
.fifosize
= uart_config
[up
->port
.type
].dfl_xmit_fifo_size
;
183 if (up
->port
.type
== PORT_UNKNOWN
)
189 serial_outp(up
, UART_MCR
, save_mcr
);
190 serial_outp(up
, UART_FCR
, (UART_FCR_ENABLE_FIFO
|
191 UART_FCR_CLEAR_RCVR
|
192 UART_FCR_CLEAR_XMIT
));
193 serial_outp(up
, UART_FCR
, 0);
194 (void)serial_in(up
, UART_RX
);
195 serial_outp(up
, UART_IER
, 0);
198 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
199 // restore_flags(flags);
200 DEBUG_AUTOCONF("type=%s\n", uart_config
[up
->port
.type
].name
);
203 static void serial8250_stop_tx(struct uart_port
*port
)
205 struct uart_8250_port
*up
= (struct uart_8250_port
*)port
;
207 if (up
->ier
& UART_IER_THRI
) {
208 up
->ier
&= ~UART_IER_THRI
;
209 serial_out(up
, UART_IER
, up
->ier
);
213 static void serial8250_start_tx(struct uart_port
*port
)
215 struct uart_8250_port
*up
= (struct uart_8250_port
*)port
;
217 if (!(up
->ier
& UART_IER_THRI
)) {
218 up
->ier
|= UART_IER_THRI
;
219 serial_out(up
, UART_IER
, up
->ier
);
223 static void serial8250_stop_rx(struct uart_port
*port
)
225 struct uart_8250_port
*up
= (struct uart_8250_port
*)port
;
227 up
->ier
&= ~UART_IER_RLSI
;
228 up
->port
.read_status_mask
&= ~UART_LSR_DR
;
229 serial_out(up
, UART_IER
, up
->ier
);
232 static void serial8250_enable_ms(struct uart_port
*port
)
234 struct uart_8250_port
*up
= (struct uart_8250_port
*)port
;
236 up
->ier
|= UART_IER_MSI
;
237 serial_out(up
, UART_IER
, up
->ier
);
241 receive_chars(struct uart_8250_port
*up
, int *status
, struct pt_regs
*regs
)
243 struct tty_struct
*tty
= up
->port
.info
->tty
;
248 if (unlikely(tty
->flip
.count
>= TTY_FLIPBUF_SIZE
)) {
249 tty
->flip
.work
.func((void *)tty
);
250 if (tty
->flip
.count
>= TTY_FLIPBUF_SIZE
)
251 return; // if TTY_DONT_FLIP is set
253 ch
= serial_inp(up
, UART_RX
);
254 *tty
->flip
.char_buf_ptr
= ch
;
255 *tty
->flip
.flag_buf_ptr
= TTY_NORMAL
;
256 up
->port
.icount
.rx
++;
258 if (unlikely(*status
& (UART_LSR_BI
| UART_LSR_PE
|
259 UART_LSR_FE
| UART_LSR_OE
))) {
261 * For statistics only
263 if (*status
& UART_LSR_BI
) {
264 *status
&= ~(UART_LSR_FE
| UART_LSR_PE
);
265 up
->port
.icount
.brk
++;
267 * We do the SysRQ and SAK checking
268 * here because otherwise the break
269 * may get masked by ignore_status_mask
270 * or read_status_mask.
272 if (uart_handle_break(&up
->port
))
274 } else if (*status
& UART_LSR_PE
)
275 up
->port
.icount
.parity
++;
276 else if (*status
& UART_LSR_FE
)
277 up
->port
.icount
.frame
++;
278 if (*status
& UART_LSR_OE
)
279 up
->port
.icount
.overrun
++;
282 * Mask off conditions which should be ingored.
284 *status
&= up
->port
.read_status_mask
;
286 #ifdef CONFIG_SERIAL_AU1X00_CONSOLE
287 if (up
->port
.line
== up
->port
.cons
->index
) {
288 /* Recover the break flag from console xmit */
289 *status
|= up
->lsr_break_flag
;
290 up
->lsr_break_flag
= 0;
293 if (*status
& UART_LSR_BI
) {
294 DEBUG_INTR("handling break....");
295 *tty
->flip
.flag_buf_ptr
= TTY_BREAK
;
296 } else if (*status
& UART_LSR_PE
)
297 *tty
->flip
.flag_buf_ptr
= TTY_PARITY
;
298 else if (*status
& UART_LSR_FE
)
299 *tty
->flip
.flag_buf_ptr
= TTY_FRAME
;
301 if (uart_handle_sysrq_char(&up
->port
, ch
, regs
))
303 if ((*status
& up
->port
.ignore_status_mask
) == 0) {
304 tty
->flip
.flag_buf_ptr
++;
305 tty
->flip
.char_buf_ptr
++;
308 if ((*status
& UART_LSR_OE
) &&
309 tty
->flip
.count
< TTY_FLIPBUF_SIZE
) {
311 * Overrun is special, since it's reported
312 * immediately, and doesn't affect the current
315 *tty
->flip
.flag_buf_ptr
= TTY_OVERRUN
;
316 tty
->flip
.flag_buf_ptr
++;
317 tty
->flip
.char_buf_ptr
++;
321 *status
= serial_inp(up
, UART_LSR
);
322 } while ((*status
& UART_LSR_DR
) && (max_count
-- > 0));
323 spin_unlock(&up
->port
.lock
);
324 tty_flip_buffer_push(tty
);
325 spin_lock(&up
->port
.lock
);
328 static _INLINE_
void transmit_chars(struct uart_8250_port
*up
)
330 struct circ_buf
*xmit
= &up
->port
.info
->xmit
;
333 if (up
->port
.x_char
) {
334 serial_outp(up
, UART_TX
, up
->port
.x_char
);
335 up
->port
.icount
.tx
++;
339 if (uart_circ_empty(xmit
) || uart_tx_stopped(&up
->port
)) {
340 serial8250_stop_tx(&up
->port
);
344 count
= up
->port
.fifosize
;
346 serial_out(up
, UART_TX
, xmit
->buf
[xmit
->tail
]);
347 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
348 up
->port
.icount
.tx
++;
349 if (uart_circ_empty(xmit
))
351 } while (--count
> 0);
353 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
354 uart_write_wakeup(&up
->port
);
356 DEBUG_INTR("THRE...");
358 if (uart_circ_empty(xmit
))
359 serial8250_stop_tx(&up
->port
);
362 static _INLINE_
void check_modem_status(struct uart_8250_port
*up
)
366 status
= serial_in(up
, UART_MSR
);
368 if ((status
& UART_MSR_ANY_DELTA
) == 0)
371 if (status
& UART_MSR_TERI
)
372 up
->port
.icount
.rng
++;
373 if (status
& UART_MSR_DDSR
)
374 up
->port
.icount
.dsr
++;
375 if (status
& UART_MSR_DDCD
)
376 uart_handle_dcd_change(&up
->port
, status
& UART_MSR_DCD
);
377 if (status
& UART_MSR_DCTS
)
378 uart_handle_cts_change(&up
->port
, status
& UART_MSR_CTS
);
380 wake_up_interruptible(&up
->port
.info
->delta_msr_wait
);
384 * This handles the interrupt from one port.
387 serial8250_handle_port(struct uart_8250_port
*up
, struct pt_regs
*regs
)
389 unsigned int status
= serial_inp(up
, UART_LSR
);
391 DEBUG_INTR("status = %x...", status
);
393 if (status
& UART_LSR_DR
)
394 receive_chars(up
, &status
, regs
);
395 check_modem_status(up
);
396 if (status
& UART_LSR_THRE
)
401 * This is the serial driver's interrupt routine.
403 * Arjan thinks the old way was overly complex, so it got simplified.
404 * Alan disagrees, saying that need the complexity to handle the weird
405 * nature of ISA shared interrupts. (This is a special exception.)
407 * In order to handle ISA shared interrupts properly, we need to check
408 * that all ports have been serviced, and therefore the ISA interrupt
409 * line has been de-asserted.
411 * This means we need to loop through all ports. checking that they
412 * don't have an interrupt pending.
414 static irqreturn_t
serial8250_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
416 struct irq_info
*i
= dev_id
;
417 struct list_head
*l
, *end
= NULL
;
418 int pass_counter
= 0;
420 DEBUG_INTR("serial8250_interrupt(%d)...", irq
);
426 struct uart_8250_port
*up
;
429 up
= list_entry(l
, struct uart_8250_port
, list
);
431 iir
= serial_in(up
, UART_IIR
);
432 if (!(iir
& UART_IIR_NO_INT
)) {
433 spin_lock(&up
->port
.lock
);
434 serial8250_handle_port(up
, regs
);
435 spin_unlock(&up
->port
.lock
);
438 } else if (end
== NULL
)
443 if (l
== i
->head
&& pass_counter
++ > PASS_LIMIT
) {
444 /* If we hit this, we're dead. */
445 printk(KERN_ERR
"serial8250: too much work for "
451 spin_unlock(&i
->lock
);
453 DEBUG_INTR("end.\n");
454 /* FIXME! Was it really ours? */
459 * To support ISA shared interrupts, we need to have one interrupt
460 * handler that ensures that the IRQ line has been deasserted
461 * before returning. Failing to do this will result in the IRQ
462 * line being stuck active, and, since ISA irqs are edge triggered,
463 * no more IRQs will be seen.
465 static void serial_do_unlink(struct irq_info
*i
, struct uart_8250_port
*up
)
467 spin_lock_irq(&i
->lock
);
469 if (!list_empty(i
->head
)) {
470 if (i
->head
== &up
->list
)
471 i
->head
= i
->head
->next
;
474 BUG_ON(i
->head
!= &up
->list
);
478 spin_unlock_irq(&i
->lock
);
481 static int serial_link_irq_chain(struct uart_8250_port
*up
)
483 struct irq_info
*i
= irq_lists
+ up
->port
.irq
;
484 int ret
, irq_flags
= up
->port
.flags
& UPF_SHARE_IRQ
? SA_SHIRQ
: 0;
486 spin_lock_irq(&i
->lock
);
489 list_add(&up
->list
, i
->head
);
490 spin_unlock_irq(&i
->lock
);
494 INIT_LIST_HEAD(&up
->list
);
496 spin_unlock_irq(&i
->lock
);
498 ret
= request_irq(up
->port
.irq
, serial8250_interrupt
,
499 irq_flags
, "serial", i
);
501 serial_do_unlink(i
, up
);
507 static void serial_unlink_irq_chain(struct uart_8250_port
*up
)
509 struct irq_info
*i
= irq_lists
+ up
->port
.irq
;
511 BUG_ON(i
->head
== NULL
);
513 if (list_empty(i
->head
))
514 free_irq(up
->port
.irq
, i
);
516 serial_do_unlink(i
, up
);
520 * This function is used to handle ports that do not have an
521 * interrupt. This doesn't work very well for 16450's, but gives
522 * barely passable results for a 16550A. (Although at the expense
523 * of much CPU overhead).
525 static void serial8250_timeout(unsigned long data
)
527 struct uart_8250_port
*up
= (struct uart_8250_port
*)data
;
528 unsigned int timeout
;
531 iir
= serial_in(up
, UART_IIR
);
532 if (!(iir
& UART_IIR_NO_INT
)) {
533 spin_lock(&up
->port
.lock
);
534 serial8250_handle_port(up
, NULL
);
535 spin_unlock(&up
->port
.lock
);
538 timeout
= up
->port
.timeout
;
539 timeout
= timeout
> 6 ? (timeout
/ 2 - 2) : 1;
540 mod_timer(&up
->timer
, jiffies
+ timeout
);
543 static unsigned int serial8250_tx_empty(struct uart_port
*port
)
545 struct uart_8250_port
*up
= (struct uart_8250_port
*)port
;
549 spin_lock_irqsave(&up
->port
.lock
, flags
);
550 ret
= serial_in(up
, UART_LSR
) & UART_LSR_TEMT
? TIOCSER_TEMT
: 0;
551 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
556 static unsigned int serial8250_get_mctrl(struct uart_port
*port
)
558 struct uart_8250_port
*up
= (struct uart_8250_port
*)port
;
559 unsigned char status
;
562 status
= serial_in(up
, UART_MSR
);
565 if (status
& UART_MSR_DCD
)
567 if (status
& UART_MSR_RI
)
569 if (status
& UART_MSR_DSR
)
571 if (status
& UART_MSR_CTS
)
576 static void serial8250_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
578 struct uart_8250_port
*up
= (struct uart_8250_port
*)port
;
579 unsigned char mcr
= 0;
581 if (mctrl
& TIOCM_RTS
)
583 if (mctrl
& TIOCM_DTR
)
585 if (mctrl
& TIOCM_OUT1
)
586 mcr
|= UART_MCR_OUT1
;
587 if (mctrl
& TIOCM_OUT2
)
588 mcr
|= UART_MCR_OUT2
;
589 if (mctrl
& TIOCM_LOOP
)
590 mcr
|= UART_MCR_LOOP
;
592 mcr
= (mcr
& up
->mcr_mask
) | up
->mcr_force
;
594 serial_out(up
, UART_MCR
, mcr
);
597 static void serial8250_break_ctl(struct uart_port
*port
, int break_state
)
599 struct uart_8250_port
*up
= (struct uart_8250_port
*)port
;
602 spin_lock_irqsave(&up
->port
.lock
, flags
);
603 if (break_state
== -1)
604 up
->lcr
|= UART_LCR_SBC
;
606 up
->lcr
&= ~UART_LCR_SBC
;
607 serial_out(up
, UART_LCR
, up
->lcr
);
608 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
611 static int serial8250_startup(struct uart_port
*port
)
613 struct uart_8250_port
*up
= (struct uart_8250_port
*)port
;
618 * Clear the FIFO buffers and disable them.
619 * (they will be reeanbled in set_termios())
621 if (uart_config
[up
->port
.type
].flags
& UART_CLEAR_FIFO
) {
622 serial_outp(up
, UART_FCR
, UART_FCR_ENABLE_FIFO
);
623 serial_outp(up
, UART_FCR
, UART_FCR_ENABLE_FIFO
|
624 UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
);
625 serial_outp(up
, UART_FCR
, 0);
629 * Clear the interrupt registers.
631 (void) serial_inp(up
, UART_LSR
);
632 (void) serial_inp(up
, UART_RX
);
633 (void) serial_inp(up
, UART_IIR
);
634 (void) serial_inp(up
, UART_MSR
);
637 * At this point, there's no way the LSR could still be 0xff;
638 * if it is, then bail out, because there's likely no UART
641 if (!(up
->port
.flags
& UPF_BUGGY_UART
) &&
642 (serial_inp(up
, UART_LSR
) == 0xff)) {
643 printk("ttyS%d: LSR safety check engaged!\n", up
->port
.line
);
647 retval
= serial_link_irq_chain(up
);
652 * Now, initialize the UART
654 serial_outp(up
, UART_LCR
, UART_LCR_WLEN8
);
656 spin_lock_irqsave(&up
->port
.lock
, flags
);
657 if (up
->port
.flags
& UPF_FOURPORT
) {
658 if (!is_real_interrupt(up
->port
.irq
))
659 up
->port
.mctrl
|= TIOCM_OUT1
;
662 * Most PC uarts need OUT2 raised to enable interrupts.
664 if (is_real_interrupt(up
->port
.irq
))
665 up
->port
.mctrl
|= TIOCM_OUT2
;
667 serial8250_set_mctrl(&up
->port
, up
->port
.mctrl
);
668 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
671 * Finally, enable interrupts. Note: Modem status interrupts
672 * are set via set_termios(), which will be occurring imminently
673 * anyway, so we don't enable them here.
675 up
->ier
= UART_IER_RLSI
| UART_IER_RDI
;
676 serial_outp(up
, UART_IER
, up
->ier
);
678 if (up
->port
.flags
& UPF_FOURPORT
) {
681 * Enable interrupts on the AST Fourport board
683 icp
= (up
->port
.iobase
& 0xfe0) | 0x01f;
689 * And clear the interrupt registers again for luck.
691 (void) serial_inp(up
, UART_LSR
);
692 (void) serial_inp(up
, UART_RX
);
693 (void) serial_inp(up
, UART_IIR
);
694 (void) serial_inp(up
, UART_MSR
);
699 static void serial8250_shutdown(struct uart_port
*port
)
701 struct uart_8250_port
*up
= (struct uart_8250_port
*)port
;
705 * Disable interrupts from this port
708 serial_outp(up
, UART_IER
, 0);
710 spin_lock_irqsave(&up
->port
.lock
, flags
);
711 if (up
->port
.flags
& UPF_FOURPORT
) {
712 /* reset interrupts on the AST Fourport board */
713 inb((up
->port
.iobase
& 0xfe0) | 0x1f);
714 up
->port
.mctrl
|= TIOCM_OUT1
;
716 up
->port
.mctrl
&= ~TIOCM_OUT2
;
718 serial8250_set_mctrl(&up
->port
, up
->port
.mctrl
);
719 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
722 * Disable break condition and FIFOs
724 serial_out(up
, UART_LCR
, serial_inp(up
, UART_LCR
) & ~UART_LCR_SBC
);
725 serial_outp(up
, UART_FCR
, UART_FCR_ENABLE_FIFO
|
726 UART_FCR_CLEAR_RCVR
|
727 UART_FCR_CLEAR_XMIT
);
728 serial_outp(up
, UART_FCR
, 0);
731 * Read data port to reset things, and then unlink from
734 (void) serial_in(up
, UART_RX
);
736 if (!is_real_interrupt(up
->port
.irq
))
737 del_timer_sync(&up
->timer
);
739 serial_unlink_irq_chain(up
);
742 static unsigned int serial8250_get_divisor(struct uart_port
*port
, unsigned int baud
)
747 * Handle magic divisors for baud rates above baud_base on
748 * SMSC SuperIO chips.
750 if ((port
->flags
& UPF_MAGIC_MULTIPLIER
) &&
751 baud
== (port
->uartclk
/4))
753 else if ((port
->flags
& UPF_MAGIC_MULTIPLIER
) &&
754 baud
== (port
->uartclk
/8))
757 quot
= uart_get_divisor(port
, baud
);
763 serial8250_set_termios(struct uart_port
*port
, struct termios
*termios
,
766 struct uart_8250_port
*up
= (struct uart_8250_port
*)port
;
767 unsigned char cval
, fcr
= 0;
769 unsigned int baud
, quot
;
771 switch (termios
->c_cflag
& CSIZE
) {
773 cval
= UART_LCR_WLEN5
;
776 cval
= UART_LCR_WLEN6
;
779 cval
= UART_LCR_WLEN7
;
783 cval
= UART_LCR_WLEN8
;
787 if (termios
->c_cflag
& CSTOPB
)
788 cval
|= UART_LCR_STOP
;
789 if (termios
->c_cflag
& PARENB
)
790 cval
|= UART_LCR_PARITY
;
791 if (!(termios
->c_cflag
& PARODD
))
792 cval
|= UART_LCR_EPAR
;
794 if (termios
->c_cflag
& CMSPAR
)
795 cval
|= UART_LCR_SPAR
;
799 * Ask the core to calculate the divisor for us.
801 baud
= uart_get_baud_rate(port
, termios
, old
, 0, port
->uartclk
/16);
802 quot
= serial8250_get_divisor(port
, baud
);
803 quot
= 0x35; /* FIXME */
806 * Work around a bug in the Oxford Semiconductor 952 rev B
807 * chip which causes it to seriously miscalculate baud rates
810 if ((quot
& 0xff) == 0 && up
->port
.type
== PORT_16C950
&&
814 if (uart_config
[up
->port
.type
].flags
& UART_USE_FIFO
) {
816 fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_R_TRIGGER_1
;
818 fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_R_TRIGGER_8
;
822 * Ok, we're now changing the port state. Do it with
823 * interrupts disabled.
825 spin_lock_irqsave(&up
->port
.lock
, flags
);
828 * Update the per-port timeout.
830 uart_update_timeout(port
, termios
->c_cflag
, baud
);
832 up
->port
.read_status_mask
= UART_LSR_OE
| UART_LSR_THRE
| UART_LSR_DR
;
833 if (termios
->c_iflag
& INPCK
)
834 up
->port
.read_status_mask
|= UART_LSR_FE
| UART_LSR_PE
;
835 if (termios
->c_iflag
& (BRKINT
| PARMRK
))
836 up
->port
.read_status_mask
|= UART_LSR_BI
;
839 * Characteres to ignore
841 up
->port
.ignore_status_mask
= 0;
842 if (termios
->c_iflag
& IGNPAR
)
843 up
->port
.ignore_status_mask
|= UART_LSR_PE
| UART_LSR_FE
;
844 if (termios
->c_iflag
& IGNBRK
) {
845 up
->port
.ignore_status_mask
|= UART_LSR_BI
;
847 * If we're ignoring parity and break indicators,
848 * ignore overruns too (for real raw support).
850 if (termios
->c_iflag
& IGNPAR
)
851 up
->port
.ignore_status_mask
|= UART_LSR_OE
;
855 * ignore all characters if CREAD is not set
857 if ((termios
->c_cflag
& CREAD
) == 0)
858 up
->port
.ignore_status_mask
|= UART_LSR_DR
;
861 * CTS flow control flag and modem status interrupts
863 up
->ier
&= ~UART_IER_MSI
;
864 if (UART_ENABLE_MS(&up
->port
, termios
->c_cflag
))
865 up
->ier
|= UART_IER_MSI
;
867 serial_out(up
, UART_IER
, up
->ier
);
868 serial_outp(up
, 0x28, quot
& 0xffff);
869 up
->lcr
= cval
; /* Save LCR */
870 if (up
->port
.type
!= PORT_16750
) {
871 if (fcr
& UART_FCR_ENABLE_FIFO
) {
872 /* emulated UARTs (Lucent Venus 167x) need two steps */
873 serial_outp(up
, UART_FCR
, UART_FCR_ENABLE_FIFO
);
875 serial_outp(up
, UART_FCR
, fcr
); /* set fcr */
877 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
881 serial8250_pm(struct uart_port
*port
, unsigned int state
,
882 unsigned int oldstate
)
884 struct uart_8250_port
*up
= (struct uart_8250_port
*)port
;
888 up
->pm(port
, state
, oldstate
);
892 up
->pm(port
, state
, oldstate
);
897 * Resource handling. This is complicated by the fact that resources
898 * depend on the port type. Maybe we should be claiming the standard
899 * 8250 ports, and then trying to get other resources as necessary?
902 serial8250_request_std_resource(struct uart_8250_port
*up
, struct resource
**res
)
904 unsigned int size
= 8 << up
->port
.regshift
;
907 switch (up
->port
.iotype
) {
909 if (up
->port
.mapbase
) {
910 *res
= request_mem_region(up
->port
.mapbase
, size
, "serial");
918 *res
= request_region(up
->port
.iobase
, size
, "serial");
927 static void serial8250_release_port(struct uart_port
*port
)
929 struct uart_8250_port
*up
= (struct uart_8250_port
*)port
;
930 unsigned long start
, offset
= 0, size
= 0;
932 size
<<= up
->port
.regshift
;
934 switch (up
->port
.iotype
) {
936 if (up
->port
.mapbase
) {
940 iounmap(up
->port
.membase
);
941 up
->port
.membase
= NULL
;
943 start
= up
->port
.mapbase
;
946 release_mem_region(start
+ offset
, size
);
947 release_mem_region(start
, 8 << up
->port
.regshift
);
953 start
= up
->port
.iobase
;
956 release_region(start
+ offset
, size
);
957 release_region(start
+ offset
, 8 << up
->port
.regshift
);
965 static int serial8250_request_port(struct uart_port
*port
)
967 struct uart_8250_port
*up
= (struct uart_8250_port
*)port
;
968 struct resource
*res
= NULL
, *res_rsa
= NULL
;
971 ret
= serial8250_request_std_resource(up
, &res
);
974 * If we have a mapbase, then request that as well.
976 if (ret
== 0 && up
->port
.flags
& UPF_IOREMAP
) {
977 int size
= res
->end
- res
->start
+ 1;
979 up
->port
.membase
= ioremap(up
->port
.mapbase
, size
);
980 if (!up
->port
.membase
)
986 release_resource(res_rsa
);
988 release_resource(res
);
993 static void serial8250_config_port(struct uart_port
*port
, int flags
)
995 struct uart_8250_port
*up
= (struct uart_8250_port
*)port
;
996 struct resource
*res_std
= NULL
, *res_rsa
= NULL
;
997 int probeflags
= PROBE_ANY
;
999 probeflags
&= ~PROBE_RSA
;
1001 if (flags
& UART_CONFIG_TYPE
)
1002 autoconfig(up
, probeflags
);
1005 * If the port wasn't an RSA port, release the resource.
1007 if (up
->port
.type
!= PORT_RSA
&& res_rsa
)
1008 release_resource(res_rsa
);
1010 if (up
->port
.type
== PORT_UNKNOWN
&& res_std
)
1011 release_resource(res_std
);
1015 serial8250_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
1017 if (ser
->irq
>= NR_IRQS
|| ser
->irq
< 0 ||
1018 ser
->baud_base
< 9600 || ser
->type
< PORT_UNKNOWN
||
1019 ser
->type
> PORT_MAX_8250
|| ser
->type
== PORT_CIRRUS
||
1020 ser
->type
== PORT_STARTECH
)
1026 serial8250_type(struct uart_port
*port
)
1028 int type
= port
->type
;
1030 if (type
>= ARRAY_SIZE(uart_config
))
1032 return uart_config
[type
].name
;
1035 static struct uart_ops serial8250_pops
= {
1036 .tx_empty
= serial8250_tx_empty
,
1037 .set_mctrl
= serial8250_set_mctrl
,
1038 .get_mctrl
= serial8250_get_mctrl
,
1039 .stop_tx
= serial8250_stop_tx
,
1040 .start_tx
= serial8250_start_tx
,
1041 .stop_rx
= serial8250_stop_rx
,
1042 .enable_ms
= serial8250_enable_ms
,
1043 .break_ctl
= serial8250_break_ctl
,
1044 .startup
= serial8250_startup
,
1045 .shutdown
= serial8250_shutdown
,
1046 .set_termios
= serial8250_set_termios
,
1047 .pm
= serial8250_pm
,
1048 .type
= serial8250_type
,
1049 .release_port
= serial8250_release_port
,
1050 .request_port
= serial8250_request_port
,
1051 .config_port
= serial8250_config_port
,
1052 .verify_port
= serial8250_verify_port
,
1055 static struct uart_8250_port serial8250_ports
[UART_NR
];
1057 static void __init
serial8250_isa_init_ports(void)
1059 struct uart_8250_port
*up
;
1060 static int first
= 1;
1067 for (i
= 0, up
= serial8250_ports
; i
< ARRAY_SIZE(old_serial_port
);
1069 up
->port
.iobase
= old_serial_port
[i
].port
;
1070 up
->port
.irq
= old_serial_port
[i
].irq
;
1071 up
->port
.uartclk
= get_au1x00_uart_baud_base();
1072 up
->port
.flags
= old_serial_port
[i
].flags
;
1073 up
->port
.hub6
= old_serial_port
[i
].hub6
;
1074 up
->port
.membase
= old_serial_port
[i
].iomem_base
;
1075 up
->port
.iotype
= old_serial_port
[i
].io_type
;
1076 up
->port
.regshift
= old_serial_port
[i
].iomem_reg_shift
;
1077 up
->port
.ops
= &serial8250_pops
;
1081 static void __init
serial8250_register_ports(struct uart_driver
*drv
)
1085 serial8250_isa_init_ports();
1087 for (i
= 0; i
< UART_NR
; i
++) {
1088 struct uart_8250_port
*up
= &serial8250_ports
[i
];
1091 up
->port
.ops
= &serial8250_pops
;
1092 init_timer(&up
->timer
);
1093 up
->timer
.function
= serial8250_timeout
;
1096 * ALPHA_KLUDGE_MCR needs to be killed.
1098 up
->mcr_mask
= ~ALPHA_KLUDGE_MCR
;
1099 up
->mcr_force
= ALPHA_KLUDGE_MCR
;
1101 uart_add_one_port(drv
, &up
->port
);
1105 #ifdef CONFIG_SERIAL_AU1X00_CONSOLE
1107 #define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
1110 * Wait for transmitter & holding register to empty
1112 static inline void wait_for_xmitr(struct uart_8250_port
*up
)
1114 unsigned int status
, tmout
= 10000;
1116 /* Wait up to 10ms for the character(s) to be sent. */
1118 status
= serial_in(up
, UART_LSR
);
1120 if (status
& UART_LSR_BI
)
1121 up
->lsr_break_flag
= UART_LSR_BI
;
1126 } while ((status
& BOTH_EMPTY
) != BOTH_EMPTY
);
1128 /* Wait up to 1s for flow control if necessary */
1129 if (up
->port
.flags
& UPF_CONS_FLOW
) {
1132 ((serial_in(up
, UART_MSR
) & UART_MSR_CTS
) == 0))
1138 * Print a string to the serial port trying not to disturb
1139 * any possible real use of the port...
1141 * The console_lock must be held when we get here.
1144 serial8250_console_write(struct console
*co
, const char *s
, unsigned int count
)
1146 struct uart_8250_port
*up
= &serial8250_ports
[co
->index
];
1151 * First save the UER then disable the interrupts
1153 ier
= serial_in(up
, UART_IER
);
1154 serial_out(up
, UART_IER
, 0);
1157 * Now, do each character
1159 for (i
= 0; i
< count
; i
++, s
++) {
1163 * Send the character out.
1164 * If a LF, also do CR...
1166 serial_out(up
, UART_TX
, *s
);
1169 serial_out(up
, UART_TX
, 13);
1174 * Finally, wait for transmitter to become empty
1175 * and restore the IER
1178 serial_out(up
, UART_IER
, ier
);
1181 static int __init
serial8250_console_setup(struct console
*co
, char *options
)
1183 struct uart_port
*port
;
1190 * Check whether an invalid uart number has been specified, and
1191 * if so, search for the first available port that does have
1194 if (co
->index
>= UART_NR
)
1196 port
= &serial8250_ports
[co
->index
].port
;
1201 spin_lock_init(&port
->lock
);
1204 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
1206 return uart_set_options(port
, co
, baud
, parity
, bits
, flow
);
1209 extern struct uart_driver serial8250_reg
;
1210 static struct console serial8250_console
= {
1212 .write
= serial8250_console_write
,
1213 .device
= uart_console_device
,
1214 .setup
= serial8250_console_setup
,
1215 .flags
= CON_PRINTBUFFER
,
1217 .data
= &serial8250_reg
,
1220 static int __init
serial8250_console_init(void)
1222 serial8250_isa_init_ports();
1223 register_console(&serial8250_console
);
1226 console_initcall(serial8250_console_init
);
1228 #define SERIAL8250_CONSOLE &serial8250_console
1230 #define SERIAL8250_CONSOLE NULL
1233 static struct uart_driver serial8250_reg
= {
1234 .owner
= THIS_MODULE
,
1235 .driver_name
= "serial",
1236 .devfs_name
= "tts/",
1241 .cons
= SERIAL8250_CONSOLE
,
1244 int __init
early_serial_setup(struct uart_port
*port
)
1246 serial8250_isa_init_ports();
1247 serial8250_ports
[port
->line
].port
= *port
;
1248 serial8250_ports
[port
->line
].port
.ops
= &serial8250_pops
;
1253 * serial8250_suspend_port - suspend one serial port
1254 * @line: serial line number
1255 * @level: the level of port suspension, as per uart_suspend_port
1257 * Suspend one serial port.
1259 void serial8250_suspend_port(int line
)
1261 uart_suspend_port(&serial8250_reg
, &serial8250_ports
[line
].port
);
1265 * serial8250_resume_port - resume one serial port
1266 * @line: serial line number
1267 * @level: the level of port resumption, as per uart_resume_port
1269 * Resume one serial port.
1271 void serial8250_resume_port(int line
)
1273 uart_resume_port(&serial8250_reg
, &serial8250_ports
[line
].port
);
1276 static int __init
serial8250_init(void)
1280 printk(KERN_INFO
"Serial: Au1x00 driver\n");
1282 for (i
= 0; i
< NR_IRQS
; i
++)
1283 spin_lock_init(&irq_lists
[i
].lock
);
1285 ret
= uart_register_driver(&serial8250_reg
);
1287 serial8250_register_ports(&serial8250_reg
);
1292 static void __exit
serial8250_exit(void)
1296 for (i
= 0; i
< UART_NR
; i
++)
1297 uart_remove_one_port(&serial8250_reg
, &serial8250_ports
[i
].port
);
1299 uart_unregister_driver(&serial8250_reg
);
1302 module_init(serial8250_init
);
1303 module_exit(serial8250_exit
);
1305 EXPORT_SYMBOL(serial8250_suspend_port
);
1306 EXPORT_SYMBOL(serial8250_resume_port
);
1308 MODULE_LICENSE("GPL");
1309 MODULE_DESCRIPTION("Au1x00 serial driver\n");