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