Lines Matching refs:lcr
311 unsigned char lcr; in port_show_regs() local
338 lcr = ioread8(priv->membase + UART_LCR); in port_show_regs()
344 iowrite8(lcr, priv->membase + UART_LCR); in port_show_regs()
443 unsigned int dll, dlm, lcr; in pch_uart_hal_set_line() local
470 lcr = parity; in pch_uart_hal_set_line()
471 lcr |= bits; in pch_uart_hal_set_line()
472 lcr |= stb; in pch_uart_hal_set_line()
475 __func__, baud, div, lcr, jiffies); in pch_uart_hal_set_line()
479 iowrite8(lcr, priv->membase + UART_LCR); in pch_uart_hal_set_line()
616 unsigned int lcr; in pch_uart_hal_set_break() local
618 lcr = ioread8(priv->membase + UART_LCR); in pch_uart_hal_set_break()
620 lcr |= PCH_UART_LCR_SB; in pch_uart_hal_set_break()
622 lcr &= ~PCH_UART_LCR_SB; in pch_uart_hal_set_break()
624 iowrite8(lcr, priv->membase + UART_LCR); in pch_uart_hal_set_break()