Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 146310
b: refs/heads/master
c: 534fca0
h: refs/heads/master
v: v3
  • Loading branch information
Oskar Schirmer authored and Linus Torvalds committed Jun 11, 2009
1 parent f054f4f commit 646c9d2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 21 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8759ef32d992fc6c0bcbe40fca7aa302190918a5
refs/heads/master: 534fca068ec8063ec8b67626b3eb34ba6ec86967
1 change: 1 addition & 0 deletions trunk/drivers/serial/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -833,6 +833,7 @@ config SERIAL_IMX
bool "IMX serial port support"
depends on ARM && (ARCH_IMX || ARCH_MXC)
select SERIAL_CORE
select RATIONAL
help
If you have a machine based on a Motorola IMX CPU you
can enable its onboard serial port by enabling this option.
Expand Down
30 changes: 10 additions & 20 deletions trunk/drivers/serial/imx.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
#include <linux/serial_core.h>
#include <linux/serial.h>
#include <linux/clk.h>
#include <linux/rational.h>

#include <asm/io.h>
#include <asm/irq.h>
Expand Down Expand Up @@ -670,7 +671,8 @@ imx_set_termios(struct uart_port *port, struct ktermios *termios,
unsigned long flags;
unsigned int ucr2, old_ucr1, old_txrxen, baud, quot;
unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
unsigned int div, num, denom, ufcr;
unsigned int div, ufcr;
unsigned long num, denom;

/*
* If we don't support modem control lines, don't allow
Expand Down Expand Up @@ -772,32 +774,20 @@ imx_set_termios(struct uart_port *port, struct ktermios *termios,
if (!div)
div = 1;

num = baud;
denom = port->uartclk / div / 16;
rational_best_approximation(16 * div * baud, sport->port.uartclk,
1 << 16, 1 << 16, &num, &denom);

/* shift num and denom right until they fit into 16 bits */
while (num > 0x10000 || denom > 0x10000) {
num >>= 1;
denom >>= 1;
}
if (num > 0)
num -= 1;
if (denom > 0)
denom -= 1;

writel(num, sport->port.membase + UBIR);
writel(denom, sport->port.membase + UBMR);

if (div == 7)
div = 6; /* 6 in RFDIV means divide by 7 */
else
div = 6 - div;
num -= 1;
denom -= 1;

ufcr = readl(sport->port.membase + UFCR);
ufcr = (ufcr & (~UFCR_RFDIV)) |
(div << 7);
writel(ufcr, sport->port.membase + UFCR);

writel(num, sport->port.membase + UBIR);
writel(denom, sport->port.membase + UBMR);

#ifdef ONEMS
writel(sport->port.uartclk / div / 1000, sport->port.membase + ONEMS);
#endif
Expand Down

0 comments on commit 646c9d2

Please sign in to comment.