Searched defs:uartclk (Results 1 - 5 of 5) sorted by relevance

/drivers/tty/serial/8250/
H A D8250_acorn.c30 unsigned int uartclk; member in struct:serial_card_type
68 port.uartclk = type->uartclk;
99 .uartclk = 7372800,
106 .uartclk = 3686400,
/drivers/mmc/card/
H A Dsdio_uart.c79 unsigned int uartclk; member in struct:sdio_uart_port
302 if (baud <= port->uartclk)
315 quot = (2 * port->uartclk + baud) / (2 * baud);
1114 port->uartclk = tpl->data[7] * 115200;
1115 if (port->uartclk == 0)
1116 port->uartclk = 115200;
1118 sdio_func_id(func), port->uartclk,
/drivers/tty/serial/
H A Dmpc52xx_uart.c239 /* The 5200 has a fixed /32 prescaler, uartclk contains the ipb freq */
241 port->uartclk / (32 * 0xffff) + 1,
242 port->uartclk / 32);
243 divisor = (port->uartclk + 16 * baud) / (32 * baud);
258 /* The 5200B has a selectable /4 or /32 prescaler, uartclk contains the
261 port->uartclk / (32 * 0xffff) + 1,
262 port->uartclk / 4);
263 divisor = (port->uartclk + 2 * baud) / (4 * baud);
479 /* uartclk contains the ips freq */
481 port->uartclk / (1
1179 unsigned int uartclk; local
1310 unsigned int uartclk; local
[all...]
H A Dimx.c672 * RFDIV is set such way to satisfy requested uartclk value
675 ufcr_rfdiv = (clk_get_rate(sport->clk) + sport->port.uartclk / 2)
676 / sport->port.uartclk;
940 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
995 div = sport->port.uartclk / (baud * 16);
1002 rational_best_approximation(16 * div * baud, sport->port.uartclk,
1005 tdiv64 = sport->port.uartclk;
1022 writel(sport->port.uartclk / div / 1000,
1102 if (sport->port.uartclk / 16 != ser->baud_base)
1260 unsigned int ucr2, ubir,ubmr, uartclk; local
[all...]
H A Dpch_uart.c228 int uartclk; member in struct:eg20t_port
420 div = DIV_ROUND_CLOSEST(priv->uartclk / 16, baud);
1237 if (port->uartclk)
1238 priv->uartclk = port->uartclk;
1240 port->uartclk = priv->uartclk;
1369 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16);
1591 port->uartclk = pch_uart_get_uartclk();
1675 priv->uartclk
[all...]

Completed in 4650 milliseconds