Lines Matching refs:lcr
328 unsigned char lcr; in port_show_regs() local
355 lcr = ioread8(priv->membase + UART_LCR); in port_show_regs()
361 iowrite8(lcr, priv->membase + UART_LCR); in port_show_regs()
459 unsigned int dll, dlm, lcr; in pch_uart_hal_set_line() local
486 lcr = parity; in pch_uart_hal_set_line()
487 lcr |= bits; in pch_uart_hal_set_line()
488 lcr |= stb; in pch_uart_hal_set_line()
491 __func__, baud, div, lcr, jiffies); in pch_uart_hal_set_line()
495 iowrite8(lcr, priv->membase + UART_LCR); in pch_uart_hal_set_line()
632 unsigned int lcr; in pch_uart_hal_set_break() local
634 lcr = ioread8(priv->membase + UART_LCR); in pch_uart_hal_set_break()
636 lcr |= PCH_UART_LCR_SB; in pch_uart_hal_set_break()
638 lcr &= ~PCH_UART_LCR_SB; in pch_uart_hal_set_break()
640 iowrite8(lcr, priv->membase + UART_LCR); in pch_uart_hal_set_break()