Home | History | Annotate | Download | only in usb

Lines Matching refs:lcr

615 	uint8_t lcr = sc->sc_ports[portno].sc_port_lcr;
622 lcr |= MCS7840_UART_LCR_STOPB2;
624 lcr |= MCS7840_UART_LCR_STOPB1;
627 lcr &= ~MCS7840_UART_LCR_PARITYMASK;
629 lcr |= MCS7840_UART_LCR_PARITYON;
631 lcr = MCS7840_UART_LCR_PARITYODD;
633 lcr = MCS7840_UART_LCR_PARITYEVEN;
636 lcr &= ~MCS7840_UART_LCR_PARITYON;
639 lcr &= ~MCS7840_UART_LCR_DATALENMASK;
642 lcr |= MCS7840_UART_LCR_DATALEN5;
645 lcr |= MCS7840_UART_LCR_DATALEN6;
648 lcr |= MCS7840_UART_LCR_DATALEN7;
651 lcr |= MCS7840_UART_LCR_DATALEN8;
665 sc->sc_ports[portno].sc_port_lcr = lcr;
715 uint8_t lcr = sc->sc_ports[portno].sc_port_lcr;
718 lcr |= MCS7840_UART_LCR_BREAK;
720 lcr &= ~MCS7840_UART_LCR_BREAK;
722 sc->sc_ports[portno].sc_port_lcr = lcr;
818 * Copied from vendor driver, I don't know why we should read LCR