Lines Matching defs:lcr
689 u8 temp = readb(&ch->ch_neo_uart->lcr);
690 writeb((temp & ~UART_LCR_SBC), &ch->ch_neo_uart->lcr);
928 u8 lcr = 0;
995 lcr |= UART_LCR_PARITY;
998 lcr |= UART_LCR_EPAR;
1001 lcr |= UART_LCR_SPAR;
1004 lcr |= UART_LCR_STOP;
1006 lcr |= UART_LCR_WLEN(tty_get_char_size(ch->ch_c_cflag));
1009 uart_lcr = readb(&ch->ch_neo_uart->lcr);
1014 writeb(UART_LCR_DLAB, &ch->ch_neo_uart->lcr);
1017 writeb(lcr, &ch->ch_neo_uart->lcr);
1020 if (uart_lcr != lcr)
1021 writeb(lcr, &ch->ch_neo_uart->lcr);
1342 u8 temp = readb(&ch->ch_neo_uart->lcr);
1343 writeb((temp | UART_LCR_SBC), &ch->ch_neo_uart->lcr);