Lines Matching refs:utcr3
147 u32 utcr3; in sa1100_stop_tx() local
149 utcr3 = UART_GET_UTCR3(sport); in sa1100_stop_tx()
150 UART_PUT_UTCR3(sport, utcr3 & ~UTCR3_TIE); in sa1100_stop_tx()
161 u32 utcr3; in sa1100_start_tx() local
163 utcr3 = UART_GET_UTCR3(sport); in sa1100_start_tx()
165 UART_PUT_UTCR3(sport, utcr3 | UTCR3_TIE); in sa1100_start_tx()
175 u32 utcr3; in sa1100_stop_rx() local
177 utcr3 = UART_GET_UTCR3(sport); in sa1100_stop_rx()
178 UART_PUT_UTCR3(sport, utcr3 & ~UTCR3_RIE); in sa1100_stop_rx()
353 unsigned int utcr3; in sa1100_break_ctl() local
356 utcr3 = UART_GET_UTCR3(sport); in sa1100_break_ctl()
358 utcr3 |= UTCR3_BRK; in sa1100_break_ctl()
360 utcr3 &= ~UTCR3_BRK; in sa1100_break_ctl()
361 UART_PUT_UTCR3(sport, utcr3); in sa1100_break_ctl()
752 unsigned int utcr3; in sa1100_console_get_options() local
754 utcr3 = UART_GET_UTCR3(sport) & (UTCR3_RXE | UTCR3_TXE); in sa1100_console_get_options()
755 if (utcr3 == (UTCR3_RXE | UTCR3_TXE)) { in sa1100_console_get_options()