pucdata.c revision 1.68 1 1.68 msaitoh /* $NetBSD: pucdata.c,v 1.68 2010/07/13 23:46:19 msaitoh Exp $ */
2 1.1 cgd
3 1.1 cgd /*
4 1.3 cgd * Copyright (c) 1998, 1999 Christopher G. Demetriou. All rights reserved.
5 1.1 cgd *
6 1.1 cgd * Redistribution and use in source and binary forms, with or without
7 1.1 cgd * modification, are permitted provided that the following conditions
8 1.1 cgd * are met:
9 1.1 cgd * 1. Redistributions of source code must retain the above copyright
10 1.1 cgd * notice, this list of conditions and the following disclaimer.
11 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 cgd * notice, this list of conditions and the following disclaimer in the
13 1.1 cgd * documentation and/or other materials provided with the distribution.
14 1.1 cgd * 3. All advertising materials mentioning features or use of this software
15 1.1 cgd * must display the following acknowledgement:
16 1.1 cgd * This product includes software developed by Christopher G. Demetriou
17 1.1 cgd * for the NetBSD Project.
18 1.1 cgd * 4. The name of the author may not be used to endorse or promote products
19 1.1 cgd * derived from this software without specific prior written permission
20 1.1 cgd *
21 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 1.1 cgd * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 1.1 cgd * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 1.1 cgd * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 1.1 cgd * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 1.1 cgd * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 1.1 cgd * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 1.1 cgd * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 1.1 cgd * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 1.1 cgd * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 1.1 cgd */
32 1.1 cgd
33 1.1 cgd /*
34 1.1 cgd * PCI "universal" communications card driver configuration data (used to
35 1.1 cgd * match/attach the cards).
36 1.1 cgd */
37 1.21 lukem
38 1.21 lukem #include <sys/cdefs.h>
39 1.68 msaitoh __KERNEL_RCSID(0, "$NetBSD: pucdata.c,v 1.68 2010/07/13 23:46:19 msaitoh Exp $");
40 1.1 cgd
41 1.1 cgd #include <sys/param.h>
42 1.1 cgd #include <sys/systm.h>
43 1.1 cgd #include <sys/device.h>
44 1.1 cgd
45 1.54 riz #include <dev/pci/pcidevs.h>
46 1.1 cgd #include <dev/pci/pcireg.h>
47 1.1 cgd #include <dev/pci/pcivar.h>
48 1.1 cgd #include <dev/pci/pucvar.h>
49 1.11 bouyer #include <dev/ic/comreg.h>
50 1.1 cgd
51 1.1 cgd const struct puc_device_description puc_devices[] = {
52 1.26 hannken /*
53 1.62 msaitoh * Advantech multi serial cards
54 1.62 msaitoh */
55 1.68 msaitoh /* Advantech PCI-1604UP 2 UARTs based on OX16PCI952 */
56 1.68 msaitoh { "Advantech PCI-1604UP UARTs",
57 1.68 msaitoh { PCI_VENDOR_ADVANTECH, PCI_PRODUCT_ADVANTECH_PCI1604, 0, 0 },
58 1.68 msaitoh { 0xffff, 0xffff, 0x0, 0x0 },
59 1.68 msaitoh {
60 1.68 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
61 1.68 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
62 1.68 msaitoh },
63 1.68 msaitoh },
64 1.68 msaitoh
65 1.64 msaitoh { "Advantech PCI-1610 UARTs",
66 1.64 msaitoh { PCI_VENDOR_ADVANTECH, PCI_PRODUCT_ADVANTECH_PCI1600,
67 1.64 msaitoh PCI_PRODUCT_ADVANTECH_PCI1610, 0x0 },
68 1.64 msaitoh { 0xffff, 0xffff, 0xffff, 0x0 },
69 1.62 msaitoh {
70 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
71 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
72 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
73 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
74 1.62 msaitoh },
75 1.62 msaitoh },
76 1.62 msaitoh
77 1.64 msaitoh { "Advantech PCI-1612 UARTs",
78 1.64 msaitoh { PCI_VENDOR_ADVANTECH, PCI_PRODUCT_ADVANTECH_PCI1600,
79 1.64 msaitoh PCI_PRODUCT_ADVANTECH_PCI1612, 0x0 },
80 1.64 msaitoh { 0xffff, 0xffff, 0xffff, 0x0 },
81 1.64 msaitoh {
82 1.64 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
83 1.64 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
84 1.64 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
85 1.64 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
86 1.64 msaitoh },
87 1.64 msaitoh },
88 1.64 msaitoh
89 1.64 msaitoh /* The use of subvendor ID is bit strange... */
90 1.64 msaitoh { "Advantech PCI-1620 (1-4) UARTs",
91 1.64 msaitoh { PCI_VENDOR_ADVANTECH, PCI_PRODUCT_ADVANTECH_PCI1600,
92 1.64 msaitoh PCI_PRODUCT_ADVANTECH_PCI1620, 0x0 },
93 1.64 msaitoh { 0xffff, 0xffff, 0xffff, 0x0 },
94 1.64 msaitoh {
95 1.64 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
96 1.64 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
97 1.64 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
98 1.64 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
99 1.64 msaitoh },
100 1.64 msaitoh },
101 1.64 msaitoh
102 1.64 msaitoh /* The use of subvendor ID is bit strange... */
103 1.64 msaitoh { "Advantech PCI-1620 (5-8) UARTs",
104 1.64 msaitoh { PCI_VENDOR_ADVANTECH, PCI_PRODUCT_ADVANTECH_PCI1620_1,
105 1.64 msaitoh PCI_PRODUCT_ADVANTECH_PCI1620, 0x0 },
106 1.64 msaitoh { 0xffff, 0xffff, 0xffff, 0x0 },
107 1.62 msaitoh {
108 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 2 },
109 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 2 },
110 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 2 },
111 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 2 },
112 1.62 msaitoh },
113 1.62 msaitoh },
114 1.62 msaitoh
115 1.62 msaitoh /*
116 1.61 msaitoh * Addi-Data APCI-7800 8-port serial card.
117 1.61 msaitoh * Uses an AMCC chip as PCI bridge.
118 1.26 hannken */
119 1.61 msaitoh { "Addi-Data APCI-7800",
120 1.61 msaitoh { PCI_VENDOR_AMCIRCUITS, 0x818e, 0, 0 },
121 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
122 1.26 hannken {
123 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
124 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x08, COM_FREQ },
125 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
126 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ },
127 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
128 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x08, COM_FREQ },
129 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ },
130 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x08, COM_FREQ },
131 1.26 hannken },
132 1.26 hannken },
133 1.26 hannken
134 1.66 msaitoh /* Avlab Technology, Inc. PCI 2 Serial: 2S */
135 1.66 msaitoh { "Avlab PCI 2 Serial",
136 1.66 msaitoh { PCI_VENDOR_AVLAB, PCI_PRODUCT_AVLAB_PCI2S, 0, 0 },
137 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
138 1.66 msaitoh {
139 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
140 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
141 1.66 msaitoh },
142 1.66 msaitoh },
143 1.66 msaitoh
144 1.61 msaitoh /* Avlab Technology, Inc. Low Profile PCI 4 Serial: 4S */
145 1.61 msaitoh { "Avlab Low Profile PCI 4 Serial",
146 1.66 msaitoh { PCI_VENDOR_AVLAB, PCI_PRODUCT_AVLAB_LPPCI4S, 0, 0 },
147 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
148 1.26 hannken {
149 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
150 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
151 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
152 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
153 1.26 hannken },
154 1.26 hannken },
155 1.26 hannken
156 1.66 msaitoh /* Avlab Technology, Inc. Low Profile PCI 4 Serial: 4S */
157 1.66 msaitoh { "Avlab Low Profile PCI 4 Serial",
158 1.66 msaitoh { PCI_VENDOR_AVLAB, PCI_PRODUCT_AVLAB_LPPCI4S_2, 0, 0 },
159 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
160 1.66 msaitoh {
161 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
162 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
163 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
164 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
165 1.66 msaitoh },
166 1.66 msaitoh },
167 1.66 msaitoh
168 1.61 msaitoh /*
169 1.61 msaitoh * B&B Electronics MIPort Serial cards.
170 1.61 msaitoh */
171 1.61 msaitoh { "BBELEC ISOLATED_2_PORT",
172 1.61 msaitoh { PCI_VENDOR_BBELEC, PCI_PRODUCT_BBELEC_ISOLATED_2_PORT, 0, 0 },
173 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
174 1.26 hannken {
175 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
176 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
177 1.26 hannken },
178 1.26 hannken },
179 1.61 msaitoh { "BBELEC ISOLATED_4_PORT",
180 1.61 msaitoh { PCI_VENDOR_BBELEC, PCI_PRODUCT_BBELEC_ISOLATED_4_PORT, 0, 0 },
181 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
182 1.26 hannken {
183 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
184 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
185 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },
186 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },
187 1.26 hannken },
188 1.26 hannken },
189 1.61 msaitoh { "BBELEC ISOLATED_8_PORT",
190 1.61 msaitoh { PCI_VENDOR_BBELEC, PCI_PRODUCT_BBELEC_ISOLATED_8_PORT, 0, 0 },
191 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
192 1.26 hannken {
193 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
194 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
195 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },
196 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },
197 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0800, COM_FREQ * 8 },
198 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0a00, COM_FREQ * 8 },
199 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0c00, COM_FREQ * 8 },
200 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0e00, COM_FREQ * 8 },
201 1.26 hannken },
202 1.26 hannken },
203 1.26 hannken
204 1.62 msaitoh /*
205 1.62 msaitoh * Decision PCCOM PCI series. PLX 9052 with 1 or 2 16554 UARTS
206 1.62 msaitoh */
207 1.62 msaitoh /* Decision Computer Inc PCCOM 2 Port RS232/422/485: 2S */
208 1.62 msaitoh { "Decision Computer Inc PCCOM 2 Port RS232/422/485",
209 1.62 msaitoh { PCI_VENDOR_DCI, PCI_PRODUCT_DCI_APCI2, 0x0, 0x0 },
210 1.62 msaitoh { 0xffff, 0xffff, 0x0, 0x0 },
211 1.62 msaitoh {
212 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ},
213 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x08, COM_FREQ},
214 1.62 msaitoh },
215 1.62 msaitoh },
216 1.62 msaitoh
217 1.62 msaitoh /* Decision Computer Inc PCCOM 4 Port RS232/422/485: 4S */
218 1.62 msaitoh { "Decision Computer Inc PCCOM 4 Port RS232/422/485",
219 1.62 msaitoh { PCI_VENDOR_DCI, PCI_PRODUCT_DCI_APCI4, 0x0, 0x0 },
220 1.62 msaitoh { 0xffff, 0xffff, 0x0, 0x0 },
221 1.62 msaitoh {
222 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ},
223 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x08, COM_FREQ},
224 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x10, COM_FREQ},
225 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x18, COM_FREQ},
226 1.62 msaitoh },
227 1.62 msaitoh },
228 1.62 msaitoh
229 1.62 msaitoh /* Decision Computer Inc PCCOM 8 Port RS232/422/485: 8S */
230 1.62 msaitoh { "Decision Computer Inc PCCOM 8 Port RS232/422/485",
231 1.62 msaitoh { PCI_VENDOR_DCI, PCI_PRODUCT_DCI_APCI8, 0x0, 0x0 },
232 1.62 msaitoh { 0xffff, 0xffff, 0x0, 0x0 },
233 1.62 msaitoh {
234 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ},
235 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x08, COM_FREQ},
236 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x10, COM_FREQ},
237 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x18, COM_FREQ},
238 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x20, COM_FREQ},
239 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x28, COM_FREQ},
240 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x30, COM_FREQ},
241 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x38, COM_FREQ},
242 1.62 msaitoh },
243 1.62 msaitoh },
244 1.62 msaitoh
245 1.61 msaitoh /* Digi International Digi Neo 4 Serial */
246 1.61 msaitoh { "Digi International Digi Neo 4 Serial",
247 1.61 msaitoh { PCI_VENDOR_DIGI, PCI_PRODUCT_DIGI_NEO4, 0, 0 },
248 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
249 1.26 hannken {
250 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
251 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
252 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },
253 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },
254 1.26 hannken },
255 1.26 hannken },
256 1.26 hannken
257 1.61 msaitoh /* Digi International Digi Neo 8 Serial */
258 1.61 msaitoh { "Digi International Digi Neo 8 Serial",
259 1.61 msaitoh { PCI_VENDOR_DIGI, PCI_PRODUCT_DIGI_NEO8, 0, 0 },
260 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
261 1.26 hannken {
262 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
263 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
264 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },
265 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },
266 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0800, COM_FREQ * 8 },
267 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0a00, COM_FREQ * 8 },
268 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0c00, COM_FREQ * 8 },
269 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0e00, COM_FREQ * 8 },
270 1.26 hannken },
271 1.26 hannken },
272 1.26 hannken
273 1.61 msaitoh { "EXAR XR17D152",
274 1.61 msaitoh { PCI_VENDOR_EXAR, 0x0152, 0, 0 },
275 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
276 1.26 hannken {
277 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
278 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
279 1.26 hannken },
280 1.26 hannken },
281 1.61 msaitoh { "EXAR XR17D154",
282 1.61 msaitoh { PCI_VENDOR_EXAR, 0x0154, 0, 0 },
283 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
284 1.26 hannken {
285 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
286 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
287 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },
288 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },
289 1.26 hannken },
290 1.26 hannken },
291 1.62 msaitoh
292 1.62 msaitoh /*
293 1.62 msaitoh * Multi-Tech ISI5634PCI/4 4-port modem board.
294 1.62 msaitoh * Has a 4-channel Exar XR17C154 UART, but with bogus product ID in its
295 1.62 msaitoh * config EEPROM.
296 1.62 msaitoh */
297 1.62 msaitoh { "Multi-Tech ISI5634PCI/4",
298 1.62 msaitoh { PCI_VENDOR_EXAR, 0x0158, 0x2205, 0x2003 },
299 1.62 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
300 1.62 msaitoh {
301 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
302 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
303 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },
304 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },
305 1.62 msaitoh },
306 1.62 msaitoh },
307 1.62 msaitoh
308 1.61 msaitoh { "EXAR XR17D158",
309 1.61 msaitoh { PCI_VENDOR_EXAR, 0x0158, 0, 0 },
310 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
311 1.1 cgd {
312 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
313 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
314 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },
315 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },
316 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0800, COM_FREQ * 8 },
317 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0a00, COM_FREQ * 8 },
318 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0c00, COM_FREQ * 8 },
319 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x0e00, COM_FREQ * 8 },
320 1.1 cgd },
321 1.1 cgd },
322 1.1 cgd
323 1.59 mbalmer /* IBM SurePOS 300 Series (481033H) serial ports */
324 1.59 mbalmer { "IBM SurePOS 300 Series (481033H)",
325 1.59 mbalmer { PCI_VENDOR_IBM, PCI_PRODUCT_IBM_4810_SCC, 0, 0 },
326 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
327 1.59 mbalmer {
328 1.59 mbalmer { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ }, /* Port C */
329 1.59 mbalmer { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ }, /* Port D */
330 1.59 mbalmer { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ }, /* Port E */
331 1.59 mbalmer { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ }, /* Port F */
332 1.59 mbalmer },
333 1.59 mbalmer },
334 1.5 cgd
335 1.61 msaitoh /* I-O DATA RSA-PCI: 2S */
336 1.61 msaitoh { "I-O DATA RSA-PCI 2-port serial",
337 1.61 msaitoh { PCI_VENDOR_IODATA, 0x0007, 0, 0 },
338 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
339 1.1 cgd {
340 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
341 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
342 1.1 cgd },
343 1.1 cgd },
344 1.61 msaitoh
345 1.61 msaitoh /* Lava Computers 2SP-PCI */
346 1.61 msaitoh { "Lava Computers 2SP-PCI parallel port",
347 1.61 msaitoh { PCI_VENDOR_LAVA, 0x8000, 0, 0 },
348 1.5 cgd { 0xffff, 0xffff, 0, 0 },
349 1.5 cgd {
350 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
351 1.5 cgd },
352 1.5 cgd },
353 1.5 cgd
354 1.61 msaitoh /* Lava Computers 2SP-PCI and Quattro-PCI serial ports */
355 1.61 msaitoh { "Lava Computers dual serial port",
356 1.61 msaitoh { PCI_VENDOR_LAVA, 0x0100, 0, 0 },
357 1.61 msaitoh { 0xffff, 0xfffc, 0, 0 },
358 1.5 cgd {
359 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
360 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
361 1.5 cgd },
362 1.5 cgd },
363 1.5 cgd
364 1.61 msaitoh /* Lava Computers DSerial PCI serial ports */
365 1.61 msaitoh { "Lava Computers serial port",
366 1.61 msaitoh { PCI_VENDOR_LAVA, 0x0110, 0, 0 },
367 1.61 msaitoh { 0xffff, 0xfffc, 0, 0 },
368 1.5 cgd {
369 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
370 1.5 cgd },
371 1.5 cgd },
372 1.5 cgd
373 1.61 msaitoh /* Lava Computers Quattro-PCI serial ports */
374 1.61 msaitoh { "Lava Quattro-PCI 4-port serial",
375 1.61 msaitoh { PCI_VENDOR_LAVA, 0x0120, 0, 0 },
376 1.61 msaitoh { 0xffff, 0xfffc, 0, 0 },
377 1.5 cgd {
378 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
379 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
380 1.5 cgd },
381 1.5 cgd },
382 1.5 cgd
383 1.61 msaitoh /* Lava Computers Octopus-550 serial ports */
384 1.61 msaitoh { "Lava Computers Octopus-550 8-port serial",
385 1.61 msaitoh { PCI_VENDOR_LAVA, 0x0180, 0, 0 },
386 1.61 msaitoh { 0xffff, 0xfffc, 0, 0 },
387 1.5 cgd {
388 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
389 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
390 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
391 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
392 1.5 cgd },
393 1.5 cgd },
394 1.5 cgd
395 1.61 msaitoh /* Actiontec 56K PCI Master */
396 1.61 msaitoh { "Actiontec 56K PCI Master",
397 1.61 msaitoh { PCI_VENDOR_LUCENT, 0x0480, 0x0, 0x0 },
398 1.61 msaitoh { 0xffff, 0xffff, 0x0, 0x0 },
399 1.5 cgd {
400 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
401 1.5 cgd },
402 1.5 cgd },
403 1.5 cgd
404 1.61 msaitoh /*
405 1.61 msaitoh * This is the Middle Digital, Inc. PCI-Weasel, which
406 1.61 msaitoh * uses a PCI interface implemented in FPGA.
407 1.61 msaitoh */
408 1.61 msaitoh { "Middle Digital, Inc. Weasel serial port",
409 1.61 msaitoh { PCI_VENDOR_MIDDLE_DIGITAL, 0x9051, 0, 0 },
410 1.5 cgd { 0xffff, 0xffff, 0, 0 },
411 1.5 cgd {
412 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
413 1.5 cgd },
414 1.5 cgd },
415 1.5 cgd
416 1.66 msaitoh /* Moxa Technologies Co., Ltd. PCI I/O Card 2S RS232 */
417 1.66 msaitoh { "Moxa Technologies, SmartIO CP-102/PCI",
418 1.66 msaitoh { PCI_VENDOR_MOXA, 0x1022, 0, 0 },
419 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
420 1.66 msaitoh {
421 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
422 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
423 1.66 msaitoh },
424 1.66 msaitoh },
425 1.66 msaitoh
426 1.61 msaitoh /* Moxa Technologies Co., Ltd. PCI I/O Card 4S RS232/422/485 */
427 1.61 msaitoh { "Moxa Technologies, SmartIO C104H/PCI",
428 1.61 msaitoh { PCI_VENDOR_MOXA, 0x1040, 0, 0 },
429 1.5 cgd { 0xffff, 0xffff, 0, 0 },
430 1.5 cgd {
431 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
432 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
433 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
434 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
435 1.5 cgd },
436 1.5 cgd },
437 1.5 cgd
438 1.61 msaitoh /* Moxa Technologies Co., Ltd. PCI I/O Card 4S RS232 */
439 1.63 msaitoh { "Moxa Technologies, SmartIO CP-104/PCI",
440 1.61 msaitoh { PCI_VENDOR_MOXA, 0x1041, 0, 0 },
441 1.5 cgd { 0xffff, 0xffff, 0, 0 },
442 1.5 cgd {
443 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
444 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
445 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
446 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
447 1.5 cgd },
448 1.5 cgd },
449 1.5 cgd
450 1.61 msaitoh /* Moxa Technologies Co., Ltd. PCI I/O Card 4S RS232 */
451 1.63 msaitoh { "Moxa Technologies, SmartIO CP-104-V2/PCI",
452 1.61 msaitoh { PCI_VENDOR_MOXA, 0x1042, 0, 0 },
453 1.5 cgd { 0xffff, 0xffff, 0, 0 },
454 1.5 cgd {
455 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
456 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
457 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
458 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
459 1.5 cgd },
460 1.5 cgd },
461 1.5 cgd
462 1.62 msaitoh /* Moxa Technologies Co., Ltd. PCI I/O Card 4S RS232 */
463 1.63 msaitoh { "Moxa Technologies, SmartIO CP-104-EL/PCIe",
464 1.62 msaitoh { PCI_VENDOR_MOXA, 0x1043, 0, 0 },
465 1.62 msaitoh { 0xffff, 0xffff, 0, 0 },
466 1.62 msaitoh {
467 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
468 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
469 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
470 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
471 1.62 msaitoh },
472 1.62 msaitoh },
473 1.62 msaitoh
474 1.61 msaitoh /* Moxa Technologies Co., Ltd. PCI I/O Card 4S RS232/422/485 */
475 1.61 msaitoh { "Moxa Technologies, SmartIO CP-114/PCI",
476 1.61 msaitoh { PCI_VENDOR_MOXA, 0x1141, 0, 0 },
477 1.5 cgd { 0xffff, 0xffff, 0, 0 },
478 1.5 cgd {
479 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
480 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
481 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
482 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
483 1.5 cgd },
484 1.5 cgd },
485 1.5 cgd
486 1.61 msaitoh /* Moxa Technologies Co., Ltd. PCI I/O Card 8S RS232 */
487 1.61 msaitoh { "Moxa Technologies, SmartIO C168H/PCI",
488 1.61 msaitoh { PCI_VENDOR_MOXA, 0x1680, 0, 0 },
489 1.5 cgd { 0xffff, 0xffff, 0, 0 },
490 1.5 cgd {
491 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
492 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
493 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
494 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
495 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 8 },
496 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 8 },
497 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 8 },
498 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 8 },
499 1.5 cgd },
500 1.5 cgd },
501 1.5 cgd
502 1.62 msaitoh /* Moxa Technologies Co., Ltd. PCI I/O Card 8S RS232 */
503 1.62 msaitoh { "Moxa Technologies, SmartIO C168U/PCI",
504 1.62 msaitoh { PCI_VENDOR_MOXA, 0x1681, 0, 0 },
505 1.62 msaitoh { 0xffff, 0xffff, 0, 0 },
506 1.62 msaitoh {
507 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
508 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
509 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
510 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
511 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 8 },
512 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 8 },
513 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 8 },
514 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 8 },
515 1.62 msaitoh },
516 1.62 msaitoh },
517 1.62 msaitoh
518 1.65 msaitoh /* Moxa Technologies Co., Ltd. PCI-Express I/O Card 8S RS232 */
519 1.62 msaitoh { "Moxa Technologies, SmartIO C168EL/PCIe",
520 1.62 msaitoh { PCI_VENDOR_MOXA, 0x1682, 0, 0 },
521 1.62 msaitoh { 0xffff, 0xffff, 0, 0 },
522 1.62 msaitoh {
523 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
524 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
525 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
526 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
527 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 8 },
528 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 8 },
529 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 8 },
530 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 8 },
531 1.62 msaitoh },
532 1.62 msaitoh },
533 1.65 msaitoh /* Moxa Technologies Co., Ltd. PCI-Express I/O Card 8S RS232 */
534 1.65 msaitoh { "Moxa Technologies, SmartIO CP-168EL-A/PCIe",
535 1.62 msaitoh { PCI_VENDOR_MOXA, 0x1683, 0, 0 },
536 1.62 msaitoh { 0xffff, 0xffff, 0, 0 },
537 1.62 msaitoh {
538 1.65 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x000, COM_FREQ * 8 },
539 1.65 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x200, COM_FREQ * 8 },
540 1.65 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x400, COM_FREQ * 8 },
541 1.65 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x600, COM_FREQ * 8 },
542 1.65 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x800, COM_FREQ * 8 },
543 1.65 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0xa00, COM_FREQ * 8 },
544 1.65 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0xc00, COM_FREQ * 8 },
545 1.65 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0xe00, COM_FREQ * 8 },
546 1.62 msaitoh },
547 1.62 msaitoh },
548 1.62 msaitoh
549 1.61 msaitoh /* NEC PK-UG-X001 K56flex PCI Modem card.
550 1.61 msaitoh NEC MARTH bridge chip and Rockwell RCVDL56ACF/SP using. */
551 1.61 msaitoh { "NEC PK-UG-X001 K56flex PCI Modem",
552 1.61 msaitoh { PCI_VENDOR_NEC, 0x0074, PCI_VENDOR_NEC, 0x8014 },
553 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
554 1.5 cgd {
555 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
556 1.5 cgd },
557 1.5 cgd },
558 1.5 cgd
559 1.61 msaitoh /* NEC PK-UG-X008 */
560 1.61 msaitoh { "NEC PK-UG-X008",
561 1.61 msaitoh { PCI_VENDOR_NEC, 0x007d, PCI_VENDOR_NEC, 0x8012 },
562 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
563 1.5 cgd {
564 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ},
565 1.5 cgd },
566 1.5 cgd },
567 1.5 cgd
568 1.61 msaitoh /* NetMos 1P PCI : 1P */
569 1.61 msaitoh { "NetMos NM9805 1284 Printer port",
570 1.61 msaitoh { PCI_VENDOR_NETMOS, 0x9805, 0, 0 },
571 1.5 cgd { 0xffff, 0xffff, 0, 0 },
572 1.5 cgd {
573 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
574 1.5 cgd },
575 1.5 cgd },
576 1.5 cgd
577 1.61 msaitoh /* NetMos 2P PCI : 2P */
578 1.61 msaitoh { "NetMos NM9815 Dual 1284 Printer port",
579 1.61 msaitoh { PCI_VENDOR_NETMOS, 0x9815, 0, 0 },
580 1.5 cgd { 0xffff, 0xffff, 0, 0 },
581 1.5 cgd {
582 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
583 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
584 1.5 cgd },
585 1.5 cgd },
586 1.5 cgd
587 1.62 msaitoh /* NetMos 1S PCI NM9835 : 1S */
588 1.62 msaitoh { "NetMos NM9835 UART",
589 1.62 msaitoh { PCI_VENDOR_NETMOS, 0x9835, 0x1000, 0x0001 },
590 1.62 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
591 1.62 msaitoh {
592 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
593 1.62 msaitoh },
594 1.62 msaitoh },
595 1.62 msaitoh
596 1.61 msaitoh /* NetMos 2S PCI NM9835 : 2S */
597 1.61 msaitoh { "NetMos NM9835 Dual UART",
598 1.61 msaitoh { PCI_VENDOR_NETMOS, 0x9835, 0x1000, 0x0002 },
599 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
600 1.5 cgd {
601 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
602 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
603 1.5 cgd },
604 1.5 cgd },
605 1.5 cgd
606 1.61 msaitoh /* NetMos 2S1P PCI 16C650 : 2S, 1P */
607 1.61 msaitoh { "NetMos NM9835 Dual UART and 1284 Printer port",
608 1.61 msaitoh { PCI_VENDOR_NETMOS, 0x9835, 0, 0 },
609 1.5 cgd { 0xffff, 0xffff, 0, 0 },
610 1.5 cgd {
611 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
612 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
613 1.11 bouyer { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
614 1.5 cgd },
615 1.5 cgd },
616 1.5 cgd
617 1.61 msaitoh /* NetMos 4S0P PCI NM9845 : 4S, 0P */
618 1.61 msaitoh { "NetMos NM9845 Quad UART",
619 1.61 msaitoh { PCI_VENDOR_NETMOS, 0x9845, 0x1000, 0x0004 },
620 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
621 1.61 msaitoh {
622 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
623 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
624 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
625 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
626 1.61 msaitoh },
627 1.61 msaitoh },
628 1.61 msaitoh
629 1.61 msaitoh /* NetMos 4S1P PCI NM9845 : 4S, 1P */
630 1.61 msaitoh { "NetMos NM9845 Quad UART and 1284 Printer port",
631 1.61 msaitoh { PCI_VENDOR_NETMOS, 0x9845, 0x1000, 0x0014 },
632 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
633 1.61 msaitoh {
634 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
635 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
636 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
637 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
638 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
639 1.61 msaitoh },
640 1.61 msaitoh },
641 1.61 msaitoh
642 1.61 msaitoh /* NetMos 6S PCI 16C650 : 6S, 0P */
643 1.61 msaitoh { "NetMos NM9845 6 UART",
644 1.61 msaitoh { PCI_VENDOR_NETMOS, 0x9845, 0x1000, 0x0006 },
645 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
646 1.61 msaitoh {
647 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
648 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
649 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
650 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
651 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ },
652 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ },
653 1.61 msaitoh },
654 1.61 msaitoh },
655 1.61 msaitoh
656 1.61 msaitoh /* NetMos 4S1P PCI NM9845 : 4S, 1P */
657 1.61 msaitoh { "NetMos NM9845 Quad UART and 1284 Printer port (unknown type)",
658 1.61 msaitoh { PCI_VENDOR_NETMOS, 0x9845, 0, 0 },
659 1.5 cgd { 0xffff, 0xffff, 0, 0 },
660 1.5 cgd {
661 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
662 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
663 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
664 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
665 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
666 1.5 cgd },
667 1.5 cgd },
668 1.5 cgd
669 1.61 msaitoh /* NetMos 4S1P PCI NM9855 : 4S, 1P */
670 1.61 msaitoh { "NetMos NM9855 Quad UART and 1284 Printer port (unknown type)",
671 1.61 msaitoh { PCI_VENDOR_NETMOS, 0x9855, 0x1000, 0x0014 },
672 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
673 1.5 cgd {
674 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
675 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
676 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
677 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ },
678 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ },
679 1.5 cgd },
680 1.5 cgd },
681 1.5 cgd
682 1.62 msaitoh /* NetMos 6S PCI NM9865 : 1S */
683 1.62 msaitoh { "NetMos NM9865 1 UART",
684 1.62 msaitoh { PCI_VENDOR_NETMOS, 0x9865, 0xa000, 0x1000 },
685 1.62 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
686 1.62 msaitoh {
687 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
688 1.62 msaitoh },
689 1.62 msaitoh },
690 1.62 msaitoh
691 1.62 msaitoh /* NetMos 6S PCI NM9865 : 4S */
692 1.62 msaitoh { "NetMos NM9865 4 UART",
693 1.62 msaitoh { PCI_VENDOR_NETMOS, 0x9865, 0xa000, 0x3004 },
694 1.62 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
695 1.62 msaitoh {
696 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
697 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
698 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
699 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
700 1.62 msaitoh },
701 1.62 msaitoh },
702 1.62 msaitoh
703 1.65 msaitoh /* NetMos PCIe Peripheral Controller :UART part */
704 1.65 msaitoh { "NetMos NM9901 UART",
705 1.65 msaitoh { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9901, 0xa000, 0x1000 },
706 1.65 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
707 1.65 msaitoh {
708 1.65 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
709 1.65 msaitoh },
710 1.65 msaitoh },
711 1.65 msaitoh
712 1.62 msaitoh /* NetMos PCIe NM9901 : 1P */
713 1.62 msaitoh { "NetMos NM9901 LPT",
714 1.67 mrg { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9901, 0xa000, 0x2000 },
715 1.62 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
716 1.62 msaitoh {
717 1.62 msaitoh { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
718 1.62 msaitoh },
719 1.62 msaitoh },
720 1.62 msaitoh
721 1.61 msaitoh /*
722 1.61 msaitoh * Boards with an Oxford Semiconductor chip.
723 1.61 msaitoh *
724 1.61 msaitoh * Oxford Semiconductor provides documentation for their chip at:
725 1.61 msaitoh * <URL:http://www.plxtech.com/products/uart>
726 1.61 msaitoh *
727 1.61 msaitoh * As sold by Kouwell <URL:http://www.kouwell.com/>.
728 1.61 msaitoh * I/O Flex PCI I/O Card Model-223 with 4 serial and 1 parallel ports.
729 1.61 msaitoh */
730 1.61 msaitoh
731 1.61 msaitoh /* Oxford Semiconductor OXmPCI952 PCI UARTs */
732 1.61 msaitoh { "Oxford Semiconductor OXmPCI952 UARTs",
733 1.61 msaitoh { PCI_VENDOR_OXFORDSEMI, 0x950a, 0, 0 },
734 1.5 cgd { 0xffff, 0xffff, 0, 0 },
735 1.5 cgd {
736 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 10 },
737 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 10 },
738 1.5 cgd },
739 1.5 cgd },
740 1.5 cgd
741 1.61 msaitoh /* Oxford Semiconductor OX16PCI952 PCI `950 UARTs - 128 byte FIFOs */
742 1.61 msaitoh { "Oxford Semiconductor OX16PCI952 UARTs",
743 1.61 msaitoh { PCI_VENDOR_OXFORDSEMI, 0x9521, 0, 0 },
744 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
745 1.5 cgd {
746 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
747 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
748 1.5 cgd },
749 1.5 cgd },
750 1.5 cgd
751 1.61 msaitoh /* Oxford Semiconductor OX16PCI952 PCI Parallel port */
752 1.61 msaitoh { "Oxford Semiconductor OX16PCI952 Parallel port",
753 1.61 msaitoh { PCI_VENDOR_OXFORDSEMI, 0x9523, 0, 0 },
754 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
755 1.5 cgd {
756 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
757 1.5 cgd },
758 1.5 cgd },
759 1.5 cgd
760 1.68 msaitoh /* InnoSys Keyspan SX Pro OX16PCI954 based 4 UARTs */
761 1.68 msaitoh { "InnoSys Keyspan SX Pro Serial Card",
762 1.68 msaitoh { PCI_VENDOR_OXFORDSEMI, 0x9501, PCI_VENDOR_INNOSYS, 0x5850 },
763 1.68 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
764 1.68 msaitoh {
765 1.68 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
766 1.68 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
767 1.68 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
768 1.68 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
769 1.68 msaitoh },
770 1.68 msaitoh },
771 1.68 msaitoh
772 1.68 msaitoh /* I-O DATA RSA-PCI2 two UARTs based on OX16PCI954 */
773 1.68 msaitoh { "I-O DATA RSA-PCI2 UARTs",
774 1.68 msaitoh { PCI_VENDOR_OXFORDSEMI, 0x9501, PCI_VENDOR_IODATA, 0xc070 },
775 1.68 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
776 1.68 msaitoh {
777 1.68 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
778 1.68 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
779 1.68 msaitoh },
780 1.68 msaitoh },
781 1.68 msaitoh
782 1.62 msaitoh /* I-O DATA RSA-PCI2 four/eight(1-4) UARTs based on OX16PCI954 */
783 1.63 msaitoh { "I-O DATA RSA-PCI2/P4 or P8 (1-4) UARTs",
784 1.66 msaitoh { PCI_VENDOR_OXFORDSEMI, 0x9501, PCI_VENDOR_IODATA, 0xd007 },
785 1.62 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
786 1.62 msaitoh {
787 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
788 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
789 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
790 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
791 1.62 msaitoh },
792 1.62 msaitoh },
793 1.62 msaitoh
794 1.62 msaitoh /* OEM of Oxford Semiconductor PCI UARTs? */
795 1.62 msaitoh { "SIIG Cyber 4 PCI 16550",
796 1.62 msaitoh { PCI_VENDOR_OXFORDSEMI, 0x9501, PCI_VENDOR_SIIG, 0x2050 },
797 1.62 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
798 1.62 msaitoh {
799 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 10 },
800 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 10 },
801 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 10 },
802 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 10 },
803 1.62 msaitoh },
804 1.62 msaitoh },
805 1.62 msaitoh
806 1.62 msaitoh /* OEM of Oxford Semiconductor PCI UARTs? */
807 1.62 msaitoh { "SIIG Cyber 4S PCI 16C650 (20x family)",
808 1.62 msaitoh { PCI_VENDOR_OXFORDSEMI, 0x9501, PCI_VENDOR_SIIG, 0x2051 },
809 1.62 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
810 1.62 msaitoh {
811 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 10 },
812 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 10 },
813 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 10 },
814 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 10 },
815 1.62 msaitoh },
816 1.62 msaitoh },
817 1.62 msaitoh
818 1.61 msaitoh /* OEM of Oxford Semiconductor PCI UARTs? */
819 1.61 msaitoh { "Avlab LP PCI 4S Quartet",
820 1.61 msaitoh { PCI_VENDOR_OXFORDSEMI, 0x9501, PCI_VENDOR_AVLAB, 0x2150 },
821 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
822 1.5 cgd {
823 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 10 },
824 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 10 },
825 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 10 },
826 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 10 },
827 1.5 cgd },
828 1.5 cgd },
829 1.5 cgd
830 1.61 msaitoh /* Oxford Semiconductor OX16PCI954 PCI UARTs */
831 1.61 msaitoh { "Oxford Semiconductor OX16PCI954 UARTs",
832 1.62 msaitoh { PCI_VENDOR_OXFORDSEMI, 0x9501, PCI_VENDOR_OXFORDSEMI, 0 },
833 1.62 msaitoh { 0xffff, 0xffff, 0xffff, 0 },
834 1.5 cgd {
835 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
836 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
837 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8},
838 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8},
839 1.5 cgd },
840 1.5 cgd },
841 1.5 cgd
842 1.62 msaitoh /* Oxford Semiconductor OX16PCI954 PCI UARTs (default for 0x9501) */
843 1.62 msaitoh { "Oxford Semiconductor OX16PCI954 UARTs",
844 1.62 msaitoh { PCI_VENDOR_OXFORDSEMI, 0x9501, 0, 0 },
845 1.62 msaitoh { 0xffff, 0xffff, 0, 0 },
846 1.62 msaitoh {
847 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ},
848 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ},
849 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ},
850 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ},
851 1.62 msaitoh },
852 1.62 msaitoh },
853 1.62 msaitoh
854 1.62 msaitoh /* I-O DATA RSA-PCI2 eight(5-8) UARTs base on OX16PCI954 */
855 1.63 msaitoh { "I-O DATA RSA-PCI2/P8 (5-8) UARTs",
856 1.62 msaitoh { PCI_VENDOR_OXFORDSEMI, 0x9511, PCI_VENDOR_IODATA, 0xd007 },
857 1.62 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
858 1.62 msaitoh {
859 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
860 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
861 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
862 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
863 1.62 msaitoh },
864 1.62 msaitoh },
865 1.62 msaitoh
866 1.62 msaitoh /* Exsys EX-41098, second part of SIIG Cyber 8S PCI Card */
867 1.62 msaitoh { "Exsys EX-41098",
868 1.62 msaitoh { PCI_VENDOR_OXFORDSEMI, 0x9511, PCI_VENDOR_SIIG, 0x2082 },
869 1.62 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
870 1.62 msaitoh {
871 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 10},
872 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 10},
873 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 10},
874 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 10},
875 1.62 msaitoh },
876 1.62 msaitoh },
877 1.62 msaitoh
878 1.61 msaitoh /* Oxford Semiconductor OX16PCI954 PCI Parallel port */
879 1.61 msaitoh { "Oxford Semiconductor OX16PCI954 Parallel port",
880 1.61 msaitoh { PCI_VENDOR_OXFORDSEMI, 0x9513, 0, 0 },
881 1.5 cgd { 0xffff, 0xffff, 0, 0 },
882 1.5 cgd {
883 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
884 1.5 cgd },
885 1.5 cgd },
886 1.5 cgd
887 1.62 msaitoh /* Oxford Semiconductor OX16PCI958 UARTs */
888 1.62 msaitoh { "Oxford Semiconductor OX16PCI958 UARTs",
889 1.62 msaitoh { PCI_VENDOR_OXFORDSEMI, 0x9538, 0, 0 },
890 1.62 msaitoh { 0xffff, 0xffff, 0, 0 },
891 1.62 msaitoh {
892 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 10},
893 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 10},
894 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 10},
895 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 10},
896 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 10},
897 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 10},
898 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 10},
899 1.62 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 10},
900 1.62 msaitoh },
901 1.62 msaitoh },
902 1.62 msaitoh
903 1.61 msaitoh /*
904 1.61 msaitoh * XXX no entry because I have no data:
905 1.61 msaitoh * XXX Dolphin Peripherals 4006 (single parallel)
906 1.61 msaitoh */
907 1.5 cgd
908 1.61 msaitoh /*
909 1.61 msaitoh * Dolphin Peripherals 4014 (dual parallel port) card. PLX 9050, with
910 1.61 msaitoh * a seemingly-lame EEPROM setup that puts the Dolphin IDs
911 1.61 msaitoh * into the subsystem fields, and claims that it's a
912 1.61 msaitoh * network/misc (0x02/0x80) device.
913 1.61 msaitoh */
914 1.61 msaitoh { "Dolphin Peripherals 4014",
915 1.61 msaitoh { PCI_VENDOR_PLX, 0x9050, 0xd84d, 0x6810 },
916 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
917 1.5 cgd {
918 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
919 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x24, 0x00, 0x00 },
920 1.5 cgd },
921 1.5 cgd },
922 1.5 cgd
923 1.61 msaitoh /*
924 1.61 msaitoh * XXX Dolphin Peripherals 4025 (single serial)
925 1.61 msaitoh * (clashes with Dolphin Peripherals 4036 (2s variant)
926 1.61 msaitoh */
927 1.5 cgd
928 1.61 msaitoh /*
929 1.61 msaitoh * Dolphin Peripherals 4035 (dual serial port) card. PLX 9050, with
930 1.61 msaitoh * a seemingly-lame EEPROM setup that puts the Dolphin IDs
931 1.61 msaitoh * into the subsystem fields, and claims that it's a
932 1.61 msaitoh * network/misc (0x02/0x80) device.
933 1.61 msaitoh */
934 1.61 msaitoh { "Dolphin Peripherals 4035",
935 1.61 msaitoh { PCI_VENDOR_PLX, 0x9050, 0xd84d, 0x6808 },
936 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
937 1.5 cgd {
938 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
939 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
940 1.31 bouyer },
941 1.31 bouyer },
942 1.31 bouyer
943 1.39 bouyer /* VScom PCI-200: 2S */
944 1.39 bouyer { "VScom PCI-200",
945 1.61 msaitoh { PCI_VENDOR_PLX, 0x1103, PCI_VENDOR_PLX, 0x1103 },
946 1.39 bouyer { 0xffff, 0xffff, 0xffff, 0xffff },
947 1.39 bouyer {
948 1.39 bouyer { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
949 1.39 bouyer { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
950 1.39 bouyer },
951 1.39 bouyer },
952 1.39 bouyer
953 1.20 soren /* VScom PCI-400: 4S */
954 1.20 soren { "VScom PCI-400",
955 1.61 msaitoh { PCI_VENDOR_PLX, 0x1077, PCI_VENDOR_PLX, 0x1077 },
956 1.20 soren { 0xffff, 0xffff, 0xffff, 0xffff },
957 1.20 soren {
958 1.20 soren { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
959 1.20 soren { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
960 1.20 soren { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
961 1.20 soren { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
962 1.20 soren },
963 1.20 soren },
964 1.3 cgd
965 1.20 soren /* VScom PCI-800: 8S */
966 1.4 cgd { "VScom PCI-800",
967 1.61 msaitoh { PCI_VENDOR_PLX, 0x1076, PCI_VENDOR_PLX, 0x1076 },
968 1.3 cgd { 0xffff, 0xffff, 0xffff, 0xffff },
969 1.3 cgd {
970 1.20 soren { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
971 1.20 soren { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
972 1.20 soren { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
973 1.20 soren { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
974 1.20 soren { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 8 },
975 1.20 soren { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 8 },
976 1.20 soren { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 8 },
977 1.20 soren { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 8 },
978 1.11 bouyer },
979 1.11 bouyer },
980 1.32 chs
981 1.61 msaitoh /*
982 1.61 msaitoh * Perle PCI-RAS 4 Modem ports
983 1.61 msaitoh */
984 1.61 msaitoh { "Perle Systems PCI-RAS 4 modem ports",
985 1.61 msaitoh { PCI_VENDOR_PLX, 0x9030, 0x155f, 0xf001 },
986 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
987 1.37 mycroft {
988 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 4 },
989 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 4 },
990 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 4 },
991 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 4 },
992 1.37 mycroft },
993 1.37 mycroft },
994 1.61 msaitoh
995 1.61 msaitoh /*
996 1.61 msaitoh * Perle PCI-RASV92 4 Modem ports
997 1.61 msaitoh */
998 1.61 msaitoh { "Perle Systems PCI-RASV92 4 modem ports",
999 1.61 msaitoh { PCI_VENDOR_PLX, 0x9050, 0x155f, 0xf001 },
1000 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
1001 1.37 mycroft {
1002 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 4 },
1003 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 4 },
1004 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 4 },
1005 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 4 },
1006 1.37 mycroft },
1007 1.37 mycroft },
1008 1.37 mycroft
1009 1.11 bouyer /*
1010 1.61 msaitoh * Perle PCI-RAS 8 Modem ports
1011 1.11 bouyer */
1012 1.61 msaitoh { "Perle Systems PCI-RAS 8 modem ports",
1013 1.61 msaitoh { PCI_VENDOR_PLX, 0x9030, 0x155f, 0xf010 },
1014 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
1015 1.11 bouyer {
1016 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 4 },
1017 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 4 },
1018 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 4 },
1019 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 4 },
1020 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 4 },
1021 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 4 },
1022 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 4 },
1023 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 4 },
1024 1.11 bouyer },
1025 1.11 bouyer },
1026 1.61 msaitoh
1027 1.61 msaitoh /*
1028 1.61 msaitoh * Perle PCI-RASV92 8 Modem ports
1029 1.61 msaitoh */
1030 1.61 msaitoh { "Perle Systems PCI-RASV92 8 modem ports",
1031 1.61 msaitoh { PCI_VENDOR_PLX, 0x9050, 0x155f, 0xf010 },
1032 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
1033 1.11 bouyer {
1034 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 4 },
1035 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 4 },
1036 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 4 },
1037 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 4 },
1038 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 4 },
1039 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 4 },
1040 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 4 },
1041 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 4 },
1042 1.7 jun },
1043 1.7 jun },
1044 1.61 msaitoh
1045 1.61 msaitoh /*
1046 1.61 msaitoh * Boca Research Turbo Serial 654 (4 serial port) card.
1047 1.61 msaitoh * Appears to be the same as Chase Research PLC PCI-FAST4
1048 1.61 msaitoh * and Perle PCI-FAST4 Multi-Port serial cards.
1049 1.61 msaitoh */
1050 1.61 msaitoh { "Boca Research Turbo Serial 654",
1051 1.61 msaitoh { PCI_VENDOR_PLX, 0x9050, 0x12e0, 0x0031 },
1052 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
1053 1.29 seb {
1054 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 4 },
1055 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 4 },
1056 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 4 },
1057 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 4 },
1058 1.29 seb },
1059 1.29 seb },
1060 1.61 msaitoh
1061 1.61 msaitoh /*
1062 1.61 msaitoh * Boca Research Turbo Serial 658 (8 serial port) card.
1063 1.61 msaitoh * Appears to be the same as Chase Research PLC PCI-FAST8
1064 1.61 msaitoh * and Perle PCI-FAST8 Multi-Port serial cards.
1065 1.61 msaitoh */
1066 1.61 msaitoh { "Boca Research Turbo Serial 658",
1067 1.61 msaitoh { PCI_VENDOR_PLX, 0x9050, 0x12e0, 0x0021 },
1068 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xffff },
1069 1.7 jun {
1070 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 4 },
1071 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 4 },
1072 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 4 },
1073 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 4 },
1074 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 4 },
1075 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 4 },
1076 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 4 },
1077 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 4 },
1078 1.7 jun },
1079 1.7 jun },
1080 1.7 jun
1081 1.61 msaitoh /*
1082 1.61 msaitoh * SIIG Boards.
1083 1.61 msaitoh *
1084 1.61 msaitoh * SIIG provides documentation for their boards at:
1085 1.61 msaitoh * <URL:http://www.siig.com/driver.htm>
1086 1.61 msaitoh *
1087 1.61 msaitoh * Please excuse the weird ordering, it's the order they
1088 1.61 msaitoh * use in their documentation.
1089 1.61 msaitoh */
1090 1.61 msaitoh
1091 1.61 msaitoh /*
1092 1.61 msaitoh * SIIG "10x" family boards.
1093 1.61 msaitoh */
1094 1.61 msaitoh
1095 1.61 msaitoh /* SIIG Cyber Serial PCI 16C550 (10x family): 1S */
1096 1.61 msaitoh { "SIIG Cyber Serial PCI 16C550 (10x family)",
1097 1.61 msaitoh { PCI_VENDOR_SIIG, 0x1000, 0, 0 },
1098 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1099 1.7 jun {
1100 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00,
1101 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR1 },
1102 1.8 castor },
1103 1.8 castor },
1104 1.8 castor
1105 1.61 msaitoh /* SIIG Cyber Serial PCI 16C650 (10x family): 1S */
1106 1.61 msaitoh { "SIIG Cyber Serial PCI 16C650 (10x family)",
1107 1.61 msaitoh { PCI_VENDOR_SIIG, 0x1001, 0, 0 },
1108 1.8 castor { 0xffff, 0xffff, 0, 0 },
1109 1.8 castor {
1110 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00,
1111 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR1 },
1112 1.8 castor },
1113 1.8 castor },
1114 1.8 castor
1115 1.61 msaitoh /* SIIG Cyber Serial PCI 16C850 (10x family): 1S */
1116 1.61 msaitoh { "SIIG Cyber Serial PCI 16C850 (10x family)",
1117 1.61 msaitoh { PCI_VENDOR_SIIG, 0x1002, 0, 0 },
1118 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1119 1.8 castor {
1120 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00,
1121 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR1 },
1122 1.19 thorpej },
1123 1.19 thorpej },
1124 1.19 thorpej
1125 1.61 msaitoh /* SIIG Cyber I/O PCI 16C550 (10x family): 1S, 1P */
1126 1.61 msaitoh { "SIIG Cyber I/O PCI 16C550 (10x family)",
1127 1.61 msaitoh { PCI_VENDOR_SIIG, 0x1010, 0, 0 },
1128 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1129 1.19 thorpej {
1130 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00,
1131 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR0 },
1132 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
1133 1.33 jdolecek },
1134 1.33 jdolecek },
1135 1.33 jdolecek
1136 1.61 msaitoh /* SIIG Cyber I/O PCI 16C650 (10x family): 1S, 1P */
1137 1.61 msaitoh { "SIIG Cyber I/O PCI 16C650 (10x family)",
1138 1.61 msaitoh { PCI_VENDOR_SIIG, 0x1011, 0, 0 },
1139 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1140 1.33 jdolecek {
1141 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00,
1142 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR0 },
1143 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
1144 1.15 christos },
1145 1.15 christos },
1146 1.15 christos
1147 1.61 msaitoh /* SIIG Cyber I/O PCI 16C850 (10x family): 1S, 1P */
1148 1.61 msaitoh { "SIIG Cyber I/O PCI 16C850 (10x family)",
1149 1.61 msaitoh { PCI_VENDOR_SIIG, 0x1012, 0, 0 },
1150 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1151 1.15 christos {
1152 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00,
1153 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR0 },
1154 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
1155 1.9 bouyer },
1156 1.9 bouyer },
1157 1.9 bouyer
1158 1.61 msaitoh /* SIIG Cyber Parallel PCI (10x family): 1P */
1159 1.61 msaitoh { "SIIG Cyber Parallel PCI (10x family)",
1160 1.61 msaitoh { PCI_VENDOR_SIIG, 0x1020, 0, 0 },
1161 1.9 bouyer { 0xffff, 0xffff, 0, 0 },
1162 1.9 bouyer {
1163 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
1164 1.10 bouyer },
1165 1.10 bouyer },
1166 1.10 bouyer
1167 1.61 msaitoh /* SIIG Cyber Parallel Dual PCI (10x family): 2P */
1168 1.61 msaitoh { "SIIG Cyber Parallel Dual PCI (10x family)",
1169 1.61 msaitoh { PCI_VENDOR_SIIG, 0x1021, 0, 0 },
1170 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1171 1.10 bouyer {
1172 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
1173 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
1174 1.12 veego },
1175 1.12 veego },
1176 1.12 veego
1177 1.61 msaitoh /* SIIG Cyber Serial Dual PCI 16C550 (10x family): 2S */
1178 1.61 msaitoh { "SIIG Cyber Serial Dual PCI 16C550 (10x family)",
1179 1.61 msaitoh { PCI_VENDOR_SIIG, 0x1030, 0, 0 },
1180 1.57 tsutsui { 0xffff, 0xffff, 0, 0 },
1181 1.57 tsutsui {
1182 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00,
1183 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR2 },
1184 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00,
1185 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR3 },
1186 1.57 tsutsui },
1187 1.57 tsutsui },
1188 1.57 tsutsui
1189 1.61 msaitoh /* SIIG Cyber Serial Dual PCI 16C650 (10x family): 2S */
1190 1.61 msaitoh { "SIIG Cyber Serial Dual PCI 16C650 (10x family)",
1191 1.61 msaitoh { PCI_VENDOR_SIIG, 0x1031, 0, 0 },
1192 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1193 1.31 bouyer {
1194 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00,
1195 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR2 },
1196 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00,
1197 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR3 },
1198 1.31 bouyer },
1199 1.31 bouyer },
1200 1.31 bouyer
1201 1.61 msaitoh /* SIIG Cyber Serial Dual PCI 16C850 (10x family): 2S */
1202 1.61 msaitoh { "SIIG Cyber Serial Dual PCI 16C850 (10x family)",
1203 1.61 msaitoh { PCI_VENDOR_SIIG, 0x1032, 0, 0 },
1204 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1205 1.31 bouyer {
1206 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00,
1207 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR2 },
1208 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00,
1209 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR3 },
1210 1.31 bouyer },
1211 1.31 bouyer },
1212 1.31 bouyer
1213 1.61 msaitoh /* SIIG Cyber 2S1P PCI 16C550 (10x family): 2S, 1P */
1214 1.61 msaitoh { "SIIG Cyber 2S1P PCI 16C550 (10x family)",
1215 1.61 msaitoh { PCI_VENDOR_SIIG, 0x1034, 0, 0 },
1216 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1217 1.58 enami {
1218 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00,
1219 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR2 },
1220 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00,
1221 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR3 },
1222 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
1223 1.58 enami },
1224 1.58 enami },
1225 1.58 enami
1226 1.61 msaitoh /* SIIG Cyber 2S1P PCI 16C650 (10x family): 2S, 1P */
1227 1.61 msaitoh { "SIIG Cyber 2S1P PCI 16C650 (10x family)",
1228 1.61 msaitoh { PCI_VENDOR_SIIG, 0x1035, 0, 0 },
1229 1.12 veego { 0xffff, 0xffff, 0, 0 },
1230 1.12 veego {
1231 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00,
1232 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR2 },
1233 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00,
1234 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR3 },
1235 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
1236 1.12 veego },
1237 1.12 veego },
1238 1.12 veego
1239 1.61 msaitoh /* SIIG Cyber 2S1P PCI 16C850 (10x family): 2S, 1P */
1240 1.61 msaitoh { "SIIG Cyber 2S1P PCI 16C850 (10x family)",
1241 1.61 msaitoh { PCI_VENDOR_SIIG, 0x1036, 0, 0 },
1242 1.27 hannken { 0xffff, 0xffff, 0, 0 },
1243 1.27 hannken {
1244 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00,
1245 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR2 },
1246 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00,
1247 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR3 },
1248 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
1249 1.27 hannken },
1250 1.27 hannken },
1251 1.27 hannken
1252 1.61 msaitoh /* SIIG Cyber 4S PCI 16C550 (10x family): 4S */
1253 1.61 msaitoh { "SIIG Cyber 4S PCI 16C550 (10x family)",
1254 1.61 msaitoh { PCI_VENDOR_SIIG, 0x1050, 0, 0 },
1255 1.51 chs { 0xffff, 0xffff, 0, 0 },
1256 1.51 chs {
1257 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00,
1258 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR0 },
1259 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
1260 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },
1261 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ * 8 },
1262 1.51 chs },
1263 1.51 chs },
1264 1.51 chs
1265 1.61 msaitoh /* SIIG Cyber 4S PCI 16C650 (10x family): 4S */
1266 1.61 msaitoh { "SIIG Cyber 4S PCI 16C650 (10x family)",
1267 1.61 msaitoh { PCI_VENDOR_SIIG, 0x1051, 0, 0 },
1268 1.51 chs { 0xffff, 0xffff, 0, 0 },
1269 1.43 martin {
1270 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00,
1271 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR0 },
1272 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
1273 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },
1274 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ * 8 },
1275 1.43 martin },
1276 1.43 martin },
1277 1.43 martin
1278 1.61 msaitoh /* SIIG Cyber 4S PCI 16C850 (10x family): 4S */
1279 1.61 msaitoh { "SIIG Cyber 4S PCI 16C850 (10x family)",
1280 1.61 msaitoh { PCI_VENDOR_SIIG, 0x1052, 0, 0 },
1281 1.51 chs { 0xffff, 0xffff, 0, 0 },
1282 1.51 chs {
1283 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00,
1284 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR0 },
1285 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
1286 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },
1287 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ * 8 },
1288 1.51 chs },
1289 1.51 chs },
1290 1.51 chs
1291 1.61 msaitoh /*
1292 1.61 msaitoh * SIIG "20x" family boards.
1293 1.61 msaitoh */
1294 1.61 msaitoh
1295 1.61 msaitoh /* SIIG Cyber Serial PCI 16C550 (20x family): 1S */
1296 1.61 msaitoh { "SIIG Cyber Serial PCI 16C550 (20x family)",
1297 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2000, 0, 0 },
1298 1.51 chs { 0xffff, 0xffff, 0, 0 },
1299 1.45 bouyer {
1300 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1301 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1302 1.45 bouyer },
1303 1.45 bouyer },
1304 1.45 bouyer
1305 1.61 msaitoh /* SIIG Cyber Serial PCI 16C650 (20x family): 1S */
1306 1.61 msaitoh { "SIIG Cyber Serial PCI 16C650 (20x family)",
1307 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2001, 0, 0 },
1308 1.51 chs { 0xffff, 0xffff, 0, 0 },
1309 1.51 chs {
1310 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1311 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1312 1.51 chs },
1313 1.51 chs },
1314 1.51 chs
1315 1.61 msaitoh /* SIIG Cyber Serial PCI 16C850 (20x family): 1S */
1316 1.61 msaitoh { "SIIG Cyber Serial PCI 16C850 (20x family)",
1317 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2002, 0, 0 },
1318 1.12 veego { 0xffff, 0xffff, 0, 0 },
1319 1.12 veego {
1320 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1321 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1322 1.34 jdolecek },
1323 1.34 jdolecek },
1324 1.34 jdolecek
1325 1.61 msaitoh /* SIIG Cyber I/O PCI 16C550 (20x family): 1S, 1P */
1326 1.61 msaitoh { "SIIG Cyber I/O PCI 16C550 (20x family)",
1327 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2010, 0, 0 },
1328 1.34 jdolecek { 0xffff, 0xffff, 0, 0 },
1329 1.34 jdolecek {
1330 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1331 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1332 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
1333 1.17 msaitoh },
1334 1.17 msaitoh },
1335 1.17 msaitoh
1336 1.61 msaitoh /* SIIG Cyber I/O PCI 16C650 (20x family): 1S, 1P */
1337 1.61 msaitoh { "SIIG Cyber I/O PCI 16C650 (20x family)",
1338 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2011, 0, 0 },
1339 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1340 1.47 cube {
1341 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1342 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1343 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
1344 1.47 cube },
1345 1.47 cube },
1346 1.47 cube
1347 1.61 msaitoh /* SIIG Cyber I/O PCI 16C850 (20x family): 1S, 1P */
1348 1.61 msaitoh { "SIIG Cyber I/O PCI 16C850 (20x family)",
1349 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2012, 0, 0 },
1350 1.17 msaitoh { 0xffff, 0xffff, 0, 0 },
1351 1.17 msaitoh {
1352 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1353 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1354 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
1355 1.28 lukem },
1356 1.28 lukem },
1357 1.28 lukem
1358 1.61 msaitoh /* SIIG Cyber Parallel PCI (20x family): 1P */
1359 1.61 msaitoh { "SIIG Cyber Parallel PCI (20x family)",
1360 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2020, 0, 0 },
1361 1.28 lukem { 0xffff, 0xffff, 0, 0 },
1362 1.28 lukem {
1363 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
1364 1.24 thorpej },
1365 1.24 thorpej },
1366 1.24 thorpej
1367 1.61 msaitoh /* SIIG Cyber Parallel Dual PCI (20x family): 2P */
1368 1.61 msaitoh { "SIIG Cyber Parallel Dual PCI (20x family)",
1369 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2021, 0, 0 },
1370 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1371 1.49 bouyer {
1372 1.49 bouyer { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
1373 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
1374 1.49 bouyer },
1375 1.49 bouyer },
1376 1.49 bouyer
1377 1.61 msaitoh /* SIIG Cyber Serial Dual PCI 16C550 (20x family): 2S */
1378 1.61 msaitoh { "SIIG Cyber Serial Dual PCI 16C550 (20x family)",
1379 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2030, 0, 0 },
1380 1.24 thorpej { 0xffff, 0xffff, 0, 0 },
1381 1.24 thorpej {
1382 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1383 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1384 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00,
1385 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR1 },
1386 1.30 enami },
1387 1.30 enami },
1388 1.30 enami
1389 1.61 msaitoh /* SIIG Cyber Serial Dual PCI 16C650 (20x family): 2S */
1390 1.61 msaitoh { "SIIG Cyber Serial Dual PCI 16C650 (20x family)",
1391 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2031, 0, 0 },
1392 1.30 enami { 0xffff, 0xffff, 0, 0 },
1393 1.30 enami {
1394 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1395 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1396 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00,
1397 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR1 },
1398 1.32 chs },
1399 1.32 chs },
1400 1.32 chs
1401 1.61 msaitoh /* SIIG Cyber Serial Dual PCI 16C850 (20x family): 2S */
1402 1.61 msaitoh { "SIIG Cyber Serial Dual PCI 16C850 (20x family)",
1403 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2032, 0, 0 },
1404 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1405 1.48 manu {
1406 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1407 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1408 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00,
1409 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR1 },
1410 1.48 manu },
1411 1.48 manu },
1412 1.48 manu
1413 1.61 msaitoh /* SIIG Cyber 2P1S PCI 16C550 (20x family): 1S, 2P */
1414 1.61 msaitoh { "SIIG Cyber 2P1S PCI 16C550 (20x family)",
1415 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2040, 0, 0 },
1416 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1417 1.50 manu {
1418 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1419 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1420 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
1421 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
1422 1.50 manu },
1423 1.50 manu },
1424 1.50 manu
1425 1.61 msaitoh /* SIIG Cyber 2P1S PCI 16C650 (20x family): 1S, 2P */
1426 1.61 msaitoh { "SIIG Cyber 2P1S PCI 16C650 (20x family)",
1427 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2041, 0, 0 },
1428 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1429 1.50 manu {
1430 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1431 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1432 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
1433 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
1434 1.50 manu },
1435 1.50 manu },
1436 1.50 manu
1437 1.61 msaitoh /* SIIG Cyber 2P1S PCI 16C850 (20x family): 1S, 2P */
1438 1.61 msaitoh { "SIIG Cyber 2P1S PCI 16C850 (20x family)",
1439 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2042, 0, 0 },
1440 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1441 1.50 manu {
1442 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1443 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1444 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
1445 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
1446 1.61 msaitoh },
1447 1.61 msaitoh },
1448 1.61 msaitoh
1449 1.61 msaitoh /* SIIG Cyber 4S PCI 16C550 (20x family): 4S */
1450 1.61 msaitoh { "SIIG Cyber 4S PCI 16C550 (20x family)",
1451 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2050, 0, 0 },
1452 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1453 1.61 msaitoh {
1454 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1455 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1456 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
1457 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
1458 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
1459 1.61 msaitoh },
1460 1.61 msaitoh },
1461 1.61 msaitoh
1462 1.61 msaitoh /* SIIG Cyber 4S PCI 16C650 (20x family): 4S */
1463 1.61 msaitoh { "SIIG Cyber 4S PCI 16C650 (20x family)",
1464 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2051, 0, 0 },
1465 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1466 1.61 msaitoh {
1467 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1468 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1469 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
1470 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
1471 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
1472 1.61 msaitoh },
1473 1.61 msaitoh },
1474 1.61 msaitoh
1475 1.61 msaitoh /* SIIG Cyber 4S PCI 16C850 (20x family): 4S */
1476 1.61 msaitoh { "SIIG Cyber 4S PCI 16C850 (20x family)",
1477 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2052, 0, 0 },
1478 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1479 1.61 msaitoh {
1480 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1481 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1482 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
1483 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
1484 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
1485 1.61 msaitoh },
1486 1.61 msaitoh },
1487 1.61 msaitoh
1488 1.61 msaitoh /* SIIG Cyber 2S1P PCI 16C550 (20x family): 2S, 1P */
1489 1.61 msaitoh { "SIIG Cyber 2S1P PCI 16C550 (20x family)",
1490 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2060, 0, 0 },
1491 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1492 1.61 msaitoh {
1493 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1494 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1495 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00,
1496 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR1 },
1497 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
1498 1.61 msaitoh },
1499 1.61 msaitoh },
1500 1.61 msaitoh
1501 1.61 msaitoh /* SIIG Cyber 2S1P PCI 16C650 (20x family): 2S, 1P */
1502 1.61 msaitoh { "SIIG Cyber 2S1P PCI 16C650 (20x family)",
1503 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2061, 0, 0 },
1504 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1505 1.61 msaitoh {
1506 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1507 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1508 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00,
1509 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR1 },
1510 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
1511 1.61 msaitoh },
1512 1.61 msaitoh },
1513 1.61 msaitoh
1514 1.61 msaitoh /* SIIG Cyber 2S1P PCI 16C850 (20x family): 2S, 1P */
1515 1.61 msaitoh { "SIIG Cyber 2S1P PCI 16C850 (20x family)",
1516 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2062, 0, 0 },
1517 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1518 1.61 msaitoh {
1519 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1520 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1521 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00,
1522 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR1 },
1523 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
1524 1.61 msaitoh },
1525 1.61 msaitoh },
1526 1.61 msaitoh
1527 1.61 msaitoh /* SIIG PS8000 PCI 8S 16C550 (20x family): 8S - 16 Byte FIFOs */
1528 1.61 msaitoh { "SIIG PS8000 PCI 8S 16C550 (20x family)",
1529 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2080, 0, 0 },
1530 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1531 1.61 msaitoh {
1532 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1533 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1534 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
1535 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
1536 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
1537 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },
1538 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x08, COM_FREQ * 8 },
1539 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x10, COM_FREQ * 8 },
1540 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x18, COM_FREQ * 8 },
1541 1.61 msaitoh },
1542 1.61 msaitoh },
1543 1.61 msaitoh
1544 1.61 msaitoh /* SIIG PS8000 PCI 8S 16C650 (20x family): 8S - 32 Byte FIFOs */
1545 1.61 msaitoh { "SIIG PS8000 PCI 8S 16C650 (20x family)",
1546 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2081, 0, 0 },
1547 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1548 1.61 msaitoh {
1549 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1550 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1551 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
1552 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
1553 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
1554 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },
1555 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x08, COM_FREQ * 8 },
1556 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x10, COM_FREQ * 8 },
1557 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x18, COM_FREQ * 8 },
1558 1.61 msaitoh },
1559 1.61 msaitoh },
1560 1.61 msaitoh
1561 1.61 msaitoh /* SIIG PS8000 PCI 8S 16C850 (20x family): 8S - 128 Byte FIFOs */
1562 1.61 msaitoh { "SIIG PS8000 PCI 8S 16C850 (20x family)",
1563 1.61 msaitoh { PCI_VENDOR_SIIG, 0x2082, 0, 0 },
1564 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1565 1.61 msaitoh {
1566 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00,
1567 1.61 msaitoh (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
1568 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
1569 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
1570 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
1571 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },
1572 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x08, COM_FREQ * 8 },
1573 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x10, COM_FREQ * 8 },
1574 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x18, COM_FREQ * 8 },
1575 1.50 manu },
1576 1.50 manu },
1577 1.50 manu
1578 1.50 manu /*
1579 1.61 msaitoh * SUNIX 40XX series of serial/parallel combo cards.
1580 1.61 msaitoh * Tested with 4055A and 4065A.
1581 1.32 chs */
1582 1.61 msaitoh { "SUNIX 400X 1P",
1583 1.61 msaitoh { PCI_VENDOR_SUNIX, 0x7168, PCI_VENDOR_SUNIX, 0x4000 },
1584 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xeff0 },
1585 1.61 msaitoh {
1586 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
1587 1.61 msaitoh },
1588 1.61 msaitoh },
1589 1.61 msaitoh
1590 1.61 msaitoh { "SUNIX 401X 2P",
1591 1.61 msaitoh { PCI_VENDOR_SUNIX, 0x7168, PCI_VENDOR_SUNIX, 0x4010 },
1592 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xeff0 },
1593 1.61 msaitoh {
1594 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
1595 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
1596 1.61 msaitoh },
1597 1.61 msaitoh },
1598 1.61 msaitoh
1599 1.61 msaitoh { "SUNIX 402X 1S",
1600 1.61 msaitoh { PCI_VENDOR_SUNIX, 0x7168, PCI_VENDOR_SUNIX, 0x4020 },
1601 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xeff0 },
1602 1.32 chs {
1603 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
1604 1.40 perry },
1605 1.32 chs },
1606 1.32 chs
1607 1.61 msaitoh { "SUNIX 403X 2S",
1608 1.61 msaitoh { PCI_VENDOR_SUNIX, 0x7168, PCI_VENDOR_SUNIX, 0x4030 },
1609 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xeff0 },
1610 1.32 chs {
1611 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
1612 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
1613 1.3 cgd },
1614 1.3 cgd },
1615 1.1 cgd
1616 1.66 msaitoh { "SUNIX 4036 2S",
1617 1.66 msaitoh { PCI_VENDOR_SUNIX, 0x7168, PCI_VENDOR_SUNIX, 0x0002 },
1618 1.66 msaitoh { 0xffff, 0xffff, 0xffff, 0xeff0 },
1619 1.66 msaitoh {
1620 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
1621 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
1622 1.66 msaitoh },
1623 1.66 msaitoh },
1624 1.66 msaitoh
1625 1.61 msaitoh { "SUNIX 405X 4S",
1626 1.61 msaitoh { PCI_VENDOR_SUNIX, 0x7168, PCI_VENDOR_SUNIX, 0x4050 },
1627 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xeff0 },
1628 1.38 drochner {
1629 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
1630 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
1631 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ},
1632 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x08, COM_FREQ},
1633 1.38 drochner },
1634 1.38 drochner },
1635 1.38 drochner
1636 1.61 msaitoh { "SUNIX 406X 8S",
1637 1.61 msaitoh { PCI_VENDOR_SUNIX, 0x7168, PCI_VENDOR_SUNIX, 0x4060 },
1638 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xeff0 },
1639 1.44 hamajima {
1640 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
1641 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
1642 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ},
1643 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x08, COM_FREQ},
1644 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ},
1645 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ},
1646 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ},
1647 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ},
1648 1.44 hamajima },
1649 1.44 hamajima },
1650 1.61 msaitoh
1651 1.61 msaitoh { "SUNIX 407X 2S/1P",
1652 1.61 msaitoh { PCI_VENDOR_SUNIX, 0x7168, PCI_VENDOR_SUNIX, 0x4070 },
1653 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xeff0 },
1654 1.44 hamajima {
1655 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
1656 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
1657 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
1658 1.44 hamajima },
1659 1.44 hamajima },
1660 1.61 msaitoh
1661 1.61 msaitoh { "SUNIX 408X 2S/2P",
1662 1.61 msaitoh { PCI_VENDOR_SUNIX, 0x7168, PCI_VENDOR_SUNIX, 0x4080 },
1663 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xeff0 },
1664 1.44 hamajima {
1665 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
1666 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
1667 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
1668 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
1669 1.44 hamajima },
1670 1.44 hamajima },
1671 1.44 hamajima
1672 1.61 msaitoh { "SUNIX 409X 4S/2P",
1673 1.61 msaitoh { PCI_VENDOR_SUNIX, 0x7168, PCI_VENDOR_SUNIX, 0x4090 },
1674 1.61 msaitoh { 0xffff, 0xffff, 0xffff, 0xeff0 },
1675 1.53 tsutsui {
1676 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
1677 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
1678 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ},
1679 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x08, COM_FREQ},
1680 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
1681 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
1682 1.53 tsutsui },
1683 1.53 tsutsui },
1684 1.61 msaitoh
1685 1.61 msaitoh /*
1686 1.61 msaitoh * Dolphin Peripherals 4036 (dual serial port) card.
1687 1.61 msaitoh * (Dolpin 4025 has the same ID but only one port)
1688 1.61 msaitoh */
1689 1.61 msaitoh { "Dolphin Peripherals 4036",
1690 1.61 msaitoh { PCI_VENDOR_SUNIX, 0x7168, 0x0, 0x0 },
1691 1.61 msaitoh { 0xffff, 0xffff, 0x0, 0x0 },
1692 1.54 riz {
1693 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
1694 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
1695 1.54 riz },
1696 1.54 riz },
1697 1.54 riz
1698 1.61 msaitoh /*
1699 1.61 msaitoh * XXX no entry because I have no data:
1700 1.61 msaitoh * XXX Dolphin Peripherals 4078 (dual serial and single parallel)
1701 1.61 msaitoh */
1702 1.61 msaitoh
1703 1.66 msaitoh /* SD-LAB PCI I/O Card 4S */
1704 1.66 msaitoh { "Syba Tech Ltd. PCI-4S",
1705 1.66 msaitoh { PCI_VENDOR_SYBA, PCI_PRODUCT_SYBA_4S, 0, 0 },
1706 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
1707 1.66 msaitoh {
1708 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x3e8, COM_FREQ },
1709 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x2e8, COM_FREQ },
1710 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x3f8, COM_FREQ },
1711 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x2f8, COM_FREQ },
1712 1.66 msaitoh },
1713 1.66 msaitoh },
1714 1.66 msaitoh
1715 1.66 msaitoh /* SD-LAB PCI I/O Card 4S2P */
1716 1.66 msaitoh { "Syba Tech Ltd. PCI-4S2P-550-ECP",
1717 1.66 msaitoh { PCI_VENDOR_SYBA, PCI_PRODUCT_SYBA_4S2P, 0, 0 },
1718 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
1719 1.66 msaitoh {
1720 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x2e8, COM_FREQ },
1721 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x2f8, COM_FREQ },
1722 1.66 msaitoh { PUC_PORT_TYPE_LPT, 0x10, 0x000, 0x00 },
1723 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x3e8, COM_FREQ },
1724 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x3f8, COM_FREQ },
1725 1.66 msaitoh { PUC_PORT_TYPE_LPT, 0x10, 0x000, 0x00 },
1726 1.66 msaitoh },
1727 1.66 msaitoh },
1728 1.66 msaitoh
1729 1.66 msaitoh /*
1730 1.66 msaitoh * VScom PCI 010L
1731 1.66 msaitoh * one lpt
1732 1.66 msaitoh * untested
1733 1.66 msaitoh */
1734 1.66 msaitoh { "VScom PCI-010L",
1735 1.66 msaitoh { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI010L, 0, 0 },
1736 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
1737 1.66 msaitoh {
1738 1.66 msaitoh { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
1739 1.66 msaitoh },
1740 1.66 msaitoh },
1741 1.66 msaitoh
1742 1.66 msaitoh /*
1743 1.66 msaitoh * VScom PCI 100L
1744 1.66 msaitoh * one com
1745 1.66 msaitoh * The one I have defaults to a fequency of 14.7456 MHz which is
1746 1.66 msaitoh * jumper J1 set to 2-3.
1747 1.66 msaitoh */
1748 1.66 msaitoh { "VScom PCI-100L",
1749 1.66 msaitoh { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI100L, 0, 0 },
1750 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
1751 1.66 msaitoh {
1752 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
1753 1.66 msaitoh },
1754 1.66 msaitoh },
1755 1.66 msaitoh
1756 1.66 msaitoh /*
1757 1.66 msaitoh * VScom PCI 110L
1758 1.66 msaitoh * one com, one lpt
1759 1.66 msaitoh * untested
1760 1.66 msaitoh */
1761 1.66 msaitoh { "VScom PCI-110L",
1762 1.66 msaitoh { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI110L, 0, 0 },
1763 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
1764 1.66 msaitoh {
1765 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
1766 1.66 msaitoh { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
1767 1.66 msaitoh },
1768 1.66 msaitoh },
1769 1.66 msaitoh
1770 1.66 msaitoh /*
1771 1.66 msaitoh * VScom PCI-200L has 2 x 16550 UARTS.
1772 1.66 msaitoh * The board has a jumper which allows you to select a clock speed
1773 1.66 msaitoh * of either 14.7456MHz or 1.8432MHz. By default it runs at
1774 1.66 msaitoh * the fast speed.
1775 1.66 msaitoh */
1776 1.66 msaitoh { "VScom PCI-200L with 2 x 16550 UARTS",
1777 1.66 msaitoh { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI200L, 0, 0 },
1778 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
1779 1.66 msaitoh {
1780 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
1781 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
1782 1.66 msaitoh },
1783 1.66 msaitoh },
1784 1.66 msaitoh
1785 1.66 msaitoh /*
1786 1.66 msaitoh * VScom PCI-210L
1787 1.66 msaitoh * Has a jumper for frequency selection, defaults to 8x as used here
1788 1.66 msaitoh * two com, one lpt
1789 1.66 msaitoh */
1790 1.66 msaitoh { "VScom PCI-210L",
1791 1.66 msaitoh { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI210L, 0, 0 },
1792 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
1793 1.66 msaitoh {
1794 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
1795 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
1796 1.66 msaitoh { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
1797 1.66 msaitoh },
1798 1.66 msaitoh },
1799 1.66 msaitoh
1800 1.66 msaitoh /* PCI-400L: VendorID is reported to be 0x10d2 instead of 0x14d2. */
1801 1.66 msaitoh { "VScom PCI-400L",
1802 1.66 msaitoh { PCI_VENDOR_MOLEX, PCI_PRODUCT_MOLEX_VSCOM_PCI400L, 0, 0 },
1803 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
1804 1.66 msaitoh {
1805 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
1806 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
1807 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },
1808 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x08, COM_FREQ * 8 },
1809 1.66 msaitoh },
1810 1.66 msaitoh },
1811 1.66 msaitoh
1812 1.66 msaitoh { "VScom PCI-800L",
1813 1.66 msaitoh { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI800L, 0, 0 },
1814 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
1815 1.66 msaitoh {
1816 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
1817 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
1818 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },
1819 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x08, COM_FREQ * 8 },
1820 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x10, COM_FREQ * 8 },
1821 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x18, COM_FREQ * 8 },
1822 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x20, COM_FREQ * 8 },
1823 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x20, 0x28, COM_FREQ * 8 },
1824 1.66 msaitoh },
1825 1.66 msaitoh },
1826 1.66 msaitoh
1827 1.66 msaitoh { "VScom PCI-011H",
1828 1.66 msaitoh { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI011H, 0, 0 },
1829 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
1830 1.66 msaitoh {
1831 1.66 msaitoh { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
1832 1.66 msaitoh },
1833 1.66 msaitoh },
1834 1.66 msaitoh
1835 1.66 msaitoh /*
1836 1.66 msaitoh * VScom PCI x10H, 1 lpt.
1837 1.66 msaitoh * is the lpt part of VScom 110H, 210H, 410H
1838 1.66 msaitoh */
1839 1.66 msaitoh { "VScom PCI-x10H",
1840 1.66 msaitoh { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCIx10H, 0, 0 },
1841 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
1842 1.61 msaitoh {
1843 1.61 msaitoh { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
1844 1.61 msaitoh },
1845 1.61 msaitoh },
1846 1.66 msaitoh
1847 1.66 msaitoh /*
1848 1.66 msaitoh * VScom PCI 100H, little sister of 800H, 1 com.
1849 1.66 msaitoh * also com part of VScom 110H
1850 1.66 msaitoh * The one I have defaults to a fequency of 14.7456 MHz which is
1851 1.66 msaitoh * jumper J1 set to 2-3.
1852 1.66 msaitoh */
1853 1.66 msaitoh { "VScom PCI-100H",
1854 1.66 msaitoh { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI100H, 0, 0 },
1855 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
1856 1.54 riz {
1857 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
1858 1.54 riz },
1859 1.54 riz },
1860 1.53 tsutsui
1861 1.55 rmind /*
1862 1.61 msaitoh * VScom PCI-800H. Uses 8 16950 UART, behind a PCI chips that offers
1863 1.61 msaitoh * 4 com port on PCI device 0 and 4 on PCI device 1. PCI device 0 has
1864 1.61 msaitoh * device ID 3 and PCI device 1 device ID 4.
1865 1.55 rmind */
1866 1.66 msaitoh { "VScom PCI-800H",
1867 1.66 msaitoh { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI800H, 0, 0 },
1868 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1869 1.61 msaitoh {
1870 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
1871 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
1872 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
1873 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
1874 1.61 msaitoh },
1875 1.61 msaitoh },
1876 1.66 msaitoh { "VScom PCI-800H",
1877 1.66 msaitoh { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI800H_1, 0, 0 },
1878 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1879 1.55 rmind {
1880 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
1881 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
1882 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
1883 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
1884 1.55 rmind },
1885 1.55 rmind },
1886 1.66 msaitoh { "VScom PCI-200H",
1887 1.66 msaitoh { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI200H, 0, 0 },
1888 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1889 1.61 msaitoh {
1890 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
1891 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
1892 1.61 msaitoh },
1893 1.61 msaitoh },
1894 1.66 msaitoh
1895 1.66 msaitoh { "VScom PCI-010HV2",
1896 1.66 msaitoh { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI010HV2, 0, 0 },
1897 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
1898 1.66 msaitoh {
1899 1.66 msaitoh { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
1900 1.66 msaitoh },
1901 1.66 msaitoh },
1902 1.66 msaitoh { "VScom PCI-200HV2",
1903 1.66 msaitoh { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI200HV2, 0, 0 },
1904 1.66 msaitoh { 0xffff, 0xffff, 0, 0 },
1905 1.55 rmind {
1906 1.66 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
1907 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
1908 1.55 rmind },
1909 1.55 rmind },
1910 1.61 msaitoh
1911 1.61 msaitoh /* US Robotics (3Com) PCI Modems */
1912 1.61 msaitoh { "US Robotics (3Com) 3CP5609 PCI 16550 Modem",
1913 1.61 msaitoh { PCI_VENDOR_USR, 0x1008, 0, 0 },
1914 1.61 msaitoh { 0xffff, 0xffff, 0, 0 },
1915 1.55 rmind {
1916 1.61 msaitoh { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
1917 1.55 rmind },
1918 1.55 rmind },
1919 1.55 rmind
1920 1.46 christos { .name = NULL },
1921 1.1 cgd };
1922