| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | *  linux/drivers/char/amba.c | 
|  | 3 | * | 
|  | 4 | *  Driver for AMBA serial ports | 
|  | 5 | * | 
|  | 6 | *  Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o. | 
|  | 7 | * | 
|  | 8 | *  Copyright 1999 ARM Limited | 
|  | 9 | *  Copyright (C) 2000 Deep Blue Solutions Ltd. | 
|  | 10 | * | 
|  | 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. | 
|  | 15 | * | 
|  | 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. | 
|  | 20 | * | 
|  | 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 | 
|  | 24 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. | 
|  | 31 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 |  | 
|  | 33 | #if defined(CONFIG_SERIAL_AMBA_PL010_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ) | 
|  | 34 | #define SUPPORT_SYSRQ | 
|  | 35 | #endif | 
|  | 36 |  | 
|  | 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> | 
| Russell King | a62c80e | 2006-01-07 13:52:45 +0000 | [diff] [blame] | 47 | #include <linux/amba/bus.h> | 
|  | 48 | #include <linux/amba/serial.h> | 
| Russell King | ed519de | 2007-04-22 12:30:41 +0100 | [diff] [blame] | 49 | #include <linux/clk.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 |  | 
|  | 51 | #include <asm/io.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 |  | 
| Lennert Buytenhek | 4faf4e0 | 2006-06-20 19:24:07 +0100 | [diff] [blame] | 53 | #define UART_NR		8 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 |  | 
|  | 55 | #define SERIAL_AMBA_MAJOR	204 | 
|  | 56 | #define SERIAL_AMBA_MINOR	16 | 
|  | 57 | #define SERIAL_AMBA_NR		UART_NR | 
|  | 58 |  | 
|  | 59 | #define AMBA_ISR_PASS_LIMIT	256 | 
|  | 60 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #define UART_RX_DATA(s)		(((s) & UART01x_FR_RXFE) == 0) | 
|  | 62 | #define UART_TX_READY(s)	(((s) & UART01x_FR_TXFF) == 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 |  | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 64 | #define UART_DUMMY_RSR_RX	256 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | #define UART_PORT_SIZE		64 | 
|  | 66 |  | 
|  | 67 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | * We wrap our port structure around the generic uart_port. | 
|  | 69 | */ | 
|  | 70 | struct uart_amba_port { | 
|  | 71 | struct uart_port	port; | 
| Russell King | ed519de | 2007-04-22 12:30:41 +0100 | [diff] [blame] | 72 | struct clk		*clk; | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 73 | struct amba_device	*dev; | 
|  | 74 | struct amba_pl010_data	*data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | unsigned int		old_status; | 
|  | 76 | }; | 
|  | 77 |  | 
| Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 78 | static void pl010_stop_tx(struct uart_port *port) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 80 | struct uart_amba_port *uap = (struct uart_amba_port *)port; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | unsigned int cr; | 
|  | 82 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 83 | cr = readb(uap->port.membase + UART010_CR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | cr &= ~UART010_CR_TIE; | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 85 | writel(cr, uap->port.membase + UART010_CR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | } | 
|  | 87 |  | 
| Russell King | b129a8c | 2005-08-31 10:12:14 +0100 | [diff] [blame] | 88 | static void pl010_start_tx(struct uart_port *port) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 90 | struct uart_amba_port *uap = (struct uart_amba_port *)port; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | unsigned int cr; | 
|  | 92 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 93 | cr = readb(uap->port.membase + UART010_CR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | cr |= UART010_CR_TIE; | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 95 | writel(cr, uap->port.membase + UART010_CR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | } | 
|  | 97 |  | 
|  | 98 | static void pl010_stop_rx(struct uart_port *port) | 
|  | 99 | { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 100 | struct uart_amba_port *uap = (struct uart_amba_port *)port; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | unsigned int cr; | 
|  | 102 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 103 | cr = readb(uap->port.membase + UART010_CR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | cr &= ~(UART010_CR_RIE | UART010_CR_RTIE); | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 105 | writel(cr, uap->port.membase + UART010_CR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | } | 
|  | 107 |  | 
|  | 108 | static void pl010_enable_ms(struct uart_port *port) | 
|  | 109 | { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 110 | struct uart_amba_port *uap = (struct uart_amba_port *)port; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | unsigned int cr; | 
|  | 112 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 113 | cr = readb(uap->port.membase + UART010_CR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | cr |= UART010_CR_MSIE; | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 115 | writel(cr, uap->port.membase + UART010_CR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | } | 
|  | 117 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 118 | static void pl010_rx_chars(struct uart_amba_port *uap) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | { | 
| Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 120 | struct tty_struct *tty = uap->port.state->port.tty; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | unsigned int status, ch, flag, rsr, max_count = 256; | 
|  | 122 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 123 | status = readb(uap->port.membase + UART01x_FR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | while (UART_RX_DATA(status) && max_count--) { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 125 | ch = readb(uap->port.membase + UART01x_DR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | flag = TTY_NORMAL; | 
|  | 127 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 128 | uap->port.icount.rx++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 |  | 
|  | 130 | /* | 
|  | 131 | * Note that the error handling code is | 
|  | 132 | * out of the main execution path | 
|  | 133 | */ | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 134 | rsr = readb(uap->port.membase + UART01x_RSR) | UART_DUMMY_RSR_RX; | 
| Russell King | 4584928 | 2005-04-26 15:29:44 +0100 | [diff] [blame] | 135 | if (unlikely(rsr & UART01x_RSR_ANY)) { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 136 | writel(0, uap->port.membase + UART01x_ECR); | 
| Lennert Buytenhek | a4ed06a | 2006-12-06 20:39:57 -0800 | [diff] [blame] | 137 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | if (rsr & UART01x_RSR_BE) { | 
|  | 139 | rsr &= ~(UART01x_RSR_FE | UART01x_RSR_PE); | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 140 | uap->port.icount.brk++; | 
|  | 141 | if (uart_handle_break(&uap->port)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | goto ignore_char; | 
|  | 143 | } else if (rsr & UART01x_RSR_PE) | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 144 | uap->port.icount.parity++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | else if (rsr & UART01x_RSR_FE) | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 146 | uap->port.icount.frame++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | if (rsr & UART01x_RSR_OE) | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 148 | uap->port.icount.overrun++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 150 | rsr &= uap->port.read_status_mask; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 |  | 
|  | 152 | if (rsr & UART01x_RSR_BE) | 
|  | 153 | flag = TTY_BREAK; | 
|  | 154 | else if (rsr & UART01x_RSR_PE) | 
|  | 155 | flag = TTY_PARITY; | 
|  | 156 | else if (rsr & UART01x_RSR_FE) | 
|  | 157 | flag = TTY_FRAME; | 
|  | 158 | } | 
|  | 159 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 160 | if (uart_handle_sysrq_char(&uap->port, ch)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | goto ignore_char; | 
|  | 162 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 163 | uart_insert_char(&uap->port, rsr, UART01x_RSR_OE, ch, flag); | 
| Russell King | 05ab301 | 2005-05-09 23:21:59 +0100 | [diff] [blame] | 164 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | ignore_char: | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 166 | status = readb(uap->port.membase + UART01x_FR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | } | 
| Russell King | db002b8 | 2007-06-05 19:39:49 +0100 | [diff] [blame] | 168 | spin_unlock(&uap->port.lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | tty_flip_buffer_push(tty); | 
| Russell King | db002b8 | 2007-06-05 19:39:49 +0100 | [diff] [blame] | 170 | spin_lock(&uap->port.lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | } | 
|  | 172 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 173 | static void pl010_tx_chars(struct uart_amba_port *uap) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | { | 
| Alan Cox | ebd2c8f | 2009-09-19 13:13:28 -0700 | [diff] [blame] | 175 | struct circ_buf *xmit = &uap->port.state->xmit; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | int count; | 
|  | 177 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 178 | if (uap->port.x_char) { | 
|  | 179 | writel(uap->port.x_char, uap->port.membase + UART01x_DR); | 
|  | 180 | uap->port.icount.tx++; | 
|  | 181 | uap->port.x_char = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | return; | 
|  | 183 | } | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 184 | if (uart_circ_empty(xmit) || uart_tx_stopped(&uap->port)) { | 
|  | 185 | pl010_stop_tx(&uap->port); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | return; | 
|  | 187 | } | 
|  | 188 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 189 | count = uap->port.fifosize >> 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | do { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 191 | writel(xmit->buf[xmit->tail], uap->port.membase + UART01x_DR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 193 | uap->port.icount.tx++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | if (uart_circ_empty(xmit)) | 
|  | 195 | break; | 
|  | 196 | } while (--count > 0); | 
|  | 197 |  | 
|  | 198 | if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 199 | uart_write_wakeup(&uap->port); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 |  | 
|  | 201 | if (uart_circ_empty(xmit)) | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 202 | pl010_stop_tx(&uap->port); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | } | 
|  | 204 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 205 | static void pl010_modem_status(struct uart_amba_port *uap) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | unsigned int status, delta; | 
|  | 208 |  | 
| Russell King | 98639a6 | 2006-03-25 21:30:11 +0000 | [diff] [blame] | 209 | writel(0, uap->port.membase + UART010_ICR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 |  | 
| Russell King | 98639a6 | 2006-03-25 21:30:11 +0000 | [diff] [blame] | 211 | status = readb(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 |  | 
|  | 213 | delta = status ^ uap->old_status; | 
|  | 214 | uap->old_status = status; | 
|  | 215 |  | 
|  | 216 | if (!delta) | 
|  | 217 | return; | 
|  | 218 |  | 
|  | 219 | if (delta & UART01x_FR_DCD) | 
|  | 220 | uart_handle_dcd_change(&uap->port, status & UART01x_FR_DCD); | 
|  | 221 |  | 
|  | 222 | if (delta & UART01x_FR_DSR) | 
|  | 223 | uap->port.icount.dsr++; | 
|  | 224 |  | 
|  | 225 | if (delta & UART01x_FR_CTS) | 
|  | 226 | uart_handle_cts_change(&uap->port, status & UART01x_FR_CTS); | 
|  | 227 |  | 
| Alan Cox | bdc04e3 | 2009-09-19 13:13:31 -0700 | [diff] [blame] | 228 | wake_up_interruptible(&uap->port.state->port.delta_msr_wait); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | } | 
|  | 230 |  | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 231 | static irqreturn_t pl010_int(int irq, void *dev_id) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 233 | struct uart_amba_port *uap = dev_id; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | unsigned int status, pass_counter = AMBA_ISR_PASS_LIMIT; | 
|  | 235 | int handled = 0; | 
|  | 236 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 237 | spin_lock(&uap->port.lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 239 | status = readb(uap->port.membase + UART010_IIR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | if (status) { | 
|  | 241 | do { | 
|  | 242 | if (status & (UART010_IIR_RTIS | UART010_IIR_RIS)) | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 243 | pl010_rx_chars(uap); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | if (status & UART010_IIR_MIS) | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 245 | pl010_modem_status(uap); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | if (status & UART010_IIR_TIS) | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 247 | pl010_tx_chars(uap); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 |  | 
|  | 249 | if (pass_counter-- == 0) | 
|  | 250 | break; | 
|  | 251 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 252 | status = readb(uap->port.membase + UART010_IIR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | } while (status & (UART010_IIR_RTIS | UART010_IIR_RIS | | 
|  | 254 | UART010_IIR_TIS)); | 
|  | 255 | handled = 1; | 
|  | 256 | } | 
|  | 257 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 258 | spin_unlock(&uap->port.lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 |  | 
|  | 260 | return IRQ_RETVAL(handled); | 
|  | 261 | } | 
|  | 262 |  | 
|  | 263 | static unsigned int pl010_tx_empty(struct uart_port *port) | 
|  | 264 | { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 265 | struct uart_amba_port *uap = (struct uart_amba_port *)port; | 
|  | 266 | unsigned int status = readb(uap->port.membase + UART01x_FR); | 
|  | 267 | return status & UART01x_FR_BUSY ? 0 : TIOCSER_TEMT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | } | 
|  | 269 |  | 
|  | 270 | static unsigned int pl010_get_mctrl(struct uart_port *port) | 
|  | 271 | { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 272 | struct uart_amba_port *uap = (struct uart_amba_port *)port; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | unsigned int result = 0; | 
|  | 274 | unsigned int status; | 
|  | 275 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 276 | status = readb(uap->port.membase + UART01x_FR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | if (status & UART01x_FR_DCD) | 
|  | 278 | result |= TIOCM_CAR; | 
|  | 279 | if (status & UART01x_FR_DSR) | 
|  | 280 | result |= TIOCM_DSR; | 
|  | 281 | if (status & UART01x_FR_CTS) | 
|  | 282 | result |= TIOCM_CTS; | 
|  | 283 |  | 
|  | 284 | return result; | 
|  | 285 | } | 
|  | 286 |  | 
|  | 287 | static void pl010_set_mctrl(struct uart_port *port, unsigned int mctrl) | 
|  | 288 | { | 
|  | 289 | struct uart_amba_port *uap = (struct uart_amba_port *)port; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 |  | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 291 | if (uap->data) | 
|  | 292 | uap->data->set_mctrl(uap->dev, uap->port.membase, mctrl); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | } | 
|  | 294 |  | 
|  | 295 | static void pl010_break_ctl(struct uart_port *port, int break_state) | 
|  | 296 | { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 297 | struct uart_amba_port *uap = (struct uart_amba_port *)port; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | unsigned long flags; | 
|  | 299 | unsigned int lcr_h; | 
|  | 300 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 301 | spin_lock_irqsave(&uap->port.lock, flags); | 
|  | 302 | lcr_h = readb(uap->port.membase + UART010_LCRH); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | if (break_state == -1) | 
|  | 304 | lcr_h |= UART01x_LCRH_BRK; | 
|  | 305 | else | 
|  | 306 | lcr_h &= ~UART01x_LCRH_BRK; | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 307 | writel(lcr_h, uap->port.membase + UART010_LCRH); | 
|  | 308 | spin_unlock_irqrestore(&uap->port.lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | } | 
|  | 310 |  | 
|  | 311 | static int pl010_startup(struct uart_port *port) | 
|  | 312 | { | 
|  | 313 | struct uart_amba_port *uap = (struct uart_amba_port *)port; | 
|  | 314 | int retval; | 
|  | 315 |  | 
|  | 316 | /* | 
| Russell King | ed519de | 2007-04-22 12:30:41 +0100 | [diff] [blame] | 317 | * Try to enable the clock producer. | 
|  | 318 | */ | 
|  | 319 | retval = clk_enable(uap->clk); | 
|  | 320 | if (retval) | 
|  | 321 | goto out; | 
|  | 322 |  | 
|  | 323 | uap->port.uartclk = clk_get_rate(uap->clk); | 
|  | 324 |  | 
|  | 325 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | * Allocate the IRQ | 
|  | 327 | */ | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 328 | retval = request_irq(uap->port.irq, pl010_int, 0, "uart-pl010", uap); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | if (retval) | 
| Russell King | ed519de | 2007-04-22 12:30:41 +0100 | [diff] [blame] | 330 | goto clk_dis; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 |  | 
|  | 332 | /* | 
|  | 333 | * initialise the old status of the modem signals | 
|  | 334 | */ | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 335 | uap->old_status = readb(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 |  | 
|  | 337 | /* | 
|  | 338 | * Finally, enable interrupts | 
|  | 339 | */ | 
| Russell King | 98639a6 | 2006-03-25 21:30:11 +0000 | [diff] [blame] | 340 | writel(UART01x_CR_UARTEN | UART010_CR_RIE | UART010_CR_RTIE, | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 341 | uap->port.membase + UART010_CR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 |  | 
|  | 343 | return 0; | 
| Russell King | ed519de | 2007-04-22 12:30:41 +0100 | [diff] [blame] | 344 |  | 
|  | 345 | clk_dis: | 
|  | 346 | clk_disable(uap->clk); | 
|  | 347 | out: | 
|  | 348 | return retval; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | } | 
|  | 350 |  | 
|  | 351 | static void pl010_shutdown(struct uart_port *port) | 
|  | 352 | { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 353 | struct uart_amba_port *uap = (struct uart_amba_port *)port; | 
|  | 354 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | /* | 
|  | 356 | * Free the interrupt | 
|  | 357 | */ | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 358 | free_irq(uap->port.irq, uap); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 |  | 
|  | 360 | /* | 
|  | 361 | * disable all interrupts, disable the port | 
|  | 362 | */ | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 363 | writel(0, uap->port.membase + UART010_CR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 |  | 
|  | 365 | /* disable break condition and fifos */ | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 366 | writel(readb(uap->port.membase + UART010_LCRH) & | 
| Russell King | 98639a6 | 2006-03-25 21:30:11 +0000 | [diff] [blame] | 367 | ~(UART01x_LCRH_BRK | UART01x_LCRH_FEN), | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 368 | uap->port.membase + UART010_LCRH); | 
| Russell King | ed519de | 2007-04-22 12:30:41 +0100 | [diff] [blame] | 369 |  | 
|  | 370 | /* | 
|  | 371 | * Shut down the clock producer | 
|  | 372 | */ | 
|  | 373 | clk_disable(uap->clk); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | } | 
|  | 375 |  | 
|  | 376 | static void | 
| Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 377 | pl010_set_termios(struct uart_port *port, struct ktermios *termios, | 
|  | 378 | struct ktermios *old) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 380 | struct uart_amba_port *uap = (struct uart_amba_port *)port; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | unsigned int lcr_h, old_cr; | 
|  | 382 | unsigned long flags; | 
|  | 383 | unsigned int baud, quot; | 
|  | 384 |  | 
|  | 385 | /* | 
|  | 386 | * Ask the core to calculate the divisor for us. | 
|  | 387 | */ | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 388 | baud = uart_get_baud_rate(port, termios, old, 0, uap->port.uartclk/16); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | quot = uart_get_divisor(port, baud); | 
|  | 390 |  | 
|  | 391 | switch (termios->c_cflag & CSIZE) { | 
|  | 392 | case CS5: | 
|  | 393 | lcr_h = UART01x_LCRH_WLEN_5; | 
|  | 394 | break; | 
|  | 395 | case CS6: | 
|  | 396 | lcr_h = UART01x_LCRH_WLEN_6; | 
|  | 397 | break; | 
|  | 398 | case CS7: | 
|  | 399 | lcr_h = UART01x_LCRH_WLEN_7; | 
|  | 400 | break; | 
|  | 401 | default: // CS8 | 
|  | 402 | lcr_h = UART01x_LCRH_WLEN_8; | 
|  | 403 | break; | 
|  | 404 | } | 
|  | 405 | if (termios->c_cflag & CSTOPB) | 
|  | 406 | lcr_h |= UART01x_LCRH_STP2; | 
|  | 407 | if (termios->c_cflag & PARENB) { | 
|  | 408 | lcr_h |= UART01x_LCRH_PEN; | 
|  | 409 | if (!(termios->c_cflag & PARODD)) | 
|  | 410 | lcr_h |= UART01x_LCRH_EPS; | 
|  | 411 | } | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 412 | if (uap->port.fifosize > 1) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | lcr_h |= UART01x_LCRH_FEN; | 
|  | 414 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 415 | spin_lock_irqsave(&uap->port.lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 |  | 
|  | 417 | /* | 
|  | 418 | * Update the per-port timeout. | 
|  | 419 | */ | 
|  | 420 | uart_update_timeout(port, termios->c_cflag, baud); | 
|  | 421 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 422 | uap->port.read_status_mask = UART01x_RSR_OE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | if (termios->c_iflag & INPCK) | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 424 | uap->port.read_status_mask |= UART01x_RSR_FE | UART01x_RSR_PE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | if (termios->c_iflag & (BRKINT | PARMRK)) | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 426 | uap->port.read_status_mask |= UART01x_RSR_BE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 |  | 
|  | 428 | /* | 
|  | 429 | * Characters to ignore | 
|  | 430 | */ | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 431 | uap->port.ignore_status_mask = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | if (termios->c_iflag & IGNPAR) | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 433 | uap->port.ignore_status_mask |= UART01x_RSR_FE | UART01x_RSR_PE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | if (termios->c_iflag & IGNBRK) { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 435 | uap->port.ignore_status_mask |= UART01x_RSR_BE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | /* | 
|  | 437 | * If we're ignoring parity and break indicators, | 
|  | 438 | * ignore overruns too (for real raw support). | 
|  | 439 | */ | 
|  | 440 | if (termios->c_iflag & IGNPAR) | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 441 | uap->port.ignore_status_mask |= UART01x_RSR_OE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | } | 
|  | 443 |  | 
|  | 444 | /* | 
|  | 445 | * Ignore all characters if CREAD is not set. | 
|  | 446 | */ | 
|  | 447 | if ((termios->c_cflag & CREAD) == 0) | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 448 | uap->port.ignore_status_mask |= UART_DUMMY_RSR_RX; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 |  | 
|  | 450 | /* first, disable everything */ | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 451 | old_cr = readb(uap->port.membase + UART010_CR) & ~UART010_CR_MSIE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 |  | 
|  | 453 | if (UART_ENABLE_MS(port, termios->c_cflag)) | 
|  | 454 | old_cr |= UART010_CR_MSIE; | 
|  | 455 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 456 | writel(0, uap->port.membase + UART010_CR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 |  | 
|  | 458 | /* Set baud rate */ | 
|  | 459 | quot -= 1; | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 460 | writel((quot & 0xf00) >> 8, uap->port.membase + UART010_LCRM); | 
|  | 461 | writel(quot & 0xff, uap->port.membase + UART010_LCRL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 |  | 
|  | 463 | /* | 
|  | 464 | * ----------v----------v----------v----------v----- | 
|  | 465 | * NOTE: MUST BE WRITTEN AFTER UARTLCR_M & UARTLCR_L | 
|  | 466 | * ----------^----------^----------^----------^----- | 
|  | 467 | */ | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 468 | writel(lcr_h, uap->port.membase + UART010_LCRH); | 
|  | 469 | writel(old_cr, uap->port.membase + UART010_CR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 471 | spin_unlock_irqrestore(&uap->port.lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | } | 
|  | 473 |  | 
|  | 474 | static const char *pl010_type(struct uart_port *port) | 
|  | 475 | { | 
|  | 476 | return port->type == PORT_AMBA ? "AMBA" : NULL; | 
|  | 477 | } | 
|  | 478 |  | 
|  | 479 | /* | 
|  | 480 | * Release the memory region(s) being used by 'port' | 
|  | 481 | */ | 
|  | 482 | static void pl010_release_port(struct uart_port *port) | 
|  | 483 | { | 
|  | 484 | release_mem_region(port->mapbase, UART_PORT_SIZE); | 
|  | 485 | } | 
|  | 486 |  | 
|  | 487 | /* | 
|  | 488 | * Request the memory region(s) being used by 'port' | 
|  | 489 | */ | 
|  | 490 | static int pl010_request_port(struct uart_port *port) | 
|  | 491 | { | 
|  | 492 | return request_mem_region(port->mapbase, UART_PORT_SIZE, "uart-pl010") | 
|  | 493 | != NULL ? 0 : -EBUSY; | 
|  | 494 | } | 
|  | 495 |  | 
|  | 496 | /* | 
|  | 497 | * Configure/autoconfigure the port. | 
|  | 498 | */ | 
|  | 499 | static void pl010_config_port(struct uart_port *port, int flags) | 
|  | 500 | { | 
|  | 501 | if (flags & UART_CONFIG_TYPE) { | 
|  | 502 | port->type = PORT_AMBA; | 
|  | 503 | pl010_request_port(port); | 
|  | 504 | } | 
|  | 505 | } | 
|  | 506 |  | 
|  | 507 | /* | 
|  | 508 | * verify the new serial_struct (for TIOCSSERIAL). | 
|  | 509 | */ | 
|  | 510 | static int pl010_verify_port(struct uart_port *port, struct serial_struct *ser) | 
|  | 511 | { | 
|  | 512 | int ret = 0; | 
|  | 513 | if (ser->type != PORT_UNKNOWN && ser->type != PORT_AMBA) | 
|  | 514 | ret = -EINVAL; | 
| Yinghai Lu | a62c413 | 2008-08-19 20:49:55 -0700 | [diff] [blame] | 515 | if (ser->irq < 0 || ser->irq >= nr_irqs) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | ret = -EINVAL; | 
|  | 517 | if (ser->baud_base < 9600) | 
|  | 518 | ret = -EINVAL; | 
|  | 519 | return ret; | 
|  | 520 | } | 
|  | 521 |  | 
|  | 522 | static struct uart_ops amba_pl010_pops = { | 
|  | 523 | .tx_empty	= pl010_tx_empty, | 
|  | 524 | .set_mctrl	= pl010_set_mctrl, | 
|  | 525 | .get_mctrl	= pl010_get_mctrl, | 
|  | 526 | .stop_tx	= pl010_stop_tx, | 
|  | 527 | .start_tx	= pl010_start_tx, | 
|  | 528 | .stop_rx	= pl010_stop_rx, | 
|  | 529 | .enable_ms	= pl010_enable_ms, | 
|  | 530 | .break_ctl	= pl010_break_ctl, | 
|  | 531 | .startup	= pl010_startup, | 
|  | 532 | .shutdown	= pl010_shutdown, | 
|  | 533 | .set_termios	= pl010_set_termios, | 
|  | 534 | .type		= pl010_type, | 
|  | 535 | .release_port	= pl010_release_port, | 
|  | 536 | .request_port	= pl010_request_port, | 
|  | 537 | .config_port	= pl010_config_port, | 
|  | 538 | .verify_port	= pl010_verify_port, | 
|  | 539 | }; | 
|  | 540 |  | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 541 | static struct uart_amba_port *amba_ports[UART_NR]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 |  | 
|  | 543 | #ifdef CONFIG_SERIAL_AMBA_PL010_CONSOLE | 
|  | 544 |  | 
| Russell King | d358788 | 2006-03-20 20:00:09 +0000 | [diff] [blame] | 545 | static void pl010_console_putchar(struct uart_port *port, int ch) | 
|  | 546 | { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 547 | struct uart_amba_port *uap = (struct uart_amba_port *)port; | 
| Russell King | 98639a6 | 2006-03-25 21:30:11 +0000 | [diff] [blame] | 548 | unsigned int status; | 
|  | 549 |  | 
|  | 550 | do { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 551 | status = readb(uap->port.membase + UART01x_FR); | 
| Russell King | d358788 | 2006-03-20 20:00:09 +0000 | [diff] [blame] | 552 | barrier(); | 
| Russell King | 98639a6 | 2006-03-25 21:30:11 +0000 | [diff] [blame] | 553 | } while (!UART_TX_READY(status)); | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 554 | writel(ch, uap->port.membase + UART01x_DR); | 
| Russell King | d358788 | 2006-03-20 20:00:09 +0000 | [diff] [blame] | 555 | } | 
|  | 556 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | static void | 
|  | 558 | pl010_console_write(struct console *co, const char *s, unsigned int count) | 
|  | 559 | { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 560 | struct uart_amba_port *uap = amba_ports[co->index]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | unsigned int status, old_cr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 |  | 
| Russell King | ed519de | 2007-04-22 12:30:41 +0100 | [diff] [blame] | 563 | clk_enable(uap->clk); | 
|  | 564 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | /* | 
|  | 566 | *	First save the CR then disable the interrupts | 
|  | 567 | */ | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 568 | old_cr = readb(uap->port.membase + UART010_CR); | 
|  | 569 | writel(UART01x_CR_UARTEN, uap->port.membase + UART010_CR); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 571 | uart_console_write(&uap->port, s, count, pl010_console_putchar); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 |  | 
|  | 573 | /* | 
|  | 574 | *	Finally, wait for transmitter to become empty | 
|  | 575 | *	and restore the TCR | 
|  | 576 | */ | 
|  | 577 | do { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 578 | status = readb(uap->port.membase + UART01x_FR); | 
| Russell King | 98639a6 | 2006-03-25 21:30:11 +0000 | [diff] [blame] | 579 | barrier(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | } while (status & UART01x_FR_BUSY); | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 581 | writel(old_cr, uap->port.membase + UART010_CR); | 
| Russell King | ed519de | 2007-04-22 12:30:41 +0100 | [diff] [blame] | 582 |  | 
|  | 583 | clk_disable(uap->clk); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | } | 
|  | 585 |  | 
|  | 586 | static void __init | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 587 | pl010_console_get_options(struct uart_amba_port *uap, int *baud, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | int *parity, int *bits) | 
|  | 589 | { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 590 | if (readb(uap->port.membase + UART010_CR) & UART01x_CR_UARTEN) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | unsigned int lcr_h, quot; | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 592 | lcr_h = readb(uap->port.membase + UART010_LCRH); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 |  | 
|  | 594 | *parity = 'n'; | 
|  | 595 | if (lcr_h & UART01x_LCRH_PEN) { | 
|  | 596 | if (lcr_h & UART01x_LCRH_EPS) | 
|  | 597 | *parity = 'e'; | 
|  | 598 | else | 
|  | 599 | *parity = 'o'; | 
|  | 600 | } | 
|  | 601 |  | 
|  | 602 | if ((lcr_h & 0x60) == UART01x_LCRH_WLEN_7) | 
|  | 603 | *bits = 7; | 
|  | 604 | else | 
|  | 605 | *bits = 8; | 
|  | 606 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 607 | quot = readb(uap->port.membase + UART010_LCRL) | | 
|  | 608 | readb(uap->port.membase + UART010_LCRM) << 8; | 
|  | 609 | *baud = uap->port.uartclk / (16 * (quot + 1)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | } | 
|  | 611 | } | 
|  | 612 |  | 
|  | 613 | static int __init pl010_console_setup(struct console *co, char *options) | 
|  | 614 | { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 615 | struct uart_amba_port *uap; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | int baud = 38400; | 
|  | 617 | int bits = 8; | 
|  | 618 | int parity = 'n'; | 
|  | 619 | int flow = 'n'; | 
|  | 620 |  | 
|  | 621 | /* | 
|  | 622 | * Check whether an invalid uart number has been specified, and | 
|  | 623 | * if so, search for the first available port that does have | 
|  | 624 | * console support. | 
|  | 625 | */ | 
|  | 626 | if (co->index >= UART_NR) | 
|  | 627 | co->index = 0; | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 628 | uap = amba_ports[co->index]; | 
|  | 629 | if (!uap) | 
| Russell King | d28122a | 2007-01-22 18:59:42 +0000 | [diff] [blame] | 630 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 |  | 
| Russell King | ed519de | 2007-04-22 12:30:41 +0100 | [diff] [blame] | 632 | uap->port.uartclk = clk_get_rate(uap->clk); | 
|  | 633 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | if (options) | 
|  | 635 | uart_parse_options(options, &baud, &parity, &bits, &flow); | 
|  | 636 | else | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 637 | pl010_console_get_options(uap, &baud, &parity, &bits); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 639 | return uart_set_options(&uap->port, co, baud, parity, bits, flow); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | } | 
|  | 641 |  | 
| Vincent Sanders | 2d93486 | 2005-09-14 22:36:03 +0100 | [diff] [blame] | 642 | static struct uart_driver amba_reg; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | static struct console amba_console = { | 
|  | 644 | .name		= "ttyAM", | 
|  | 645 | .write		= pl010_console_write, | 
|  | 646 | .device		= uart_console_device, | 
|  | 647 | .setup		= pl010_console_setup, | 
|  | 648 | .flags		= CON_PRINTBUFFER, | 
|  | 649 | .index		= -1, | 
|  | 650 | .data		= &amba_reg, | 
|  | 651 | }; | 
|  | 652 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | #define AMBA_CONSOLE	&amba_console | 
|  | 654 | #else | 
|  | 655 | #define AMBA_CONSOLE	NULL | 
|  | 656 | #endif | 
|  | 657 |  | 
|  | 658 | static struct uart_driver amba_reg = { | 
|  | 659 | .owner			= THIS_MODULE, | 
|  | 660 | .driver_name		= "ttyAM", | 
|  | 661 | .dev_name		= "ttyAM", | 
|  | 662 | .major			= SERIAL_AMBA_MAJOR, | 
|  | 663 | .minor			= SERIAL_AMBA_MINOR, | 
|  | 664 | .nr			= UART_NR, | 
|  | 665 | .cons			= AMBA_CONSOLE, | 
|  | 666 | }; | 
|  | 667 |  | 
| Alessandro Rubini | 03fbdb1 | 2009-05-20 22:39:08 +0100 | [diff] [blame] | 668 | static int pl010_probe(struct amba_device *dev, struct amba_id *id) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 670 | struct uart_amba_port *uap; | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 671 | void __iomem *base; | 
|  | 672 | int i, ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 |  | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 674 | for (i = 0; i < ARRAY_SIZE(amba_ports); i++) | 
|  | 675 | if (amba_ports[i] == NULL) | 
|  | 676 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 |  | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 678 | if (i == ARRAY_SIZE(amba_ports)) { | 
|  | 679 | ret = -EBUSY; | 
|  | 680 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | } | 
|  | 682 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 683 | uap = kzalloc(sizeof(struct uart_amba_port), GFP_KERNEL); | 
|  | 684 | if (!uap) { | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 685 | ret = -ENOMEM; | 
|  | 686 | goto out; | 
|  | 687 | } | 
|  | 688 |  | 
| Linus Walleij | dc890c2 | 2009-06-07 23:27:31 +0100 | [diff] [blame] | 689 | base = ioremap(dev->res.start, resource_size(&dev->res)); | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 690 | if (!base) { | 
|  | 691 | ret = -ENOMEM; | 
|  | 692 | goto free; | 
|  | 693 | } | 
|  | 694 |  | 
| Russell King | ee569c4 | 2008-11-30 17:38:14 +0000 | [diff] [blame] | 695 | uap->clk = clk_get(&dev->dev, NULL); | 
| Russell King | ed519de | 2007-04-22 12:30:41 +0100 | [diff] [blame] | 696 | if (IS_ERR(uap->clk)) { | 
|  | 697 | ret = PTR_ERR(uap->clk); | 
|  | 698 | goto unmap; | 
|  | 699 | } | 
|  | 700 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 701 | uap->port.dev = &dev->dev; | 
|  | 702 | uap->port.mapbase = dev->res.start; | 
|  | 703 | uap->port.membase = base; | 
|  | 704 | uap->port.iotype = UPIO_MEM; | 
|  | 705 | uap->port.irq = dev->irq[0]; | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 706 | uap->port.fifosize = 16; | 
|  | 707 | uap->port.ops = &amba_pl010_pops; | 
|  | 708 | uap->port.flags = UPF_BOOT_AUTOCONF; | 
|  | 709 | uap->port.line = i; | 
|  | 710 | uap->dev = dev; | 
|  | 711 | uap->data = dev->dev.platform_data; | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 712 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 713 | amba_ports[i] = uap; | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 714 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 715 | amba_set_drvdata(dev, uap); | 
|  | 716 | ret = uart_add_one_port(&amba_reg, &uap->port); | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 717 | if (ret) { | 
|  | 718 | amba_set_drvdata(dev, NULL); | 
|  | 719 | amba_ports[i] = NULL; | 
| Russell King | ed519de | 2007-04-22 12:30:41 +0100 | [diff] [blame] | 720 | clk_put(uap->clk); | 
|  | 721 | unmap: | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 722 | iounmap(base); | 
|  | 723 | free: | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 724 | kfree(uap); | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 725 | } | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 726 | out: | 
|  | 727 | return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | } | 
|  | 729 |  | 
|  | 730 | static int pl010_remove(struct amba_device *dev) | 
|  | 731 | { | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 732 | struct uart_amba_port *uap = amba_get_drvdata(dev); | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 733 | int i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 |  | 
|  | 735 | amba_set_drvdata(dev, NULL); | 
|  | 736 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 737 | uart_remove_one_port(&amba_reg, &uap->port); | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 738 |  | 
|  | 739 | for (i = 0; i < ARRAY_SIZE(amba_ports); i++) | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 740 | if (amba_ports[i] == uap) | 
| Russell King | fbb18a2 | 2006-03-26 23:13:39 +0100 | [diff] [blame] | 741 | amba_ports[i] = NULL; | 
|  | 742 |  | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 743 | iounmap(uap->port.membase); | 
| Russell King | ed519de | 2007-04-22 12:30:41 +0100 | [diff] [blame] | 744 | clk_put(uap->clk); | 
| Russell King | 1b0646a | 2007-04-22 11:55:59 +0100 | [diff] [blame] | 745 | kfree(uap); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | return 0; | 
|  | 747 | } | 
|  | 748 |  | 
| Pavel Machek | 0370aff | 2005-04-16 15:25:35 -0700 | [diff] [blame] | 749 | static int pl010_suspend(struct amba_device *dev, pm_message_t state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | { | 
|  | 751 | struct uart_amba_port *uap = amba_get_drvdata(dev); | 
|  | 752 |  | 
|  | 753 | if (uap) | 
|  | 754 | uart_suspend_port(&amba_reg, &uap->port); | 
|  | 755 |  | 
|  | 756 | return 0; | 
|  | 757 | } | 
|  | 758 |  | 
|  | 759 | static int pl010_resume(struct amba_device *dev) | 
|  | 760 | { | 
|  | 761 | struct uart_amba_port *uap = amba_get_drvdata(dev); | 
|  | 762 |  | 
|  | 763 | if (uap) | 
|  | 764 | uart_resume_port(&amba_reg, &uap->port); | 
|  | 765 |  | 
|  | 766 | return 0; | 
|  | 767 | } | 
|  | 768 |  | 
|  | 769 | static struct amba_id pl010_ids[] __initdata = { | 
|  | 770 | { | 
|  | 771 | .id	= 0x00041010, | 
|  | 772 | .mask	= 0x000fffff, | 
|  | 773 | }, | 
|  | 774 | { 0, 0 }, | 
|  | 775 | }; | 
|  | 776 |  | 
|  | 777 | static struct amba_driver pl010_driver = { | 
|  | 778 | .drv = { | 
|  | 779 | .name	= "uart-pl010", | 
|  | 780 | }, | 
|  | 781 | .id_table	= pl010_ids, | 
|  | 782 | .probe		= pl010_probe, | 
|  | 783 | .remove		= pl010_remove, | 
|  | 784 | .suspend	= pl010_suspend, | 
|  | 785 | .resume		= pl010_resume, | 
|  | 786 | }; | 
|  | 787 |  | 
|  | 788 | static int __init pl010_init(void) | 
|  | 789 | { | 
|  | 790 | int ret; | 
|  | 791 |  | 
| Adrian Bunk | d87a6d9 | 2008-07-16 21:53:31 +0100 | [diff] [blame] | 792 | printk(KERN_INFO "Serial: AMBA driver\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 |  | 
|  | 794 | ret = uart_register_driver(&amba_reg); | 
|  | 795 | if (ret == 0) { | 
|  | 796 | ret = amba_driver_register(&pl010_driver); | 
|  | 797 | if (ret) | 
|  | 798 | uart_unregister_driver(&amba_reg); | 
|  | 799 | } | 
|  | 800 | return ret; | 
|  | 801 | } | 
|  | 802 |  | 
|  | 803 | static void __exit pl010_exit(void) | 
|  | 804 | { | 
|  | 805 | amba_driver_unregister(&pl010_driver); | 
|  | 806 | uart_unregister_driver(&amba_reg); | 
|  | 807 | } | 
|  | 808 |  | 
|  | 809 | module_init(pl010_init); | 
|  | 810 | module_exit(pl010_exit); | 
|  | 811 |  | 
|  | 812 | MODULE_AUTHOR("ARM Ltd/Deep Blue Solutions Ltd"); | 
| Adrian Bunk | d87a6d9 | 2008-07-16 21:53:31 +0100 | [diff] [blame] | 813 | MODULE_DESCRIPTION("ARM AMBA serial port driver"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | MODULE_LICENSE("GPL"); |