Lines Matching refs:lcr
283 uint8_t lcr;
287 lcr = siu_read(port, UART_LCR);
289 lcr |= UART_LCR_SBC;
291 lcr &= ~UART_LCR_SBC;
292 siu_write(port, UART_LCR, lcr);
473 uint8_t lcr;
484 lcr = siu_read(port, UART_LCR);
485 lcr &= ~UART_LCR_SBC;
486 siu_write(port, UART_LCR, lcr);
502 uint8_t lcr, fcr, ier;
509 lcr = UART_LCR_WLEN5;
512 lcr = UART_LCR_WLEN6;
515 lcr = UART_LCR_WLEN7;
518 lcr = UART_LCR_WLEN8;
523 lcr |= UART_LCR_STOP;
525 lcr |= UART_LCR_PARITY;
527 lcr |= UART_LCR_EPAR;
529 lcr |= UART_LCR_SPAR;
566 siu_write(port, UART_LCR, lcr | UART_LCR_DLAB);
571 siu_write(port, UART_LCR, lcr);