1 // SPDX-License-Identifier: GPL-2.0
3 * Driver for Zilog serial chips found on SGI workstations and
4 * servers. This driver could actually be made more generic.
6 * This is based on the drivers/serial/sunzilog.c code as of 2.6.0-test7 and the
7 * old drivers/sgi/char/sgiserial.c code which itself is based of the original
8 * drivers/sbus/char/zs.c code. A lot of code has been simply moved over
9 * directly from there but much has been rewritten. Credits therefore go out
10 * to David S. Miller, Eddie C. Dost, Pete Zaitcev, Ted Ts'o and Alex Buell
11 * for their work there.
13 * Copyright (C) 2002 Ralf Baechle (ralf@linux-mips.org)
14 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
16 #include <linux/module.h>
17 #include <linux/kernel.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"
50 * On IP22 we need to delay after register accesses but we do not need to
53 #define ZSDELAY() udelay(5)
54 #define ZSDELAY_LONG() udelay(20)
55 #define ZS_WSYNC(channel) do { } while (0)
57 #define NUM_IP22ZILOG 1
58 #define NUM_CHANNELS (NUM_IP22ZILOG * 2)
60 #define ZS_CLOCK 3672000 /* Zilog input clock rate. */
61 #define ZS_CLOCK_DIVISOR 16 /* Divisor this driver uses. */
64 * We wrap our port structure around the generic uart_port.
66 struct uart_ip22zilog_port
{
67 struct uart_port port
;
69 /* IRQ servicing chain. */
70 struct uart_ip22zilog_port
*next
;
72 /* Current values of Zilog write registers. */
73 unsigned char curregs
[NUM_ZSREGS
];
76 #define IP22ZILOG_FLAG_IS_CONS 0x00000004
77 #define IP22ZILOG_FLAG_IS_KGDB 0x00000008
78 #define IP22ZILOG_FLAG_MODEM_STATUS 0x00000010
79 #define IP22ZILOG_FLAG_IS_CHANNEL_A 0x00000020
80 #define IP22ZILOG_FLAG_REGS_HELD 0x00000040
81 #define IP22ZILOG_FLAG_TX_STOPPED 0x00000080
82 #define IP22ZILOG_FLAG_TX_ACTIVE 0x00000100
83 #define IP22ZILOG_FLAG_RESET_DONE 0x00000200
85 unsigned int tty_break
;
87 unsigned char parity_mask
;
88 unsigned char prev_status
;
91 #define ZILOG_CHANNEL_FROM_PORT(PORT) ((struct zilog_channel *)((PORT)->membase))
92 #define UART_ZILOG(PORT) ((struct uart_ip22zilog_port *)(PORT))
93 #define IP22ZILOG_GET_CURR_REG(PORT, REGNUM) \
94 (UART_ZILOG(PORT)->curregs[REGNUM])
95 #define IP22ZILOG_SET_CURR_REG(PORT, REGNUM, REGVAL) \
96 ((UART_ZILOG(PORT)->curregs[REGNUM]) = (REGVAL))
97 #define ZS_IS_CONS(UP) ((UP)->flags & IP22ZILOG_FLAG_IS_CONS)
98 #define ZS_IS_KGDB(UP) ((UP)->flags & IP22ZILOG_FLAG_IS_KGDB)
99 #define ZS_WANTS_MODEM_STATUS(UP) ((UP)->flags & IP22ZILOG_FLAG_MODEM_STATUS)
100 #define ZS_IS_CHANNEL_A(UP) ((UP)->flags & IP22ZILOG_FLAG_IS_CHANNEL_A)
101 #define ZS_REGS_HELD(UP) ((UP)->flags & IP22ZILOG_FLAG_REGS_HELD)
102 #define ZS_TX_STOPPED(UP) ((UP)->flags & IP22ZILOG_FLAG_TX_STOPPED)
103 #define ZS_TX_ACTIVE(UP) ((UP)->flags & IP22ZILOG_FLAG_TX_ACTIVE)
105 /* Reading and writing Zilog8530 registers. The delays are to make this
106 * driver work on the IP22 which needs a settling delay after each chip
107 * register access, other machines handle this in hardware via auxiliary
108 * flip-flops which implement the settle time we do in software.
110 * The port lock must be held and local IRQs must be disabled
111 * when {read,write}_zsreg is invoked.
113 static unsigned char read_zsreg(struct zilog_channel
*channel
,
116 unsigned char retval
;
118 writeb(reg
, &channel
->control
);
120 retval
= readb(&channel
->control
);
126 static void write_zsreg(struct zilog_channel
*channel
,
127 unsigned char reg
, unsigned char value
)
129 writeb(reg
, &channel
->control
);
131 writeb(value
, &channel
->control
);
135 static void ip22zilog_clear_fifo(struct zilog_channel
*channel
)
139 for (i
= 0; i
< 32; i
++) {
140 unsigned char regval
;
142 regval
= readb(&channel
->control
);
144 if (regval
& Rx_CH_AV
)
147 regval
= read_zsreg(channel
, R1
);
148 readb(&channel
->data
);
151 if (regval
& (PAR_ERR
| Rx_OVR
| CRC_ERR
)) {
152 writeb(ERR_RES
, &channel
->control
);
159 /* This function must only be called when the TX is not busy. The UART
160 * port lock must be held and local interrupts disabled.
162 static void __load_zsregs(struct zilog_channel
*channel
, unsigned char *regs
)
166 /* Let pending transmits finish. */
167 for (i
= 0; i
< 1000; i
++) {
168 unsigned char stat
= read_zsreg(channel
, R1
);
174 writeb(ERR_RES
, &channel
->control
);
178 ip22zilog_clear_fifo(channel
);
180 /* Disable all interrupts. */
181 write_zsreg(channel
, R1
,
182 regs
[R1
] & ~(RxINT_MASK
| TxINT_ENAB
| EXT_INT_ENAB
));
184 /* Set parity, sync config, stop bits, and clock divisor. */
185 write_zsreg(channel
, R4
, regs
[R4
]);
187 /* Set misc. TX/RX control bits. */
188 write_zsreg(channel
, R10
, regs
[R10
]);
190 /* Set TX/RX controls sans the enable bits. */
191 write_zsreg(channel
, R3
, regs
[R3
] & ~RxENAB
);
192 write_zsreg(channel
, R5
, regs
[R5
] & ~TxENAB
);
194 /* Synchronous mode config. */
195 write_zsreg(channel
, R6
, regs
[R6
]);
196 write_zsreg(channel
, R7
, regs
[R7
]);
198 /* Don't mess with the interrupt vector (R2, unused by us) and
199 * master interrupt control (R9). We make sure this is setup
200 * properly at probe time then never touch it again.
203 /* Disable baud generator. */
204 write_zsreg(channel
, R14
, regs
[R14
] & ~BRENAB
);
206 /* Clock mode control. */
207 write_zsreg(channel
, R11
, regs
[R11
]);
209 /* Lower and upper byte of baud rate generator divisor. */
210 write_zsreg(channel
, R12
, regs
[R12
]);
211 write_zsreg(channel
, R13
, regs
[R13
]);
213 /* Now rewrite R14, with BRENAB (if set). */
214 write_zsreg(channel
, R14
, regs
[R14
]);
216 /* External status interrupt control. */
217 write_zsreg(channel
, R15
, regs
[R15
]);
219 /* Reset external status interrupts. */
220 write_zsreg(channel
, R0
, RES_EXT_INT
);
221 write_zsreg(channel
, R0
, RES_EXT_INT
);
223 /* Rewrite R3/R5, this time without enables masked. */
224 write_zsreg(channel
, R3
, regs
[R3
]);
225 write_zsreg(channel
, R5
, regs
[R5
]);
227 /* Rewrite R1, this time without IRQ enabled masked. */
228 write_zsreg(channel
, R1
, regs
[R1
]);
231 /* Reprogram the Zilog channel HW registers with the copies found in the
232 * software state struct. If the transmitter is busy, we defer this update
233 * until the next TX complete interrupt. Else, we do it right now.
235 * The UART port lock must be held and local interrupts disabled.
237 static void ip22zilog_maybe_update_regs(struct uart_ip22zilog_port
*up
,
238 struct zilog_channel
*channel
)
240 if (!ZS_REGS_HELD(up
)) {
241 if (ZS_TX_ACTIVE(up
)) {
242 up
->flags
|= IP22ZILOG_FLAG_REGS_HELD
;
244 __load_zsregs(channel
, up
->curregs
);
249 #define Rx_BRK 0x0100 /* BREAK event software flag. */
250 #define Rx_SYS 0x0200 /* SysRq event software flag. */
252 static bool ip22zilog_receive_chars(struct uart_ip22zilog_port
*up
,
253 struct zilog_channel
*channel
)
255 unsigned char ch
, flag
;
257 bool push
= up
->port
.state
!= NULL
;
260 ch
= readb(&channel
->control
);
262 if (!(ch
& Rx_CH_AV
))
265 r1
= read_zsreg(channel
, R1
);
266 if (r1
& (PAR_ERR
| Rx_OVR
| CRC_ERR
)) {
267 writeb(ERR_RES
, &channel
->control
);
272 ch
= readb(&channel
->data
);
275 ch
&= up
->parity_mask
;
277 /* Handle the null char got when BREAK is removed. */
281 /* A real serial line, record the character and status. */
283 up
->port
.icount
.rx
++;
284 if (r1
& (PAR_ERR
| Rx_OVR
| CRC_ERR
| Rx_SYS
| Rx_BRK
)) {
287 if (r1
& (Rx_SYS
| Rx_BRK
)) {
288 up
->port
.icount
.brk
++;
291 r1
&= ~(PAR_ERR
| CRC_ERR
);
293 else if (r1
& PAR_ERR
)
294 up
->port
.icount
.parity
++;
295 else if (r1
& CRC_ERR
)
296 up
->port
.icount
.frame
++;
298 up
->port
.icount
.overrun
++;
299 r1
&= up
->port
.read_status_mask
;
302 else if (r1
& PAR_ERR
)
304 else if (r1
& CRC_ERR
)
308 if (uart_handle_sysrq_char(&up
->port
, ch
))
312 uart_insert_char(&up
->port
, r1
, Rx_OVR
, ch
, flag
);
317 static void ip22zilog_status_handle(struct uart_ip22zilog_port
*up
,
318 struct zilog_channel
*channel
)
320 unsigned char status
;
322 status
= readb(&channel
->control
);
325 writeb(RES_EXT_INT
, &channel
->control
);
329 if (up
->curregs
[R15
] & BRKIE
) {
330 if ((status
& BRK_ABRT
) && !(up
->prev_status
& BRK_ABRT
)) {
331 if (uart_handle_break(&up
->port
))
332 up
->tty_break
= Rx_SYS
;
334 up
->tty_break
= Rx_BRK
;
338 if (ZS_WANTS_MODEM_STATUS(up
)) {
340 up
->port
.icount
.dsr
++;
342 /* The Zilog just gives us an interrupt when DCD/CTS/etc. change.
343 * But it does not tell us which bit has changed, we have to keep
344 * track of this ourselves.
346 if ((status
^ up
->prev_status
) ^ DCD
)
347 uart_handle_dcd_change(&up
->port
,
349 if ((status
^ up
->prev_status
) ^ CTS
)
350 uart_handle_cts_change(&up
->port
,
353 wake_up_interruptible(&up
->port
.state
->port
.delta_msr_wait
);
356 up
->prev_status
= status
;
359 static void ip22zilog_transmit_chars(struct uart_ip22zilog_port
*up
,
360 struct zilog_channel
*channel
)
362 struct circ_buf
*xmit
;
364 if (ZS_IS_CONS(up
)) {
365 unsigned char status
= readb(&channel
->control
);
368 /* TX still busy? Just wait for the next TX done interrupt.
370 * It can occur because of how we do serial console writes. It would
371 * be nice to transmit console writes just like we normally would for
372 * a TTY line. (ie. buffered and TX interrupt driven). That is not
373 * easy because console writes cannot sleep. One solution might be
374 * to poll on enough port->xmit space becoming free. -DaveM
376 if (!(status
& Tx_BUF_EMP
))
380 up
->flags
&= ~IP22ZILOG_FLAG_TX_ACTIVE
;
382 if (ZS_REGS_HELD(up
)) {
383 __load_zsregs(channel
, up
->curregs
);
384 up
->flags
&= ~IP22ZILOG_FLAG_REGS_HELD
;
387 if (ZS_TX_STOPPED(up
)) {
388 up
->flags
&= ~IP22ZILOG_FLAG_TX_STOPPED
;
392 if (up
->port
.x_char
) {
393 up
->flags
|= IP22ZILOG_FLAG_TX_ACTIVE
;
394 writeb(up
->port
.x_char
, &channel
->data
);
398 up
->port
.icount
.tx
++;
403 if (up
->port
.state
== NULL
)
405 xmit
= &up
->port
.state
->xmit
;
406 if (uart_circ_empty(xmit
))
408 if (uart_tx_stopped(&up
->port
))
411 up
->flags
|= IP22ZILOG_FLAG_TX_ACTIVE
;
412 writeb(xmit
->buf
[xmit
->tail
], &channel
->data
);
416 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
417 up
->port
.icount
.tx
++;
419 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
420 uart_write_wakeup(&up
->port
);
425 writeb(RES_Tx_P
, &channel
->control
);
430 static irqreturn_t
ip22zilog_interrupt(int irq
, void *dev_id
)
432 struct uart_ip22zilog_port
*up
= dev_id
;
435 struct zilog_channel
*channel
436 = ZILOG_CHANNEL_FROM_PORT(&up
->port
);
440 spin_lock(&up
->port
.lock
);
441 r3
= read_zsreg(channel
, R3
);
444 if (r3
& (CHAEXT
| CHATxIP
| CHARxIP
)) {
445 writeb(RES_H_IUS
, &channel
->control
);
450 push
= ip22zilog_receive_chars(up
, channel
);
452 ip22zilog_status_handle(up
, channel
);
454 ip22zilog_transmit_chars(up
, channel
);
456 spin_unlock(&up
->port
.lock
);
459 tty_flip_buffer_push(&up
->port
.state
->port
);
463 channel
= ZILOG_CHANNEL_FROM_PORT(&up
->port
);
466 spin_lock(&up
->port
.lock
);
467 if (r3
& (CHBEXT
| CHBTxIP
| CHBRxIP
)) {
468 writeb(RES_H_IUS
, &channel
->control
);
473 push
= ip22zilog_receive_chars(up
, channel
);
475 ip22zilog_status_handle(up
, channel
);
477 ip22zilog_transmit_chars(up
, channel
);
479 spin_unlock(&up
->port
.lock
);
482 tty_flip_buffer_push(&up
->port
.state
->port
);
490 /* A convenient way to quickly get R0 status. The caller must _not_ hold the
491 * port lock, it is acquired here.
493 static __inline__
unsigned char ip22zilog_read_channel_status(struct uart_port
*port
)
495 struct zilog_channel
*channel
;
496 unsigned char status
;
498 channel
= ZILOG_CHANNEL_FROM_PORT(port
);
499 status
= readb(&channel
->control
);
505 /* The port lock is not held. */
506 static unsigned int ip22zilog_tx_empty(struct uart_port
*port
)
509 unsigned char status
;
512 spin_lock_irqsave(&port
->lock
, flags
);
514 status
= ip22zilog_read_channel_status(port
);
516 spin_unlock_irqrestore(&port
->lock
, flags
);
518 if (status
& Tx_BUF_EMP
)
526 /* The port lock is held and interrupts are disabled. */
527 static unsigned int ip22zilog_get_mctrl(struct uart_port
*port
)
529 unsigned char status
;
532 status
= ip22zilog_read_channel_status(port
);
545 /* The port lock is held and interrupts are disabled. */
546 static void ip22zilog_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
548 struct uart_ip22zilog_port
*up
=
549 container_of(port
, struct uart_ip22zilog_port
, port
);
550 struct zilog_channel
*channel
= ZILOG_CHANNEL_FROM_PORT(port
);
551 unsigned char set_bits
, clear_bits
;
553 set_bits
= clear_bits
= 0;
555 if (mctrl
& TIOCM_RTS
)
559 if (mctrl
& TIOCM_DTR
)
564 /* NOTE: Not subject to 'transmitter active' rule. */
565 up
->curregs
[R5
] |= set_bits
;
566 up
->curregs
[R5
] &= ~clear_bits
;
567 write_zsreg(channel
, R5
, up
->curregs
[R5
]);
570 /* The port lock is held and interrupts are disabled. */
571 static void ip22zilog_stop_tx(struct uart_port
*port
)
573 struct uart_ip22zilog_port
*up
=
574 container_of(port
, struct uart_ip22zilog_port
, port
);
576 up
->flags
|= IP22ZILOG_FLAG_TX_STOPPED
;
579 /* The port lock is held and interrupts are disabled. */
580 static void ip22zilog_start_tx(struct uart_port
*port
)
582 struct uart_ip22zilog_port
*up
=
583 container_of(port
, struct uart_ip22zilog_port
, port
);
584 struct zilog_channel
*channel
= ZILOG_CHANNEL_FROM_PORT(port
);
585 unsigned char status
;
587 up
->flags
|= IP22ZILOG_FLAG_TX_ACTIVE
;
588 up
->flags
&= ~IP22ZILOG_FLAG_TX_STOPPED
;
590 status
= readb(&channel
->control
);
593 /* TX busy? Just wait for the TX done interrupt. */
594 if (!(status
& Tx_BUF_EMP
))
597 /* Send the first character to jump-start the TX done
598 * IRQ sending engine.
601 writeb(port
->x_char
, &channel
->data
);
608 struct circ_buf
*xmit
= &port
->state
->xmit
;
610 if (uart_circ_empty(xmit
))
612 writeb(xmit
->buf
[xmit
->tail
], &channel
->data
);
616 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
619 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
620 uart_write_wakeup(&up
->port
);
624 /* The port lock is held and interrupts are disabled. */
625 static void ip22zilog_stop_rx(struct uart_port
*port
)
627 struct uart_ip22zilog_port
*up
= UART_ZILOG(port
);
628 struct zilog_channel
*channel
;
633 channel
= ZILOG_CHANNEL_FROM_PORT(port
);
635 /* Disable all RX interrupts. */
636 up
->curregs
[R1
] &= ~RxINT_MASK
;
637 ip22zilog_maybe_update_regs(up
, channel
);
640 /* The port lock is held. */
641 static void ip22zilog_enable_ms(struct uart_port
*port
)
643 struct uart_ip22zilog_port
*up
=
644 container_of(port
, 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
=
661 container_of(port
, struct uart_ip22zilog_port
, port
);
662 struct zilog_channel
*channel
= ZILOG_CHANNEL_FROM_PORT(port
);
663 unsigned char set_bits
, clear_bits
, new_reg
;
666 set_bits
= clear_bits
= 0;
671 clear_bits
|= SND_BRK
;
673 spin_lock_irqsave(&port
->lock
, flags
);
675 new_reg
= (up
->curregs
[R5
] | set_bits
) & ~clear_bits
;
676 if (new_reg
!= up
->curregs
[R5
]) {
677 up
->curregs
[R5
] = new_reg
;
679 /* NOTE: Not subject to 'transmitter active' rule. */
680 write_zsreg(channel
, R5
, up
->curregs
[R5
]);
683 spin_unlock_irqrestore(&port
->lock
, flags
);
686 static void __ip22zilog_reset(struct uart_ip22zilog_port
*up
)
688 struct zilog_channel
*channel
;
691 if (up
->flags
& IP22ZILOG_FLAG_RESET_DONE
)
694 /* Let pending transmits finish. */
695 channel
= ZILOG_CHANNEL_FROM_PORT(&up
->port
);
696 for (i
= 0; i
< 1000; i
++) {
697 unsigned char stat
= read_zsreg(channel
, R1
);
703 if (!ZS_IS_CHANNEL_A(up
)) {
705 channel
= ZILOG_CHANNEL_FROM_PORT(&up
->port
);
707 write_zsreg(channel
, R9
, FHWRES
);
709 (void) read_zsreg(channel
, R0
);
711 up
->flags
|= IP22ZILOG_FLAG_RESET_DONE
;
712 up
->next
->flags
|= IP22ZILOG_FLAG_RESET_DONE
;
715 static void __ip22zilog_startup(struct uart_ip22zilog_port
*up
)
717 struct zilog_channel
*channel
;
719 channel
= ZILOG_CHANNEL_FROM_PORT(&up
->port
);
721 __ip22zilog_reset(up
);
723 __load_zsregs(channel
, up
->curregs
);
724 /* set master interrupt enable */
725 write_zsreg(channel
, R9
, up
->curregs
[R9
]);
726 up
->prev_status
= readb(&channel
->control
);
728 /* Enable receiver and transmitter. */
729 up
->curregs
[R3
] |= RxENAB
;
730 up
->curregs
[R5
] |= TxENAB
;
732 up
->curregs
[R1
] |= EXT_INT_ENAB
| INT_ALL_Rx
| TxINT_ENAB
;
733 ip22zilog_maybe_update_regs(up
, channel
);
736 static int ip22zilog_startup(struct uart_port
*port
)
738 struct uart_ip22zilog_port
*up
= UART_ZILOG(port
);
744 spin_lock_irqsave(&port
->lock
, flags
);
745 __ip22zilog_startup(up
);
746 spin_unlock_irqrestore(&port
->lock
, flags
);
751 * The test for ZS_IS_CONS is explained by the following e-mail:
753 * From: Russell King <rmk@arm.linux.org.uk>
754 * Date: Sun, 8 Dec 2002 10:18:38 +0000
756 * On Sun, Dec 08, 2002 at 02:43:36AM -0500, Pete Zaitcev wrote:
757 * > I boot my 2.5 boxes using "console=ttyS0,9600" argument,
758 * > and I noticed that something is not right with reference
759 * > counting in this case. It seems that when the console
760 * > is open by kernel initially, this is not accounted
761 * > as an open, and uart_startup is not called.
763 * That is correct. We are unable to call uart_startup when the serial
764 * console is initialised because it may need to allocate memory (as
765 * request_irq does) and the memory allocators may not have been
768 * 1. initialise the port into a state where it can send characters in the
769 * console write method.
771 * 2. don't do the actual hardware shutdown in your shutdown() method (but
772 * do the normal software shutdown - ie, free irqs etc)
775 static void ip22zilog_shutdown(struct uart_port
*port
)
777 struct uart_ip22zilog_port
*up
= UART_ZILOG(port
);
778 struct zilog_channel
*channel
;
784 spin_lock_irqsave(&port
->lock
, flags
);
786 channel
= ZILOG_CHANNEL_FROM_PORT(port
);
788 /* Disable receiver and transmitter. */
789 up
->curregs
[R3
] &= ~RxENAB
;
790 up
->curregs
[R5
] &= ~TxENAB
;
792 /* Disable all interrupts and BRK assertion. */
793 up
->curregs
[R1
] &= ~(EXT_INT_ENAB
| TxINT_ENAB
| RxINT_MASK
);
794 up
->curregs
[R5
] &= ~SND_BRK
;
795 ip22zilog_maybe_update_regs(up
, channel
);
797 spin_unlock_irqrestore(&port
->lock
, flags
);
800 /* Shared by TTY driver and serial console setup. The port lock is held
801 * and local interrupts are disabled.
804 ip22zilog_convert_to_zs(struct uart_ip22zilog_port
*up
, unsigned int cflag
,
805 unsigned int iflag
, int brg
)
808 up
->curregs
[R10
] = NRZ
;
809 up
->curregs
[R11
] = TCBR
| RCBR
;
811 /* Program BAUD and clock source. */
812 up
->curregs
[R4
] &= ~XCLK_MASK
;
813 up
->curregs
[R4
] |= X16CLK
;
814 up
->curregs
[R12
] = brg
& 0xff;
815 up
->curregs
[R13
] = (brg
>> 8) & 0xff;
816 up
->curregs
[R14
] = BRENAB
;
818 /* Character size, stop bits, and parity. */
819 up
->curregs
[3] &= ~RxN_MASK
;
820 up
->curregs
[5] &= ~TxN_MASK
;
821 switch (cflag
& CSIZE
) {
823 up
->curregs
[3] |= Rx5
;
824 up
->curregs
[5] |= Tx5
;
825 up
->parity_mask
= 0x1f;
828 up
->curregs
[3] |= Rx6
;
829 up
->curregs
[5] |= Tx6
;
830 up
->parity_mask
= 0x3f;
833 up
->curregs
[3] |= Rx7
;
834 up
->curregs
[5] |= Tx7
;
835 up
->parity_mask
= 0x7f;
839 up
->curregs
[3] |= Rx8
;
840 up
->curregs
[5] |= Tx8
;
841 up
->parity_mask
= 0xff;
844 up
->curregs
[4] &= ~0x0c;
846 up
->curregs
[4] |= SB2
;
848 up
->curregs
[4] |= SB1
;
850 up
->curregs
[4] |= PAR_ENAB
;
852 up
->curregs
[4] &= ~PAR_ENAB
;
853 if (!(cflag
& PARODD
))
854 up
->curregs
[4] |= PAR_EVEN
;
856 up
->curregs
[4] &= ~PAR_EVEN
;
858 up
->port
.read_status_mask
= Rx_OVR
;
860 up
->port
.read_status_mask
|= CRC_ERR
| PAR_ERR
;
861 if (iflag
& (IGNBRK
| BRKINT
| PARMRK
))
862 up
->port
.read_status_mask
|= BRK_ABRT
;
864 up
->port
.ignore_status_mask
= 0;
866 up
->port
.ignore_status_mask
|= CRC_ERR
| PAR_ERR
;
867 if (iflag
& IGNBRK
) {
868 up
->port
.ignore_status_mask
|= BRK_ABRT
;
870 up
->port
.ignore_status_mask
|= Rx_OVR
;
873 if ((cflag
& CREAD
) == 0)
874 up
->port
.ignore_status_mask
= 0xff;
877 /* The port lock is not held. */
879 ip22zilog_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
880 struct ktermios
*old
)
882 struct uart_ip22zilog_port
*up
=
883 container_of(port
, struct uart_ip22zilog_port
, port
);
887 baud
= uart_get_baud_rate(port
, termios
, old
, 1200, 76800);
889 spin_lock_irqsave(&up
->port
.lock
, flags
);
891 brg
= BPS_TO_BRG(baud
, ZS_CLOCK
/ ZS_CLOCK_DIVISOR
);
893 ip22zilog_convert_to_zs(up
, termios
->c_cflag
, termios
->c_iflag
, brg
);
895 if (UART_ENABLE_MS(&up
->port
, termios
->c_cflag
))
896 up
->flags
|= IP22ZILOG_FLAG_MODEM_STATUS
;
898 up
->flags
&= ~IP22ZILOG_FLAG_MODEM_STATUS
;
900 ip22zilog_maybe_update_regs(up
, ZILOG_CHANNEL_FROM_PORT(port
));
901 uart_update_timeout(port
, termios
->c_cflag
, baud
);
903 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
906 static const char *ip22zilog_type(struct uart_port
*port
)
911 /* We do not request/release mappings of the registers here, this
912 * happens at early serial probe time.
914 static void ip22zilog_release_port(struct uart_port
*port
)
918 static int ip22zilog_request_port(struct uart_port
*port
)
923 /* These do not need to do anything interesting either. */
924 static void ip22zilog_config_port(struct uart_port
*port
, int flags
)
928 /* We do not support letting the user mess with the divisor, IRQ, etc. */
929 static int ip22zilog_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
934 static const struct uart_ops ip22zilog_pops
= {
935 .tx_empty
= ip22zilog_tx_empty
,
936 .set_mctrl
= ip22zilog_set_mctrl
,
937 .get_mctrl
= ip22zilog_get_mctrl
,
938 .stop_tx
= ip22zilog_stop_tx
,
939 .start_tx
= ip22zilog_start_tx
,
940 .stop_rx
= ip22zilog_stop_rx
,
941 .enable_ms
= ip22zilog_enable_ms
,
942 .break_ctl
= ip22zilog_break_ctl
,
943 .startup
= ip22zilog_startup
,
944 .shutdown
= ip22zilog_shutdown
,
945 .set_termios
= ip22zilog_set_termios
,
946 .type
= ip22zilog_type
,
947 .release_port
= ip22zilog_release_port
,
948 .request_port
= ip22zilog_request_port
,
949 .config_port
= ip22zilog_config_port
,
950 .verify_port
= ip22zilog_verify_port
,
953 static struct uart_ip22zilog_port
*ip22zilog_port_table
;
954 static struct zilog_layout
**ip22zilog_chip_regs
;
956 static struct uart_ip22zilog_port
*ip22zilog_irq_chain
;
957 static int zilog_irq
= -1;
959 static void * __init
alloc_one_table(unsigned long size
)
961 return kzalloc(size
, GFP_KERNEL
);
964 static void __init
ip22zilog_alloc_tables(void)
966 ip22zilog_port_table
= (struct uart_ip22zilog_port
*)
967 alloc_one_table(NUM_CHANNELS
* sizeof(struct uart_ip22zilog_port
));
968 ip22zilog_chip_regs
= (struct zilog_layout
**)
969 alloc_one_table(NUM_IP22ZILOG
* sizeof(struct zilog_layout
*));
971 if (ip22zilog_port_table
== NULL
|| ip22zilog_chip_regs
== NULL
) {
972 panic("IP22-Zilog: Cannot allocate IP22-Zilog tables.");
976 /* Get the address of the registers for IP22-Zilog instance CHIP. */
977 static struct zilog_layout
* __init
get_zs(int chip
)
981 if (chip
< 0 || chip
>= NUM_IP22ZILOG
) {
982 panic("IP22-Zilog: Illegal chip number %d in get_zs.", chip
);
985 /* Not probe-able, hard code it. */
986 base
= (unsigned long) &sgioc
->uart
;
988 zilog_irq
= SGI_SERIAL_IRQ
;
989 request_mem_region(base
, 8, "IP22-Zilog");
991 return (struct zilog_layout
*) base
;
994 #define ZS_PUT_CHAR_MAX_DELAY 2000 /* 10 ms */
996 #ifdef CONFIG_SERIAL_IP22_ZILOG_CONSOLE
997 static void ip22zilog_put_char(struct uart_port
*port
, int ch
)
999 struct zilog_channel
*channel
= ZILOG_CHANNEL_FROM_PORT(port
);
1000 int loops
= ZS_PUT_CHAR_MAX_DELAY
;
1002 /* This is a timed polling loop so do not switch the explicit
1003 * udelay with ZSDELAY as that is a NOP on some platforms. -DaveM
1006 unsigned char val
= readb(&channel
->control
);
1007 if (val
& Tx_BUF_EMP
) {
1014 writeb(ch
, &channel
->data
);
1020 ip22zilog_console_write(struct console
*con
, const char *s
, unsigned int count
)
1022 struct uart_ip22zilog_port
*up
= &ip22zilog_port_table
[con
->index
];
1023 unsigned long flags
;
1025 spin_lock_irqsave(&up
->port
.lock
, flags
);
1026 uart_console_write(&up
->port
, s
, count
, ip22zilog_put_char
);
1028 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
1031 static int __init
ip22zilog_console_setup(struct console
*con
, char *options
)
1033 struct uart_ip22zilog_port
*up
= &ip22zilog_port_table
[con
->index
];
1034 unsigned long flags
;
1035 int baud
= 9600, bits
= 8;
1039 up
->flags
|= IP22ZILOG_FLAG_IS_CONS
;
1041 printk(KERN_INFO
"Console: ttyS%d (IP22-Zilog)\n", con
->index
);
1043 spin_lock_irqsave(&up
->port
.lock
, flags
);
1045 up
->curregs
[R15
] |= BRKIE
;
1047 __ip22zilog_startup(up
);
1049 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
1052 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
1053 return uart_set_options(&up
->port
, con
, baud
, parity
, bits
, flow
);
1056 static struct uart_driver ip22zilog_reg
;
1058 static struct console ip22zilog_console
= {
1060 .write
= ip22zilog_console_write
,
1061 .device
= uart_console_device
,
1062 .setup
= ip22zilog_console_setup
,
1063 .flags
= CON_PRINTBUFFER
,
1065 .data
= &ip22zilog_reg
,
1067 #endif /* CONFIG_SERIAL_IP22_ZILOG_CONSOLE */
1069 static struct uart_driver ip22zilog_reg
= {
1070 .owner
= THIS_MODULE
,
1071 .driver_name
= "serial",
1076 #ifdef CONFIG_SERIAL_IP22_ZILOG_CONSOLE
1077 .cons
= &ip22zilog_console
,
1081 static void __init
ip22zilog_prepare(void)
1083 struct uart_ip22zilog_port
*up
;
1084 struct zilog_layout
*rp
;
1090 for (channel
= 0; channel
< NUM_CHANNELS
; channel
++)
1091 spin_lock_init(&ip22zilog_port_table
[channel
].port
.lock
);
1093 ip22zilog_irq_chain
= &ip22zilog_port_table
[NUM_CHANNELS
- 1];
1094 up
= &ip22zilog_port_table
[0];
1095 for (channel
= NUM_CHANNELS
- 1 ; channel
> 0; channel
--)
1096 up
[channel
].next
= &up
[channel
- 1];
1097 up
[channel
].next
= NULL
;
1099 for (chip
= 0; chip
< NUM_IP22ZILOG
; chip
++) {
1100 if (!ip22zilog_chip_regs
[chip
]) {
1101 ip22zilog_chip_regs
[chip
] = rp
= get_zs(chip
);
1103 up
[(chip
* 2) + 0].port
.membase
= (char *) &rp
->channelB
;
1104 up
[(chip
* 2) + 1].port
.membase
= (char *) &rp
->channelA
;
1106 /* In theory mapbase is the physical address ... */
1107 up
[(chip
* 2) + 0].port
.mapbase
=
1108 (unsigned long) ioremap((unsigned long) &rp
->channelB
, 8);
1109 up
[(chip
* 2) + 1].port
.mapbase
=
1110 (unsigned long) ioremap((unsigned long) &rp
->channelA
, 8);
1114 up
[(chip
* 2) + 0].port
.iotype
= UPIO_MEM
;
1115 up
[(chip
* 2) + 0].port
.irq
= zilog_irq
;
1116 up
[(chip
* 2) + 0].port
.uartclk
= ZS_CLOCK
;
1117 up
[(chip
* 2) + 0].port
.fifosize
= 1;
1118 up
[(chip
* 2) + 0].port
.ops
= &ip22zilog_pops
;
1119 up
[(chip
* 2) + 0].port
.type
= PORT_IP22ZILOG
;
1120 up
[(chip
* 2) + 0].port
.flags
= 0;
1121 up
[(chip
* 2) + 0].port
.line
= (chip
* 2) + 0;
1122 up
[(chip
* 2) + 0].flags
= 0;
1125 up
[(chip
* 2) + 1].port
.iotype
= UPIO_MEM
;
1126 up
[(chip
* 2) + 1].port
.irq
= zilog_irq
;
1127 up
[(chip
* 2) + 1].port
.uartclk
= ZS_CLOCK
;
1128 up
[(chip
* 2) + 1].port
.fifosize
= 1;
1129 up
[(chip
* 2) + 1].port
.ops
= &ip22zilog_pops
;
1130 up
[(chip
* 2) + 1].port
.type
= PORT_IP22ZILOG
;
1131 up
[(chip
* 2) + 1].port
.line
= (chip
* 2) + 1;
1132 up
[(chip
* 2) + 1].flags
|= IP22ZILOG_FLAG_IS_CHANNEL_A
;
1135 for (channel
= 0; channel
< NUM_CHANNELS
; channel
++) {
1136 struct uart_ip22zilog_port
*up
= &ip22zilog_port_table
[channel
];
1139 /* Normal serial TTY. */
1140 up
->parity_mask
= 0xff;
1141 up
->curregs
[R1
] = EXT_INT_ENAB
| INT_ALL_Rx
| TxINT_ENAB
;
1142 up
->curregs
[R4
] = PAR_EVEN
| X16CLK
| SB1
;
1143 up
->curregs
[R3
] = RxENAB
| Rx8
;
1144 up
->curregs
[R5
] = TxENAB
| Tx8
;
1145 up
->curregs
[R9
] = NV
| MIE
;
1146 up
->curregs
[R10
] = NRZ
;
1147 up
->curregs
[R11
] = TCBR
| RCBR
;
1148 brg
= BPS_TO_BRG(9600, ZS_CLOCK
/ ZS_CLOCK_DIVISOR
);
1149 up
->curregs
[R12
] = (brg
& 0xff);
1150 up
->curregs
[R13
] = (brg
>> 8) & 0xff;
1151 up
->curregs
[R14
] = BRENAB
;
1155 static int __init
ip22zilog_ports_init(void)
1159 printk(KERN_INFO
"Serial: IP22 Zilog driver (%d chips).\n", NUM_IP22ZILOG
);
1161 ip22zilog_prepare();
1163 if (request_irq(zilog_irq
, ip22zilog_interrupt
, 0,
1164 "IP22-Zilog", ip22zilog_irq_chain
)) {
1165 panic("IP22-Zilog: Unable to register zs interrupt handler.\n");
1168 ret
= uart_register_driver(&ip22zilog_reg
);
1172 for (i
= 0; i
< NUM_CHANNELS
; i
++) {
1173 struct uart_ip22zilog_port
*up
= &ip22zilog_port_table
[i
];
1175 uart_add_one_port(&ip22zilog_reg
, &up
->port
);
1182 static int __init
ip22zilog_init(void)
1184 /* IP22 Zilog setup is hard coded, no probing to do. */
1185 ip22zilog_alloc_tables();
1186 ip22zilog_ports_init();
1191 static void __exit
ip22zilog_exit(void)
1194 struct uart_ip22zilog_port
*up
;
1196 for (i
= 0; i
< NUM_CHANNELS
; i
++) {
1197 up
= &ip22zilog_port_table
[i
];
1199 uart_remove_one_port(&ip22zilog_reg
, &up
->port
);
1203 up
= &ip22zilog_port_table
[0];
1204 for (i
= 0; i
< NUM_IP22ZILOG
; i
++) {
1205 if (up
[(i
* 2) + 0].port
.mapbase
) {
1206 iounmap((void*)up
[(i
* 2) + 0].port
.mapbase
);
1207 up
[(i
* 2) + 0].port
.mapbase
= 0;
1209 if (up
[(i
* 2) + 1].port
.mapbase
) {
1210 iounmap((void*)up
[(i
* 2) + 1].port
.mapbase
);
1211 up
[(i
* 2) + 1].port
.mapbase
= 0;
1215 uart_unregister_driver(&ip22zilog_reg
);
1218 module_init(ip22zilog_init
);
1219 module_exit(ip22zilog_exit
);
1221 /* David wrote it but I'm to blame for the bugs ... */
1222 MODULE_AUTHOR("Ralf Baechle <ralf@linux-mips.org>");
1223 MODULE_DESCRIPTION("SGI Zilog serial port driver");
1224 MODULE_LICENSE("GPL");