2022-07-13 13:03:49

by VAMSHI GAJJELA

[permalink] [raw]
Subject: [PATCH v2] serial: 8250_dw: Avoid pslverr on reading empty receiver fifo

From: VAMSHI GAJJELA <[email protected]>

With PSLVERR_RESP_EN parameter set to 1, the device generates an error
response when an attempt to read an empty RBR with FIFO enabled.

This happens when LCR writes are ignored when UART is busy.
dw8250_check_lcr() in retries to update LCR, invokes dw8250_force_idle()
to clear and reset FIFO and eventually reads UART_RX causing the error.

Avoid this by not reading RBR/UART_RX when no data is available.

Signed-off-by: VAMSHI GAJJELA <[email protected]>
---
v2:
- update as per review comments (re-format comments, xmas tree ordering)

drivers/tty/serial/8250/8250_dw.c | 10 ++++++++++
1 file changed, 10 insertions(+)

diff --git a/drivers/tty/serial/8250/8250_dw.c b/drivers/tty/serial/8250/8250_dw.c
index f57bbd32ef11..bfba89e6c875 100644
--- a/drivers/tty/serial/8250/8250_dw.c
+++ b/drivers/tty/serial/8250/8250_dw.c
@@ -82,8 +82,18 @@ static inline int dw8250_modify_msr(struct uart_port *p, int offset, int value)
static void dw8250_force_idle(struct uart_port *p)
{
struct uart_8250_port *up = up_to_u8250p(p);
+ unsigned int lsr;

serial8250_clear_and_reinit_fifos(up);
+
+ /*
+ * With PSLVERR_RESP_EN parameter set to 1, the device generates an
+ * error response when an attempt to read empty RBR with FIFO enabled.
+ */
+ lsr = p->serial_in(p, UART_LSR);
+ if ((up->fcr & UART_FCR_ENABLE_FIFO) && !(lsr & UART_LSR_DR))
+ return;
+
(void)p->serial_in(p, UART_RX);
}

--
2.37.0.144.g8ac04bfd2-goog


2022-07-13 13:04:12

by Andy Shevchenko

[permalink] [raw]
Subject: Re: [PATCH v2] serial: 8250_dw: Avoid pslverr on reading empty receiver fifo

On Wed, Jul 13, 2022 at 2:43 PM Vamshi Gajjela <[email protected]> wrote:
>
> From: VAMSHI GAJJELA <[email protected]>
>
> With PSLVERR_RESP_EN parameter set to 1, the device generates an error
> response when an attempt to read an empty RBR with FIFO enabled.
>
> This happens when LCR writes are ignored when UART is busy.
> dw8250_check_lcr() in retries to update LCR, invokes dw8250_force_idle()
> to clear and reset FIFO and eventually reads UART_RX causing the error.
>
> Avoid this by not reading RBR/UART_RX when no data is available.

Thanks for an update!
My comments below.

...

> + /*
> + * With PSLVERR_RESP_EN parameter set to 1, the device generates an
> + * error response when an attempt to read empty RBR with FIFO enabled.

an empty

> + */
> + lsr = p->serial_in(p, UART_LSR);

I have just noticed that you do it independently on FIFO enablement.

> + if ((up->fcr & UART_FCR_ENABLE_FIFO) && !(lsr & UART_LSR_DR))
> + return;

I would recommend to move it inside the conditional

if (fcr & FIFO) {
lsr = ...
if (!(lsr &))
return;
}

--
With Best Regards,
Andy Shevchenko