Lines Matching refs:UART_CR
37 UART_CR = 0x14, enumerator
109 val = readl(port->membase + UART_CR); in netx_stop_tx()
110 writel(val & ~CR_TIE, port->membase + UART_CR); in netx_stop_tx()
116 val = readl(port->membase + UART_CR); in netx_stop_rx()
117 writel(val & ~CR_RIE, port->membase + UART_CR); in netx_stop_rx()
123 val = readl(port->membase + UART_CR); in netx_enable_ms()
124 writel(val | CR_MSIE, port->membase + UART_CR); in netx_enable_ms()
161 readl(port->membase + UART_CR) | CR_TIE, port->membase + UART_CR); in netx_start_tx()
311 port->membase + UART_CR); in netx_startup()
319 writel(0, port->membase + UART_CR) ; in netx_shutdown()
370 old_cr = readl(port->membase + UART_CR); in netx_set_termios()
374 port->membase + UART_CR); in netx_set_termios()
380 writel(old_cr & ~CR_UART_EN, port->membase + UART_CR); in netx_set_termios()
415 writel(old_cr, port->membase + UART_CR); in netx_set_termios()
529 cr_save = readl(port->membase + UART_CR); in netx_console_write()
530 writel(cr_save | CR_UART_EN, port->membase + UART_CR); in netx_console_write()
535 writel(cr_save, port->membase + UART_CR); in netx_console_write()
604 if (readl(sport->port.membase + UART_CR) & CR_UART_EN) { in netx_console_setup()