Lines Matching refs:lcr
327 unsigned char lcr; in port_show_regs() local
354 lcr = ioread8(priv->membase + UART_LCR); in port_show_regs()
360 iowrite8(lcr, priv->membase + UART_LCR); in port_show_regs()
458 unsigned int dll, dlm, lcr; in pch_uart_hal_set_line() local
485 lcr = parity; in pch_uart_hal_set_line()
486 lcr |= bits; in pch_uart_hal_set_line()
487 lcr |= stb; in pch_uart_hal_set_line()
490 __func__, baud, div, lcr, jiffies); in pch_uart_hal_set_line()
494 iowrite8(lcr, priv->membase + UART_LCR); in pch_uart_hal_set_line()
631 unsigned int lcr; in pch_uart_hal_set_break() local
633 lcr = ioread8(priv->membase + UART_LCR); in pch_uart_hal_set_break()
635 lcr |= PCH_UART_LCR_SB; in pch_uart_hal_set_break()
637 lcr &= ~PCH_UART_LCR_SB; in pch_uart_hal_set_break()
639 iowrite8(lcr, priv->membase + UART_LCR); in pch_uart_hal_set_break()