Lines Matching refs:lcr
310 int lcr, prediv; in set_baud() local
337 lcr = readb(&uart->iu_lcr); in set_baud()
339 writeb(lcr | UART_LCR_DLAB, &uart->iu_lcr); in set_baud()
343 writeb((unsigned char)lcr, &uart->iu_lcr); in set_baud()
590 char lcr, sizebits; in config_port() local
631 lcr = readb(&port->ip_uart_regs->iu_lcr); in config_port()
632 lcr &= ~(LCR_MASK_BITS_CHAR | UART_LCR_EPAR | in config_port()
636 lcr |= sizebits; in config_port()
640 lcr |= UART_LCR_PARITY; in config_port()
642 lcr |= UART_LCR_EPAR; in config_port()
647 lcr |= UART_LCR_STOP /* 2 stop bits */ ; in config_port()
649 writeb(lcr, &port->ip_uart_regs->iu_lcr); in config_port()