Lines Matching refs:lcr
315 unsigned int lcr; in ks8695uart_break_ctl() local
317 lcr = UART_GET_LCR(port); in ks8695uart_break_ctl()
320 lcr |= URLC_URSBC; in ks8695uart_break_ctl()
322 lcr &= ~URLC_URSBC; in ks8695uart_break_ctl()
324 UART_PUT_LCR(port, lcr); in ks8695uart_break_ctl()
384 unsigned int lcr, fcr = 0; in ks8695uart_set_termios() local
396 lcr = URCL_5; in ks8695uart_set_termios()
399 lcr = URCL_6; in ks8695uart_set_termios()
402 lcr = URCL_7; in ks8695uart_set_termios()
405 lcr = URCL_8; in ks8695uart_set_termios()
411 lcr |= URLC_URSB; in ks8695uart_set_termios()
417 lcr |= URPE_MARK; in ks8695uart_set_termios()
419 lcr |= URPE_SPACE; in ks8695uart_set_termios()
422 lcr |= URPE_ODD; in ks8695uart_set_termios()
424 lcr |= URPE_EVEN; in ks8695uart_set_termios()
474 UART_PUT_LCR(port, lcr); in ks8695uart_set_termios()
580 unsigned int lcr; in ks8695_console_get_options() local
582 lcr = UART_GET_LCR(port); in ks8695_console_get_options()
584 switch (lcr & URLC_PARITY) { in ks8695_console_get_options()
595 switch (lcr & URLC_URCL) { in ks8695_console_get_options()