Lines Matching refs:lcr_h
271 unsigned int lcr_h; in pl010_break_ctl() local
274 lcr_h = readb(port->membase + UART010_LCRH); in pl010_break_ctl()
276 lcr_h |= UART01x_LCRH_BRK; in pl010_break_ctl()
278 lcr_h &= ~UART01x_LCRH_BRK; in pl010_break_ctl()
279 writel(lcr_h, port->membase + UART010_LCRH); in pl010_break_ctl()
354 unsigned int lcr_h, old_cr; in pl010_set_termios() local
366 lcr_h = UART01x_LCRH_WLEN_5; in pl010_set_termios()
369 lcr_h = UART01x_LCRH_WLEN_6; in pl010_set_termios()
372 lcr_h = UART01x_LCRH_WLEN_7; in pl010_set_termios()
375 lcr_h = UART01x_LCRH_WLEN_8; in pl010_set_termios()
379 lcr_h |= UART01x_LCRH_STP2; in pl010_set_termios()
381 lcr_h |= UART01x_LCRH_PEN; in pl010_set_termios()
383 lcr_h |= UART01x_LCRH_EPS; in pl010_set_termios()
386 lcr_h |= UART01x_LCRH_FEN; in pl010_set_termios()
438 writel(lcr_h, port->membase + UART010_LCRH); in pl010_set_termios()
579 unsigned int lcr_h, quot; in pl010_console_get_options() local
580 lcr_h = readb(uap->port.membase + UART010_LCRH); in pl010_console_get_options()
583 if (lcr_h & UART01x_LCRH_PEN) { in pl010_console_get_options()
584 if (lcr_h & UART01x_LCRH_EPS) in pl010_console_get_options()
590 if ((lcr_h & 0x60) == UART01x_LCRH_WLEN_7) in pl010_console_get_options()