summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Burmeister <joe.burmeister@devtank.co.uk>2019-05-13 06:23:57 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-05-21 06:18:17 -0400
commit5d24f455c182d5116dd5db8e1dc501115ecc9c2c (patch)
tree235bd3de85e84aeb5f51ee6a698f5ef374504857
parent099506cbbc79c0bd52b19cb6b930f256dabc3950 (diff)
tty: max310x: Fix external crystal register setup
The datasheet states: Bit 4: ClockEnSet the ClockEn bit high to enable an external clocking (crystal or clock generator at XIN). Set the ClockEn bit to 0 to disable clocking Bit 1: CrystalEnSet the CrystalEn bit high to enable the crystal oscillator. When using an external clock source at XIN, CrystalEn must be set low. The bit 4, MAX310X_CLKSRC_EXTCLK_BIT, should be set and was not. This was required to make the MAX3107 with an external crystal on our board able to send or receive data. Signed-off-by: Joe Burmeister <joe.burmeister@devtank.co.uk> Cc: stable <stable@vger.kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/tty/serial/max310x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/max310x.c b/drivers/tty/serial/max310x.c
index 450ba6d7996c..e5aebbf5f302 100644
--- a/drivers/tty/serial/max310x.c
+++ b/drivers/tty/serial/max310x.c
@@ -581,7 +581,7 @@ static int max310x_set_ref_clk(struct device *dev, struct max310x_port *s,
581 } 581 }
582 582
583 /* Configure clock source */ 583 /* Configure clock source */
584 clksrc = xtal ? MAX310X_CLKSRC_CRYST_BIT : MAX310X_CLKSRC_EXTCLK_BIT; 584 clksrc = MAX310X_CLKSRC_EXTCLK_BIT | (xtal ? MAX310X_CLKSRC_CRYST_BIT : 0);
585 585
586 /* Configure PLL */ 586 /* Configure PLL */
587 if (pllcfg) { 587 if (pllcfg) {