Lines Matching refs:lcr
300 unsigned char lcr; in port_show_regs() local
327 lcr = ioread8(priv->membase + UART_LCR); in port_show_regs()
333 iowrite8(lcr, priv->membase + UART_LCR); in port_show_regs()
431 unsigned int dll, dlm, lcr; in pch_uart_hal_set_line() local
458 lcr = parity; in pch_uart_hal_set_line()
459 lcr |= bits; in pch_uart_hal_set_line()
460 lcr |= stb; in pch_uart_hal_set_line()
463 __func__, baud, div, lcr, jiffies); in pch_uart_hal_set_line()
467 iowrite8(lcr, priv->membase + UART_LCR); in pch_uart_hal_set_line()
588 unsigned int lcr; in pch_uart_hal_set_break() local
590 lcr = ioread8(priv->membase + UART_LCR); in pch_uart_hal_set_break()
592 lcr |= PCH_UART_LCR_SB; in pch_uart_hal_set_break()
594 lcr &= ~PCH_UART_LCR_SB; in pch_uart_hal_set_break()
596 iowrite8(lcr, priv->membase + UART_LCR); in pch_uart_hal_set_break()