Greg Kroah-Hartman | e3b3d0f | 2017-11-06 18:11:51 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 2 | /* |
| 3 | * *************************************************************************** |
Paul Gortmaker | 89ebc27 | 2016-03-13 19:48:52 -0400 | [diff] [blame] | 4 | * Marvell Armada-3700 Serial Driver |
| 5 | * Author: Wilson Ding <dingwei@marvell.com> |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 6 | * Copyright (C) 2015 Marvell International Ltd. |
| 7 | * *************************************************************************** |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <linux/clk.h> |
| 11 | #include <linux/console.h> |
| 12 | #include <linux/delay.h> |
| 13 | #include <linux/device.h> |
| 14 | #include <linux/init.h> |
| 15 | #include <linux/io.h> |
| 16 | #include <linux/iopoll.h> |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 17 | #include <linux/of.h> |
| 18 | #include <linux/of_address.h> |
| 19 | #include <linux/of_device.h> |
| 20 | #include <linux/of_irq.h> |
| 21 | #include <linux/of_platform.h> |
| 22 | #include <linux/platform_device.h> |
| 23 | #include <linux/serial.h> |
| 24 | #include <linux/serial_core.h> |
| 25 | #include <linux/slab.h> |
| 26 | #include <linux/tty.h> |
| 27 | #include <linux/tty_flip.h> |
| 28 | |
| 29 | /* Register Map */ |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 30 | #define UART_STD_RBR 0x00 |
Miquel Raynal | 53501e0 | 2017-10-13 11:01:56 +0200 | [diff] [blame] | 31 | #define UART_EXT_RBR 0x18 |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 32 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 33 | #define UART_STD_TSH 0x04 |
Miquel Raynal | 53501e0 | 2017-10-13 11:01:56 +0200 | [diff] [blame] | 34 | #define UART_EXT_TSH 0x1C |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 35 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 36 | #define UART_STD_CTRL1 0x08 |
Miquel Raynal | 53501e0 | 2017-10-13 11:01:56 +0200 | [diff] [blame] | 37 | #define UART_EXT_CTRL1 0x04 |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 38 | #define CTRL_SOFT_RST BIT(31) |
| 39 | #define CTRL_TXFIFO_RST BIT(15) |
| 40 | #define CTRL_RXFIFO_RST BIT(14) |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 41 | #define CTRL_SND_BRK_SEQ BIT(11) |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 42 | #define CTRL_BRK_DET_INT BIT(3) |
| 43 | #define CTRL_FRM_ERR_INT BIT(2) |
| 44 | #define CTRL_PAR_ERR_INT BIT(1) |
| 45 | #define CTRL_OVR_ERR_INT BIT(0) |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 46 | #define CTRL_BRK_INT (CTRL_BRK_DET_INT | CTRL_FRM_ERR_INT | \ |
| 47 | CTRL_PAR_ERR_INT | CTRL_OVR_ERR_INT) |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 48 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 49 | #define UART_STD_CTRL2 UART_STD_CTRL1 |
Miquel Raynal | 53501e0 | 2017-10-13 11:01:56 +0200 | [diff] [blame] | 50 | #define UART_EXT_CTRL2 0x20 |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 51 | #define CTRL_STD_TX_RDY_INT BIT(5) |
Miquel Raynal | 53501e0 | 2017-10-13 11:01:56 +0200 | [diff] [blame] | 52 | #define CTRL_EXT_TX_RDY_INT BIT(6) |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 53 | #define CTRL_STD_RX_RDY_INT BIT(4) |
Miquel Raynal | 53501e0 | 2017-10-13 11:01:56 +0200 | [diff] [blame] | 54 | #define CTRL_EXT_RX_RDY_INT BIT(5) |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 55 | |
| 56 | #define UART_STAT 0x0C |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 57 | #define STAT_TX_FIFO_EMP BIT(13) |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 58 | #define STAT_TX_FIFO_FUL BIT(11) |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 59 | #define STAT_TX_EMP BIT(6) |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 60 | #define STAT_STD_TX_RDY BIT(5) |
Miquel Raynal | 53501e0 | 2017-10-13 11:01:56 +0200 | [diff] [blame] | 61 | #define STAT_EXT_TX_RDY BIT(15) |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 62 | #define STAT_STD_RX_RDY BIT(4) |
Miquel Raynal | 53501e0 | 2017-10-13 11:01:56 +0200 | [diff] [blame] | 63 | #define STAT_EXT_RX_RDY BIT(14) |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 64 | #define STAT_BRK_DET BIT(3) |
| 65 | #define STAT_FRM_ERR BIT(2) |
| 66 | #define STAT_PAR_ERR BIT(1) |
| 67 | #define STAT_OVR_ERR BIT(0) |
Colin Ian King | 0ef5a6e | 2018-02-23 14:14:51 +0000 | [diff] [blame] | 68 | #define STAT_BRK_ERR (STAT_BRK_DET | STAT_FRM_ERR \ |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 69 | | STAT_PAR_ERR | STAT_OVR_ERR) |
| 70 | |
| 71 | #define UART_BRDV 0x10 |
Allen Yan | 68a0db1 | 2017-10-13 11:01:51 +0200 | [diff] [blame] | 72 | #define BRDV_BAUD_MASK 0x3FF |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 73 | |
Miquel Raynal | 394e835 | 2018-04-21 16:07:33 +0200 | [diff] [blame] | 74 | #define UART_OSAMP 0x14 |
Miquel Raynal | 0e4cf69 | 2018-11-23 16:45:29 +0100 | [diff] [blame^] | 75 | #define OSAMP_DEFAULT_DIVISOR 16 |
Miquel Raynal | 394e835 | 2018-04-21 16:07:33 +0200 | [diff] [blame] | 76 | |
Miquel Raynal | 3a75e91 | 2017-10-13 11:01:55 +0200 | [diff] [blame] | 77 | #define MVEBU_NR_UARTS 2 |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 78 | |
| 79 | #define MVEBU_UART_TYPE "mvebu-uart" |
Yehuda Yitschak | 02c3333 | 2017-10-13 11:01:47 +0200 | [diff] [blame] | 80 | #define DRIVER_NAME "mvebu_serial" |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 81 | |
Miquel Raynal | 95f7876 | 2017-10-13 11:01:54 +0200 | [diff] [blame] | 82 | enum { |
| 83 | /* Either there is only one summed IRQ... */ |
| 84 | UART_IRQ_SUM = 0, |
| 85 | /* ...or there are two separate IRQ for RX and TX */ |
| 86 | UART_RX_IRQ = 0, |
| 87 | UART_TX_IRQ, |
| 88 | UART_IRQ_COUNT |
| 89 | }; |
| 90 | |
| 91 | /* Diverging register offsets */ |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 92 | struct uart_regs_layout { |
| 93 | unsigned int rbr; |
| 94 | unsigned int tsh; |
| 95 | unsigned int ctrl; |
| 96 | unsigned int intr; |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 97 | }; |
| 98 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 99 | /* Diverging flags */ |
| 100 | struct uart_flags { |
| 101 | unsigned int ctrl_tx_rdy_int; |
| 102 | unsigned int ctrl_rx_rdy_int; |
| 103 | unsigned int stat_tx_rdy; |
| 104 | unsigned int stat_rx_rdy; |
| 105 | }; |
| 106 | |
| 107 | /* Driver data, a structure for each UART port */ |
| 108 | struct mvebu_uart_driver_data { |
| 109 | bool is_ext; |
| 110 | struct uart_regs_layout regs; |
| 111 | struct uart_flags flags; |
| 112 | }; |
| 113 | |
Miquel Raynal | 394e835 | 2018-04-21 16:07:33 +0200 | [diff] [blame] | 114 | /* Saved registers during suspend */ |
| 115 | struct mvebu_uart_pm_regs { |
| 116 | unsigned int rbr; |
| 117 | unsigned int tsh; |
| 118 | unsigned int ctrl; |
| 119 | unsigned int intr; |
| 120 | unsigned int stat; |
| 121 | unsigned int brdv; |
| 122 | unsigned int osamp; |
| 123 | }; |
| 124 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 125 | /* MVEBU UART driver structure */ |
| 126 | struct mvebu_uart { |
| 127 | struct uart_port *port; |
| 128 | struct clk *clk; |
Miquel Raynal | 95f7876 | 2017-10-13 11:01:54 +0200 | [diff] [blame] | 129 | int irq[UART_IRQ_COUNT]; |
| 130 | unsigned char __iomem *nb; |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 131 | struct mvebu_uart_driver_data *data; |
Miquel Raynal | 394e835 | 2018-04-21 16:07:33 +0200 | [diff] [blame] | 132 | #if defined(CONFIG_PM) |
| 133 | struct mvebu_uart_pm_regs pm_regs; |
| 134 | #endif /* CONFIG_PM */ |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 135 | }; |
| 136 | |
| 137 | static struct mvebu_uart *to_mvuart(struct uart_port *port) |
| 138 | { |
| 139 | return (struct mvebu_uart *)port->private_data; |
| 140 | } |
| 141 | |
| 142 | #define IS_EXTENDED(port) (to_mvuart(port)->data->is_ext) |
| 143 | |
| 144 | #define UART_RBR(port) (to_mvuart(port)->data->regs.rbr) |
| 145 | #define UART_TSH(port) (to_mvuart(port)->data->regs.tsh) |
| 146 | #define UART_CTRL(port) (to_mvuart(port)->data->regs.ctrl) |
| 147 | #define UART_INTR(port) (to_mvuart(port)->data->regs.intr) |
| 148 | |
| 149 | #define CTRL_TX_RDY_INT(port) (to_mvuart(port)->data->flags.ctrl_tx_rdy_int) |
| 150 | #define CTRL_RX_RDY_INT(port) (to_mvuart(port)->data->flags.ctrl_rx_rdy_int) |
| 151 | #define STAT_TX_RDY(port) (to_mvuart(port)->data->flags.stat_tx_rdy) |
| 152 | #define STAT_RX_RDY(port) (to_mvuart(port)->data->flags.stat_rx_rdy) |
| 153 | |
| 154 | static struct uart_port mvebu_uart_ports[MVEBU_NR_UARTS]; |
| 155 | |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 156 | /* Core UART Driver Operations */ |
| 157 | static unsigned int mvebu_uart_tx_empty(struct uart_port *port) |
| 158 | { |
| 159 | unsigned long flags; |
| 160 | unsigned int st; |
| 161 | |
| 162 | spin_lock_irqsave(&port->lock, flags); |
| 163 | st = readl(port->membase + UART_STAT); |
| 164 | spin_unlock_irqrestore(&port->lock, flags); |
| 165 | |
| 166 | return (st & STAT_TX_FIFO_EMP) ? TIOCSER_TEMT : 0; |
| 167 | } |
| 168 | |
| 169 | static unsigned int mvebu_uart_get_mctrl(struct uart_port *port) |
| 170 | { |
| 171 | return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR; |
| 172 | } |
| 173 | |
| 174 | static void mvebu_uart_set_mctrl(struct uart_port *port, |
| 175 | unsigned int mctrl) |
| 176 | { |
| 177 | /* |
| 178 | * Even if we do not support configuring the modem control lines, this |
| 179 | * function must be proided to the serial core |
| 180 | */ |
| 181 | } |
| 182 | |
| 183 | static void mvebu_uart_stop_tx(struct uart_port *port) |
| 184 | { |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 185 | unsigned int ctl = readl(port->membase + UART_INTR(port)); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 186 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 187 | ctl &= ~CTRL_TX_RDY_INT(port); |
| 188 | writel(ctl, port->membase + UART_INTR(port)); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | static void mvebu_uart_start_tx(struct uart_port *port) |
| 192 | { |
Allen Yan | 30434b0 | 2017-10-13 11:01:53 +0200 | [diff] [blame] | 193 | unsigned int ctl; |
| 194 | struct circ_buf *xmit = &port->state->xmit; |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 195 | |
Allen Yan | 30434b0 | 2017-10-13 11:01:53 +0200 | [diff] [blame] | 196 | if (IS_EXTENDED(port) && !uart_circ_empty(xmit)) { |
| 197 | writel(xmit->buf[xmit->tail], port->membase + UART_TSH(port)); |
| 198 | xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); |
| 199 | port->icount.tx++; |
| 200 | } |
| 201 | |
| 202 | ctl = readl(port->membase + UART_INTR(port)); |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 203 | ctl |= CTRL_TX_RDY_INT(port); |
| 204 | writel(ctl, port->membase + UART_INTR(port)); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | static void mvebu_uart_stop_rx(struct uart_port *port) |
| 208 | { |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 209 | unsigned int ctl; |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 210 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 211 | ctl = readl(port->membase + UART_CTRL(port)); |
| 212 | ctl &= ~CTRL_BRK_INT; |
| 213 | writel(ctl, port->membase + UART_CTRL(port)); |
| 214 | |
| 215 | ctl = readl(port->membase + UART_INTR(port)); |
| 216 | ctl &= ~CTRL_RX_RDY_INT(port); |
| 217 | writel(ctl, port->membase + UART_INTR(port)); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | static void mvebu_uart_break_ctl(struct uart_port *port, int brk) |
| 221 | { |
| 222 | unsigned int ctl; |
| 223 | unsigned long flags; |
| 224 | |
| 225 | spin_lock_irqsave(&port->lock, flags); |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 226 | ctl = readl(port->membase + UART_CTRL(port)); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 227 | if (brk == -1) |
| 228 | ctl |= CTRL_SND_BRK_SEQ; |
| 229 | else |
| 230 | ctl &= ~CTRL_SND_BRK_SEQ; |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 231 | writel(ctl, port->membase + UART_CTRL(port)); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 232 | spin_unlock_irqrestore(&port->lock, flags); |
| 233 | } |
| 234 | |
| 235 | static void mvebu_uart_rx_chars(struct uart_port *port, unsigned int status) |
| 236 | { |
| 237 | struct tty_port *tport = &port->state->port; |
| 238 | unsigned char ch = 0; |
| 239 | char flag = 0; |
| 240 | |
| 241 | do { |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 242 | if (status & STAT_RX_RDY(port)) { |
| 243 | ch = readl(port->membase + UART_RBR(port)); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 244 | ch &= 0xff; |
| 245 | flag = TTY_NORMAL; |
| 246 | port->icount.rx++; |
| 247 | |
| 248 | if (status & STAT_PAR_ERR) |
| 249 | port->icount.parity++; |
| 250 | } |
| 251 | |
| 252 | if (status & STAT_BRK_DET) { |
| 253 | port->icount.brk++; |
| 254 | status &= ~(STAT_FRM_ERR | STAT_PAR_ERR); |
| 255 | if (uart_handle_break(port)) |
| 256 | goto ignore_char; |
| 257 | } |
| 258 | |
| 259 | if (status & STAT_OVR_ERR) |
| 260 | port->icount.overrun++; |
| 261 | |
| 262 | if (status & STAT_FRM_ERR) |
| 263 | port->icount.frame++; |
| 264 | |
| 265 | if (uart_handle_sysrq_char(port, ch)) |
| 266 | goto ignore_char; |
| 267 | |
| 268 | if (status & port->ignore_status_mask & STAT_PAR_ERR) |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 269 | status &= ~STAT_RX_RDY(port); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 270 | |
| 271 | status &= port->read_status_mask; |
| 272 | |
| 273 | if (status & STAT_PAR_ERR) |
| 274 | flag = TTY_PARITY; |
| 275 | |
| 276 | status &= ~port->ignore_status_mask; |
| 277 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 278 | if (status & STAT_RX_RDY(port)) |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 279 | tty_insert_flip_char(tport, ch, flag); |
| 280 | |
| 281 | if (status & STAT_BRK_DET) |
| 282 | tty_insert_flip_char(tport, 0, TTY_BREAK); |
| 283 | |
| 284 | if (status & STAT_FRM_ERR) |
| 285 | tty_insert_flip_char(tport, 0, TTY_FRAME); |
| 286 | |
| 287 | if (status & STAT_OVR_ERR) |
| 288 | tty_insert_flip_char(tport, 0, TTY_OVERRUN); |
| 289 | |
| 290 | ignore_char: |
| 291 | status = readl(port->membase + UART_STAT); |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 292 | } while (status & (STAT_RX_RDY(port) | STAT_BRK_DET)); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 293 | |
| 294 | tty_flip_buffer_push(tport); |
| 295 | } |
| 296 | |
| 297 | static void mvebu_uart_tx_chars(struct uart_port *port, unsigned int status) |
| 298 | { |
| 299 | struct circ_buf *xmit = &port->state->xmit; |
| 300 | unsigned int count; |
| 301 | unsigned int st; |
| 302 | |
| 303 | if (port->x_char) { |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 304 | writel(port->x_char, port->membase + UART_TSH(port)); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 305 | port->icount.tx++; |
| 306 | port->x_char = 0; |
| 307 | return; |
| 308 | } |
| 309 | |
| 310 | if (uart_circ_empty(xmit) || uart_tx_stopped(port)) { |
| 311 | mvebu_uart_stop_tx(port); |
| 312 | return; |
| 313 | } |
| 314 | |
| 315 | for (count = 0; count < port->fifosize; count++) { |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 316 | writel(xmit->buf[xmit->tail], port->membase + UART_TSH(port)); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 317 | xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); |
| 318 | port->icount.tx++; |
| 319 | |
| 320 | if (uart_circ_empty(xmit)) |
| 321 | break; |
| 322 | |
| 323 | st = readl(port->membase + UART_STAT); |
| 324 | if (st & STAT_TX_FIFO_FUL) |
| 325 | break; |
| 326 | } |
| 327 | |
| 328 | if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) |
| 329 | uart_write_wakeup(port); |
| 330 | |
| 331 | if (uart_circ_empty(xmit)) |
| 332 | mvebu_uart_stop_tx(port); |
| 333 | } |
| 334 | |
| 335 | static irqreturn_t mvebu_uart_isr(int irq, void *dev_id) |
| 336 | { |
| 337 | struct uart_port *port = (struct uart_port *)dev_id; |
| 338 | unsigned int st = readl(port->membase + UART_STAT); |
| 339 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 340 | if (st & (STAT_RX_RDY(port) | STAT_OVR_ERR | STAT_FRM_ERR | |
Miquel Raynal | 95f7876 | 2017-10-13 11:01:54 +0200 | [diff] [blame] | 341 | STAT_BRK_DET)) |
| 342 | mvebu_uart_rx_chars(port, st); |
| 343 | |
| 344 | if (st & STAT_TX_RDY(port)) |
| 345 | mvebu_uart_tx_chars(port, st); |
| 346 | |
| 347 | return IRQ_HANDLED; |
| 348 | } |
| 349 | |
| 350 | static irqreturn_t mvebu_uart_rx_isr(int irq, void *dev_id) |
| 351 | { |
| 352 | struct uart_port *port = (struct uart_port *)dev_id; |
| 353 | unsigned int st = readl(port->membase + UART_STAT); |
| 354 | |
| 355 | if (st & (STAT_RX_RDY(port) | STAT_OVR_ERR | STAT_FRM_ERR | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 356 | STAT_BRK_DET)) |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 357 | mvebu_uart_rx_chars(port, st); |
| 358 | |
Miquel Raynal | 95f7876 | 2017-10-13 11:01:54 +0200 | [diff] [blame] | 359 | return IRQ_HANDLED; |
| 360 | } |
| 361 | |
| 362 | static irqreturn_t mvebu_uart_tx_isr(int irq, void *dev_id) |
| 363 | { |
| 364 | struct uart_port *port = (struct uart_port *)dev_id; |
| 365 | unsigned int st = readl(port->membase + UART_STAT); |
| 366 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 367 | if (st & STAT_TX_RDY(port)) |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 368 | mvebu_uart_tx_chars(port, st); |
| 369 | |
| 370 | return IRQ_HANDLED; |
| 371 | } |
| 372 | |
| 373 | static int mvebu_uart_startup(struct uart_port *port) |
| 374 | { |
Miquel Raynal | 95f7876 | 2017-10-13 11:01:54 +0200 | [diff] [blame] | 375 | struct mvebu_uart *mvuart = to_mvuart(port); |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 376 | unsigned int ctl; |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 377 | int ret; |
| 378 | |
| 379 | writel(CTRL_TXFIFO_RST | CTRL_RXFIFO_RST, |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 380 | port->membase + UART_CTRL(port)); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 381 | udelay(1); |
Allen Yan | 2ff23c4 | 2017-10-13 11:01:52 +0200 | [diff] [blame] | 382 | |
| 383 | /* Clear the error bits of state register before IRQ request */ |
| 384 | ret = readl(port->membase + UART_STAT); |
| 385 | ret |= STAT_BRK_ERR; |
| 386 | writel(ret, port->membase + UART_STAT); |
| 387 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 388 | writel(CTRL_BRK_INT, port->membase + UART_CTRL(port)); |
| 389 | |
| 390 | ctl = readl(port->membase + UART_INTR(port)); |
| 391 | ctl |= CTRL_RX_RDY_INT(port); |
| 392 | writel(ctl, port->membase + UART_INTR(port)); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 393 | |
Miquel Raynal | 95f7876 | 2017-10-13 11:01:54 +0200 | [diff] [blame] | 394 | if (!mvuart->irq[UART_TX_IRQ]) { |
| 395 | /* Old bindings with just one interrupt (UART0 only) */ |
| 396 | ret = devm_request_irq(port->dev, mvuart->irq[UART_IRQ_SUM], |
| 397 | mvebu_uart_isr, port->irqflags, |
| 398 | dev_name(port->dev), port); |
| 399 | if (ret) { |
| 400 | dev_err(port->dev, "unable to request IRQ %d\n", |
| 401 | mvuart->irq[UART_IRQ_SUM]); |
| 402 | return ret; |
| 403 | } |
| 404 | } else { |
| 405 | /* New bindings with an IRQ for RX and TX (both UART) */ |
| 406 | ret = devm_request_irq(port->dev, mvuart->irq[UART_RX_IRQ], |
| 407 | mvebu_uart_rx_isr, port->irqflags, |
| 408 | dev_name(port->dev), port); |
| 409 | if (ret) { |
| 410 | dev_err(port->dev, "unable to request IRQ %d\n", |
| 411 | mvuart->irq[UART_RX_IRQ]); |
| 412 | return ret; |
| 413 | } |
| 414 | |
| 415 | ret = devm_request_irq(port->dev, mvuart->irq[UART_TX_IRQ], |
| 416 | mvebu_uart_tx_isr, port->irqflags, |
| 417 | dev_name(port->dev), |
| 418 | port); |
| 419 | if (ret) { |
| 420 | dev_err(port->dev, "unable to request IRQ %d\n", |
| 421 | mvuart->irq[UART_TX_IRQ]); |
| 422 | devm_free_irq(port->dev, mvuart->irq[UART_RX_IRQ], |
| 423 | port); |
| 424 | return ret; |
| 425 | } |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 426 | } |
| 427 | |
| 428 | return 0; |
| 429 | } |
| 430 | |
| 431 | static void mvebu_uart_shutdown(struct uart_port *port) |
| 432 | { |
Miquel Raynal | 95f7876 | 2017-10-13 11:01:54 +0200 | [diff] [blame] | 433 | struct mvebu_uart *mvuart = to_mvuart(port); |
| 434 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 435 | writel(0, port->membase + UART_INTR(port)); |
Thomas Petazzoni | c2c1659 | 2016-06-16 16:48:52 +0200 | [diff] [blame] | 436 | |
Miquel Raynal | 95f7876 | 2017-10-13 11:01:54 +0200 | [diff] [blame] | 437 | if (!mvuart->irq[UART_TX_IRQ]) { |
| 438 | devm_free_irq(port->dev, mvuart->irq[UART_IRQ_SUM], port); |
| 439 | } else { |
| 440 | devm_free_irq(port->dev, mvuart->irq[UART_RX_IRQ], port); |
| 441 | devm_free_irq(port->dev, mvuart->irq[UART_TX_IRQ], port); |
| 442 | } |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 443 | } |
| 444 | |
Allen Yan | 68a0db1 | 2017-10-13 11:01:51 +0200 | [diff] [blame] | 445 | static int mvebu_uart_baud_rate_set(struct uart_port *port, unsigned int baud) |
| 446 | { |
| 447 | struct mvebu_uart *mvuart = to_mvuart(port); |
Miquel Raynal | 0e4cf69 | 2018-11-23 16:45:29 +0100 | [diff] [blame^] | 448 | unsigned int d_divisor, m_divisor; |
Allen Yan | 68a0db1 | 2017-10-13 11:01:51 +0200 | [diff] [blame] | 449 | u32 brdv; |
| 450 | |
| 451 | if (IS_ERR(mvuart->clk)) |
| 452 | return -PTR_ERR(mvuart->clk); |
| 453 | |
| 454 | /* |
Miquel Raynal | 0e4cf69 | 2018-11-23 16:45:29 +0100 | [diff] [blame^] | 455 | * The baudrate is derived from the UART clock thanks to two divisors: |
| 456 | * > D ("baud generator"): can divide the clock from 2 to 2^10 - 1. |
| 457 | * > M ("fractional divisor"): allows a better accuracy for |
| 458 | * baudrates higher than 230400. |
| 459 | * |
| 460 | * As the derivation of M is rather complicated, the code sticks to its |
| 461 | * default value (x16) when all the prescalers are zeroed, and only |
| 462 | * makes use of D to configure the desired baudrate. |
Allen Yan | 68a0db1 | 2017-10-13 11:01:51 +0200 | [diff] [blame] | 463 | */ |
Miquel Raynal | 0e4cf69 | 2018-11-23 16:45:29 +0100 | [diff] [blame^] | 464 | m_divisor = OSAMP_DEFAULT_DIVISOR; |
| 465 | d_divisor = DIV_ROUND_UP(port->uartclk, baud * m_divisor); |
| 466 | |
Allen Yan | 68a0db1 | 2017-10-13 11:01:51 +0200 | [diff] [blame] | 467 | brdv = readl(port->membase + UART_BRDV); |
| 468 | brdv &= ~BRDV_BAUD_MASK; |
Miquel Raynal | 0e4cf69 | 2018-11-23 16:45:29 +0100 | [diff] [blame^] | 469 | brdv |= d_divisor; |
Allen Yan | 68a0db1 | 2017-10-13 11:01:51 +0200 | [diff] [blame] | 470 | writel(brdv, port->membase + UART_BRDV); |
| 471 | |
| 472 | return 0; |
| 473 | } |
| 474 | |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 475 | static void mvebu_uart_set_termios(struct uart_port *port, |
| 476 | struct ktermios *termios, |
| 477 | struct ktermios *old) |
| 478 | { |
| 479 | unsigned long flags; |
| 480 | unsigned int baud; |
| 481 | |
| 482 | spin_lock_irqsave(&port->lock, flags); |
| 483 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 484 | port->read_status_mask = STAT_RX_RDY(port) | STAT_OVR_ERR | |
| 485 | STAT_TX_RDY(port) | STAT_TX_FIFO_FUL; |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 486 | |
| 487 | if (termios->c_iflag & INPCK) |
| 488 | port->read_status_mask |= STAT_FRM_ERR | STAT_PAR_ERR; |
| 489 | |
| 490 | port->ignore_status_mask = 0; |
| 491 | if (termios->c_iflag & IGNPAR) |
| 492 | port->ignore_status_mask |= |
| 493 | STAT_FRM_ERR | STAT_PAR_ERR | STAT_OVR_ERR; |
| 494 | |
| 495 | if ((termios->c_cflag & CREAD) == 0) |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 496 | port->ignore_status_mask |= STAT_RX_RDY(port) | STAT_BRK_ERR; |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 497 | |
Allen Yan | 68a0db1 | 2017-10-13 11:01:51 +0200 | [diff] [blame] | 498 | /* |
| 499 | * Maximum achievable frequency with simple baudrate divisor is 230400. |
| 500 | * Since the error per bit frame would be of more than 15%, achieving |
| 501 | * higher frequencies would require to implement the fractional divisor |
| 502 | * feature. |
| 503 | */ |
| 504 | baud = uart_get_baud_rate(port, termios, old, 0, 230400); |
| 505 | if (mvebu_uart_baud_rate_set(port, baud)) { |
| 506 | /* No clock available, baudrate cannot be changed */ |
| 507 | if (old) |
| 508 | baud = uart_get_baud_rate(port, old, NULL, 0, 230400); |
| 509 | } else { |
| 510 | tty_termios_encode_baud_rate(termios, baud, baud); |
| 511 | uart_update_timeout(port, termios->c_cflag, baud); |
| 512 | } |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 513 | |
Allen Yan | 68a0db1 | 2017-10-13 11:01:51 +0200 | [diff] [blame] | 514 | /* Only the following flag changes are supported */ |
| 515 | if (old) { |
| 516 | termios->c_iflag &= INPCK | IGNPAR; |
| 517 | termios->c_iflag |= old->c_iflag & ~(INPCK | IGNPAR); |
| 518 | termios->c_cflag &= CREAD | CBAUD; |
| 519 | termios->c_cflag |= old->c_cflag & ~(CREAD | CBAUD); |
Jan Kiszka | e0bf2d498 | 2018-08-26 19:49:32 +0200 | [diff] [blame] | 520 | termios->c_cflag |= CS8; |
Allen Yan | 68a0db1 | 2017-10-13 11:01:51 +0200 | [diff] [blame] | 521 | } |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 522 | |
| 523 | spin_unlock_irqrestore(&port->lock, flags); |
| 524 | } |
| 525 | |
| 526 | static const char *mvebu_uart_type(struct uart_port *port) |
| 527 | { |
| 528 | return MVEBU_UART_TYPE; |
| 529 | } |
| 530 | |
| 531 | static void mvebu_uart_release_port(struct uart_port *port) |
| 532 | { |
| 533 | /* Nothing to do here */ |
| 534 | } |
| 535 | |
| 536 | static int mvebu_uart_request_port(struct uart_port *port) |
| 537 | { |
| 538 | return 0; |
| 539 | } |
| 540 | |
| 541 | #ifdef CONFIG_CONSOLE_POLL |
| 542 | static int mvebu_uart_get_poll_char(struct uart_port *port) |
| 543 | { |
| 544 | unsigned int st = readl(port->membase + UART_STAT); |
| 545 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 546 | if (!(st & STAT_RX_RDY(port))) |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 547 | return NO_POLL_CHAR; |
| 548 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 549 | return readl(port->membase + UART_RBR(port)); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 550 | } |
| 551 | |
| 552 | static void mvebu_uart_put_poll_char(struct uart_port *port, unsigned char c) |
| 553 | { |
| 554 | unsigned int st; |
| 555 | |
| 556 | for (;;) { |
| 557 | st = readl(port->membase + UART_STAT); |
| 558 | |
| 559 | if (!(st & STAT_TX_FIFO_FUL)) |
| 560 | break; |
| 561 | |
| 562 | udelay(1); |
| 563 | } |
| 564 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 565 | writel(c, port->membase + UART_TSH(port)); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 566 | } |
| 567 | #endif |
| 568 | |
| 569 | static const struct uart_ops mvebu_uart_ops = { |
| 570 | .tx_empty = mvebu_uart_tx_empty, |
| 571 | .set_mctrl = mvebu_uart_set_mctrl, |
| 572 | .get_mctrl = mvebu_uart_get_mctrl, |
| 573 | .stop_tx = mvebu_uart_stop_tx, |
| 574 | .start_tx = mvebu_uart_start_tx, |
| 575 | .stop_rx = mvebu_uart_stop_rx, |
| 576 | .break_ctl = mvebu_uart_break_ctl, |
| 577 | .startup = mvebu_uart_startup, |
| 578 | .shutdown = mvebu_uart_shutdown, |
| 579 | .set_termios = mvebu_uart_set_termios, |
| 580 | .type = mvebu_uart_type, |
| 581 | .release_port = mvebu_uart_release_port, |
| 582 | .request_port = mvebu_uart_request_port, |
| 583 | #ifdef CONFIG_CONSOLE_POLL |
| 584 | .poll_get_char = mvebu_uart_get_poll_char, |
| 585 | .poll_put_char = mvebu_uart_put_poll_char, |
| 586 | #endif |
| 587 | }; |
| 588 | |
| 589 | /* Console Driver Operations */ |
| 590 | |
| 591 | #ifdef CONFIG_SERIAL_MVEBU_CONSOLE |
| 592 | /* Early Console */ |
| 593 | static void mvebu_uart_putc(struct uart_port *port, int c) |
| 594 | { |
| 595 | unsigned int st; |
| 596 | |
| 597 | for (;;) { |
| 598 | st = readl(port->membase + UART_STAT); |
| 599 | if (!(st & STAT_TX_FIFO_FUL)) |
| 600 | break; |
| 601 | } |
| 602 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 603 | /* At early stage, DT is not parsed yet, only use UART0 */ |
| 604 | writel(c, port->membase + UART_STD_TSH); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 605 | |
| 606 | for (;;) { |
| 607 | st = readl(port->membase + UART_STAT); |
| 608 | if (st & STAT_TX_FIFO_EMP) |
| 609 | break; |
| 610 | } |
| 611 | } |
| 612 | |
| 613 | static void mvebu_uart_putc_early_write(struct console *con, |
| 614 | const char *s, |
| 615 | unsigned n) |
| 616 | { |
| 617 | struct earlycon_device *dev = con->data; |
| 618 | |
| 619 | uart_console_write(&dev->port, s, n, mvebu_uart_putc); |
| 620 | } |
| 621 | |
| 622 | static int __init |
| 623 | mvebu_uart_early_console_setup(struct earlycon_device *device, |
| 624 | const char *opt) |
| 625 | { |
| 626 | if (!device->port.membase) |
| 627 | return -ENODEV; |
| 628 | |
| 629 | device->con->write = mvebu_uart_putc_early_write; |
| 630 | |
| 631 | return 0; |
| 632 | } |
| 633 | |
| 634 | EARLYCON_DECLARE(ar3700_uart, mvebu_uart_early_console_setup); |
| 635 | OF_EARLYCON_DECLARE(ar3700_uart, "marvell,armada-3700-uart", |
| 636 | mvebu_uart_early_console_setup); |
| 637 | |
| 638 | static void wait_for_xmitr(struct uart_port *port) |
| 639 | { |
| 640 | u32 val; |
| 641 | |
| 642 | readl_poll_timeout_atomic(port->membase + UART_STAT, val, |
Gabriel Matni | c685af1 | 2018-03-22 19:15:12 +0000 | [diff] [blame] | 643 | (val & STAT_TX_RDY(port)), 1, 10000); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 644 | } |
| 645 | |
| 646 | static void mvebu_uart_console_putchar(struct uart_port *port, int ch) |
| 647 | { |
| 648 | wait_for_xmitr(port); |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 649 | writel(ch, port->membase + UART_TSH(port)); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | static void mvebu_uart_console_write(struct console *co, const char *s, |
| 653 | unsigned int count) |
| 654 | { |
| 655 | struct uart_port *port = &mvebu_uart_ports[co->index]; |
| 656 | unsigned long flags; |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 657 | unsigned int ier, intr, ctl; |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 658 | int locked = 1; |
| 659 | |
| 660 | if (oops_in_progress) |
| 661 | locked = spin_trylock_irqsave(&port->lock, flags); |
| 662 | else |
| 663 | spin_lock_irqsave(&port->lock, flags); |
| 664 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 665 | ier = readl(port->membase + UART_CTRL(port)) & CTRL_BRK_INT; |
| 666 | intr = readl(port->membase + UART_INTR(port)) & |
| 667 | (CTRL_RX_RDY_INT(port) | CTRL_TX_RDY_INT(port)); |
| 668 | writel(0, port->membase + UART_CTRL(port)); |
| 669 | writel(0, port->membase + UART_INTR(port)); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 670 | |
| 671 | uart_console_write(port, s, count, mvebu_uart_console_putchar); |
| 672 | |
| 673 | wait_for_xmitr(port); |
| 674 | |
| 675 | if (ier) |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 676 | writel(ier, port->membase + UART_CTRL(port)); |
| 677 | |
| 678 | if (intr) { |
| 679 | ctl = intr | readl(port->membase + UART_INTR(port)); |
| 680 | writel(ctl, port->membase + UART_INTR(port)); |
| 681 | } |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 682 | |
| 683 | if (locked) |
| 684 | spin_unlock_irqrestore(&port->lock, flags); |
| 685 | } |
| 686 | |
| 687 | static int mvebu_uart_console_setup(struct console *co, char *options) |
| 688 | { |
| 689 | struct uart_port *port; |
| 690 | int baud = 9600; |
| 691 | int bits = 8; |
| 692 | int parity = 'n'; |
| 693 | int flow = 'n'; |
| 694 | |
| 695 | if (co->index < 0 || co->index >= MVEBU_NR_UARTS) |
| 696 | return -EINVAL; |
| 697 | |
| 698 | port = &mvebu_uart_ports[co->index]; |
| 699 | |
| 700 | if (!port->mapbase || !port->membase) { |
| 701 | pr_debug("console on ttyMV%i not present\n", co->index); |
| 702 | return -ENODEV; |
| 703 | } |
| 704 | |
| 705 | if (options) |
| 706 | uart_parse_options(options, &baud, &parity, &bits, &flow); |
| 707 | |
| 708 | return uart_set_options(port, co, baud, parity, bits, flow); |
| 709 | } |
| 710 | |
| 711 | static struct uart_driver mvebu_uart_driver; |
| 712 | |
| 713 | static struct console mvebu_uart_console = { |
| 714 | .name = "ttyMV", |
| 715 | .write = mvebu_uart_console_write, |
| 716 | .device = uart_console_device, |
| 717 | .setup = mvebu_uart_console_setup, |
| 718 | .flags = CON_PRINTBUFFER, |
| 719 | .index = -1, |
| 720 | .data = &mvebu_uart_driver, |
| 721 | }; |
| 722 | |
| 723 | static int __init mvebu_uart_console_init(void) |
| 724 | { |
| 725 | register_console(&mvebu_uart_console); |
| 726 | return 0; |
| 727 | } |
| 728 | |
| 729 | console_initcall(mvebu_uart_console_init); |
| 730 | |
| 731 | |
| 732 | #endif /* CONFIG_SERIAL_MVEBU_CONSOLE */ |
| 733 | |
| 734 | static struct uart_driver mvebu_uart_driver = { |
| 735 | .owner = THIS_MODULE, |
Yehuda Yitschak | 02c3333 | 2017-10-13 11:01:47 +0200 | [diff] [blame] | 736 | .driver_name = DRIVER_NAME, |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 737 | .dev_name = "ttyMV", |
| 738 | .nr = MVEBU_NR_UARTS, |
| 739 | #ifdef CONFIG_SERIAL_MVEBU_CONSOLE |
| 740 | .cons = &mvebu_uart_console, |
| 741 | #endif |
| 742 | }; |
| 743 | |
Miquel Raynal | 394e835 | 2018-04-21 16:07:33 +0200 | [diff] [blame] | 744 | #if defined(CONFIG_PM) |
| 745 | static int mvebu_uart_suspend(struct device *dev) |
| 746 | { |
| 747 | struct mvebu_uart *mvuart = dev_get_drvdata(dev); |
| 748 | struct uart_port *port = mvuart->port; |
| 749 | |
| 750 | uart_suspend_port(&mvebu_uart_driver, port); |
| 751 | |
| 752 | mvuart->pm_regs.rbr = readl(port->membase + UART_RBR(port)); |
| 753 | mvuart->pm_regs.tsh = readl(port->membase + UART_TSH(port)); |
| 754 | mvuart->pm_regs.ctrl = readl(port->membase + UART_CTRL(port)); |
| 755 | mvuart->pm_regs.intr = readl(port->membase + UART_INTR(port)); |
| 756 | mvuart->pm_regs.stat = readl(port->membase + UART_STAT); |
| 757 | mvuart->pm_regs.brdv = readl(port->membase + UART_BRDV); |
| 758 | mvuart->pm_regs.osamp = readl(port->membase + UART_OSAMP); |
| 759 | |
| 760 | device_set_wakeup_enable(dev, true); |
| 761 | |
| 762 | return 0; |
| 763 | } |
| 764 | |
| 765 | static int mvebu_uart_resume(struct device *dev) |
| 766 | { |
| 767 | struct mvebu_uart *mvuart = dev_get_drvdata(dev); |
| 768 | struct uart_port *port = mvuart->port; |
| 769 | |
| 770 | writel(mvuart->pm_regs.rbr, port->membase + UART_RBR(port)); |
| 771 | writel(mvuart->pm_regs.tsh, port->membase + UART_TSH(port)); |
| 772 | writel(mvuart->pm_regs.ctrl, port->membase + UART_CTRL(port)); |
| 773 | writel(mvuart->pm_regs.intr, port->membase + UART_INTR(port)); |
| 774 | writel(mvuart->pm_regs.stat, port->membase + UART_STAT); |
| 775 | writel(mvuart->pm_regs.brdv, port->membase + UART_BRDV); |
| 776 | writel(mvuart->pm_regs.osamp, port->membase + UART_OSAMP); |
| 777 | |
| 778 | uart_resume_port(&mvebu_uart_driver, port); |
| 779 | |
| 780 | return 0; |
| 781 | } |
| 782 | |
| 783 | static const struct dev_pm_ops mvebu_uart_pm_ops = { |
| 784 | .suspend = mvebu_uart_suspend, |
| 785 | .resume = mvebu_uart_resume, |
| 786 | }; |
| 787 | #endif /* CONFIG_PM */ |
| 788 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 789 | static const struct of_device_id mvebu_uart_of_match[]; |
| 790 | |
Allen Yan | 94228f9 | 2017-10-13 11:01:48 +0200 | [diff] [blame] | 791 | /* Counter to keep track of each UART port id when not using CONFIG_OF */ |
| 792 | static int uart_num_counter; |
| 793 | |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 794 | static int mvebu_uart_probe(struct platform_device *pdev) |
| 795 | { |
| 796 | struct resource *reg = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 797 | const struct of_device_id *match = of_match_device(mvebu_uart_of_match, |
| 798 | &pdev->dev); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 799 | struct uart_port *port; |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 800 | struct mvebu_uart *mvuart; |
Miquel Raynal | 95f7876 | 2017-10-13 11:01:54 +0200 | [diff] [blame] | 801 | int ret, id, irq; |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 802 | |
Miquel Raynal | 95f7876 | 2017-10-13 11:01:54 +0200 | [diff] [blame] | 803 | if (!reg) { |
| 804 | dev_err(&pdev->dev, "no registers defined\n"); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 805 | return -EINVAL; |
| 806 | } |
| 807 | |
Allen Yan | 94228f9 | 2017-10-13 11:01:48 +0200 | [diff] [blame] | 808 | /* Assume that all UART ports have a DT alias or none has */ |
| 809 | id = of_alias_get_id(pdev->dev.of_node, "serial"); |
| 810 | if (!pdev->dev.of_node || id < 0) |
| 811 | pdev->id = uart_num_counter++; |
| 812 | else |
| 813 | pdev->id = id; |
| 814 | |
| 815 | if (pdev->id >= MVEBU_NR_UARTS) { |
| 816 | dev_err(&pdev->dev, "cannot have more than %d UART ports\n", |
| 817 | MVEBU_NR_UARTS); |
| 818 | return -EINVAL; |
| 819 | } |
| 820 | |
| 821 | port = &mvebu_uart_ports[pdev->id]; |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 822 | |
| 823 | spin_lock_init(&port->lock); |
| 824 | |
| 825 | port->dev = &pdev->dev; |
| 826 | port->type = PORT_MVEBU; |
| 827 | port->ops = &mvebu_uart_ops; |
| 828 | port->regshift = 0; |
| 829 | |
| 830 | port->fifosize = 32; |
| 831 | port->iotype = UPIO_MEM32; |
| 832 | port->flags = UPF_FIXED_PORT; |
Allen Yan | 94228f9 | 2017-10-13 11:01:48 +0200 | [diff] [blame] | 833 | port->line = pdev->id; |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 834 | |
Miquel Raynal | 95f7876 | 2017-10-13 11:01:54 +0200 | [diff] [blame] | 835 | /* |
| 836 | * IRQ number is not stored in this structure because we may have two of |
| 837 | * them per port (RX and TX). Instead, use the driver UART structure |
| 838 | * array so called ->irq[]. |
| 839 | */ |
| 840 | port->irq = 0; |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 841 | port->irqflags = 0; |
| 842 | port->mapbase = reg->start; |
| 843 | |
| 844 | port->membase = devm_ioremap_resource(&pdev->dev, reg); |
| 845 | if (IS_ERR(port->membase)) |
| 846 | return -PTR_ERR(port->membase); |
| 847 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 848 | mvuart = devm_kzalloc(&pdev->dev, sizeof(struct mvebu_uart), |
| 849 | GFP_KERNEL); |
| 850 | if (!mvuart) |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 851 | return -ENOMEM; |
| 852 | |
Allen Yan | 68a0db1 | 2017-10-13 11:01:51 +0200 | [diff] [blame] | 853 | /* Get controller data depending on the compatible string */ |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 854 | mvuart->data = (struct mvebu_uart_driver_data *)match->data; |
| 855 | mvuart->port = port; |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 856 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 857 | port->private_data = mvuart; |
| 858 | platform_set_drvdata(pdev, mvuart); |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 859 | |
Allen Yan | 68a0db1 | 2017-10-13 11:01:51 +0200 | [diff] [blame] | 860 | /* Get fixed clock frequency */ |
| 861 | mvuart->clk = devm_clk_get(&pdev->dev, NULL); |
| 862 | if (IS_ERR(mvuart->clk)) { |
| 863 | if (PTR_ERR(mvuart->clk) == -EPROBE_DEFER) |
| 864 | return PTR_ERR(mvuart->clk); |
| 865 | |
| 866 | if (IS_EXTENDED(port)) { |
| 867 | dev_err(&pdev->dev, "unable to get UART clock\n"); |
| 868 | return PTR_ERR(mvuart->clk); |
| 869 | } |
| 870 | } else { |
| 871 | if (!clk_prepare_enable(mvuart->clk)) |
| 872 | port->uartclk = clk_get_rate(mvuart->clk); |
| 873 | } |
| 874 | |
Miquel Raynal | 95f7876 | 2017-10-13 11:01:54 +0200 | [diff] [blame] | 875 | /* Manage interrupts */ |
Miquel Raynal | 95f7876 | 2017-10-13 11:01:54 +0200 | [diff] [blame] | 876 | if (platform_irq_count(pdev) == 1) { |
| 877 | /* Old bindings: no name on the single unamed UART0 IRQ */ |
| 878 | irq = platform_get_irq(pdev, 0); |
| 879 | if (irq < 0) { |
| 880 | dev_err(&pdev->dev, "unable to get UART IRQ\n"); |
| 881 | return irq; |
| 882 | } |
| 883 | |
| 884 | mvuart->irq[UART_IRQ_SUM] = irq; |
| 885 | } else { |
| 886 | /* |
| 887 | * New bindings: named interrupts (RX, TX) for both UARTS, |
| 888 | * only make use of uart-rx and uart-tx interrupts, do not use |
| 889 | * uart-sum of UART0 port. |
| 890 | */ |
| 891 | irq = platform_get_irq_byname(pdev, "uart-rx"); |
| 892 | if (irq < 0) { |
| 893 | dev_err(&pdev->dev, "unable to get 'uart-rx' IRQ\n"); |
| 894 | return irq; |
| 895 | } |
| 896 | |
| 897 | mvuart->irq[UART_RX_IRQ] = irq; |
| 898 | |
| 899 | irq = platform_get_irq_byname(pdev, "uart-tx"); |
| 900 | if (irq < 0) { |
| 901 | dev_err(&pdev->dev, "unable to get 'uart-tx' IRQ\n"); |
| 902 | return irq; |
| 903 | } |
| 904 | |
| 905 | mvuart->irq[UART_TX_IRQ] = irq; |
| 906 | } |
| 907 | |
Allen Yan | 9c3d3ee | 2017-10-13 11:01:50 +0200 | [diff] [blame] | 908 | /* UART Soft Reset*/ |
| 909 | writel(CTRL_SOFT_RST, port->membase + UART_CTRL(port)); |
| 910 | udelay(1); |
| 911 | writel(0, port->membase + UART_CTRL(port)); |
| 912 | |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 913 | ret = uart_add_one_port(&mvebu_uart_driver, port); |
| 914 | if (ret) |
| 915 | return ret; |
| 916 | return 0; |
| 917 | } |
| 918 | |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 919 | static struct mvebu_uart_driver_data uart_std_driver_data = { |
| 920 | .is_ext = false, |
| 921 | .regs.rbr = UART_STD_RBR, |
| 922 | .regs.tsh = UART_STD_TSH, |
| 923 | .regs.ctrl = UART_STD_CTRL1, |
| 924 | .regs.intr = UART_STD_CTRL2, |
| 925 | .flags.ctrl_tx_rdy_int = CTRL_STD_TX_RDY_INT, |
| 926 | .flags.ctrl_rx_rdy_int = CTRL_STD_RX_RDY_INT, |
| 927 | .flags.stat_tx_rdy = STAT_STD_TX_RDY, |
| 928 | .flags.stat_rx_rdy = STAT_STD_RX_RDY, |
| 929 | }; |
| 930 | |
Miquel Raynal | 53501e0 | 2017-10-13 11:01:56 +0200 | [diff] [blame] | 931 | static struct mvebu_uart_driver_data uart_ext_driver_data = { |
| 932 | .is_ext = true, |
| 933 | .regs.rbr = UART_EXT_RBR, |
| 934 | .regs.tsh = UART_EXT_TSH, |
| 935 | .regs.ctrl = UART_EXT_CTRL1, |
| 936 | .regs.intr = UART_EXT_CTRL2, |
| 937 | .flags.ctrl_tx_rdy_int = CTRL_EXT_TX_RDY_INT, |
| 938 | .flags.ctrl_rx_rdy_int = CTRL_EXT_RX_RDY_INT, |
| 939 | .flags.stat_tx_rdy = STAT_EXT_TX_RDY, |
| 940 | .flags.stat_rx_rdy = STAT_EXT_RX_RDY, |
| 941 | }; |
| 942 | |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 943 | /* Match table for of_platform binding */ |
| 944 | static const struct of_device_id mvebu_uart_of_match[] = { |
Miquel Raynal | 5218d76 | 2017-10-13 11:01:49 +0200 | [diff] [blame] | 945 | { |
| 946 | .compatible = "marvell,armada-3700-uart", |
| 947 | .data = (void *)&uart_std_driver_data, |
| 948 | }, |
Miquel Raynal | 53501e0 | 2017-10-13 11:01:56 +0200 | [diff] [blame] | 949 | { |
| 950 | .compatible = "marvell,armada-3700-uart-ext", |
| 951 | .data = (void *)&uart_ext_driver_data, |
| 952 | }, |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 953 | {} |
| 954 | }; |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 955 | |
| 956 | static struct platform_driver mvebu_uart_platform_driver = { |
| 957 | .probe = mvebu_uart_probe, |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 958 | .driver = { |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 959 | .name = "mvebu-uart", |
| 960 | .of_match_table = of_match_ptr(mvebu_uart_of_match), |
Paul Gortmaker | 89ebc27 | 2016-03-13 19:48:52 -0400 | [diff] [blame] | 961 | .suppress_bind_attrs = true, |
Miquel Raynal | 394e835 | 2018-04-21 16:07:33 +0200 | [diff] [blame] | 962 | #if defined(CONFIG_PM) |
| 963 | .pm = &mvebu_uart_pm_ops, |
| 964 | #endif /* CONFIG_PM */ |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 965 | }, |
| 966 | }; |
| 967 | |
| 968 | static int __init mvebu_uart_init(void) |
| 969 | { |
| 970 | int ret; |
| 971 | |
| 972 | ret = uart_register_driver(&mvebu_uart_driver); |
| 973 | if (ret) |
| 974 | return ret; |
| 975 | |
| 976 | ret = platform_driver_register(&mvebu_uart_platform_driver); |
| 977 | if (ret) |
| 978 | uart_unregister_driver(&mvebu_uart_driver); |
| 979 | |
| 980 | return ret; |
| 981 | } |
Wilson Ding | 3053079 | 2016-02-16 19:14:53 +0100 | [diff] [blame] | 982 | arch_initcall(mvebu_uart_init); |