Searched refs:ADR_UART_LSR (Results 1 – 1 of 1) sorted by relevance
337 #define ADR_UART_LSR (UART_REG_BASE+0x00000014) macro2141 #define GET_DATA_RDY (((REG32(ADR_UART_LSR)) & 0x00000001 ) >> 0)2142 #define GET_OVERRUN_ERR (((REG32(ADR_UART_LSR)) & 0x00000002 ) >> 1)2143 #define GET_PARITY_ERR (((REG32(ADR_UART_LSR)) & 0x00000004 ) >> 2)2144 #define GET_FRAMING_ERR (((REG32(ADR_UART_LSR)) & 0x00000008 ) >> 3)2145 #define GET_BREAK_INT (((REG32(ADR_UART_LSR)) & 0x00000010 ) >> 4)2146 #define GET_THR_EMPTY (((REG32(ADR_UART_LSR)) & 0x00000020 ) >> 5)2147 #define GET_TX_EMPTY (((REG32(ADR_UART_LSR)) & 0x00000040 ) >> 6)2148 #define GET_FIFODATA_ERR (((REG32(ADR_UART_LSR)) & 0x00000080 ) >> 7)5782 #define SET_DATA_RDY(_VAL_) (REG32(ADR_UART_LSR)) = (((_VAL_) << 0) | ((REG32(ADR_UART_LSR)) & 0xff…[all …]