]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
serial: mvebu-uart: clear state register before IRQ request
authorAllen Yan <yanwei@marvell.com>
Fri, 13 Oct 2017 09:01:52 +0000 (11:01 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 20 Oct 2017 12:20:06 +0000 (14:20 +0200)
When receiving data on RX pin before ->uart_startup() is called, some
error bits in the state register could be set up (like BRK_DET).

This is harmless when using only the standard UART (error bits are
read-only), but may procude an endless loop once in the extended UART
RX interrupt handler (error bits must be cleared).

Clear the status register in ->uart_startup() to avoid this situation.

Signed-off-by: Allen Yan <yanwei@marvell.com>
Signed-off-by: Miquel Raynal <miquel.raynal@free-electrons.com>
Reviewed-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/mvebu-uart.c

index 5767196ec0a9ab7cb587e74343aadccf9c709bfe..6bd0c40008bb87dc394bb32ca40c48296170a3e1 100644 (file)
@@ -322,6 +322,12 @@ static int mvebu_uart_startup(struct uart_port *port)
        writel(CTRL_TXFIFO_RST | CTRL_RXFIFO_RST,
               port->membase + UART_CTRL(port));
        udelay(1);
+
+       /* Clear the error bits of state register before IRQ request */
+       ret = readl(port->membase + UART_STAT);
+       ret |= STAT_BRK_ERR;
+       writel(ret, port->membase + UART_STAT);
+
        writel(CTRL_BRK_INT, port->membase + UART_CTRL(port));
 
        ctl = readl(port->membase + UART_INTR(port));