1 /*****************************************************************************/
4 * istallion.h -- stallion intelligent multiport serial driver.
6 * Copyright (C) 1996-1998 Stallion Technologies
7 * Copyright (C) 1994-1996 Greg Ungerer.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 /*****************************************************************************/
27 /*****************************************************************************/
30 * Define important driver constants here.
33 #define STL_MAXPANELS 4
34 #define STL_MAXPORTS 64
35 #define STL_MAXCHANS (STL_MAXPORTS + 1)
36 #define STL_MAXDEVS (STL_MAXBRDS * STL_MAXPORTS)
40 * Define a set of structures to hold all the board/panel/port info
41 * for our ports. These will be dynamically allocated as required at
42 * driver initialization time.
46 * Port and board structures to hold status info about each object.
47 * The board structure contains pointers to structures for each port
48 * connected to it. Panels are not distinguished here, since
49 * communication with the slave board will always be on a per port
68 unsigned int rxmarkmsk
;
69 wait_queue_head_t raw_wait
;
72 unsigned long rxoffset
;
73 unsigned long txoffset
;
79 unsigned char portidx
;
80 unsigned char portbit
;
84 * Use a structure of function pointers to do board level operations.
85 * These include, enable/disable, paging shared memory, interrupting, etc.
92 unsigned int nrpanels
;
97 unsigned long memaddr
;
98 void __iomem
*membase
;
99 unsigned long memsize
;
105 unsigned int panels
[STL_MAXPANELS
];
106 int panelids
[STL_MAXPANELS
];
107 void (*init
)(struct stlibrd
*brdp
);
108 void (*enable
)(struct stlibrd
*brdp
);
109 void (*reenable
)(struct stlibrd
*brdp
);
110 void (*disable
)(struct stlibrd
*brdp
);
111 void __iomem
*(*getmemptr
)(struct stlibrd
*brdp
, unsigned long offset
, int line
);
112 void (*intr
)(struct stlibrd
*brdp
);
113 void (*reset
)(struct stlibrd
*brdp
);
114 struct stliport
*ports
[STL_MAXPORTS
];
119 * Define MAGIC numbers used for above structures.
121 #define STLI_PORTMAGIC 0xe671c7a1
122 #define STLI_BOARDMAGIC 0x4bc6c825
124 /*****************************************************************************/