4 * Driver for Zilog serial chips found on Sun workstations and
5 * servers. This driver could actually be made more generic.
7 * This is based on the old drivers/sbus/char/zs.c code. A lot
8 * of code has been simply moved over directly from there but
9 * much has been rewritten. Credits therefore go out to Eddie
10 * C. Dost, Pete Zaitcev, Ted Ts'o and Alex Buell for their
13 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
16 #include <linux/config.h>
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/sched.h>
20 #include <linux/errno.h>
21 #include <linux/delay.h>
22 #include <linux/tty.h>
23 #include <linux/tty_flip.h>
24 #include <linux/major.h>
25 #include <linux/string.h>
26 #include <linux/ptrace.h>
27 #include <linux/ioport.h>
28 #include <linux/slab.h>
29 #include <linux/circ_buf.h>
30 #include <linux/serial.h>
31 #include <linux/sysrq.h>
32 #include <linux/console.h>
33 #include <linux/spinlock.h>
35 #include <linux/serio.h>
37 #include <linux/init.h>
46 #if defined(CONFIG_SERIAL_SUNZILOG_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
50 #include <linux/serial_core.h>
55 /* On 32-bit sparcs we need to delay after register accesses
56 * to accommodate sun4 systems, but we do not need to flush writes.
57 * On 64-bit sparc we only need to flush single writes to ensure
60 #ifndef CONFIG_SPARC64
61 #define ZSDELAY() udelay(5)
62 #define ZSDELAY_LONG() udelay(20)
63 #define ZS_WSYNC(channel) do { } while (0)
66 #define ZSDELAY_LONG()
67 #define ZS_WSYNC(__channel) \
68 sbus_readb(&((__channel)->control))
71 static int num_sunzilog
;
72 #define NUM_SUNZILOG num_sunzilog
73 #define NUM_CHANNELS (NUM_SUNZILOG * 2)
75 #define KEYBOARD_LINE 0x2
76 #define MOUSE_LINE 0x3
78 #define ZS_CLOCK 4915200 /* Zilog input clock rate. */
79 #define ZS_CLOCK_DIVISOR 16 /* Divisor this driver uses. */
82 * We wrap our port structure around the generic uart_port.
84 struct uart_sunzilog_port
{
85 struct uart_port port
;
87 /* IRQ servicing chain. */
88 struct uart_sunzilog_port
*next
;
90 /* Current values of Zilog write registers. */
91 unsigned char curregs
[NUM_ZSREGS
];
94 #define SUNZILOG_FLAG_CONS_KEYB 0x00000001
95 #define SUNZILOG_FLAG_CONS_MOUSE 0x00000002
96 #define SUNZILOG_FLAG_IS_CONS 0x00000004
97 #define SUNZILOG_FLAG_IS_KGDB 0x00000008
98 #define SUNZILOG_FLAG_MODEM_STATUS 0x00000010
99 #define SUNZILOG_FLAG_IS_CHANNEL_A 0x00000020
100 #define SUNZILOG_FLAG_REGS_HELD 0x00000040
101 #define SUNZILOG_FLAG_TX_STOPPED 0x00000080
102 #define SUNZILOG_FLAG_TX_ACTIVE 0x00000100
106 unsigned char parity_mask
;
107 unsigned char prev_status
;
115 #define ZILOG_CHANNEL_FROM_PORT(PORT) ((struct zilog_channel __iomem *)((PORT)->membase))
116 #define UART_ZILOG(PORT) ((struct uart_sunzilog_port *)(PORT))
118 #define ZS_IS_KEYB(UP) ((UP)->flags & SUNZILOG_FLAG_CONS_KEYB)
119 #define ZS_IS_MOUSE(UP) ((UP)->flags & SUNZILOG_FLAG_CONS_MOUSE)
120 #define ZS_IS_CONS(UP) ((UP)->flags & SUNZILOG_FLAG_IS_CONS)
121 #define ZS_IS_KGDB(UP) ((UP)->flags & SUNZILOG_FLAG_IS_KGDB)
122 #define ZS_WANTS_MODEM_STATUS(UP) ((UP)->flags & SUNZILOG_FLAG_MODEM_STATUS)
123 #define ZS_IS_CHANNEL_A(UP) ((UP)->flags & SUNZILOG_FLAG_IS_CHANNEL_A)
124 #define ZS_REGS_HELD(UP) ((UP)->flags & SUNZILOG_FLAG_REGS_HELD)
125 #define ZS_TX_STOPPED(UP) ((UP)->flags & SUNZILOG_FLAG_TX_STOPPED)
126 #define ZS_TX_ACTIVE(UP) ((UP)->flags & SUNZILOG_FLAG_TX_ACTIVE)
128 /* Reading and writing Zilog8530 registers. The delays are to make this
129 * driver work on the Sun4 which needs a settling delay after each chip
130 * register access, other machines handle this in hardware via auxiliary
131 * flip-flops which implement the settle time we do in software.
133 * The port lock must be held and local IRQs must be disabled
134 * when {read,write}_zsreg is invoked.
136 static unsigned char read_zsreg(struct zilog_channel __iomem
*channel
,
139 unsigned char retval
;
141 sbus_writeb(reg
, &channel
->control
);
143 retval
= sbus_readb(&channel
->control
);
149 static void write_zsreg(struct zilog_channel __iomem
*channel
,
150 unsigned char reg
, unsigned char value
)
152 sbus_writeb(reg
, &channel
->control
);
154 sbus_writeb(value
, &channel
->control
);
158 static void sunzilog_clear_fifo(struct zilog_channel __iomem
*channel
)
162 for (i
= 0; i
< 32; i
++) {
163 unsigned char regval
;
165 regval
= sbus_readb(&channel
->control
);
167 if (regval
& Rx_CH_AV
)
170 regval
= read_zsreg(channel
, R1
);
171 sbus_readb(&channel
->data
);
174 if (regval
& (PAR_ERR
| Rx_OVR
| CRC_ERR
)) {
175 sbus_writeb(ERR_RES
, &channel
->control
);
182 /* This function must only be called when the TX is not busy. The UART
183 * port lock must be held and local interrupts disabled.
185 static void __load_zsregs(struct zilog_channel __iomem
*channel
, unsigned char *regs
)
189 /* Let pending transmits finish. */
190 for (i
= 0; i
< 1000; i
++) {
191 unsigned char stat
= read_zsreg(channel
, R1
);
197 sbus_writeb(ERR_RES
, &channel
->control
);
201 sunzilog_clear_fifo(channel
);
203 /* Disable all interrupts. */
204 write_zsreg(channel
, R1
,
205 regs
[R1
] & ~(RxINT_MASK
| TxINT_ENAB
| EXT_INT_ENAB
));
207 /* Set parity, sync config, stop bits, and clock divisor. */
208 write_zsreg(channel
, R4
, regs
[R4
]);
210 /* Set misc. TX/RX control bits. */
211 write_zsreg(channel
, R10
, regs
[R10
]);
213 /* Set TX/RX controls sans the enable bits. */
214 write_zsreg(channel
, R3
, regs
[R3
] & ~RxENAB
);
215 write_zsreg(channel
, R5
, regs
[R5
] & ~TxENAB
);
217 /* Synchronous mode config. */
218 write_zsreg(channel
, R6
, regs
[R6
]);
219 write_zsreg(channel
, R7
, regs
[R7
]);
221 /* Don't mess with the interrupt vector (R2, unused by us) and
222 * master interrupt control (R9). We make sure this is setup
223 * properly at probe time then never touch it again.
226 /* Disable baud generator. */
227 write_zsreg(channel
, R14
, regs
[R14
] & ~BRENAB
);
229 /* Clock mode control. */
230 write_zsreg(channel
, R11
, regs
[R11
]);
232 /* Lower and upper byte of baud rate generator divisor. */
233 write_zsreg(channel
, R12
, regs
[R12
]);
234 write_zsreg(channel
, R13
, regs
[R13
]);
236 /* Now rewrite R14, with BRENAB (if set). */
237 write_zsreg(channel
, R14
, regs
[R14
]);
239 /* External status interrupt control. */
240 write_zsreg(channel
, R15
, regs
[R15
]);
242 /* Reset external status interrupts. */
243 write_zsreg(channel
, R0
, RES_EXT_INT
);
244 write_zsreg(channel
, R0
, RES_EXT_INT
);
246 /* Rewrite R3/R5, this time without enables masked. */
247 write_zsreg(channel
, R3
, regs
[R3
]);
248 write_zsreg(channel
, R5
, regs
[R5
]);
250 /* Rewrite R1, this time without IRQ enabled masked. */
251 write_zsreg(channel
, R1
, regs
[R1
]);
254 /* Reprogram the Zilog channel HW registers with the copies found in the
255 * software state struct. If the transmitter is busy, we defer this update
256 * until the next TX complete interrupt. Else, we do it right now.
258 * The UART port lock must be held and local interrupts disabled.
260 static void sunzilog_maybe_update_regs(struct uart_sunzilog_port
*up
,
261 struct zilog_channel __iomem
*channel
)
263 if (!ZS_REGS_HELD(up
)) {
264 if (ZS_TX_ACTIVE(up
)) {
265 up
->flags
|= SUNZILOG_FLAG_REGS_HELD
;
267 __load_zsregs(channel
, up
->curregs
);
272 static void sunzilog_change_mouse_baud(struct uart_sunzilog_port
*up
)
274 unsigned int cur_cflag
= up
->cflag
;
278 up
->cflag
|= suncore_mouse_baud_cflag_next(cur_cflag
, &new_baud
);
280 brg
= BPS_TO_BRG(new_baud
, ZS_CLOCK
/ ZS_CLOCK_DIVISOR
);
281 up
->curregs
[R12
] = (brg
& 0xff);
282 up
->curregs
[R13
] = (brg
>> 8) & 0xff;
283 sunzilog_maybe_update_regs(up
, ZILOG_CHANNEL_FROM_PORT(&up
->port
));
286 static void sunzilog_kbdms_receive_chars(struct uart_sunzilog_port
*up
,
287 unsigned char ch
, int is_break
,
288 struct pt_regs
*regs
)
290 if (ZS_IS_KEYB(up
)) {
291 /* Stop-A is handled by drivers/char/keyboard.c now. */
294 serio_interrupt(up
->serio
, ch
, 0, regs
);
296 } else if (ZS_IS_MOUSE(up
)) {
297 int ret
= suncore_mouse_baud_detection(ch
, is_break
);
301 sunzilog_change_mouse_baud(up
);
309 serio_interrupt(up
->serio
, ch
, 0, regs
);
316 static struct tty_struct
*
317 sunzilog_receive_chars(struct uart_sunzilog_port
*up
,
318 struct zilog_channel __iomem
*channel
,
319 struct pt_regs
*regs
)
321 struct tty_struct
*tty
;
322 unsigned char ch
, r1
;
325 if (up
->port
.info
!= NULL
&& /* Unopened serial console */
326 up
->port
.info
->tty
!= NULL
) /* Keyboard || mouse */
327 tty
= up
->port
.info
->tty
;
331 r1
= read_zsreg(channel
, R1
);
332 if (r1
& (PAR_ERR
| Rx_OVR
| CRC_ERR
)) {
333 sbus_writeb(ERR_RES
, &channel
->control
);
338 ch
= sbus_readb(&channel
->control
);
341 /* This funny hack depends upon BRK_ABRT not interfering
342 * with the other bits we care about in R1.
347 if (!(ch
& Rx_CH_AV
))
350 ch
= sbus_readb(&channel
->data
);
353 ch
&= up
->parity_mask
;
355 if (unlikely(ZS_IS_KEYB(up
)) || unlikely(ZS_IS_MOUSE(up
))) {
356 sunzilog_kbdms_receive_chars(up
, ch
, 0, regs
);
361 uart_handle_sysrq_char(&up
->port
, ch
, regs
);
365 if (unlikely(tty
->flip
.count
>= TTY_FLIPBUF_SIZE
)) {
366 tty
->flip
.work
.func((void *)tty
);
368 * The 8250 bails out of the loop here,
369 * but we need to read everything, or die.
371 if (tty
->flip
.count
>= TTY_FLIPBUF_SIZE
)
375 /* A real serial line, record the character and status. */
376 *tty
->flip
.char_buf_ptr
= ch
;
377 *tty
->flip
.flag_buf_ptr
= TTY_NORMAL
;
378 up
->port
.icount
.rx
++;
379 if (r1
& (BRK_ABRT
| PAR_ERR
| Rx_OVR
| CRC_ERR
)) {
381 r1
&= ~(PAR_ERR
| CRC_ERR
);
382 up
->port
.icount
.brk
++;
383 if (uart_handle_break(&up
->port
))
386 else if (r1
& PAR_ERR
)
387 up
->port
.icount
.parity
++;
388 else if (r1
& CRC_ERR
)
389 up
->port
.icount
.frame
++;
391 up
->port
.icount
.overrun
++;
392 r1
&= up
->port
.read_status_mask
;
394 *tty
->flip
.flag_buf_ptr
= TTY_BREAK
;
395 else if (r1
& PAR_ERR
)
396 *tty
->flip
.flag_buf_ptr
= TTY_PARITY
;
397 else if (r1
& CRC_ERR
)
398 *tty
->flip
.flag_buf_ptr
= TTY_FRAME
;
400 if (uart_handle_sysrq_char(&up
->port
, ch
, regs
))
403 if (up
->port
.ignore_status_mask
== 0xff ||
404 (r1
& up
->port
.ignore_status_mask
) == 0) {
405 tty
->flip
.flag_buf_ptr
++;
406 tty
->flip
.char_buf_ptr
++;
410 tty
->flip
.count
< TTY_FLIPBUF_SIZE
) {
411 *tty
->flip
.flag_buf_ptr
= TTY_OVERRUN
;
412 tty
->flip
.flag_buf_ptr
++;
413 tty
->flip
.char_buf_ptr
++;
421 static void sunzilog_status_handle(struct uart_sunzilog_port
*up
,
422 struct zilog_channel __iomem
*channel
,
423 struct pt_regs
*regs
)
425 unsigned char status
;
427 status
= sbus_readb(&channel
->control
);
430 sbus_writeb(RES_EXT_INT
, &channel
->control
);
434 if (status
& BRK_ABRT
) {
436 sunzilog_kbdms_receive_chars(up
, 0, 1, regs
);
437 if (ZS_IS_CONS(up
)) {
438 /* Wait for BREAK to deassert to avoid potentially
439 * confusing the PROM.
442 status
= sbus_readb(&channel
->control
);
444 if (!(status
& BRK_ABRT
))
452 if (ZS_WANTS_MODEM_STATUS(up
)) {
454 up
->port
.icount
.dsr
++;
456 /* The Zilog just gives us an interrupt when DCD/CTS/etc. change.
457 * But it does not tell us which bit has changed, we have to keep
458 * track of this ourselves.
460 if ((status
^ up
->prev_status
) ^ DCD
)
461 uart_handle_dcd_change(&up
->port
,
463 if ((status
^ up
->prev_status
) ^ CTS
)
464 uart_handle_cts_change(&up
->port
,
467 wake_up_interruptible(&up
->port
.info
->delta_msr_wait
);
470 up
->prev_status
= status
;
473 static void sunzilog_transmit_chars(struct uart_sunzilog_port
*up
,
474 struct zilog_channel __iomem
*channel
)
476 struct circ_buf
*xmit
;
478 if (ZS_IS_CONS(up
)) {
479 unsigned char status
= sbus_readb(&channel
->control
);
482 /* TX still busy? Just wait for the next TX done interrupt.
484 * It can occur because of how we do serial console writes. It would
485 * be nice to transmit console writes just like we normally would for
486 * a TTY line. (ie. buffered and TX interrupt driven). That is not
487 * easy because console writes cannot sleep. One solution might be
488 * to poll on enough port->xmit space becomming free. -DaveM
490 if (!(status
& Tx_BUF_EMP
))
494 up
->flags
&= ~SUNZILOG_FLAG_TX_ACTIVE
;
496 if (ZS_REGS_HELD(up
)) {
497 __load_zsregs(channel
, up
->curregs
);
498 up
->flags
&= ~SUNZILOG_FLAG_REGS_HELD
;
501 if (ZS_TX_STOPPED(up
)) {
502 up
->flags
&= ~SUNZILOG_FLAG_TX_STOPPED
;
506 if (up
->port
.x_char
) {
507 up
->flags
|= SUNZILOG_FLAG_TX_ACTIVE
;
508 sbus_writeb(up
->port
.x_char
, &channel
->data
);
512 up
->port
.icount
.tx
++;
517 if (up
->port
.info
== NULL
)
519 xmit
= &up
->port
.info
->xmit
;
520 if (uart_circ_empty(xmit
)) {
521 uart_write_wakeup(&up
->port
);
524 if (uart_tx_stopped(&up
->port
))
527 up
->flags
|= SUNZILOG_FLAG_TX_ACTIVE
;
528 sbus_writeb(xmit
->buf
[xmit
->tail
], &channel
->data
);
532 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
533 up
->port
.icount
.tx
++;
535 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
536 uart_write_wakeup(&up
->port
);
541 sbus_writeb(RES_Tx_P
, &channel
->control
);
546 static irqreturn_t
sunzilog_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
548 struct uart_sunzilog_port
*up
= dev_id
;
551 struct zilog_channel __iomem
*channel
552 = ZILOG_CHANNEL_FROM_PORT(&up
->port
);
553 struct tty_struct
*tty
;
556 spin_lock(&up
->port
.lock
);
557 r3
= read_zsreg(channel
, R3
);
561 if (r3
& (CHAEXT
| CHATxIP
| CHARxIP
)) {
562 sbus_writeb(RES_H_IUS
, &channel
->control
);
567 tty
= sunzilog_receive_chars(up
, channel
, regs
);
569 sunzilog_status_handle(up
, channel
, regs
);
571 sunzilog_transmit_chars(up
, channel
);
573 spin_unlock(&up
->port
.lock
);
576 tty_flip_buffer_push(tty
);
580 channel
= ZILOG_CHANNEL_FROM_PORT(&up
->port
);
582 spin_lock(&up
->port
.lock
);
584 if (r3
& (CHBEXT
| CHBTxIP
| CHBRxIP
)) {
585 sbus_writeb(RES_H_IUS
, &channel
->control
);
590 tty
= sunzilog_receive_chars(up
, channel
, regs
);
592 sunzilog_status_handle(up
, channel
, regs
);
594 sunzilog_transmit_chars(up
, channel
);
596 spin_unlock(&up
->port
.lock
);
599 tty_flip_buffer_push(tty
);
607 /* A convenient way to quickly get R0 status. The caller must _not_ hold the
608 * port lock, it is acquired here.
610 static __inline__
unsigned char sunzilog_read_channel_status(struct uart_port
*port
)
612 struct zilog_channel __iomem
*channel
;
614 unsigned char status
;
616 spin_lock_irqsave(&port
->lock
, flags
);
618 channel
= ZILOG_CHANNEL_FROM_PORT(port
);
619 status
= sbus_readb(&channel
->control
);
622 spin_unlock_irqrestore(&port
->lock
, flags
);
627 /* The port lock is not held. */
628 static unsigned int sunzilog_tx_empty(struct uart_port
*port
)
630 unsigned char status
;
633 status
= sunzilog_read_channel_status(port
);
634 if (status
& Tx_BUF_EMP
)
642 /* The port lock is not held. */
643 static unsigned int sunzilog_get_mctrl(struct uart_port
*port
)
645 unsigned char status
;
648 status
= sunzilog_read_channel_status(port
);
661 /* The port lock is held and interrupts are disabled. */
662 static void sunzilog_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
664 struct uart_sunzilog_port
*up
= (struct uart_sunzilog_port
*) port
;
665 struct zilog_channel __iomem
*channel
= ZILOG_CHANNEL_FROM_PORT(port
);
666 unsigned char set_bits
, clear_bits
;
668 set_bits
= clear_bits
= 0;
670 if (mctrl
& TIOCM_RTS
)
674 if (mctrl
& TIOCM_DTR
)
679 /* NOTE: Not subject to 'transmitter active' rule. */
680 up
->curregs
[R5
] |= set_bits
;
681 up
->curregs
[R5
] &= ~clear_bits
;
682 write_zsreg(channel
, R5
, up
->curregs
[R5
]);
685 /* The port lock is held and interrupts are disabled. */
686 static void sunzilog_stop_tx(struct uart_port
*port
, unsigned int tty_stop
)
688 struct uart_sunzilog_port
*up
= (struct uart_sunzilog_port
*) port
;
690 up
->flags
|= SUNZILOG_FLAG_TX_STOPPED
;
693 /* The port lock is held and interrupts are disabled. */
694 static void sunzilog_start_tx(struct uart_port
*port
, unsigned int tty_start
)
696 struct uart_sunzilog_port
*up
= (struct uart_sunzilog_port
*) port
;
697 struct zilog_channel __iomem
*channel
= ZILOG_CHANNEL_FROM_PORT(port
);
698 unsigned char status
;
700 up
->flags
|= SUNZILOG_FLAG_TX_ACTIVE
;
701 up
->flags
&= ~SUNZILOG_FLAG_TX_STOPPED
;
703 status
= sbus_readb(&channel
->control
);
706 /* TX busy? Just wait for the TX done interrupt. */
707 if (!(status
& Tx_BUF_EMP
))
710 /* Send the first character to jump-start the TX done
711 * IRQ sending engine.
714 sbus_writeb(port
->x_char
, &channel
->data
);
721 struct circ_buf
*xmit
= &port
->info
->xmit
;
723 sbus_writeb(xmit
->buf
[xmit
->tail
], &channel
->data
);
727 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
730 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
731 uart_write_wakeup(&up
->port
);
735 /* The port lock is held. */
736 static void sunzilog_stop_rx(struct uart_port
*port
)
738 struct uart_sunzilog_port
*up
= UART_ZILOG(port
);
739 struct zilog_channel __iomem
*channel
;
744 channel
= ZILOG_CHANNEL_FROM_PORT(port
);
746 /* Disable all RX interrupts. */
747 up
->curregs
[R1
] &= ~RxINT_MASK
;
748 sunzilog_maybe_update_regs(up
, channel
);
751 /* The port lock is held. */
752 static void sunzilog_enable_ms(struct uart_port
*port
)
754 struct uart_sunzilog_port
*up
= (struct uart_sunzilog_port
*) port
;
755 struct zilog_channel __iomem
*channel
= ZILOG_CHANNEL_FROM_PORT(port
);
756 unsigned char new_reg
;
758 new_reg
= up
->curregs
[R15
] | (DCDIE
| SYNCIE
| CTSIE
);
759 if (new_reg
!= up
->curregs
[R15
]) {
760 up
->curregs
[R15
] = new_reg
;
762 /* NOTE: Not subject to 'transmitter active' rule. */
763 write_zsreg(channel
, R15
, up
->curregs
[R15
]);
767 /* The port lock is not held. */
768 static void sunzilog_break_ctl(struct uart_port
*port
, int break_state
)
770 struct uart_sunzilog_port
*up
= (struct uart_sunzilog_port
*) port
;
771 struct zilog_channel __iomem
*channel
= ZILOG_CHANNEL_FROM_PORT(port
);
772 unsigned char set_bits
, clear_bits
, new_reg
;
775 set_bits
= clear_bits
= 0;
780 clear_bits
|= SND_BRK
;
782 spin_lock_irqsave(&port
->lock
, flags
);
784 new_reg
= (up
->curregs
[R5
] | set_bits
) & ~clear_bits
;
785 if (new_reg
!= up
->curregs
[R5
]) {
786 up
->curregs
[R5
] = new_reg
;
788 /* NOTE: Not subject to 'transmitter active' rule. */
789 write_zsreg(channel
, R5
, up
->curregs
[R5
]);
792 spin_unlock_irqrestore(&port
->lock
, flags
);
795 static void __sunzilog_startup(struct uart_sunzilog_port
*up
)
797 struct zilog_channel __iomem
*channel
;
799 channel
= ZILOG_CHANNEL_FROM_PORT(&up
->port
);
800 up
->prev_status
= sbus_readb(&channel
->control
);
802 /* Enable receiver and transmitter. */
803 up
->curregs
[R3
] |= RxENAB
;
804 up
->curregs
[R5
] |= TxENAB
;
806 up
->curregs
[R1
] |= EXT_INT_ENAB
| INT_ALL_Rx
| TxINT_ENAB
;
807 sunzilog_maybe_update_regs(up
, channel
);
810 static int sunzilog_startup(struct uart_port
*port
)
812 struct uart_sunzilog_port
*up
= UART_ZILOG(port
);
818 spin_lock_irqsave(&port
->lock
, flags
);
819 __sunzilog_startup(up
);
820 spin_unlock_irqrestore(&port
->lock
, flags
);
825 * The test for ZS_IS_CONS is explained by the following e-mail:
827 * From: Russell King <rmk@arm.linux.org.uk>
828 * Date: Sun, 8 Dec 2002 10:18:38 +0000
830 * On Sun, Dec 08, 2002 at 02:43:36AM -0500, Pete Zaitcev wrote:
831 * > I boot my 2.5 boxes using "console=ttyS0,9600" argument,
832 * > and I noticed that something is not right with reference
833 * > counting in this case. It seems that when the console
834 * > is open by kernel initially, this is not accounted
835 * > as an open, and uart_startup is not called.
837 * That is correct. We are unable to call uart_startup when the serial
838 * console is initialised because it may need to allocate memory (as
839 * request_irq does) and the memory allocators may not have been
842 * 1. initialise the port into a state where it can send characters in the
843 * console write method.
845 * 2. don't do the actual hardware shutdown in your shutdown() method (but
846 * do the normal software shutdown - ie, free irqs etc)
849 static void sunzilog_shutdown(struct uart_port
*port
)
851 struct uart_sunzilog_port
*up
= UART_ZILOG(port
);
852 struct zilog_channel __iomem
*channel
;
858 spin_lock_irqsave(&port
->lock
, flags
);
860 channel
= ZILOG_CHANNEL_FROM_PORT(port
);
862 /* Disable receiver and transmitter. */
863 up
->curregs
[R3
] &= ~RxENAB
;
864 up
->curregs
[R5
] &= ~TxENAB
;
866 /* Disable all interrupts and BRK assertion. */
867 up
->curregs
[R1
] &= ~(EXT_INT_ENAB
| TxINT_ENAB
| RxINT_MASK
);
868 up
->curregs
[R5
] &= ~SND_BRK
;
869 sunzilog_maybe_update_regs(up
, channel
);
871 spin_unlock_irqrestore(&port
->lock
, flags
);
874 /* Shared by TTY driver and serial console setup. The port lock is held
875 * and local interrupts are disabled.
878 sunzilog_convert_to_zs(struct uart_sunzilog_port
*up
, unsigned int cflag
,
879 unsigned int iflag
, int brg
)
882 up
->curregs
[R10
] = NRZ
;
883 up
->curregs
[R11
] = TCBR
| RCBR
;
885 /* Program BAUD and clock source. */
886 up
->curregs
[R4
] &= ~XCLK_MASK
;
887 up
->curregs
[R4
] |= X16CLK
;
888 up
->curregs
[R12
] = brg
& 0xff;
889 up
->curregs
[R13
] = (brg
>> 8) & 0xff;
890 up
->curregs
[R14
] = BRSRC
| BRENAB
;
892 /* Character size, stop bits, and parity. */
893 up
->curregs
[3] &= ~RxN_MASK
;
894 up
->curregs
[5] &= ~TxN_MASK
;
895 switch (cflag
& CSIZE
) {
897 up
->curregs
[3] |= Rx5
;
898 up
->curregs
[5] |= Tx5
;
899 up
->parity_mask
= 0x1f;
902 up
->curregs
[3] |= Rx6
;
903 up
->curregs
[5] |= Tx6
;
904 up
->parity_mask
= 0x3f;
907 up
->curregs
[3] |= Rx7
;
908 up
->curregs
[5] |= Tx7
;
909 up
->parity_mask
= 0x7f;
913 up
->curregs
[3] |= Rx8
;
914 up
->curregs
[5] |= Tx8
;
915 up
->parity_mask
= 0xff;
918 up
->curregs
[4] &= ~0x0c;
920 up
->curregs
[4] |= SB2
;
922 up
->curregs
[4] |= SB1
;
924 up
->curregs
[4] |= PAR_ENAB
;
926 up
->curregs
[4] &= ~PAR_ENAB
;
927 if (!(cflag
& PARODD
))
928 up
->curregs
[4] |= PAR_EVEN
;
930 up
->curregs
[4] &= ~PAR_EVEN
;
932 up
->port
.read_status_mask
= Rx_OVR
;
934 up
->port
.read_status_mask
|= CRC_ERR
| PAR_ERR
;
935 if (iflag
& (BRKINT
| PARMRK
))
936 up
->port
.read_status_mask
|= BRK_ABRT
;
938 up
->port
.ignore_status_mask
= 0;
940 up
->port
.ignore_status_mask
|= CRC_ERR
| PAR_ERR
;
941 if (iflag
& IGNBRK
) {
942 up
->port
.ignore_status_mask
|= BRK_ABRT
;
944 up
->port
.ignore_status_mask
|= Rx_OVR
;
947 if ((cflag
& CREAD
) == 0)
948 up
->port
.ignore_status_mask
= 0xff;
951 /* The port lock is not held. */
953 sunzilog_set_termios(struct uart_port
*port
, struct termios
*termios
,
956 struct uart_sunzilog_port
*up
= (struct uart_sunzilog_port
*) port
;
960 baud
= uart_get_baud_rate(port
, termios
, old
, 1200, 76800);
962 spin_lock_irqsave(&up
->port
.lock
, flags
);
964 brg
= BPS_TO_BRG(baud
, ZS_CLOCK
/ ZS_CLOCK_DIVISOR
);
966 sunzilog_convert_to_zs(up
, termios
->c_cflag
, termios
->c_iflag
, brg
);
968 if (UART_ENABLE_MS(&up
->port
, termios
->c_cflag
))
969 up
->flags
|= SUNZILOG_FLAG_MODEM_STATUS
;
971 up
->flags
&= ~SUNZILOG_FLAG_MODEM_STATUS
;
973 up
->cflag
= termios
->c_cflag
;
975 sunzilog_maybe_update_regs(up
, ZILOG_CHANNEL_FROM_PORT(port
));
977 uart_update_timeout(port
, termios
->c_cflag
, baud
);
979 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
982 static const char *sunzilog_type(struct uart_port
*port
)
987 /* We do not request/release mappings of the registers here, this
988 * happens at early serial probe time.
990 static void sunzilog_release_port(struct uart_port
*port
)
994 static int sunzilog_request_port(struct uart_port
*port
)
999 /* These do not need to do anything interesting either. */
1000 static void sunzilog_config_port(struct uart_port
*port
, int flags
)
1004 /* We do not support letting the user mess with the divisor, IRQ, etc. */
1005 static int sunzilog_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
1010 static struct uart_ops sunzilog_pops
= {
1011 .tx_empty
= sunzilog_tx_empty
,
1012 .set_mctrl
= sunzilog_set_mctrl
,
1013 .get_mctrl
= sunzilog_get_mctrl
,
1014 .stop_tx
= sunzilog_stop_tx
,
1015 .start_tx
= sunzilog_start_tx
,
1016 .stop_rx
= sunzilog_stop_rx
,
1017 .enable_ms
= sunzilog_enable_ms
,
1018 .break_ctl
= sunzilog_break_ctl
,
1019 .startup
= sunzilog_startup
,
1020 .shutdown
= sunzilog_shutdown
,
1021 .set_termios
= sunzilog_set_termios
,
1022 .type
= sunzilog_type
,
1023 .release_port
= sunzilog_release_port
,
1024 .request_port
= sunzilog_request_port
,
1025 .config_port
= sunzilog_config_port
,
1026 .verify_port
= sunzilog_verify_port
,
1029 static struct uart_sunzilog_port
*sunzilog_port_table
;
1030 static struct zilog_layout __iomem
**sunzilog_chip_regs
;
1032 static struct uart_sunzilog_port
*sunzilog_irq_chain
;
1033 static int zilog_irq
= -1;
1035 static struct uart_driver sunzilog_reg
= {
1036 .owner
= THIS_MODULE
,
1037 .driver_name
= "ttyS",
1038 .devfs_name
= "tts/",
1043 static void * __init
alloc_one_table(unsigned long size
)
1047 ret
= kmalloc(size
, GFP_KERNEL
);
1049 memset(ret
, 0, size
);
1054 static void __init
sunzilog_alloc_tables(void)
1056 sunzilog_port_table
=
1057 alloc_one_table(NUM_CHANNELS
* sizeof(struct uart_sunzilog_port
));
1058 sunzilog_chip_regs
=
1059 alloc_one_table(NUM_SUNZILOG
* sizeof(struct zilog_layout __iomem
*));
1061 if (sunzilog_port_table
== NULL
|| sunzilog_chip_regs
== NULL
) {
1062 prom_printf("SunZilog: Cannot allocate tables.\n");
1067 #ifdef CONFIG_SPARC64
1069 /* We used to attempt to use the address property of the Zilog device node
1070 * but that totally is not necessary on sparc64.
1072 static struct zilog_layout __iomem
* __init
get_zs_sun4u(int chip
, int zsnode
)
1074 unsigned long mapped_addr
;
1075 unsigned int sun4u_ino
;
1076 struct sbus_bus
*sbus
= NULL
;
1077 struct sbus_dev
*sdev
= NULL
;
1080 if (central_bus
== NULL
) {
1081 for_each_sbus(sbus
) {
1082 for_each_sbusdev(sdev
, sbus
) {
1083 if (sdev
->prom_node
== zsnode
)
1089 if (sdev
== NULL
&& central_bus
== NULL
) {
1090 prom_printf("SunZilog: sdev&¢ral == NULL for "
1091 "Zilog %d in get_zs_sun4u.\n", chip
);
1094 if (central_bus
== NULL
) {
1096 sbus_ioremap(&sdev
->resource
[0], 0,
1100 struct linux_prom_registers zsregs
[1];
1102 err
= prom_getproperty(zsnode
, "reg",
1103 (char *) &zsregs
[0],
1106 prom_printf("SunZilog: Cannot map "
1108 "central bus.\n", chip
);
1111 apply_fhc_ranges(central_bus
->child
,
1113 apply_central_ranges(central_bus
, &zsregs
[0], 1);
1115 (((u64
)zsregs
[0].which_io
)<<32UL) |
1116 ((u64
)zsregs
[0].phys_addr
);
1119 if (zilog_irq
== -1) {
1121 unsigned long iclr
, imap
;
1123 iclr
= central_bus
->child
->fhc_regs
.uregs
1125 imap
= central_bus
->child
->fhc_regs
.uregs
1127 zilog_irq
= build_irq(12, 0, iclr
, imap
);
1129 err
= prom_getproperty(zsnode
, "interrupts",
1130 (char *) &sun4u_ino
,
1132 zilog_irq
= sbus_build_irq(sbus_root
, sun4u_ino
);
1136 return (struct zilog_layout __iomem
*) mapped_addr
;
1138 #else /* CONFIG_SPARC64 */
1141 * XXX The sun4d case is utterly screwed: it tries to re-walk the tree
1142 * (for the 3rd time) in order to find bootbus and cpu. Streamline it.
1144 static struct zilog_layout __iomem
* __init
get_zs_sun4cmd(int chip
, int node
)
1146 struct linux_prom_irqs irq_info
[2];
1147 void __iomem
*mapped_addr
= NULL
;
1148 int zsnode
, cpunode
, bbnode
;
1149 struct linux_prom_registers zsreg
[4];
1150 struct resource res
;
1152 if (sparc_cpu_model
== sun4d
) {
1158 for (walk
= prom_getchild(prom_root_node
);
1159 (walk
= prom_searchsiblings(walk
, "cpu-unit")) != 0;
1160 walk
= prom_getsibling(walk
)) {
1161 bbnode
= prom_getchild(walk
);
1163 (bbnode
= prom_searchsiblings(bbnode
, "bootbus"))) {
1164 if ((zsnode
= prom_getchild(bbnode
)) == node
) {
1171 prom_printf("SunZilog: Cannot find the %d'th bootbus on sun4d.\n",
1176 if (prom_getproperty(zsnode
, "reg",
1177 (char *) zsreg
, sizeof(zsreg
)) == -1) {
1178 prom_printf("SunZilog: Cannot map Zilog %d\n", chip
);
1181 /* XXX Looks like an off by one? */
1182 prom_apply_generic_ranges(bbnode
, cpunode
, zsreg
, 1);
1183 res
.start
= zsreg
[0].phys_addr
;
1184 res
.end
= res
.start
+ (8 - 1);
1185 res
.flags
= zsreg
[0].which_io
| IORESOURCE_IO
;
1186 mapped_addr
= sbus_ioremap(&res
, 0, 8, "Zilog Serial");
1191 #if 0 /* XXX When was this used? */
1192 if (prom_getintdefault(zsnode
, "slave", -1) != chipid
) {
1193 zsnode
= prom_getsibling(zsnode
);
1199 * "address" is only present on ports that OBP opened
1200 * (from Mitch Bradley's "Hitchhiker's Guide to OBP").
1204 if (prom_getproperty(zsnode
, "reg",
1205 (char *) zsreg
, sizeof(zsreg
)) == -1) {
1206 prom_printf("SunZilog: Cannot map Zilog %d\n", chip
);
1209 if (sparc_cpu_model
== sun4m
) /* Crude. Pass parent. XXX */
1210 prom_apply_obio_ranges(zsreg
, 1);
1211 res
.start
= zsreg
[0].phys_addr
;
1212 res
.end
= res
.start
+ (8 - 1);
1213 res
.flags
= zsreg
[0].which_io
| IORESOURCE_IO
;
1214 mapped_addr
= sbus_ioremap(&res
, 0, 8, "Zilog Serial");
1217 if (prom_getproperty(zsnode
, "intr",
1218 (char *) irq_info
, sizeof(irq_info
))
1219 % sizeof(struct linux_prom_irqs
)) {
1220 prom_printf("SunZilog: Cannot get IRQ property for Zilog %d.\n",
1224 if (zilog_irq
== -1) {
1225 zilog_irq
= irq_info
[0].pri
;
1226 } else if (zilog_irq
!= irq_info
[0].pri
) {
1227 /* XXX. Dumb. Should handle per-chip IRQ, for add-ons. */
1228 prom_printf("SunZilog: Inconsistent IRQ layout for Zilog %d.\n",
1233 return (struct zilog_layout __iomem
*) mapped_addr
;
1235 #endif /* !(CONFIG_SPARC64) */
1237 /* Get the address of the registers for SunZilog instance CHIP. */
1238 static struct zilog_layout __iomem
* __init
get_zs(int chip
, int node
)
1240 if (chip
< 0 || chip
>= NUM_SUNZILOG
) {
1241 prom_printf("SunZilog: Illegal chip number %d in get_zs.\n", chip
);
1245 #ifdef CONFIG_SPARC64
1246 return get_zs_sun4u(chip
, node
);
1249 if (sparc_cpu_model
== sun4
) {
1250 struct resource res
;
1252 /* Not probe-able, hard code it. */
1255 res
.start
= 0xf1000000;
1258 res
.start
= 0xf0000000;
1262 res
.end
= (res
.start
+ (8 - 1));
1263 res
.flags
= IORESOURCE_IO
;
1264 return sbus_ioremap(&res
, 0, 8, "SunZilog");
1267 return get_zs_sun4cmd(chip
, node
);
1271 #define ZS_PUT_CHAR_MAX_DELAY 2000 /* 10 ms */
1273 static void sunzilog_put_char(struct zilog_channel __iomem
*channel
, unsigned char ch
)
1275 int loops
= ZS_PUT_CHAR_MAX_DELAY
;
1277 /* This is a timed polling loop so do not switch the explicit
1278 * udelay with ZSDELAY as that is a NOP on some platforms. -DaveM
1281 unsigned char val
= sbus_readb(&channel
->control
);
1282 if (val
& Tx_BUF_EMP
) {
1289 sbus_writeb(ch
, &channel
->data
);
1296 static DEFINE_SPINLOCK(sunzilog_serio_lock
);
1298 static int sunzilog_serio_write(struct serio
*serio
, unsigned char ch
)
1300 struct uart_sunzilog_port
*up
= serio
->port_data
;
1301 unsigned long flags
;
1303 spin_lock_irqsave(&sunzilog_serio_lock
, flags
);
1305 sunzilog_put_char(ZILOG_CHANNEL_FROM_PORT(&up
->port
), ch
);
1307 spin_unlock_irqrestore(&sunzilog_serio_lock
, flags
);
1312 static int sunzilog_serio_open(struct serio
*serio
)
1314 struct uart_sunzilog_port
*up
= serio
->port_data
;
1315 unsigned long flags
;
1318 spin_lock_irqsave(&sunzilog_serio_lock
, flags
);
1319 if (!up
->serio_open
) {
1324 spin_unlock_irqrestore(&sunzilog_serio_lock
, flags
);
1329 static void sunzilog_serio_close(struct serio
*serio
)
1331 struct uart_sunzilog_port
*up
= serio
->port_data
;
1332 unsigned long flags
;
1334 spin_lock_irqsave(&sunzilog_serio_lock
, flags
);
1336 spin_unlock_irqrestore(&sunzilog_serio_lock
, flags
);
1339 #endif /* CONFIG_SERIO */
1341 #ifdef CONFIG_SERIAL_SUNZILOG_CONSOLE
1343 sunzilog_console_write(struct console
*con
, const char *s
, unsigned int count
)
1345 struct uart_sunzilog_port
*up
= &sunzilog_port_table
[con
->index
];
1346 struct zilog_channel
*channel
= ZILOG_CHANNEL_FROM_PORT(&up
->port
);
1347 unsigned long flags
;
1350 spin_lock_irqsave(&up
->port
.lock
, flags
);
1351 for (i
= 0; i
< count
; i
++, s
++) {
1352 sunzilog_put_char(channel
, *s
);
1354 sunzilog_put_char(channel
, 13);
1357 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
1360 static int __init
sunzilog_console_setup(struct console
*con
, char *options
)
1362 struct uart_sunzilog_port
*up
= &sunzilog_port_table
[con
->index
];
1363 unsigned long flags
;
1366 printk(KERN_INFO
"Console: ttyS%d (SunZilog zs%d)\n",
1367 (sunzilog_reg
.minor
- 64) + con
->index
, con
->index
);
1369 /* Get firmware console settings. */
1370 sunserial_console_termios(con
);
1372 /* Firmware console speed is limited to 150-->38400 baud so
1373 * this hackish cflag thing is OK.
1375 switch (con
->cflag
& CBAUD
) {
1376 case B150
: baud
= 150; break;
1377 case B300
: baud
= 300; break;
1378 case B600
: baud
= 600; break;
1379 case B1200
: baud
= 1200; break;
1380 case B2400
: baud
= 2400; break;
1381 case B4800
: baud
= 4800; break;
1382 default: case B9600
: baud
= 9600; break;
1383 case B19200
: baud
= 19200; break;
1384 case B38400
: baud
= 38400; break;
1387 brg
= BPS_TO_BRG(baud
, ZS_CLOCK
/ ZS_CLOCK_DIVISOR
);
1389 spin_lock_irqsave(&up
->port
.lock
, flags
);
1391 up
->curregs
[R15
] = BRKIE
;
1392 sunzilog_convert_to_zs(up
, con
->cflag
, 0, brg
);
1394 sunzilog_set_mctrl(&up
->port
, TIOCM_DTR
| TIOCM_RTS
);
1395 __sunzilog_startup(up
);
1397 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
1402 static struct console sunzilog_console
= {
1404 .write
= sunzilog_console_write
,
1405 .device
= uart_console_device
,
1406 .setup
= sunzilog_console_setup
,
1407 .flags
= CON_PRINTBUFFER
,
1409 .data
= &sunzilog_reg
,
1411 #define SUNZILOG_CONSOLE (&sunzilog_console)
1413 static int __init
sunzilog_console_init(void)
1417 if (con_is_present())
1420 for (i
= 0; i
< NUM_CHANNELS
; i
++) {
1421 int this_minor
= sunzilog_reg
.minor
+ i
;
1423 if ((this_minor
- 64) == (serial_console
- 1))
1426 if (i
== NUM_CHANNELS
)
1429 sunzilog_console
.index
= i
;
1430 sunzilog_port_table
[i
].flags
|= SUNZILOG_FLAG_IS_CONS
;
1431 register_console(&sunzilog_console
);
1435 #define SUNZILOG_CONSOLE (NULL)
1436 #define sunzilog_console_init() do { } while (0)
1440 * We scan the PROM tree recursively. This is the most reliable way
1441 * to find Zilog nodes on various platforms. However, we face an extreme
1442 * shortage of kernel stack, so we must be very careful. To that end,
1443 * we scan only to a certain depth, and we use a common property buffer
1444 * in the scan structure.
1446 #define ZS_PROPSIZE 128
1447 #define ZS_SCAN_DEPTH 5
1449 struct zs_probe_scan
{
1451 void (*scanner
)(struct zs_probe_scan
*t
, int node
);
1454 char prop
[ZS_PROPSIZE
];
1457 static int __inline__
sunzilog_node_ok(int node
, const char *name
, int len
)
1459 if (strncmp(name
, "zs", len
) == 0)
1461 /* Don't fold this procedure just yet. Compare to su_node_ok(). */
1465 static void __init
sunzilog_scan(struct zs_probe_scan
*t
, int node
)
1469 for (; node
!= 0; node
= prom_getsibling(node
)) {
1470 len
= prom_getproperty(node
, "name", t
->prop
, ZS_PROPSIZE
);
1472 continue; /* Broken PROM node */
1473 if (sunzilog_node_ok(node
, t
->prop
, len
)) {
1474 (*t
->scanner
)(t
, node
);
1476 if (t
->depth
< ZS_SCAN_DEPTH
) {
1478 sunzilog_scan(t
, prom_getchild(node
));
1485 static void __init
sunzilog_prepare(void)
1487 struct uart_sunzilog_port
*up
;
1488 struct zilog_layout __iomem
*rp
;
1494 for (channel
= 0; channel
< NUM_CHANNELS
; channel
++)
1495 spin_lock_init(&sunzilog_port_table
[channel
].port
.lock
);
1497 sunzilog_irq_chain
= up
= &sunzilog_port_table
[0];
1498 for (channel
= 0; channel
< NUM_CHANNELS
- 1; channel
++)
1499 up
[channel
].next
= &up
[channel
+ 1];
1500 up
[channel
].next
= NULL
;
1502 for (chip
= 0; chip
< NUM_SUNZILOG
; chip
++) {
1503 rp
= sunzilog_chip_regs
[chip
];
1504 up
[(chip
* 2) + 0].port
.membase
= (void __iomem
*)&rp
->channelA
;
1505 up
[(chip
* 2) + 1].port
.membase
= (void __iomem
*)&rp
->channelB
;
1508 up
[(chip
* 2) + 0].port
.iotype
= SERIAL_IO_MEM
;
1509 up
[(chip
* 2) + 0].port
.irq
= zilog_irq
;
1510 up
[(chip
* 2) + 0].port
.uartclk
= ZS_CLOCK
;
1511 up
[(chip
* 2) + 0].port
.fifosize
= 1;
1512 up
[(chip
* 2) + 0].port
.ops
= &sunzilog_pops
;
1513 up
[(chip
* 2) + 0].port
.type
= PORT_SUNZILOG
;
1514 up
[(chip
* 2) + 0].port
.flags
= 0;
1515 up
[(chip
* 2) + 0].port
.line
= (chip
* 2) + 0;
1516 up
[(chip
* 2) + 0].flags
|= SUNZILOG_FLAG_IS_CHANNEL_A
;
1519 up
[(chip
* 2) + 1].port
.iotype
= SERIAL_IO_MEM
;
1520 up
[(chip
* 2) + 1].port
.irq
= zilog_irq
;
1521 up
[(chip
* 2) + 1].port
.uartclk
= ZS_CLOCK
;
1522 up
[(chip
* 2) + 1].port
.fifosize
= 1;
1523 up
[(chip
* 2) + 1].port
.ops
= &sunzilog_pops
;
1524 up
[(chip
* 2) + 1].port
.type
= PORT_SUNZILOG
;
1525 up
[(chip
* 2) + 1].port
.flags
= 0;
1526 up
[(chip
* 2) + 1].port
.line
= (chip
* 2) + 1;
1527 up
[(chip
* 2) + 1].flags
|= 0;
1531 static void __init
sunzilog_init_kbdms(struct uart_sunzilog_port
*up
, int channel
)
1535 if (channel
== KEYBOARD_LINE
) {
1536 up
->flags
|= SUNZILOG_FLAG_CONS_KEYB
;
1537 up
->cflag
= B1200
| CS8
| CLOCAL
| CREAD
;
1540 up
->flags
|= SUNZILOG_FLAG_CONS_MOUSE
;
1541 up
->cflag
= B4800
| CS8
| CLOCAL
| CREAD
;
1544 printk(KERN_INFO
"zs%d at 0x%p (irq = %s) is a SunZilog\n",
1545 channel
, up
->port
.membase
, __irq_itoa(zilog_irq
));
1547 up
->curregs
[R15
] = BRKIE
;
1548 brg
= BPS_TO_BRG(baud
, ZS_CLOCK
/ ZS_CLOCK_DIVISOR
);
1549 sunzilog_convert_to_zs(up
, up
->cflag
, 0, brg
);
1550 sunzilog_set_mctrl(&up
->port
, TIOCM_DTR
| TIOCM_RTS
);
1551 __sunzilog_startup(up
);
1555 static void __init
sunzilog_register_serio(struct uart_sunzilog_port
*up
, int channel
)
1557 struct serio
*serio
;
1559 up
->serio
= serio
= kmalloc(sizeof(struct serio
), GFP_KERNEL
);
1561 memset(serio
, 0, sizeof(*serio
));
1563 serio
->port_data
= up
;
1565 serio
->id
.type
= SERIO_RS232
;
1566 if (channel
== KEYBOARD_LINE
) {
1567 serio
->id
.proto
= SERIO_SUNKBD
;
1568 strlcpy(serio
->name
, "zskbd", sizeof(serio
->name
));
1570 serio
->id
.proto
= SERIO_SUN
;
1571 serio
->id
.extra
= 1;
1572 strlcpy(serio
->name
, "zsms", sizeof(serio
->name
));
1574 strlcpy(serio
->phys
,
1575 (channel
== KEYBOARD_LINE
? "zs/serio0" : "zs/serio1"),
1576 sizeof(serio
->phys
));
1578 serio
->write
= sunzilog_serio_write
;
1579 serio
->open
= sunzilog_serio_open
;
1580 serio
->close
= sunzilog_serio_close
;
1582 serio_register_port(serio
);
1584 printk(KERN_WARNING
"zs%d: not enough memory for serio port\n",
1590 static void __init
sunzilog_init_hw(void)
1594 for (i
= 0; i
< NUM_CHANNELS
; i
++) {
1595 struct uart_sunzilog_port
*up
= &sunzilog_port_table
[i
];
1596 struct zilog_channel __iomem
*channel
= ZILOG_CHANNEL_FROM_PORT(&up
->port
);
1597 unsigned long flags
;
1600 spin_lock_irqsave(&up
->port
.lock
, flags
);
1602 if (ZS_IS_CHANNEL_A(up
)) {
1603 write_zsreg(channel
, R9
, FHWRES
);
1605 (void) read_zsreg(channel
, R0
);
1608 if (i
== KEYBOARD_LINE
|| i
== MOUSE_LINE
) {
1609 sunzilog_init_kbdms(up
, i
);
1610 up
->curregs
[R9
] |= (NV
| MIE
);
1611 write_zsreg(channel
, R9
, up
->curregs
[R9
]);
1613 /* Normal serial TTY. */
1614 up
->parity_mask
= 0xff;
1615 up
->curregs
[R1
] = EXT_INT_ENAB
| INT_ALL_Rx
| TxINT_ENAB
;
1616 up
->curregs
[R4
] = PAR_EVEN
| X16CLK
| SB1
;
1617 up
->curregs
[R3
] = RxENAB
| Rx8
;
1618 up
->curregs
[R5
] = TxENAB
| Tx8
;
1619 up
->curregs
[R9
] = NV
| MIE
;
1620 up
->curregs
[R10
] = NRZ
;
1621 up
->curregs
[R11
] = TCBR
| RCBR
;
1623 brg
= BPS_TO_BRG(baud
, ZS_CLOCK
/ ZS_CLOCK_DIVISOR
);
1624 up
->curregs
[R12
] = (brg
& 0xff);
1625 up
->curregs
[R13
] = (brg
>> 8) & 0xff;
1626 up
->curregs
[R14
] = BRSRC
| BRENAB
;
1627 __load_zsregs(channel
, up
->curregs
);
1628 write_zsreg(channel
, R9
, up
->curregs
[R9
]);
1631 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
1634 if (i
== KEYBOARD_LINE
|| i
== MOUSE_LINE
)
1635 sunzilog_register_serio(up
, i
);
1640 static struct zilog_layout __iomem
* __init
get_zs(int chip
, int node
);
1642 static void __init
sunzilog_scan_probe(struct zs_probe_scan
*t
, int node
)
1644 sunzilog_chip_regs
[t
->devices
] = get_zs(t
->devices
, node
);
1648 static int __init
sunzilog_ports_init(void)
1650 struct zs_probe_scan scan
;
1655 printk(KERN_DEBUG
"SunZilog: %d chips.\n", NUM_SUNZILOG
);
1657 scan
.scanner
= sunzilog_scan_probe
;
1660 sunzilog_scan(&scan
, prom_getchild(prom_root_node
));
1664 if (request_irq(zilog_irq
, sunzilog_interrupt
, SA_SHIRQ
,
1665 "SunZilog", sunzilog_irq_chain
)) {
1666 prom_printf("SunZilog: Unable to register zs interrupt handler.\n");
1672 /* We can only init this once we have probed the Zilogs
1673 * in the system. Do not count channels assigned to keyboards
1674 * or mice when we are deciding how many ports to register.
1677 for (i
= 0; i
< NUM_CHANNELS
; i
++) {
1678 struct uart_sunzilog_port
*up
= &sunzilog_port_table
[i
];
1680 if (ZS_IS_KEYB(up
) || ZS_IS_MOUSE(up
))
1686 sunzilog_reg
.nr
= uart_count
;
1687 sunzilog_reg
.cons
= SUNZILOG_CONSOLE
;
1689 sunzilog_reg
.minor
= sunserial_current_minor
;
1690 sunserial_current_minor
+= uart_count
;
1692 ret
= uart_register_driver(&sunzilog_reg
);
1694 sunzilog_console_init();
1695 for (i
= 0; i
< NUM_CHANNELS
; i
++) {
1696 struct uart_sunzilog_port
*up
= &sunzilog_port_table
[i
];
1698 if (ZS_IS_KEYB(up
) || ZS_IS_MOUSE(up
))
1701 if (uart_add_one_port(&sunzilog_reg
, &up
->port
)) {
1703 "SunZilog: failed to add port zs%d\n", i
);
1711 static void __init
sunzilog_scan_count(struct zs_probe_scan
*t
, int node
)
1716 static int __init
sunzilog_ports_count(void)
1718 struct zs_probe_scan scan
;
1720 /* Sun4 Zilog setup is hard coded, no probing to do. */
1721 if (sparc_cpu_model
== sun4
)
1724 scan
.scanner
= sunzilog_scan_count
;
1728 sunzilog_scan(&scan
, prom_getchild(prom_root_node
));
1730 return scan
.devices
;
1733 static int __init
sunzilog_init(void)
1736 NUM_SUNZILOG
= sunzilog_ports_count();
1737 if (NUM_SUNZILOG
== 0)
1740 sunzilog_alloc_tables();
1742 sunzilog_ports_init();
1747 static void __exit
sunzilog_exit(void)
1751 for (i
= 0; i
< NUM_CHANNELS
; i
++) {
1752 struct uart_sunzilog_port
*up
= &sunzilog_port_table
[i
];
1754 if (ZS_IS_KEYB(up
) || ZS_IS_MOUSE(up
)) {
1757 serio_unregister_port(up
->serio
);
1762 uart_remove_one_port(&sunzilog_reg
, &up
->port
);
1765 uart_unregister_driver(&sunzilog_reg
);
1768 module_init(sunzilog_init
);
1769 module_exit(sunzilog_exit
);
1771 MODULE_AUTHOR("David S. Miller");
1772 MODULE_DESCRIPTION("Sun Zilog serial port driver");
1773 MODULE_LICENSE("GPL");