Lines Matching refs:baud
235 unsigned int baud, quot; in apbuart_set_termios() local
238 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16); in apbuart_set_termios()
239 if (baud == 0) in apbuart_set_termios()
243 quot = (uart_get_divisor(port, baud)) * 2; in apbuart_set_termios()
260 uart_update_timeout(port, termios->c_cflag, baud); in apbuart_set_termios()
449 apbuart_console_get_options(struct uart_port *port, int *baud, in apbuart_console_get_options() argument
467 *baud = port->uartclk / (16 * (quot + 1)); in apbuart_console_get_options()
474 int baud = 38400; in apbuart_console_setup() local
495 uart_parse_options(options, &baud, &parity, &bits, &flow); in apbuart_console_setup()
497 apbuart_console_get_options(port, &baud, &parity, &bits); in apbuart_console_setup()
499 return uart_set_options(port, co, baud, parity, bits, flow); in apbuart_console_setup()