[PATCH] fbdev: colormap fixes fix
[linux-2.6/suspend2-2.6.18.git] / drivers / serial / sunsab.c
blob8d198880756a6a3aef034eb55ca6ca7ea5a212e5
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>
38 #include <asm/io.h>
39 #include <asm/irq.h>
40 #include <asm/oplib.h>
41 #include <asm/ebus.h>
43 #if defined(CONFIG_SERIAL_SUNZILOG_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
44 #define SUPPORT_SYSRQ
45 #endif
47 #include <linux/serial_core.h>
49 #include "suncore.h"
50 #include "sunsab.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 */
65 /* Setting configuration bits while the transmitter is active
66 * can cause garbage characters to get emitted by the chip.
67 * Therefore, we cache such writes here and do the real register
68 * write the next time the transmitter becomes idle.
70 unsigned int cached_ebrg;
71 unsigned char cached_mode;
72 unsigned char cached_pvr;
73 unsigned char cached_dafo;
77 * This assumes you have a 29.4912 MHz clock for your UART.
79 #define SAB_BASE_BAUD ( 29491200 / 16 )
81 static char *sab82532_version[16] = {
82 "V1.0", "V2.0", "V3.2", "V(0x03)",
83 "V(0x04)", "V(0x05)", "V(0x06)", "V(0x07)",
84 "V(0x08)", "V(0x09)", "V(0x0a)", "V(0x0b)",
85 "V(0x0c)", "V(0x0d)", "V(0x0e)", "V(0x0f)"
88 #define SAB82532_MAX_TEC_TIMEOUT 200000 /* 1 character time (at 50 baud) */
89 #define SAB82532_MAX_CEC_TIMEOUT 50000 /* 2.5 TX CLKs (at 50 baud) */
91 #define SAB82532_RECV_FIFO_SIZE 32 /* Standard async fifo sizes */
92 #define SAB82532_XMIT_FIFO_SIZE 32
94 static __inline__ void sunsab_tec_wait(struct uart_sunsab_port *up)
96 int timeout = up->tec_timeout;
98 while ((readb(&up->regs->r.star) & SAB82532_STAR_TEC) && --timeout)
99 udelay(1);
102 static __inline__ void sunsab_cec_wait(struct uart_sunsab_port *up)
104 int timeout = up->cec_timeout;
106 while ((readb(&up->regs->r.star) & SAB82532_STAR_CEC) && --timeout)
107 udelay(1);
110 static struct tty_struct *
111 receive_chars(struct uart_sunsab_port *up,
112 union sab82532_irq_status *stat,
113 struct pt_regs *regs)
115 struct tty_struct *tty = NULL;
116 unsigned char buf[32];
117 int saw_console_brk = 0;
118 int free_fifo = 0;
119 int count = 0;
120 int i;
122 if (up->port.info != NULL) /* Unopened serial console */
123 tty = up->port.info->tty;
125 /* Read number of BYTES (Character + Status) available. */
126 if (stat->sreg.isr0 & SAB82532_ISR0_RPF) {
127 count = SAB82532_RECV_FIFO_SIZE;
128 free_fifo++;
131 if (stat->sreg.isr0 & SAB82532_ISR0_TCD) {
132 count = readb(&up->regs->r.rbcl) & (SAB82532_RECV_FIFO_SIZE - 1);
133 free_fifo++;
136 /* Issue a FIFO read command in case we where idle. */
137 if (stat->sreg.isr0 & SAB82532_ISR0_TIME) {
138 sunsab_cec_wait(up);
139 writeb(SAB82532_CMDR_RFRD, &up->regs->w.cmdr);
140 return tty;
143 if (stat->sreg.isr0 & SAB82532_ISR0_RFO)
144 free_fifo++;
146 /* Read the FIFO. */
147 for (i = 0; i < count; i++)
148 buf[i] = readb(&up->regs->r.rfifo[i]);
150 /* Issue Receive Message Complete command. */
151 if (free_fifo) {
152 sunsab_cec_wait(up);
153 writeb(SAB82532_CMDR_RMC, &up->regs->w.cmdr);
156 /* Count may be zero for BRK, so we check for it here */
157 if ((stat->sreg.isr1 & SAB82532_ISR1_BRK) &&
158 (up->port.line == up->port.cons->index))
159 saw_console_brk = 1;
161 for (i = 0; i < count; i++) {
162 unsigned char ch = buf[i];
164 if (tty == NULL) {
165 uart_handle_sysrq_char(&up->port, ch, regs);
166 continue;
169 if (unlikely(tty->flip.count >= TTY_FLIPBUF_SIZE)) {
170 tty->flip.work.func((void *)tty);
171 if (tty->flip.count >= TTY_FLIPBUF_SIZE)
172 return tty; // if TTY_DONT_FLIP is set
175 *tty->flip.char_buf_ptr = ch;
176 *tty->flip.flag_buf_ptr = TTY_NORMAL;
177 up->port.icount.rx++;
179 if (unlikely(stat->sreg.isr0 & (SAB82532_ISR0_PERR |
180 SAB82532_ISR0_FERR |
181 SAB82532_ISR0_RFO)) ||
182 unlikely(stat->sreg.isr1 & SAB82532_ISR1_BRK)) {
184 * For statistics only
186 if (stat->sreg.isr1 & SAB82532_ISR1_BRK) {
187 stat->sreg.isr0 &= ~(SAB82532_ISR0_PERR |
188 SAB82532_ISR0_FERR);
189 up->port.icount.brk++;
191 * We do the SysRQ and SAK checking
192 * here because otherwise the break
193 * may get masked by ignore_status_mask
194 * or read_status_mask.
196 if (uart_handle_break(&up->port))
197 continue;
198 } else if (stat->sreg.isr0 & SAB82532_ISR0_PERR)
199 up->port.icount.parity++;
200 else if (stat->sreg.isr0 & SAB82532_ISR0_FERR)
201 up->port.icount.frame++;
202 if (stat->sreg.isr0 & SAB82532_ISR0_RFO)
203 up->port.icount.overrun++;
206 * Mask off conditions which should be ingored.
208 stat->sreg.isr0 &= (up->port.read_status_mask & 0xff);
209 stat->sreg.isr1 &= ((up->port.read_status_mask >> 8) & 0xff);
211 if (stat->sreg.isr1 & SAB82532_ISR1_BRK) {
212 *tty->flip.flag_buf_ptr = TTY_BREAK;
213 } else if (stat->sreg.isr0 & SAB82532_ISR0_PERR)
214 *tty->flip.flag_buf_ptr = TTY_PARITY;
215 else if (stat->sreg.isr0 & SAB82532_ISR0_FERR)
216 *tty->flip.flag_buf_ptr = TTY_FRAME;
219 if (uart_handle_sysrq_char(&up->port, ch, regs))
220 continue;
222 if ((stat->sreg.isr0 & (up->port.ignore_status_mask & 0xff)) == 0 &&
223 (stat->sreg.isr1 & ((up->port.ignore_status_mask >> 8) & 0xff)) == 0){
224 tty->flip.flag_buf_ptr++;
225 tty->flip.char_buf_ptr++;
226 tty->flip.count++;
228 if ((stat->sreg.isr0 & SAB82532_ISR0_RFO) &&
229 tty->flip.count < TTY_FLIPBUF_SIZE) {
231 * Overrun is special, since it's reported
232 * immediately, and doesn't affect the current
233 * character.
235 *tty->flip.flag_buf_ptr = TTY_OVERRUN;
236 tty->flip.flag_buf_ptr++;
237 tty->flip.char_buf_ptr++;
238 tty->flip.count++;
242 if (saw_console_brk)
243 sun_do_break();
245 return tty;
248 static void sunsab_stop_tx(struct uart_port *, unsigned int);
249 static void sunsab_tx_idle(struct uart_sunsab_port *);
251 static void transmit_chars(struct uart_sunsab_port *up,
252 union sab82532_irq_status *stat)
254 struct circ_buf *xmit = &up->port.info->xmit;
255 int i;
257 if (stat->sreg.isr1 & SAB82532_ISR1_ALLS) {
258 up->interrupt_mask1 |= SAB82532_IMR1_ALLS;
259 writeb(up->interrupt_mask1, &up->regs->w.imr1);
260 set_bit(SAB82532_ALLS, &up->irqflags);
263 #if 0 /* bde@nwlink.com says this check causes problems */
264 if (!(stat->sreg.isr1 & SAB82532_ISR1_XPR))
265 return;
266 #endif
268 if (!(readb(&up->regs->r.star) & SAB82532_STAR_XFW))
269 return;
271 set_bit(SAB82532_XPR, &up->irqflags);
272 sunsab_tx_idle(up);
274 if (uart_circ_empty(xmit) || uart_tx_stopped(&up->port)) {
275 up->interrupt_mask1 |= SAB82532_IMR1_XPR;
276 writeb(up->interrupt_mask1, &up->regs->w.imr1);
277 uart_write_wakeup(&up->port);
278 return;
281 up->interrupt_mask1 &= ~(SAB82532_IMR1_ALLS|SAB82532_IMR1_XPR);
282 writeb(up->interrupt_mask1, &up->regs->w.imr1);
283 clear_bit(SAB82532_ALLS, &up->irqflags);
285 /* Stuff 32 bytes into Transmit FIFO. */
286 clear_bit(SAB82532_XPR, &up->irqflags);
287 for (i = 0; i < up->port.fifosize; i++) {
288 writeb(xmit->buf[xmit->tail],
289 &up->regs->w.xfifo[i]);
290 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
291 up->port.icount.tx++;
292 if (uart_circ_empty(xmit))
293 break;
296 /* Issue a Transmit Frame command. */
297 sunsab_cec_wait(up);
298 writeb(SAB82532_CMDR_XF, &up->regs->w.cmdr);
300 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
301 uart_write_wakeup(&up->port);
303 if (uart_circ_empty(xmit))
304 sunsab_stop_tx(&up->port, 0);
307 static void check_status(struct uart_sunsab_port *up,
308 union sab82532_irq_status *stat)
310 if (stat->sreg.isr0 & SAB82532_ISR0_CDSC)
311 uart_handle_dcd_change(&up->port,
312 !(readb(&up->regs->r.vstr) & SAB82532_VSTR_CD));
314 if (stat->sreg.isr1 & SAB82532_ISR1_CSC)
315 uart_handle_cts_change(&up->port,
316 (readb(&up->regs->r.star) & SAB82532_STAR_CTS));
318 if ((readb(&up->regs->r.pvr) & up->pvr_dsr_bit) ^ up->dsr) {
319 up->dsr = (readb(&up->regs->r.pvr) & up->pvr_dsr_bit) ? 0 : 1;
320 up->port.icount.dsr++;
323 wake_up_interruptible(&up->port.info->delta_msr_wait);
326 static irqreturn_t sunsab_interrupt(int irq, void *dev_id, struct pt_regs *regs)
328 struct uart_sunsab_port *up = dev_id;
329 struct tty_struct *tty;
330 union sab82532_irq_status status;
331 unsigned long flags;
333 spin_lock_irqsave(&up->port.lock, flags);
335 status.stat = 0;
336 if (readb(&up->regs->r.gis) & SAB82532_GIS_ISA0)
337 status.sreg.isr0 = readb(&up->regs->r.isr0);
338 if (readb(&up->regs->r.gis) & SAB82532_GIS_ISA1)
339 status.sreg.isr1 = readb(&up->regs->r.isr1);
341 tty = NULL;
342 if (status.stat) {
343 if ((status.sreg.isr0 & (SAB82532_ISR0_TCD | SAB82532_ISR0_TIME |
344 SAB82532_ISR0_RFO | SAB82532_ISR0_RPF)) ||
345 (status.sreg.isr1 & SAB82532_ISR1_BRK))
346 tty = receive_chars(up, &status, regs);
347 if ((status.sreg.isr0 & SAB82532_ISR0_CDSC) ||
348 (status.sreg.isr1 & SAB82532_ISR1_CSC))
349 check_status(up, &status);
350 if (status.sreg.isr1 & (SAB82532_ISR1_ALLS | SAB82532_ISR1_XPR))
351 transmit_chars(up, &status);
354 spin_unlock(&up->port.lock);
356 if (tty)
357 tty_flip_buffer_push(tty);
359 up++;
361 spin_lock(&up->port.lock);
363 status.stat = 0;
364 if (readb(&up->regs->r.gis) & SAB82532_GIS_ISB0)
365 status.sreg.isr0 = readb(&up->regs->r.isr0);
366 if (readb(&up->regs->r.gis) & SAB82532_GIS_ISB1)
367 status.sreg.isr1 = readb(&up->regs->r.isr1);
369 tty = NULL;
370 if (status.stat) {
371 if ((status.sreg.isr0 & (SAB82532_ISR0_TCD | SAB82532_ISR0_TIME |
372 SAB82532_ISR0_RFO | SAB82532_ISR0_RPF)) ||
373 (status.sreg.isr1 & SAB82532_ISR1_BRK))
375 tty = receive_chars(up, &status, regs);
376 if ((status.sreg.isr0 & SAB82532_ISR0_CDSC) ||
377 (status.sreg.isr1 & (SAB82532_ISR1_BRK | SAB82532_ISR1_CSC)))
378 check_status(up, &status);
379 if (status.sreg.isr1 & (SAB82532_ISR1_ALLS | SAB82532_ISR1_XPR))
380 transmit_chars(up, &status);
383 spin_unlock_irqrestore(&up->port.lock, flags);
385 if (tty)
386 tty_flip_buffer_push(tty);
388 return IRQ_HANDLED;
391 /* port->lock is not held. */
392 static unsigned int sunsab_tx_empty(struct uart_port *port)
394 struct uart_sunsab_port *up = (struct uart_sunsab_port *) port;
395 int ret;
397 /* Do not need a lock for a state test like this. */
398 if (test_bit(SAB82532_ALLS, &up->irqflags))
399 ret = TIOCSER_TEMT;
400 else
401 ret = 0;
403 return ret;
406 /* port->lock held by caller. */
407 static void sunsab_set_mctrl(struct uart_port *port, unsigned int mctrl)
409 struct uart_sunsab_port *up = (struct uart_sunsab_port *) port;
411 if (mctrl & TIOCM_RTS) {
412 up->cached_mode &= ~SAB82532_MODE_FRTS;
413 up->cached_mode |= SAB82532_MODE_RTS;
414 } else {
415 up->cached_mode |= (SAB82532_MODE_FRTS |
416 SAB82532_MODE_RTS);
418 if (mctrl & TIOCM_DTR) {
419 up->cached_pvr &= ~(up->pvr_dtr_bit);
420 } else {
421 up->cached_pvr |= up->pvr_dtr_bit;
424 set_bit(SAB82532_REGS_PENDING, &up->irqflags);
425 if (test_bit(SAB82532_XPR, &up->irqflags))
426 sunsab_tx_idle(up);
429 /* port->lock is held by caller and interrupts are disabled. */
430 static unsigned int sunsab_get_mctrl(struct uart_port *port)
432 struct uart_sunsab_port *up = (struct uart_sunsab_port *) port;
433 unsigned char val;
434 unsigned int result;
436 result = 0;
438 val = readb(&up->regs->r.pvr);
439 result |= (val & up->pvr_dsr_bit) ? 0 : TIOCM_DSR;
441 val = readb(&up->regs->r.vstr);
442 result |= (val & SAB82532_VSTR_CD) ? 0 : TIOCM_CAR;
444 val = readb(&up->regs->r.star);
445 result |= (val & SAB82532_STAR_CTS) ? TIOCM_CTS : 0;
447 return result;
450 /* port->lock held by caller. */
451 static void sunsab_stop_tx(struct uart_port *port, unsigned int tty_stop)
453 struct uart_sunsab_port *up = (struct uart_sunsab_port *) port;
455 up->interrupt_mask1 |= SAB82532_IMR1_XPR;
456 writeb(up->interrupt_mask1, &up->regs->w.imr1);
459 /* port->lock held by caller. */
460 static void sunsab_tx_idle(struct uart_sunsab_port *up)
462 if (test_bit(SAB82532_REGS_PENDING, &up->irqflags)) {
463 u8 tmp;
465 clear_bit(SAB82532_REGS_PENDING, &up->irqflags);
466 writeb(up->cached_mode, &up->regs->rw.mode);
467 writeb(up->cached_pvr, &up->regs->rw.pvr);
468 writeb(up->cached_dafo, &up->regs->w.dafo);
470 writeb(up->cached_ebrg & 0xff, &up->regs->w.bgr);
471 tmp = readb(&up->regs->rw.ccr2);
472 tmp &= ~0xc0;
473 tmp |= (up->cached_ebrg >> 2) & 0xc0;
474 writeb(tmp, &up->regs->rw.ccr2);
478 /* port->lock held by caller. */
479 static void sunsab_start_tx(struct uart_port *port, unsigned int tty_start)
481 struct uart_sunsab_port *up = (struct uart_sunsab_port *) port;
482 struct circ_buf *xmit = &up->port.info->xmit;
483 int i;
485 up->interrupt_mask1 &= ~(SAB82532_IMR1_ALLS|SAB82532_IMR1_XPR);
486 writeb(up->interrupt_mask1, &up->regs->w.imr1);
488 if (!test_bit(SAB82532_XPR, &up->irqflags))
489 return;
491 clear_bit(SAB82532_ALLS, &up->irqflags);
492 clear_bit(SAB82532_XPR, &up->irqflags);
494 for (i = 0; i < up->port.fifosize; i++) {
495 writeb(xmit->buf[xmit->tail],
496 &up->regs->w.xfifo[i]);
497 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
498 up->port.icount.tx++;
499 if (uart_circ_empty(xmit))
500 break;
503 /* Issue a Transmit Frame command. */
504 sunsab_cec_wait(up);
505 writeb(SAB82532_CMDR_XF, &up->regs->w.cmdr);
508 /* port->lock is not held. */
509 static void sunsab_send_xchar(struct uart_port *port, char ch)
511 struct uart_sunsab_port *up = (struct uart_sunsab_port *) port;
512 unsigned long flags;
514 spin_lock_irqsave(&up->port.lock, flags);
516 sunsab_tec_wait(up);
517 writeb(ch, &up->regs->w.tic);
519 spin_unlock_irqrestore(&up->port.lock, flags);
522 /* port->lock held by caller. */
523 static void sunsab_stop_rx(struct uart_port *port)
525 struct uart_sunsab_port *up = (struct uart_sunsab_port *) port;
527 up->interrupt_mask0 |= SAB82532_ISR0_TCD;
528 writeb(up->interrupt_mask1, &up->regs->w.imr0);
531 /* port->lock held by caller. */
532 static void sunsab_enable_ms(struct uart_port *port)
534 /* For now we always receive these interrupts. */
537 /* port->lock is not held. */
538 static void sunsab_break_ctl(struct uart_port *port, int break_state)
540 struct uart_sunsab_port *up = (struct uart_sunsab_port *) port;
541 unsigned long flags;
542 unsigned char val;
544 spin_lock_irqsave(&up->port.lock, flags);
546 val = up->cached_dafo;
547 if (break_state)
548 val |= SAB82532_DAFO_XBRK;
549 else
550 val &= ~SAB82532_DAFO_XBRK;
551 up->cached_dafo = val;
553 set_bit(SAB82532_REGS_PENDING, &up->irqflags);
554 if (test_bit(SAB82532_XPR, &up->irqflags))
555 sunsab_tx_idle(up);
557 spin_unlock_irqrestore(&up->port.lock, flags);
560 /* port->lock is not held. */
561 static int sunsab_startup(struct uart_port *port)
563 struct uart_sunsab_port *up = (struct uart_sunsab_port *) port;
564 unsigned long flags;
565 unsigned char tmp;
567 spin_lock_irqsave(&up->port.lock, flags);
570 * Wait for any commands or immediate characters
572 sunsab_cec_wait(up);
573 sunsab_tec_wait(up);
576 * Clear the FIFO buffers.
578 writeb(SAB82532_CMDR_RRES, &up->regs->w.cmdr);
579 sunsab_cec_wait(up);
580 writeb(SAB82532_CMDR_XRES, &up->regs->w.cmdr);
583 * Clear the interrupt registers.
585 (void) readb(&up->regs->r.isr0);
586 (void) readb(&up->regs->r.isr1);
589 * Now, initialize the UART
591 writeb(0, &up->regs->w.ccr0); /* power-down */
592 writeb(SAB82532_CCR0_MCE | SAB82532_CCR0_SC_NRZ |
593 SAB82532_CCR0_SM_ASYNC, &up->regs->w.ccr0);
594 writeb(SAB82532_CCR1_ODS | SAB82532_CCR1_BCR | 7, &up->regs->w.ccr1);
595 writeb(SAB82532_CCR2_BDF | SAB82532_CCR2_SSEL |
596 SAB82532_CCR2_TOE, &up->regs->w.ccr2);
597 writeb(0, &up->regs->w.ccr3);
598 writeb(SAB82532_CCR4_MCK4 | SAB82532_CCR4_EBRG, &up->regs->w.ccr4);
599 up->cached_mode = (SAB82532_MODE_RTS | SAB82532_MODE_FCTS |
600 SAB82532_MODE_RAC);
601 writeb(up->cached_mode, &up->regs->w.mode);
602 writeb(SAB82532_RFC_DPS|SAB82532_RFC_RFTH_32, &up->regs->w.rfc);
604 tmp = readb(&up->regs->rw.ccr0);
605 tmp |= SAB82532_CCR0_PU; /* power-up */
606 writeb(tmp, &up->regs->rw.ccr0);
609 * Finally, enable interrupts
611 up->interrupt_mask0 = (SAB82532_IMR0_PERR | SAB82532_IMR0_FERR |
612 SAB82532_IMR0_PLLA);
613 writeb(up->interrupt_mask0, &up->regs->w.imr0);
614 up->interrupt_mask1 = (SAB82532_IMR1_BRKT | SAB82532_IMR1_ALLS |
615 SAB82532_IMR1_XOFF | SAB82532_IMR1_TIN |
616 SAB82532_IMR1_CSC | SAB82532_IMR1_XON |
617 SAB82532_IMR1_XPR);
618 writeb(up->interrupt_mask1, &up->regs->w.imr1);
619 set_bit(SAB82532_ALLS, &up->irqflags);
620 set_bit(SAB82532_XPR, &up->irqflags);
622 spin_unlock_irqrestore(&up->port.lock, flags);
624 return 0;
627 /* port->lock is not held. */
628 static void sunsab_shutdown(struct uart_port *port)
630 struct uart_sunsab_port *up = (struct uart_sunsab_port *) port;
631 unsigned long flags;
633 spin_lock_irqsave(&up->port.lock, flags);
635 /* Disable Interrupts */
636 up->interrupt_mask0 = 0xff;
637 writeb(up->interrupt_mask0, &up->regs->w.imr0);
638 up->interrupt_mask1 = 0xff;
639 writeb(up->interrupt_mask1, &up->regs->w.imr1);
641 /* Disable break condition */
642 up->cached_dafo = readb(&up->regs->rw.dafo);
643 up->cached_dafo &= ~SAB82532_DAFO_XBRK;
644 writeb(up->cached_dafo, &up->regs->rw.dafo);
646 /* Disable Receiver */
647 up->cached_mode &= ~SAB82532_MODE_RAC;
648 writeb(up->cached_mode, &up->regs->rw.mode);
651 * XXX FIXME
653 * If the chip is powered down here the system hangs/crashes during
654 * reboot or shutdown. This needs to be investigated further,
655 * similar behaviour occurs in 2.4 when the driver is configured
656 * as a module only. One hint may be that data is sometimes
657 * transmitted at 9600 baud during shutdown (regardless of the
658 * speed the chip was configured for when the port was open).
660 #if 0
661 /* Power Down */
662 tmp = readb(&up->regs->rw.ccr0);
663 tmp &= ~SAB82532_CCR0_PU;
664 writeb(tmp, &up->regs->rw.ccr0);
665 #endif
667 spin_unlock_irqrestore(&up->port.lock, flags);
671 * This is used to figure out the divisor speeds.
673 * The formula is: Baud = SAB_BASE_BAUD / ((N + 1) * (1 << M)),
675 * with 0 <= N < 64 and 0 <= M < 16
678 static void calc_ebrg(int baud, int *n_ret, int *m_ret)
680 int n, m;
682 if (baud == 0) {
683 *n_ret = 0;
684 *m_ret = 0;
685 return;
689 * We scale numbers by 10 so that we get better accuracy
690 * without having to use floating point. Here we increment m
691 * until n is within the valid range.
693 n = (SAB_BASE_BAUD * 10) / baud;
694 m = 0;
695 while (n >= 640) {
696 n = n / 2;
697 m++;
699 n = (n+5) / 10;
701 * We try very hard to avoid speeds with M == 0 since they may
702 * not work correctly for XTAL frequences above 10 MHz.
704 if ((m == 0) && ((n & 1) == 0)) {
705 n = n / 2;
706 m++;
708 *n_ret = n - 1;
709 *m_ret = m;
712 /* Internal routine, port->lock is held and local interrupts are disabled. */
713 static void sunsab_convert_to_sab(struct uart_sunsab_port *up, unsigned int cflag,
714 unsigned int iflag, unsigned int baud,
715 unsigned int quot)
717 unsigned char dafo;
718 int bits, n, m;
720 /* Byte size and parity */
721 switch (cflag & CSIZE) {
722 case CS5: dafo = SAB82532_DAFO_CHL5; bits = 7; break;
723 case CS6: dafo = SAB82532_DAFO_CHL6; bits = 8; break;
724 case CS7: dafo = SAB82532_DAFO_CHL7; bits = 9; break;
725 case CS8: dafo = SAB82532_DAFO_CHL8; bits = 10; break;
726 /* Never happens, but GCC is too dumb to figure it out */
727 default: dafo = SAB82532_DAFO_CHL5; bits = 7; break;
730 if (cflag & CSTOPB) {
731 dafo |= SAB82532_DAFO_STOP;
732 bits++;
735 if (cflag & PARENB) {
736 dafo |= SAB82532_DAFO_PARE;
737 bits++;
740 if (cflag & PARODD) {
741 dafo |= SAB82532_DAFO_PAR_ODD;
742 } else {
743 dafo |= SAB82532_DAFO_PAR_EVEN;
745 up->cached_dafo = dafo;
747 calc_ebrg(baud, &n, &m);
749 up->cached_ebrg = n | (m << 6);
751 up->tec_timeout = (10 * 1000000) / baud;
752 up->cec_timeout = up->tec_timeout >> 2;
754 /* CTS flow control flags */
755 /* We encode read_status_mask and ignore_status_mask like so:
757 * ---------------------
758 * | ... | ISR1 | ISR0 |
759 * ---------------------
760 * .. 15 8 7 0
763 up->port.read_status_mask = (SAB82532_ISR0_TCD | SAB82532_ISR0_TIME |
764 SAB82532_ISR0_RFO | SAB82532_ISR0_RPF |
765 SAB82532_ISR0_CDSC);
766 up->port.read_status_mask |= (SAB82532_ISR1_CSC |
767 SAB82532_ISR1_ALLS |
768 SAB82532_ISR1_XPR) << 8;
769 if (iflag & INPCK)
770 up->port.read_status_mask |= (SAB82532_ISR0_PERR |
771 SAB82532_ISR0_FERR);
772 if (iflag & (BRKINT | PARMRK))
773 up->port.read_status_mask |= (SAB82532_ISR1_BRK << 8);
776 * Characteres to ignore
778 up->port.ignore_status_mask = 0;
779 if (iflag & IGNPAR)
780 up->port.ignore_status_mask |= (SAB82532_ISR0_PERR |
781 SAB82532_ISR0_FERR);
782 if (iflag & IGNBRK) {
783 up->port.ignore_status_mask |= (SAB82532_ISR1_BRK << 8);
785 * If we're ignoring parity and break indicators,
786 * ignore overruns too (for real raw support).
788 if (iflag & IGNPAR)
789 up->port.ignore_status_mask |= SAB82532_ISR0_RFO;
793 * ignore all characters if CREAD is not set
795 if ((cflag & CREAD) == 0)
796 up->port.ignore_status_mask |= (SAB82532_ISR0_RPF |
797 SAB82532_ISR0_TCD);
799 uart_update_timeout(&up->port, cflag,
800 (up->port.uartclk / (16 * quot)));
802 /* Now schedule a register update when the chip's
803 * transmitter is idle.
805 up->cached_mode |= SAB82532_MODE_RAC;
806 set_bit(SAB82532_REGS_PENDING, &up->irqflags);
807 if (test_bit(SAB82532_XPR, &up->irqflags))
808 sunsab_tx_idle(up);
811 /* port->lock is not held. */
812 static void sunsab_set_termios(struct uart_port *port, struct termios *termios,
813 struct termios *old)
815 struct uart_sunsab_port *up = (struct uart_sunsab_port *) port;
816 unsigned long flags;
817 unsigned int baud = uart_get_baud_rate(port, termios, old, 0, 4000000);
818 unsigned int quot = uart_get_divisor(port, baud);
820 spin_lock_irqsave(&up->port.lock, flags);
821 sunsab_convert_to_sab(up, termios->c_cflag, termios->c_iflag, baud, quot);
822 spin_unlock_irqrestore(&up->port.lock, flags);
825 static const char *sunsab_type(struct uart_port *port)
827 struct uart_sunsab_port *up = (void *)port;
828 static char buf[36];
830 sprintf(buf, "SAB82532 %s", sab82532_version[up->type]);
831 return buf;
834 static void sunsab_release_port(struct uart_port *port)
838 static int sunsab_request_port(struct uart_port *port)
840 return 0;
843 static void sunsab_config_port(struct uart_port *port, int flags)
847 static int sunsab_verify_port(struct uart_port *port, struct serial_struct *ser)
849 return -EINVAL;
852 static struct uart_ops sunsab_pops = {
853 .tx_empty = sunsab_tx_empty,
854 .set_mctrl = sunsab_set_mctrl,
855 .get_mctrl = sunsab_get_mctrl,
856 .stop_tx = sunsab_stop_tx,
857 .start_tx = sunsab_start_tx,
858 .send_xchar = sunsab_send_xchar,
859 .stop_rx = sunsab_stop_rx,
860 .enable_ms = sunsab_enable_ms,
861 .break_ctl = sunsab_break_ctl,
862 .startup = sunsab_startup,
863 .shutdown = sunsab_shutdown,
864 .set_termios = sunsab_set_termios,
865 .type = sunsab_type,
866 .release_port = sunsab_release_port,
867 .request_port = sunsab_request_port,
868 .config_port = sunsab_config_port,
869 .verify_port = sunsab_verify_port,
872 static struct uart_driver sunsab_reg = {
873 .owner = THIS_MODULE,
874 .driver_name = "serial",
875 .devfs_name = "tts/",
876 .dev_name = "ttyS",
877 .major = TTY_MAJOR,
880 static struct uart_sunsab_port *sunsab_ports;
881 static int num_channels;
883 #ifdef CONFIG_SERIAL_SUNSAB_CONSOLE
885 static __inline__ void sunsab_console_putchar(struct uart_sunsab_port *up, char c)
887 unsigned long flags;
889 spin_lock_irqsave(&up->port.lock, flags);
891 sunsab_tec_wait(up);
892 writeb(c, &up->regs->w.tic);
894 spin_unlock_irqrestore(&up->port.lock, flags);
897 static void sunsab_console_write(struct console *con, const char *s, unsigned n)
899 struct uart_sunsab_port *up = &sunsab_ports[con->index];
900 int i;
902 for (i = 0; i < n; i++) {
903 if (*s == '\n')
904 sunsab_console_putchar(up, '\r');
905 sunsab_console_putchar(up, *s++);
907 sunsab_tec_wait(up);
910 static int sunsab_console_setup(struct console *con, char *options)
912 struct uart_sunsab_port *up = &sunsab_ports[con->index];
913 unsigned long flags;
914 unsigned int baud, quot;
916 printk("Console: ttyS%d (SAB82532)\n",
917 (sunsab_reg.minor - 64) + con->index);
919 sunserial_console_termios(con);
921 /* Firmware console speed is limited to 150-->38400 baud so
922 * this hackish cflag thing is OK.
924 switch (con->cflag & CBAUD) {
925 case B150: baud = 150; break;
926 case B300: baud = 300; break;
927 case B600: baud = 600; break;
928 case B1200: baud = 1200; break;
929 case B2400: baud = 2400; break;
930 case B4800: baud = 4800; break;
931 default: case B9600: baud = 9600; break;
932 case B19200: baud = 19200; break;
933 case B38400: baud = 38400; break;
937 * Temporary fix.
939 spin_lock_init(&up->port.lock);
942 * Initialize the hardware
944 sunsab_startup(&up->port);
946 spin_lock_irqsave(&up->port.lock, flags);
949 * Finally, enable interrupts
951 up->interrupt_mask0 = SAB82532_IMR0_PERR | SAB82532_IMR0_FERR |
952 SAB82532_IMR0_PLLA | SAB82532_IMR0_CDSC;
953 writeb(up->interrupt_mask0, &up->regs->w.imr0);
954 up->interrupt_mask1 = SAB82532_IMR1_BRKT | SAB82532_IMR1_ALLS |
955 SAB82532_IMR1_XOFF | SAB82532_IMR1_TIN |
956 SAB82532_IMR1_CSC | SAB82532_IMR1_XON |
957 SAB82532_IMR1_XPR;
958 writeb(up->interrupt_mask1, &up->regs->w.imr1);
960 quot = uart_get_divisor(&up->port, baud);
961 sunsab_convert_to_sab(up, con->cflag, 0, baud, quot);
962 sunsab_set_mctrl(&up->port, TIOCM_DTR | TIOCM_RTS);
964 spin_unlock_irqrestore(&up->port.lock, flags);
966 return 0;
969 static struct console sunsab_console = {
970 .name = "ttyS",
971 .write = sunsab_console_write,
972 .device = uart_console_device,
973 .setup = sunsab_console_setup,
974 .flags = CON_PRINTBUFFER,
975 .index = -1,
976 .data = &sunsab_reg,
978 #define SUNSAB_CONSOLE (&sunsab_console)
980 static void __init sunsab_console_init(void)
982 int i;
984 if (con_is_present())
985 return;
987 for (i = 0; i < num_channels; i++) {
988 int this_minor = sunsab_reg.minor + i;
990 if ((this_minor - 64) == (serial_console - 1))
991 break;
993 if (i == num_channels)
994 return;
996 sunsab_console.index = i;
997 register_console(&sunsab_console);
999 #else
1000 #define SUNSAB_CONSOLE (NULL)
1001 #define sunsab_console_init() do { } while (0)
1002 #endif
1004 static void __init for_each_sab_edev(void (*callback)(struct linux_ebus_device *, void *), void *arg)
1006 struct linux_ebus *ebus;
1007 struct linux_ebus_device *edev = NULL;
1009 for_each_ebus(ebus) {
1010 for_each_ebusdev(edev, ebus) {
1011 if (!strcmp(edev->prom_name, "se")) {
1012 callback(edev, arg);
1013 continue;
1014 } else if (!strcmp(edev->prom_name, "serial")) {
1015 char compat[32];
1016 int clen;
1018 /* On RIO this can be an SE, check it. We could
1019 * just check ebus->is_rio, but this is more portable.
1021 clen = prom_getproperty(edev->prom_node, "compatible",
1022 compat, sizeof(compat));
1023 if (clen > 0) {
1024 if (strncmp(compat, "sab82532", 8) == 0) {
1025 callback(edev, arg);
1026 continue;
1034 static void __init sab_count_callback(struct linux_ebus_device *edev, void *arg)
1036 int *count_p = arg;
1038 (*count_p)++;
1041 static void __init sab_attach_callback(struct linux_ebus_device *edev, void *arg)
1043 int *instance_p = arg;
1044 struct uart_sunsab_port *up;
1045 unsigned long regs, offset;
1046 int i;
1048 /* Note: ports are located in reverse order */
1049 regs = edev->resource[0].start;
1050 offset = sizeof(union sab82532_async_regs);
1051 for (i = 0; i < 2; i++) {
1052 up = &sunsab_ports[(*instance_p * 2) + 1 - i];
1054 memset(up, 0, sizeof(*up));
1055 up->regs = ioremap(regs + offset, sizeof(union sab82532_async_regs));
1056 up->port.irq = edev->irqs[0];
1057 up->port.fifosize = SAB82532_XMIT_FIFO_SIZE;
1058 up->port.mapbase = (unsigned long)up->regs;
1059 up->port.iotype = SERIAL_IO_MEM;
1061 writeb(SAB82532_IPC_IC_ACT_LOW, &up->regs->w.ipc);
1063 offset -= sizeof(union sab82532_async_regs);
1066 (*instance_p)++;
1069 static int __init probe_for_sabs(void)
1071 int this_sab = 0;
1073 /* Find device instances. */
1074 for_each_sab_edev(&sab_count_callback, &this_sab);
1075 if (!this_sab)
1076 return -ENODEV;
1078 /* Allocate tables. */
1079 sunsab_ports = kmalloc(sizeof(struct uart_sunsab_port) * this_sab * 2,
1080 GFP_KERNEL);
1081 if (!sunsab_ports)
1082 return -ENOMEM;
1084 num_channels = this_sab * 2;
1086 this_sab = 0;
1087 for_each_sab_edev(&sab_attach_callback, &this_sab);
1088 return 0;
1091 static void __init sunsab_init_hw(void)
1093 int i;
1095 for (i = 0; i < num_channels; i++) {
1096 struct uart_sunsab_port *up = &sunsab_ports[i];
1098 up->port.line = i;
1099 up->port.ops = &sunsab_pops;
1100 up->port.type = PORT_SUNSAB;
1101 up->port.uartclk = SAB_BASE_BAUD;
1103 up->type = readb(&up->regs->r.vstr) & 0x0f;
1104 writeb(~((1 << 1) | (1 << 2) | (1 << 4)), &up->regs->w.pcr);
1105 writeb(0xff, &up->regs->w.pim);
1106 if (up->port.line == 0) {
1107 up->pvr_dsr_bit = (1 << 0);
1108 up->pvr_dtr_bit = (1 << 1);
1109 } else {
1110 up->pvr_dsr_bit = (1 << 3);
1111 up->pvr_dtr_bit = (1 << 2);
1113 up->cached_pvr = (1 << 1) | (1 << 2) | (1 << 4);
1114 writeb(up->cached_pvr, &up->regs->w.pvr);
1115 up->cached_mode = readb(&up->regs->rw.mode);
1116 up->cached_mode |= SAB82532_MODE_FRTS;
1117 writeb(up->cached_mode, &up->regs->rw.mode);
1118 up->cached_mode |= SAB82532_MODE_RTS;
1119 writeb(up->cached_mode, &up->regs->rw.mode);
1121 up->tec_timeout = SAB82532_MAX_TEC_TIMEOUT;
1122 up->cec_timeout = SAB82532_MAX_CEC_TIMEOUT;
1124 if (!(up->port.line & 0x01)) {
1125 if (request_irq(up->port.irq, sunsab_interrupt,
1126 SA_SHIRQ, "serial(sab82532)", up)) {
1127 printk("sunsab%d: can't get IRQ %x\n",
1128 i, up->port.irq);
1129 continue;
1135 static int __init sunsab_init(void)
1137 int ret = probe_for_sabs();
1138 int i;
1140 if (ret < 0)
1141 return ret;
1143 sunsab_init_hw();
1145 sunsab_reg.minor = sunserial_current_minor;
1146 sunsab_reg.nr = num_channels;
1147 sunsab_reg.cons = SUNSAB_CONSOLE;
1149 ret = uart_register_driver(&sunsab_reg);
1150 if (ret < 0) {
1151 int i;
1153 for (i = 0; i < num_channels; i++) {
1154 struct uart_sunsab_port *up = &sunsab_ports[i];
1156 if (!(up->port.line & 0x01))
1157 free_irq(up->port.irq, up);
1158 iounmap(up->regs);
1160 kfree(sunsab_ports);
1161 sunsab_ports = NULL;
1163 return ret;
1166 sunserial_current_minor += num_channels;
1168 sunsab_console_init();
1170 for (i = 0; i < num_channels; i++) {
1171 struct uart_sunsab_port *up = &sunsab_ports[i];
1173 uart_add_one_port(&sunsab_reg, &up->port);
1176 return 0;
1179 static void __exit sunsab_exit(void)
1181 int i;
1183 for (i = 0; i < num_channels; i++) {
1184 struct uart_sunsab_port *up = &sunsab_ports[i];
1186 uart_remove_one_port(&sunsab_reg, &up->port);
1188 if (!(up->port.line & 0x01))
1189 free_irq(up->port.irq, up);
1190 iounmap(up->regs);
1193 sunserial_current_minor -= num_channels;
1194 uart_unregister_driver(&sunsab_reg);
1196 kfree(sunsab_ports);
1197 sunsab_ports = NULL;
1200 module_init(sunsab_init);
1201 module_exit(sunsab_exit);
1203 MODULE_AUTHOR("Eddie C. Dost and David S. Miller");
1204 MODULE_DESCRIPTION("Sun SAB82532 serial port driver");
1205 MODULE_LICENSE("GPL");