Lines Matching refs:lcr_h
1584 unsigned int lcr_h; in pl011_break_ctl() local
1587 lcr_h = pl011_read(uap, REG_LCRH_TX); in pl011_break_ctl()
1589 lcr_h |= UART01x_LCRH_BRK; in pl011_break_ctl()
1591 lcr_h &= ~UART01x_LCRH_BRK; in pl011_break_ctl()
1592 pl011_write(lcr_h, uap, REG_LCRH_TX); in pl011_break_ctl()
1700 static void pl011_write_lcr_h(struct uart_amba_port *uap, unsigned int lcr_h) in pl011_write_lcr_h() argument
1702 pl011_write(lcr_h, uap, REG_LCRH_RX); in pl011_write_lcr_h()
1711 pl011_write(lcr_h, uap, REG_LCRH_TX); in pl011_write_lcr_h()
1960 unsigned int lcr_h, old_cr; in pl011_set_termios() local
1989 lcr_h = UART01x_LCRH_WLEN_5; in pl011_set_termios()
1992 lcr_h = UART01x_LCRH_WLEN_6; in pl011_set_termios()
1995 lcr_h = UART01x_LCRH_WLEN_7; in pl011_set_termios()
1998 lcr_h = UART01x_LCRH_WLEN_8; in pl011_set_termios()
2002 lcr_h |= UART01x_LCRH_STP2; in pl011_set_termios()
2004 lcr_h |= UART01x_LCRH_PEN; in pl011_set_termios()
2006 lcr_h |= UART01x_LCRH_EPS; in pl011_set_termios()
2008 lcr_h |= UART011_LCRH_SPS; in pl011_set_termios()
2011 lcr_h |= UART01x_LCRH_FEN; in pl011_set_termios()
2069 pl011_write_lcr_h(uap, lcr_h); in pl011_set_termios()
2249 unsigned int lcr_h, ibrd, fbrd; in pl011_console_get_options() local
2251 lcr_h = pl011_read(uap, REG_LCRH_TX); in pl011_console_get_options()
2254 if (lcr_h & UART01x_LCRH_PEN) { in pl011_console_get_options()
2255 if (lcr_h & UART01x_LCRH_EPS) in pl011_console_get_options()
2261 if ((lcr_h & 0x60) == UART01x_LCRH_WLEN_7) in pl011_console_get_options()