Lines Matching refs:baud
340 unsigned int baud, quot; in netx_set_termios() local
372 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16); in netx_set_termios()
373 quot = baud * 4096; in netx_set_termios()
380 uart_update_timeout(port, termios->c_cflag, baud); in netx_set_termios()
551 netx_console_get_options(struct uart_port *port, int *baud, in netx_console_get_options() argument
556 *baud = (readl(port->membase + UART_BAUDDIV_MSB) << 8) | in netx_console_get_options()
558 *baud *= 1000; in netx_console_get_options()
559 *baud /= 4096; in netx_console_get_options()
560 *baud *= 1000; in netx_console_get_options()
561 *baud /= 256; in netx_console_get_options()
562 *baud *= 100; in netx_console_get_options()
596 int baud = 9600; in netx_console_setup() local
611 uart_parse_options(options, &baud, &parity, &bits, &flow); in netx_console_setup()
617 netx_console_get_options(&sport->port, &baud, in netx_console_setup()
623 return uart_set_options(&sport->port, co, baud, parity, bits, flow); in netx_console_setup()