Lines Matching refs:line_cr
295 unsigned int line_cr; in netx_break_ctl() local
298 line_cr = readl(port->membase + UART_LINE_CR); in netx_break_ctl()
300 line_cr |= LINE_CR_BRK; in netx_break_ctl()
302 line_cr &= ~LINE_CR_BRK; in netx_break_ctl()
303 writel(line_cr, port->membase + UART_LINE_CR); in netx_break_ctl()
342 unsigned char line_cr = LINE_CR_FEN; in netx_set_termios() local
347 line_cr |= LINE_CR_5BIT; in netx_set_termios()
350 line_cr |= LINE_CR_6BIT; in netx_set_termios()
353 line_cr |= LINE_CR_7BIT; in netx_set_termios()
356 line_cr |= LINE_CR_8BIT; in netx_set_termios()
361 line_cr |= LINE_CR_STP2; in netx_set_termios()
364 line_cr |= LINE_CR_PEN; in netx_set_termios()
366 line_cr |= LINE_CR_EPS; in netx_set_termios()
401 writel(line_cr, port->membase + UART_LINE_CR); in netx_set_termios()
554 unsigned char line_cr; in netx_console_get_options() local
564 line_cr = readl(port->membase + UART_LINE_CR); in netx_console_get_options()
566 if (line_cr & LINE_CR_PEN) { in netx_console_get_options()
567 if (line_cr & LINE_CR_EPS) in netx_console_get_options()
573 switch (line_cr & LINE_CR_BITS_MASK) { in netx_console_get_options()