Home | History | Annotate | Line # | Download | only in isapnp
isapnpdevs.c revision 1.3
      1  1.1  christos /*	$NetBSD: isapnpdevs.c,v 1.3 1998/08/07 00:53:23 matt Exp $	*/
      2  1.1  christos 
      3  1.1  christos /*
      4  1.1  christos  * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.
      5  1.1  christos  *
      6  1.1  christos  * generated from:
      7  1.2  drochner  *	NetBSD: isapnpdevs,v 1.2 1998/07/30 09:45:16 drochner Exp
      8  1.1  christos  */
      9  1.1  christos 
     10  1.1  christos /*
     11  1.1  christos  * Copyright (c) 1998, Christos Zoulas
     12  1.1  christos  * All rights reserved.
     13  1.1  christos  *
     14  1.1  christos  * Redistribution and use in source and binary forms, with or without
     15  1.1  christos  * modification, are permitted provided that the following conditions
     16  1.1  christos  * are met:
     17  1.1  christos  * 1. Redistributions of source code must retain the above copyright
     18  1.1  christos  *    notice, this list of conditions and the following disclaimer.
     19  1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     20  1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     21  1.1  christos  *    documentation and/or other materials provided with the distribution.
     22  1.1  christos  * 3. All advertising materials mentioning features or use of this software
     23  1.1  christos  *    must display the following acknowledgement:
     24  1.1  christos  *      This product includes software developed by Christos Zoulas
     25  1.1  christos  *	for the NetBSD Project.
     26  1.1  christos  * 4. The name of the author may not be used to endorse or promote products
     27  1.1  christos  *    derived from this software without specific prior written permission
     28  1.1  christos  *
     29  1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     30  1.1  christos  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     31  1.1  christos  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     32  1.1  christos  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     33  1.1  christos  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     34  1.1  christos  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     35  1.1  christos  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     36  1.1  christos  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     37  1.1  christos  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     38  1.1  christos  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     39  1.1  christos  */
     40  1.1  christos #include <sys/param.h>
     41  1.1  christos #include <dev/isapnp/isapnpdevs.h>
     42  1.1  christos 
     43  1.1  christos 
     44  1.1  christos /* Adaptec SCSI */
     45  1.1  christos static const char *isapnp_aic_devlogic[] = {
     46  1.1  christos 	"ADP1520",	/* Adaptec AHA-1520B */
     47  1.1  christos 	NULL
     48  1.1  christos };
     49  1.1  christos static const char *isapnp_aic_devcompat[] = {
     50  1.1  christos 	NULL
     51  1.1  christos };
     52  1.1  christos const struct isapnp_devinfo isapnp_aic_devinfo = {
     53  1.1  christos 	isapnp_aic_devlogic, isapnp_aic_devcompat
     54  1.1  christos };
     55  1.1  christos 
     56  1.1  christos /* National Semiconductor Serial */
     57  1.1  christos static const char *isapnp_com_devlogic[] = {
     58  1.1  christos 	"BDP3336",	/* Best Data Prods. 336F */
     59  1.1  christos 	"OZO8039",	/* Zoom 56k flex */
     60  1.1  christos 	"BRI1400",	/* Boca 33.6 PnP */
     61  1.2  drochner 	"BRIB400",	/* Boca 56k PnP */
     62  1.1  christos 	"ROK0010",	/* Rockwell ? */
     63  1.1  christos 	"USR2070",	/* USR Sportster 56k */
     64  1.1  christos 	NULL
     65  1.1  christos };
     66  1.1  christos static const char *isapnp_com_devcompat[] = {
     67  1.1  christos 	"PNP0500",	/* Generic 8250/16450 */
     68  1.1  christos 	"PNP0501",	/* Generic 16550A */
     69  1.1  christos 	NULL
     70  1.1  christos };
     71  1.1  christos const struct isapnp_devinfo isapnp_com_devinfo = {
     72  1.1  christos 	isapnp_com_devlogic, isapnp_com_devcompat
     73  1.1  christos };
     74  1.1  christos 
     75  1.1  christos /* 3Com 3CXXX Ethernet */
     76  1.1  christos static const char *isapnp_ep_devlogic[] = {
     77  1.1  christos 	"TCM5090",	/* 3Com 3c509B */
     78  1.1  christos 	"TCM5091",	/* 3Com 3c509B-1 */
     79  1.1  christos 	"TCM5094",	/* 3Com 3c509B-4 */
     80  1.1  christos 	"TCM5095",	/* 3Com 3c509B-5 */
     81  1.1  christos 	"TCM5098",	/* 3Com 3c509B-8 */
     82  1.1  christos 	NULL
     83  1.1  christos };
     84  1.1  christos static const char *isapnp_ep_devcompat[] = {
     85  1.1  christos 	NULL
     86  1.1  christos };
     87  1.1  christos const struct isapnp_devinfo isapnp_ep_devinfo = {
     88  1.1  christos 	isapnp_ep_devlogic, isapnp_ep_devcompat
     89  1.1  christos };
     90  1.1  christos 
     91  1.3      matt /* ESS Audio Drive */
     92  1.3      matt static const char *isapnp_ess_devlogic[] = {
     93  1.3      matt 	"ESS1868",	/* ESS1868 */
     94  1.3      matt 	"ESS1869",	/* ESS1869 */
     95  1.3      matt 	NULL
     96  1.3      matt };
     97  1.3      matt static const char *isapnp_ess_devcompat[] = {
     98  1.3      matt 	NULL
     99  1.3      matt };
    100  1.3      matt const struct isapnp_devinfo isapnp_ess_devinfo = {
    101  1.3      matt 	isapnp_ess_devlogic, isapnp_ess_devcompat
    102  1.3      matt };
    103  1.3      matt 
    104  1.1  christos /* Generic Joystick */
    105  1.1  christos static const char *isapnp_joy_devlogic[] = {
    106  1.1  christos 	"CSCA801",	/* Terratec EWS64XL */
    107  1.1  christos 	"CTL7002",	/* Creative Vibra16CL */
    108  1.1  christos 	"ESS0001",	/* ESS1868 */
    109  1.1  christos 	"OPT0001",	/* OPTi Audio 16 */
    110  1.1  christos 	"PNPB02F",	/* XXX broken GUS PnP */
    111  1.1  christos 	NULL
    112  1.1  christos };
    113  1.1  christos static const char *isapnp_joy_devcompat[] = {
    114  1.1  christos 	"PNPB02F",	/* generic */
    115  1.1  christos 	NULL
    116  1.1  christos };
    117  1.1  christos const struct isapnp_devinfo isapnp_joy_devinfo = {
    118  1.1  christos 	isapnp_joy_devlogic, isapnp_joy_devcompat
    119  1.1  christos };
    120  1.1  christos 
    121  1.1  christos /* Gravis Ultrasound */
    122  1.1  christos static const char *isapnp_gus_devlogic[] = {
    123  1.1  christos 	"GRV0000",	/* Gravis Ultrasound */
    124  1.1  christos 	NULL
    125  1.1  christos };
    126  1.1  christos static const char *isapnp_gus_devcompat[] = {
    127  1.1  christos 	NULL
    128  1.1  christos };
    129  1.1  christos const struct isapnp_devinfo isapnp_gus_devinfo = {
    130  1.1  christos 	isapnp_gus_devlogic, isapnp_gus_devcompat
    131  1.1  christos };
    132  1.1  christos 
    133  1.1  christos /* Lance Ethernet */
    134  1.1  christos static const char *isapnp_le_devlogic[] = {
    135  1.1  christos 	"TKN0010",	/* Lance Ethernet */
    136  1.1  christos 	NULL
    137  1.1  christos };
    138  1.1  christos static const char *isapnp_le_devcompat[] = {
    139  1.1  christos 	NULL
    140  1.1  christos };
    141  1.1  christos const struct isapnp_devinfo isapnp_le_devinfo = {
    142  1.1  christos 	isapnp_le_devlogic, isapnp_le_devcompat
    143  1.1  christos };
    144  1.1  christos 
    145  1.1  christos /* NE2000 Ethernet */
    146  1.1  christos static const char *isapnp_ne_devlogic[] = {
    147  1.1  christos 	NULL
    148  1.1  christos };
    149  1.1  christos static const char *isapnp_ne_devcompat[] = {
    150  1.1  christos 	"PNP80D6",	/* Digital DE305 ISAPnP */
    151  1.1  christos 	NULL
    152  1.1  christos };
    153  1.1  christos const struct isapnp_devinfo isapnp_ne_devinfo = {
    154  1.1  christos 	isapnp_ne_devlogic, isapnp_ne_devcompat
    155  1.1  christos };
    156  1.1  christos 
    157  1.1  christos /* PCMCIA bridge */
    158  1.1  christos static const char *isapnp_pcic_devlogic[] = {
    159  1.1  christos 	NULL
    160  1.1  christos };
    161  1.1  christos static const char *isapnp_pcic_devcompat[] = {
    162  1.1  christos 	"PNP0E00",	/* PCIC Compatible PCMCIA Bridge */
    163  1.1  christos 	NULL
    164  1.1  christos };
    165  1.1  christos const struct isapnp_devinfo isapnp_pcic_devinfo = {
    166  1.1  christos 	isapnp_pcic_devlogic, isapnp_pcic_devcompat
    167  1.1  christos };
    168  1.1  christos 
    169  1.1  christos /* Creative Soundblaster */
    170  1.1  christos static const char *isapnp_sb_devlogic[] = {
    171  1.1  christos 	"ADS7150",	/* AD1815 */
    172  1.1  christos 	"ADS7180",	/* AD1816 */
    173  1.1  christos 	"CTL0001",	/* SB */
    174  1.1  christos 	"CTL0031",	/* SB AWE32 */
    175  1.1  christos 	"CTL0041",	/* SB16 PnP (CT4131) */
    176  1.1  christos 	"CTL0043",	/* SB16 PnP (CT4170) */
    177  1.1  christos 	"CTL0042",	/* SB AWE64 Value */
    178  1.1  christos 	"CTL0044",	/* SB AWE64 Gold */
    179  1.1  christos 	"CTL0045",	/* SB AWE64 Value */
    180  1.1  christos 	"OPT9250",	/* Televideo card, Opti */
    181  1.1  christos 	NULL
    182  1.1  christos };
    183  1.1  christos static const char *isapnp_sb_devcompat[] = {
    184  1.1  christos 	"PNPB000",	/* Generic SB 1.5 */
    185  1.1  christos 	"PNPB001",	/* Generic SB 2.0 */
    186  1.1  christos 	"PNPB002",	/* Generic SB Pro */
    187  1.1  christos 	"PNPB003",	/* Generic SB 16 */
    188  1.1  christos 	NULL
    189  1.1  christos };
    190  1.1  christos const struct isapnp_devinfo isapnp_sb_devinfo = {
    191  1.1  christos 	isapnp_sb_devlogic, isapnp_sb_devcompat
    192  1.1  christos };
    193  1.1  christos 
    194  1.1  christos /* Western Digital Disk Controller */
    195  1.1  christos static const char *isapnp_wdc_devlogic[] = {
    196  1.1  christos 	NULL
    197  1.1  christos };
    198  1.1  christos static const char *isapnp_wdc_devcompat[] = {
    199  1.1  christos 	"PNP0600",	/* Western Digital Compatible Controller */
    200  1.1  christos 	NULL
    201  1.1  christos };
    202  1.1  christos const struct isapnp_devinfo isapnp_wdc_devinfo = {
    203  1.1  christos 	isapnp_wdc_devlogic, isapnp_wdc_devcompat
    204  1.1  christos };
    205  1.1  christos 
    206  1.1  christos /* Microsoft Sound System */
    207  1.1  christos static const char *isapnp_wss_devlogic[] = {
    208  1.1  christos 	"CSC0000",	/* Windows Sound System */
    209  1.1  christos 	NULL
    210  1.1  christos };
    211  1.1  christos static const char *isapnp_wss_devcompat[] = {
    212  1.1  christos 	NULL
    213  1.1  christos };
    214  1.1  christos const struct isapnp_devinfo isapnp_wss_devinfo = {
    215  1.1  christos 	isapnp_wss_devlogic, isapnp_wss_devcompat
    216  1.1  christos };
    217  1.1  christos 
    218  1.1  christos /* Yamaha Sound */
    219  1.1  christos static const char *isapnp_ym_devlogic[] = {
    220  1.2  drochner 	"YMH0021",	/* OPL3-SA2, OPL3-SA3 */
    221  1.1  christos 	NULL
    222  1.1  christos };
    223  1.1  christos static const char *isapnp_ym_devcompat[] = {
    224  1.1  christos 	NULL
    225  1.1  christos };
    226  1.1  christos const struct isapnp_devinfo isapnp_ym_devinfo = {
    227  1.1  christos 	isapnp_ym_devlogic, isapnp_ym_devcompat
    228  1.1  christos };
    229  1.1  christos 
    230