mfd: htc-i2cpld depends on GPIOLIB
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / serial / amba-pl011.c
blobce6c35333ff7b9faaf65acfc087ace884f150c60
1 /*
2 * linux/drivers/char/amba.c
4 * Driver for AMBA serial ports
6 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
8 * Copyright 1999 ARM Limited
9 * Copyright (C) 2000 Deep Blue Solutions Ltd.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 * This is a generic driver for ARM AMBA-type serial ports. They
26 * have a lot of 16550-like features, but are not register compatible.
27 * Note that although they do have CTS, DCD and DSR inputs, they do
28 * not have an RI input, nor do they have DTR or RTS outputs. If
29 * required, these have to be supplied via some other means (eg, GPIO)
30 * and hooked into this driver.
33 #if defined(CONFIG_SERIAL_AMBA_PL011_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
34 #define SUPPORT_SYSRQ
35 #endif
37 #include <linux/module.h>
38 #include <linux/ioport.h>
39 #include <linux/init.h>
40 #include <linux/console.h>
41 #include <linux/sysrq.h>
42 #include <linux/device.h>
43 #include <linux/tty.h>
44 #include <linux/tty_flip.h>
45 #include <linux/serial_core.h>
46 #include <linux/serial.h>
47 #include <linux/amba/bus.h>
48 #include <linux/amba/serial.h>
49 #include <linux/clk.h>
51 #include <asm/io.h>
52 #include <asm/sizes.h>
54 #define UART_NR 14
56 #define SERIAL_AMBA_MAJOR 204
57 #define SERIAL_AMBA_MINOR 64
58 #define SERIAL_AMBA_NR UART_NR
60 #define AMBA_ISR_PASS_LIMIT 256
62 #define UART_DR_ERROR (UART011_DR_OE|UART011_DR_BE|UART011_DR_PE|UART011_DR_FE)
63 #define UART_DUMMY_DR_RX (1 << 16)
66 * We wrap our port structure around the generic uart_port.
68 struct uart_amba_port {
69 struct uart_port port;
70 struct clk *clk;
71 unsigned int im; /* interrupt mask */
72 unsigned int old_status;
73 unsigned int ifls; /* vendor-specific */
74 bool autorts;
77 /* There is by now at least one vendor with differing details, so handle it */
78 struct vendor_data {
79 unsigned int ifls;
80 unsigned int fifosize;
83 static struct vendor_data vendor_arm = {
84 .ifls = UART011_IFLS_RX4_8|UART011_IFLS_TX4_8,
85 .fifosize = 16,
88 static struct vendor_data vendor_st = {
89 .ifls = UART011_IFLS_RX_HALF|UART011_IFLS_TX_HALF,
90 .fifosize = 64,
93 static void pl011_stop_tx(struct uart_port *port)
95 struct uart_amba_port *uap = (struct uart_amba_port *)port;
97 uap->im &= ~UART011_TXIM;
98 writew(uap->im, uap->port.membase + UART011_IMSC);
101 static void pl011_start_tx(struct uart_port *port)
103 struct uart_amba_port *uap = (struct uart_amba_port *)port;
105 uap->im |= UART011_TXIM;
106 writew(uap->im, uap->port.membase + UART011_IMSC);
109 static void pl011_stop_rx(struct uart_port *port)
111 struct uart_amba_port *uap = (struct uart_amba_port *)port;
113 uap->im &= ~(UART011_RXIM|UART011_RTIM|UART011_FEIM|
114 UART011_PEIM|UART011_BEIM|UART011_OEIM);
115 writew(uap->im, uap->port.membase + UART011_IMSC);
118 static void pl011_enable_ms(struct uart_port *port)
120 struct uart_amba_port *uap = (struct uart_amba_port *)port;
122 uap->im |= UART011_RIMIM|UART011_CTSMIM|UART011_DCDMIM|UART011_DSRMIM;
123 writew(uap->im, uap->port.membase + UART011_IMSC);
126 static void pl011_rx_chars(struct uart_amba_port *uap)
128 struct tty_struct *tty = uap->port.state->port.tty;
129 unsigned int status, ch, flag, max_count = 256;
131 status = readw(uap->port.membase + UART01x_FR);
132 while ((status & UART01x_FR_RXFE) == 0 && max_count--) {
133 ch = readw(uap->port.membase + UART01x_DR) | UART_DUMMY_DR_RX;
134 flag = TTY_NORMAL;
135 uap->port.icount.rx++;
138 * Note that the error handling code is
139 * out of the main execution path
141 if (unlikely(ch & UART_DR_ERROR)) {
142 if (ch & UART011_DR_BE) {
143 ch &= ~(UART011_DR_FE | UART011_DR_PE);
144 uap->port.icount.brk++;
145 if (uart_handle_break(&uap->port))
146 goto ignore_char;
147 } else if (ch & UART011_DR_PE)
148 uap->port.icount.parity++;
149 else if (ch & UART011_DR_FE)
150 uap->port.icount.frame++;
151 if (ch & UART011_DR_OE)
152 uap->port.icount.overrun++;
154 ch &= uap->port.read_status_mask;
156 if (ch & UART011_DR_BE)
157 flag = TTY_BREAK;
158 else if (ch & UART011_DR_PE)
159 flag = TTY_PARITY;
160 else if (ch & UART011_DR_FE)
161 flag = TTY_FRAME;
164 if (uart_handle_sysrq_char(&uap->port, ch & 255))
165 goto ignore_char;
167 uart_insert_char(&uap->port, ch, UART011_DR_OE, ch, flag);
169 ignore_char:
170 status = readw(uap->port.membase + UART01x_FR);
172 spin_unlock(&uap->port.lock);
173 tty_flip_buffer_push(tty);
174 spin_lock(&uap->port.lock);
177 static void pl011_tx_chars(struct uart_amba_port *uap)
179 struct circ_buf *xmit = &uap->port.state->xmit;
180 int count;
182 if (uap->port.x_char) {
183 writew(uap->port.x_char, uap->port.membase + UART01x_DR);
184 uap->port.icount.tx++;
185 uap->port.x_char = 0;
186 return;
188 if (uart_circ_empty(xmit) || uart_tx_stopped(&uap->port)) {
189 pl011_stop_tx(&uap->port);
190 return;
193 count = uap->port.fifosize >> 1;
194 do {
195 writew(xmit->buf[xmit->tail], uap->port.membase + UART01x_DR);
196 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
197 uap->port.icount.tx++;
198 if (uart_circ_empty(xmit))
199 break;
200 } while (--count > 0);
202 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
203 uart_write_wakeup(&uap->port);
205 if (uart_circ_empty(xmit))
206 pl011_stop_tx(&uap->port);
209 static void pl011_modem_status(struct uart_amba_port *uap)
211 unsigned int status, delta;
213 status = readw(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
215 delta = status ^ uap->old_status;
216 uap->old_status = status;
218 if (!delta)
219 return;
221 if (delta & UART01x_FR_DCD)
222 uart_handle_dcd_change(&uap->port, status & UART01x_FR_DCD);
224 if (delta & UART01x_FR_DSR)
225 uap->port.icount.dsr++;
227 if (delta & UART01x_FR_CTS)
228 uart_handle_cts_change(&uap->port, status & UART01x_FR_CTS);
230 wake_up_interruptible(&uap->port.state->port.delta_msr_wait);
233 static irqreturn_t pl011_int(int irq, void *dev_id)
235 struct uart_amba_port *uap = dev_id;
236 unsigned int status, pass_counter = AMBA_ISR_PASS_LIMIT;
237 int handled = 0;
239 spin_lock(&uap->port.lock);
241 status = readw(uap->port.membase + UART011_MIS);
242 if (status) {
243 do {
244 writew(status & ~(UART011_TXIS|UART011_RTIS|
245 UART011_RXIS),
246 uap->port.membase + UART011_ICR);
248 if (status & (UART011_RTIS|UART011_RXIS))
249 pl011_rx_chars(uap);
250 if (status & (UART011_DSRMIS|UART011_DCDMIS|
251 UART011_CTSMIS|UART011_RIMIS))
252 pl011_modem_status(uap);
253 if (status & UART011_TXIS)
254 pl011_tx_chars(uap);
256 if (pass_counter-- == 0)
257 break;
259 status = readw(uap->port.membase + UART011_MIS);
260 } while (status != 0);
261 handled = 1;
264 spin_unlock(&uap->port.lock);
266 return IRQ_RETVAL(handled);
269 static unsigned int pl01x_tx_empty(struct uart_port *port)
271 struct uart_amba_port *uap = (struct uart_amba_port *)port;
272 unsigned int status = readw(uap->port.membase + UART01x_FR);
273 return status & (UART01x_FR_BUSY|UART01x_FR_TXFF) ? 0 : TIOCSER_TEMT;
276 static unsigned int pl01x_get_mctrl(struct uart_port *port)
278 struct uart_amba_port *uap = (struct uart_amba_port *)port;
279 unsigned int result = 0;
280 unsigned int status = readw(uap->port.membase + UART01x_FR);
282 #define TIOCMBIT(uartbit, tiocmbit) \
283 if (status & uartbit) \
284 result |= tiocmbit
286 TIOCMBIT(UART01x_FR_DCD, TIOCM_CAR);
287 TIOCMBIT(UART01x_FR_DSR, TIOCM_DSR);
288 TIOCMBIT(UART01x_FR_CTS, TIOCM_CTS);
289 TIOCMBIT(UART011_FR_RI, TIOCM_RNG);
290 #undef TIOCMBIT
291 return result;
294 static void pl011_set_mctrl(struct uart_port *port, unsigned int mctrl)
296 struct uart_amba_port *uap = (struct uart_amba_port *)port;
297 unsigned int cr;
299 cr = readw(uap->port.membase + UART011_CR);
301 #define TIOCMBIT(tiocmbit, uartbit) \
302 if (mctrl & tiocmbit) \
303 cr |= uartbit; \
304 else \
305 cr &= ~uartbit
307 TIOCMBIT(TIOCM_RTS, UART011_CR_RTS);
308 TIOCMBIT(TIOCM_DTR, UART011_CR_DTR);
309 TIOCMBIT(TIOCM_OUT1, UART011_CR_OUT1);
310 TIOCMBIT(TIOCM_OUT2, UART011_CR_OUT2);
311 TIOCMBIT(TIOCM_LOOP, UART011_CR_LBE);
313 if (uap->autorts) {
314 /* We need to disable auto-RTS if we want to turn RTS off */
315 TIOCMBIT(TIOCM_RTS, UART011_CR_RTSEN);
317 #undef TIOCMBIT
319 writew(cr, uap->port.membase + UART011_CR);
322 static void pl011_break_ctl(struct uart_port *port, int break_state)
324 struct uart_amba_port *uap = (struct uart_amba_port *)port;
325 unsigned long flags;
326 unsigned int lcr_h;
328 spin_lock_irqsave(&uap->port.lock, flags);
329 lcr_h = readw(uap->port.membase + UART011_LCRH);
330 if (break_state == -1)
331 lcr_h |= UART01x_LCRH_BRK;
332 else
333 lcr_h &= ~UART01x_LCRH_BRK;
334 writew(lcr_h, uap->port.membase + UART011_LCRH);
335 spin_unlock_irqrestore(&uap->port.lock, flags);
338 #ifdef CONFIG_CONSOLE_POLL
339 static int pl010_get_poll_char(struct uart_port *port)
341 struct uart_amba_port *uap = (struct uart_amba_port *)port;
342 unsigned int status;
344 do {
345 status = readw(uap->port.membase + UART01x_FR);
346 } while (status & UART01x_FR_RXFE);
348 return readw(uap->port.membase + UART01x_DR);
351 static void pl010_put_poll_char(struct uart_port *port,
352 unsigned char ch)
354 struct uart_amba_port *uap = (struct uart_amba_port *)port;
356 while (readw(uap->port.membase + UART01x_FR) & UART01x_FR_TXFF)
357 barrier();
359 writew(ch, uap->port.membase + UART01x_DR);
362 #endif /* CONFIG_CONSOLE_POLL */
364 static int pl011_startup(struct uart_port *port)
366 struct uart_amba_port *uap = (struct uart_amba_port *)port;
367 unsigned int cr;
368 int retval;
371 * Try to enable the clock producer.
373 retval = clk_enable(uap->clk);
374 if (retval)
375 goto out;
377 uap->port.uartclk = clk_get_rate(uap->clk);
380 * Allocate the IRQ
382 retval = request_irq(uap->port.irq, pl011_int, 0, "uart-pl011", uap);
383 if (retval)
384 goto clk_dis;
386 writew(uap->ifls, uap->port.membase + UART011_IFLS);
389 * Provoke TX FIFO interrupt into asserting.
391 cr = UART01x_CR_UARTEN | UART011_CR_TXE | UART011_CR_LBE;
392 writew(cr, uap->port.membase + UART011_CR);
393 writew(0, uap->port.membase + UART011_FBRD);
394 writew(1, uap->port.membase + UART011_IBRD);
395 writew(0, uap->port.membase + UART011_LCRH);
396 writew(0, uap->port.membase + UART01x_DR);
397 while (readw(uap->port.membase + UART01x_FR) & UART01x_FR_BUSY)
398 barrier();
400 cr = UART01x_CR_UARTEN | UART011_CR_RXE | UART011_CR_TXE;
401 writew(cr, uap->port.membase + UART011_CR);
404 * initialise the old status of the modem signals
406 uap->old_status = readw(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
409 * Finally, enable interrupts
411 spin_lock_irq(&uap->port.lock);
412 uap->im = UART011_RXIM | UART011_RTIM;
413 writew(uap->im, uap->port.membase + UART011_IMSC);
414 spin_unlock_irq(&uap->port.lock);
416 return 0;
418 clk_dis:
419 clk_disable(uap->clk);
420 out:
421 return retval;
424 static void pl011_shutdown(struct uart_port *port)
426 struct uart_amba_port *uap = (struct uart_amba_port *)port;
427 unsigned long val;
430 * disable all interrupts
432 spin_lock_irq(&uap->port.lock);
433 uap->im = 0;
434 writew(uap->im, uap->port.membase + UART011_IMSC);
435 writew(0xffff, uap->port.membase + UART011_ICR);
436 spin_unlock_irq(&uap->port.lock);
439 * Free the interrupt
441 free_irq(uap->port.irq, uap);
444 * disable the port
446 uap->autorts = false;
447 writew(UART01x_CR_UARTEN | UART011_CR_TXE, uap->port.membase + UART011_CR);
450 * disable break condition and fifos
452 val = readw(uap->port.membase + UART011_LCRH);
453 val &= ~(UART01x_LCRH_BRK | UART01x_LCRH_FEN);
454 writew(val, uap->port.membase + UART011_LCRH);
457 * Shut down the clock producer
459 clk_disable(uap->clk);
462 static void
463 pl011_set_termios(struct uart_port *port, struct ktermios *termios,
464 struct ktermios *old)
466 struct uart_amba_port *uap = (struct uart_amba_port *)port;
467 unsigned int lcr_h, old_cr;
468 unsigned long flags;
469 unsigned int baud, quot;
472 * Ask the core to calculate the divisor for us.
474 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
475 quot = port->uartclk * 4 / baud;
477 switch (termios->c_cflag & CSIZE) {
478 case CS5:
479 lcr_h = UART01x_LCRH_WLEN_5;
480 break;
481 case CS6:
482 lcr_h = UART01x_LCRH_WLEN_6;
483 break;
484 case CS7:
485 lcr_h = UART01x_LCRH_WLEN_7;
486 break;
487 default: // CS8
488 lcr_h = UART01x_LCRH_WLEN_8;
489 break;
491 if (termios->c_cflag & CSTOPB)
492 lcr_h |= UART01x_LCRH_STP2;
493 if (termios->c_cflag & PARENB) {
494 lcr_h |= UART01x_LCRH_PEN;
495 if (!(termios->c_cflag & PARODD))
496 lcr_h |= UART01x_LCRH_EPS;
498 if (port->fifosize > 1)
499 lcr_h |= UART01x_LCRH_FEN;
501 spin_lock_irqsave(&port->lock, flags);
504 * Update the per-port timeout.
506 uart_update_timeout(port, termios->c_cflag, baud);
508 port->read_status_mask = UART011_DR_OE | 255;
509 if (termios->c_iflag & INPCK)
510 port->read_status_mask |= UART011_DR_FE | UART011_DR_PE;
511 if (termios->c_iflag & (BRKINT | PARMRK))
512 port->read_status_mask |= UART011_DR_BE;
515 * Characters to ignore
517 port->ignore_status_mask = 0;
518 if (termios->c_iflag & IGNPAR)
519 port->ignore_status_mask |= UART011_DR_FE | UART011_DR_PE;
520 if (termios->c_iflag & IGNBRK) {
521 port->ignore_status_mask |= UART011_DR_BE;
523 * If we're ignoring parity and break indicators,
524 * ignore overruns too (for real raw support).
526 if (termios->c_iflag & IGNPAR)
527 port->ignore_status_mask |= UART011_DR_OE;
531 * Ignore all characters if CREAD is not set.
533 if ((termios->c_cflag & CREAD) == 0)
534 port->ignore_status_mask |= UART_DUMMY_DR_RX;
536 if (UART_ENABLE_MS(port, termios->c_cflag))
537 pl011_enable_ms(port);
539 /* first, disable everything */
540 old_cr = readw(port->membase + UART011_CR);
541 writew(0, port->membase + UART011_CR);
543 if (termios->c_cflag & CRTSCTS) {
544 if (old_cr & UART011_CR_RTS)
545 old_cr |= UART011_CR_RTSEN;
547 old_cr |= UART011_CR_CTSEN;
548 uap->autorts = true;
549 } else {
550 old_cr &= ~(UART011_CR_CTSEN | UART011_CR_RTSEN);
551 uap->autorts = false;
554 /* Set baud rate */
555 writew(quot & 0x3f, port->membase + UART011_FBRD);
556 writew(quot >> 6, port->membase + UART011_IBRD);
559 * ----------v----------v----------v----------v-----
560 * NOTE: MUST BE WRITTEN AFTER UARTLCR_M & UARTLCR_L
561 * ----------^----------^----------^----------^-----
563 writew(lcr_h, port->membase + UART011_LCRH);
564 writew(old_cr, port->membase + UART011_CR);
566 spin_unlock_irqrestore(&port->lock, flags);
569 static const char *pl011_type(struct uart_port *port)
571 return port->type == PORT_AMBA ? "AMBA/PL011" : NULL;
575 * Release the memory region(s) being used by 'port'
577 static void pl010_release_port(struct uart_port *port)
579 release_mem_region(port->mapbase, SZ_4K);
583 * Request the memory region(s) being used by 'port'
585 static int pl010_request_port(struct uart_port *port)
587 return request_mem_region(port->mapbase, SZ_4K, "uart-pl011")
588 != NULL ? 0 : -EBUSY;
592 * Configure/autoconfigure the port.
594 static void pl010_config_port(struct uart_port *port, int flags)
596 if (flags & UART_CONFIG_TYPE) {
597 port->type = PORT_AMBA;
598 pl010_request_port(port);
603 * verify the new serial_struct (for TIOCSSERIAL).
605 static int pl010_verify_port(struct uart_port *port, struct serial_struct *ser)
607 int ret = 0;
608 if (ser->type != PORT_UNKNOWN && ser->type != PORT_AMBA)
609 ret = -EINVAL;
610 if (ser->irq < 0 || ser->irq >= nr_irqs)
611 ret = -EINVAL;
612 if (ser->baud_base < 9600)
613 ret = -EINVAL;
614 return ret;
617 static struct uart_ops amba_pl011_pops = {
618 .tx_empty = pl01x_tx_empty,
619 .set_mctrl = pl011_set_mctrl,
620 .get_mctrl = pl01x_get_mctrl,
621 .stop_tx = pl011_stop_tx,
622 .start_tx = pl011_start_tx,
623 .stop_rx = pl011_stop_rx,
624 .enable_ms = pl011_enable_ms,
625 .break_ctl = pl011_break_ctl,
626 .startup = pl011_startup,
627 .shutdown = pl011_shutdown,
628 .set_termios = pl011_set_termios,
629 .type = pl011_type,
630 .release_port = pl010_release_port,
631 .request_port = pl010_request_port,
632 .config_port = pl010_config_port,
633 .verify_port = pl010_verify_port,
634 #ifdef CONFIG_CONSOLE_POLL
635 .poll_get_char = pl010_get_poll_char,
636 .poll_put_char = pl010_put_poll_char,
637 #endif
640 static struct uart_amba_port *amba_ports[UART_NR];
642 #ifdef CONFIG_SERIAL_AMBA_PL011_CONSOLE
644 static void pl011_console_putchar(struct uart_port *port, int ch)
646 struct uart_amba_port *uap = (struct uart_amba_port *)port;
648 while (readw(uap->port.membase + UART01x_FR) & UART01x_FR_TXFF)
649 barrier();
650 writew(ch, uap->port.membase + UART01x_DR);
653 static void
654 pl011_console_write(struct console *co, const char *s, unsigned int count)
656 struct uart_amba_port *uap = amba_ports[co->index];
657 unsigned int status, old_cr, new_cr;
659 clk_enable(uap->clk);
662 * First save the CR then disable the interrupts
664 old_cr = readw(uap->port.membase + UART011_CR);
665 new_cr = old_cr & ~UART011_CR_CTSEN;
666 new_cr |= UART01x_CR_UARTEN | UART011_CR_TXE;
667 writew(new_cr, uap->port.membase + UART011_CR);
669 uart_console_write(&uap->port, s, count, pl011_console_putchar);
672 * Finally, wait for transmitter to become empty
673 * and restore the TCR
675 do {
676 status = readw(uap->port.membase + UART01x_FR);
677 } while (status & UART01x_FR_BUSY);
678 writew(old_cr, uap->port.membase + UART011_CR);
680 clk_disable(uap->clk);
683 static void __init
684 pl011_console_get_options(struct uart_amba_port *uap, int *baud,
685 int *parity, int *bits)
687 if (readw(uap->port.membase + UART011_CR) & UART01x_CR_UARTEN) {
688 unsigned int lcr_h, ibrd, fbrd;
690 lcr_h = readw(uap->port.membase + UART011_LCRH);
692 *parity = 'n';
693 if (lcr_h & UART01x_LCRH_PEN) {
694 if (lcr_h & UART01x_LCRH_EPS)
695 *parity = 'e';
696 else
697 *parity = 'o';
700 if ((lcr_h & 0x60) == UART01x_LCRH_WLEN_7)
701 *bits = 7;
702 else
703 *bits = 8;
705 ibrd = readw(uap->port.membase + UART011_IBRD);
706 fbrd = readw(uap->port.membase + UART011_FBRD);
708 *baud = uap->port.uartclk * 4 / (64 * ibrd + fbrd);
712 static int __init pl011_console_setup(struct console *co, char *options)
714 struct uart_amba_port *uap;
715 int baud = 38400;
716 int bits = 8;
717 int parity = 'n';
718 int flow = 'n';
721 * Check whether an invalid uart number has been specified, and
722 * if so, search for the first available port that does have
723 * console support.
725 if (co->index >= UART_NR)
726 co->index = 0;
727 uap = amba_ports[co->index];
728 if (!uap)
729 return -ENODEV;
731 uap->port.uartclk = clk_get_rate(uap->clk);
733 if (options)
734 uart_parse_options(options, &baud, &parity, &bits, &flow);
735 else
736 pl011_console_get_options(uap, &baud, &parity, &bits);
738 return uart_set_options(&uap->port, co, baud, parity, bits, flow);
741 static struct uart_driver amba_reg;
742 static struct console amba_console = {
743 .name = "ttyAMA",
744 .write = pl011_console_write,
745 .device = uart_console_device,
746 .setup = pl011_console_setup,
747 .flags = CON_PRINTBUFFER,
748 .index = -1,
749 .data = &amba_reg,
752 #define AMBA_CONSOLE (&amba_console)
753 #else
754 #define AMBA_CONSOLE NULL
755 #endif
757 static struct uart_driver amba_reg = {
758 .owner = THIS_MODULE,
759 .driver_name = "ttyAMA",
760 .dev_name = "ttyAMA",
761 .major = SERIAL_AMBA_MAJOR,
762 .minor = SERIAL_AMBA_MINOR,
763 .nr = UART_NR,
764 .cons = AMBA_CONSOLE,
767 static int pl011_probe(struct amba_device *dev, struct amba_id *id)
769 struct uart_amba_port *uap;
770 struct vendor_data *vendor = id->data;
771 void __iomem *base;
772 int i, ret;
774 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
775 if (amba_ports[i] == NULL)
776 break;
778 if (i == ARRAY_SIZE(amba_ports)) {
779 ret = -EBUSY;
780 goto out;
783 uap = kzalloc(sizeof(struct uart_amba_port), GFP_KERNEL);
784 if (uap == NULL) {
785 ret = -ENOMEM;
786 goto out;
789 base = ioremap(dev->res.start, resource_size(&dev->res));
790 if (!base) {
791 ret = -ENOMEM;
792 goto free;
795 uap->clk = clk_get(&dev->dev, NULL);
796 if (IS_ERR(uap->clk)) {
797 ret = PTR_ERR(uap->clk);
798 goto unmap;
801 uap->ifls = vendor->ifls;
802 uap->port.dev = &dev->dev;
803 uap->port.mapbase = dev->res.start;
804 uap->port.membase = base;
805 uap->port.iotype = UPIO_MEM;
806 uap->port.irq = dev->irq[0];
807 uap->port.fifosize = vendor->fifosize;
808 uap->port.ops = &amba_pl011_pops;
809 uap->port.flags = UPF_BOOT_AUTOCONF;
810 uap->port.line = i;
812 amba_ports[i] = uap;
814 amba_set_drvdata(dev, uap);
815 ret = uart_add_one_port(&amba_reg, &uap->port);
816 if (ret) {
817 amba_set_drvdata(dev, NULL);
818 amba_ports[i] = NULL;
819 clk_put(uap->clk);
820 unmap:
821 iounmap(base);
822 free:
823 kfree(uap);
825 out:
826 return ret;
829 static int pl011_remove(struct amba_device *dev)
831 struct uart_amba_port *uap = amba_get_drvdata(dev);
832 int i;
834 amba_set_drvdata(dev, NULL);
836 uart_remove_one_port(&amba_reg, &uap->port);
838 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
839 if (amba_ports[i] == uap)
840 amba_ports[i] = NULL;
842 iounmap(uap->port.membase);
843 clk_put(uap->clk);
844 kfree(uap);
845 return 0;
848 #ifdef CONFIG_PM
849 static int pl011_suspend(struct amba_device *dev, pm_message_t state)
851 struct uart_amba_port *uap = amba_get_drvdata(dev);
853 if (!uap)
854 return -EINVAL;
856 return uart_suspend_port(&amba_reg, &uap->port);
859 static int pl011_resume(struct amba_device *dev)
861 struct uart_amba_port *uap = amba_get_drvdata(dev);
863 if (!uap)
864 return -EINVAL;
866 return uart_resume_port(&amba_reg, &uap->port);
868 #endif
870 static struct amba_id pl011_ids[] __initdata = {
872 .id = 0x00041011,
873 .mask = 0x000fffff,
874 .data = &vendor_arm,
877 .id = 0x00380802,
878 .mask = 0x00ffffff,
879 .data = &vendor_st,
881 { 0, 0 },
884 static struct amba_driver pl011_driver = {
885 .drv = {
886 .name = "uart-pl011",
888 .id_table = pl011_ids,
889 .probe = pl011_probe,
890 .remove = pl011_remove,
891 #ifdef CONFIG_PM
892 .suspend = pl011_suspend,
893 .resume = pl011_resume,
894 #endif
897 static int __init pl011_init(void)
899 int ret;
900 printk(KERN_INFO "Serial: AMBA PL011 UART driver\n");
902 ret = uart_register_driver(&amba_reg);
903 if (ret == 0) {
904 ret = amba_driver_register(&pl011_driver);
905 if (ret)
906 uart_unregister_driver(&amba_reg);
908 return ret;
911 static void __exit pl011_exit(void)
913 amba_driver_unregister(&pl011_driver);
914 uart_unregister_driver(&amba_reg);
918 * While this can be a module, if builtin it's most likely the console
919 * So let's leave module_exit but move module_init to an earlier place
921 arch_initcall(pl011_init);
922 module_exit(pl011_exit);
924 MODULE_AUTHOR("ARM Ltd/Deep Blue Solutions Ltd");
925 MODULE_DESCRIPTION("ARM AMBA serial port driver");
926 MODULE_LICENSE("GPL");