Lines Matching refs:lcr
309 unsigned char lcr; in port_show_regs() local
336 lcr = ioread8(priv->membase + UART_LCR); in port_show_regs()
342 iowrite8(lcr, priv->membase + UART_LCR); in port_show_regs()
441 unsigned int dll, dlm, lcr; in pch_uart_hal_set_line() local
468 lcr = parity; in pch_uart_hal_set_line()
469 lcr |= bits; in pch_uart_hal_set_line()
470 lcr |= stb; in pch_uart_hal_set_line()
473 __func__, baud, div, lcr, jiffies); in pch_uart_hal_set_line()
477 iowrite8(lcr, priv->membase + UART_LCR); in pch_uart_hal_set_line()
614 unsigned int lcr; in pch_uart_hal_set_break() local
616 lcr = ioread8(priv->membase + UART_LCR); in pch_uart_hal_set_break()
618 lcr |= PCH_UART_LCR_SB; in pch_uart_hal_set_break()
620 lcr &= ~PCH_UART_LCR_SB; in pch_uart_hal_set_break()
622 iowrite8(lcr, priv->membase + UART_LCR); in pch_uart_hal_set_break()