Lines Matching refs:lcr
310 unsigned int lcr; in ks8695uart_break_ctl() local
312 lcr = UART_GET_LCR(port); in ks8695uart_break_ctl()
315 lcr |= URLC_URSBC; in ks8695uart_break_ctl()
317 lcr &= ~URLC_URSBC; in ks8695uart_break_ctl()
319 UART_PUT_LCR(port, lcr); in ks8695uart_break_ctl()
379 unsigned int lcr, fcr = 0; in ks8695uart_set_termios() local
391 lcr = URCL_5; in ks8695uart_set_termios()
394 lcr = URCL_6; in ks8695uart_set_termios()
397 lcr = URCL_7; in ks8695uart_set_termios()
400 lcr = URCL_8; in ks8695uart_set_termios()
406 lcr |= URLC_URSB; in ks8695uart_set_termios()
412 lcr |= URPE_MARK; in ks8695uart_set_termios()
414 lcr |= URPE_SPACE; in ks8695uart_set_termios()
417 lcr |= URPE_ODD; in ks8695uart_set_termios()
419 lcr |= URPE_EVEN; in ks8695uart_set_termios()
469 UART_PUT_LCR(port, lcr); in ks8695uart_set_termios()
575 unsigned int lcr; in ks8695_console_get_options() local
577 lcr = UART_GET_LCR(port); in ks8695_console_get_options()
579 switch (lcr & URLC_PARITY) { in ks8695_console_get_options()
590 switch (lcr & URLC_URCL) { in ks8695_console_get_options()