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