Home | History | Annotate | Line # | Download | only in isapnp
isapnpdevs.c revision 1.26
      1  1.22      dean /*	$NetBSD: isapnpdevs.c,v 1.26 1999/03/22 22:36:49 bad 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.26       bad  *	NetBSD: isapnpdevs,v 1.23 1999/03/22 22:36:10 bad Exp
      8   1.1  christos  */
      9   1.1  christos 
     10   1.5  christos /*-
     11  1.25   mycroft  * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
     12   1.1  christos  * All rights reserved.
     13   1.1  christos  *
     14   1.5  christos  * This code is derived from software contributed to The NetBSD Foundation
     15   1.5  christos  * by Christos Zoulas.
     16   1.5  christos  *
     17   1.1  christos  * Redistribution and use in source and binary forms, with or without
     18   1.1  christos  * modification, are permitted provided that the following conditions
     19   1.1  christos  * are met:
     20   1.1  christos  * 1. Redistributions of source code must retain the above copyright
     21   1.1  christos  *    notice, this list of conditions and the following disclaimer.
     22   1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     23   1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     24   1.1  christos  *    documentation and/or other materials provided with the distribution.
     25   1.1  christos  * 3. All advertising materials mentioning features or use of this software
     26   1.1  christos  *    must display the following acknowledgement:
     27   1.5  christos  *        This product includes software developed by the NetBSD
     28   1.5  christos  *        Foundation, Inc. and its contributors.
     29   1.5  christos  * 4. Neither the name of The NetBSD Foundation nor the names of its
     30   1.5  christos  *    contributors may be used to endorse or promote products derived
     31   1.5  christos  *    from this software without specific prior written permission.
     32   1.1  christos  *
     33   1.5  christos  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     34   1.5  christos  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     35   1.5  christos  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     36   1.5  christos  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     37   1.5  christos  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     38   1.5  christos  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     39   1.5  christos  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     40   1.5  christos  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     41   1.5  christos  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     42   1.5  christos  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     43   1.5  christos  * POSSIBILITY OF SUCH DAMAGE.
     44   1.1  christos  */
     45   1.1  christos #include <sys/param.h>
     46   1.1  christos #include <dev/isapnp/isapnpdevs.h>
     47   1.1  christos 
     48  1.10  christos 
     49  1.10  christos /* Adaptec SCSI */
     50  1.25   mycroft static const struct isapnp_matchinfo isapnp_aha_devlogic[] = {
     51  1.25   mycroft 	{"ADP1542", 0},	/* Adaptec AHA-1542CP */
     52  1.25   mycroft };
     53  1.25   mycroft static const struct isapnp_matchinfo isapnp_aha_devcompat[] = {
     54  1.25   mycroft 	{"PNP00A0", 0},	/* Adaptec AHA-1542CP */
     55  1.10  christos };
     56  1.10  christos const struct isapnp_devinfo isapnp_aha_devinfo = {
     57  1.25   mycroft 	isapnp_aha_devlogic, 1,
     58  1.25   mycroft 	isapnp_aha_devcompat, 1,
     59  1.10  christos };
     60   1.1  christos 
     61   1.1  christos /* Adaptec SCSI */
     62  1.25   mycroft static const struct isapnp_matchinfo isapnp_aic_devlogic[] = {
     63  1.25   mycroft 	{"ADP1520", 0},	/* Adaptec AHA-1520B */
     64  1.25   mycroft 	{"ADP1505", 0},	/* Adaptec AVA-1505A */
     65  1.25   mycroft };
     66  1.25   mycroft static const struct isapnp_matchinfo isapnp_aic_devcompat[] = {
     67  1.25   mycroft 	{"ADP1530", 0},	/* (Adaptec AVA-1505A) */
     68   1.1  christos };
     69   1.1  christos const struct isapnp_devinfo isapnp_aic_devinfo = {
     70  1.25   mycroft 	isapnp_aic_devlogic, 2,
     71  1.25   mycroft 	isapnp_aic_devcompat, 1,
     72   1.1  christos };
     73   1.1  christos 
     74   1.1  christos /* National Semiconductor Serial */
     75  1.25   mycroft static const struct isapnp_matchinfo isapnp_com_devlogic[] = {
     76  1.25   mycroft 	{"BDP3336", 0},	/* Best Data Prods. 336F */
     77  1.25   mycroft 	{"OZO8039", 0},	/* Zoom 56k flex */
     78  1.25   mycroft 	{"BRI1400", 0},	/* Boca 33.6 PnP */
     79  1.25   mycroft 	{"BRIB400", 0},	/* Boca 56k PnP */
     80  1.25   mycroft 	{"ROK0010", 0},	/* Rockwell ? */
     81  1.25   mycroft 	{"USR0004", 0},	/* USR Sportster 14.4k */
     82  1.25   mycroft 	{"USR0006", 0},	/* USR Sportster 33.6k */
     83  1.25   mycroft 	{"USR2070", 0},	/* USR Sportster 56k */
     84  1.25   mycroft 	{"USR3031", 0},	/* USR 56k Faxmodem */
     85  1.25   mycroft 	{"ZTIF761", 0},	/* Zoom ComStar 33.6 */
     86  1.25   mycroft 	{"CIR3000", 0},	/* Cirrus Logic V43 */
     87  1.25   mycroft 	{"MOT0000", 0},	/* Motorola ModemSurfr */
     88  1.25   mycroft };
     89  1.25   mycroft static const struct isapnp_matchinfo isapnp_com_devcompat[] = {
     90  1.25   mycroft 	{"PNP0500", 0},	/* Generic 8250/16450 */
     91  1.25   mycroft 	{"PNP0501", 0},	/* Generic 16550A */
     92   1.1  christos };
     93   1.1  christos const struct isapnp_devinfo isapnp_com_devinfo = {
     94  1.25   mycroft 	isapnp_com_devlogic, 12,
     95  1.25   mycroft 	isapnp_com_devcompat, 2,
     96   1.1  christos };
     97   1.1  christos 
     98   1.1  christos /* 3Com 3CXXX Ethernet */
     99  1.25   mycroft static const struct isapnp_matchinfo isapnp_ep_devlogic[] = {
    100  1.25   mycroft 	{"TCM5090", 0},	/* 3Com 3c509B */
    101  1.25   mycroft 	{"TCM5091", 0},	/* 3Com 3c509B-1 */
    102  1.25   mycroft 	{"TCM5094", 0},	/* 3Com 3c509B-4 */
    103  1.25   mycroft 	{"TCM5095", 0},	/* 3Com 3c509B-5 */
    104  1.25   mycroft 	{"TCM5098", 0},	/* 3Com 3c509B-8 */
    105   1.1  christos };
    106   1.1  christos const struct isapnp_devinfo isapnp_ep_devinfo = {
    107  1.25   mycroft 	isapnp_ep_devlogic, 5,
    108  1.25   mycroft 	NULL, 0,
    109   1.1  christos };
    110   1.1  christos 
    111   1.3      matt /* ESS Audio Drive */
    112   1.3      matt const struct isapnp_devinfo isapnp_ess_devinfo = {
    113  1.25   mycroft 	NULL, 0,
    114  1.25   mycroft 	NULL, 0,
    115   1.3      matt };
    116   1.3      matt 
    117   1.1  christos /* Generic Joystick */
    118  1.25   mycroft static const struct isapnp_matchinfo isapnp_joy_devlogic[] = {
    119  1.25   mycroft 	{"AZT0003", 0},	/* Aztech AZT2320 GAME PORT */
    120  1.25   mycroft 	{"CSC0001", 0},	/* CS4235 */
    121  1.25   mycroft 	{"CSCA801", 0},	/* Terratec EWS64XL */
    122  1.25   mycroft 	{"CTL7002", 0},	/* Creative Vibra16CL */
    123  1.25   mycroft 	{"ESS0001", 0},	/* ESS1868 */
    124  1.25   mycroft 	{"OPT0001", 0},	/* OPTi Audio 16 */
    125  1.25   mycroft 	{"PNPB02F", 0},	/* XXX broken GUS PnP */
    126  1.25   mycroft 	{"ASB16FD", 0},	/* AdLib NSC 16 PNP */
    127  1.25   mycroft };
    128  1.25   mycroft static const struct isapnp_matchinfo isapnp_joy_devcompat[] = {
    129  1.25   mycroft 	{"PNPB02F", 0},	/* generic */
    130   1.1  christos };
    131   1.1  christos const struct isapnp_devinfo isapnp_joy_devinfo = {
    132  1.25   mycroft 	isapnp_joy_devlogic, 8,
    133  1.25   mycroft 	isapnp_joy_devcompat, 1,
    134   1.1  christos };
    135   1.1  christos 
    136   1.1  christos /* Gravis Ultrasound */
    137  1.25   mycroft static const struct isapnp_matchinfo isapnp_gus_devlogic[] = {
    138  1.25   mycroft 	{"GRV0000", 0},	/* Gravis Ultrasound */
    139   1.1  christos };
    140   1.1  christos const struct isapnp_devinfo isapnp_gus_devinfo = {
    141  1.25   mycroft 	isapnp_gus_devlogic, 1,
    142  1.25   mycroft 	NULL, 0,
    143   1.1  christos };
    144   1.1  christos 
    145   1.1  christos /* Lance Ethernet */
    146  1.25   mycroft static const struct isapnp_matchinfo isapnp_le_devlogic[] = {
    147  1.25   mycroft 	{"TKN0010", 0},	/* Lance Ethernet on TEKNOR board */
    148  1.25   mycroft };
    149  1.25   mycroft const struct isapnp_devinfo isapnp_le_devinfo = {
    150  1.25   mycroft 	isapnp_le_devlogic, 1,
    151  1.25   mycroft 	NULL, 0,
    152   1.1  christos };
    153  1.25   mycroft 
    154  1.25   mycroft /* MPU-401 MIDI UART */
    155  1.25   mycroft static const struct isapnp_matchinfo isapnp_mpu_devlogic[] = {
    156  1.25   mycroft 	{"AZT0002", 0},	/* Aztech AZT2320 MPU401 MIDI */
    157   1.1  christos };
    158  1.25   mycroft const struct isapnp_devinfo isapnp_mpu_devinfo = {
    159  1.25   mycroft 	isapnp_mpu_devlogic, 1,
    160  1.25   mycroft 	NULL, 0,
    161   1.1  christos };
    162   1.1  christos 
    163   1.1  christos /* NE2000 Ethernet */
    164  1.25   mycroft static const struct isapnp_matchinfo isapnp_ne_devlogic[] = {
    165  1.25   mycroft 	{"@@@1980", 0},	/* OvisLink LE-8019R */
    166  1.25   mycroft };
    167  1.25   mycroft static const struct isapnp_matchinfo isapnp_ne_devcompat[] = {
    168  1.25   mycroft 	{"PNP80D6", 0},	/* Digital DE305 ISAPnP */
    169   1.1  christos };
    170   1.1  christos const struct isapnp_devinfo isapnp_ne_devinfo = {
    171  1.25   mycroft 	isapnp_ne_devlogic, 1,
    172  1.25   mycroft 	isapnp_ne_devcompat, 1,
    173   1.1  christos };
    174   1.1  christos 
    175   1.1  christos /* PCMCIA bridge */
    176  1.25   mycroft static const struct isapnp_matchinfo isapnp_pcic_devlogic[] = {
    177  1.25   mycroft 	{"SCM0469", 0},	/* SCM SwapBox Plug and Play */
    178  1.25   mycroft 	{"AEI0218", 0},	/* Actiontec PnP PCMCIA Adapter */
    179  1.25   mycroft };
    180  1.25   mycroft static const struct isapnp_matchinfo isapnp_pcic_devcompat[] = {
    181  1.25   mycroft 	{"PNP0E00", 0},	/* PCIC Compatible PCMCIA Bridge */
    182   1.1  christos };
    183   1.1  christos const struct isapnp_devinfo isapnp_pcic_devinfo = {
    184  1.25   mycroft 	isapnp_pcic_devlogic, 2,
    185  1.25   mycroft 	isapnp_pcic_devcompat, 1,
    186   1.1  christos };
    187   1.1  christos 
    188   1.1  christos /* Creative Soundblaster */
    189  1.25   mycroft static const struct isapnp_matchinfo isapnp_sb_devlogic[] = {
    190  1.25   mycroft 	{"ADS7150", 0},	/* AD1815 */
    191  1.25   mycroft 	{"ADS7180", 0},	/* AD1816 */
    192  1.25   mycroft 	{"CTL0001", 0},	/* SB */
    193  1.25   mycroft 	{"CTL0031", 0},	/* SB AWE32 */
    194  1.25   mycroft 	{"CTL0041", 0},	/* SB16 PnP (CT4131) */
    195  1.25   mycroft 	{"CTL0043", 0},	/* SB16 PnP (CT4170) */
    196  1.25   mycroft 	{"CTL0042", 0},	/* SB AWE64 Value */
    197  1.25   mycroft 	{"CTL0044", 0},	/* SB AWE64 Gold */
    198  1.25   mycroft 	{"CTL0045", 0},	/* SB AWE64 Value */
    199  1.25   mycroft 	{"OPT9250", 0},	/* Televideo card, Opti */
    200  1.25   mycroft 	{"@X@0001", 0},	/* CMI8330. Audio Adapter */
    201  1.25   mycroft 	{"ESS1868", 0},	/* ESS1868 */
    202  1.25   mycroft 	{"ESS1869", 0},	/* ESS1869 */
    203  1.25   mycroft };
    204  1.25   mycroft static const struct isapnp_matchinfo isapnp_sb_devcompat[] = {
    205  1.25   mycroft 	{"PNPB000", 0},	/* Generic SB 1.5 */
    206  1.25   mycroft 	{"PNPB001", 0},	/* Generic SB 2.0 */
    207  1.25   mycroft 	{"PNPB002", 0},	/* Generic SB Pro */
    208  1.25   mycroft 	{"PNPB003", 0},	/* Generic SB 16 */
    209   1.1  christos };
    210   1.1  christos const struct isapnp_devinfo isapnp_sb_devinfo = {
    211  1.25   mycroft 	isapnp_sb_devlogic, 13,
    212  1.25   mycroft 	isapnp_sb_devcompat, 4,
    213  1.26       bad };
    214  1.26       bad 
    215  1.26       bad /* TROPIC Token-Ring */
    216  1.26       bad static const struct isapnp_matchinfo isapnp_tr_devlogic[] = {
    217  1.26       bad 	{"IBM0000", 0},	/* IBM TROPIC Token-Ring */
    218  1.26       bad 	{"TCM3190", 0},	/* 3Com TokenLink Velocity ISA */
    219  1.26       bad };
    220  1.26       bad const struct isapnp_devinfo isapnp_tr_devinfo = {
    221  1.26       bad 	isapnp_tr_devlogic, 2,
    222  1.26       bad 	NULL, 0,
    223   1.1  christos };
    224   1.1  christos 
    225   1.1  christos /* Western Digital Disk Controller */
    226  1.25   mycroft static const struct isapnp_matchinfo isapnp_wdc_devlogic[] = {
    227  1.25   mycroft 	{"AZT0000", 0},	/* Aztech AZT2320 IDE CDROM */
    228  1.25   mycroft 	{"OPT0007", 0},	/* OPTi Audio 16 IDE controller */
    229  1.25   mycroft };
    230  1.25   mycroft static const struct isapnp_matchinfo isapnp_wdc_devcompat[] = {
    231  1.25   mycroft 	{"PNP0600", 0},	/* Western Digital Compatible Controller */
    232   1.1  christos };
    233   1.1  christos const struct isapnp_devinfo isapnp_wdc_devinfo = {
    234  1.25   mycroft 	isapnp_wdc_devlogic, 2,
    235  1.25   mycroft 	isapnp_wdc_devcompat, 1,
    236   1.1  christos };
    237   1.1  christos 
    238   1.1  christos /* Microsoft Sound System */
    239  1.25   mycroft static const struct isapnp_matchinfo isapnp_wss_devlogic[] = {
    240  1.25   mycroft 	{"AZT0001", 1},	/* Aztech AZT2320 AUDIO */
    241  1.25   mycroft 	{"CSC0000", 0},	/* Windows Sound System */
    242  1.25   mycroft 	{"CSCA800", 0},	/* Terratec EWS64 CoDec */
    243  1.25   mycroft 	{"ASB1611", 0},	/* AdLib NSC 16 PNP */
    244   1.1  christos };
    245   1.1  christos const struct isapnp_devinfo isapnp_wss_devinfo = {
    246  1.25   mycroft 	isapnp_wss_devlogic, 4,
    247  1.25   mycroft 	NULL, 0,
    248   1.1  christos };
    249   1.1  christos 
    250   1.1  christos /* Yamaha Sound */
    251  1.25   mycroft static const struct isapnp_matchinfo isapnp_ym_devlogic[] = {
    252  1.25   mycroft 	{"YMH0021", 0},	/* OPL3-SA2, OPL3-SA3 */
    253   1.1  christos };
    254   1.1  christos const struct isapnp_devinfo isapnp_ym_devinfo = {
    255  1.25   mycroft 	isapnp_ym_devlogic, 1,
    256  1.25   mycroft 	NULL, 0,
    257   1.1  christos };
    258   1.1  christos 
    259