Lines Matching refs:baud
1207 unsigned int baud; in lpuart_set_termios() local
1273 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16); in lpuart_set_termios()
1298 uart_update_timeout(port, termios->c_cflag, baud); in lpuart_set_termios()
1319 sbr = sport->port.uartclk / (16 * baud); in lpuart_set_termios()
1320 brfa = ((sport->port.uartclk - (16 * sbr * baud)) * 2) / baud; in lpuart_set_termios()
1344 unsigned int baud; in lpuart32_set_termios() local
1408 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16); in lpuart32_set_termios()
1433 uart_update_timeout(port, termios->c_cflag, baud); in lpuart32_set_termios()
1443 sbr = sport->port.uartclk / (16 * baud); in lpuart32_set_termios()
1601 lpuart_console_get_options(struct lpuart_port *sport, int *baud, in lpuart_console_get_options() argument
1644 if (*baud != baud_raw) in lpuart_console_get_options()
1646 "from %d to %d\n", baud_raw, *baud); in lpuart_console_get_options()
1650 lpuart32_console_get_options(struct lpuart_port *sport, int *baud, in lpuart32_console_get_options() argument
1687 if (*baud != baud_raw) in lpuart32_console_get_options()
1689 "from %d to %d\n", baud_raw, *baud); in lpuart32_console_get_options()
1695 int baud = 115200; in lpuart_console_setup() local
1713 uart_parse_options(options, &baud, &parity, &bits, &flow); in lpuart_console_setup()
1716 lpuart32_console_get_options(sport, &baud, &parity, &bits); in lpuart_console_setup()
1718 lpuart_console_get_options(sport, &baud, &parity, &bits); in lpuart_console_setup()
1725 return uart_set_options(&sport->port, co, baud, parity, bits, flow); in lpuart_console_setup()