serial: imx: set_termios(): do not enable autoRTS if RTS is unset
authorSergey Organov <sorganov@gmail.com>
Fri, 26 Jul 2019 18:52:39 +0000 (21:52 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 4 Sep 2019 10:43:46 +0000 (12:43 +0200)
Don't let receiver hardware automatically control RTS output if it
was requested to be inactive.

To ensure this, set_termios() shouldn't set UCR2_CTSC bit if UCR2_CTS
(=TIOCM_RTS) is cleared. Added corresponding check in imx_uart_rts_auto()
to fix this.

Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Reviewed-by: Sascha Hauer <s.hauer@pengutronix.de>
Tested-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Sergey Organov <sorganov@gmail.com>
Link: https://lore.kernel.org/r/1564167161-3972-2-git-send-email-sorganov@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/imx.c

index 57d6e6ba556efd83d533093f09fef45ddbc0e523..32f36d86a960ec96fa7f5d41c272034ad6cf6e2f 100644 (file)
@@ -405,7 +405,12 @@ static void imx_uart_rts_inactive(struct imx_port *sport, u32 *ucr2)
 /* called with port.lock taken and irqs caller dependent */
 static void imx_uart_rts_auto(struct imx_port *sport, u32 *ucr2)
 {
-       *ucr2 |= UCR2_CTSC;
+       /*
+        * Only let receiver control RTS output if we were not requested to have
+        * RTS inactive (which then should take precedence).
+        */
+       if (*ucr2 & UCR2_CTS)
+               *ucr2 |= UCR2_CTSC;
 }
 
 /* called with port.lock taken and irqs off */