Lines Matching refs:baud
1156 unsigned int cnt, baud, quot, clk_sel, best_quot = 0; in s3c24xx_serial_getclk() local
1187 baud = rate / div; in s3c24xx_serial_getclk()
1190 baud = rate / (quot * 16); in s3c24xx_serial_getclk()
1194 calc_deviation = req_baud - baud; in s3c24xx_serial_getclk()
1241 unsigned int baud, quot, clk_sel = 0; in s3c24xx_serial_set_termios() local
1256 baud = uart_get_baud_rate(port, termios, old, 0, 115200*8); in s3c24xx_serial_set_termios()
1257 quot = s3c24xx_serial_getclk(ourport, baud, &clk, &clk_sel); in s3c24xx_serial_set_termios()
1258 if (baud == 38400 && (port->flags & UPF_SPD_MASK) == UPF_SPD_CUST) in s3c24xx_serial_set_termios()
1280 unsigned int div = ourport->baudclk_rate / baud; in s3c24xx_serial_set_termios()
1355 uart_update_timeout(port, termios->c_cflag, baud); in s3c24xx_serial_set_termios()
2029 s3c24xx_serial_get_options(struct uart_port *port, int *baud, in s3c24xx_serial_get_options() argument
2090 *baud = rate / (16 * (ubrdiv + 1)); in s3c24xx_serial_get_options()
2091 dbg("calculated baud %d\n", *baud); in s3c24xx_serial_get_options()
2100 int baud = 9600; in s3c24xx_serial_console_setup() local
2130 uart_parse_options(options, &baud, &parity, &bits, &flow); in s3c24xx_serial_console_setup()
2132 s3c24xx_serial_get_options(port, &baud, &parity, &bits); in s3c24xx_serial_console_setup()
2134 dbg("s3c24xx_serial_console_setup: baud %d\n", baud); in s3c24xx_serial_console_setup()
2136 return uart_set_options(port, co, baud, parity, bits, flow); in s3c24xx_serial_console_setup()