Searched refs:UART_LSR_TEMT (Results 1 – 17 of 17) sorted by relevance
85 #define UART_LSR_TEMT 0x40 /* Transmitter empty */ macro
39 #define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)125 while (!(dw8250_read32(base, UART_LSR) & UART_LSR_TEMT)); in dw8250_uart_configure()
232 #define UART_LSR_TEMT ((uint8_t)(1<<6)) macro428 UART_LINESTAT_TEMT = UART_LSR_TEMT, /*!<Line status register: Transmitter empty*/
789 if (UARTx->LSR & UART_LSR_TEMT) in UART_CheckBusy()1325 while (!(UARTx->LSR & UART_LSR_TEMT)); in UART_RS485Send()1333 while (!(UARTx->LSR & UART_LSR_TEMT)); in UART_RS485Send()
122 #define UART_LSR_TEMT (BIT(6)) macro
302 #define UART_LSR_TEMT (BIT(6)) macro696 while (!(hal_readl(uart_base + UART_LSR) & UART_LSR_TEMT)) in _uart_putc()750 if (hal_readl(uart_base + UART_LSR) & UART_LSR_TEMT) in _uart_transmit()769 if (hal_readl(uart_base + UART_LSR) & UART_LSR_TEMT) in _uart_transmit()
124 #define UART_LSR_TEMT 0x40 /* Transmitter empty */ macro
30 const int uart_lsr_both_empty = (UART_LSR_TEMT | UART_LSR_THRE); in serial8250_early_putc()
97 while (!(rockchip_fiq_read(t, UART_LSR) & UART_LSR_TEMT) && count--) in fiq_debugger_uart_configure()
112 #define UART_LSR_TEMT 0x40 /**< Transmitter empty */ macro
110 #define UART_LSR_TEMT ((uint8_t)(1<<6)) /*!<Line status register: Transmitter empty*/ macro
216 #define UART_LINE_STATUS_TX_EMPTY (UART_LSR_TEMT)
1332 #define UART_LSR_TEMT ((uint32_t)0x0040) macro
45 #define UART_LSR_TEMT (BIT(6)) macro
556 if (reg_value & UART_LSR_TEMT) in prvUart_IrqHandle()
1915 #define UART_LSR_TEMT UART_LSR_TEMT_Msk macro
Completed in 876 milliseconds