Lines Matching +full:rx +full:- +full:ctrl
1 /* SPDX-License-Identifier: GPL-2.0 */
13 u32 ctrl; member
29 #define UART_STATUS_OE 0x00000010 /* RX Overrun Error */
30 #define UART_STATUS_PE 0x00000020 /* RX Parity Error */
31 #define UART_STATUS_FE 0x00000040 /* RX Framing Error */
35 * The following defines the bits in the APBUART Ctrl Registers.
46 #define APBBASE(port) ((struct grlib_apbuart_regs_map *)((port)->membase))
48 #define APBBASE_DATA_P(port) (&(APBBASE(port)->data))
49 #define APBBASE_STATUS_P(port) (&(APBBASE(port)->status))
50 #define APBBASE_CTRL_P(port) (&(APBBASE(port)->ctrl))
51 #define APBBASE_SCALAR_P(port) (&(APBBASE(port)->scaler))