Lines Matching refs:lcr_h
298 unsigned int lcr_h; in pl010_break_ctl() local
301 lcr_h = readb(uap->port.membase + UART010_LCRH); in pl010_break_ctl()
303 lcr_h |= UART01x_LCRH_BRK; in pl010_break_ctl()
305 lcr_h &= ~UART01x_LCRH_BRK; in pl010_break_ctl()
306 writel(lcr_h, uap->port.membase + UART010_LCRH); in pl010_break_ctl()
387 unsigned int lcr_h, old_cr; in pl010_set_termios() local
399 lcr_h = UART01x_LCRH_WLEN_5; in pl010_set_termios()
402 lcr_h = UART01x_LCRH_WLEN_6; in pl010_set_termios()
405 lcr_h = UART01x_LCRH_WLEN_7; in pl010_set_termios()
408 lcr_h = UART01x_LCRH_WLEN_8; in pl010_set_termios()
412 lcr_h |= UART01x_LCRH_STP2; in pl010_set_termios()
414 lcr_h |= UART01x_LCRH_PEN; in pl010_set_termios()
416 lcr_h |= UART01x_LCRH_EPS; in pl010_set_termios()
419 lcr_h |= UART01x_LCRH_FEN; in pl010_set_termios()
474 writel(lcr_h, uap->port.membase + UART010_LCRH); in pl010_set_termios()
607 unsigned int lcr_h, quot; in pl010_console_get_options() local
608 lcr_h = readb(uap->port.membase + UART010_LCRH); in pl010_console_get_options()
611 if (lcr_h & UART01x_LCRH_PEN) { in pl010_console_get_options()
612 if (lcr_h & UART01x_LCRH_EPS) in pl010_console_get_options()
618 if ((lcr_h & 0x60) == UART01x_LCRH_WLEN_7) in pl010_console_get_options()