Linux Serial subsystem development
 help / color / mirror / Atom feed
* [PATCH v2] serial: imx: fix cached UCR2 read on software reset
@ 2018-04-20 12:44 Stefan Agner
  2018-06-07  7:56 ` Uwe Kleine-König
  0 siblings, 1 reply; 4+ messages in thread
From: Stefan Agner @ 2018-04-20 12:44 UTC (permalink / raw)
  To: gregkh
  Cc: u.kleine-koenig, festevam, jslaby, linux-serial, linux-kernel,
	Stefan Agner

To reset the UART the SRST needs be cleared (low active). According
to the documentation the bit will remain active for 4 module clocks
until it is cleared (set to 1).

Hence the real register need to be read in case the cached register
indicates that the SRST bit is zero.

This bug lead to wrong baudrate because the baud rate register got
restored before reset completed in imx_flush_buffer.

Fixes: 3a0ab62f43de ("serial: imx: implement shadow registers for UCRx and UFCR")
Signed-off-by: Stefan Agner <stefan@agner.ch>
Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com>
Reviewed-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
Hi Greg,

Since this fixes a regression it should go into v4.17...

--
Stefan


 drivers/tty/serial/imx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c
index 91f3a1a5cb7f..4ff6bd6eb9ab 100644
--- a/drivers/tty/serial/imx.c
+++ b/drivers/tty/serial/imx.c
@@ -316,7 +316,7 @@ static u32 imx_uart_readl(struct imx_port *sport, u32 offset)
 		 * differ from the value that was last written. As it only
 		 * clears after being set, reread conditionally.
 		 */
-		if (sport->ucr2 & UCR2_SRST)
+		if (!(sport->ucr2 & UCR2_SRST))
 			sport->ucr2 = readl(sport->port.membase + offset);
 		return sport->ucr2;
 		break;
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-06-12 12:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-20 12:44 [PATCH v2] serial: imx: fix cached UCR2 read on software reset Stefan Agner
2018-06-07  7:56 ` Uwe Kleine-König
2018-06-12 12:11   ` Stefan Agner
2018-06-12 12:28     ` Uwe Kleine-König

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox