Lines Matching refs:baud
240 unsigned int baud, quot; in apbuart_set_termios() local
243 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16); in apbuart_set_termios()
244 if (baud == 0) in apbuart_set_termios()
248 quot = (uart_get_divisor(port, baud)) * 2; in apbuart_set_termios()
265 uart_update_timeout(port, termios->c_cflag, baud); in apbuart_set_termios()
454 apbuart_console_get_options(struct uart_port *port, int *baud, in apbuart_console_get_options() argument
472 *baud = port->uartclk / (16 * (quot + 1)); in apbuart_console_get_options()
479 int baud = 38400; in apbuart_console_setup() local
500 uart_parse_options(options, &baud, &parity, &bits, &flow); in apbuart_console_setup()
502 apbuart_console_get_options(port, &baud, &parity, &bits); in apbuart_console_setup()
504 return uart_set_options(port, co, baud, parity, bits, flow); in apbuart_console_setup()