Lines Matching defs:uart_8250_port
92 struct uart_8250_port { struct
93 struct uart_port port;
94 struct timer_list timer; /* "no irq" timer */
95 struct list_head list; /* ports on this IRQ */
96 u32 capabilities; /* port capabilities */
97 unsigned short bugs; /* port bugs */
98 bool fifo_bug; /* min RX trigger if enabled */
99 unsigned int tx_loadsz; /* transmit fifo load size */
100 unsigned char acr;
101 unsigned char fcr;
102 unsigned char ier;
103 unsigned char lcr;
104 unsigned char mcr;
105 unsigned char mcr_mask; /* mask of user bits */
106 unsigned char mcr_force; /* mask of forced bits */
130 int (*dl_read)(struct uart_8250_port *); argument
131 void (*dl_write)(struct uart_8250_port *, int); argument
140 static inline struct uart_8250_port *up_to_u8250p(struct uart_port *up) in up_to_u8250p() argument