sc16is7xx: Preserve EFR bits on update
authorLech Perczak <l.perczak@camlintechnologies.com>
Mon, 21 Feb 2022 10:56:13 +0000 (11:56 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 Feb 2022 09:24:27 +0000 (10:24 +0100)
Preserve unaffected bits state when accessing EFR register. This
prevents hardware flow control bits from being cleared on enhanced
functions access.

Signed-off-by: Lech Perczak <l.perczak@camlintechnologies.com>
Signed-off-by: Tomasz Moń <tomasz.mon@camlingroup.com>
Link: https://lore.kernel.org/r/20220221105618.3503470-2-tomasz.mon@camlingroup.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/sc16is7xx.c

index 64e7e6c..3a808b2 100644 (file)
                                                  *       XON1, XON2, XOFF1 and
                                                  *       XOFF2
                                                  */
+#define SC16IS7XX_EFR_FLOWCTRL_BITS    (SC16IS7XX_EFR_AUTORTS_BIT | \
+                                       SC16IS7XX_EFR_AUTOCTS_BIT | \
+                                       SC16IS7XX_EFR_XOFF2_DETECT_BIT | \
+                                       SC16IS7XX_EFR_SWFLOW3_BIT | \
+                                       SC16IS7XX_EFR_SWFLOW2_BIT | \
+                                       SC16IS7XX_EFR_SWFLOW1_BIT | \
+                                       SC16IS7XX_EFR_SWFLOW0_BIT)
+
 
 /* Misc definitions */
 #define SC16IS7XX_FIFO_SIZE            (64)
@@ -523,8 +531,10 @@ static int sc16is7xx_set_baud(struct uart_port *port, int baud)
 
        /* Enable enhanced features */
        regcache_cache_bypass(s->regmap, true);
-       sc16is7xx_port_write(port, SC16IS7XX_EFR_REG,
-                            SC16IS7XX_EFR_ENABLE_BIT);
+       sc16is7xx_port_update(port, SC16IS7XX_EFR_REG,
+                             SC16IS7XX_EFR_ENABLE_BIT,
+                             SC16IS7XX_EFR_ENABLE_BIT);
+
        regcache_cache_bypass(s->regmap, false);
 
        /* Put LCR back to the normal mode */
@@ -932,7 +942,10 @@ static void sc16is7xx_set_termios(struct uart_port *port,
        if (termios->c_iflag & IXOFF)
                flow |= SC16IS7XX_EFR_SWFLOW1_BIT;
 
-       sc16is7xx_port_write(port, SC16IS7XX_EFR_REG, flow);
+       sc16is7xx_port_update(port,
+                             SC16IS7XX_EFR_REG,
+                             SC16IS7XX_EFR_FLOWCTRL_BITS,
+                             flow);
        regcache_cache_bypass(s->regmap, false);
 
        /* Update LCR register */
@@ -1007,8 +1020,9 @@ static int sc16is7xx_startup(struct uart_port *port)
        regcache_cache_bypass(s->regmap, true);
 
        /* Enable write access to enhanced features and internal clock div */
-       sc16is7xx_port_write(port, SC16IS7XX_EFR_REG,
-                            SC16IS7XX_EFR_ENABLE_BIT);
+       sc16is7xx_port_update(port, SC16IS7XX_EFR_REG,
+                             SC16IS7XX_EFR_ENABLE_BIT,
+                             SC16IS7XX_EFR_ENABLE_BIT);
 
        /* Enable TCR/TLR */
        sc16is7xx_port_update(port, SC16IS7XX_MCR_REG,