2 * Driver for Zilog serial chips found on SGI workstations and
3 * servers. This driver could actually be made more generic.
5 * This is based on the drivers/serial/sunzilog.c code as of 2.6.0-test7 and the
6 * old drivers/sgi/char/sgiserial.c code which itself is based of the original
7 * drivers/sbus/char/zs.c code. A lot of code has been simply moved over
8 * directly from there but much has been rewritten. Credits therefore go out
9 * to David S. Miller, Eddie C. Dost, Pete Zaitcev, Ted Ts'o and Alex Buell
10 * for their work there.
12 * Copyright (C) 2002 Ralf Baechle (ralf@linux-mips.org)
13 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/sched.h>
18 #include <linux/errno.h>
19 #include <linux/delay.h>
20 #include <linux/tty.h>
21 #include <linux/tty_flip.h>
22 #include <linux/major.h>
23 #include <linux/string.h>
24 #include <linux/ptrace.h>
25 #include <linux/ioport.h>
26 #include <linux/slab.h>
27 #include <linux/circ_buf.h>
28 #include <linux/serial.h>
29 #include <linux/sysrq.h>
30 #include <linux/console.h>
31 #include <linux/spinlock.h>
32 #include <linux/init.h>
36 #include <asm/sgialib.h>
37 #include <asm/sgi/ioc.h>
38 #include <asm/sgi/hpc3.h>
39 #include <asm/sgi/ip22.h>
41 #if defined(CONFIG_SERIAL_IP22_ZILOG_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
45 #include <linux/serial_core.h>
47 #include "ip22zilog.h"
49 void ip22_do_break(void);
52 * On IP22 we need to delay after register accesses but we do not need to
55 #define ZSDELAY() udelay(5)
56 #define ZSDELAY_LONG() udelay(20)
57 #define ZS_WSYNC(channel) do { } while (0)
59 #define NUM_IP22ZILOG 1
60 #define NUM_CHANNELS (NUM_IP22ZILOG * 2)
62 #define ZS_CLOCK 3672000 /* Zilog input clock rate. */
63 #define ZS_CLOCK_DIVISOR 16 /* Divisor this driver uses. */
66 * We wrap our port structure around the generic uart_port.
68 struct uart_ip22zilog_port
{
69 struct uart_port port
;
71 /* IRQ servicing chain. */
72 struct uart_ip22zilog_port
*next
;
74 /* Current values of Zilog write registers. */
75 unsigned char curregs
[NUM_ZSREGS
];
78 #define IP22ZILOG_FLAG_IS_CONS 0x00000004
79 #define IP22ZILOG_FLAG_IS_KGDB 0x00000008
80 #define IP22ZILOG_FLAG_MODEM_STATUS 0x00000010
81 #define IP22ZILOG_FLAG_IS_CHANNEL_A 0x00000020
82 #define IP22ZILOG_FLAG_REGS_HELD 0x00000040
83 #define IP22ZILOG_FLAG_TX_STOPPED 0x00000080
84 #define IP22ZILOG_FLAG_TX_ACTIVE 0x00000100
88 /* L1-A keyboard break state. */
92 unsigned char parity_mask
;
93 unsigned char prev_status
;
96 #define ZILOG_CHANNEL_FROM_PORT(PORT) ((struct zilog_channel *)((PORT)->membase))
97 #define UART_ZILOG(PORT) ((struct uart_ip22zilog_port *)(PORT))
98 #define IP22ZILOG_GET_CURR_REG(PORT, REGNUM) \
99 (UART_ZILOG(PORT)->curregs[REGNUM])
100 #define IP22ZILOG_SET_CURR_REG(PORT, REGNUM, REGVAL) \
101 ((UART_ZILOG(PORT)->curregs[REGNUM]) = (REGVAL))
102 #define ZS_IS_CONS(UP) ((UP)->flags & IP22ZILOG_FLAG_IS_CONS)
103 #define ZS_IS_KGDB(UP) ((UP)->flags & IP22ZILOG_FLAG_IS_KGDB)
104 #define ZS_WANTS_MODEM_STATUS(UP) ((UP)->flags & IP22ZILOG_FLAG_MODEM_STATUS)
105 #define ZS_IS_CHANNEL_A(UP) ((UP)->flags & IP22ZILOG_FLAG_IS_CHANNEL_A)
106 #define ZS_REGS_HELD(UP) ((UP)->flags & IP22ZILOG_FLAG_REGS_HELD)
107 #define ZS_TX_STOPPED(UP) ((UP)->flags & IP22ZILOG_FLAG_TX_STOPPED)
108 #define ZS_TX_ACTIVE(UP) ((UP)->flags & IP22ZILOG_FLAG_TX_ACTIVE)
110 /* Reading and writing Zilog8530 registers. The delays are to make this
111 * driver work on the IP22 which needs a settling delay after each chip
112 * register access, other machines handle this in hardware via auxiliary
113 * flip-flops which implement the settle time we do in software.
115 * The port lock must be held and local IRQs must be disabled
116 * when {read,write}_zsreg is invoked.
118 static unsigned char read_zsreg(struct zilog_channel
*channel
,
121 unsigned char retval
;
123 writeb(reg
, &channel
->control
);
125 retval
= readb(&channel
->control
);
131 static void write_zsreg(struct zilog_channel
*channel
,
132 unsigned char reg
, unsigned char value
)
134 writeb(reg
, &channel
->control
);
136 writeb(value
, &channel
->control
);
140 static void ip22zilog_clear_fifo(struct zilog_channel
*channel
)
144 for (i
= 0; i
< 32; i
++) {
145 unsigned char regval
;
147 regval
= readb(&channel
->control
);
149 if (regval
& Rx_CH_AV
)
152 regval
= read_zsreg(channel
, R1
);
153 readb(&channel
->data
);
156 if (regval
& (PAR_ERR
| Rx_OVR
| CRC_ERR
)) {
157 writeb(ERR_RES
, &channel
->control
);
164 /* This function must only be called when the TX is not busy. The UART
165 * port lock must be held and local interrupts disabled.
167 static void __load_zsregs(struct zilog_channel
*channel
, unsigned char *regs
)
171 /* Let pending transmits finish. */
172 for (i
= 0; i
< 1000; i
++) {
173 unsigned char stat
= read_zsreg(channel
, R1
);
179 writeb(ERR_RES
, &channel
->control
);
183 ip22zilog_clear_fifo(channel
);
185 /* Disable all interrupts. */
186 write_zsreg(channel
, R1
,
187 regs
[R1
] & ~(RxINT_MASK
| TxINT_ENAB
| EXT_INT_ENAB
));
189 /* Set parity, sync config, stop bits, and clock divisor. */
190 write_zsreg(channel
, R4
, regs
[R4
]);
192 /* Set misc. TX/RX control bits. */
193 write_zsreg(channel
, R10
, regs
[R10
]);
195 /* Set TX/RX controls sans the enable bits. */
196 write_zsreg(channel
, R3
, regs
[R3
] & ~RxENAB
);
197 write_zsreg(channel
, R5
, regs
[R5
] & ~TxENAB
);
199 /* Synchronous mode config. */
200 write_zsreg(channel
, R6
, regs
[R6
]);
201 write_zsreg(channel
, R7
, regs
[R7
]);
203 /* Don't mess with the interrupt vector (R2, unused by us) and
204 * master interrupt control (R9). We make sure this is setup
205 * properly at probe time then never touch it again.
208 /* Disable baud generator. */
209 write_zsreg(channel
, R14
, regs
[R14
] & ~BRENAB
);
211 /* Clock mode control. */
212 write_zsreg(channel
, R11
, regs
[R11
]);
214 /* Lower and upper byte of baud rate generator divisor. */
215 write_zsreg(channel
, R12
, regs
[R12
]);
216 write_zsreg(channel
, R13
, regs
[R13
]);
218 /* Now rewrite R14, with BRENAB (if set). */
219 write_zsreg(channel
, R14
, regs
[R14
]);
221 /* External status interrupt control. */
222 write_zsreg(channel
, R15
, regs
[R15
]);
224 /* Reset external status interrupts. */
225 write_zsreg(channel
, R0
, RES_EXT_INT
);
226 write_zsreg(channel
, R0
, RES_EXT_INT
);
228 /* Rewrite R3/R5, this time without enables masked. */
229 write_zsreg(channel
, R3
, regs
[R3
]);
230 write_zsreg(channel
, R5
, regs
[R5
]);
232 /* Rewrite R1, this time without IRQ enabled masked. */
233 write_zsreg(channel
, R1
, regs
[R1
]);
236 /* Reprogram the Zilog channel HW registers with the copies found in the
237 * software state struct. If the transmitter is busy, we defer this update
238 * until the next TX complete interrupt. Else, we do it right now.
240 * The UART port lock must be held and local interrupts disabled.
242 static void ip22zilog_maybe_update_regs(struct uart_ip22zilog_port
*up
,
243 struct zilog_channel
*channel
)
245 if (!ZS_REGS_HELD(up
)) {
246 if (ZS_TX_ACTIVE(up
)) {
247 up
->flags
|= IP22ZILOG_FLAG_REGS_HELD
;
249 __load_zsregs(channel
, up
->curregs
);
254 static void ip22zilog_receive_chars(struct uart_ip22zilog_port
*up
,
255 struct zilog_channel
*channel
)
257 struct tty_struct
*tty
= up
->port
.info
->tty
; /* XXX info==NULL? */
260 unsigned char ch
, r1
, flag
;
262 r1
= read_zsreg(channel
, R1
);
263 if (r1
& (PAR_ERR
| Rx_OVR
| CRC_ERR
)) {
264 writeb(ERR_RES
, &channel
->control
);
269 ch
= readb(&channel
->control
);
272 /* This funny hack depends upon BRK_ABRT not interfering
273 * with the other bits we care about in R1.
278 ch
= readb(&channel
->data
);
281 ch
&= up
->parity_mask
;
283 if (ZS_IS_CONS(up
) && (r1
& BRK_ABRT
)) {
284 /* Wait for BREAK to deassert to avoid potentially
285 * confusing the PROM.
288 ch
= readb(&channel
->control
);
290 if (!(ch
& BRK_ABRT
))
297 /* A real serial line, record the character and status. */
299 up
->port
.icount
.rx
++;
300 if (r1
& (BRK_ABRT
| PAR_ERR
| Rx_OVR
| CRC_ERR
)) {
302 r1
&= ~(PAR_ERR
| CRC_ERR
);
303 up
->port
.icount
.brk
++;
304 if (uart_handle_break(&up
->port
))
307 else if (r1
& PAR_ERR
)
308 up
->port
.icount
.parity
++;
309 else if (r1
& CRC_ERR
)
310 up
->port
.icount
.frame
++;
312 up
->port
.icount
.overrun
++;
313 r1
&= up
->port
.read_status_mask
;
316 else if (r1
& PAR_ERR
)
318 else if (r1
& CRC_ERR
)
321 if (uart_handle_sysrq_char(&up
->port
, ch
))
324 if (up
->port
.ignore_status_mask
== 0xff ||
325 (r1
& up
->port
.ignore_status_mask
) == 0)
326 tty_insert_flip_char(tty
, ch
, flag
);
329 tty_insert_flip_char(tty
, 0, TTY_OVERRUN
);
331 ch
= readb(&channel
->control
);
333 if (!(ch
& Rx_CH_AV
))
337 tty_flip_buffer_push(tty
);
340 static void ip22zilog_status_handle(struct uart_ip22zilog_port
*up
,
341 struct zilog_channel
*channel
)
343 unsigned char status
;
345 status
= readb(&channel
->control
);
348 writeb(RES_EXT_INT
, &channel
->control
);
352 if (ZS_WANTS_MODEM_STATUS(up
)) {
354 up
->port
.icount
.dsr
++;
356 /* The Zilog just gives us an interrupt when DCD/CTS/etc. change.
357 * But it does not tell us which bit has changed, we have to keep
358 * track of this ourselves.
360 if ((status
& DCD
) ^ up
->prev_status
)
361 uart_handle_dcd_change(&up
->port
,
363 if ((status
& CTS
) ^ up
->prev_status
)
364 uart_handle_cts_change(&up
->port
,
367 wake_up_interruptible(&up
->port
.info
->delta_msr_wait
);
370 up
->prev_status
= status
;
373 static void ip22zilog_transmit_chars(struct uart_ip22zilog_port
*up
,
374 struct zilog_channel
*channel
)
376 struct circ_buf
*xmit
;
378 if (ZS_IS_CONS(up
)) {
379 unsigned char status
= readb(&channel
->control
);
382 /* TX still busy? Just wait for the next TX done interrupt.
384 * It can occur because of how we do serial console writes. It would
385 * be nice to transmit console writes just like we normally would for
386 * a TTY line. (ie. buffered and TX interrupt driven). That is not
387 * easy because console writes cannot sleep. One solution might be
388 * to poll on enough port->xmit space becomming free. -DaveM
390 if (!(status
& Tx_BUF_EMP
))
394 up
->flags
&= ~IP22ZILOG_FLAG_TX_ACTIVE
;
396 if (ZS_REGS_HELD(up
)) {
397 __load_zsregs(channel
, up
->curregs
);
398 up
->flags
&= ~IP22ZILOG_FLAG_REGS_HELD
;
401 if (ZS_TX_STOPPED(up
)) {
402 up
->flags
&= ~IP22ZILOG_FLAG_TX_STOPPED
;
406 if (up
->port
.x_char
) {
407 up
->flags
|= IP22ZILOG_FLAG_TX_ACTIVE
;
408 writeb(up
->port
.x_char
, &channel
->data
);
412 up
->port
.icount
.tx
++;
417 if (up
->port
.info
== NULL
)
419 xmit
= &up
->port
.info
->xmit
;
420 if (uart_circ_empty(xmit
))
422 if (uart_tx_stopped(&up
->port
))
425 up
->flags
|= IP22ZILOG_FLAG_TX_ACTIVE
;
426 writeb(xmit
->buf
[xmit
->tail
], &channel
->data
);
430 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
431 up
->port
.icount
.tx
++;
433 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
434 uart_write_wakeup(&up
->port
);
439 writeb(RES_Tx_P
, &channel
->control
);
444 static irqreturn_t
ip22zilog_interrupt(int irq
, void *dev_id
)
446 struct uart_ip22zilog_port
*up
= dev_id
;
449 struct zilog_channel
*channel
450 = ZILOG_CHANNEL_FROM_PORT(&up
->port
);
453 spin_lock(&up
->port
.lock
);
454 r3
= read_zsreg(channel
, R3
);
457 if (r3
& (CHAEXT
| CHATxIP
| CHARxIP
)) {
458 writeb(RES_H_IUS
, &channel
->control
);
463 ip22zilog_receive_chars(up
, channel
);
465 ip22zilog_status_handle(up
, channel
);
467 ip22zilog_transmit_chars(up
, channel
);
469 spin_unlock(&up
->port
.lock
);
473 channel
= ZILOG_CHANNEL_FROM_PORT(&up
->port
);
475 spin_lock(&up
->port
.lock
);
476 if (r3
& (CHBEXT
| CHBTxIP
| CHBRxIP
)) {
477 writeb(RES_H_IUS
, &channel
->control
);
482 ip22zilog_receive_chars(up
, channel
);
484 ip22zilog_status_handle(up
, channel
);
486 ip22zilog_transmit_chars(up
, channel
);
488 spin_unlock(&up
->port
.lock
);
496 /* A convenient way to quickly get R0 status. The caller must _not_ hold the
497 * port lock, it is acquired here.
499 static __inline__
unsigned char ip22zilog_read_channel_status(struct uart_port
*port
)
501 struct zilog_channel
*channel
;
502 unsigned char status
;
504 channel
= ZILOG_CHANNEL_FROM_PORT(port
);
505 status
= readb(&channel
->control
);
511 /* The port lock is not held. */
512 static unsigned int ip22zilog_tx_empty(struct uart_port
*port
)
515 unsigned char status
;
518 spin_lock_irqsave(&port
->lock
, flags
);
520 status
= ip22zilog_read_channel_status(port
);
522 spin_unlock_irqrestore(&port
->lock
, flags
);
524 if (status
& Tx_BUF_EMP
)
532 /* The port lock is held and interrupts are disabled. */
533 static unsigned int ip22zilog_get_mctrl(struct uart_port
*port
)
535 unsigned char status
;
538 status
= ip22zilog_read_channel_status(port
);
551 /* The port lock is held and interrupts are disabled. */
552 static void ip22zilog_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
554 struct uart_ip22zilog_port
*up
= (struct uart_ip22zilog_port
*) port
;
555 struct zilog_channel
*channel
= ZILOG_CHANNEL_FROM_PORT(port
);
556 unsigned char set_bits
, clear_bits
;
558 set_bits
= clear_bits
= 0;
560 if (mctrl
& TIOCM_RTS
)
564 if (mctrl
& TIOCM_DTR
)
569 /* NOTE: Not subject to 'transmitter active' rule. */
570 up
->curregs
[R5
] |= set_bits
;
571 up
->curregs
[R5
] &= ~clear_bits
;
572 write_zsreg(channel
, R5
, up
->curregs
[R5
]);
575 /* The port lock is held and interrupts are disabled. */
576 static void ip22zilog_stop_tx(struct uart_port
*port
)
578 struct uart_ip22zilog_port
*up
= (struct uart_ip22zilog_port
*) port
;
580 up
->flags
|= IP22ZILOG_FLAG_TX_STOPPED
;
583 /* The port lock is held and interrupts are disabled. */
584 static void ip22zilog_start_tx(struct uart_port
*port
)
586 struct uart_ip22zilog_port
*up
= (struct uart_ip22zilog_port
*) port
;
587 struct zilog_channel
*channel
= ZILOG_CHANNEL_FROM_PORT(port
);
588 unsigned char status
;
590 up
->flags
|= IP22ZILOG_FLAG_TX_ACTIVE
;
591 up
->flags
&= ~IP22ZILOG_FLAG_TX_STOPPED
;
593 status
= readb(&channel
->control
);
596 /* TX busy? Just wait for the TX done interrupt. */
597 if (!(status
& Tx_BUF_EMP
))
600 /* Send the first character to jump-start the TX done
601 * IRQ sending engine.
604 writeb(port
->x_char
, &channel
->data
);
611 struct circ_buf
*xmit
= &port
->info
->xmit
;
613 writeb(xmit
->buf
[xmit
->tail
], &channel
->data
);
617 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
620 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
621 uart_write_wakeup(&up
->port
);
625 /* The port lock is held and interrupts are disabled. */
626 static void ip22zilog_stop_rx(struct uart_port
*port
)
628 struct uart_ip22zilog_port
*up
= UART_ZILOG(port
);
629 struct zilog_channel
*channel
;
634 channel
= ZILOG_CHANNEL_FROM_PORT(port
);
636 /* Disable all RX interrupts. */
637 up
->curregs
[R1
] &= ~RxINT_MASK
;
638 ip22zilog_maybe_update_regs(up
, channel
);
641 /* The port lock is held. */
642 static void ip22zilog_enable_ms(struct uart_port
*port
)
644 struct uart_ip22zilog_port
*up
= (struct uart_ip22zilog_port
*) port
;
645 struct zilog_channel
*channel
= ZILOG_CHANNEL_FROM_PORT(port
);
646 unsigned char new_reg
;
648 new_reg
= up
->curregs
[R15
] | (DCDIE
| SYNCIE
| CTSIE
);
649 if (new_reg
!= up
->curregs
[R15
]) {
650 up
->curregs
[R15
] = new_reg
;
652 /* NOTE: Not subject to 'transmitter active' rule. */
653 write_zsreg(channel
, R15
, up
->curregs
[R15
]);
657 /* The port lock is not held. */
658 static void ip22zilog_break_ctl(struct uart_port
*port
, int break_state
)
660 struct uart_ip22zilog_port
*up
= (struct uart_ip22zilog_port
*) port
;
661 struct zilog_channel
*channel
= ZILOG_CHANNEL_FROM_PORT(port
);
662 unsigned char set_bits
, clear_bits
, new_reg
;
665 set_bits
= clear_bits
= 0;
670 clear_bits
|= SND_BRK
;
672 spin_lock_irqsave(&port
->lock
, flags
);
674 new_reg
= (up
->curregs
[R5
] | set_bits
) & ~clear_bits
;
675 if (new_reg
!= up
->curregs
[R5
]) {
676 up
->curregs
[R5
] = new_reg
;
678 /* NOTE: Not subject to 'transmitter active' rule. */
679 write_zsreg(channel
, R5
, up
->curregs
[R5
]);
682 spin_unlock_irqrestore(&port
->lock
, flags
);
685 static void __ip22zilog_startup(struct uart_ip22zilog_port
*up
)
687 struct zilog_channel
*channel
;
689 channel
= ZILOG_CHANNEL_FROM_PORT(&up
->port
);
690 up
->prev_status
= readb(&channel
->control
);
692 /* Enable receiver and transmitter. */
693 up
->curregs
[R3
] |= RxENAB
;
694 up
->curregs
[R5
] |= TxENAB
;
696 up
->curregs
[R1
] |= EXT_INT_ENAB
| INT_ALL_Rx
| TxINT_ENAB
;
697 ip22zilog_maybe_update_regs(up
, channel
);
700 static int ip22zilog_startup(struct uart_port
*port
)
702 struct uart_ip22zilog_port
*up
= UART_ZILOG(port
);
708 spin_lock_irqsave(&port
->lock
, flags
);
709 __ip22zilog_startup(up
);
710 spin_unlock_irqrestore(&port
->lock
, flags
);
715 * The test for ZS_IS_CONS is explained by the following e-mail:
717 * From: Russell King <rmk@arm.linux.org.uk>
718 * Date: Sun, 8 Dec 2002 10:18:38 +0000
720 * On Sun, Dec 08, 2002 at 02:43:36AM -0500, Pete Zaitcev wrote:
721 * > I boot my 2.5 boxes using "console=ttyS0,9600" argument,
722 * > and I noticed that something is not right with reference
723 * > counting in this case. It seems that when the console
724 * > is open by kernel initially, this is not accounted
725 * > as an open, and uart_startup is not called.
727 * That is correct. We are unable to call uart_startup when the serial
728 * console is initialised because it may need to allocate memory (as
729 * request_irq does) and the memory allocators may not have been
732 * 1. initialise the port into a state where it can send characters in the
733 * console write method.
735 * 2. don't do the actual hardware shutdown in your shutdown() method (but
736 * do the normal software shutdown - ie, free irqs etc)
739 static void ip22zilog_shutdown(struct uart_port
*port
)
741 struct uart_ip22zilog_port
*up
= UART_ZILOG(port
);
742 struct zilog_channel
*channel
;
748 spin_lock_irqsave(&port
->lock
, flags
);
750 channel
= ZILOG_CHANNEL_FROM_PORT(port
);
752 /* Disable receiver and transmitter. */
753 up
->curregs
[R3
] &= ~RxENAB
;
754 up
->curregs
[R5
] &= ~TxENAB
;
756 /* Disable all interrupts and BRK assertion. */
757 up
->curregs
[R1
] &= ~(EXT_INT_ENAB
| TxINT_ENAB
| RxINT_MASK
);
758 up
->curregs
[R5
] &= ~SND_BRK
;
759 ip22zilog_maybe_update_regs(up
, channel
);
761 spin_unlock_irqrestore(&port
->lock
, flags
);
764 /* Shared by TTY driver and serial console setup. The port lock is held
765 * and local interrupts are disabled.
768 ip22zilog_convert_to_zs(struct uart_ip22zilog_port
*up
, unsigned int cflag
,
769 unsigned int iflag
, int brg
)
772 up
->curregs
[R10
] = NRZ
;
773 up
->curregs
[R11
] = TCBR
| RCBR
;
775 /* Program BAUD and clock source. */
776 up
->curregs
[R4
] &= ~XCLK_MASK
;
777 up
->curregs
[R4
] |= X16CLK
;
778 up
->curregs
[R12
] = brg
& 0xff;
779 up
->curregs
[R13
] = (brg
>> 8) & 0xff;
780 up
->curregs
[R14
] = BRENAB
;
782 /* Character size, stop bits, and parity. */
783 up
->curregs
[3] &= ~RxN_MASK
;
784 up
->curregs
[5] &= ~TxN_MASK
;
785 switch (cflag
& CSIZE
) {
787 up
->curregs
[3] |= Rx5
;
788 up
->curregs
[5] |= Tx5
;
789 up
->parity_mask
= 0x1f;
792 up
->curregs
[3] |= Rx6
;
793 up
->curregs
[5] |= Tx6
;
794 up
->parity_mask
= 0x3f;
797 up
->curregs
[3] |= Rx7
;
798 up
->curregs
[5] |= Tx7
;
799 up
->parity_mask
= 0x7f;
803 up
->curregs
[3] |= Rx8
;
804 up
->curregs
[5] |= Tx8
;
805 up
->parity_mask
= 0xff;
808 up
->curregs
[4] &= ~0x0c;
810 up
->curregs
[4] |= SB2
;
812 up
->curregs
[4] |= SB1
;
814 up
->curregs
[4] |= PAR_ENAB
;
816 up
->curregs
[4] &= ~PAR_ENAB
;
817 if (!(cflag
& PARODD
))
818 up
->curregs
[4] |= PAR_EVEN
;
820 up
->curregs
[4] &= ~PAR_EVEN
;
822 up
->port
.read_status_mask
= Rx_OVR
;
824 up
->port
.read_status_mask
|= CRC_ERR
| PAR_ERR
;
825 if (iflag
& (BRKINT
| PARMRK
))
826 up
->port
.read_status_mask
|= BRK_ABRT
;
828 up
->port
.ignore_status_mask
= 0;
830 up
->port
.ignore_status_mask
|= CRC_ERR
| PAR_ERR
;
831 if (iflag
& IGNBRK
) {
832 up
->port
.ignore_status_mask
|= BRK_ABRT
;
834 up
->port
.ignore_status_mask
|= Rx_OVR
;
837 if ((cflag
& CREAD
) == 0)
838 up
->port
.ignore_status_mask
= 0xff;
841 /* The port lock is not held. */
843 ip22zilog_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
844 struct ktermios
*old
)
846 struct uart_ip22zilog_port
*up
= (struct uart_ip22zilog_port
*) port
;
850 baud
= uart_get_baud_rate(port
, termios
, old
, 1200, 76800);
852 spin_lock_irqsave(&up
->port
.lock
, flags
);
854 brg
= BPS_TO_BRG(baud
, ZS_CLOCK
/ ZS_CLOCK_DIVISOR
);
856 ip22zilog_convert_to_zs(up
, termios
->c_cflag
, termios
->c_iflag
, brg
);
858 if (UART_ENABLE_MS(&up
->port
, termios
->c_cflag
))
859 up
->flags
|= IP22ZILOG_FLAG_MODEM_STATUS
;
861 up
->flags
&= ~IP22ZILOG_FLAG_MODEM_STATUS
;
863 up
->cflag
= termios
->c_cflag
;
865 ip22zilog_maybe_update_regs(up
, ZILOG_CHANNEL_FROM_PORT(port
));
867 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
870 static const char *ip22zilog_type(struct uart_port
*port
)
875 /* We do not request/release mappings of the registers here, this
876 * happens at early serial probe time.
878 static void ip22zilog_release_port(struct uart_port
*port
)
882 static int ip22zilog_request_port(struct uart_port
*port
)
887 /* These do not need to do anything interesting either. */
888 static void ip22zilog_config_port(struct uart_port
*port
, int flags
)
892 /* We do not support letting the user mess with the divisor, IRQ, etc. */
893 static int ip22zilog_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
898 static struct uart_ops ip22zilog_pops
= {
899 .tx_empty
= ip22zilog_tx_empty
,
900 .set_mctrl
= ip22zilog_set_mctrl
,
901 .get_mctrl
= ip22zilog_get_mctrl
,
902 .stop_tx
= ip22zilog_stop_tx
,
903 .start_tx
= ip22zilog_start_tx
,
904 .stop_rx
= ip22zilog_stop_rx
,
905 .enable_ms
= ip22zilog_enable_ms
,
906 .break_ctl
= ip22zilog_break_ctl
,
907 .startup
= ip22zilog_startup
,
908 .shutdown
= ip22zilog_shutdown
,
909 .set_termios
= ip22zilog_set_termios
,
910 .type
= ip22zilog_type
,
911 .release_port
= ip22zilog_release_port
,
912 .request_port
= ip22zilog_request_port
,
913 .config_port
= ip22zilog_config_port
,
914 .verify_port
= ip22zilog_verify_port
,
917 static struct uart_ip22zilog_port
*ip22zilog_port_table
;
918 static struct zilog_layout
**ip22zilog_chip_regs
;
920 static struct uart_ip22zilog_port
*ip22zilog_irq_chain
;
921 static int zilog_irq
= -1;
923 static void * __init
alloc_one_table(unsigned long size
)
927 ret
= kmalloc(size
, GFP_KERNEL
);
929 memset(ret
, 0, size
);
934 static void __init
ip22zilog_alloc_tables(void)
936 ip22zilog_port_table
= (struct uart_ip22zilog_port
*)
937 alloc_one_table(NUM_CHANNELS
* sizeof(struct uart_ip22zilog_port
));
938 ip22zilog_chip_regs
= (struct zilog_layout
**)
939 alloc_one_table(NUM_IP22ZILOG
* sizeof(struct zilog_layout
*));
941 if (ip22zilog_port_table
== NULL
|| ip22zilog_chip_regs
== NULL
) {
942 panic("IP22-Zilog: Cannot allocate IP22-Zilog tables.");
946 /* Get the address of the registers for IP22-Zilog instance CHIP. */
947 static struct zilog_layout
* __init
get_zs(int chip
)
951 if (chip
< 0 || chip
>= NUM_IP22ZILOG
) {
952 panic("IP22-Zilog: Illegal chip number %d in get_zs.", chip
);
955 /* Not probe-able, hard code it. */
956 base
= (unsigned long) &sgioc
->uart
;
958 zilog_irq
= SGI_SERIAL_IRQ
;
959 request_mem_region(base
, 8, "IP22-Zilog");
961 return (struct zilog_layout
*) base
;
964 #define ZS_PUT_CHAR_MAX_DELAY 2000 /* 10 ms */
966 #ifdef CONFIG_SERIAL_IP22_ZILOG_CONSOLE
967 static void ip22zilog_put_char(struct uart_port
*port
, int ch
)
969 struct zilog_channel
*channel
= ZILOG_CHANNEL_FROM_PORT(port
);
970 int loops
= ZS_PUT_CHAR_MAX_DELAY
;
972 /* This is a timed polling loop so do not switch the explicit
973 * udelay with ZSDELAY as that is a NOP on some platforms. -DaveM
976 unsigned char val
= readb(&channel
->control
);
977 if (val
& Tx_BUF_EMP
) {
984 writeb(ch
, &channel
->data
);
990 ip22zilog_console_write(struct console
*con
, const char *s
, unsigned int count
)
992 struct uart_ip22zilog_port
*up
= &ip22zilog_port_table
[con
->index
];
995 spin_lock_irqsave(&up
->port
.lock
, flags
);
996 uart_console_write(&up
->port
, s
, count
, ip22zilog_put_char
);
998 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
1002 ip22serial_console_termios(struct console
*con
, char *options
)
1004 int baud
= 9600, bits
= 8, cflag
;
1009 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
1011 cflag
= CREAD
| HUPCL
| CLOCAL
;
1014 case 150: cflag
|= B150
; break;
1015 case 300: cflag
|= B300
; break;
1016 case 600: cflag
|= B600
; break;
1017 case 1200: cflag
|= B1200
; break;
1018 case 2400: cflag
|= B2400
; break;
1019 case 4800: cflag
|= B4800
; break;
1020 case 9600: cflag
|= B9600
; break;
1021 case 19200: cflag
|= B19200
; break;
1022 case 38400: cflag
|= B38400
; break;
1023 default: baud
= 9600; cflag
|= B9600
; break;
1026 con
->cflag
= cflag
| CS8
; /* 8N1 */
1029 static int __init
ip22zilog_console_setup(struct console
*con
, char *options
)
1031 struct uart_ip22zilog_port
*up
= &ip22zilog_port_table
[con
->index
];
1032 unsigned long flags
;
1035 printk("Console: ttyS%d (IP22-Zilog)\n", con
->index
);
1037 /* Get firmware console settings. */
1038 ip22serial_console_termios(con
, options
);
1040 /* Firmware console speed is limited to 150-->38400 baud so
1041 * this hackish cflag thing is OK.
1043 switch (con
->cflag
& CBAUD
) {
1044 case B150
: baud
= 150; break;
1045 case B300
: baud
= 300; break;
1046 case B600
: baud
= 600; break;
1047 case B1200
: baud
= 1200; break;
1048 case B2400
: baud
= 2400; break;
1049 case B4800
: baud
= 4800; break;
1050 default: case B9600
: baud
= 9600; break;
1051 case B19200
: baud
= 19200; break;
1052 case B38400
: baud
= 38400; break;
1055 brg
= BPS_TO_BRG(baud
, ZS_CLOCK
/ ZS_CLOCK_DIVISOR
);
1057 spin_lock_irqsave(&up
->port
.lock
, flags
);
1059 up
->curregs
[R15
] = BRKIE
;
1060 ip22zilog_convert_to_zs(up
, con
->cflag
, 0, brg
);
1062 __ip22zilog_startup(up
);
1064 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
1069 static struct uart_driver ip22zilog_reg
;
1071 static struct console ip22zilog_console
= {
1073 .write
= ip22zilog_console_write
,
1074 .device
= uart_console_device
,
1075 .setup
= ip22zilog_console_setup
,
1076 .flags
= CON_PRINTBUFFER
,
1078 .data
= &ip22zilog_reg
,
1080 #endif /* CONFIG_SERIAL_IP22_ZILOG_CONSOLE */
1082 static struct uart_driver ip22zilog_reg
= {
1083 .owner
= THIS_MODULE
,
1084 .driver_name
= "serial",
1089 #ifdef CONFIG_SERIAL_IP22_ZILOG_CONSOLE
1090 .cons
= &ip22zilog_console
,
1094 static void __init
ip22zilog_prepare(void)
1096 struct uart_ip22zilog_port
*up
;
1097 struct zilog_layout
*rp
;
1103 for (channel
= 0; channel
< NUM_CHANNELS
; channel
++)
1104 spin_lock_init(&ip22zilog_port_table
[channel
].port
.lock
);
1106 ip22zilog_irq_chain
= &ip22zilog_port_table
[NUM_CHANNELS
- 1];
1107 up
= &ip22zilog_port_table
[0];
1108 for (channel
= NUM_CHANNELS
- 1 ; channel
> 0; channel
--)
1109 up
[channel
].next
= &up
[channel
- 1];
1110 up
[channel
].next
= NULL
;
1112 for (chip
= 0; chip
< NUM_IP22ZILOG
; chip
++) {
1113 if (!ip22zilog_chip_regs
[chip
]) {
1114 ip22zilog_chip_regs
[chip
] = rp
= get_zs(chip
);
1116 up
[(chip
* 2) + 0].port
.membase
= (char *) &rp
->channelB
;
1117 up
[(chip
* 2) + 1].port
.membase
= (char *) &rp
->channelA
;
1119 /* In theory mapbase is the physical address ... */
1120 up
[(chip
* 2) + 0].port
.mapbase
=
1121 (unsigned long) ioremap((unsigned long) &rp
->channelB
, 8);
1122 up
[(chip
* 2) + 1].port
.mapbase
=
1123 (unsigned long) ioremap((unsigned long) &rp
->channelA
, 8);
1127 up
[(chip
* 2) + 0].port
.iotype
= UPIO_MEM
;
1128 up
[(chip
* 2) + 0].port
.irq
= zilog_irq
;
1129 up
[(chip
* 2) + 0].port
.uartclk
= ZS_CLOCK
;
1130 up
[(chip
* 2) + 0].port
.fifosize
= 1;
1131 up
[(chip
* 2) + 0].port
.ops
= &ip22zilog_pops
;
1132 up
[(chip
* 2) + 0].port
.type
= PORT_IP22ZILOG
;
1133 up
[(chip
* 2) + 0].port
.flags
= 0;
1134 up
[(chip
* 2) + 0].port
.line
= (chip
* 2) + 0;
1135 up
[(chip
* 2) + 0].flags
= 0;
1138 up
[(chip
* 2) + 1].port
.iotype
= UPIO_MEM
;
1139 up
[(chip
* 2) + 1].port
.irq
= zilog_irq
;
1140 up
[(chip
* 2) + 1].port
.uartclk
= ZS_CLOCK
;
1141 up
[(chip
* 2) + 1].port
.fifosize
= 1;
1142 up
[(chip
* 2) + 1].port
.ops
= &ip22zilog_pops
;
1143 up
[(chip
* 2) + 1].port
.type
= PORT_IP22ZILOG
;
1144 up
[(chip
* 2) + 1].port
.line
= (chip
* 2) + 1;
1145 up
[(chip
* 2) + 1].flags
|= IP22ZILOG_FLAG_IS_CHANNEL_A
;
1149 static void __init
ip22zilog_init_hw(void)
1153 for (i
= 0; i
< NUM_CHANNELS
; i
++) {
1154 struct uart_ip22zilog_port
*up
= &ip22zilog_port_table
[i
];
1155 struct zilog_channel
*channel
= ZILOG_CHANNEL_FROM_PORT(&up
->port
);
1156 unsigned long flags
;
1159 spin_lock_irqsave(&up
->port
.lock
, flags
);
1161 if (ZS_IS_CHANNEL_A(up
)) {
1162 write_zsreg(channel
, R9
, FHWRES
);
1164 (void) read_zsreg(channel
, R0
);
1167 /* Normal serial TTY. */
1168 up
->parity_mask
= 0xff;
1169 up
->curregs
[R1
] = EXT_INT_ENAB
| INT_ALL_Rx
| TxINT_ENAB
;
1170 up
->curregs
[R4
] = PAR_EVEN
| X16CLK
| SB1
;
1171 up
->curregs
[R3
] = RxENAB
| Rx8
;
1172 up
->curregs
[R5
] = TxENAB
| Tx8
;
1173 up
->curregs
[R9
] = NV
| MIE
;
1174 up
->curregs
[R10
] = NRZ
;
1175 up
->curregs
[R11
] = TCBR
| RCBR
;
1177 brg
= BPS_TO_BRG(baud
, ZS_CLOCK
/ ZS_CLOCK_DIVISOR
);
1178 up
->curregs
[R12
] = (brg
& 0xff);
1179 up
->curregs
[R13
] = (brg
>> 8) & 0xff;
1180 up
->curregs
[R14
] = BRENAB
;
1181 __load_zsregs(channel
, up
->curregs
);
1182 /* set master interrupt enable */
1183 write_zsreg(channel
, R9
, up
->curregs
[R9
]);
1185 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
1189 static int __init
ip22zilog_ports_init(void)
1193 printk(KERN_INFO
"Serial: IP22 Zilog driver (%d chips).\n", NUM_IP22ZILOG
);
1195 ip22zilog_prepare();
1197 if (request_irq(zilog_irq
, ip22zilog_interrupt
, 0,
1198 "IP22-Zilog", ip22zilog_irq_chain
)) {
1199 panic("IP22-Zilog: Unable to register zs interrupt handler.\n");
1202 ip22zilog_init_hw();
1204 ret
= uart_register_driver(&ip22zilog_reg
);
1208 for (i
= 0; i
< NUM_CHANNELS
; i
++) {
1209 struct uart_ip22zilog_port
*up
= &ip22zilog_port_table
[i
];
1211 uart_add_one_port(&ip22zilog_reg
, &up
->port
);
1218 static int __init
ip22zilog_init(void)
1220 /* IP22 Zilog setup is hard coded, no probing to do. */
1221 ip22zilog_alloc_tables();
1222 ip22zilog_ports_init();
1227 static void __exit
ip22zilog_exit(void)
1230 struct uart_ip22zilog_port
*up
;
1232 for (i
= 0; i
< NUM_CHANNELS
; i
++) {
1233 up
= &ip22zilog_port_table
[i
];
1235 uart_remove_one_port(&ip22zilog_reg
, &up
->port
);
1239 up
= &ip22zilog_port_table
[0];
1240 for (i
= 0; i
< NUM_IP22ZILOG
; i
++) {
1241 if (up
[(i
* 2) + 0].port
.mapbase
) {
1242 iounmap((void*)up
[(i
* 2) + 0].port
.mapbase
);
1243 up
[(i
* 2) + 0].port
.mapbase
= 0;
1245 if (up
[(i
* 2) + 1].port
.mapbase
) {
1246 iounmap((void*)up
[(i
* 2) + 1].port
.mapbase
);
1247 up
[(i
* 2) + 1].port
.mapbase
= 0;
1251 uart_unregister_driver(&ip22zilog_reg
);
1254 module_init(ip22zilog_init
);
1255 module_exit(ip22zilog_exit
);
1257 /* David wrote it but I'm to blame for the bugs ... */
1258 MODULE_AUTHOR("Ralf Baechle <ralf@linux-mips.org>");
1259 MODULE_DESCRIPTION("SGI Zilog serial port driver");
1260 MODULE_LICENSE("GPL");