lkml.org 
[lkml]   [2020]   [Oct]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 5.9 751/757] tty: serial: fsl_lpuart: fix lpuart32_poll_get_char
    Date
    From: Peng Fan <peng.fan@nxp.com>

    commit 29788ab1d2bf26c130de8f44f9553ee78a27e8d5 upstream.

    The watermark is set to 1, so we need to input two chars to trigger RDRF
    using the original logic. With the new logic, we could always get the
    char when there is data in FIFO.

    Suggested-by: Fugang Duan <fugang.duan@nxp.com>
    Signed-off-by: Peng Fan <peng.fan@nxp.com>
    Link: https://lore.kernel.org/r/20200929095509.21680-1-peng.fan@nxp.com
    Cc: stable <stable@vger.kernel.org>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

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

    --- a/drivers/tty/serial/fsl_lpuart.c
    +++ b/drivers/tty/serial/fsl_lpuart.c
    @@ -680,7 +680,7 @@ static void lpuart32_poll_put_char(struc

    static int lpuart32_poll_get_char(struct uart_port *port)
    {
    - if (!(lpuart32_read(port, UARTSTAT) & UARTSTAT_RDRF))
    + if (!(lpuart32_read(port, UARTWATER) >> UARTWATER_RXCNT_OFF))
    return NO_POLL_CHAR;

    return lpuart32_read(port, UARTDATA);

    \
     
     \ /
      Last update: 2020-10-27 17:40    [W:3.273 / U:0.348 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site