ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / drivers / serial / pxa.c
1 /*
2  *  linux/drivers/serial/pxa.c
3  *
4  *  Based on drivers/serial/8250.c by Russell King.
5  *
6  *  Author:     Nicolas Pitre
7  *  Created:    Feb 20, 2003
8  *  Copyright:  (C) 2003 Monta Vista Software, Inc.
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * Note 1: This driver is made separate from the already too overloaded
16  * 8250.c because it needs some kirks of its own and that'll make it
17  * easier to add DMA support.
18  *
19  * Note 2: I'm too sick of device allocation policies for serial ports.
20  * If someone else wants to request an "official" allocation of major/minor
21  * for this driver please be my guest.  And don't forget that new hardware
22  * to come from Intel might have more than 3 or 4 of those UARTs.  Let's
23  * hope for a better port registration and dynamic device allocation scheme
24  * with the serial core maintainer satisfaction to appear soon.
25  */
26
27 #include <linux/config.h>
28 #include <linux/module.h>
29 #include <linux/tty.h>
30 #include <linux/ioport.h>
31 #include <linux/init.h>
32 #include <linux/console.h>
33 #include <linux/sysrq.h>
34 #include <linux/serial_reg.h>
35 #include <linux/circ_buf.h>
36 #include <linux/serial.h>
37 #include <linux/delay.h>
38 #include <linux/interrupt.h>
39
40 #include <asm/io.h>
41 #include <asm/hardware.h>
42 #include <asm/irq.h>
43
44 #if defined(CONFIG_SERIAL_PXA_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
45 #define SUPPORT_SYSRQ
46 #endif
47
48 #include <linux/serial_core.h>
49
50
51 struct uart_pxa_port {
52         struct uart_port        port;
53         unsigned char           ier;
54         unsigned char           lcr;
55         unsigned char           mcr;
56         unsigned int            lsr_break_flag;
57         unsigned int            cken;
58         char                    *name;
59 };
60
61 static inline unsigned int serial_in(struct uart_pxa_port *up, int offset)
62 {
63         offset <<= 2;
64         return readl(up->port.membase + offset);
65 }
66
67 static inline void serial_out(struct uart_pxa_port *up, int offset, int value)
68 {
69         offset <<= 2;
70         writel(value, up->port.membase + offset);
71 }
72
73 static void serial_pxa_enable_ms(struct uart_port *port)
74 {
75         struct uart_pxa_port *up = (struct uart_pxa_port *)port;
76
77         up->ier |= UART_IER_MSI;
78         serial_out(up, UART_IER, up->ier);
79 }
80
81 static void serial_pxa_stop_tx(struct uart_port *port, unsigned int tty_stop)
82 {
83         struct uart_pxa_port *up = (struct uart_pxa_port *)port;
84
85         if (up->ier & UART_IER_THRI) {
86                 up->ier &= ~UART_IER_THRI;
87                 serial_out(up, UART_IER, up->ier);
88         }
89 }
90
91 static void serial_pxa_stop_rx(struct uart_port *port)
92 {
93         struct uart_pxa_port *up = (struct uart_pxa_port *)port;
94
95         up->ier &= ~UART_IER_RLSI;
96         up->port.read_status_mask &= ~UART_LSR_DR;
97         serial_out(up, UART_IER, up->ier);
98 }
99
100 static inline void
101 receive_chars(struct uart_pxa_port *up, int *status, struct pt_regs *regs)
102 {
103         struct tty_struct *tty = up->port.info->tty;
104         unsigned char ch;
105         int max_count = 256;
106
107         do {
108                 if (unlikely(tty->flip.count >= TTY_FLIPBUF_SIZE)) {
109                         /*
110                          * FIXME: Deadlock can happen here if we're a
111                          * low-latency port.  We're holding the per-port
112                          * spinlock, and we call flush_to_ldisc->
113                          * n_tty_receive_buf->n_tty_receive_char->
114                          * opost->uart_put_char.
115                          */
116                         tty->flip.work.func((void *)tty);
117                         if (tty->flip.count >= TTY_FLIPBUF_SIZE)
118                                 return; // if TTY_DONT_FLIP is set
119                 }
120                 ch = serial_in(up, UART_RX);
121                 *tty->flip.char_buf_ptr = ch;
122                 *tty->flip.flag_buf_ptr = TTY_NORMAL;
123                 up->port.icount.rx++;
124
125                 if (unlikely(*status & (UART_LSR_BI | UART_LSR_PE |
126                                        UART_LSR_FE | UART_LSR_OE))) {
127                         /*
128                          * For statistics only
129                          */
130                         if (*status & UART_LSR_BI) {
131                                 *status &= ~(UART_LSR_FE | UART_LSR_PE);
132                                 up->port.icount.brk++;
133                                 /*
134                                  * We do the SysRQ and SAK checking
135                                  * here because otherwise the break
136                                  * may get masked by ignore_status_mask
137                                  * or read_status_mask.
138                                  */
139                                 if (uart_handle_break(&up->port))
140                                         goto ignore_char;
141                         } else if (*status & UART_LSR_PE)
142                                 up->port.icount.parity++;
143                         else if (*status & UART_LSR_FE)
144                                 up->port.icount.frame++;
145                         if (*status & UART_LSR_OE)
146                                 up->port.icount.overrun++;
147
148                         /*
149                          * Mask off conditions which should be ignored.
150                          */
151                         *status &= up->port.read_status_mask;
152
153 #ifdef CONFIG_SERIAL_PXA_CONSOLE
154                         if (up->port.line == up->port.cons->index) {
155                                 /* Recover the break flag from console xmit */
156                                 *status |= up->lsr_break_flag;
157                                 up->lsr_break_flag = 0;
158                         }
159 #endif
160                         if (*status & UART_LSR_BI) {
161                                 *tty->flip.flag_buf_ptr = TTY_BREAK;
162                         } else if (*status & UART_LSR_PE)
163                                 *tty->flip.flag_buf_ptr = TTY_PARITY;
164                         else if (*status & UART_LSR_FE)
165                                 *tty->flip.flag_buf_ptr = TTY_FRAME;
166                 }
167                 if (uart_handle_sysrq_char(&up->port, ch, regs))
168                         goto ignore_char;
169                 if ((*status & up->port.ignore_status_mask) == 0) {
170                         tty->flip.flag_buf_ptr++;
171                         tty->flip.char_buf_ptr++;
172                         tty->flip.count++;
173                 }
174                 if ((*status & UART_LSR_OE) &&
175                     tty->flip.count < TTY_FLIPBUF_SIZE) {
176                         /*
177                          * Overrun is special, since it's reported
178                          * immediately, and doesn't affect the current
179                          * character.
180                          */
181                         *tty->flip.flag_buf_ptr = TTY_OVERRUN;
182                         tty->flip.flag_buf_ptr++;
183                         tty->flip.char_buf_ptr++;
184                         tty->flip.count++;
185                 }
186         ignore_char:
187                 *status = serial_in(up, UART_LSR);
188         } while ((*status & UART_LSR_DR) && (max_count-- > 0));
189         tty_flip_buffer_push(tty);
190 }
191
192 static void transmit_chars(struct uart_pxa_port *up)
193 {
194         struct circ_buf *xmit = &up->port.info->xmit;
195         int count;
196
197         if (up->port.x_char) {
198                 serial_out(up, UART_TX, up->port.x_char);
199                 up->port.icount.tx++;
200                 up->port.x_char = 0;
201                 return;
202         }
203         if (uart_circ_empty(xmit) || uart_tx_stopped(&up->port)) {
204                 serial_pxa_stop_tx(&up->port, 0);
205                 return;
206         }
207
208         count = up->port.fifosize / 2;
209         do {
210                 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
211                 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
212                 up->port.icount.tx++;
213                 if (uart_circ_empty(xmit))
214                         break;
215         } while (--count > 0);
216
217         if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
218                 uart_write_wakeup(&up->port);
219
220
221         if (uart_circ_empty(xmit))
222                 serial_pxa_stop_tx(&up->port, 0);
223 }
224
225 static void serial_pxa_start_tx(struct uart_port *port, unsigned int tty_start)
226 {
227         struct uart_pxa_port *up = (struct uart_pxa_port *)port;
228
229         if (!(up->ier & UART_IER_THRI)) {
230                 up->ier |= UART_IER_THRI;
231                 serial_out(up, UART_IER, up->ier);
232         }
233 }
234
235 static inline void check_modem_status(struct uart_pxa_port *up)
236 {
237         int status;
238
239         status = serial_in(up, UART_MSR);
240
241         if ((status & UART_MSR_ANY_DELTA) == 0)
242                 return;
243
244         if (status & UART_MSR_TERI)
245                 up->port.icount.rng++;
246         if (status & UART_MSR_DDSR)
247                 up->port.icount.dsr++;
248         if (status & UART_MSR_DDCD)
249                 uart_handle_dcd_change(&up->port, status & UART_MSR_DCD);
250         if (status & UART_MSR_DCTS)
251                 uart_handle_cts_change(&up->port, status & UART_MSR_CTS);
252
253         wake_up_interruptible(&up->port.info->delta_msr_wait);
254 }
255
256 /*
257  * This handles the interrupt from one port.
258  */
259 static inline irqreturn_t
260 serial_pxa_irq(int irq, void *dev_id, struct pt_regs *regs)
261 {
262         struct uart_pxa_port *up = (struct uart_pxa_port *)dev_id;
263         unsigned int iir, lsr;
264
265         iir = serial_in(up, UART_IIR);
266         if (iir & UART_IIR_NO_INT)
267                 return IRQ_NONE;
268         lsr = serial_in(up, UART_LSR);
269         if (lsr & UART_LSR_DR)
270                 receive_chars(up, &lsr, regs);
271         check_modem_status(up);
272         if (lsr & UART_LSR_THRE)
273                 transmit_chars(up);
274         return IRQ_HANDLED;
275 }
276
277 static unsigned int serial_pxa_tx_empty(struct uart_port *port)
278 {
279         struct uart_pxa_port *up = (struct uart_pxa_port *)port;
280         unsigned long flags;
281         unsigned int ret;
282
283         spin_lock_irqsave(&up->port.lock, flags);
284         ret = serial_in(up, UART_LSR) & UART_LSR_TEMT ? TIOCSER_TEMT : 0;
285         spin_unlock_irqrestore(&up->port.lock, flags);
286
287         return ret;
288 }
289
290 static unsigned int serial_pxa_get_mctrl(struct uart_port *port)
291 {
292         struct uart_pxa_port *up = (struct uart_pxa_port *)port;
293         unsigned long flags;
294         unsigned char status;
295         unsigned int ret;
296
297 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
298         spin_lock_irqsave(&up->port.lock, flags);
299         status = serial_in(up, UART_MSR);
300         spin_unlock_irqrestore(&up->port.lock, flags);
301
302         ret = 0;
303         if (status & UART_MSR_DCD)
304                 ret |= TIOCM_CAR;
305         if (status & UART_MSR_RI)
306                 ret |= TIOCM_RNG;
307         if (status & UART_MSR_DSR)
308                 ret |= TIOCM_DSR;
309         if (status & UART_MSR_CTS)
310                 ret |= TIOCM_CTS;
311         return ret;
312 }
313
314 static void serial_pxa_set_mctrl(struct uart_port *port, unsigned int mctrl)
315 {
316         struct uart_pxa_port *up = (struct uart_pxa_port *)port;
317         unsigned char mcr = 0;
318
319         if (mctrl & TIOCM_RTS)
320                 mcr |= UART_MCR_RTS;
321         if (mctrl & TIOCM_DTR)
322                 mcr |= UART_MCR_DTR;
323         if (mctrl & TIOCM_OUT1)
324                 mcr |= UART_MCR_OUT1;
325         if (mctrl & TIOCM_OUT2)
326                 mcr |= UART_MCR_OUT2;
327         if (mctrl & TIOCM_LOOP)
328                 mcr |= UART_MCR_LOOP;
329
330         mcr |= up->mcr;
331
332         serial_out(up, UART_MCR, mcr);
333 }
334
335 static void serial_pxa_break_ctl(struct uart_port *port, int break_state)
336 {
337         struct uart_pxa_port *up = (struct uart_pxa_port *)port;
338         unsigned long flags;
339
340         spin_lock_irqsave(&up->port.lock, flags);
341         if (break_state == -1)
342                 up->lcr |= UART_LCR_SBC;
343         else
344                 up->lcr &= ~UART_LCR_SBC;
345         serial_out(up, UART_LCR, up->lcr);
346         spin_unlock_irqrestore(&up->port.lock, flags);
347 }
348
349 #if 0
350 static void serial_pxa_dma_init(struct pxa_uart *up)
351 {
352         up->rxdma =
353                 pxa_request_dma(up->name, DMA_PRIO_LOW, pxa_receive_dma, up);
354         if (up->rxdma < 0)
355                 goto out;
356         up->txdma =
357                 pxa_request_dma(up->name, DMA_PRIO_LOW, pxa_transmit_dma, up);
358         if (up->txdma < 0)
359                 goto err_txdma;
360         up->dmadesc = kmalloc(4 * sizeof(pxa_dma_desc), GFP_KERNEL);
361         if (!up->dmadesc)
362                 goto err_alloc;
363
364         /* ... */
365 err_alloc:
366         pxa_free_dma(up->txdma);
367 err_rxdma:
368         pxa_free_dma(up->rxdma);
369 out:
370         return;
371 }
372 #endif
373
374 static int serial_pxa_startup(struct uart_port *port)
375 {
376         struct uart_pxa_port *up = (struct uart_pxa_port *)port;
377         unsigned long flags;
378         int retval;
379
380         up->mcr = 0;
381
382         /*
383          * Allocate the IRQ
384          */
385         retval = request_irq(up->port.irq, serial_pxa_irq, 0, up->name, up);
386         if (retval)
387                 return retval;
388
389         CKEN |= up->cken;
390         udelay(1);
391
392         /*
393          * Clear the FIFO buffers and disable them.
394          * (they will be reenabled in set_termios())
395          */
396         serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
397         serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO |
398                         UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
399         serial_out(up, UART_FCR, 0);
400
401         /*
402          * Clear the interrupt registers.
403          */
404         (void) serial_in(up, UART_LSR);
405         (void) serial_in(up, UART_RX);
406         (void) serial_in(up, UART_IIR);
407         (void) serial_in(up, UART_MSR);
408
409         /*
410          * Now, initialize the UART
411          */
412         serial_out(up, UART_LCR, UART_LCR_WLEN8);
413
414         spin_lock_irqsave(&up->port.lock, flags);
415         up->port.mctrl |= TIOCM_OUT2;
416         serial_pxa_set_mctrl(&up->port, up->port.mctrl);
417         spin_unlock_irqrestore(&up->port.lock, flags);
418
419         /*
420          * Finally, enable interrupts.  Note: Modem status interrupts
421          * are set via set_termios(), which will be occuring imminently
422          * anyway, so we don't enable them here.
423          */
424         up->ier = UART_IER_RLSI | UART_IER_RDI | UART_IER_RTOIE | UART_IER_UUE;
425         serial_out(up, UART_IER, up->ier);
426
427         /*
428          * And clear the interrupt registers again for luck.
429          */
430         (void) serial_in(up, UART_LSR);
431         (void) serial_in(up, UART_RX);
432         (void) serial_in(up, UART_IIR);
433         (void) serial_in(up, UART_MSR);
434
435         return 0;
436 }
437
438 static void serial_pxa_shutdown(struct uart_port *port)
439 {
440         struct uart_pxa_port *up = (struct uart_pxa_port *)port;
441         unsigned long flags;
442
443         free_irq(up->port.irq, up);
444
445         /*
446          * Disable interrupts from this port
447          */
448         up->ier = 0;
449         serial_out(up, UART_IER, 0);
450
451         spin_lock_irqsave(&up->port.lock, flags);
452         up->port.mctrl &= ~TIOCM_OUT2;
453         serial_pxa_set_mctrl(&up->port, up->port.mctrl);
454         spin_unlock_irqrestore(&up->port.lock, flags);
455
456         /*
457          * Disable break condition and FIFOs
458          */
459         serial_out(up, UART_LCR, serial_in(up, UART_LCR) & ~UART_LCR_SBC);
460         serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO |
461                                   UART_FCR_CLEAR_RCVR |
462                                   UART_FCR_CLEAR_XMIT);
463         serial_out(up, UART_FCR, 0);
464
465         CKEN &= ~up->cken;
466 }
467
468 static void
469 serial_pxa_set_termios(struct uart_port *port, struct termios *termios,
470                        struct termios *old)
471 {
472         struct uart_pxa_port *up = (struct uart_pxa_port *)port;
473         unsigned char cval, fcr = 0;
474         unsigned long flags;
475         unsigned int baud, quot;
476
477         switch (termios->c_cflag & CSIZE) {
478         case CS5:
479                 cval = 0x00;
480                 break;
481         case CS6:
482                 cval = 0x01;
483                 break;
484         case CS7:
485                 cval = 0x02;
486                 break;
487         default:
488         case CS8:
489                 cval = 0x03;
490                 break;
491         }
492
493         if (termios->c_cflag & CSTOPB)
494                 cval |= 0x04;
495         if (termios->c_cflag & PARENB)
496                 cval |= UART_LCR_PARITY;
497         if (!(termios->c_cflag & PARODD))
498                 cval |= UART_LCR_EPAR;
499
500         /*
501          * Ask the core to calculate the divisor for us.
502          */
503         baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
504         quot = uart_get_divisor(port, baud);
505
506         if ((up->port.uartclk / quot) < (2400 * 16))
507                 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_PXAR1;
508         else
509                 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_PXAR8;
510
511         /*
512          * Ok, we're now changing the port state.  Do it with
513          * interrupts disabled.
514          */
515         spin_lock_irqsave(&up->port.lock, flags);
516
517         /*
518          * Ensure the port will be enabled.
519          * This is required especially for serial console.
520          */
521         up->ier |= IER_UUE;
522
523         /*
524          * Update the per-port timeout.
525          */
526         uart_update_timeout(port, termios->c_cflag, quot);
527
528         up->port.read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
529         if (termios->c_iflag & INPCK)
530                 up->port.read_status_mask |= UART_LSR_FE | UART_LSR_PE;
531         if (termios->c_iflag & (BRKINT | PARMRK))
532                 up->port.read_status_mask |= UART_LSR_BI;
533
534         /*
535          * Characters to ignore
536          */
537         up->port.ignore_status_mask = 0;
538         if (termios->c_iflag & IGNPAR)
539                 up->port.ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
540         if (termios->c_iflag & IGNBRK) {
541                 up->port.ignore_status_mask |= UART_LSR_BI;
542                 /*
543                  * If we're ignoring parity and break indicators,
544                  * ignore overruns too (for real raw support).
545                  */
546                 if (termios->c_iflag & IGNPAR)
547                         up->port.ignore_status_mask |= UART_LSR_OE;
548         }
549
550         /*
551          * ignore all characters if CREAD is not set
552          */
553         if ((termios->c_cflag & CREAD) == 0)
554                 up->port.ignore_status_mask |= UART_LSR_DR;
555
556         /*
557          * CTS flow control flag and modem status interrupts
558          */
559         up->ier &= ~UART_IER_MSI;
560         if (UART_ENABLE_MS(&up->port, termios->c_cflag))
561                 up->ier |= UART_IER_MSI;
562
563         serial_out(up, UART_IER, up->ier);
564
565         serial_out(up, UART_LCR, cval | UART_LCR_DLAB);/* set DLAB */
566         serial_out(up, UART_DLL, quot & 0xff);          /* LS of divisor */
567         serial_out(up, UART_DLM, quot >> 8);            /* MS of divisor */
568         serial_out(up, UART_LCR, cval);         /* reset DLAB */
569         up->lcr = cval;                                 /* Save LCR */
570         serial_pxa_set_mctrl(&up->port, up->port.mctrl);
571         serial_out(up, UART_FCR, fcr);
572         spin_unlock_irqrestore(&up->port.lock, flags);
573 }
574
575 static void
576 serial_pxa_pm(struct uart_port *port, unsigned int state,
577               unsigned int oldstate)
578 {
579         if (state) {
580                 /* sleep */
581         } else {
582                 /* wake */
583         }
584 }
585
586 static void serial_pxa_release_port(struct uart_port *port)
587 {
588 }
589
590 static int serial_pxa_request_port(struct uart_port *port)
591 {
592         return 0;
593 }
594
595 static void serial_pxa_config_port(struct uart_port *port, int flags)
596 {
597         struct uart_pxa_port *up = (struct uart_pxa_port *)port;
598         up->port.type = PORT_PXA;
599 }
600
601 static int
602 serial_pxa_verify_port(struct uart_port *port, struct serial_struct *ser)
603 {
604         /* we don't want the core code to modify any port params */
605         return -EINVAL;
606 }
607
608 static const char *
609 serial_pxa_type(struct uart_port *port)
610 {
611         struct uart_pxa_port *up = (struct uart_pxa_port *)port;
612         return up->name;
613 }
614
615 #ifdef CONFIG_SERIAL_PXA_CONSOLE
616
617 extern struct uart_pxa_port serial_pxa_ports[];
618 extern struct uart_driver serial_pxa_reg;
619
620 #define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
621
622 /*
623  *      Wait for transmitter & holding register to empty
624  */
625 static inline void wait_for_xmitr(struct uart_pxa_port *up)
626 {
627         unsigned int status, tmout = 10000;
628
629         /* Wait up to 10ms for the character(s) to be sent. */
630         do {
631                 status = serial_in(up, UART_LSR);
632
633                 if (status & UART_LSR_BI)
634                         up->lsr_break_flag = UART_LSR_BI;
635
636                 if (--tmout == 0)
637                         break;
638                 udelay(1);
639         } while ((status & BOTH_EMPTY) != BOTH_EMPTY);
640
641         /* Wait up to 1s for flow control if necessary */
642         if (up->port.flags & UPF_CONS_FLOW) {
643                 tmout = 1000000;
644                 while (--tmout &&
645                        ((serial_in(up, UART_MSR) & UART_MSR_CTS) == 0))
646                         udelay(1);
647         }
648 }
649
650 /*
651  * Print a string to the serial port trying not to disturb
652  * any possible real use of the port...
653  *
654  *      The console_lock must be held when we get here.
655  */
656 static void
657 serial_pxa_console_write(struct console *co, const char *s, unsigned int count)
658 {
659         struct uart_pxa_port *up = &serial_pxa_ports[co->index];
660         unsigned int ier;
661         int i;
662
663         /*
664          *      First save the UER then disable the interrupts
665          */
666         ier = serial_in(up, UART_IER);
667         serial_out(up, UART_IER, UART_IER_UUE);
668
669         /*
670          *      Now, do each character
671          */
672         for (i = 0; i < count; i++, s++) {
673                 wait_for_xmitr(up);
674
675                 /*
676                  *      Send the character out.
677                  *      If a LF, also do CR...
678                  */
679                 serial_out(up, UART_TX, *s);
680                 if (*s == 10) {
681                         wait_for_xmitr(up);
682                         serial_out(up, UART_TX, 13);
683                 }
684         }
685
686         /*
687          *      Finally, wait for transmitter to become empty
688          *      and restore the IER
689          */
690         wait_for_xmitr(up);
691         serial_out(up, UART_IER, ier);
692 }
693
694 static int __init
695 serial_pxa_console_setup(struct console *co, char *options)
696 {
697         struct uart_pxa_port *up;
698         int baud = 9600;
699         int bits = 8;
700         int parity = 'n';
701         int flow = 'n';
702
703         if (co->index == -1 || co->index >= serial_pxa_reg.nr)
704                 co->index = 0;
705         up = &serial_pxa_ports[co->index];
706
707         if (options)
708                 uart_parse_options(options, &baud, &parity, &bits, &flow);
709
710         return uart_set_options(&up->port, co, baud, parity, bits, flow);
711 }
712
713 static struct console serial_pxa_console = {
714         .name           = "ttyS",
715         .write          = serial_pxa_console_write,
716         .device         = uart_console_device,
717         .setup          = serial_pxa_console_setup,
718         .flags          = CON_PRINTBUFFER,
719         .index          = -1,
720         .data           = &serial_pxa_reg,
721 };
722
723 static int __init
724 serial_pxa_console_init(void)
725 {
726         register_console(&serial_pxa_console);
727         return 0;
728 }
729
730 console_initcall(serial_pxa_console_init);
731
732 #define PXA_CONSOLE     &serial_pxa_console
733 #else
734 #define PXA_CONSOLE     NULL
735 #endif
736
737 struct uart_ops serial_pxa_pops = {
738         .tx_empty       = serial_pxa_tx_empty,
739         .set_mctrl      = serial_pxa_set_mctrl,
740         .get_mctrl      = serial_pxa_get_mctrl,
741         .stop_tx        = serial_pxa_stop_tx,
742         .start_tx       = serial_pxa_start_tx,
743         .stop_rx        = serial_pxa_stop_rx,
744         .enable_ms      = serial_pxa_enable_ms,
745         .break_ctl      = serial_pxa_break_ctl,
746         .startup        = serial_pxa_startup,
747         .shutdown       = serial_pxa_shutdown,
748         .set_termios    = serial_pxa_set_termios,
749         .pm             = serial_pxa_pm,
750         .type           = serial_pxa_type,
751         .release_port   = serial_pxa_release_port,
752         .request_port   = serial_pxa_request_port,
753         .config_port    = serial_pxa_config_port,
754         .verify_port    = serial_pxa_verify_port,
755 };
756
757 static struct uart_pxa_port serial_pxa_ports[] = {
758      {  /* FFUART */
759         .name   = "FFUART",
760         .cken   = CKEN6_FFUART,
761         .port   = {
762                 .type           = PORT_PXA,
763                 .iotype         = SERIAL_IO_MEM,
764                 .membase        = (void *)&FFUART,
765                 .mapbase        = __PREG(FFUART),
766                 .irq            = IRQ_FFUART,
767                 .uartclk        = 921600 * 16,
768                 .fifosize       = 64,
769                 .flags          = ASYNC_SKIP_TEST,
770                 .ops            = &serial_pxa_pops,
771                 .line           = 0,
772         },
773   }, {  /* BTUART */
774         .name   = "BTUART",
775         .cken   = CKEN7_BTUART,
776         .port   = {
777                 .type           = PORT_PXA,
778                 .iotype         = SERIAL_IO_MEM,
779                 .membase        = (void *)&BTUART,
780                 .mapbase        = __PREG(BTUART),
781                 .irq            = IRQ_BTUART,
782                 .uartclk        = 921600 * 16,
783                 .fifosize       = 64,
784                 .flags          = ASYNC_SKIP_TEST,
785                 .ops            = &serial_pxa_pops,
786                 .line           = 1,
787         },
788   }, {  /* STUART */
789         .name   = "STUART",
790         .cken   = CKEN5_STUART,
791         .port   = {
792                 .type           = PORT_PXA,
793                 .iotype         = SERIAL_IO_MEM,
794                 .membase        = (void *)&STUART,
795                 .mapbase        = __PREG(STUART),
796                 .irq            = IRQ_STUART,
797                 .uartclk        = 921600 * 16,
798                 .fifosize       = 64,
799                 .flags          = ASYNC_SKIP_TEST,
800                 .ops            = &serial_pxa_pops,
801                 .line           = 2,
802         },
803   }
804 };
805
806 static struct uart_driver serial_pxa_reg = {
807         .owner          = THIS_MODULE,
808         .driver_name    = "PXA serial",
809         .devfs_name     = "tts/",
810         .dev_name       = "ttyS",
811         .major          = TTY_MAJOR,
812         .minor          = 64,
813         .nr             = ARRAY_SIZE(serial_pxa_ports),
814         .cons           = PXA_CONSOLE,
815 };
816
817 static int __init serial_pxa_init(void)
818 {
819         int i, ret;
820
821         ret = uart_register_driver(&serial_pxa_reg);
822         if (ret)
823                 return ret;
824
825         for (i = 0; i < ARRAY_SIZE(serial_pxa_ports); i++)
826                 uart_add_one_port(&serial_pxa_reg, &serial_pxa_ports[i].port);
827
828         return 0;
829 }
830
831 static void __exit serial_pxa_exit(void)
832 {
833         uart_unregister_driver(&serial_pxa_reg);
834 }
835
836 module_init(serial_pxa_init);
837 module_exit(serial_pxa_exit);
838
839 MODULE_LICENSE("GPL");
840