1 // SPDX-License-Identifier: GPL-2.0+
3 * ***************************************************************************
4 * Marvell Armada-3700 Serial Driver
6 * Copyright (C) 2015 Marvell International Ltd.
7 * ***************************************************************************
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>
16 #include <linux/iopoll.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>
30 #define UART_STD_RBR 0x00
31 #define UART_EXT_RBR 0x18
33 #define UART_STD_TSH 0x04
34 #define UART_EXT_TSH 0x1C
36 #define UART_STD_CTRL1 0x08
37 #define UART_EXT_CTRL1 0x04
38 #define CTRL_SOFT_RST BIT(31)
39 #define CTRL_TXFIFO_RST BIT(15)
40 #define CTRL_RXFIFO_RST BIT(14)
41 #define CTRL_SND_BRK_SEQ BIT(11)
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)
46 #define CTRL_BRK_INT (CTRL_BRK_DET_INT | CTRL_FRM_ERR_INT | \
47 CTRL_PAR_ERR_INT | CTRL_OVR_ERR_INT)
49 #define UART_STD_CTRL2 UART_STD_CTRL1
50 #define UART_EXT_CTRL2 0x20
51 #define CTRL_STD_TX_RDY_INT BIT(5)
52 #define CTRL_EXT_TX_RDY_INT BIT(6)
53 #define CTRL_STD_RX_RDY_INT BIT(4)
54 #define CTRL_EXT_RX_RDY_INT BIT(5)
56 #define UART_STAT 0x0C
57 #define STAT_TX_FIFO_EMP BIT(13)
58 #define STAT_TX_FIFO_FUL BIT(11)
59 #define STAT_TX_EMP BIT(6)
60 #define STAT_STD_TX_RDY BIT(5)
61 #define STAT_EXT_TX_RDY BIT(15)
62 #define STAT_STD_RX_RDY BIT(4)
63 #define STAT_EXT_RX_RDY BIT(14)
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)
68 #define STAT_BRK_ERR (STAT_BRK_DET | STAT_FRM_ERR \
69 | STAT_PAR_ERR | STAT_OVR_ERR)
71 #define UART_BRDV 0x10
72 #define BRDV_BAUD_MASK 0x3FF
74 #define UART_OSAMP 0x14
75 #define OSAMP_DEFAULT_DIVISOR 16
76 #define OSAMP_DIVISORS_MASK 0x3F3F3F3F
78 #define MVEBU_NR_UARTS 2
80 #define MVEBU_UART_TYPE "mvebu-uart"
81 #define DRIVER_NAME "mvebu_serial"
84 /* Either there is only one summed IRQ... */
86 /* ...or there are two separate IRQ for RX and TX */
92 /* Diverging register offsets */
93 struct uart_regs_layout {
100 /* Diverging flags */
102 unsigned int ctrl_tx_rdy_int;
103 unsigned int ctrl_rx_rdy_int;
104 unsigned int stat_tx_rdy;
105 unsigned int stat_rx_rdy;
108 /* Driver data, a structure for each UART port */
109 struct mvebu_uart_driver_data {
111 struct uart_regs_layout regs;
112 struct uart_flags flags;
115 /* Saved registers during suspend */
116 struct mvebu_uart_pm_regs {
126 /* MVEBU UART driver structure */
128 struct uart_port *port;
130 int irq[UART_IRQ_COUNT];
131 struct mvebu_uart_driver_data *data;
132 #if defined(CONFIG_PM)
133 struct mvebu_uart_pm_regs pm_regs;
134 #endif /* CONFIG_PM */
137 static struct mvebu_uart *to_mvuart(struct uart_port *port)
139 return (struct mvebu_uart *)port->private_data;
142 #define IS_EXTENDED(port) (to_mvuart(port)->data->is_ext)
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)
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)
154 static struct uart_port mvebu_uart_ports[MVEBU_NR_UARTS];
156 /* Core UART Driver Operations */
157 static unsigned int mvebu_uart_tx_empty(struct uart_port *port)
162 spin_lock_irqsave(&port->lock, flags);
163 st = readl(port->membase + UART_STAT);
164 spin_unlock_irqrestore(&port->lock, flags);
166 return (st & STAT_TX_FIFO_EMP) ? TIOCSER_TEMT : 0;
169 static unsigned int mvebu_uart_get_mctrl(struct uart_port *port)
171 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
174 static void mvebu_uart_set_mctrl(struct uart_port *port,
178 * Even if we do not support configuring the modem control lines, this
179 * function must be proided to the serial core
183 static void mvebu_uart_stop_tx(struct uart_port *port)
185 unsigned int ctl = readl(port->membase + UART_INTR(port));
187 ctl &= ~CTRL_TX_RDY_INT(port);
188 writel(ctl, port->membase + UART_INTR(port));
191 static void mvebu_uart_start_tx(struct uart_port *port)
194 struct circ_buf *xmit = &port->state->xmit;
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);
202 ctl = readl(port->membase + UART_INTR(port));
203 ctl |= CTRL_TX_RDY_INT(port);
204 writel(ctl, port->membase + UART_INTR(port));
207 static void mvebu_uart_stop_rx(struct uart_port *port)
211 ctl = readl(port->membase + UART_CTRL(port));
212 ctl &= ~CTRL_BRK_INT;
213 writel(ctl, port->membase + UART_CTRL(port));
215 ctl = readl(port->membase + UART_INTR(port));
216 ctl &= ~CTRL_RX_RDY_INT(port);
217 writel(ctl, port->membase + UART_INTR(port));
220 static void mvebu_uart_break_ctl(struct uart_port *port, int brk)
225 spin_lock_irqsave(&port->lock, flags);
226 ctl = readl(port->membase + UART_CTRL(port));
228 ctl |= CTRL_SND_BRK_SEQ;
230 ctl &= ~CTRL_SND_BRK_SEQ;
231 writel(ctl, port->membase + UART_CTRL(port));
232 spin_unlock_irqrestore(&port->lock, flags);
235 static void mvebu_uart_rx_chars(struct uart_port *port, unsigned int status)
237 struct tty_port *tport = &port->state->port;
238 unsigned char ch = 0;
242 if (status & STAT_RX_RDY(port)) {
243 ch = readl(port->membase + UART_RBR(port));
248 if (status & STAT_PAR_ERR)
249 port->icount.parity++;
252 if (status & STAT_BRK_DET) {
254 status &= ~(STAT_FRM_ERR | STAT_PAR_ERR);
255 if (uart_handle_break(port))
259 if (status & STAT_OVR_ERR)
260 port->icount.overrun++;
262 if (status & STAT_FRM_ERR)
263 port->icount.frame++;
265 if (uart_handle_sysrq_char(port, ch))
268 if (status & port->ignore_status_mask & STAT_PAR_ERR)
269 status &= ~STAT_RX_RDY(port);
271 status &= port->read_status_mask;
273 if (status & STAT_PAR_ERR)
276 status &= ~port->ignore_status_mask;
278 if (status & STAT_RX_RDY(port))
279 tty_insert_flip_char(tport, ch, flag);
281 if (status & STAT_BRK_DET)
282 tty_insert_flip_char(tport, 0, TTY_BREAK);
284 if (status & STAT_FRM_ERR)
285 tty_insert_flip_char(tport, 0, TTY_FRAME);
287 if (status & STAT_OVR_ERR)
288 tty_insert_flip_char(tport, 0, TTY_OVERRUN);
291 status = readl(port->membase + UART_STAT);
292 } while (status & (STAT_RX_RDY(port) | STAT_BRK_DET));
294 tty_flip_buffer_push(tport);
297 static void mvebu_uart_tx_chars(struct uart_port *port, unsigned int status)
299 struct circ_buf *xmit = &port->state->xmit;
304 writel(port->x_char, port->membase + UART_TSH(port));
310 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
311 mvebu_uart_stop_tx(port);
315 for (count = 0; count < port->fifosize; count++) {
316 writel(xmit->buf[xmit->tail], port->membase + UART_TSH(port));
317 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
320 if (uart_circ_empty(xmit))
323 st = readl(port->membase + UART_STAT);
324 if (st & STAT_TX_FIFO_FUL)
328 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
329 uart_write_wakeup(port);
331 if (uart_circ_empty(xmit))
332 mvebu_uart_stop_tx(port);
335 static irqreturn_t mvebu_uart_isr(int irq, void *dev_id)
337 struct uart_port *port = (struct uart_port *)dev_id;
338 unsigned int st = readl(port->membase + UART_STAT);
340 if (st & (STAT_RX_RDY(port) | STAT_OVR_ERR | STAT_FRM_ERR |
342 mvebu_uart_rx_chars(port, st);
344 if (st & STAT_TX_RDY(port))
345 mvebu_uart_tx_chars(port, st);
350 static irqreturn_t mvebu_uart_rx_isr(int irq, void *dev_id)
352 struct uart_port *port = (struct uart_port *)dev_id;
353 unsigned int st = readl(port->membase + UART_STAT);
355 if (st & (STAT_RX_RDY(port) | STAT_OVR_ERR | STAT_FRM_ERR |
357 mvebu_uart_rx_chars(port, st);
362 static irqreturn_t mvebu_uart_tx_isr(int irq, void *dev_id)
364 struct uart_port *port = (struct uart_port *)dev_id;
365 unsigned int st = readl(port->membase + UART_STAT);
367 if (st & STAT_TX_RDY(port))
368 mvebu_uart_tx_chars(port, st);
373 static int mvebu_uart_startup(struct uart_port *port)
375 struct mvebu_uart *mvuart = to_mvuart(port);
379 writel(CTRL_TXFIFO_RST | CTRL_RXFIFO_RST,
380 port->membase + UART_CTRL(port));
383 /* Clear the error bits of state register before IRQ request */
384 ret = readl(port->membase + UART_STAT);
386 writel(ret, port->membase + UART_STAT);
388 writel(CTRL_BRK_INT, port->membase + UART_CTRL(port));
390 ctl = readl(port->membase + UART_INTR(port));
391 ctl |= CTRL_RX_RDY_INT(port);
392 writel(ctl, port->membase + UART_INTR(port));
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);
400 dev_err(port->dev, "unable to request IRQ %d\n",
401 mvuart->irq[UART_IRQ_SUM]);
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);
410 dev_err(port->dev, "unable to request IRQ %d\n",
411 mvuart->irq[UART_RX_IRQ]);
415 ret = devm_request_irq(port->dev, mvuart->irq[UART_TX_IRQ],
416 mvebu_uart_tx_isr, port->irqflags,
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],
431 static void mvebu_uart_shutdown(struct uart_port *port)
433 struct mvebu_uart *mvuart = to_mvuart(port);
435 writel(0, port->membase + UART_INTR(port));
437 if (!mvuart->irq[UART_TX_IRQ]) {
438 devm_free_irq(port->dev, mvuart->irq[UART_IRQ_SUM], port);
440 devm_free_irq(port->dev, mvuart->irq[UART_RX_IRQ], port);
441 devm_free_irq(port->dev, mvuart->irq[UART_TX_IRQ], port);
445 static int mvebu_uart_baud_rate_set(struct uart_port *port, unsigned int baud)
447 unsigned int d_divisor, m_divisor;
454 * The baudrate is derived from the UART clock thanks to two divisors:
455 * > D ("baud generator"): can divide the clock from 2 to 2^10 - 1.
456 * > M ("fractional divisor"): allows a better accuracy for
457 * baudrates higher than 230400.
459 * As the derivation of M is rather complicated, the code sticks to its
460 * default value (x16) when all the prescalers are zeroed, and only
461 * makes use of D to configure the desired baudrate.
463 m_divisor = OSAMP_DEFAULT_DIVISOR;
464 d_divisor = DIV_ROUND_CLOSEST(port->uartclk, baud * m_divisor);
466 brdv = readl(port->membase + UART_BRDV);
467 brdv &= ~BRDV_BAUD_MASK;
469 writel(brdv, port->membase + UART_BRDV);
471 osamp = readl(port->membase + UART_OSAMP);
472 osamp &= ~OSAMP_DIVISORS_MASK;
473 writel(osamp, port->membase + UART_OSAMP);
478 static void mvebu_uart_set_termios(struct uart_port *port,
479 struct ktermios *termios,
480 struct ktermios *old)
483 unsigned int baud, min_baud, max_baud;
485 spin_lock_irqsave(&port->lock, flags);
487 port->read_status_mask = STAT_RX_RDY(port) | STAT_OVR_ERR |
488 STAT_TX_RDY(port) | STAT_TX_FIFO_FUL;
490 if (termios->c_iflag & INPCK)
491 port->read_status_mask |= STAT_FRM_ERR | STAT_PAR_ERR;
493 port->ignore_status_mask = 0;
494 if (termios->c_iflag & IGNPAR)
495 port->ignore_status_mask |=
496 STAT_FRM_ERR | STAT_PAR_ERR | STAT_OVR_ERR;
498 if ((termios->c_cflag & CREAD) == 0)
499 port->ignore_status_mask |= STAT_RX_RDY(port) | STAT_BRK_ERR;
502 * Maximal divisor is 1023 * 16 when using default (x16) scheme.
503 * Maximum achievable frequency with simple baudrate divisor is 230400.
504 * Since the error per bit frame would be of more than 15%, achieving
505 * higher frequencies would require to implement the fractional divisor
508 min_baud = DIV_ROUND_UP(port->uartclk, 1023 * 16);
511 baud = uart_get_baud_rate(port, termios, old, min_baud, max_baud);
512 if (mvebu_uart_baud_rate_set(port, baud)) {
513 /* No clock available, baudrate cannot be changed */
515 baud = uart_get_baud_rate(port, old, NULL,
518 tty_termios_encode_baud_rate(termios, baud, baud);
519 uart_update_timeout(port, termios->c_cflag, baud);
522 /* Only the following flag changes are supported */
524 termios->c_iflag &= INPCK | IGNPAR;
525 termios->c_iflag |= old->c_iflag & ~(INPCK | IGNPAR);
526 termios->c_cflag &= CREAD | CBAUD;
527 termios->c_cflag |= old->c_cflag & ~(CREAD | CBAUD);
528 termios->c_cflag |= CS8;
531 spin_unlock_irqrestore(&port->lock, flags);
534 static const char *mvebu_uart_type(struct uart_port *port)
536 return MVEBU_UART_TYPE;
539 static void mvebu_uart_release_port(struct uart_port *port)
541 /* Nothing to do here */
544 static int mvebu_uart_request_port(struct uart_port *port)
549 #ifdef CONFIG_CONSOLE_POLL
550 static int mvebu_uart_get_poll_char(struct uart_port *port)
552 unsigned int st = readl(port->membase + UART_STAT);
554 if (!(st & STAT_RX_RDY(port)))
557 return readl(port->membase + UART_RBR(port));
560 static void mvebu_uart_put_poll_char(struct uart_port *port, unsigned char c)
565 st = readl(port->membase + UART_STAT);
567 if (!(st & STAT_TX_FIFO_FUL))
573 writel(c, port->membase + UART_TSH(port));
577 static const struct uart_ops mvebu_uart_ops = {
578 .tx_empty = mvebu_uart_tx_empty,
579 .set_mctrl = mvebu_uart_set_mctrl,
580 .get_mctrl = mvebu_uart_get_mctrl,
581 .stop_tx = mvebu_uart_stop_tx,
582 .start_tx = mvebu_uart_start_tx,
583 .stop_rx = mvebu_uart_stop_rx,
584 .break_ctl = mvebu_uart_break_ctl,
585 .startup = mvebu_uart_startup,
586 .shutdown = mvebu_uart_shutdown,
587 .set_termios = mvebu_uart_set_termios,
588 .type = mvebu_uart_type,
589 .release_port = mvebu_uart_release_port,
590 .request_port = mvebu_uart_request_port,
591 #ifdef CONFIG_CONSOLE_POLL
592 .poll_get_char = mvebu_uart_get_poll_char,
593 .poll_put_char = mvebu_uart_put_poll_char,
597 /* Console Driver Operations */
599 #ifdef CONFIG_SERIAL_MVEBU_CONSOLE
601 static void mvebu_uart_putc(struct uart_port *port, int c)
606 st = readl(port->membase + UART_STAT);
607 if (!(st & STAT_TX_FIFO_FUL))
611 /* At early stage, DT is not parsed yet, only use UART0 */
612 writel(c, port->membase + UART_STD_TSH);
615 st = readl(port->membase + UART_STAT);
616 if (st & STAT_TX_FIFO_EMP)
621 static void mvebu_uart_putc_early_write(struct console *con,
625 struct earlycon_device *dev = con->data;
627 uart_console_write(&dev->port, s, n, mvebu_uart_putc);
631 mvebu_uart_early_console_setup(struct earlycon_device *device,
634 if (!device->port.membase)
637 device->con->write = mvebu_uart_putc_early_write;
642 EARLYCON_DECLARE(ar3700_uart, mvebu_uart_early_console_setup);
643 OF_EARLYCON_DECLARE(ar3700_uart, "marvell,armada-3700-uart",
644 mvebu_uart_early_console_setup);
646 static void wait_for_xmitr(struct uart_port *port)
650 readl_poll_timeout_atomic(port->membase + UART_STAT, val,
651 (val & STAT_TX_RDY(port)), 1, 10000);
654 static void wait_for_xmite(struct uart_port *port)
658 readl_poll_timeout_atomic(port->membase + UART_STAT, val,
659 (val & STAT_TX_EMP), 1, 10000);
662 static void mvebu_uart_console_putchar(struct uart_port *port, int ch)
664 wait_for_xmitr(port);
665 writel(ch, port->membase + UART_TSH(port));
668 static void mvebu_uart_console_write(struct console *co, const char *s,
671 struct uart_port *port = &mvebu_uart_ports[co->index];
673 unsigned int ier, intr, ctl;
676 if (oops_in_progress)
677 locked = spin_trylock_irqsave(&port->lock, flags);
679 spin_lock_irqsave(&port->lock, flags);
681 ier = readl(port->membase + UART_CTRL(port)) & CTRL_BRK_INT;
682 intr = readl(port->membase + UART_INTR(port)) &
683 (CTRL_RX_RDY_INT(port) | CTRL_TX_RDY_INT(port));
684 writel(0, port->membase + UART_CTRL(port));
685 writel(0, port->membase + UART_INTR(port));
687 uart_console_write(port, s, count, mvebu_uart_console_putchar);
689 wait_for_xmite(port);
692 writel(ier, port->membase + UART_CTRL(port));
695 ctl = intr | readl(port->membase + UART_INTR(port));
696 writel(ctl, port->membase + UART_INTR(port));
700 spin_unlock_irqrestore(&port->lock, flags);
703 static int mvebu_uart_console_setup(struct console *co, char *options)
705 struct uart_port *port;
711 if (co->index < 0 || co->index >= MVEBU_NR_UARTS)
714 port = &mvebu_uart_ports[co->index];
716 if (!port->mapbase || !port->membase) {
717 pr_debug("console on ttyMV%i not present\n", co->index);
722 uart_parse_options(options, &baud, &parity, &bits, &flow);
724 return uart_set_options(port, co, baud, parity, bits, flow);
727 static struct uart_driver mvebu_uart_driver;
729 static struct console mvebu_uart_console = {
731 .write = mvebu_uart_console_write,
732 .device = uart_console_device,
733 .setup = mvebu_uart_console_setup,
734 .flags = CON_PRINTBUFFER,
736 .data = &mvebu_uart_driver,
739 static int __init mvebu_uart_console_init(void)
741 register_console(&mvebu_uart_console);
745 console_initcall(mvebu_uart_console_init);
748 #endif /* CONFIG_SERIAL_MVEBU_CONSOLE */
750 static struct uart_driver mvebu_uart_driver = {
751 .owner = THIS_MODULE,
752 .driver_name = DRIVER_NAME,
754 .nr = MVEBU_NR_UARTS,
755 #ifdef CONFIG_SERIAL_MVEBU_CONSOLE
756 .cons = &mvebu_uart_console,
760 #if defined(CONFIG_PM)
761 static int mvebu_uart_suspend(struct device *dev)
763 struct mvebu_uart *mvuart = dev_get_drvdata(dev);
764 struct uart_port *port = mvuart->port;
766 uart_suspend_port(&mvebu_uart_driver, port);
768 mvuart->pm_regs.rbr = readl(port->membase + UART_RBR(port));
769 mvuart->pm_regs.tsh = readl(port->membase + UART_TSH(port));
770 mvuart->pm_regs.ctrl = readl(port->membase + UART_CTRL(port));
771 mvuart->pm_regs.intr = readl(port->membase + UART_INTR(port));
772 mvuart->pm_regs.stat = readl(port->membase + UART_STAT);
773 mvuart->pm_regs.brdv = readl(port->membase + UART_BRDV);
774 mvuart->pm_regs.osamp = readl(port->membase + UART_OSAMP);
776 device_set_wakeup_enable(dev, true);
781 static int mvebu_uart_resume(struct device *dev)
783 struct mvebu_uart *mvuart = dev_get_drvdata(dev);
784 struct uart_port *port = mvuart->port;
786 writel(mvuart->pm_regs.rbr, port->membase + UART_RBR(port));
787 writel(mvuart->pm_regs.tsh, port->membase + UART_TSH(port));
788 writel(mvuart->pm_regs.ctrl, port->membase + UART_CTRL(port));
789 writel(mvuart->pm_regs.intr, port->membase + UART_INTR(port));
790 writel(mvuart->pm_regs.stat, port->membase + UART_STAT);
791 writel(mvuart->pm_regs.brdv, port->membase + UART_BRDV);
792 writel(mvuart->pm_regs.osamp, port->membase + UART_OSAMP);
794 uart_resume_port(&mvebu_uart_driver, port);
799 static const struct dev_pm_ops mvebu_uart_pm_ops = {
800 .suspend = mvebu_uart_suspend,
801 .resume = mvebu_uart_resume,
803 #endif /* CONFIG_PM */
805 static const struct of_device_id mvebu_uart_of_match[];
807 /* Counter to keep track of each UART port id when not using CONFIG_OF */
808 static int uart_num_counter;
810 static int mvebu_uart_probe(struct platform_device *pdev)
812 struct resource *reg = platform_get_resource(pdev, IORESOURCE_MEM, 0);
813 const struct of_device_id *match = of_match_device(mvebu_uart_of_match,
815 struct uart_port *port;
816 struct mvebu_uart *mvuart;
820 dev_err(&pdev->dev, "no registers defined\n");
824 /* Assume that all UART ports have a DT alias or none has */
825 id = of_alias_get_id(pdev->dev.of_node, "serial");
826 if (!pdev->dev.of_node || id < 0)
827 pdev->id = uart_num_counter++;
831 if (pdev->id >= MVEBU_NR_UARTS) {
832 dev_err(&pdev->dev, "cannot have more than %d UART ports\n",
837 port = &mvebu_uart_ports[pdev->id];
839 spin_lock_init(&port->lock);
841 port->dev = &pdev->dev;
842 port->type = PORT_MVEBU;
843 port->ops = &mvebu_uart_ops;
847 port->iotype = UPIO_MEM32;
848 port->flags = UPF_FIXED_PORT;
849 port->line = pdev->id;
852 * IRQ number is not stored in this structure because we may have two of
853 * them per port (RX and TX). Instead, use the driver UART structure
854 * array so called ->irq[].
858 port->mapbase = reg->start;
860 port->membase = devm_ioremap_resource(&pdev->dev, reg);
861 if (IS_ERR(port->membase))
862 return PTR_ERR(port->membase);
864 mvuart = devm_kzalloc(&pdev->dev, sizeof(struct mvebu_uart),
869 /* Get controller data depending on the compatible string */
870 mvuart->data = (struct mvebu_uart_driver_data *)match->data;
873 port->private_data = mvuart;
874 platform_set_drvdata(pdev, mvuart);
876 /* Get fixed clock frequency */
877 mvuart->clk = devm_clk_get(&pdev->dev, NULL);
878 if (IS_ERR(mvuart->clk)) {
879 if (PTR_ERR(mvuart->clk) == -EPROBE_DEFER)
880 return PTR_ERR(mvuart->clk);
882 if (IS_EXTENDED(port)) {
883 dev_err(&pdev->dev, "unable to get UART clock\n");
884 return PTR_ERR(mvuart->clk);
887 if (!clk_prepare_enable(mvuart->clk))
888 port->uartclk = clk_get_rate(mvuart->clk);
891 /* Manage interrupts */
892 if (platform_irq_count(pdev) == 1) {
893 /* Old bindings: no name on the single unamed UART0 IRQ */
894 irq = platform_get_irq(pdev, 0);
898 mvuart->irq[UART_IRQ_SUM] = irq;
901 * New bindings: named interrupts (RX, TX) for both UARTS,
902 * only make use of uart-rx and uart-tx interrupts, do not use
903 * uart-sum of UART0 port.
905 irq = platform_get_irq_byname(pdev, "uart-rx");
909 mvuart->irq[UART_RX_IRQ] = irq;
911 irq = platform_get_irq_byname(pdev, "uart-tx");
915 mvuart->irq[UART_TX_IRQ] = irq;
919 writel(CTRL_SOFT_RST, port->membase + UART_CTRL(port));
921 writel(0, port->membase + UART_CTRL(port));
923 return uart_add_one_port(&mvebu_uart_driver, port);
926 static struct mvebu_uart_driver_data uart_std_driver_data = {
928 .regs.rbr = UART_STD_RBR,
929 .regs.tsh = UART_STD_TSH,
930 .regs.ctrl = UART_STD_CTRL1,
931 .regs.intr = UART_STD_CTRL2,
932 .flags.ctrl_tx_rdy_int = CTRL_STD_TX_RDY_INT,
933 .flags.ctrl_rx_rdy_int = CTRL_STD_RX_RDY_INT,
934 .flags.stat_tx_rdy = STAT_STD_TX_RDY,
935 .flags.stat_rx_rdy = STAT_STD_RX_RDY,
938 static struct mvebu_uart_driver_data uart_ext_driver_data = {
940 .regs.rbr = UART_EXT_RBR,
941 .regs.tsh = UART_EXT_TSH,
942 .regs.ctrl = UART_EXT_CTRL1,
943 .regs.intr = UART_EXT_CTRL2,
944 .flags.ctrl_tx_rdy_int = CTRL_EXT_TX_RDY_INT,
945 .flags.ctrl_rx_rdy_int = CTRL_EXT_RX_RDY_INT,
946 .flags.stat_tx_rdy = STAT_EXT_TX_RDY,
947 .flags.stat_rx_rdy = STAT_EXT_RX_RDY,
950 /* Match table for of_platform binding */
951 static const struct of_device_id mvebu_uart_of_match[] = {
953 .compatible = "marvell,armada-3700-uart",
954 .data = (void *)&uart_std_driver_data,
957 .compatible = "marvell,armada-3700-uart-ext",
958 .data = (void *)&uart_ext_driver_data,
963 static struct platform_driver mvebu_uart_platform_driver = {
964 .probe = mvebu_uart_probe,
966 .name = "mvebu-uart",
967 .of_match_table = of_match_ptr(mvebu_uart_of_match),
968 .suppress_bind_attrs = true,
969 #if defined(CONFIG_PM)
970 .pm = &mvebu_uart_pm_ops,
971 #endif /* CONFIG_PM */
975 static int __init mvebu_uart_init(void)
979 ret = uart_register_driver(&mvebu_uart_driver);
983 ret = platform_driver_register(&mvebu_uart_platform_driver);
985 uart_unregister_driver(&mvebu_uart_driver);
989 arch_initcall(mvebu_uart_init);