xref: /freebsd/sys/dev/puc/pucdata.c (revision 69c5bce6ee1ec42997757e7f1334767d217c5d7d)
1 /*-
2  * Copyright (c) 2006 Marcel Moolenaar
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26 
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29 
30 /*
31  * PCI "universal" communications card driver configuration data (used to
32  * match/attach the cards).
33  */
34 
35 #include <sys/param.h>
36 #include <sys/systm.h>
37 #include <sys/kernel.h>
38 #include <sys/bus.h>
39 
40 #include <machine/resource.h>
41 #include <machine/bus.h>
42 #include <sys/rman.h>
43 
44 #include <dev/pci/pcivar.h>
45 
46 #include <dev/puc/puc_bus.h>
47 #include <dev/puc/puc_cfg.h>
48 #include <dev/puc/puc_bfe.h>
49 
50 static puc_config_f puc_config_amc;
51 static puc_config_f puc_config_diva;
52 static puc_config_f puc_config_exar;
53 static puc_config_f puc_config_icbook;
54 static puc_config_f puc_config_oxford_pcie;
55 static puc_config_f puc_config_quatech;
56 static puc_config_f puc_config_syba;
57 static puc_config_f puc_config_siig;
58 static puc_config_f puc_config_timedia;
59 static puc_config_f puc_config_titan;
60 
61 const struct puc_cfg puc_pci_devices[] = {
62 
63 	{   0x0009, 0x7168, 0xffff, 0,
64 	    "Sunix SUN1889",
65 	    DEFAULT_RCLK * 8,
66 	    PUC_PORT_2S, 0x10, 0, 8,
67 	},
68 
69 	{   0x103c, 0x1048, 0x103c, 0x1049,
70 	    "HP Diva Serial [GSP] Multiport UART - Tosca Console",
71 	    DEFAULT_RCLK,
72 	    PUC_PORT_3S, 0x10, 0, -1,
73 	    .config_function = puc_config_diva
74 	},
75 
76 	{   0x103c, 0x1048, 0x103c, 0x104a,
77 	    "HP Diva Serial [GSP] Multiport UART - Tosca Secondary",
78 	    DEFAULT_RCLK,
79 	    PUC_PORT_2S, 0x10, 0, -1,
80 	    .config_function = puc_config_diva
81 	},
82 
83 	{   0x103c, 0x1048, 0x103c, 0x104b,
84 	    "HP Diva Serial [GSP] Multiport UART - Maestro SP2",
85 	    DEFAULT_RCLK,
86 	    PUC_PORT_4S, 0x10, 0, -1,
87 	    .config_function = puc_config_diva
88 	},
89 
90 	{   0x103c, 0x1048, 0x103c, 0x1223,
91 	    "HP Diva Serial [GSP] Multiport UART - Superdome Console",
92 	    DEFAULT_RCLK,
93 	    PUC_PORT_3S, 0x10, 0, -1,
94 	    .config_function = puc_config_diva
95 	},
96 
97 	{   0x103c, 0x1048, 0x103c, 0x1226,
98 	    "HP Diva Serial [GSP] Multiport UART - Keystone SP2",
99 	    DEFAULT_RCLK,
100 	    PUC_PORT_3S, 0x10, 0, -1,
101 	    .config_function = puc_config_diva
102 	},
103 
104 	{   0x103c, 0x1048, 0x103c, 0x1282,
105 	    "HP Diva Serial [GSP] Multiport UART - Everest SP2",
106 	    DEFAULT_RCLK,
107 	    PUC_PORT_3S, 0x10, 0, -1,
108 	    .config_function = puc_config_diva
109 	},
110 
111 	{   0x10b5, 0x1076, 0x10b5, 0x1076,
112 	    "VScom PCI-800",
113 	    DEFAULT_RCLK * 8,
114 	    PUC_PORT_8S, 0x18, 0, 8,
115 	},
116 
117 	{   0x10b5, 0x1077, 0x10b5, 0x1077,
118 	    "VScom PCI-400",
119 	    DEFAULT_RCLK * 8,
120 	    PUC_PORT_4S, 0x18, 0, 8,
121 	},
122 
123 	{   0x10b5, 0x1103, 0x10b5, 0x1103,
124 	    "VScom PCI-200",
125 	    DEFAULT_RCLK * 8,
126 	    PUC_PORT_2S, 0x18, 4, 0,
127 	},
128 
129 	/*
130 	 * Boca Research Turbo Serial 658 (8 serial port) card.
131 	 * Appears to be the same as Chase Research PLC PCI-FAST8
132 	 * and Perle PCI-FAST8 Multi-Port serial cards.
133 	 */
134 	{   0x10b5, 0x9050, 0x12e0, 0x0021,
135 	    "Boca Research Turbo Serial 658",
136 	    DEFAULT_RCLK * 4,
137 	    PUC_PORT_8S, 0x18, 0, 8,
138 	},
139 
140 	{   0x10b5, 0x9050, 0x12e0, 0x0031,
141 	    "Boca Research Turbo Serial 654",
142 	    DEFAULT_RCLK * 4,
143 	    PUC_PORT_4S, 0x18, 0, 8,
144 	},
145 
146 	/*
147 	 * Dolphin Peripherals 4035 (dual serial port) card.  PLX 9050, with
148 	 * a seemingly-lame EEPROM setup that puts the Dolphin IDs
149 	 * into the subsystem fields, and claims that it's a
150 	 * network/misc (0x02/0x80) device.
151 	 */
152 	{   0x10b5, 0x9050, 0xd84d, 0x6808,
153 	    "Dolphin Peripherals 4035",
154 	    DEFAULT_RCLK,
155 	    PUC_PORT_2S, 0x18, 4, 0,
156 	},
157 
158 	/*
159 	 * Dolphin Peripherals 4014 (dual parallel port) card.  PLX 9050, with
160 	 * a seemingly-lame EEPROM setup that puts the Dolphin IDs
161 	 * into the subsystem fields, and claims that it's a
162 	 * network/misc (0x02/0x80) device.
163 	 */
164 	{   0x10b5, 0x9050, 0xd84d, 0x6810,
165 	    "Dolphin Peripherals 4014",
166 	    0,
167 	    PUC_PORT_2P, 0x20, 4, 0,
168 	},
169 
170 	{   0x10e8, 0x818e, 0xffff, 0,
171 	    "Applied Micro Circuits 8 Port UART",
172 	    DEFAULT_RCLK,
173 	    PUC_PORT_8S, 0x14, -1, -1,
174 	    .config_function = puc_config_amc
175 	},
176 
177 	{   0x11fe, 0x8010, 0xffff, 0,
178 	    "Comtrol RocketPort 550/8 RJ11 part A",
179 	    DEFAULT_RCLK * 4,
180 	    PUC_PORT_4S, 0x10, 0, 8,
181 	},
182 
183 	{   0x11fe, 0x8011, 0xffff, 0,
184 	    "Comtrol RocketPort 550/8 RJ11 part B",
185 	    DEFAULT_RCLK * 4,
186 	    PUC_PORT_4S, 0x10, 0, 8,
187 	},
188 
189 	{   0x11fe, 0x8012, 0xffff, 0,
190 	    "Comtrol RocketPort 550/8 Octa part A",
191 	    DEFAULT_RCLK * 4,
192 	    PUC_PORT_4S, 0x10, 0, 8,
193 	},
194 
195 	{   0x11fe, 0x8013, 0xffff, 0,
196 	    "Comtrol RocketPort 550/8 Octa part B",
197 	    DEFAULT_RCLK * 4,
198 	    PUC_PORT_4S, 0x10, 0, 8,
199 	},
200 
201 	{   0x11fe, 0x8014, 0xffff, 0,
202 	    "Comtrol RocketPort 550/4 RJ45",
203 	    DEFAULT_RCLK * 4,
204 	    PUC_PORT_4S, 0x10, 0, 8,
205 	},
206 
207 	{   0x11fe, 0x8015, 0xffff, 0,
208 	    "Comtrol RocketPort 550/Quad",
209 	    DEFAULT_RCLK * 4,
210 	    PUC_PORT_4S, 0x10, 0, 8,
211 	},
212 
213 	{   0x11fe, 0x8016, 0xffff, 0,
214 	    "Comtrol RocketPort 550/16 part A",
215 	    DEFAULT_RCLK * 4,
216 	    PUC_PORT_4S, 0x10, 0, 8,
217 	},
218 
219 	{   0x11fe, 0x8017, 0xffff, 0,
220 	    "Comtrol RocketPort 550/16 part B",
221 	    DEFAULT_RCLK * 4,
222 	    PUC_PORT_12S, 0x10, 0, 8,
223 	},
224 
225 	{   0x11fe, 0x8018, 0xffff, 0,
226 	    "Comtrol RocketPort 550/8 part A",
227 	    DEFAULT_RCLK * 4,
228 	    PUC_PORT_4S, 0x10, 0, 8,
229 	},
230 
231 	{   0x11fe, 0x8019, 0xffff, 0,
232 	    "Comtrol RocketPort 550/8 part B",
233 	    DEFAULT_RCLK * 4,
234 	    PUC_PORT_4S, 0x10, 0, 8,
235 	},
236 
237 	/*
238 	 * IBM SurePOS 300 Series (481033H) serial ports
239 	 * Details can be found on the IBM RSS websites
240 	 */
241 
242 	{   0x1014, 0x0297, 0xffff, 0,
243 	    "IBM SurePOS 300 Series (481033H) serial ports",
244 	    DEFAULT_RCLK,
245 	    PUC_PORT_4S, 0x10, 4, 0
246 	},
247 
248 	/*
249 	 * SIIG Boards.
250 	 *
251 	 * SIIG provides documentation for their boards at:
252 	 * <URL:http://www.siig.com/downloads.asp>
253 	 */
254 
255 	{   0x131f, 0x1010, 0xffff, 0,
256 	    "SIIG Cyber I/O PCI 16C550 (10x family)",
257 	    DEFAULT_RCLK,
258 	    PUC_PORT_1S1P, 0x18, 4, 0,
259 	},
260 
261 	{   0x131f, 0x1011, 0xffff, 0,
262 	    "SIIG Cyber I/O PCI 16C650 (10x family)",
263 	    DEFAULT_RCLK,
264 	    PUC_PORT_1S1P, 0x18, 4, 0,
265 	},
266 
267 	{   0x131f, 0x1012, 0xffff, 0,
268 	    "SIIG Cyber I/O PCI 16C850 (10x family)",
269 	    DEFAULT_RCLK,
270 	    PUC_PORT_1S1P, 0x18, 4, 0,
271 	},
272 
273 	{   0x131f, 0x1021, 0xffff, 0,
274 	    "SIIG Cyber Parallel Dual PCI (10x family)",
275 	    0,
276 	    PUC_PORT_2P, 0x18, 8, 0,
277 	},
278 
279 	{   0x131f, 0x1030, 0xffff, 0,
280 	    "SIIG Cyber Serial Dual PCI 16C550 (10x family)",
281 	    DEFAULT_RCLK,
282 	    PUC_PORT_2S, 0x18, 4, 0,
283 	},
284 
285 	{   0x131f, 0x1031, 0xffff, 0,
286 	    "SIIG Cyber Serial Dual PCI 16C650 (10x family)",
287 	    DEFAULT_RCLK,
288 	    PUC_PORT_2S, 0x18, 4, 0,
289 	},
290 
291 	{   0x131f, 0x1032, 0xffff, 0,
292 	    "SIIG Cyber Serial Dual PCI 16C850 (10x family)",
293 	    DEFAULT_RCLK,
294 	    PUC_PORT_2S, 0x18, 4, 0,
295 	},
296 
297 	{   0x131f, 0x1034, 0xffff, 0,	/* XXX really? */
298 	    "SIIG Cyber 2S1P PCI 16C550 (10x family)",
299 	    DEFAULT_RCLK,
300 	    PUC_PORT_2S1P, 0x18, 4, 0,
301 	},
302 
303 	{   0x131f, 0x1035, 0xffff, 0,	/* XXX really? */
304 	    "SIIG Cyber 2S1P PCI 16C650 (10x family)",
305 	    DEFAULT_RCLK,
306 	    PUC_PORT_2S1P, 0x18, 4, 0,
307 	},
308 
309 	{   0x131f, 0x1036, 0xffff, 0,	/* XXX really? */
310 	    "SIIG Cyber 2S1P PCI 16C850 (10x family)",
311 	    DEFAULT_RCLK,
312 	    PUC_PORT_2S1P, 0x18, 4, 0,
313 	},
314 
315 	{   0x131f, 0x1050, 0xffff, 0,
316 	    "SIIG Cyber 4S PCI 16C550 (10x family)",
317 	    DEFAULT_RCLK,
318 	    PUC_PORT_4S, 0x18, 4, 0,
319 	},
320 
321 	{   0x131f, 0x1051, 0xffff, 0,
322 	    "SIIG Cyber 4S PCI 16C650 (10x family)",
323 	    DEFAULT_RCLK,
324 	    PUC_PORT_4S, 0x18, 4, 0,
325 	},
326 
327 	{   0x131f, 0x1052, 0xffff, 0,
328 	    "SIIG Cyber 4S PCI 16C850 (10x family)",
329 	    DEFAULT_RCLK,
330 	    PUC_PORT_4S, 0x18, 4, 0,
331 	},
332 
333 	{   0x131f, 0x2010, 0xffff, 0,
334 	    "SIIG Cyber I/O PCI 16C550 (20x family)",
335 	    DEFAULT_RCLK,
336 	    PUC_PORT_1S1P, 0x10, 4, 0,
337 	},
338 
339 	{   0x131f, 0x2011, 0xffff, 0,
340 	    "SIIG Cyber I/O PCI 16C650 (20x family)",
341 	    DEFAULT_RCLK,
342 	    PUC_PORT_1S1P, 0x10, 4, 0,
343 	},
344 
345 	{   0x131f, 0x2012, 0xffff, 0,
346 	    "SIIG Cyber I/O PCI 16C850 (20x family)",
347 	    DEFAULT_RCLK,
348 	    PUC_PORT_1S1P, 0x10, 4, 0,
349 	},
350 
351 	{   0x131f, 0x2021, 0xffff, 0,
352 	    "SIIG Cyber Parallel Dual PCI (20x family)",
353 	    0,
354 	    PUC_PORT_2P, 0x10, 8, 0,
355 	},
356 
357 	{   0x131f, 0x2030, 0xffff, 0,
358 	    "SIIG Cyber Serial Dual PCI 16C550 (20x family)",
359 	    DEFAULT_RCLK,
360 	    PUC_PORT_2S, 0x10, 4, 0,
361 	},
362 
363 	{   0x131f, 0x2031, 0xffff, 0,
364 	    "SIIG Cyber Serial Dual PCI 16C650 (20x family)",
365 	    DEFAULT_RCLK,
366 	    PUC_PORT_2S, 0x10, 4, 0,
367 	},
368 
369 	{   0x131f, 0x2032, 0xffff, 0,
370 	    "SIIG Cyber Serial Dual PCI 16C850 (20x family)",
371 	    DEFAULT_RCLK,
372 	    PUC_PORT_2S, 0x10, 4, 0,
373 	},
374 
375 	{   0x131f, 0x2040, 0xffff, 0,
376 	    "SIIG Cyber 2P1S PCI 16C550 (20x family)",
377 	    DEFAULT_RCLK,
378 	    PUC_PORT_1S2P, 0x10, -1, 0,
379 	    .config_function = puc_config_siig
380 	},
381 
382 	{   0x131f, 0x2041, 0xffff, 0,
383 	    "SIIG Cyber 2P1S PCI 16C650 (20x family)",
384 	    DEFAULT_RCLK,
385 	    PUC_PORT_1S2P, 0x10, -1, 0,
386 	    .config_function = puc_config_siig
387 	},
388 
389 	{   0x131f, 0x2042, 0xffff, 0,
390 	    "SIIG Cyber 2P1S PCI 16C850 (20x family)",
391 	    DEFAULT_RCLK,
392 	    PUC_PORT_1S2P, 0x10, -1, 0,
393 	    .config_function = puc_config_siig
394 	},
395 
396 	{   0x131f, 0x2050, 0xffff, 0,
397 	    "SIIG Cyber 4S PCI 16C550 (20x family)",
398 	    DEFAULT_RCLK,
399 	    PUC_PORT_4S, 0x10, 4, 0,
400 	},
401 
402 	{   0x131f, 0x2051, 0xffff, 0,
403 	    "SIIG Cyber 4S PCI 16C650 (20x family)",
404 	    DEFAULT_RCLK,
405 	    PUC_PORT_4S, 0x10, 4, 0,
406 	},
407 
408 	{   0x131f, 0x2052, 0xffff, 0,
409 	    "SIIG Cyber 4S PCI 16C850 (20x family)",
410 	    DEFAULT_RCLK,
411 	    PUC_PORT_4S, 0x10, 4, 0,
412 	},
413 
414 	{   0x131f, 0x2060, 0xffff, 0,
415 	    "SIIG Cyber 2S1P PCI 16C550 (20x family)",
416 	    DEFAULT_RCLK,
417 	    PUC_PORT_2S1P, 0x10, 4, 0,
418 	},
419 
420 	{   0x131f, 0x2061, 0xffff, 0,
421 	    "SIIG Cyber 2S1P PCI 16C650 (20x family)",
422 	    DEFAULT_RCLK,
423 	    PUC_PORT_2S1P, 0x10, 4, 0,
424 	},
425 
426 	{   0x131f, 0x2062, 0xffff, 0,
427 	    "SIIG Cyber 2S1P PCI 16C850 (20x family)",
428 	    DEFAULT_RCLK,
429 	    PUC_PORT_2S1P, 0x10, 4, 0,
430 	},
431 
432 	{   0x131f, 0x2081, 0xffff, 0,
433 	    "SIIG PS8000 8S PCI 16C650 (20x family)",
434 	    DEFAULT_RCLK,
435 	    PUC_PORT_8S, 0x10, -1, -1,
436 	    .config_function = puc_config_siig
437 	},
438 
439 	{   0x135c, 0x0010, 0xffff, 0,
440 	    "Quatech QSC-100",
441 	    -3,	/* max 8x clock rate */
442 	    PUC_PORT_4S, 0x14, 0, 8,
443 	    .config_function = puc_config_quatech
444 	},
445 
446 	{   0x135c, 0x0020, 0xffff, 0,
447 	    "Quatech DSC-100",
448 	    -1, /* max 2x clock rate */
449 	    PUC_PORT_2S, 0x14, 0, 8,
450 	    .config_function = puc_config_quatech
451 	},
452 
453 	{   0x135c, 0x0030, 0xffff, 0,
454 	    "Quatech DSC-200/300",
455 	    -1, /* max 2x clock rate */
456 	    PUC_PORT_2S, 0x14, 0, 8,
457 	    .config_function = puc_config_quatech
458 	},
459 
460 	{   0x135c, 0x0040, 0xffff, 0,
461 	    "Quatech QSC-200/300",
462 	    -3, /* max 8x clock rate */
463 	    PUC_PORT_4S, 0x14, 0, 8,
464 	    .config_function = puc_config_quatech
465 	},
466 
467 	{   0x135c, 0x0050, 0xffff, 0,
468 	    "Quatech ESC-100D",
469 	    -3, /* max 8x clock rate */
470 	    PUC_PORT_8S, 0x14, 0, 8,
471 	    .config_function = puc_config_quatech
472 	},
473 
474 	{   0x135c, 0x0060, 0xffff, 0,
475 	    "Quatech ESC-100M",
476 	    -3, /* max 8x clock rate */
477 	    PUC_PORT_8S, 0x14, 0, 8,
478 	    .config_function = puc_config_quatech
479 	},
480 
481 	{   0x135c, 0x0170, 0xffff, 0,
482 	    "Quatech QSCLP-100",
483 	    -1, /* max 2x clock rate */
484 	    PUC_PORT_4S, 0x18, 0, 8,
485 	    .config_function = puc_config_quatech
486 	},
487 
488 	{   0x135c, 0x0180, 0xffff, 0,
489 	    "Quatech DSCLP-100",
490 	    -1, /* max 3x clock rate */
491 	    PUC_PORT_2S, 0x18, 0, 8,
492 	    .config_function = puc_config_quatech
493 	},
494 
495 	{   0x135c, 0x01b0, 0xffff, 0,
496 	    "Quatech DSCLP-200/300",
497 	    -1, /* max 2x clock rate */
498 	    PUC_PORT_2S, 0x18, 0, 8,
499 	    .config_function = puc_config_quatech
500 	},
501 
502 	{   0x135c, 0x01e0, 0xffff, 0,
503 	    "Quatech ESCLP-100",
504 	    -3, /* max 8x clock rate */
505 	    PUC_PORT_8S, 0x10, 0, 8,
506 	    .config_function = puc_config_quatech
507 	},
508 
509 	{   0x1393, 0x1040, 0xffff, 0,
510 	    "Moxa Technologies, Smartio C104H/PCI",
511 	    DEFAULT_RCLK * 8,
512 	    PUC_PORT_4S, 0x18, 0, 8,
513 	},
514 
515 	{   0x1393, 0x1041, 0xffff, 0,
516 	    "Moxa Technologies, Smartio CP-104UL/PCI",
517 	    DEFAULT_RCLK * 8,
518 	    PUC_PORT_4S, 0x18, 0, 8,
519 	},
520 
521 	{   0x1393, 0x1043, 0xffff, 0,
522 	    "Moxa Technologies, Smartio CP-104EL/PCIe",
523 	    DEFAULT_RCLK * 8,
524 	    PUC_PORT_4S, 0x18, 0, 8,
525 	},
526 
527 	{   0x1393, 0x1120, 0xffff, 0,
528 	    "Moxa Technologies, CP-112UL",
529 	    DEFAULT_RCLK * 8,
530 	    PUC_PORT_2S, 0x18, 0, 8,
531 	},
532 
533 	{   0x1393, 0x1141, 0xffff, 0,
534 	    "Moxa Technologies, Industio CP-114",
535 	    DEFAULT_RCLK * 8,
536 	    PUC_PORT_4S, 0x18, 0, 8,
537 	},
538 
539 	{   0x1393, 0x1680, 0xffff, 0,
540 	    "Moxa Technologies, C168H/PCI",
541 	    DEFAULT_RCLK * 8,
542 	    PUC_PORT_8S, 0x18, 0, 8,
543 	},
544 
545 	{   0x1393, 0x1681, 0xffff, 0,
546 	    "Moxa Technologies, C168U/PCI",
547 	    DEFAULT_RCLK * 8,
548 	    PUC_PORT_8S, 0x18, 0, 8,
549 	},
550 
551 	{   0x1393, 0x1682, 0xffff, 0,
552 	    "Moxa Technologies, CP-168EL/PCIe",
553 	    DEFAULT_RCLK * 8,
554 	    PUC_PORT_8S, 0x18, 0, 8,
555 	},
556 
557 	{   0x13a8, 0x0152, 0xffff, 0,
558 	    "Exar XR17C/D152",
559 	    DEFAULT_RCLK * 8,
560 	    PUC_PORT_2S, 0x10, 0, -1,
561 	    .config_function = puc_config_exar
562 	},
563 
564 	{   0x13a8, 0x0154, 0xffff, 0,
565 	    "Exar XR17C154",
566 	    DEFAULT_RCLK * 8,
567 	    PUC_PORT_4S, 0x10, 0, -1,
568 	    .config_function = puc_config_exar
569 	},
570 
571 	{   0x13a8, 0x0158, 0xffff, 0,
572 	    "Exar XR17C158",
573 	    DEFAULT_RCLK * 8,
574 	    PUC_PORT_8S, 0x10, 0, -1,
575 	    .config_function = puc_config_exar
576 	},
577 
578 	{   0x13a8, 0x0258, 0xffff, 0,
579 	    "Exar XR17V258IV",
580 	    DEFAULT_RCLK * 8,
581 	    PUC_PORT_8S, 0x10, 0, -1,
582 	},
583 
584 	{   0x1407, 0x0100, 0xffff, 0,
585 	    "Lava Computers Dual Serial",
586 	    DEFAULT_RCLK,
587 	    PUC_PORT_2S, 0x10, 4, 0,
588 	},
589 
590 	{   0x1407, 0x0101, 0xffff, 0,
591 	    "Lava Computers Quatro A",
592 	    DEFAULT_RCLK,
593 	    PUC_PORT_2S, 0x10, 4, 0,
594 	},
595 
596 	{   0x1407, 0x0102, 0xffff, 0,
597 	    "Lava Computers Quatro B",
598 	    DEFAULT_RCLK,
599 	    PUC_PORT_2S, 0x10, 4, 0,
600 	},
601 
602 	{   0x1407, 0x0120, 0xffff, 0,
603 	    "Lava Computers Quattro-PCI A",
604 	    DEFAULT_RCLK,
605 	    PUC_PORT_2S, 0x10, 4, 0,
606 	},
607 
608 	{   0x1407, 0x0121, 0xffff, 0,
609 	    "Lava Computers Quattro-PCI B",
610 	    DEFAULT_RCLK,
611 	    PUC_PORT_2S, 0x10, 4, 0,
612 	},
613 
614 	{   0x1407, 0x0180, 0xffff, 0,
615 	    "Lava Computers Octo A",
616 	    DEFAULT_RCLK,
617 	    PUC_PORT_4S, 0x10, 4, 0,
618 	},
619 
620 	{   0x1407, 0x0181, 0xffff, 0,
621 	    "Lava Computers Octo B",
622 	    DEFAULT_RCLK,
623 	    PUC_PORT_4S, 0x10, 4, 0,
624 	},
625 
626 	{   0x1409, 0x7268, 0xffff, 0,
627 	    "Sunix SUN1888",
628 	    0,
629 	    PUC_PORT_2P, 0x10, 0, 8,
630 	},
631 
632 	{   0x1409, 0x7168, 0xffff, 0,
633 	    NULL,
634 	    DEFAULT_RCLK * 8,
635 	    PUC_PORT_NONSTANDARD, 0x10, -1, -1,
636 	    .config_function = puc_config_timedia
637 	},
638 
639 	/*
640 	 * Boards with an Oxford Semiconductor chip.
641 	 *
642 	 * Oxford Semiconductor provides documentation for their chip at:
643 	 * <URL:http://www.plxtech.com/products/uart/>
644 	 *
645 	 * As sold by Kouwell <URL:http://www.kouwell.com/>.
646 	 * I/O Flex PCI I/O Card Model-223 with 4 serial and 1 parallel ports.
647 	 */
648 	{
649 		0x1415, 0x9501, 0x10fc ,0xc070,
650 		"I-O DATA RSA-PCI2/R",
651 		DEFAULT_RCLK * 8,
652 		PUC_PORT_2S, 0x10, 0, 8,
653 	},
654 
655 	{   0x1415, 0x9501, 0x131f, 0x2050,
656 	    "SIIG Cyber 4 PCI 16550",
657 	    DEFAULT_RCLK * 10,
658 	    PUC_PORT_4S, 0x10, 0, 8,
659 	},
660 
661 	{   0x1415, 0x9501, 0x131f, 0x2051,
662 	    "SIIG Cyber 4S PCI 16C650 (20x family)",
663 	    DEFAULT_RCLK * 10,
664 	    PUC_PORT_4S, 0x10, 0, 8,
665 	},
666 
667 	{   0x1415, 0x9501, 0x131f, 0x2052,
668 	    "SIIG Quartet Serial 850",
669 	    DEFAULT_RCLK * 10,
670 	    PUC_PORT_4S, 0x10, 0, 8,
671 	},
672 
673 	{   0x1415, 0x9501, 0x14db, 0x2150,
674 	    "Kuroutoshikou SERIAL4P-LPPCI2",
675 	    DEFAULT_RCLK * 10,
676 	    PUC_PORT_4S, 0x10, 0, 8,
677 	},
678 
679 	{   0x1415, 0x9501, 0xffff, 0,
680 	    "Oxford Semiconductor OX16PCI954 UARTs",
681 	    DEFAULT_RCLK,
682 	    PUC_PORT_4S, 0x10, 0, 8,
683 	},
684 
685 	{   0x1415, 0x950a, 0x131f, 0x2030,
686 	    "SIIG Cyber 2S PCIe",
687 	    DEFAULT_RCLK * 10,
688 	    PUC_PORT_2S, 0x10, 0, 8,
689 	},
690 
691 	{   0x1415, 0x950a, 0xffff, 0,
692 	    "Oxford Semiconductor OX16PCI954 UARTs",
693 	    DEFAULT_RCLK,
694 	    PUC_PORT_4S, 0x10, 0, 8,
695 	},
696 
697 	{   0x1415, 0x9511, 0xffff, 0,
698 	    "Oxford Semiconductor OX9160/OX16PCI954 UARTs (function 1)",
699 	    DEFAULT_RCLK,
700 	    PUC_PORT_4S, 0x10, 0, 8,
701 	},
702 
703 	{   0x1415, 0x9521, 0xffff, 0,
704 	    "Oxford Semiconductor OX16PCI952 UARTs",
705 	    DEFAULT_RCLK,
706 	    PUC_PORT_2S, 0x10, 4, 0,
707 	},
708 
709 	{   0x1415, 0x9538, 0xffff, 0,
710 	    "Oxford Semiconductor OX16PCI958 UARTs",
711 	    DEFAULT_RCLK * 10,
712 	    PUC_PORT_8S, 0x18, 0, 8,
713 	},
714 
715 	/*
716 	 * Perle boards use Oxford Semiconductor chips, but they store the
717 	 * Oxford Semiconductor device ID as a subvendor device ID and use
718 	 * their own device IDs.
719 	 */
720 
721 	{   0x155f, 0x0331, 0xffff, 0,
722 	    "Perle Speed4 LE",
723 	    DEFAULT_RCLK * 8,
724 	    PUC_PORT_4S, 0x10, 0, 8,
725 	},
726 
727 	/*
728 	 * Oxford Semiconductor PCI Express Expresso family
729 	 *
730 	 * Found in many 'native' PCI Express serial boards such as:
731 	 *
732 	 * eMegatech MP954ER4 (4 port) and MP958ER8 (8 port)
733 	 * <URL:http://www.emegatech.com.tw/pdrs232pcie.html>
734 	 *
735 	 * Lindy 51189 (4 port)
736 	 * <URL:http://www.lindy.com> <URL:http://tinyurl.com/lindy-51189>
737 	 *
738 	 * StarTech.com PEX4S952 (4 port) and PEX8S952 (8 port)
739 	 * <URL:http://www.startech.com>
740 	 */
741 
742 	{   0x1415, 0xc138, 0xffff, 0,
743 	    "Oxford Semiconductor OXPCIe952 UARTs",
744 	    DEFAULT_RCLK * 0x22,
745 	    PUC_PORT_NONSTANDARD, 0x10, 0, -1,
746 	    .config_function = puc_config_oxford_pcie
747 	},
748 
749 	{   0x1415, 0xc158, 0xffff, 0,
750 	    "Oxford Semiconductor OXPCIe952 UARTs",
751 	    DEFAULT_RCLK * 0x22,
752 	    PUC_PORT_NONSTANDARD, 0x10, 0, -1,
753 	    .config_function = puc_config_oxford_pcie
754 	},
755 
756 	{   0x1415, 0xc15d, 0xffff, 0,
757 	    "Oxford Semiconductor OXPCIe952 UARTs (function 1)",
758 	    DEFAULT_RCLK * 0x22,
759 	    PUC_PORT_NONSTANDARD, 0x10, 0, -1,
760 	    .config_function = puc_config_oxford_pcie
761 	},
762 
763 	{   0x1415, 0xc208, 0xffff, 0,
764 	    "Oxford Semiconductor OXPCIe954 UARTs",
765 	    DEFAULT_RCLK * 0x22,
766 	    PUC_PORT_NONSTANDARD, 0x10, 0, -1,
767 	    .config_function = puc_config_oxford_pcie
768 	},
769 
770 	{   0x1415, 0xc20d, 0xffff, 0,
771 	    "Oxford Semiconductor OXPCIe954 UARTs (function 1)",
772 	    DEFAULT_RCLK * 0x22,
773 	    PUC_PORT_NONSTANDARD, 0x10, 0, -1,
774 	    .config_function = puc_config_oxford_pcie
775 	},
776 
777 	{   0x1415, 0xc308, 0xffff, 0,
778 	    "Oxford Semiconductor OXPCIe958 UARTs",
779 	    DEFAULT_RCLK * 0x22,
780 	    PUC_PORT_NONSTANDARD, 0x10, 0, -1,
781 	    .config_function = puc_config_oxford_pcie
782 	},
783 
784 	{   0x1415, 0xc30d, 0xffff, 0,
785 	    "Oxford Semiconductor OXPCIe958 UARTs (function 1)",
786 	    DEFAULT_RCLK * 0x22,
787 	    PUC_PORT_NONSTANDARD, 0x10, 0, -1,
788 	    .config_function = puc_config_oxford_pcie
789 	},
790 
791 	{   0x14d2, 0x8010, 0xffff, 0,
792 	    "VScom PCI-100L",
793 	    DEFAULT_RCLK * 8,
794 	    PUC_PORT_1S, 0x14, 0, 0,
795 	},
796 
797 	{   0x14d2, 0x8020, 0xffff, 0,
798 	    "VScom PCI-200L",
799 	    DEFAULT_RCLK * 8,
800 	    PUC_PORT_2S, 0x14, 4, 0,
801 	},
802 
803 	{   0x14d2, 0x8028, 0xffff, 0,
804 	    "VScom 200Li",
805 	    DEFAULT_RCLK,
806 	    PUC_PORT_2S, 0x20, 0, 8,
807 	},
808 
809 	/*
810 	 * VScom (Titan?) PCI-800L.  More modern variant of the
811 	 * PCI-800.  Uses 6 discrete 16550 UARTs, plus another
812 	 * two of them obviously implemented as macro cells in
813 	 * the ASIC.  This causes the weird port access pattern
814 	 * below, where two of the IO port ranges each access
815 	 * one of the ASIC UARTs, and a block of IO addresses
816 	 * access the external UARTs.
817 	 */
818 	{   0x14d2, 0x8080, 0xffff, 0,
819 	    "Titan VScom PCI-800L",
820 	    DEFAULT_RCLK * 8,
821 	    PUC_PORT_8S, 0x14, -1, -1,
822 	    .config_function = puc_config_titan
823 	},
824 
825 	/*
826 	 * VScom PCI-800H. Uses 8 16950 UART, behind a PCI chips that offers
827 	 * 4 com port on PCI device 0 and 4 on PCI device 1. PCI device 0 has
828 	 * device ID 3 and PCI device 1 device ID 4.
829 	 */
830 	{   0x14d2, 0xa003, 0xffff, 0,
831 	    "Titan PCI-800H",
832 	    DEFAULT_RCLK * 8,
833 	    PUC_PORT_4S, 0x10, 0, 8,
834 	},
835 	{   0x14d2, 0xa004, 0xffff, 0,
836 	    "Titan PCI-800H",
837 	    DEFAULT_RCLK * 8,
838 	    PUC_PORT_4S, 0x10, 0, 8,
839 	},
840 
841 	{   0x14d2, 0xa005, 0xffff, 0,
842 	    "Titan PCI-200H",
843 	    DEFAULT_RCLK * 8,
844 	    PUC_PORT_2S, 0x10, 0, 8,
845 	},
846 
847 	{   0x14d2, 0xe020, 0xffff, 0,
848 	    "Titan VScom PCI-200HV2",
849 	    DEFAULT_RCLK * 8,
850 	    PUC_PORT_2S, 0x10, 4, 0,
851 	},
852 
853 	{   0x14db, 0x2130, 0xffff, 0,
854 	    "Avlab Technology, PCI IO 2S",
855 	    DEFAULT_RCLK,
856 	    PUC_PORT_2S, 0x10, 4, 0,
857 	},
858 
859 	{   0x14db, 0x2150, 0xffff, 0,
860 	    "Avlab Low Profile PCI 4 Serial",
861 	    DEFAULT_RCLK,
862 	    PUC_PORT_4S, 0x10, 4, 0,
863 	},
864 
865 	{   0x14db, 0x2152, 0xffff, 0,
866 	    "Avlab Low Profile PCI 4 Serial",
867 	    DEFAULT_RCLK,
868 	    PUC_PORT_4S, 0x10, 4, 0,
869 	},
870 
871 	{   0x1592, 0x0781, 0xffff, 0,
872 	    "Syba Tech Ltd. PCI-4S2P-550-ECP",
873 	    DEFAULT_RCLK,
874 	    PUC_PORT_4S1P, 0x10, 0, -1,
875 	    .config_function = puc_config_syba
876 	},
877 
878 	{   0x6666, 0x0001, 0xffff, 0,
879 	    "Decision Computer Inc, PCCOM 4-port serial",
880 	    DEFAULT_RCLK,
881 	    PUC_PORT_4S, 0x1c, 0, 8,
882 	},
883 
884 	{   0x6666, 0x0002, 0xffff, 0,
885 	    "Decision Computer Inc, PCCOM 8-port serial",
886 	    DEFAULT_RCLK,
887 	    PUC_PORT_8S, 0x1c, 0, 8,
888 	},
889 
890 	{   0x6666, 0x0004, 0xffff, 0,
891 	    "PCCOM dual port RS232/422/485",
892 	    DEFAULT_RCLK,
893 	    PUC_PORT_2S, 0x1c, 0, 8,
894 	},
895 
896 	{   0x9710, 0x9815, 0xffff, 0,
897 	    "NetMos NM9815 Dual 1284 Printer port",
898 	    0,
899 	    PUC_PORT_2P, 0x10, 8, 0,
900 	},
901 
902 	/*
903 	 * This is more specific than the generic NM9835 entry that follows, and
904 	 * is placed here to _prevent_ puc from claiming this single port card.
905 	 *
906 	 * uart(4) will claim this device.
907 	 */
908 	{   0x9710, 0x9835, 0x1000, 1,
909 	    "NetMos NM9835 based 1-port serial",
910 	    DEFAULT_RCLK,
911 	    PUC_PORT_1S, 0x10, 4, 0,
912 	},
913 
914 	{   0x9710, 0x9835, 0x1000, 2,
915 	    "NetMos NM9835 based 2-port serial",
916 	    DEFAULT_RCLK,
917 	    PUC_PORT_2S, 0x10, 4, 0,
918 	},
919 
920 	{   0x9710, 0x9835, 0xffff, 0,
921 	    "NetMos NM9835 Dual UART and 1284 Printer port",
922 	    DEFAULT_RCLK,
923 	    PUC_PORT_2S1P, 0x10, 4, 0,
924 	},
925 
926 	{   0x9710, 0x9845, 0x1000, 0x0006,
927 	    "NetMos NM9845 6 Port UART",
928 	    DEFAULT_RCLK,
929 	    PUC_PORT_6S, 0x10, 4, 0,
930 	},
931 
932 	{   0x9710, 0x9845, 0xffff, 0,
933 	    "NetMos NM9845 Quad UART and 1284 Printer port",
934 	    DEFAULT_RCLK,
935 	    PUC_PORT_4S1P, 0x10, 4, 0,
936 	},
937 
938 	{   0x9710, 0x9865, 0xa000, 0x3002,
939 	    "NetMos NM9865 Dual UART",
940 	    DEFAULT_RCLK,
941 	    PUC_PORT_2S, 0x10, 4, 0,
942 	},
943 
944 	{   0x9710, 0x9865, 0xa000, 0x3003,
945 	    "NetMos NM9865 Triple UART",
946 	    DEFAULT_RCLK,
947 	    PUC_PORT_3S, 0x10, 4, 0,
948 	},
949 
950 	{   0x9710, 0x9865, 0xa000, 0x3004,
951 	    "NetMos NM9865 Quad UART",
952 	    DEFAULT_RCLK,
953 	    PUC_PORT_4S, 0x10, 4, 0,0
954 	},
955 
956 	{   0x9710, 0x9865, 0xa000, 0x3011,
957 	    "NetMos NM9865 Single UART and 1284 Printer port",
958 	    DEFAULT_RCLK,
959 	    PUC_PORT_1S1P, 0x10, 4, 0,
960 	},
961 
962 	{   0x9710, 0x9865, 0xa000, 0x3012,
963 	    "NetMos NM9865 Dual UART and 1284 Printer port",
964 	    DEFAULT_RCLK,
965 	    PUC_PORT_2S1P, 0x10, 4, 0,
966 	},
967 
968 	{   0x9710, 0x9865, 0xa000, 0x3020,
969 	    "NetMos NM9865 Dual 1284 Printer port",
970 	    DEFAULT_RCLK,
971 	    PUC_PORT_2P, 0x10, 4, 0,
972 	},
973 
974 	{   0xb00c, 0x021c, 0xffff, 0,
975 	    "IC Book Labs Gunboat x4 Lite",
976 	    DEFAULT_RCLK,
977 	    PUC_PORT_4S, 0x10, 0, 8,
978 	    .config_function = puc_config_icbook
979 	},
980 
981 	{   0xb00c, 0x031c, 0xffff, 0,
982 	    "IC Book Labs Gunboat x4 Pro",
983 	    DEFAULT_RCLK,
984 	    PUC_PORT_4S, 0x10, 0, 8,
985 	    .config_function = puc_config_icbook
986 	},
987 
988 	{   0xb00c, 0x041c, 0xffff, 0,
989 	    "IC Book Labs Ironclad x8 Lite",
990 	    DEFAULT_RCLK,
991 	    PUC_PORT_8S, 0x10, 0, 8,
992 	    .config_function = puc_config_icbook
993 	},
994 
995 	{   0xb00c, 0x051c, 0xffff, 0,
996 	    "IC Book Labs Ironclad x8 Pro",
997 	    DEFAULT_RCLK,
998 	    PUC_PORT_8S, 0x10, 0, 8,
999 	    .config_function = puc_config_icbook
1000 	},
1001 
1002 	{   0xb00c, 0x081c, 0xffff, 0,
1003 	    "IC Book Labs Dreadnought x16 Pro",
1004 	    DEFAULT_RCLK * 8,
1005 	    PUC_PORT_16S, 0x10, 0, 8,
1006 	    .config_function = puc_config_icbook
1007 	},
1008 
1009 	{   0xb00c, 0x091c, 0xffff, 0,
1010 	    "IC Book Labs Dreadnought x16 Lite",
1011 	    DEFAULT_RCLK,
1012 	    PUC_PORT_16S, 0x10, 0, 8,
1013 	    .config_function = puc_config_icbook
1014 	},
1015 
1016 	{   0xb00c, 0x0a1c, 0xffff, 0,
1017 	    "IC Book Labs Gunboat x2 Low Profile",
1018 	    DEFAULT_RCLK,
1019 	    PUC_PORT_2S, 0x10, 0, 8,
1020 	},
1021 
1022 	{   0xb00c, 0x0b1c, 0xffff, 0,
1023 	    "IC Book Labs Gunboat x4 Low Profile",
1024 	    DEFAULT_RCLK,
1025 	    PUC_PORT_4S, 0x10, 0, 8,
1026 	    .config_function = puc_config_icbook
1027 	},
1028 
1029 	{ 0xffff, 0, 0xffff, 0, NULL, 0 }
1030 };
1031 
1032 static int
1033 puc_config_amc(struct puc_softc *sc, enum puc_cfg_cmd cmd, int port,
1034     intptr_t *res)
1035 {
1036 	switch (cmd) {
1037 	case PUC_CFG_GET_OFS:
1038 		*res = 8 * (port & 1);
1039 		return (0);
1040 	case PUC_CFG_GET_RID:
1041 		*res = 0x14 + (port >> 1) * 4;
1042 		return (0);
1043 	default:
1044 		break;
1045 	}
1046 	return (ENXIO);
1047 }
1048 
1049 static int
1050 puc_config_diva(struct puc_softc *sc, enum puc_cfg_cmd cmd, int port,
1051     intptr_t *res)
1052 {
1053 	const struct puc_cfg *cfg = sc->sc_cfg;
1054 
1055 	if (cmd == PUC_CFG_GET_OFS) {
1056 		if (cfg->subdevice == 0x1282)		/* Everest SP */
1057 			port <<= 1;
1058 		else if (cfg->subdevice == 0x104b)	/* Maestro SP2 */
1059 			port = (port == 3) ? 4 : port;
1060 		*res = port * 8 + ((port > 2) ? 0x18 : 0);
1061 		return (0);
1062 	}
1063 	return (ENXIO);
1064 }
1065 
1066 static int
1067 puc_config_exar(struct puc_softc *sc, enum puc_cfg_cmd cmd, int port,
1068     intptr_t *res)
1069 {
1070 	if (cmd == PUC_CFG_GET_OFS) {
1071 		*res = port * 0x200;
1072 		return (0);
1073 	}
1074 	return (ENXIO);
1075 }
1076 
1077 static int
1078 puc_config_icbook(struct puc_softc *sc, enum puc_cfg_cmd cmd, int port,
1079     intptr_t *res)
1080 {
1081 	if (cmd == PUC_CFG_GET_ILR) {
1082 		*res = PUC_ILR_DIGI;
1083 		return (0);
1084 	}
1085 	return (ENXIO);
1086 }
1087 
1088 static int
1089 puc_config_quatech(struct puc_softc *sc, enum puc_cfg_cmd cmd, int port,
1090     intptr_t *res)
1091 {
1092 	const struct puc_cfg *cfg = sc->sc_cfg;
1093 	struct puc_bar *bar;
1094 	uint8_t v0, v1;
1095 
1096 	switch (cmd) {
1097 	case PUC_CFG_SETUP:
1098 		/*
1099 		 * Check if the scratchpad register is enabled or if the
1100 		 * interrupt status and options registers are active.
1101 		 */
1102 		bar = puc_get_bar(sc, cfg->rid);
1103 		if (bar == NULL)
1104 			return (ENXIO);
1105 		/* Set DLAB in the LCR register of UART 0. */
1106 		bus_write_1(bar->b_res, 3, 0x80);
1107 		/* Write 0 to the SPR register of UART 0. */
1108 		bus_write_1(bar->b_res, 7, 0);
1109 		/* Read back the contents of the SPR register of UART 0. */
1110 		v0 = bus_read_1(bar->b_res, 7);
1111 		/* Write a specific value to the SPR register of UART 0. */
1112 		bus_write_1(bar->b_res, 7, 0x80 + -cfg->clock);
1113 		/* Read back the contents of the SPR register of UART 0. */
1114 		v1 = bus_read_1(bar->b_res, 7);
1115 		/* Clear DLAB in the LCR register of UART 0. */
1116 		bus_write_1(bar->b_res, 3, 0);
1117 		/* Save the two values read-back from the SPR register. */
1118 		sc->sc_cfg_data = (v0 << 8) | v1;
1119 		if (v0 == 0 && v1 == 0x80 + -cfg->clock) {
1120 			/*
1121 			 * The SPR register echoed the two values written
1122 			 * by us. This means that the SPAD jumper is set.
1123 			 */
1124 			device_printf(sc->sc_dev, "warning: extra features "
1125 			    "not usable -- SPAD compatibility enabled\n");
1126 			return (0);
1127 		}
1128 		if (v0 != 0) {
1129 			/*
1130 			 * The first value doesn't match. This can only mean
1131 			 * that the SPAD jumper is not set and that a non-
1132 			 * standard fixed clock multiplier jumper is set.
1133 			 */
1134 			if (bootverbose)
1135 				device_printf(sc->sc_dev, "fixed clock rate "
1136 				    "multiplier of %d\n", 1 << v0);
1137 			if (v0 < -cfg->clock)
1138 				device_printf(sc->sc_dev, "warning: "
1139 				    "suboptimal fixed clock rate multiplier "
1140 				    "setting\n");
1141 			return (0);
1142 		}
1143 		/*
1144 		 * The first value matched, but the second didn't. We know
1145 		 * that the SPAD jumper is not set. We also know that the
1146 		 * clock rate multiplier is software controlled *and* that
1147 		 * we just programmed it to the maximum allowed.
1148 		 */
1149 		if (bootverbose)
1150 			device_printf(sc->sc_dev, "clock rate multiplier of "
1151 			    "%d selected\n", 1 << -cfg->clock);
1152 		return (0);
1153 	case PUC_CFG_GET_CLOCK:
1154 		v0 = (sc->sc_cfg_data >> 8) & 0xff;
1155 		v1 = sc->sc_cfg_data & 0xff;
1156 		if (v0 == 0 && v1 == 0x80 + -cfg->clock) {
1157 			/*
1158 			 * XXX With the SPAD jumper applied, there's no
1159 			 * easy way of knowing if there's also a clock
1160 			 * rate multiplier jumper installed. Let's hope
1161 			 * not...
1162 			 */
1163 			*res = DEFAULT_RCLK;
1164 		} else if (v0 == 0) {
1165 			/*
1166 			 * No clock rate multiplier jumper installed,
1167 			 * so we programmed the board with the maximum
1168 			 * multiplier allowed as given to us in the
1169 			 * clock field of the config record (negated).
1170 			 */
1171 			*res = DEFAULT_RCLK << -cfg->clock;
1172 		} else
1173 			*res = DEFAULT_RCLK << v0;
1174 		return (0);
1175 	case PUC_CFG_GET_ILR:
1176 		v0 = (sc->sc_cfg_data >> 8) & 0xff;
1177 		v1 = sc->sc_cfg_data & 0xff;
1178 		*res = (v0 == 0 && v1 == 0x80 + -cfg->clock)
1179 		    ? PUC_ILR_NONE : PUC_ILR_QUATECH;
1180 		return (0);
1181 	default:
1182 		break;
1183 	}
1184 	return (ENXIO);
1185 }
1186 
1187 static int
1188 puc_config_syba(struct puc_softc *sc, enum puc_cfg_cmd cmd, int port,
1189     intptr_t *res)
1190 {
1191 	static int base[] = { 0x251, 0x3f0, 0 };
1192 	const struct puc_cfg *cfg = sc->sc_cfg;
1193 	struct puc_bar *bar;
1194 	int efir, idx, ofs;
1195 	uint8_t v;
1196 
1197 	switch (cmd) {
1198 	case PUC_CFG_SETUP:
1199 		bar = puc_get_bar(sc, cfg->rid);
1200 		if (bar == NULL)
1201 			return (ENXIO);
1202 
1203 		/* configure both W83877TFs */
1204 		bus_write_1(bar->b_res, 0x250, 0x89);
1205 		bus_write_1(bar->b_res, 0x3f0, 0x87);
1206 		bus_write_1(bar->b_res, 0x3f0, 0x87);
1207 		idx = 0;
1208 		while (base[idx] != 0) {
1209 			efir = base[idx];
1210 			bus_write_1(bar->b_res, efir, 0x09);
1211 			v = bus_read_1(bar->b_res, efir + 1);
1212 			if ((v & 0x0f) != 0x0c)
1213 				return (ENXIO);
1214 			bus_write_1(bar->b_res, efir, 0x16);
1215 			v = bus_read_1(bar->b_res, efir + 1);
1216 			bus_write_1(bar->b_res, efir, 0x16);
1217 			bus_write_1(bar->b_res, efir + 1, v | 0x04);
1218 			bus_write_1(bar->b_res, efir, 0x16);
1219 			bus_write_1(bar->b_res, efir + 1, v & ~0x04);
1220 			ofs = base[idx] & 0x300;
1221 			bus_write_1(bar->b_res, efir, 0x23);
1222 			bus_write_1(bar->b_res, efir + 1, (ofs + 0x78) >> 2);
1223 			bus_write_1(bar->b_res, efir, 0x24);
1224 			bus_write_1(bar->b_res, efir + 1, (ofs + 0xf8) >> 2);
1225 			bus_write_1(bar->b_res, efir, 0x25);
1226 			bus_write_1(bar->b_res, efir + 1, (ofs + 0xe8) >> 2);
1227 			bus_write_1(bar->b_res, efir, 0x17);
1228 			bus_write_1(bar->b_res, efir + 1, 0x03);
1229 			bus_write_1(bar->b_res, efir, 0x28);
1230 			bus_write_1(bar->b_res, efir + 1, 0x43);
1231 			idx++;
1232 		}
1233 		bus_write_1(bar->b_res, 0x250, 0xaa);
1234 		bus_write_1(bar->b_res, 0x3f0, 0xaa);
1235 		return (0);
1236 	case PUC_CFG_GET_OFS:
1237 		switch (port) {
1238 		case 0:
1239 			*res = 0x2f8;
1240 			return (0);
1241 		case 1:
1242 			*res = 0x2e8;
1243 			return (0);
1244 		case 2:
1245 			*res = 0x3f8;
1246 			return (0);
1247 		case 3:
1248 			*res = 0x3e8;
1249 			return (0);
1250 		case 4:
1251 			*res = 0x278;
1252 			return (0);
1253 		}
1254 		break;
1255 	default:
1256 		break;
1257 	}
1258 	return (ENXIO);
1259 }
1260 
1261 static int
1262 puc_config_siig(struct puc_softc *sc, enum puc_cfg_cmd cmd, int port,
1263     intptr_t *res)
1264 {
1265 	const struct puc_cfg *cfg = sc->sc_cfg;
1266 
1267 	switch (cmd) {
1268 	case PUC_CFG_GET_OFS:
1269 		if (cfg->ports == PUC_PORT_8S) {
1270 			*res = (port > 4) ? 8 * (port - 4) : 0;
1271 			return (0);
1272 		}
1273 		break;
1274 	case PUC_CFG_GET_RID:
1275 		if (cfg->ports == PUC_PORT_8S) {
1276 			*res = 0x10 + ((port > 4) ? 0x10 : 4 * port);
1277 			return (0);
1278 		}
1279 		if (cfg->ports == PUC_PORT_2S1P) {
1280 			switch (port) {
1281 			case 0: *res = 0x10; return (0);
1282 			case 1: *res = 0x14; return (0);
1283 			case 2: *res = 0x1c; return (0);
1284 			}
1285 		}
1286 		break;
1287 	default:
1288 		break;
1289 	}
1290 	return (ENXIO);
1291 }
1292 
1293 static int
1294 puc_config_timedia(struct puc_softc *sc, enum puc_cfg_cmd cmd, int port,
1295     intptr_t *res)
1296 {
1297 	static uint16_t dual[] = {
1298 	    0x0002, 0x4036, 0x4037, 0x4038, 0x4078, 0x4079, 0x4085,
1299 	    0x4088, 0x4089, 0x5037, 0x5078, 0x5079, 0x5085, 0x6079,
1300 	    0x7079, 0x8079, 0x8137, 0x8138, 0x8237, 0x8238, 0x9079,
1301 	    0x9137, 0x9138, 0x9237, 0x9238, 0xA079, 0xB079, 0xC079,
1302 	    0xD079, 0
1303 	};
1304 	static uint16_t quad[] = {
1305 	    0x4055, 0x4056, 0x4095, 0x4096, 0x5056, 0x8156, 0x8157,
1306 	    0x8256, 0x8257, 0x9056, 0x9156, 0x9157, 0x9158, 0x9159,
1307 	    0x9256, 0x9257, 0xA056, 0xA157, 0xA158, 0xA159, 0xB056,
1308 	    0xB157, 0
1309 	};
1310 	static uint16_t octa[] = {
1311 	    0x4065, 0x4066, 0x5065, 0x5066, 0x8166, 0x9066, 0x9166,
1312 	    0x9167, 0x9168, 0xA066, 0xA167, 0xA168, 0
1313 	};
1314 	static struct {
1315 		int ports;
1316 		uint16_t *ids;
1317 	} subdevs[] = {
1318 	    { 2, dual },
1319 	    { 4, quad },
1320 	    { 8, octa },
1321 	    { 0, NULL }
1322 	};
1323 	static char desc[64];
1324 	int dev, id;
1325 	uint16_t subdev;
1326 
1327 	switch (cmd) {
1328 	case PUC_CFG_GET_CLOCK:
1329 		if (port < 2)
1330 			*res = DEFAULT_RCLK * 8;
1331 		else
1332 			*res = DEFAULT_RCLK;
1333 		return (0);
1334 	case PUC_CFG_GET_DESC:
1335 		snprintf(desc, sizeof(desc),
1336 		    "Timedia technology %d Port Serial", (int)sc->sc_cfg_data);
1337 		*res = (intptr_t)desc;
1338 		return (0);
1339 	case PUC_CFG_GET_NPORTS:
1340 		subdev = pci_get_subdevice(sc->sc_dev);
1341 		dev = 0;
1342 		while (subdevs[dev].ports != 0) {
1343 			id = 0;
1344 			while (subdevs[dev].ids[id] != 0) {
1345 				if (subdev == subdevs[dev].ids[id]) {
1346 					sc->sc_cfg_data = subdevs[dev].ports;
1347 					*res = sc->sc_cfg_data;
1348 					return (0);
1349 				}
1350 				id++;
1351 			}
1352 			dev++;
1353 		}
1354 		return (ENXIO);
1355 	case PUC_CFG_GET_OFS:
1356 		*res = (port == 1 || port == 3) ? 8 : 0;
1357 		return (0);
1358 	case PUC_CFG_GET_RID:
1359 		*res = 0x10 + ((port > 3) ? port - 2 : port >> 1) * 4;
1360 		return (0);
1361 	case PUC_CFG_GET_TYPE:
1362 		*res = PUC_TYPE_SERIAL;
1363 		return (0);
1364 	default:
1365 		break;
1366 	}
1367 	return (ENXIO);
1368 }
1369 
1370 static int
1371 puc_config_oxford_pcie(struct puc_softc *sc, enum puc_cfg_cmd cmd, int port,
1372     intptr_t *res)
1373 {
1374 	const struct puc_cfg *cfg = sc->sc_cfg;
1375 	int idx;
1376 	struct puc_bar *bar;
1377 	uint8_t value;
1378 
1379 	switch (cmd) {
1380 	case PUC_CFG_SETUP:
1381 		device_printf(sc->sc_dev, "%d UARTs detected\n",
1382 			sc->sc_nports);
1383 
1384 		/* Set UARTs to enhanced mode */
1385 		bar = puc_get_bar(sc, cfg->rid);
1386 		if (bar == NULL)
1387 			return (ENXIO);
1388 		for (idx = 0; idx < sc->sc_nports; idx++) {
1389 			value = bus_read_1(bar->b_res, 0x1000 + (idx << 9) +
1390 			    0x92);
1391 			bus_write_1(bar->b_res, 0x1000 + (idx << 9) + 0x92,
1392 			    value | 0x10);
1393 		}
1394 		return (0);
1395 	case PUC_CFG_GET_LEN:
1396 		*res = 0x200;
1397 		return (0);
1398 	case PUC_CFG_GET_NPORTS:
1399 		/*
1400 		 * Check if we are being called from puc_bfe_attach()
1401 		 * or puc_bfe_probe(). If puc_bfe_probe(), we cannot
1402 		 * puc_get_bar(), so we return a value of 16. This has cosmetic
1403 		 * side-effects at worst; in PUC_CFG_GET_DESC,
1404 		 * (int)sc->sc_cfg_data will not contain the true number of
1405 		 * ports in PUC_CFG_GET_DESC, but we are not implementing that
1406 		 * call for this device family anyway.
1407 		 *
1408 		 * The check is for initialisation of sc->sc_bar[idx], which is
1409 		 * only done in puc_bfe_attach().
1410 		 */
1411 		idx = 0;
1412 		do {
1413 			if (sc->sc_bar[idx++].b_rid != -1) {
1414 				sc->sc_cfg_data = 16;
1415 				*res = sc->sc_cfg_data;
1416 				return (0);
1417 			}
1418 		} while (idx < PUC_PCI_BARS);
1419 
1420 		bar = puc_get_bar(sc, cfg->rid);
1421 		if (bar == NULL)
1422 			return (ENXIO);
1423 
1424 		value = bus_read_1(bar->b_res, 0x04);
1425 		if (value == 0)
1426 			return (ENXIO);
1427 
1428 		sc->sc_cfg_data = value;
1429 		*res = sc->sc_cfg_data;
1430 		return (0);
1431 	case PUC_CFG_GET_OFS:
1432 		*res = 0x1000 + (port << 9);
1433 		return (0);
1434 	case PUC_CFG_GET_TYPE:
1435 		*res = PUC_TYPE_SERIAL;
1436 		return (0);
1437 	default:
1438 		break;
1439 	}
1440 	return (ENXIO);
1441 }
1442 
1443 static int
1444 puc_config_titan(struct puc_softc *sc, enum puc_cfg_cmd cmd, int port,
1445     intptr_t *res)
1446 {
1447 	switch (cmd) {
1448 	case PUC_CFG_GET_OFS:
1449 		*res = (port < 3) ? 0 : (port - 2) << 3;
1450 		return (0);
1451 	case PUC_CFG_GET_RID:
1452 		*res = 0x14 + ((port >= 2) ? 0x0c : port << 2);
1453 		return (0);
1454 	default:
1455 		break;
1456 	}
1457 	return (ENXIO);
1458 }
1459