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