Lines Matching defs:lcr
688 u8 temp = readb(&ch->ch_neo_uart->lcr);
689 writeb((temp & ~UART_LCR_SBC), &ch->ch_neo_uart->lcr);
927 u8 lcr = 0;
994 lcr |= UART_LCR_PARITY;
997 lcr |= UART_LCR_EPAR;
1005 lcr |= UART_LCR_SPAR;
1009 lcr |= UART_LCR_STOP;
1013 lcr |= UART_LCR_WLEN5;
1016 lcr |= UART_LCR_WLEN6;
1019 lcr |= UART_LCR_WLEN7;
1023 lcr |= UART_LCR_WLEN8;
1028 uart_lcr = readb(&ch->ch_neo_uart->lcr);
1033 writeb(UART_LCR_DLAB, &ch->ch_neo_uart->lcr);
1036 writeb(lcr, &ch->ch_neo_uart->lcr);
1039 if (uart_lcr != lcr)
1040 writeb(lcr, &ch->ch_neo_uart->lcr);
1361 u8 temp = readb(&ch->ch_neo_uart->lcr);
1362 writeb((temp | UART_LCR_SBC), &ch->ch_neo_uart->lcr);