Lines Matching refs:lcr
304 unsigned char lcr; in port_show_regs() local
331 lcr = ioread8(priv->membase + UART_LCR); in port_show_regs()
337 iowrite8(lcr, priv->membase + UART_LCR); in port_show_regs()
435 unsigned int dll, dlm, lcr; in pch_uart_hal_set_line() local
462 lcr = parity; in pch_uart_hal_set_line()
463 lcr |= bits; in pch_uart_hal_set_line()
464 lcr |= stb; in pch_uart_hal_set_line()
467 __func__, baud, div, lcr, jiffies); in pch_uart_hal_set_line()
471 iowrite8(lcr, priv->membase + UART_LCR); in pch_uart_hal_set_line()
604 unsigned int lcr; in pch_uart_hal_set_break() local
606 lcr = ioread8(priv->membase + UART_LCR); in pch_uart_hal_set_break()
608 lcr |= PCH_UART_LCR_SB; in pch_uart_hal_set_break()
610 lcr &= ~PCH_UART_LCR_SB; in pch_uart_hal_set_break()
612 iowrite8(lcr, priv->membase + UART_LCR); in pch_uart_hal_set_break()