Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux...
[sfrench/cifs-2.6.git] / drivers / serial / sunsu.c
1 /* $Id: su.c,v 1.55 2002/01/08 16:00:16 davem Exp $
2  * su.c: Small serial driver for keyboard/mouse interface on sparc32/PCI
3  *
4  * Copyright (C) 1997  Eddie C. Dost  (ecd@skynet.be)
5  * Copyright (C) 1998-1999  Pete Zaitcev   (zaitcev@yahoo.com)
6  *
7  * This is mainly a variation of 8250.c, credits go to authors mentioned
8  * therein.  In fact this driver should be merged into the generic 8250.c
9  * infrastructure perhaps using a 8250_sparc.c module.
10  *
11  * Fixed to use tty_get_baud_rate().
12  *   Theodore Ts'o <tytso@mit.edu>, 2001-Oct-12
13  *
14  * Converted to new 2.5.x UART layer.
15  *   David S. Miller (davem@davemloft.net), 2002-Jul-29
16  */
17
18 #include <linux/module.h>
19 #include <linux/kernel.h>
20 #include <linux/sched.h>
21 #include <linux/spinlock.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 #ifdef CONFIG_SERIO
34 #include <linux/serio.h>
35 #endif
36 #include <linux/serial_reg.h>
37 #include <linux/init.h>
38 #include <linux/delay.h>
39
40 #include <asm/io.h>
41 #include <asm/irq.h>
42 #include <asm/prom.h>
43 #include <asm/of_device.h>
44
45 #if defined(CONFIG_SERIAL_SUNSU_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
46 #define SUPPORT_SYSRQ
47 #endif
48
49 #include <linux/serial_core.h>
50
51 #include "suncore.h"
52
53 /* We are on a NS PC87303 clocked with 24.0 MHz, which results
54  * in a UART clock of 1.8462 MHz.
55  */
56 #define SU_BASE_BAUD    (1846200 / 16)
57
58 enum su_type { SU_PORT_NONE, SU_PORT_MS, SU_PORT_KBD, SU_PORT_PORT };
59 static char *su_typev[] = { "su(???)", "su(mouse)", "su(kbd)", "su(serial)" };
60
61 /*
62  * Here we define the default xmit fifo size used for each type of UART.
63  */
64 static const struct serial_uart_config uart_config[PORT_MAX_8250+1] = {
65         { "unknown",    1,      0 },
66         { "8250",       1,      0 },
67         { "16450",      1,      0 },
68         { "16550",      1,      0 },
69         { "16550A",     16,     UART_CLEAR_FIFO | UART_USE_FIFO },
70         { "Cirrus",     1,      0 },
71         { "ST16650",    1,      UART_CLEAR_FIFO | UART_STARTECH },
72         { "ST16650V2",  32,     UART_CLEAR_FIFO | UART_USE_FIFO | UART_STARTECH },
73         { "TI16750",    64,     UART_CLEAR_FIFO | UART_USE_FIFO },
74         { "Startech",   1,      0 },
75         { "16C950/954", 128,    UART_CLEAR_FIFO | UART_USE_FIFO },
76         { "ST16654",    64,     UART_CLEAR_FIFO | UART_USE_FIFO | UART_STARTECH },
77         { "XR16850",    128,    UART_CLEAR_FIFO | UART_USE_FIFO | UART_STARTECH },
78         { "RSA",        2048,   UART_CLEAR_FIFO | UART_USE_FIFO }
79 };
80
81 struct uart_sunsu_port {
82         struct uart_port        port;
83         unsigned char           acr;
84         unsigned char           ier;
85         unsigned short          rev;
86         unsigned char           lcr;
87         unsigned int            lsr_break_flag;
88         unsigned int            cflag;
89
90         /* Probing information.  */
91         enum su_type            su_type;
92         unsigned int            type_probed;    /* XXX Stupid */
93         unsigned long           reg_size;
94
95 #ifdef CONFIG_SERIO
96         struct serio            serio;
97         int                     serio_open;
98 #endif
99 };
100
101 static unsigned int serial_in(struct uart_sunsu_port *up, int offset)
102 {
103         offset <<= up->port.regshift;
104
105         switch (up->port.iotype) {
106         case UPIO_HUB6:
107                 outb(up->port.hub6 - 1 + offset, up->port.iobase);
108                 return inb(up->port.iobase + 1);
109
110         case UPIO_MEM:
111                 return readb(up->port.membase + offset);
112
113         default:
114                 return inb(up->port.iobase + offset);
115         }
116 }
117
118 static void serial_out(struct uart_sunsu_port *up, int offset, int value)
119 {
120 #ifndef CONFIG_SPARC64
121         /*
122          * MrCoffee has weird schematics: IRQ4 & P10(?) pins of SuperIO are
123          * connected with a gate then go to SlavIO. When IRQ4 goes tristated
124          * gate outputs a logical one. Since we use level triggered interrupts
125          * we have lockup and watchdog reset. We cannot mask IRQ because
126          * keyboard shares IRQ with us (Word has it as Bob Smelik's design).
127          * This problem is similar to what Alpha people suffer, see serial.c.
128          */
129         if (offset == UART_MCR)
130                 value |= UART_MCR_OUT2;
131 #endif
132         offset <<= up->port.regshift;
133
134         switch (up->port.iotype) {
135         case UPIO_HUB6:
136                 outb(up->port.hub6 - 1 + offset, up->port.iobase);
137                 outb(value, up->port.iobase + 1);
138                 break;
139
140         case UPIO_MEM:
141                 writeb(value, up->port.membase + offset);
142                 break;
143
144         default:
145                 outb(value, up->port.iobase + offset);
146         }
147 }
148
149 /*
150  * We used to support using pause I/O for certain machines.  We
151  * haven't supported this for a while, but just in case it's badly
152  * needed for certain old 386 machines, I've left these #define's
153  * in....
154  */
155 #define serial_inp(up, offset)          serial_in(up, offset)
156 #define serial_outp(up, offset, value)  serial_out(up, offset, value)
157
158
159 /*
160  * For the 16C950
161  */
162 static void serial_icr_write(struct uart_sunsu_port *up, int offset, int value)
163 {
164         serial_out(up, UART_SCR, offset);
165         serial_out(up, UART_ICR, value);
166 }
167
168 #if 0 /* Unused currently */
169 static unsigned int serial_icr_read(struct uart_sunsu_port *up, int offset)
170 {
171         unsigned int value;
172
173         serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
174         serial_out(up, UART_SCR, offset);
175         value = serial_in(up, UART_ICR);
176         serial_icr_write(up, UART_ACR, up->acr);
177
178         return value;
179 }
180 #endif
181
182 #ifdef CONFIG_SERIAL_8250_RSA
183 /*
184  * Attempts to turn on the RSA FIFO.  Returns zero on failure.
185  * We set the port uart clock rate if we succeed.
186  */
187 static int __enable_rsa(struct uart_sunsu_port *up)
188 {
189         unsigned char mode;
190         int result;
191
192         mode = serial_inp(up, UART_RSA_MSR);
193         result = mode & UART_RSA_MSR_FIFO;
194
195         if (!result) {
196                 serial_outp(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
197                 mode = serial_inp(up, UART_RSA_MSR);
198                 result = mode & UART_RSA_MSR_FIFO;
199         }
200
201         if (result)
202                 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
203
204         return result;
205 }
206
207 static void enable_rsa(struct uart_sunsu_port *up)
208 {
209         if (up->port.type == PORT_RSA) {
210                 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
211                         spin_lock_irq(&up->port.lock);
212                         __enable_rsa(up);
213                         spin_unlock_irq(&up->port.lock);
214                 }
215                 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
216                         serial_outp(up, UART_RSA_FRR, 0);
217         }
218 }
219
220 /*
221  * Attempts to turn off the RSA FIFO.  Returns zero on failure.
222  * It is unknown why interrupts were disabled in here.  However,
223  * the caller is expected to preserve this behaviour by grabbing
224  * the spinlock before calling this function.
225  */
226 static void disable_rsa(struct uart_sunsu_port *up)
227 {
228         unsigned char mode;
229         int result;
230
231         if (up->port.type == PORT_RSA &&
232             up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
233                 spin_lock_irq(&up->port.lock);
234
235                 mode = serial_inp(up, UART_RSA_MSR);
236                 result = !(mode & UART_RSA_MSR_FIFO);
237
238                 if (!result) {
239                         serial_outp(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
240                         mode = serial_inp(up, UART_RSA_MSR);
241                         result = !(mode & UART_RSA_MSR_FIFO);
242                 }
243
244                 if (result)
245                         up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
246                 spin_unlock_irq(&up->port.lock);
247         }
248 }
249 #endif /* CONFIG_SERIAL_8250_RSA */
250
251 static inline void __stop_tx(struct uart_sunsu_port *p)
252 {
253         if (p->ier & UART_IER_THRI) {
254                 p->ier &= ~UART_IER_THRI;
255                 serial_out(p, UART_IER, p->ier);
256         }
257 }
258
259 static void sunsu_stop_tx(struct uart_port *port)
260 {
261         struct uart_sunsu_port *up = (struct uart_sunsu_port *) port;
262
263         __stop_tx(up);
264
265         /*
266          * We really want to stop the transmitter from sending.
267          */
268         if (up->port.type == PORT_16C950) {
269                 up->acr |= UART_ACR_TXDIS;
270                 serial_icr_write(up, UART_ACR, up->acr);
271         }
272 }
273
274 static void sunsu_start_tx(struct uart_port *port)
275 {
276         struct uart_sunsu_port *up = (struct uart_sunsu_port *) port;
277
278         if (!(up->ier & UART_IER_THRI)) {
279                 up->ier |= UART_IER_THRI;
280                 serial_out(up, UART_IER, up->ier);
281         }
282
283         /*
284          * Re-enable the transmitter if we disabled it.
285          */
286         if (up->port.type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
287                 up->acr &= ~UART_ACR_TXDIS;
288                 serial_icr_write(up, UART_ACR, up->acr);
289         }
290 }
291
292 static void sunsu_stop_rx(struct uart_port *port)
293 {
294         struct uart_sunsu_port *up = (struct uart_sunsu_port *) port;
295
296         up->ier &= ~UART_IER_RLSI;
297         up->port.read_status_mask &= ~UART_LSR_DR;
298         serial_out(up, UART_IER, up->ier);
299 }
300
301 static void sunsu_enable_ms(struct uart_port *port)
302 {
303         struct uart_sunsu_port *up = (struct uart_sunsu_port *) port;
304         unsigned long flags;
305
306         spin_lock_irqsave(&up->port.lock, flags);
307         up->ier |= UART_IER_MSI;
308         serial_out(up, UART_IER, up->ier);
309         spin_unlock_irqrestore(&up->port.lock, flags);
310 }
311
312 static struct tty_struct *
313 receive_chars(struct uart_sunsu_port *up, unsigned char *status, struct pt_regs *regs)
314 {
315         struct tty_struct *tty = up->port.info->tty;
316         unsigned char ch, flag;
317         int max_count = 256;
318         int saw_console_brk = 0;
319
320         do {
321                 ch = serial_inp(up, UART_RX);
322                 flag = TTY_NORMAL;
323                 up->port.icount.rx++;
324
325                 if (unlikely(*status & (UART_LSR_BI | UART_LSR_PE |
326                                        UART_LSR_FE | UART_LSR_OE))) {
327                         /*
328                          * For statistics only
329                          */
330                         if (*status & UART_LSR_BI) {
331                                 *status &= ~(UART_LSR_FE | UART_LSR_PE);
332                                 up->port.icount.brk++;
333                                 if (up->port.cons != NULL &&
334                                     up->port.line == up->port.cons->index)
335                                         saw_console_brk = 1;
336                                 /*
337                                  * We do the SysRQ and SAK checking
338                                  * here because otherwise the break
339                                  * may get masked by ignore_status_mask
340                                  * or read_status_mask.
341                                  */
342                                 if (uart_handle_break(&up->port))
343                                         goto ignore_char;
344                         } else if (*status & UART_LSR_PE)
345                                 up->port.icount.parity++;
346                         else if (*status & UART_LSR_FE)
347                                 up->port.icount.frame++;
348                         if (*status & UART_LSR_OE)
349                                 up->port.icount.overrun++;
350
351                         /*
352                          * Mask off conditions which should be ingored.
353                          */
354                         *status &= up->port.read_status_mask;
355
356                         if (up->port.cons != NULL &&
357                             up->port.line == up->port.cons->index) {
358                                 /* Recover the break flag from console xmit */
359                                 *status |= up->lsr_break_flag;
360                                 up->lsr_break_flag = 0;
361                         }
362
363                         if (*status & UART_LSR_BI) {
364                                 flag = TTY_BREAK;
365                         } else if (*status & UART_LSR_PE)
366                                 flag = TTY_PARITY;
367                         else if (*status & UART_LSR_FE)
368                                 flag = TTY_FRAME;
369                 }
370                 if (uart_handle_sysrq_char(&up->port, ch, regs))
371                         goto ignore_char;
372                 if ((*status & up->port.ignore_status_mask) == 0)
373                         tty_insert_flip_char(tty, ch, flag);
374                 if (*status & UART_LSR_OE)
375                         /*
376                          * Overrun is special, since it's reported
377                          * immediately, and doesn't affect the current
378                          * character.
379                          */
380                          tty_insert_flip_char(tty, 0, TTY_OVERRUN);
381         ignore_char:
382                 *status = serial_inp(up, UART_LSR);
383         } while ((*status & UART_LSR_DR) && (max_count-- > 0));
384
385         if (saw_console_brk)
386                 sun_do_break();
387
388         return tty;
389 }
390
391 static void transmit_chars(struct uart_sunsu_port *up)
392 {
393         struct circ_buf *xmit = &up->port.info->xmit;
394         int count;
395
396         if (up->port.x_char) {
397                 serial_outp(up, UART_TX, up->port.x_char);
398                 up->port.icount.tx++;
399                 up->port.x_char = 0;
400                 return;
401         }
402         if (uart_tx_stopped(&up->port)) {
403                 sunsu_stop_tx(&up->port);
404                 return;
405         }
406         if (uart_circ_empty(xmit)) {
407                 __stop_tx(up);
408                 return;
409         }
410
411         count = up->port.fifosize;
412         do {
413                 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
414                 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
415                 up->port.icount.tx++;
416                 if (uart_circ_empty(xmit))
417                         break;
418         } while (--count > 0);
419
420         if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
421                 uart_write_wakeup(&up->port);
422
423         if (uart_circ_empty(xmit))
424                 __stop_tx(up);
425 }
426
427 static void check_modem_status(struct uart_sunsu_port *up)
428 {
429         int status;
430
431         status = serial_in(up, UART_MSR);
432
433         if ((status & UART_MSR_ANY_DELTA) == 0)
434                 return;
435
436         if (status & UART_MSR_TERI)
437                 up->port.icount.rng++;
438         if (status & UART_MSR_DDSR)
439                 up->port.icount.dsr++;
440         if (status & UART_MSR_DDCD)
441                 uart_handle_dcd_change(&up->port, status & UART_MSR_DCD);
442         if (status & UART_MSR_DCTS)
443                 uart_handle_cts_change(&up->port, status & UART_MSR_CTS);
444
445         wake_up_interruptible(&up->port.info->delta_msr_wait);
446 }
447
448 static irqreturn_t sunsu_serial_interrupt(int irq, void *dev_id, struct pt_regs *regs)
449 {
450         struct uart_sunsu_port *up = dev_id;
451         unsigned long flags;
452         unsigned char status;
453
454         spin_lock_irqsave(&up->port.lock, flags);
455
456         do {
457                 struct tty_struct *tty;
458
459                 status = serial_inp(up, UART_LSR);
460                 tty = NULL;
461                 if (status & UART_LSR_DR)
462                         tty = receive_chars(up, &status, regs);
463                 check_modem_status(up);
464                 if (status & UART_LSR_THRE)
465                         transmit_chars(up);
466
467                 spin_unlock_irqrestore(&up->port.lock, flags);
468
469                 if (tty)
470                         tty_flip_buffer_push(tty);
471
472                 spin_lock_irqsave(&up->port.lock, flags);
473
474         } while (!(serial_in(up, UART_IIR) & UART_IIR_NO_INT));
475
476         spin_unlock_irqrestore(&up->port.lock, flags);
477
478         return IRQ_HANDLED;
479 }
480
481 /* Separate interrupt handling path for keyboard/mouse ports.  */
482
483 static void
484 sunsu_change_speed(struct uart_port *port, unsigned int cflag,
485                    unsigned int iflag, unsigned int quot);
486
487 static void sunsu_change_mouse_baud(struct uart_sunsu_port *up)
488 {
489         unsigned int cur_cflag = up->cflag;
490         int quot, new_baud;
491
492         up->cflag &= ~CBAUD;
493         up->cflag |= suncore_mouse_baud_cflag_next(cur_cflag, &new_baud);
494
495         quot = up->port.uartclk / (16 * new_baud);
496
497         sunsu_change_speed(&up->port, up->cflag, 0, quot);
498 }
499
500 static void receive_kbd_ms_chars(struct uart_sunsu_port *up, struct pt_regs *regs, int is_break)
501 {
502         do {
503                 unsigned char ch = serial_inp(up, UART_RX);
504
505                 /* Stop-A is handled by drivers/char/keyboard.c now. */
506                 if (up->su_type == SU_PORT_KBD) {
507 #ifdef CONFIG_SERIO
508                         serio_interrupt(&up->serio, ch, 0, regs);
509 #endif
510                 } else if (up->su_type == SU_PORT_MS) {
511                         int ret = suncore_mouse_baud_detection(ch, is_break);
512
513                         switch (ret) {
514                         case 2:
515                                 sunsu_change_mouse_baud(up);
516                                 /* fallthru */
517                         case 1:
518                                 break;
519
520                         case 0:
521 #ifdef CONFIG_SERIO
522                                 serio_interrupt(&up->serio, ch, 0, regs);
523 #endif
524                                 break;
525                         };
526                 }
527         } while (serial_in(up, UART_LSR) & UART_LSR_DR);
528 }
529
530 static irqreturn_t sunsu_kbd_ms_interrupt(int irq, void *dev_id, struct pt_regs *regs)
531 {
532         struct uart_sunsu_port *up = dev_id;
533
534         if (!(serial_in(up, UART_IIR) & UART_IIR_NO_INT)) {
535                 unsigned char status = serial_inp(up, UART_LSR);
536
537                 if ((status & UART_LSR_DR) || (status & UART_LSR_BI))
538                         receive_kbd_ms_chars(up, regs,
539                                              (status & UART_LSR_BI) != 0);
540         }
541
542         return IRQ_HANDLED;
543 }
544
545 static unsigned int sunsu_tx_empty(struct uart_port *port)
546 {
547         struct uart_sunsu_port *up = (struct uart_sunsu_port *) port;
548         unsigned long flags;
549         unsigned int ret;
550
551         spin_lock_irqsave(&up->port.lock, flags);
552         ret = serial_in(up, UART_LSR) & UART_LSR_TEMT ? TIOCSER_TEMT : 0;
553         spin_unlock_irqrestore(&up->port.lock, flags);
554
555         return ret;
556 }
557
558 static unsigned int sunsu_get_mctrl(struct uart_port *port)
559 {
560         struct uart_sunsu_port *up = (struct uart_sunsu_port *) port;
561         unsigned char status;
562         unsigned int ret;
563
564         status = serial_in(up, UART_MSR);
565
566         ret = 0;
567         if (status & UART_MSR_DCD)
568                 ret |= TIOCM_CAR;
569         if (status & UART_MSR_RI)
570                 ret |= TIOCM_RNG;
571         if (status & UART_MSR_DSR)
572                 ret |= TIOCM_DSR;
573         if (status & UART_MSR_CTS)
574                 ret |= TIOCM_CTS;
575         return ret;
576 }
577
578 static void sunsu_set_mctrl(struct uart_port *port, unsigned int mctrl)
579 {
580         struct uart_sunsu_port *up = (struct uart_sunsu_port *) port;
581         unsigned char mcr = 0;
582
583         if (mctrl & TIOCM_RTS)
584                 mcr |= UART_MCR_RTS;
585         if (mctrl & TIOCM_DTR)
586                 mcr |= UART_MCR_DTR;
587         if (mctrl & TIOCM_OUT1)
588                 mcr |= UART_MCR_OUT1;
589         if (mctrl & TIOCM_OUT2)
590                 mcr |= UART_MCR_OUT2;
591         if (mctrl & TIOCM_LOOP)
592                 mcr |= UART_MCR_LOOP;
593
594         serial_out(up, UART_MCR, mcr);
595 }
596
597 static void sunsu_break_ctl(struct uart_port *port, int break_state)
598 {
599         struct uart_sunsu_port *up = (struct uart_sunsu_port *) port;
600         unsigned long flags;
601
602         spin_lock_irqsave(&up->port.lock, flags);
603         if (break_state == -1)
604                 up->lcr |= UART_LCR_SBC;
605         else
606                 up->lcr &= ~UART_LCR_SBC;
607         serial_out(up, UART_LCR, up->lcr);
608         spin_unlock_irqrestore(&up->port.lock, flags);
609 }
610
611 static int sunsu_startup(struct uart_port *port)
612 {
613         struct uart_sunsu_port *up = (struct uart_sunsu_port *) port;
614         unsigned long flags;
615         int retval;
616
617         if (up->port.type == PORT_16C950) {
618                 /* Wake up and initialize UART */
619                 up->acr = 0;
620                 serial_outp(up, UART_LCR, 0xBF);
621                 serial_outp(up, UART_EFR, UART_EFR_ECB);
622                 serial_outp(up, UART_IER, 0);
623                 serial_outp(up, UART_LCR, 0);
624                 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
625                 serial_outp(up, UART_LCR, 0xBF);
626                 serial_outp(up, UART_EFR, UART_EFR_ECB);
627                 serial_outp(up, UART_LCR, 0);
628         }
629
630 #ifdef CONFIG_SERIAL_8250_RSA
631         /*
632          * If this is an RSA port, see if we can kick it up to the
633          * higher speed clock.
634          */
635         enable_rsa(up);
636 #endif
637
638         /*
639          * Clear the FIFO buffers and disable them.
640          * (they will be reenabled in set_termios())
641          */
642         if (uart_config[up->port.type].flags & UART_CLEAR_FIFO) {
643                 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
644                 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO |
645                                 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
646                 serial_outp(up, UART_FCR, 0);
647         }
648
649         /*
650          * Clear the interrupt registers.
651          */
652         (void) serial_inp(up, UART_LSR);
653         (void) serial_inp(up, UART_RX);
654         (void) serial_inp(up, UART_IIR);
655         (void) serial_inp(up, UART_MSR);
656
657         /*
658          * At this point, there's no way the LSR could still be 0xff;
659          * if it is, then bail out, because there's likely no UART
660          * here.
661          */
662         if (!(up->port.flags & UPF_BUGGY_UART) &&
663             (serial_inp(up, UART_LSR) == 0xff)) {
664                 printk("ttyS%d: LSR safety check engaged!\n", up->port.line);
665                 return -ENODEV;
666         }
667
668         if (up->su_type != SU_PORT_PORT) {
669                 retval = request_irq(up->port.irq, sunsu_kbd_ms_interrupt,
670                                      IRQF_SHARED, su_typev[up->su_type], up);
671         } else {
672                 retval = request_irq(up->port.irq, sunsu_serial_interrupt,
673                                      IRQF_SHARED, su_typev[up->su_type], up);
674         }
675         if (retval) {
676                 printk("su: Cannot register IRQ %d\n", up->port.irq);
677                 return retval;
678         }
679
680         /*
681          * Now, initialize the UART
682          */
683         serial_outp(up, UART_LCR, UART_LCR_WLEN8);
684
685         spin_lock_irqsave(&up->port.lock, flags);
686
687         up->port.mctrl |= TIOCM_OUT2;
688
689         sunsu_set_mctrl(&up->port, up->port.mctrl);
690         spin_unlock_irqrestore(&up->port.lock, flags);
691
692         /*
693          * Finally, enable interrupts.  Note: Modem status interrupts
694          * are set via set_termios(), which will be occurring imminently
695          * anyway, so we don't enable them here.
696          */
697         up->ier = UART_IER_RLSI | UART_IER_RDI;
698         serial_outp(up, UART_IER, up->ier);
699
700         if (up->port.flags & UPF_FOURPORT) {
701                 unsigned int icp;
702                 /*
703                  * Enable interrupts on the AST Fourport board
704                  */
705                 icp = (up->port.iobase & 0xfe0) | 0x01f;
706                 outb_p(0x80, icp);
707                 (void) inb_p(icp);
708         }
709
710         /*
711          * And clear the interrupt registers again for luck.
712          */
713         (void) serial_inp(up, UART_LSR);
714         (void) serial_inp(up, UART_RX);
715         (void) serial_inp(up, UART_IIR);
716         (void) serial_inp(up, UART_MSR);
717
718         return 0;
719 }
720
721 static void sunsu_shutdown(struct uart_port *port)
722 {
723         struct uart_sunsu_port *up = (struct uart_sunsu_port *) port;
724         unsigned long flags;
725
726         /*
727          * Disable interrupts from this port
728          */
729         up->ier = 0;
730         serial_outp(up, UART_IER, 0);
731
732         spin_lock_irqsave(&up->port.lock, flags);
733         if (up->port.flags & UPF_FOURPORT) {
734                 /* reset interrupts on the AST Fourport board */
735                 inb((up->port.iobase & 0xfe0) | 0x1f);
736                 up->port.mctrl |= TIOCM_OUT1;
737         } else
738                 up->port.mctrl &= ~TIOCM_OUT2;
739
740         sunsu_set_mctrl(&up->port, up->port.mctrl);
741         spin_unlock_irqrestore(&up->port.lock, flags);
742
743         /*
744          * Disable break condition and FIFOs
745          */
746         serial_out(up, UART_LCR, serial_inp(up, UART_LCR) & ~UART_LCR_SBC);
747         serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO |
748                                   UART_FCR_CLEAR_RCVR |
749                                   UART_FCR_CLEAR_XMIT);
750         serial_outp(up, UART_FCR, 0);
751
752 #ifdef CONFIG_SERIAL_8250_RSA
753         /*
754          * Reset the RSA board back to 115kbps compat mode.
755          */
756         disable_rsa(up);
757 #endif
758
759         /*
760          * Read data port to reset things.
761          */
762         (void) serial_in(up, UART_RX);
763
764         free_irq(up->port.irq, up);
765 }
766
767 static void
768 sunsu_change_speed(struct uart_port *port, unsigned int cflag,
769                    unsigned int iflag, unsigned int quot)
770 {
771         struct uart_sunsu_port *up = (struct uart_sunsu_port *) port;
772         unsigned char cval, fcr = 0;
773         unsigned long flags;
774
775         switch (cflag & CSIZE) {
776         case CS5:
777                 cval = 0x00;
778                 break;
779         case CS6:
780                 cval = 0x01;
781                 break;
782         case CS7:
783                 cval = 0x02;
784                 break;
785         default:
786         case CS8:
787                 cval = 0x03;
788                 break;
789         }
790
791         if (cflag & CSTOPB)
792                 cval |= 0x04;
793         if (cflag & PARENB)
794                 cval |= UART_LCR_PARITY;
795         if (!(cflag & PARODD))
796                 cval |= UART_LCR_EPAR;
797 #ifdef CMSPAR
798         if (cflag & CMSPAR)
799                 cval |= UART_LCR_SPAR;
800 #endif
801
802         /*
803          * Work around a bug in the Oxford Semiconductor 952 rev B
804          * chip which causes it to seriously miscalculate baud rates
805          * when DLL is 0.
806          */
807         if ((quot & 0xff) == 0 && up->port.type == PORT_16C950 &&
808             up->rev == 0x5201)
809                 quot ++;
810
811         if (uart_config[up->port.type].flags & UART_USE_FIFO) {
812                 if ((up->port.uartclk / quot) < (2400 * 16))
813                         fcr = UART_FCR_ENABLE_FIFO | UART_FCR_TRIGGER_1;
814 #ifdef CONFIG_SERIAL_8250_RSA
815                 else if (up->port.type == PORT_RSA)
816                         fcr = UART_FCR_ENABLE_FIFO | UART_FCR_TRIGGER_14;
817 #endif
818                 else
819                         fcr = UART_FCR_ENABLE_FIFO | UART_FCR_TRIGGER_8;
820         }
821         if (up->port.type == PORT_16750)
822                 fcr |= UART_FCR7_64BYTE;
823
824         /*
825          * Ok, we're now changing the port state.  Do it with
826          * interrupts disabled.
827          */
828         spin_lock_irqsave(&up->port.lock, flags);
829
830         /*
831          * Update the per-port timeout.
832          */
833         uart_update_timeout(port, cflag, (port->uartclk / (16 * quot)));
834
835         up->port.read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
836         if (iflag & INPCK)
837                 up->port.read_status_mask |= UART_LSR_FE | UART_LSR_PE;
838         if (iflag & (BRKINT | PARMRK))
839                 up->port.read_status_mask |= UART_LSR_BI;
840
841         /*
842          * Characteres to ignore
843          */
844         up->port.ignore_status_mask = 0;
845         if (iflag & IGNPAR)
846                 up->port.ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
847         if (iflag & IGNBRK) {
848                 up->port.ignore_status_mask |= UART_LSR_BI;
849                 /*
850                  * If we're ignoring parity and break indicators,
851                  * ignore overruns too (for real raw support).
852                  */
853                 if (iflag & IGNPAR)
854                         up->port.ignore_status_mask |= UART_LSR_OE;
855         }
856
857         /*
858          * ignore all characters if CREAD is not set
859          */
860         if ((cflag & CREAD) == 0)
861                 up->port.ignore_status_mask |= UART_LSR_DR;
862
863         /*
864          * CTS flow control flag and modem status interrupts
865          */
866         up->ier &= ~UART_IER_MSI;
867         if (UART_ENABLE_MS(&up->port, cflag))
868                 up->ier |= UART_IER_MSI;
869
870         serial_out(up, UART_IER, up->ier);
871
872         if (uart_config[up->port.type].flags & UART_STARTECH) {
873                 serial_outp(up, UART_LCR, 0xBF);
874                 serial_outp(up, UART_EFR, cflag & CRTSCTS ? UART_EFR_CTS :0);
875         }
876         serial_outp(up, UART_LCR, cval | UART_LCR_DLAB);/* set DLAB */
877         serial_outp(up, UART_DLL, quot & 0xff);         /* LS of divisor */
878         serial_outp(up, UART_DLM, quot >> 8);           /* MS of divisor */
879         if (up->port.type == PORT_16750)
880                 serial_outp(up, UART_FCR, fcr);         /* set fcr */
881         serial_outp(up, UART_LCR, cval);                /* reset DLAB */
882         up->lcr = cval;                                 /* Save LCR */
883         if (up->port.type != PORT_16750) {
884                 if (fcr & UART_FCR_ENABLE_FIFO) {
885                         /* emulated UARTs (Lucent Venus 167x) need two steps */
886                         serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
887                 }
888                 serial_outp(up, UART_FCR, fcr);         /* set fcr */
889         }
890
891         up->cflag = cflag;
892
893         spin_unlock_irqrestore(&up->port.lock, flags);
894 }
895
896 static void
897 sunsu_set_termios(struct uart_port *port, struct termios *termios,
898                   struct termios *old)
899 {
900         unsigned int baud, quot;
901
902         /*
903          * Ask the core to calculate the divisor for us.
904          */
905         baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16); 
906         quot = uart_get_divisor(port, baud);
907
908         sunsu_change_speed(port, termios->c_cflag, termios->c_iflag, quot);
909 }
910
911 static void sunsu_release_port(struct uart_port *port)
912 {
913 }
914
915 static int sunsu_request_port(struct uart_port *port)
916 {
917         return 0;
918 }
919
920 static void sunsu_config_port(struct uart_port *port, int flags)
921 {
922         struct uart_sunsu_port *up = (struct uart_sunsu_port *) port;
923
924         if (flags & UART_CONFIG_TYPE) {
925                 /*
926                  * We are supposed to call autoconfig here, but this requires
927                  * splitting all the OBP probing crap from the UART probing.
928                  * We'll do it when we kill sunsu.c altogether.
929                  */
930                 port->type = up->type_probed;   /* XXX */
931         }
932 }
933
934 static int
935 sunsu_verify_port(struct uart_port *port, struct serial_struct *ser)
936 {
937         return -EINVAL;
938 }
939
940 static const char *
941 sunsu_type(struct uart_port *port)
942 {
943         int type = port->type;
944
945         if (type >= ARRAY_SIZE(uart_config))
946                 type = 0;
947         return uart_config[type].name;
948 }
949
950 static struct uart_ops sunsu_pops = {
951         .tx_empty       = sunsu_tx_empty,
952         .set_mctrl      = sunsu_set_mctrl,
953         .get_mctrl      = sunsu_get_mctrl,
954         .stop_tx        = sunsu_stop_tx,
955         .start_tx       = sunsu_start_tx,
956         .stop_rx        = sunsu_stop_rx,
957         .enable_ms      = sunsu_enable_ms,
958         .break_ctl      = sunsu_break_ctl,
959         .startup        = sunsu_startup,
960         .shutdown       = sunsu_shutdown,
961         .set_termios    = sunsu_set_termios,
962         .type           = sunsu_type,
963         .release_port   = sunsu_release_port,
964         .request_port   = sunsu_request_port,
965         .config_port    = sunsu_config_port,
966         .verify_port    = sunsu_verify_port,
967 };
968
969 #define UART_NR 4
970
971 static struct uart_sunsu_port sunsu_ports[UART_NR];
972
973 #ifdef CONFIG_SERIO
974
975 static DEFINE_SPINLOCK(sunsu_serio_lock);
976
977 static int sunsu_serio_write(struct serio *serio, unsigned char ch)
978 {
979         struct uart_sunsu_port *up = serio->port_data;
980         unsigned long flags;
981         int lsr;
982
983         spin_lock_irqsave(&sunsu_serio_lock, flags);
984
985         do {
986                 lsr = serial_in(up, UART_LSR);
987         } while (!(lsr & UART_LSR_THRE));
988
989         /* Send the character out. */
990         serial_out(up, UART_TX, ch);
991
992         spin_unlock_irqrestore(&sunsu_serio_lock, flags);
993
994         return 0;
995 }
996
997 static int sunsu_serio_open(struct serio *serio)
998 {
999         struct uart_sunsu_port *up = serio->port_data;
1000         unsigned long flags;
1001         int ret;
1002
1003         spin_lock_irqsave(&sunsu_serio_lock, flags);
1004         if (!up->serio_open) {
1005                 up->serio_open = 1;
1006                 ret = 0;
1007         } else
1008                 ret = -EBUSY;
1009         spin_unlock_irqrestore(&sunsu_serio_lock, flags);
1010
1011         return ret;
1012 }
1013
1014 static void sunsu_serio_close(struct serio *serio)
1015 {
1016         struct uart_sunsu_port *up = serio->port_data;
1017         unsigned long flags;
1018
1019         spin_lock_irqsave(&sunsu_serio_lock, flags);
1020         up->serio_open = 0;
1021         spin_unlock_irqrestore(&sunsu_serio_lock, flags);
1022 }
1023
1024 #endif /* CONFIG_SERIO */
1025
1026 static void sunsu_autoconfig(struct uart_sunsu_port *up)
1027 {
1028         unsigned char status1, status2, scratch, scratch2, scratch3;
1029         unsigned char save_lcr, save_mcr;
1030         unsigned long flags;
1031
1032         if (up->su_type == SU_PORT_NONE)
1033                 return;
1034
1035         up->type_probed = PORT_UNKNOWN;
1036         up->port.iotype = UPIO_MEM;
1037
1038         spin_lock_irqsave(&up->port.lock, flags);
1039
1040         if (!(up->port.flags & UPF_BUGGY_UART)) {
1041                 /*
1042                  * Do a simple existence test first; if we fail this, there's
1043                  * no point trying anything else.
1044                  *
1045                  * 0x80 is used as a nonsense port to prevent against false
1046                  * positives due to ISA bus float.  The assumption is that
1047                  * 0x80 is a non-existent port; which should be safe since
1048                  * include/asm/io.h also makes this assumption.
1049                  */
1050                 scratch = serial_inp(up, UART_IER);
1051                 serial_outp(up, UART_IER, 0);
1052 #ifdef __i386__
1053                 outb(0xff, 0x080);
1054 #endif
1055                 scratch2 = serial_inp(up, UART_IER);
1056                 serial_outp(up, UART_IER, 0x0f);
1057 #ifdef __i386__
1058                 outb(0, 0x080);
1059 #endif
1060                 scratch3 = serial_inp(up, UART_IER);
1061                 serial_outp(up, UART_IER, scratch);
1062                 if (scratch2 != 0 || scratch3 != 0x0F)
1063                         goto out;       /* We failed; there's nothing here */
1064         }
1065
1066         save_mcr = serial_in(up, UART_MCR);
1067         save_lcr = serial_in(up, UART_LCR);
1068
1069         /* 
1070          * Check to see if a UART is really there.  Certain broken
1071          * internal modems based on the Rockwell chipset fail this
1072          * test, because they apparently don't implement the loopback
1073          * test mode.  So this test is skipped on the COM 1 through
1074          * COM 4 ports.  This *should* be safe, since no board
1075          * manufacturer would be stupid enough to design a board
1076          * that conflicts with COM 1-4 --- we hope!
1077          */
1078         if (!(up->port.flags & UPF_SKIP_TEST)) {
1079                 serial_outp(up, UART_MCR, UART_MCR_LOOP | 0x0A);
1080                 status1 = serial_inp(up, UART_MSR) & 0xF0;
1081                 serial_outp(up, UART_MCR, save_mcr);
1082                 if (status1 != 0x90)
1083                         goto out;       /* We failed loopback test */
1084         }
1085         serial_outp(up, UART_LCR, 0xBF);        /* set up for StarTech test */
1086         serial_outp(up, UART_EFR, 0);           /* EFR is the same as FCR */
1087         serial_outp(up, UART_LCR, 0);
1088         serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1089         scratch = serial_in(up, UART_IIR) >> 6;
1090         switch (scratch) {
1091                 case 0:
1092                         up->port.type = PORT_16450;
1093                         break;
1094                 case 1:
1095                         up->port.type = PORT_UNKNOWN;
1096                         break;
1097                 case 2:
1098                         up->port.type = PORT_16550;
1099                         break;
1100                 case 3:
1101                         up->port.type = PORT_16550A;
1102                         break;
1103         }
1104         if (up->port.type == PORT_16550A) {
1105                 /* Check for Startech UART's */
1106                 serial_outp(up, UART_LCR, UART_LCR_DLAB);
1107                 if (serial_in(up, UART_EFR) == 0) {
1108                         up->port.type = PORT_16650;
1109                 } else {
1110                         serial_outp(up, UART_LCR, 0xBF);
1111                         if (serial_in(up, UART_EFR) == 0)
1112                                 up->port.type = PORT_16650V2;
1113                 }
1114         }
1115         if (up->port.type == PORT_16550A) {
1116                 /* Check for TI 16750 */
1117                 serial_outp(up, UART_LCR, save_lcr | UART_LCR_DLAB);
1118                 serial_outp(up, UART_FCR,
1119                             UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1120                 scratch = serial_in(up, UART_IIR) >> 5;
1121                 if (scratch == 7) {
1122                         /*
1123                          * If this is a 16750, and not a cheap UART
1124                          * clone, then it should only go into 64 byte
1125                          * mode if the UART_FCR7_64BYTE bit was set
1126                          * while UART_LCR_DLAB was latched.
1127                          */
1128                         serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1129                         serial_outp(up, UART_LCR, 0);
1130                         serial_outp(up, UART_FCR,
1131                                     UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1132                         scratch = serial_in(up, UART_IIR) >> 5;
1133                         if (scratch == 6)
1134                                 up->port.type = PORT_16750;
1135                 }
1136                 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1137         }
1138         serial_outp(up, UART_LCR, save_lcr);
1139         if (up->port.type == PORT_16450) {
1140                 scratch = serial_in(up, UART_SCR);
1141                 serial_outp(up, UART_SCR, 0xa5);
1142                 status1 = serial_in(up, UART_SCR);
1143                 serial_outp(up, UART_SCR, 0x5a);
1144                 status2 = serial_in(up, UART_SCR);
1145                 serial_outp(up, UART_SCR, scratch);
1146
1147                 if ((status1 != 0xa5) || (status2 != 0x5a))
1148                         up->port.type = PORT_8250;
1149         }
1150
1151         up->port.fifosize = uart_config[up->port.type].dfl_xmit_fifo_size;
1152
1153         if (up->port.type == PORT_UNKNOWN)
1154                 goto out;
1155         up->type_probed = up->port.type;        /* XXX */
1156
1157         /*
1158          * Reset the UART.
1159          */
1160 #ifdef CONFIG_SERIAL_8250_RSA
1161         if (up->port.type == PORT_RSA)
1162                 serial_outp(up, UART_RSA_FRR, 0);
1163 #endif
1164         serial_outp(up, UART_MCR, save_mcr);
1165         serial_outp(up, UART_FCR, (UART_FCR_ENABLE_FIFO |
1166                                      UART_FCR_CLEAR_RCVR |
1167                                      UART_FCR_CLEAR_XMIT));
1168         serial_outp(up, UART_FCR, 0);
1169         (void)serial_in(up, UART_RX);
1170         serial_outp(up, UART_IER, 0);
1171
1172 out:
1173         spin_unlock_irqrestore(&up->port.lock, flags);
1174 }
1175
1176 static struct uart_driver sunsu_reg = {
1177         .owner                  = THIS_MODULE,
1178         .driver_name            = "serial",
1179         .dev_name               = "ttyS",
1180         .major                  = TTY_MAJOR,
1181 };
1182
1183 static int __init sunsu_kbd_ms_init(struct uart_sunsu_port *up)
1184 {
1185         int quot, baud;
1186 #ifdef CONFIG_SERIO
1187         struct serio *serio;
1188 #endif
1189
1190         if (up->su_type == SU_PORT_KBD) {
1191                 up->cflag = B1200 | CS8 | CLOCAL | CREAD;
1192                 baud = 1200;
1193         } else {
1194                 up->cflag = B4800 | CS8 | CLOCAL | CREAD;
1195                 baud = 4800;
1196         }
1197         quot = up->port.uartclk / (16 * baud);
1198
1199         sunsu_autoconfig(up);
1200         if (up->port.type == PORT_UNKNOWN)
1201                 return -ENODEV;
1202
1203 #ifdef CONFIG_SERIO
1204         serio = &up->serio;
1205         serio->port_data = up;
1206
1207         serio->id.type = SERIO_RS232;
1208         if (up->su_type == SU_PORT_KBD) {
1209                 serio->id.proto = SERIO_SUNKBD;
1210                 strlcpy(serio->name, "sukbd", sizeof(serio->name));
1211         } else {
1212                 serio->id.proto = SERIO_SUN;
1213                 serio->id.extra = 1;
1214                 strlcpy(serio->name, "sums", sizeof(serio->name));
1215         }
1216         strlcpy(serio->phys,
1217                 (!(up->port.line & 1) ? "su/serio0" : "su/serio1"),
1218                 sizeof(serio->phys));
1219
1220         serio->write = sunsu_serio_write;
1221         serio->open = sunsu_serio_open;
1222         serio->close = sunsu_serio_close;
1223         serio->dev.parent = up->port.dev;
1224
1225         serio_register_port(serio);
1226 #endif
1227
1228         sunsu_change_speed(&up->port, up->cflag, 0, quot);
1229
1230         sunsu_startup(&up->port);
1231         return 0;
1232 }
1233
1234 /*
1235  * ------------------------------------------------------------
1236  * Serial console driver
1237  * ------------------------------------------------------------
1238  */
1239
1240 #ifdef CONFIG_SERIAL_SUNSU_CONSOLE
1241
1242 #define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
1243
1244 /*
1245  *      Wait for transmitter & holding register to empty
1246  */
1247 static __inline__ void wait_for_xmitr(struct uart_sunsu_port *up)
1248 {
1249         unsigned int status, tmout = 10000;
1250
1251         /* Wait up to 10ms for the character(s) to be sent. */
1252         do {
1253                 status = serial_in(up, UART_LSR);
1254
1255                 if (status & UART_LSR_BI)
1256                         up->lsr_break_flag = UART_LSR_BI;
1257
1258                 if (--tmout == 0)
1259                         break;
1260                 udelay(1);
1261         } while ((status & BOTH_EMPTY) != BOTH_EMPTY);
1262
1263         /* Wait up to 1s for flow control if necessary */
1264         if (up->port.flags & UPF_CONS_FLOW) {
1265                 tmout = 1000000;
1266                 while (--tmout &&
1267                        ((serial_in(up, UART_MSR) & UART_MSR_CTS) == 0))
1268                         udelay(1);
1269         }
1270 }
1271
1272 static void sunsu_console_putchar(struct uart_port *port, int ch)
1273 {
1274         struct uart_sunsu_port *up = (struct uart_sunsu_port *)port;
1275
1276         wait_for_xmitr(up);
1277         serial_out(up, UART_TX, ch);
1278 }
1279
1280 /*
1281  *      Print a string to the serial port trying not to disturb
1282  *      any possible real use of the port...
1283  */
1284 static void sunsu_console_write(struct console *co, const char *s,
1285                                 unsigned int count)
1286 {
1287         struct uart_sunsu_port *up = &sunsu_ports[co->index];
1288         unsigned int ier;
1289
1290         /*
1291          *      First save the UER then disable the interrupts
1292          */
1293         ier = serial_in(up, UART_IER);
1294         serial_out(up, UART_IER, 0);
1295
1296         uart_console_write(&up->port, s, count, sunsu_console_putchar);
1297
1298         /*
1299          *      Finally, wait for transmitter to become empty
1300          *      and restore the IER
1301          */
1302         wait_for_xmitr(up);
1303         serial_out(up, UART_IER, ier);
1304 }
1305
1306 /*
1307  *      Setup initial baud/bits/parity. We do two things here:
1308  *      - construct a cflag setting for the first su_open()
1309  *      - initialize the serial port
1310  *      Return non-zero if we didn't find a serial port.
1311  */
1312 static int sunsu_console_setup(struct console *co, char *options)
1313 {
1314         struct uart_port *port;
1315         int baud = 9600;
1316         int bits = 8;
1317         int parity = 'n';
1318         int flow = 'n';
1319
1320         printk("Console: ttyS%d (SU)\n",
1321                (sunsu_reg.minor - 64) + co->index);
1322
1323         /*
1324          * Check whether an invalid uart number has been specified, and
1325          * if so, search for the first available port that does have
1326          * console support.
1327          */
1328         if (co->index >= UART_NR)
1329                 co->index = 0;
1330         port = &sunsu_ports[co->index].port;
1331
1332         /*
1333          * Temporary fix.
1334          */
1335         spin_lock_init(&port->lock);
1336
1337         if (options)
1338                 uart_parse_options(options, &baud, &parity, &bits, &flow);
1339
1340         return uart_set_options(port, co, baud, parity, bits, flow);
1341 }
1342
1343 static struct console sunsu_cons = {
1344         .name   =       "ttyS",
1345         .write  =       sunsu_console_write,
1346         .device =       uart_console_device,
1347         .setup  =       sunsu_console_setup,
1348         .flags  =       CON_PRINTBUFFER,
1349         .index  =       -1,
1350         .data   =       &sunsu_reg,
1351 };
1352
1353 /*
1354  *      Register console.
1355  */
1356
1357 static inline struct console *SUNSU_CONSOLE(int num_uart)
1358 {
1359         int i;
1360
1361         if (con_is_present())
1362                 return NULL;
1363
1364         for (i = 0; i < num_uart; i++) {
1365                 int this_minor = sunsu_reg.minor + i;
1366
1367                 if ((this_minor - 64) == (serial_console - 1))
1368                         break;
1369         }
1370         if (i == num_uart)
1371                 return NULL;
1372
1373         sunsu_cons.index = i;
1374
1375         return &sunsu_cons;
1376 }
1377 #else
1378 #define SUNSU_CONSOLE(num_uart)         (NULL)
1379 #define sunsu_serial_console_init()     do { } while (0)
1380 #endif
1381
1382 static enum su_type __devinit su_get_type(struct device_node *dp)
1383 {
1384         struct device_node *ap = of_find_node_by_path("/aliases");
1385
1386         if (ap) {
1387                 char *keyb = of_get_property(ap, "keyboard", NULL);
1388                 char *ms = of_get_property(ap, "mouse", NULL);
1389
1390                 if (keyb) {
1391                         if (dp == of_find_node_by_path(keyb))
1392                                 return SU_PORT_KBD;
1393                 }
1394                 if (ms) {
1395                         if (dp == of_find_node_by_path(ms))
1396                                 return SU_PORT_MS;
1397                 }
1398         }
1399
1400         return SU_PORT_PORT;
1401 }
1402
1403 static int __devinit su_probe(struct of_device *op, const struct of_device_id *match)
1404 {
1405         static int inst;
1406         struct device_node *dp = op->node;
1407         struct uart_sunsu_port *up;
1408         struct resource *rp;
1409         int err;
1410
1411         if (inst >= UART_NR)
1412                 return -EINVAL;
1413
1414         up = &sunsu_ports[inst];
1415         up->port.line = inst;
1416
1417         spin_lock_init(&up->port.lock);
1418
1419         up->su_type = su_get_type(dp);
1420
1421         rp = &op->resource[0];
1422         up->port.mapbase = op->resource[0].start;
1423
1424         up->reg_size = (rp->end - rp->start) + 1;
1425         up->port.membase = of_ioremap(rp, 0, up->reg_size, "su");
1426         if (!up->port.membase)
1427                 return -ENOMEM;
1428
1429         up->port.irq = op->irqs[0];
1430
1431         up->port.dev = &op->dev;
1432
1433         up->port.type = PORT_UNKNOWN;
1434         up->port.uartclk = (SU_BASE_BAUD * 16);
1435
1436         err = 0;
1437         if (up->su_type == SU_PORT_KBD || up->su_type == SU_PORT_MS) {
1438                 err = sunsu_kbd_ms_init(up);
1439                 if (err)
1440                         goto out_unmap;
1441
1442                 return 0;
1443         }
1444
1445         up->port.flags |= UPF_BOOT_AUTOCONF;
1446
1447         sunsu_autoconfig(up);
1448
1449         err = -ENODEV;
1450         if (up->port.type == PORT_UNKNOWN)
1451                 goto out_unmap;
1452
1453         up->port.ops = &sunsu_pops;
1454
1455         err = uart_add_one_port(&sunsu_reg, &up->port);
1456         if (err)
1457                 goto out_unmap;
1458
1459         dev_set_drvdata(&op->dev, up);
1460
1461         inst++;
1462
1463         return 0;
1464
1465 out_unmap:
1466         of_iounmap(up->port.membase, up->reg_size);
1467         return err;
1468 }
1469
1470 static int __devexit su_remove(struct of_device *dev)
1471 {
1472         struct uart_sunsu_port *up = dev_get_drvdata(&dev->dev);;
1473
1474         if (up->su_type == SU_PORT_MS ||
1475             up->su_type == SU_PORT_KBD) {
1476 #ifdef CONFIG_SERIO
1477                 serio_unregister_port(&up->serio);
1478 #endif
1479         } else if (up->port.type != PORT_UNKNOWN)
1480                 uart_remove_one_port(&sunsu_reg, &up->port);
1481
1482         return 0;
1483 }
1484
1485 static struct of_device_id su_match[] = {
1486         {
1487                 .name = "su",
1488         },
1489         {
1490                 .name = "su_pnp",
1491         },
1492         {
1493                 .name = "serial",
1494                 .compatible = "su",
1495         },
1496         {},
1497 };
1498 MODULE_DEVICE_TABLE(of, su_match);
1499
1500 static struct of_platform_driver su_driver = {
1501         .name           = "su",
1502         .match_table    = su_match,
1503         .probe          = su_probe,
1504         .remove         = __devexit_p(su_remove),
1505 };
1506
1507 static int num_uart;
1508
1509 static int __init sunsu_init(void)
1510 {
1511         struct device_node *dp;
1512         int err;
1513
1514         num_uart = 0;
1515         for_each_node_by_name(dp, "su") {
1516                 if (su_get_type(dp) == SU_PORT_PORT)
1517                         num_uart++;
1518         }
1519         for_each_node_by_name(dp, "su_pnp") {
1520                 if (su_get_type(dp) == SU_PORT_PORT)
1521                         num_uart++;
1522         }
1523         for_each_node_by_name(dp, "serial") {
1524                 if (of_device_is_compatible(dp, "su")) {
1525                         if (su_get_type(dp) == SU_PORT_PORT)
1526                                 num_uart++;
1527                 }
1528         }
1529
1530         if (num_uart) {
1531                 sunsu_reg.minor = sunserial_current_minor;
1532                 sunsu_reg.nr = num_uart;
1533                 err = uart_register_driver(&sunsu_reg);
1534                 if (err)
1535                         return err;
1536                 sunsu_reg.tty_driver->name_base = sunsu_reg.minor - 64;
1537                 sunserial_current_minor += num_uart;
1538                 sunsu_reg.cons = SUNSU_CONSOLE(num_uart);
1539         }
1540
1541         err = of_register_driver(&su_driver, &of_bus_type);
1542         if (err && num_uart)
1543                 uart_unregister_driver(&sunsu_reg);
1544
1545         return err;
1546 }
1547
1548 static void __exit sunsu_exit(void)
1549 {
1550         if (num_uart)
1551                 uart_unregister_driver(&sunsu_reg);
1552 }
1553
1554 module_init(sunsu_init);
1555 module_exit(sunsu_exit);
1556
1557 MODULE_AUTHOR("Eddie C. Dost, Peter Zaitcev, and David S. Miller");
1558 MODULE_DESCRIPTION("Sun SU serial port driver");
1559 MODULE_VERSION("2.0");
1560 MODULE_LICENSE("GPL");