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