]> git.baikalelectronics.ru Git - kernel.git/commit
tty: serial: fsl_lpuart: disable the CTS when send break signal
authorSherry Sun <sherry.sun@nxp.com>
Wed, 14 Dec 2022 03:11:35 +0000 (11:11 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 11 Mar 2023 12:55:34 +0000 (13:55 +0100)
commit7d3e6d1c60dc8d865d948a9cc666848d42b65a39
tree3a587e49577d4dc9fdfdf568fefb85c0413c900d
parenteedbfa881f969a268e03baff90506069eff2bf15
tty: serial: fsl_lpuart: disable the CTS when send break signal

[ Upstream commit ee920f51e75b1a492044761f33e79cb5925645ac ]

LPUART IP has a bug that it treats the CTS as higher priority than the
break signal, which cause the break signal sending through UARTCTRL_SBK
may impacted by the CTS input if the HW flow control is enabled.

Add this workaround patch to fix the IP bug, we can disable CTS before
asserting SBK to avoid any interference from CTS, and re-enable it when
break off.

Such as for the bluetooth chip power save feature, host can let the BT
chip get into sleep state by sending a UART break signal, and wake it up
by turning off the UART break. If the BT chip enters the sleep mode
successfully, it will pull up the CTS line, if the BT chip is woken up,
it will pull down the CTS line. If without this workaround patch, the
UART TX pin cannot send the break signal successfully as it affected by
the BT CTS pin. After adding this patch, the BT power save feature can
work well.

Signed-off-by: Sherry Sun <sherry.sun@nxp.com>
Link: https://lore.kernel.org/r/20221214031137.28815-2-sherry.sun@nxp.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/tty/serial/fsl_lpuart.c