Lines Matching refs:cr
80 unsigned int cr; in pl010_stop_tx() local
82 cr = readb(uap->port.membase + UART010_CR); in pl010_stop_tx()
83 cr &= ~UART010_CR_TIE; in pl010_stop_tx()
84 writel(cr, uap->port.membase + UART010_CR); in pl010_stop_tx()
91 unsigned int cr; in pl010_start_tx() local
93 cr = readb(uap->port.membase + UART010_CR); in pl010_start_tx()
94 cr |= UART010_CR_TIE; in pl010_start_tx()
95 writel(cr, uap->port.membase + UART010_CR); in pl010_start_tx()
102 unsigned int cr; in pl010_stop_rx() local
104 cr = readb(uap->port.membase + UART010_CR); in pl010_stop_rx()
105 cr &= ~(UART010_CR_RIE | UART010_CR_RTIE); in pl010_stop_rx()
106 writel(cr, uap->port.membase + UART010_CR); in pl010_stop_rx()
112 unsigned int cr; in pl010_disable_ms() local
114 cr = readb(uap->port.membase + UART010_CR); in pl010_disable_ms()
115 cr &= ~UART010_CR_MSIE; in pl010_disable_ms()
116 writel(cr, uap->port.membase + UART010_CR); in pl010_disable_ms()
123 unsigned int cr; in pl010_enable_ms() local
125 cr = readb(uap->port.membase + UART010_CR); in pl010_enable_ms()
126 cr |= UART010_CR_MSIE; in pl010_enable_ms()
127 writel(cr, uap->port.membase + UART010_CR); in pl010_enable_ms()