Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/drivers/serial/
H A Dmcfuart.c114 while (!(readb(&uart->usr) & UART_USR_RXRDY)) in mcf_serial_getc()
131 return readb(&uart->usr) & UART_USR_RXRDY; in mcf_serial_tstc()
187 if (!(readb(&uart->usr) & UART_USR_RXRDY)) in coldfire_serial_getc()
209 return readb(&uart->usr) & UART_USR_RXRDY ? 1 : 0; in coldfire_serial_pending()
/OK3568_Linux_fs/u-boot/board/astro/mcf5373l/
H A Dmcf5373l.c164 return readb(&uart->usr) & UART_USR_RXRDY; in astro_is_char()
172 while (!(readb(&uart->usr) & UART_USR_RXRDY)) ; in astro_get_char()
/OK3568_Linux_fs/u-boot/arch/m68k/include/asm/
H A Duart.h87 #define UART_USR_RXRDY (0x01) macro