Lines Matching refs:baud
1181 unsigned int cnt, baud, quot, clk_sel, best_quot = 0; in s3c24xx_serial_getclk() local
1212 baud = rate / div; in s3c24xx_serial_getclk()
1215 baud = rate / (quot * 16); in s3c24xx_serial_getclk()
1219 calc_deviation = req_baud - baud; in s3c24xx_serial_getclk()
1266 unsigned int baud, quot, clk_sel = 0; in s3c24xx_serial_set_termios() local
1281 baud = uart_get_baud_rate(port, termios, old, 0, 115200*8); in s3c24xx_serial_set_termios()
1282 quot = s3c24xx_serial_getclk(ourport, baud, &clk, &clk_sel); in s3c24xx_serial_set_termios()
1283 if (baud == 38400 && (port->flags & UPF_SPD_MASK) == UPF_SPD_CUST) in s3c24xx_serial_set_termios()
1305 unsigned int div = ourport->baudclk_rate / baud; in s3c24xx_serial_set_termios()
1380 uart_update_timeout(port, termios->c_cflag, baud); in s3c24xx_serial_set_termios()
2054 s3c24xx_serial_get_options(struct uart_port *port, int *baud, in s3c24xx_serial_get_options() argument
2115 *baud = rate / (16 * (ubrdiv + 1)); in s3c24xx_serial_get_options()
2116 dbg("calculated baud %d\n", *baud); in s3c24xx_serial_get_options()
2125 int baud = 9600; in s3c24xx_serial_console_setup() local
2155 uart_parse_options(options, &baud, &parity, &bits, &flow); in s3c24xx_serial_console_setup()
2157 s3c24xx_serial_get_options(port, &baud, &parity, &bits); in s3c24xx_serial_console_setup()
2159 dbg("s3c24xx_serial_console_setup: baud %d\n", baud); in s3c24xx_serial_console_setup()
2161 return uart_set_options(port, co, baud, parity, bits, flow); in s3c24xx_serial_console_setup()