Lines Matching defs:mxser_port
220 struct mxser_port { struct
221 struct tty_port port;
222 struct mxser_board *board;
224 unsigned long ioaddr;
225 unsigned long opmode_ioaddr;
226 int max_baud;
228 int rx_high_water;
229 int rx_trigger; /* Rx fifo trigger level */
230 int rx_low_water;
231 int baud_base; /* max. speed */
232 int type; /* UART type */
234 int x_char; /* xon/xoff character */
235 int IER; /* Interrupt Enable Register */
236 int MCR; /* Modem control register */
238 unsigned char stop_rx;
239 unsigned char ldisc_stop_rx;
241 int custom_divisor;
242 unsigned char err_shadow;
244 struct async_icount icount; /* kernel counters for 4 input interrupts */
245 unsigned int timeout;
247 int read_status_mask;
248 int ignore_status_mask;
272 struct mxser_port ports[MXSER_PORTS_PER_BOARD]; argument