Lines Matching refs:cr2
1122 unsigned char cr2; in lpuart_copy_rx_to_tty() local
1125 cr2 = readb(sport->port.membase + UARTCR2); in lpuart_copy_rx_to_tty()
1126 cr2 &= ~UARTCR2_RE; in lpuart_copy_rx_to_tty()
1127 writeb(cr2, sport->port.membase + UARTCR2); in lpuart_copy_rx_to_tty()
1153 cr2 |= UARTCR2_RE; in lpuart_copy_rx_to_tty()
1154 writeb(cr2, sport->port.membase + UARTCR2); in lpuart_copy_rx_to_tty()
1543 unsigned char val, cr2; in lpuart_setup_watermark() local
1546 cr2 = readb(sport->port.membase + UARTCR2); in lpuart_setup_watermark()
1547 cr2_saved = cr2; in lpuart_setup_watermark()
1548 cr2 &= ~(UARTCR2_TIE | UARTCR2_TCIE | UARTCR2_TE | in lpuart_setup_watermark()
1550 writeb(cr2, sport->port.membase + UARTCR2); in lpuart_setup_watermark()
1575 unsigned char cr2; in lpuart_setup_watermark_enable() local
1579 cr2 = readb(sport->port.membase + UARTCR2); in lpuart_setup_watermark_enable()
1580 cr2 |= UARTCR2_RIE | UARTCR2_RE | UARTCR2_TE; in lpuart_setup_watermark_enable()
1581 writeb(cr2, sport->port.membase + UARTCR2); in lpuart_setup_watermark_enable()
2362 unsigned char old_cr2, cr2; in lpuart_console_write() local
2372 cr2 = old_cr2 = readb(sport->port.membase + UARTCR2); in lpuart_console_write()
2373 cr2 |= UARTCR2_TE | UARTCR2_RE; in lpuart_console_write()
2374 cr2 &= ~(UARTCR2_TIE | UARTCR2_TCIE | UARTCR2_RIE); in lpuart_console_write()
2375 writeb(cr2, sport->port.membase + UARTCR2); in lpuart_console_write()