Skip to content

Commit c3d39fd

Browse files
hvilleneuvedoogregkh
authored andcommitted
serial: sc16is7xx: fix bug in sc16is7xx_set_baud() when using prescaler
[ Upstream commit 8492bd9 ] When using a high speed clock with a low baud rate, the 4x prescaler is automatically selected if required. In that case, sc16is7xx_set_baud() properly configures the chip registers, but returns an incorrect baud rate by not taking into account the prescaler value. This incorrect baud rate is then fed to uart_update_timeout(). For example, with an input clock of 80MHz, and a selected baud rate of 50, sc16is7xx_set_baud() will return 200 instead of 50. Fix this by first changing the prescaler variable to hold the selected prescaler value instead of the MCR bitfield. Then properly take into account the selected prescaler value in the return value computation. Also add better documentation about the divisor value computation. Fixes: dfeae61 ("serial: sc16is7xx") Cc: [email protected] Signed-off-by: Hugo Villeneuve <[email protected]> Reviewed-by: Jiri Slaby <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]> Signed-off-by: Sasha Levin <[email protected]>
1 parent aeb2b22 commit c3d39fd

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed

drivers/tty/serial/sc16is7xx.c

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -482,16 +482,28 @@ static bool sc16is7xx_regmap_noinc(struct device *dev, unsigned int reg)
482482
return reg == SC16IS7XX_RHR_REG;
483483
}
484484

485+
/*
486+
* Configure programmable baud rate generator (divisor) according to the
487+
* desired baud rate.
488+
*
489+
* From the datasheet, the divisor is computed according to:
490+
*
491+
* XTAL1 input frequency
492+
* -----------------------
493+
* prescaler
494+
* divisor = ---------------------------
495+
* baud-rate x sampling-rate
496+
*/
485497
static int sc16is7xx_set_baud(struct uart_port *port, int baud)
486498
{
487499
struct sc16is7xx_one *one = to_sc16is7xx_one(port, port);
488500
u8 lcr;
489-
u8 prescaler = 0;
501+
unsigned int prescaler = 1;
490502
unsigned long clk = port->uartclk, div = clk / 16 / baud;
491503

492504
if (div >= BIT(16)) {
493-
prescaler = SC16IS7XX_MCR_CLKSEL_BIT;
494-
div /= 4;
505+
prescaler = 4;
506+
div /= prescaler;
495507
}
496508

497509
/* In an amazing feat of design, the Enhanced Features Register shares
@@ -528,9 +540,10 @@ static int sc16is7xx_set_baud(struct uart_port *port, int baud)
528540

529541
mutex_unlock(&one->efr_lock);
530542

543+
/* If bit MCR_CLKSEL is set, the divide by 4 prescaler is activated. */
531544
sc16is7xx_port_update(port, SC16IS7XX_MCR_REG,
532545
SC16IS7XX_MCR_CLKSEL_BIT,
533-
prescaler);
546+
prescaler == 1 ? 0 : SC16IS7XX_MCR_CLKSEL_BIT);
534547

535548
/* Open the LCR divisors for configuration */
536549
sc16is7xx_port_write(port, SC16IS7XX_LCR_REG,
@@ -545,7 +558,7 @@ static int sc16is7xx_set_baud(struct uart_port *port, int baud)
545558
/* Put LCR back to the normal mode */
546559
sc16is7xx_port_write(port, SC16IS7XX_LCR_REG, lcr);
547560

548-
return DIV_ROUND_CLOSEST(clk / 16, div);
561+
return DIV_ROUND_CLOSEST((clk / prescaler) / 16, div);
549562
}
550563

551564
static void sc16is7xx_handle_rx(struct uart_port *port, unsigned int rxlen,

0 commit comments

Comments
 (0)