@@ -84,6 +84,7 @@ struct serial8250_config {
#define UART_BUG_NOMSR (1 << 2) /* UART has buggy MSR status bits (Au1x00) */
#define UART_BUG_THRE (1 << 3) /* UART has buggy THRE reassertion */
#define UART_BUG_PARITY (1 << 4) /* UART mishandles parity if FIFO enabled */
+#define UART_BUG_RXEMPT (1 << 5) /* UART can not read empty FIFO */
#define PROBE_RSA (1 << 0)
#define PROBE_ANY (~0)
@@ -2137,8 +2137,13 @@ int serial8250_do_startup(struct uart_port *port)
/*
* Clear the interrupt registers.
+ *
+ * This (and later) unsolicied read of the RX FIFO seems to clear the
+ * RX timeout condition which otherwise generates spurious interrupt.
+ * This behaviour has been observed on Marvell's 88f6282 SoC.
*/
- if (serial_port_in(port, UART_LSR) & UART_LSR_DR)
+ if (!(up->bugs & UART_BUG_RXEMPT) ||
+ (serial_port_in(port, UART_LSR) & UART_LSR_DR))
serial_port_in(port, UART_RX);
serial_port_in(port, UART_IIR);
serial_port_in(port, UART_MSR);
@@ -2300,7 +2305,8 @@ int serial8250_do_startup(struct uart_port *port)
* saved flags to avoid getting false values from polling
* routines or the previous session.
*/
- if (serial_port_in(port, UART_LSR) & UART_LSR_DR)
+ if (!(up->bugs & UART_BUG_RXEMPT) ||
+ (serial_port_in(port, UART_LSR) & UART_LSR_DR))
serial_port_in(port, UART_RX);
serial_port_in(port, UART_IIR);
serial_port_in(port, UART_MSR);
@@ -1021,6 +1021,7 @@ static int omap8250_probe(struct platform_device *pdev)
up.port.fifosize = 64;
up.tx_loadsz = 64;
up.capabilities = UART_CAP_FIFO;
+ up.bugs = UART_BUG_RXEMPT;
#ifdef CONFIG_PM
/*
* Runtime PM is mostly transparent. However to do it right we need to a
Something like this maybe? Subject: [PATCH] serial: 8250: skip empty RX-read only on OMAP The conditional RX-FIFO read seems to cause spurious interrupts and we see just: |serial8250: too much work for irq29 The previous behaviour was "default" for decades and Marvell's 88f6282 SoC might not be the only that relies on it. Therefore this patch moves this special OMAP3630 behaviour befind a BUG field. Fixes: 0aa525d11859 ("tty: serial: 8250_core: read only RX if there is something in the FIFO") Reported-By: Nicolas Schichan <nschichan@freebox.fr> Debuged-By: Peter Hurley <peter@hurleysoftware.com> Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- drivers/tty/serial/8250/8250.h | 1 + drivers/tty/serial/8250/8250_core.c | 10 ++++++++-- drivers/tty/serial/8250/8250_omap.c | 1 + 3 files changed, 10 insertions(+), 2 deletions(-)