1 /* sunsab.c: ASYNC Driver for the SIEMENS SAB82532 DUSCC.
3 * Copyright (C) 1997 Eddie C. Dost (ecd@skynet.be)
4 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
6 * Rewrote buffer handling to use CIRC(Circular Buffer) macros.
7 * Maxim Krasnyanskiy <maxk@qualcomm.com>
9 * Fixed to use tty_get_baud_rate, and to allow for arbitrary baud
10 * rates to be programmed into the UART. Also eliminated a lot of
11 * duplicated code in the console setup.
12 * Theodore Ts'o <tytso@mit.edu>, 2001-Oct-12
14 * Ported to new 2.5.x UART layer.
15 * David S. Miller <davem@redhat.com>
18 #include <linux/config.h>
19 #include <linux/module.h>
20 #include <linux/kernel.h>
21 #include <linux/sched.h>
22 #include <linux/errno.h>
23 #include <linux/tty.h>
24 #include <linux/tty_flip.h>
25 #include <linux/major.h>
26 #include <linux/string.h>
27 #include <linux/ptrace.h>
28 #include <linux/ioport.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>
34 #include <linux/slab.h>
35 #include <linux/delay.h>
36 #include <linux/init.h>
40 #include <asm/oplib.h>
43 #if defined(CONFIG_SERIAL_SUNZILOG_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
47 #include <linux/serial_core.h>
52 struct uart_sunsab_port
{
53 struct uart_port port
; /* Generic UART port */
54 union sab82532_async_regs __iomem
*regs
; /* Chip registers */
55 unsigned long irqflags
; /* IRQ state flags */
56 int dsr
; /* Current DSR state */
57 unsigned int cec_timeout
; /* Chip poll timeout... */
58 unsigned int tec_timeout
; /* likewise */
59 unsigned char interrupt_mask0
;/* ISR0 masking */
60 unsigned char interrupt_mask1
;/* ISR1 masking */
61 unsigned char pvr_dtr_bit
; /* Which PVR bit is DTR */
62 unsigned char pvr_dsr_bit
; /* Which PVR bit is DSR */
63 int type
; /* SAB82532 version */
67 * This assumes you have a 29.4912 MHz clock for your UART.
69 #define SAB_BASE_BAUD ( 29491200 / 16 )
71 static char *sab82532_version
[16] = {
72 "V1.0", "V2.0", "V3.2", "V(0x03)",
73 "V(0x04)", "V(0x05)", "V(0x06)", "V(0x07)",
74 "V(0x08)", "V(0x09)", "V(0x0a)", "V(0x0b)",
75 "V(0x0c)", "V(0x0d)", "V(0x0e)", "V(0x0f)"
78 #define SAB82532_MAX_TEC_TIMEOUT 200000 /* 1 character time (at 50 baud) */
79 #define SAB82532_MAX_CEC_TIMEOUT 50000 /* 2.5 TX CLKs (at 50 baud) */
81 #define SAB82532_RECV_FIFO_SIZE 32 /* Standard async fifo sizes */
82 #define SAB82532_XMIT_FIFO_SIZE 32
84 static __inline__
void sunsab_tec_wait(struct uart_sunsab_port
*up
)
86 int timeout
= up
->tec_timeout
;
88 while ((readb(&up
->regs
->r
.star
) & SAB82532_STAR_TEC
) && --timeout
)
92 static __inline__
void sunsab_cec_wait(struct uart_sunsab_port
*up
)
94 int timeout
= up
->cec_timeout
;
96 while ((readb(&up
->regs
->r
.star
) & SAB82532_STAR_CEC
) && --timeout
)
100 static struct tty_struct
*
101 receive_chars(struct uart_sunsab_port
*up
,
102 union sab82532_irq_status
*stat
,
103 struct pt_regs
*regs
)
105 struct tty_struct
*tty
= NULL
;
106 unsigned char buf
[32];
107 int saw_console_brk
= 0;
112 if (up
->port
.info
!= NULL
) /* Unopened serial console */
113 tty
= up
->port
.info
->tty
;
115 /* Read number of BYTES (Character + Status) available. */
116 if (stat
->sreg
.isr0
& SAB82532_ISR0_RPF
) {
117 count
= SAB82532_RECV_FIFO_SIZE
;
121 if (stat
->sreg
.isr0
& SAB82532_ISR0_TCD
) {
122 count
= readb(&up
->regs
->r
.rbcl
) & (SAB82532_RECV_FIFO_SIZE
- 1);
126 /* Issue a FIFO read command in case we where idle. */
127 if (stat
->sreg
.isr0
& SAB82532_ISR0_TIME
) {
129 writeb(SAB82532_CMDR_RFRD
, &up
->regs
->w
.cmdr
);
133 if (stat
->sreg
.isr0
& SAB82532_ISR0_RFO
)
137 for (i
= 0; i
< count
; i
++)
138 buf
[i
] = readb(&up
->regs
->r
.rfifo
[i
]);
140 /* Issue Receive Message Complete command. */
143 writeb(SAB82532_CMDR_RMC
, &up
->regs
->w
.cmdr
);
146 /* Count may be zero for BRK, so we check for it here */
147 if ((stat
->sreg
.isr1
& SAB82532_ISR1_BRK
) &&
148 (up
->port
.line
== up
->port
.cons
->index
))
151 for (i
= 0; i
< count
; i
++) {
152 unsigned char ch
= buf
[i
];
155 uart_handle_sysrq_char(&up
->port
, ch
, regs
);
159 if (unlikely(tty
->flip
.count
>= TTY_FLIPBUF_SIZE
)) {
160 tty
->flip
.work
.func((void *)tty
);
161 if (tty
->flip
.count
>= TTY_FLIPBUF_SIZE
)
162 return tty
; // if TTY_DONT_FLIP is set
165 *tty
->flip
.char_buf_ptr
= ch
;
166 *tty
->flip
.flag_buf_ptr
= TTY_NORMAL
;
167 up
->port
.icount
.rx
++;
169 if (unlikely(stat
->sreg
.isr0
& (SAB82532_ISR0_PERR
|
171 SAB82532_ISR0_RFO
)) ||
172 unlikely(stat
->sreg
.isr1
& SAB82532_ISR1_BRK
)) {
174 * For statistics only
176 if (stat
->sreg
.isr1
& SAB82532_ISR1_BRK
) {
177 stat
->sreg
.isr0
&= ~(SAB82532_ISR0_PERR
|
179 up
->port
.icount
.brk
++;
181 * We do the SysRQ and SAK checking
182 * here because otherwise the break
183 * may get masked by ignore_status_mask
184 * or read_status_mask.
186 if (uart_handle_break(&up
->port
))
188 } else if (stat
->sreg
.isr0
& SAB82532_ISR0_PERR
)
189 up
->port
.icount
.parity
++;
190 else if (stat
->sreg
.isr0
& SAB82532_ISR0_FERR
)
191 up
->port
.icount
.frame
++;
192 if (stat
->sreg
.isr0
& SAB82532_ISR0_RFO
)
193 up
->port
.icount
.overrun
++;
196 * Mask off conditions which should be ingored.
198 stat
->sreg
.isr0
&= (up
->port
.read_status_mask
& 0xff);
199 stat
->sreg
.isr1
&= ((up
->port
.read_status_mask
>> 8) & 0xff);
201 if (stat
->sreg
.isr1
& SAB82532_ISR1_BRK
) {
202 *tty
->flip
.flag_buf_ptr
= TTY_BREAK
;
203 } else if (stat
->sreg
.isr0
& SAB82532_ISR0_PERR
)
204 *tty
->flip
.flag_buf_ptr
= TTY_PARITY
;
205 else if (stat
->sreg
.isr0
& SAB82532_ISR0_FERR
)
206 *tty
->flip
.flag_buf_ptr
= TTY_FRAME
;
209 if (uart_handle_sysrq_char(&up
->port
, ch
, regs
))
212 if ((stat
->sreg
.isr0
& (up
->port
.ignore_status_mask
& 0xff)) == 0 &&
213 (stat
->sreg
.isr1
& ((up
->port
.ignore_status_mask
>> 8) & 0xff)) == 0){
214 tty
->flip
.flag_buf_ptr
++;
215 tty
->flip
.char_buf_ptr
++;
218 if ((stat
->sreg
.isr0
& SAB82532_ISR0_RFO
) &&
219 tty
->flip
.count
< TTY_FLIPBUF_SIZE
) {
221 * Overrun is special, since it's reported
222 * immediately, and doesn't affect the current
225 *tty
->flip
.flag_buf_ptr
= TTY_OVERRUN
;
226 tty
->flip
.flag_buf_ptr
++;
227 tty
->flip
.char_buf_ptr
++;
238 static void sunsab_stop_tx(struct uart_port
*, unsigned int);
240 static void transmit_chars(struct uart_sunsab_port
*up
,
241 union sab82532_irq_status
*stat
)
243 struct circ_buf
*xmit
= &up
->port
.info
->xmit
;
246 if (stat
->sreg
.isr1
& SAB82532_ISR1_ALLS
) {
247 up
->interrupt_mask1
|= SAB82532_IMR1_ALLS
;
248 writeb(up
->interrupt_mask1
, &up
->regs
->w
.imr1
);
249 set_bit(SAB82532_ALLS
, &up
->irqflags
);
252 #if 0 /* bde@nwlink.com says this check causes problems */
253 if (!(stat
->sreg
.isr1
& SAB82532_ISR1_XPR
))
257 if (!(readb(&up
->regs
->r
.star
) & SAB82532_STAR_XFW
))
260 set_bit(SAB82532_XPR
, &up
->irqflags
);
262 if (uart_circ_empty(xmit
) || uart_tx_stopped(&up
->port
)) {
263 up
->interrupt_mask1
|= SAB82532_IMR1_XPR
;
264 writeb(up
->interrupt_mask1
, &up
->regs
->w
.imr1
);
265 uart_write_wakeup(&up
->port
);
269 up
->interrupt_mask1
&= ~(SAB82532_IMR1_ALLS
|SAB82532_IMR1_XPR
);
270 writeb(up
->interrupt_mask1
, &up
->regs
->w
.imr1
);
271 clear_bit(SAB82532_ALLS
, &up
->irqflags
);
273 /* Stuff 32 bytes into Transmit FIFO. */
274 clear_bit(SAB82532_XPR
, &up
->irqflags
);
275 for (i
= 0; i
< up
->port
.fifosize
; i
++) {
276 writeb(xmit
->buf
[xmit
->tail
],
277 &up
->regs
->w
.xfifo
[i
]);
278 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
279 up
->port
.icount
.tx
++;
280 if (uart_circ_empty(xmit
))
284 /* Issue a Transmit Frame command. */
286 writeb(SAB82532_CMDR_XF
, &up
->regs
->w
.cmdr
);
288 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
289 uart_write_wakeup(&up
->port
);
291 if (uart_circ_empty(xmit
))
292 sunsab_stop_tx(&up
->port
, 0);
295 static void check_status(struct uart_sunsab_port
*up
,
296 union sab82532_irq_status
*stat
)
298 if (stat
->sreg
.isr0
& SAB82532_ISR0_CDSC
)
299 uart_handle_dcd_change(&up
->port
,
300 !(readb(&up
->regs
->r
.vstr
) & SAB82532_VSTR_CD
));
302 if (stat
->sreg
.isr1
& SAB82532_ISR1_CSC
)
303 uart_handle_cts_change(&up
->port
,
304 (readb(&up
->regs
->r
.star
) & SAB82532_STAR_CTS
));
306 if ((readb(&up
->regs
->r
.pvr
) & up
->pvr_dsr_bit
) ^ up
->dsr
) {
307 up
->dsr
= (readb(&up
->regs
->r
.pvr
) & up
->pvr_dsr_bit
) ? 0 : 1;
308 up
->port
.icount
.dsr
++;
311 wake_up_interruptible(&up
->port
.info
->delta_msr_wait
);
314 static irqreturn_t
sunsab_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
316 struct uart_sunsab_port
*up
= dev_id
;
317 struct tty_struct
*tty
;
318 union sab82532_irq_status status
;
321 spin_lock_irqsave(&up
->port
.lock
, flags
);
324 if (readb(&up
->regs
->r
.gis
) & SAB82532_GIS_ISA0
)
325 status
.sreg
.isr0
= readb(&up
->regs
->r
.isr0
);
326 if (readb(&up
->regs
->r
.gis
) & SAB82532_GIS_ISA1
)
327 status
.sreg
.isr1
= readb(&up
->regs
->r
.isr1
);
331 if ((status
.sreg
.isr0
& (SAB82532_ISR0_TCD
| SAB82532_ISR0_TIME
|
332 SAB82532_ISR0_RFO
| SAB82532_ISR0_RPF
)) ||
333 (status
.sreg
.isr1
& SAB82532_ISR1_BRK
))
334 tty
= receive_chars(up
, &status
, regs
);
335 if ((status
.sreg
.isr0
& SAB82532_ISR0_CDSC
) ||
336 (status
.sreg
.isr1
& SAB82532_ISR1_CSC
))
337 check_status(up
, &status
);
338 if (status
.sreg
.isr1
& (SAB82532_ISR1_ALLS
| SAB82532_ISR1_XPR
))
339 transmit_chars(up
, &status
);
342 spin_unlock(&up
->port
.lock
);
345 tty_flip_buffer_push(tty
);
349 spin_lock(&up
->port
.lock
);
352 if (readb(&up
->regs
->r
.gis
) & SAB82532_GIS_ISB0
)
353 status
.sreg
.isr0
= readb(&up
->regs
->r
.isr0
);
354 if (readb(&up
->regs
->r
.gis
) & SAB82532_GIS_ISB1
)
355 status
.sreg
.isr1
= readb(&up
->regs
->r
.isr1
);
359 if ((status
.sreg
.isr0
& (SAB82532_ISR0_TCD
| SAB82532_ISR0_TIME
|
360 SAB82532_ISR0_RFO
| SAB82532_ISR0_RPF
)) ||
361 (status
.sreg
.isr1
& SAB82532_ISR1_BRK
))
363 tty
= receive_chars(up
, &status
, regs
);
364 if ((status
.sreg
.isr0
& SAB82532_ISR0_CDSC
) ||
365 (status
.sreg
.isr1
& (SAB82532_ISR1_BRK
| SAB82532_ISR1_CSC
)))
366 check_status(up
, &status
);
367 if (status
.sreg
.isr1
& (SAB82532_ISR1_ALLS
| SAB82532_ISR1_XPR
))
368 transmit_chars(up
, &status
);
371 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
374 tty_flip_buffer_push(tty
);
379 /* port->lock is not held. */
380 static unsigned int sunsab_tx_empty(struct uart_port
*port
)
382 struct uart_sunsab_port
*up
= (struct uart_sunsab_port
*) port
;
385 /* Do not need a lock for a state test like this. */
386 if (test_bit(SAB82532_ALLS
, &up
->irqflags
))
394 /* port->lock held by caller. */
395 static void sunsab_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
397 struct uart_sunsab_port
*up
= (struct uart_sunsab_port
*) port
;
399 if (mctrl
& TIOCM_RTS
) {
400 writeb(readb(&up
->regs
->rw
.mode
) & ~SAB82532_MODE_FRTS
,
402 writeb(readb(&up
->regs
->rw
.mode
) | SAB82532_MODE_RTS
,
405 writeb(readb(&up
->regs
->rw
.mode
) | SAB82532_MODE_FRTS
,
407 writeb(readb(&up
->regs
->rw
.mode
) | SAB82532_MODE_RTS
,
410 if (mctrl
& TIOCM_DTR
) {
411 writeb(readb(&up
->regs
->rw
.pvr
) & ~(up
->pvr_dtr_bit
), &up
->regs
->rw
.pvr
);
413 writeb(readb(&up
->regs
->rw
.pvr
) | up
->pvr_dtr_bit
, &up
->regs
->rw
.pvr
);
417 /* port->lock is not held. */
418 static unsigned int sunsab_get_mctrl(struct uart_port
*port
)
420 struct uart_sunsab_port
*up
= (struct uart_sunsab_port
*) port
;
427 spin_lock_irqsave(&up
->port
.lock
, flags
);
429 val
= readb(&up
->regs
->r
.pvr
);
430 result
|= (val
& up
->pvr_dsr_bit
) ? 0 : TIOCM_DSR
;
432 val
= readb(&up
->regs
->r
.vstr
);
433 result
|= (val
& SAB82532_VSTR_CD
) ? 0 : TIOCM_CAR
;
435 val
= readb(&up
->regs
->r
.star
);
436 result
|= (val
& SAB82532_STAR_CTS
) ? TIOCM_CTS
: 0;
438 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
443 /* port->lock held by caller. */
444 static void sunsab_stop_tx(struct uart_port
*port
, unsigned int tty_stop
)
446 struct uart_sunsab_port
*up
= (struct uart_sunsab_port
*) port
;
448 up
->interrupt_mask1
|= SAB82532_IMR1_XPR
;
449 writeb(up
->interrupt_mask1
, &up
->regs
->w
.imr1
);
452 /* port->lock held by caller. */
453 static void sunsab_start_tx(struct uart_port
*port
, unsigned int tty_start
)
455 struct uart_sunsab_port
*up
= (struct uart_sunsab_port
*) port
;
456 struct circ_buf
*xmit
= &up
->port
.info
->xmit
;
459 up
->interrupt_mask1
&= ~(SAB82532_IMR1_ALLS
|SAB82532_IMR1_XPR
);
460 writeb(up
->interrupt_mask1
, &up
->regs
->w
.imr1
);
462 if (!test_bit(SAB82532_XPR
, &up
->irqflags
))
465 clear_bit(SAB82532_ALLS
, &up
->irqflags
);
466 clear_bit(SAB82532_XPR
, &up
->irqflags
);
468 for (i
= 0; i
< up
->port
.fifosize
; i
++) {
469 writeb(xmit
->buf
[xmit
->tail
],
470 &up
->regs
->w
.xfifo
[i
]);
471 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
472 up
->port
.icount
.tx
++;
473 if (uart_circ_empty(xmit
))
477 /* Issue a Transmit Frame command. */
479 writeb(SAB82532_CMDR_XF
, &up
->regs
->w
.cmdr
);
482 /* port->lock is not held. */
483 static void sunsab_send_xchar(struct uart_port
*port
, char ch
)
485 struct uart_sunsab_port
*up
= (struct uart_sunsab_port
*) port
;
488 spin_lock_irqsave(&up
->port
.lock
, flags
);
491 writeb(ch
, &up
->regs
->w
.tic
);
493 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
496 /* port->lock held by caller. */
497 static void sunsab_stop_rx(struct uart_port
*port
)
499 struct uart_sunsab_port
*up
= (struct uart_sunsab_port
*) port
;
501 up
->interrupt_mask0
|= SAB82532_ISR0_TCD
;
502 writeb(up
->interrupt_mask1
, &up
->regs
->w
.imr0
);
505 /* port->lock held by caller. */
506 static void sunsab_enable_ms(struct uart_port
*port
)
508 /* For now we always receive these interrupts. */
511 /* port->lock is not held. */
512 static void sunsab_break_ctl(struct uart_port
*port
, int break_state
)
514 struct uart_sunsab_port
*up
= (struct uart_sunsab_port
*) port
;
518 spin_lock_irqsave(&up
->port
.lock
, flags
);
520 val
= readb(&up
->regs
->rw
.dafo
);
522 val
|= SAB82532_DAFO_XBRK
;
524 val
&= ~SAB82532_DAFO_XBRK
;
525 writeb(val
, &up
->regs
->rw
.dafo
);
527 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
530 /* port->lock is not held. */
531 static int sunsab_startup(struct uart_port
*port
)
533 struct uart_sunsab_port
*up
= (struct uart_sunsab_port
*) port
;
537 spin_lock_irqsave(&up
->port
.lock
, flags
);
540 * Wait for any commands or immediate characters
546 * Clear the FIFO buffers.
548 writeb(SAB82532_CMDR_RRES
, &up
->regs
->w
.cmdr
);
550 writeb(SAB82532_CMDR_XRES
, &up
->regs
->w
.cmdr
);
553 * Clear the interrupt registers.
555 (void) readb(&up
->regs
->r
.isr0
);
556 (void) readb(&up
->regs
->r
.isr1
);
559 * Now, initialize the UART
561 writeb(0, &up
->regs
->w
.ccr0
); /* power-down */
562 writeb(SAB82532_CCR0_MCE
| SAB82532_CCR0_SC_NRZ
|
563 SAB82532_CCR0_SM_ASYNC
, &up
->regs
->w
.ccr0
);
564 writeb(SAB82532_CCR1_ODS
| SAB82532_CCR1_BCR
| 7, &up
->regs
->w
.ccr1
);
565 writeb(SAB82532_CCR2_BDF
| SAB82532_CCR2_SSEL
|
566 SAB82532_CCR2_TOE
, &up
->regs
->w
.ccr2
);
567 writeb(0, &up
->regs
->w
.ccr3
);
568 writeb(SAB82532_CCR4_MCK4
| SAB82532_CCR4_EBRG
, &up
->regs
->w
.ccr4
);
569 writeb(SAB82532_MODE_RTS
| SAB82532_MODE_FCTS
|
570 SAB82532_MODE_RAC
, &up
->regs
->w
.mode
);
571 writeb(SAB82532_RFC_DPS
|SAB82532_RFC_RFTH_32
, &up
->regs
->w
.rfc
);
573 tmp
= readb(&up
->regs
->rw
.ccr0
);
574 tmp
|= SAB82532_CCR0_PU
; /* power-up */
575 writeb(tmp
, &up
->regs
->rw
.ccr0
);
578 * Finally, enable interrupts
580 up
->interrupt_mask0
= (SAB82532_IMR0_PERR
| SAB82532_IMR0_FERR
|
582 writeb(up
->interrupt_mask0
, &up
->regs
->w
.imr0
);
583 up
->interrupt_mask1
= (SAB82532_IMR1_BRKT
| SAB82532_IMR1_ALLS
|
584 SAB82532_IMR1_XOFF
| SAB82532_IMR1_TIN
|
585 SAB82532_IMR1_CSC
| SAB82532_IMR1_XON
|
587 writeb(up
->interrupt_mask1
, &up
->regs
->w
.imr1
);
588 set_bit(SAB82532_ALLS
, &up
->irqflags
);
589 set_bit(SAB82532_XPR
, &up
->irqflags
);
591 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
596 /* port->lock is not held. */
597 static void sunsab_shutdown(struct uart_port
*port
)
599 struct uart_sunsab_port
*up
= (struct uart_sunsab_port
*) port
;
603 spin_lock_irqsave(&up
->port
.lock
, flags
);
605 /* Disable Interrupts */
606 up
->interrupt_mask0
= 0xff;
607 writeb(up
->interrupt_mask0
, &up
->regs
->w
.imr0
);
608 up
->interrupt_mask1
= 0xff;
609 writeb(up
->interrupt_mask1
, &up
->regs
->w
.imr1
);
611 /* Disable break condition */
612 tmp
= readb(&up
->regs
->rw
.dafo
);
613 tmp
&= ~SAB82532_DAFO_XBRK
;
614 writeb(tmp
, &up
->regs
->rw
.dafo
);
616 /* Disable Receiver */
617 tmp
= readb(&up
->regs
->rw
.mode
);
618 tmp
&= ~SAB82532_MODE_RAC
;
619 writeb(tmp
, &up
->regs
->rw
.mode
);
624 * If the chip is powered down here the system hangs/crashes during
625 * reboot or shutdown. This needs to be investigated further,
626 * similar behaviour occurs in 2.4 when the driver is configured
627 * as a module only. One hint may be that data is sometimes
628 * transmitted at 9600 baud during shutdown (regardless of the
629 * speed the chip was configured for when the port was open).
633 tmp
= readb(&up
->regs
->rw
.ccr0
);
634 tmp
&= ~SAB82532_CCR0_PU
;
635 writeb(tmp
, &up
->regs
->rw
.ccr0
);
638 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
642 * This is used to figure out the divisor speeds.
644 * The formula is: Baud = SAB_BASE_BAUD / ((N + 1) * (1 << M)),
646 * with 0 <= N < 64 and 0 <= M < 16
649 static void calc_ebrg(int baud
, int *n_ret
, int *m_ret
)
660 * We scale numbers by 10 so that we get better accuracy
661 * without having to use floating point. Here we increment m
662 * until n is within the valid range.
664 n
= (SAB_BASE_BAUD
* 10) / baud
;
672 * We try very hard to avoid speeds with M == 0 since they may
673 * not work correctly for XTAL frequences above 10 MHz.
675 if ((m
== 0) && ((n
& 1) == 0)) {
683 /* Internal routine, port->lock is held and local interrupts are disabled. */
684 static void sunsab_convert_to_sab(struct uart_sunsab_port
*up
, unsigned int cflag
,
685 unsigned int iflag
, unsigned int baud
,
692 /* Byte size and parity */
693 switch (cflag
& CSIZE
) {
694 case CS5
: dafo
= SAB82532_DAFO_CHL5
; bits
= 7; break;
695 case CS6
: dafo
= SAB82532_DAFO_CHL6
; bits
= 8; break;
696 case CS7
: dafo
= SAB82532_DAFO_CHL7
; bits
= 9; break;
697 case CS8
: dafo
= SAB82532_DAFO_CHL8
; bits
= 10; break;
698 /* Never happens, but GCC is too dumb to figure it out */
699 default: dafo
= SAB82532_DAFO_CHL5
; bits
= 7; break;
702 if (cflag
& CSTOPB
) {
703 dafo
|= SAB82532_DAFO_STOP
;
707 if (cflag
& PARENB
) {
708 dafo
|= SAB82532_DAFO_PARE
;
712 if (cflag
& PARODD
) {
713 dafo
|= SAB82532_DAFO_PAR_ODD
;
715 dafo
|= SAB82532_DAFO_PAR_EVEN
;
718 calc_ebrg(baud
, &n
, &m
);
722 up
->tec_timeout
= (10 * 1000000) / baud
;
723 up
->cec_timeout
= up
->tec_timeout
>> 2;
725 /* CTS flow control flags */
726 /* We encode read_status_mask and ignore_status_mask like so:
728 * ---------------------
729 * | ... | ISR1 | ISR0 |
730 * ---------------------
734 up
->port
.read_status_mask
= (SAB82532_ISR0_TCD
| SAB82532_ISR0_TIME
|
735 SAB82532_ISR0_RFO
| SAB82532_ISR0_RPF
|
737 up
->port
.read_status_mask
|= (SAB82532_ISR1_CSC
|
739 SAB82532_ISR1_XPR
) << 8;
741 up
->port
.read_status_mask
|= (SAB82532_ISR0_PERR
|
743 if (iflag
& (BRKINT
| PARMRK
))
744 up
->port
.read_status_mask
|= (SAB82532_ISR1_BRK
<< 8);
747 * Characteres to ignore
749 up
->port
.ignore_status_mask
= 0;
751 up
->port
.ignore_status_mask
|= (SAB82532_ISR0_PERR
|
753 if (iflag
& IGNBRK
) {
754 up
->port
.ignore_status_mask
|= (SAB82532_ISR1_BRK
<< 8);
756 * If we're ignoring parity and break indicators,
757 * ignore overruns too (for real raw support).
760 up
->port
.ignore_status_mask
|= SAB82532_ISR0_RFO
;
764 * ignore all characters if CREAD is not set
766 if ((cflag
& CREAD
) == 0)
767 up
->port
.ignore_status_mask
|= (SAB82532_ISR0_RPF
|
770 uart_update_timeout(&up
->port
, cflag
,
771 (up
->port
.uartclk
/ (16 * quot
)));
773 /* Now bang the new settings into the chip. */
776 writeb(dafo
, &up
->regs
->w
.dafo
);
777 writeb(ebrg
& 0xff, &up
->regs
->w
.bgr
);
778 writeb((readb(&up
->regs
->rw
.ccr2
) & ~0xc0) | ((ebrg
>> 2) & 0xc0),
781 writeb(readb(&up
->regs
->rw
.mode
) | SAB82532_MODE_RAC
, &up
->regs
->rw
.mode
);
785 /* port->lock is not held. */
786 static void sunsab_set_termios(struct uart_port
*port
, struct termios
*termios
,
789 struct uart_sunsab_port
*up
= (struct uart_sunsab_port
*) port
;
791 unsigned int baud
= uart_get_baud_rate(port
, termios
, old
, 0, 4000000);
792 unsigned int quot
= uart_get_divisor(port
, baud
);
794 spin_lock_irqsave(&up
->port
.lock
, flags
);
795 sunsab_convert_to_sab(up
, termios
->c_cflag
, termios
->c_iflag
, baud
, quot
);
796 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
799 static const char *sunsab_type(struct uart_port
*port
)
801 struct uart_sunsab_port
*up
= (void *)port
;
804 sprintf(buf
, "SAB82532 %s", sab82532_version
[up
->type
]);
808 static void sunsab_release_port(struct uart_port
*port
)
812 static int sunsab_request_port(struct uart_port
*port
)
817 static void sunsab_config_port(struct uart_port
*port
, int flags
)
821 static int sunsab_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
826 static struct uart_ops sunsab_pops
= {
827 .tx_empty
= sunsab_tx_empty
,
828 .set_mctrl
= sunsab_set_mctrl
,
829 .get_mctrl
= sunsab_get_mctrl
,
830 .stop_tx
= sunsab_stop_tx
,
831 .start_tx
= sunsab_start_tx
,
832 .send_xchar
= sunsab_send_xchar
,
833 .stop_rx
= sunsab_stop_rx
,
834 .enable_ms
= sunsab_enable_ms
,
835 .break_ctl
= sunsab_break_ctl
,
836 .startup
= sunsab_startup
,
837 .shutdown
= sunsab_shutdown
,
838 .set_termios
= sunsab_set_termios
,
840 .release_port
= sunsab_release_port
,
841 .request_port
= sunsab_request_port
,
842 .config_port
= sunsab_config_port
,
843 .verify_port
= sunsab_verify_port
,
846 static struct uart_driver sunsab_reg
= {
847 .owner
= THIS_MODULE
,
848 .driver_name
= "serial",
849 .devfs_name
= "tts/",
854 static struct uart_sunsab_port
*sunsab_ports
;
855 static int num_channels
;
857 #ifdef CONFIG_SERIAL_SUNSAB_CONSOLE
859 static __inline__
void sunsab_console_putchar(struct uart_sunsab_port
*up
, char c
)
863 spin_lock_irqsave(&up
->port
.lock
, flags
);
866 writeb(c
, &up
->regs
->w
.tic
);
868 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
871 static void sunsab_console_write(struct console
*con
, const char *s
, unsigned n
)
873 struct uart_sunsab_port
*up
= &sunsab_ports
[con
->index
];
876 for (i
= 0; i
< n
; i
++) {
878 sunsab_console_putchar(up
, '\r');
879 sunsab_console_putchar(up
, *s
++);
884 static int sunsab_console_setup(struct console
*con
, char *options
)
886 struct uart_sunsab_port
*up
= &sunsab_ports
[con
->index
];
888 unsigned int baud
, quot
;
890 printk("Console: ttyS%d (SAB82532)\n",
891 (sunsab_reg
.minor
- 64) + con
->index
);
893 sunserial_console_termios(con
);
895 /* Firmware console speed is limited to 150-->38400 baud so
896 * this hackish cflag thing is OK.
898 switch (con
->cflag
& CBAUD
) {
899 case B150
: baud
= 150; break;
900 case B300
: baud
= 300; break;
901 case B600
: baud
= 600; break;
902 case B1200
: baud
= 1200; break;
903 case B2400
: baud
= 2400; break;
904 case B4800
: baud
= 4800; break;
905 default: case B9600
: baud
= 9600; break;
906 case B19200
: baud
= 19200; break;
907 case B38400
: baud
= 38400; break;
913 spin_lock_init(&up
->port
.lock
);
916 * Initialize the hardware
918 sunsab_startup(&up
->port
);
920 spin_lock_irqsave(&up
->port
.lock
, flags
);
923 * Finally, enable interrupts
925 up
->interrupt_mask0
= SAB82532_IMR0_PERR
| SAB82532_IMR0_FERR
|
926 SAB82532_IMR0_PLLA
| SAB82532_IMR0_CDSC
;
927 writeb(up
->interrupt_mask0
, &up
->regs
->w
.imr0
);
928 up
->interrupt_mask1
= SAB82532_IMR1_BRKT
| SAB82532_IMR1_ALLS
|
929 SAB82532_IMR1_XOFF
| SAB82532_IMR1_TIN
|
930 SAB82532_IMR1_CSC
| SAB82532_IMR1_XON
|
932 writeb(up
->interrupt_mask1
, &up
->regs
->w
.imr1
);
934 quot
= uart_get_divisor(&up
->port
, baud
);
935 sunsab_convert_to_sab(up
, con
->cflag
, 0, baud
, quot
);
936 sunsab_set_mctrl(&up
->port
, TIOCM_DTR
| TIOCM_RTS
);
938 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
943 static struct console sunsab_console
= {
945 .write
= sunsab_console_write
,
946 .device
= uart_console_device
,
947 .setup
= sunsab_console_setup
,
948 .flags
= CON_PRINTBUFFER
,
952 #define SUNSAB_CONSOLE (&sunsab_console)
954 static void __init
sunsab_console_init(void)
958 if (con_is_present())
961 for (i
= 0; i
< num_channels
; i
++) {
962 int this_minor
= sunsab_reg
.minor
+ i
;
964 if ((this_minor
- 64) == (serial_console
- 1))
967 if (i
== num_channels
)
970 sunsab_console
.index
= i
;
971 register_console(&sunsab_console
);
974 #define SUNSAB_CONSOLE (NULL)
975 #define sunsab_console_init() do { } while (0)
978 static void __init
for_each_sab_edev(void (*callback
)(struct linux_ebus_device
*, void *), void *arg
)
980 struct linux_ebus
*ebus
;
981 struct linux_ebus_device
*edev
= NULL
;
983 for_each_ebus(ebus
) {
984 for_each_ebusdev(edev
, ebus
) {
985 if (!strcmp(edev
->prom_name
, "se")) {
988 } else if (!strcmp(edev
->prom_name
, "serial")) {
992 /* On RIO this can be an SE, check it. We could
993 * just check ebus->is_rio, but this is more portable.
995 clen
= prom_getproperty(edev
->prom_node
, "compatible",
996 compat
, sizeof(compat
));
998 if (strncmp(compat
, "sab82532", 8) == 0) {
1008 static void __init
sab_count_callback(struct linux_ebus_device
*edev
, void *arg
)
1015 static void __init
sab_attach_callback(struct linux_ebus_device
*edev
, void *arg
)
1017 int *instance_p
= arg
;
1018 struct uart_sunsab_port
*up
;
1019 unsigned long regs
, offset
;
1022 /* Note: ports are located in reverse order */
1023 regs
= edev
->resource
[0].start
;
1024 offset
= sizeof(union sab82532_async_regs
);
1025 for (i
= 0; i
< 2; i
++) {
1026 up
= &sunsab_ports
[(*instance_p
* 2) + 1 - i
];
1028 memset(up
, 0, sizeof(*up
));
1029 up
->regs
= ioremap(regs
+ offset
, sizeof(union sab82532_async_regs
));
1030 up
->port
.irq
= edev
->irqs
[0];
1031 up
->port
.fifosize
= SAB82532_XMIT_FIFO_SIZE
;
1032 up
->port
.mapbase
= (unsigned long)up
->regs
;
1033 up
->port
.iotype
= SERIAL_IO_MEM
;
1035 writeb(SAB82532_IPC_IC_ACT_LOW
, &up
->regs
->w
.ipc
);
1037 offset
-= sizeof(union sab82532_async_regs
);
1043 static int __init
probe_for_sabs(void)
1047 /* Find device instances. */
1048 for_each_sab_edev(&sab_count_callback
, &this_sab
);
1052 /* Allocate tables. */
1053 sunsab_ports
= kmalloc(sizeof(struct uart_sunsab_port
) * this_sab
* 2,
1058 num_channels
= this_sab
* 2;
1061 for_each_sab_edev(&sab_attach_callback
, &this_sab
);
1065 static void __init
sunsab_init_hw(void)
1069 for (i
= 0; i
< num_channels
; i
++) {
1070 struct uart_sunsab_port
*up
= &sunsab_ports
[i
];
1073 up
->port
.ops
= &sunsab_pops
;
1074 up
->port
.type
= PORT_SUNSAB
;
1075 up
->port
.uartclk
= SAB_BASE_BAUD
;
1077 up
->type
= readb(&up
->regs
->r
.vstr
) & 0x0f;
1078 writeb(~((1 << 1) | (1 << 2) | (1 << 4)), &up
->regs
->w
.pcr
);
1079 writeb(0xff, &up
->regs
->w
.pim
);
1080 if (up
->port
.line
== 0) {
1081 up
->pvr_dsr_bit
= (1 << 0);
1082 up
->pvr_dtr_bit
= (1 << 1);
1084 up
->pvr_dsr_bit
= (1 << 3);
1085 up
->pvr_dtr_bit
= (1 << 2);
1087 writeb((1 << 1) | (1 << 2) | (1 << 4), &up
->regs
->w
.pvr
);
1088 writeb(readb(&up
->regs
->rw
.mode
) | SAB82532_MODE_FRTS
,
1089 &up
->regs
->rw
.mode
);
1090 writeb(readb(&up
->regs
->rw
.mode
) | SAB82532_MODE_RTS
,
1091 &up
->regs
->rw
.mode
);
1093 up
->tec_timeout
= SAB82532_MAX_TEC_TIMEOUT
;
1094 up
->cec_timeout
= SAB82532_MAX_CEC_TIMEOUT
;
1096 if (!(up
->port
.line
& 0x01)) {
1097 if (request_irq(up
->port
.irq
, sunsab_interrupt
,
1098 SA_SHIRQ
, "serial(sab82532)", up
)) {
1099 printk("sunsab%d: can't get IRQ %x\n",
1107 static int __init
sunsab_init(void)
1109 int ret
= probe_for_sabs();
1117 sunsab_reg
.minor
= sunserial_current_minor
;
1118 sunsab_reg
.nr
= num_channels
;
1119 sunsab_reg
.cons
= SUNSAB_CONSOLE
;
1121 ret
= uart_register_driver(&sunsab_reg
);
1125 for (i
= 0; i
< num_channels
; i
++) {
1126 struct uart_sunsab_port
*up
= &sunsab_ports
[i
];
1128 if (!(up
->port
.line
& 0x01))
1129 free_irq(up
->port
.irq
, up
);
1132 kfree(sunsab_ports
);
1133 sunsab_ports
= NULL
;
1138 sunserial_current_minor
+= num_channels
;
1140 sunsab_console_init();
1142 for (i
= 0; i
< num_channels
; i
++) {
1143 struct uart_sunsab_port
*up
= &sunsab_ports
[i
];
1145 uart_add_one_port(&sunsab_reg
, &up
->port
);
1151 static void __exit
sunsab_exit(void)
1155 for (i
= 0; i
< num_channels
; i
++) {
1156 struct uart_sunsab_port
*up
= &sunsab_ports
[i
];
1158 uart_remove_one_port(&sunsab_reg
, &up
->port
);
1160 if (!(up
->port
.line
& 0x01))
1161 free_irq(up
->port
.irq
, up
);
1165 sunserial_current_minor
-= num_channels
;
1166 uart_unregister_driver(&sunsab_reg
);
1168 kfree(sunsab_ports
);
1169 sunsab_ports
= NULL
;
1172 module_init(sunsab_init
);
1173 module_exit(sunsab_exit
);
1175 MODULE_AUTHOR("Eddie C. Dost and David S. Miller");
1176 MODULE_DESCRIPTION("Sun SAB82532 serial port driver");
1177 MODULE_LICENSE("GPL");