Home
last modified time | relevance | path

Searched refs:UART_USR_RXRDY (Results 1 – 3 of 3) sorted by relevance

/external/u-boot/drivers/serial/
Dmcfuart.c113 while (!(readb(&uart->usr) & UART_USR_RXRDY)) in mcf_serial_getc()
130 return readb(&uart->usr) & UART_USR_RXRDY; in mcf_serial_tstc()
186 if (!(readb(&uart->usr) & UART_USR_RXRDY)) in coldfire_serial_getc()
208 return readb(&uart->usr) & UART_USR_RXRDY ? 1 : 0; in coldfire_serial_pending()
/external/u-boot/board/astro/mcf5373l/
Dmcf5373l.c163 return readb(&uart->usr) & UART_USR_RXRDY; in astro_is_char()
171 while (!(readb(&uart->usr) & UART_USR_RXRDY)) ; in astro_get_char()
/external/u-boot/arch/m68k/include/asm/
Duart.h86 #define UART_USR_RXRDY (0x01) macro