Home | History | Annotate | Line # | Download | only in pcmcia
if_ne_pcmcia.c revision 1.54
      1 /*	$NetBSD: if_ne_pcmcia.c,v 1.54 2000/02/09 14:54:53 enami Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1997 Marc Horowitz.  All rights reserved.
      5  *
      6  * Redistribution and use in source and binary forms, with or without
      7  * modification, are permitted provided that the following conditions
      8  * are met:
      9  * 1. Redistributions of source code must retain the above copyright
     10  *    notice, this list of conditions and the following disclaimer.
     11  * 2. Redistributions in binary form must reproduce the above copyright
     12  *    notice, this list of conditions and the following disclaimer in the
     13  *    documentation and/or other materials provided with the distribution.
     14  * 3. All advertising materials mentioning features or use of this software
     15  *    must display the following acknowledgement:
     16  *	This product includes software developed by Marc Horowitz.
     17  * 4. The name of the author may not be used to endorse or promote products
     18  *    derived from this software without specific prior written permission.
     19  *
     20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30  */
     31 
     32 #include <sys/param.h>
     33 #include <sys/systm.h>
     34 #include <sys/select.h>
     35 #include <sys/device.h>
     36 #include <sys/socket.h>
     37 
     38 #include <net/if_types.h>
     39 #include <net/if.h>
     40 #include <net/if_media.h>
     41 #include <net/if_ether.h>
     42 
     43 #include <machine/bus.h>
     44 #include <machine/intr.h>
     45 
     46 #include <dev/pcmcia/pcmciareg.h>
     47 #include <dev/pcmcia/pcmciavar.h>
     48 #include <dev/pcmcia/pcmciadevs.h>
     49 
     50 #include <dev/ic/dp8390reg.h>
     51 #include <dev/ic/dp8390var.h>
     52 
     53 #include <dev/ic/ne2000reg.h>
     54 #include <dev/ic/ne2000var.h>
     55 
     56 #include <dev/ic/rtl80x9reg.h>
     57 #include <dev/ic/rtl80x9var.h>
     58 
     59 int	ne_pcmcia_match __P((struct device *, struct cfdata *, void *));
     60 void	ne_pcmcia_attach __P((struct device *, struct device *, void *));
     61 int	ne_pcmcia_detach __P((struct device *, int));
     62 
     63 int	ne_pcmcia_enable __P((struct dp8390_softc *));
     64 void	ne_pcmcia_disable __P((struct dp8390_softc *));
     65 
     66 struct ne_pcmcia_softc {
     67 	struct ne2000_softc sc_ne2000;		/* real "ne2000" softc */
     68 
     69 	/* PCMCIA-specific goo */
     70 	struct pcmcia_io_handle sc_pcioh;	/* PCMCIA i/o information */
     71 	int sc_asic_io_window;			/* i/o window for ASIC */
     72 	int sc_nic_io_window;			/* i/o window for NIC */
     73 	struct pcmcia_function *sc_pf;		/* our PCMCIA function */
     74 	void *sc_ih;				/* interrupt handle */
     75 };
     76 
     77 u_int8_t *
     78 	ne_pcmcia_get_enaddr __P((struct ne_pcmcia_softc *, int,
     79 	    u_int8_t [ETHER_ADDR_LEN]));
     80 u_int8_t *
     81 	ne_pcmcia_dl10019_get_enaddr __P((struct ne_pcmcia_softc *,
     82 	    u_int8_t [ETHER_ADDR_LEN]));
     83 
     84 struct cfattach ne_pcmcia_ca = {
     85 	sizeof(struct ne_pcmcia_softc), ne_pcmcia_match, ne_pcmcia_attach,
     86 	    ne_pcmcia_detach, dp8390_activate
     87 };
     88 
     89 struct ne2000dev {
     90     char *name;
     91     int32_t manufacturer;
     92     int32_t product;
     93     char *cis_info[4];
     94     int function;
     95     int enet_maddr;
     96     unsigned char enet_vendor[3];
     97     int flags;
     98 #define	NE2000DVF_DL10019	0x0001		/* chip is D-Link DL10019 */
     99 } ne2000devs[] = {
    100     { PCMCIA_STR_AMBICOM_AMB8002T,
    101       PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
    102       PCMCIA_CIS_AMBICOM_AMB8002T,
    103       0, -1, { 0x00, 0x10, 0x7a } },
    104 
    105     { PCMCIA_STR_PREMAX_PE200,
    106       PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
    107       PCMCIA_CIS_PREMAX_PE200,
    108       0, 0x07f0, { 0x00, 0x20, 0xe0 } },
    109 
    110     { PCMCIA_STR_DIGITAL_DEPCMXX,
    111       PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
    112       PCMCIA_CIS_DIGITAL_DEPCMXX,
    113       0, 0x0ff0, { 0x00, 0x00, 0xe8 } },
    114 
    115     { PCMCIA_STR_PLANET_SMARTCOM2000,
    116       PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
    117       PCMCIA_CIS_PLANET_SMARTCOM2000,
    118       0, 0xff0, { 0x00, 0x00, 0xe8 } },
    119 
    120     { PCMCIA_STR_DLINK_DE660,
    121       PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
    122       PCMCIA_CIS_DLINK_DE660,
    123       0, -1, { 0x00, 0x80, 0xc8 } },
    124 
    125     { PCMCIA_STR_RPTI_EP401,
    126       PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
    127       PCMCIA_CIS_RPTI_EP401,
    128       0, -1, { 0x00, 0x40, 0x95 } },
    129 
    130     { PCMCIA_STR_ACCTON_EN2212,
    131       PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
    132       PCMCIA_CIS_ACCTON_EN2212,
    133       0, 0x0ff0, { 0x00, 0x00, 0xe8 } },
    134 
    135     { PCMCIA_STR_SVEC_COMBOCARD,
    136       PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
    137       PCMCIA_CIS_SVEC_COMBOCARD,
    138       0, -1, { 0x00, 0xe0, 0x98 } },
    139 
    140     { PCMCIA_STR_SVEC_LANCARD,
    141       PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
    142       PCMCIA_CIS_SVEC_LANCARD,
    143       0, 0x7f0, { 0x00, 0xc0, 0x6c } },
    144 
    145     { PCMCIA_STR_EPSON_EEN10B,
    146       PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_EPSON_EEN10B,
    147       PCMCIA_CIS_EPSON_EEN10B,
    148       0, 0xff0, { 0x00, 0x00, 0x48 } },
    149 
    150     /*
    151      * You have to add new entries which contains
    152      * PCMCIA_VENDOR_INVALID and/or PCMCIA_PRODUCT_INVALID
    153      * in front of this comment.
    154      *
    155      * There are cards which use a generic vendor and product id but needs
    156      * a different handling depending on the cis_info, so ne2000_match
    157      * needs a table where the exceptions comes first and then the normal
    158      * product and vendor entries.
    159      */
    160 
    161     { PCMCIA_STR_IBM_INFOMOVER,
    162       PCMCIA_VENDOR_IBM, PCMCIA_PRODUCT_IBM_INFOMOVER,
    163       PCMCIA_CIS_IBM_INFOMOVER,
    164       0, 0x0ff0, { 0x08, 0x00, 0x5a } },
    165 
    166     { PCMCIA_STR_LINKSYS_ECARD_1,
    167       PCMCIA_VENDOR_LINKSYS, PCMCIA_PRODUCT_LINKSYS_ECARD_1,
    168       PCMCIA_CIS_LINKSYS_ECARD_1,
    169       0, -1, { 0x00, 0x80, 0xc8 } },
    170 
    171     { PCMCIA_STR_PLANEX_FNW3600T,
    172       PCMCIA_VENDOR_LINKSYS, PCMCIA_PRODUCT_LINKSYS_COMBO_ECARD,
    173       PCMCIA_CIS_PLANEX_FNW3600T,
    174       0, -1, { 0x00, 0x90, 0xcc }, NE2000DVF_DL10019 },
    175 
    176     { PCMCIA_STR_SVEC_PN650TX,
    177       PCMCIA_VENDOR_LINKSYS, PCMCIA_PRODUCT_LINKSYS_COMBO_ECARD,
    178       PCMCIA_CIS_SVEC_PN650TX,
    179       0, -1, { 0x00, 0xe0, 0x98 }, NE2000DVF_DL10019 },
    180 
    181     { PCMCIA_STR_LINKSYS_ETHERFAST,
    182       PCMCIA_VENDOR_LINKSYS, PCMCIA_PRODUCT_LINKSYS_ETHERFAST,
    183       PCMCIA_CIS_LINKSYS_ETHERFAST,
    184       0, -1, { 0x00, 0x80, 0xc8 }, NE2000DVF_DL10019 },
    185 
    186     { PCMCIA_STR_LINKSYS_COMBO_ECARD,
    187       PCMCIA_VENDOR_LINKSYS, PCMCIA_PRODUCT_LINKSYS_COMBO_ECARD,
    188       PCMCIA_CIS_LINKSYS_COMBO_ECARD,
    189       0, -1, { 0x00, 0x80, 0xc8 } },
    190 
    191     { PCMCIA_STR_LINKSYS_TRUST_COMBO_ECARD,
    192       PCMCIA_VENDOR_LINKSYS, PCMCIA_PRODUCT_LINKSYS_TRUST_COMBO_ECARD,
    193       PCMCIA_CIS_LINKSYS_TRUST_COMBO_ECARD,
    194       0, 0x0120, { 0x20, 0x04, 0x49 } },
    195 
    196     /* Although the comments above say to put VENDOR/PRODUCT INVALID IDs
    197        above this list, we need to keep this one below the ECARD_1, or else
    198        both will match the same more-generic entry rather than the more
    199        specific one above with proper vendor and product IDs. */
    200     { PCMCIA_STR_LINKSYS_ECARD_2,
    201       PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
    202       PCMCIA_CIS_LINKSYS_ECARD_2,
    203       0, -1, { 0x00, 0x80, 0xc8 } },
    204 
    205     /*
    206      * D-Link DE-650 has many minor versions:
    207      *
    208      *   CIS information          Manufacturer Product  Note
    209      * 1 "D-Link, DE-650"             INVALID  INVALID  white card
    210      * 2 "D-Link, DE-650, Ver 01.00"  INVALID  INVALID  became bare metal
    211      * 3 "D-Link, DE-650, Ver 01.00"   0x149    0x265   minor change in look
    212      * 4 "D-Link, DE-650, Ver 01.00"   0x149    0x265   collision LED added
    213      *
    214      * While the 1st and the 2nd types should use the "D-Link DE-650" entry,
    215      * the 3rd and the 4th types should use the "Linksys EtherCard" entry.
    216      * Therefore, this enty must be below the LINKSYS_ECARD_1.  --itohy
    217      */
    218     { PCMCIA_STR_DLINK_DE650,
    219       PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
    220       PCMCIA_CIS_DLINK_DE650,
    221       0, 0x0040, { 0x00, 0x80, 0xc8 } },
    222 
    223     /*
    224      * IO-DATA PCLA/TE and later version of PCLA/T has valid
    225      * vendor/product ID and it is possible to read MAC address
    226      * using standard I/O ports.  It also read from CIS offset 0x01c0.
    227      * On the other hand, earlier version of PCLA/T doesn't have valid
    228      * vendor/product ID and MAC address must be read from CIS offset
    229      * 0x0ff0 (i.e., usual ne2000 way to read it doesn't work).
    230      * And CIS information of earlier and later version of PCLA/T are
    231      * same except fourth element.  So, for now, we place the entry for
    232      * PCLA/TE (and later version of PCLA/T) followed by entry
    233      * for the earlier version of PCLA/T (or, modify to match all CIS
    234      * information and have three or more individual entries).
    235      */
    236     { PCMCIA_STR_IODATA_PCLATE,
    237       PCMCIA_VENDOR_IODATA, PCMCIA_PRODUCT_IODATA_PCLATE,
    238       PCMCIA_CIS_IODATA_PCLATE,
    239       0, -1, { 0x00, 0xa0, 0xb0 } },
    240 
    241     /*
    242      * This entry should be placed after above PCLA-TE entry.
    243      * See above comments for detail.
    244      */
    245     { PCMCIA_STR_IODATA_PCLAT,
    246       PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
    247       PCMCIA_CIS_IODATA_PCLAT,
    248       0, 0x0ff0, { 0x00, 0xa0, 0xb0 } },
    249 
    250     { PCMCIA_STR_DAYNA_COMMUNICARD_E_1,
    251       PCMCIA_VENDOR_DAYNA, PCMCIA_PRODUCT_DAYNA_COMMUNICARD_E_1,
    252       PCMCIA_CIS_DAYNA_COMMUNICARD_E_1,
    253       0, 0x0110, { 0x00, 0x80, 0x19 } },
    254 
    255     { PCMCIA_STR_DAYNA_COMMUNICARD_E_2,
    256       PCMCIA_VENDOR_DAYNA, PCMCIA_PRODUCT_DAYNA_COMMUNICARD_E_2,
    257       PCMCIA_CIS_DAYNA_COMMUNICARD_E_2,
    258       0, -1, { 0x00, 0x80, 0x19 } },
    259 
    260     { PCMCIA_STR_COREGA_ETHER_PCC_T,
    261       PCMCIA_VENDOR_COREGA, PCMCIA_PRODUCT_COREGA_ETHER_PCC_T,
    262       PCMCIA_CIS_COREGA_ETHER_PCC_T,
    263       0, -1, { 0x00, 0x00, 0xf4 } },
    264 
    265     { PCMCIA_STR_COREGA_ETHER_II_PCC_T,
    266       PCMCIA_VENDOR_COREGA, PCMCIA_PRODUCT_COREGA_ETHER_II_PCC_T,
    267       PCMCIA_CIS_COREGA_ETHER_II_PCC_T,
    268       0, -1, { 0x00, 0x00, 0xf4 } },
    269 
    270     { PCMCIA_STR_COREGA_FAST_ETHER_PCC_TX,
    271       PCMCIA_VENDOR_COREGA, PCMCIA_PRODUCT_COREGA_FAST_ETHER_PCC_TX,
    272       PCMCIA_CIS_COREGA_FAST_ETHER_PCC_TX,
    273       0, -1, { 0x00, 0x00, 0xf4 }, NE2000DVF_DL10019 },
    274 
    275     { PCMCIA_STR_COMPEX_LINKPORT_ENET_B,
    276       PCMCIA_VENDOR_COMPEX, PCMCIA_PRODUCT_COMPEX_LINKPORT_ENET_B,
    277       PCMCIA_CIS_COMPEX_LINKPORT_ENET_B,
    278       0, 0x01c0, { 0x00, 0xa0, 0x0c } },
    279 
    280     { PCMCIA_STR_SMC_EZCARD,
    281       PCMCIA_VENDOR_SMC, PCMCIA_PRODUCT_SMC_EZCARD,
    282       PCMCIA_CIS_SMC_EZCARD,
    283       0, 0x01c0, { 0x00, 0xe0, 0x29 } },
    284 
    285     { PCMCIA_STR_SOCEKT_LP_ETHER_CF,
    286       PCMCIA_VENDOR_SOCKET, PCMCIA_PRODUCT_SOCEKT_LP_ETHER_CF,
    287       PCMCIA_CIS_SOCEKT_LP_ETHER_CF,
    288       0, -1, { 0x00, 0xc0, 0x1b} },
    289 
    290     { PCMCIA_STR_XIRCOM_CFE_10,
    291       PCMCIA_VENDOR_XIRCOM, PCMCIA_PRODUCT_XIRCOM_CFE_10,
    292       PCMCIA_CIS_XIRCOM_CFE_10,
    293       0, -1, { 0x00, 0x10, 0xa4 } },
    294 
    295 #if 0
    296     /* the rest of these are stolen from the linux pcnet pcmcia device
    297        driver.  Since I don't know the manfid or cis info strings for
    298        any of them, they're not compiled in until I do. */
    299     { "APEX MultiCard",
    300       0x0000, 0x0000, NULL, NULL, 0,
    301       0x03f4, { 0x00, 0x20, 0xe5 } },
    302     { "ASANTE FriendlyNet",
    303       0x0000, 0x0000, NULL, NULL, 0,
    304       0x4910, { 0x00, 0x00, 0x94 } },
    305     { "Danpex EN-6200P2",
    306       0x0000, 0x0000, NULL, NULL, 0,
    307       0x0110, { 0x00, 0x40, 0xc7 } },
    308     { "DataTrek NetCard",
    309       0x0000, 0x0000, NULL, NULL, 0,
    310       0x0ff0, { 0x00, 0x20, 0xe8 } },
    311     { "Dayna CommuniCard E",
    312       0x0000, 0x0000, NULL, NULL, 0,
    313       0x0110, { 0x00, 0x80, 0x19 } },
    314     { "EP-210 Ethernet",
    315       0x0000, 0x0000, NULL, NULL, 0,
    316       0x0110, { 0x00, 0x40, 0x33 } },
    317     { "ELECOM Laneed LD-CDWA",
    318       0x0000, 0x0000, NULL, NULL, 0,
    319       0x00b8, { 0x08, 0x00, 0x42 } },
    320     { "Grey Cell GCS2220",
    321       0x0000, 0x0000, NULL, NULL, 0,
    322       0x0000, { 0x00, 0x47, 0x43 } },
    323     { "Hypertec Ethernet",
    324       0x0000, 0x0000, NULL, NULL, 0,
    325       0x01c0, { 0x00, 0x40, 0x4c } },
    326     { "IBM CCAE",
    327       0x0000, 0x0000, NULL, NULL, 0,
    328       0x0ff0, { 0x08, 0x00, 0x5a } },
    329     { "IBM CCAE",
    330       0x0000, 0x0000, NULL, NULL, 0,
    331       0x0ff0, { 0x00, 0x04, 0xac } },
    332     { "IBM CCAE",
    333       0x0000, 0x0000, NULL, NULL, 0,
    334       0x0ff0, { 0x00, 0x06, 0x29 } },
    335     { "IBM FME",
    336       0x0000, 0x0000, NULL, NULL, 0,
    337       0x0374, { 0x00, 0x04, 0xac } },
    338     { "IBM FME",
    339       0x0000, 0x0000, NULL, NULL, 0,
    340       0x0374, { 0x08, 0x00, 0x5a } },
    341     { "Katron PE-520",
    342       0x0000, 0x0000, NULL, NULL, 0,
    343       0x0110, { 0x00, 0x40, 0xf6 } },
    344     { "Kingston KNE-PCM/x",
    345       0x0000, 0x0000, NULL, NULL, 0,
    346       0x0ff0, { 0x00, 0xc0, 0xf0 } },
    347     { "Kingston KNE-PCM/x",
    348       0x0000, 0x0000, NULL, NULL, 0,
    349       0x0ff0, { 0xe2, 0x0c, 0x0f } },
    350     { "Kingston KNE-PC2",
    351       0x0000, 0x0000, NULL, NULL, 0,
    352       0x0180, { 0x00, 0xc0, 0xf0 } },
    353     { "Longshine LCS-8534",
    354       0x0000, 0x0000, NULL, NULL, 0,
    355       0x0000, { 0x08, 0x00, 0x00 } },
    356     { "Maxtech PCN2000",
    357       0x0000, 0x0000, NULL, NULL, 0,
    358       0x5000, { 0x00, 0x00, 0xe8 } },
    359     { "NDC Instant-Link",
    360       0x0000, 0x0000, NULL, NULL, 0,
    361       0x003a, { 0x00, 0x80, 0xc6 } },
    362     { "NE2000 Compatible",
    363       0x0000, 0x0000, NULL, NULL, 0,
    364       0x0ff0, { 0x00, 0xa0, 0x0c } },
    365     { "Network General Sniffer",
    366       0x0000, 0x0000, NULL, NULL, 0,
    367       0x0ff0, { 0x00, 0x00, 0x65 } },
    368     { "Panasonic VEL211",
    369       0x0000, 0x0000, NULL, NULL, 0,
    370       0x0ff0, { 0x00, 0x80, 0x45 } },
    371     { "SCM Ethernet",
    372       0x0000, 0x0000, NULL, NULL, 0,
    373       0x0ff0, { 0x00, 0x20, 0xcb } },
    374     { "Socket EA",
    375       0x0000, 0x0000, NULL, NULL, 0,
    376       0x4000, { 0x00, 0xc0, 0x1b } },
    377     { "Volktek NPL-402CT",
    378       0x0000, 0x0000, NULL, NULL, 0,
    379       0x0060, { 0x00, 0x40, 0x05 } },
    380 #endif
    381 
    382     { PCMCIA_STR_ALLIEDTELESIS_LA_PCM,
    383       PCMCIA_VENDOR_ALLIEDTELESIS, PCMCIA_PRODUCT_ALLIEDTELESIS_LA_PCM,
    384       PCMCIA_CIS_ALLIEDTELESIS_LA_PCM,
    385       0, 0x0ff0, { 0x00, 0x00, 0xf4 } },
    386 };
    387 
    388 #define	NE2000_NDEVS	(sizeof(ne2000devs) / sizeof(ne2000devs[0]))
    389 
    390 #define ne2000_match(card, fct, n) \
    391 ((((((card)->manufacturer != PCMCIA_VENDOR_INVALID) && \
    392     ((card)->manufacturer == ne2000devs[(n)].manufacturer) && \
    393     ((card)->product != PCMCIA_PRODUCT_INVALID) && \
    394     ((card)->product == ne2000devs[(n)].product)) || \
    395    ((ne2000devs[(n)].cis_info[0]) && (ne2000devs[(n)].cis_info[1]) && \
    396     (strcmp((card)->cis1_info[0], ne2000devs[(n)].cis_info[0]) == 0) && \
    397     (strcmp((card)->cis1_info[1], ne2000devs[(n)].cis_info[1]) == 0))) && \
    398   ((fct) == ne2000devs[(n)].function))? \
    399  &ne2000devs[(n)]:NULL)
    400 
    401 int
    402 ne_pcmcia_match(parent, match, aux)
    403 	struct device *parent;
    404 	struct cfdata *match;
    405 	void *aux;
    406 {
    407 	struct pcmcia_attach_args *pa = aux;
    408 	int i;
    409 
    410 	for (i = 0; i < NE2000_NDEVS; i++) {
    411 		if (ne2000_match(pa->card, pa->pf->number, i))
    412 			return (1);
    413 	}
    414 
    415 	return (0);
    416 }
    417 
    418 void
    419 ne_pcmcia_attach(parent, self, aux)
    420 	struct device *parent, *self;
    421 	void *aux;
    422 {
    423 	struct ne_pcmcia_softc *psc = (void *) self;
    424 	struct ne2000_softc *nsc = &psc->sc_ne2000;
    425 	struct dp8390_softc *dsc = &nsc->sc_dp8390;
    426 	struct pcmcia_attach_args *pa = aux;
    427 	struct pcmcia_config_entry *cfe;
    428 	struct ne2000dev *ne_dev;
    429 	int i;
    430 	u_int8_t myea[6], *enaddr = NULL;
    431 	void (*npp_init_media) __P((struct dp8390_softc *, int **,
    432 	    int *, int *));
    433 	int *media, nmedia, defmedia;
    434 	const char *typestr = "";
    435 
    436 	npp_init_media = NULL;
    437 	media = NULL;
    438 	nmedia = defmedia = 0;
    439 
    440 	psc->sc_pf = pa->pf;
    441 	cfe = pa->pf->cfe_head.sqh_first;
    442 
    443 #if 0
    444 	/*
    445 	 * Some ne2000 driver's claim to have memory; others don't.
    446 	 * Since I don't care, I don't check.
    447 	 */
    448 
    449 	if (cfe->num_memspace != 1) {
    450 		printf(": unexpected number of memory spaces "
    451 		    " %d should be 1\n", cfe->num_memspace);
    452 		goto fail_1;
    453 	}
    454 #endif
    455 
    456 	if (cfe->num_iospace == 1) {
    457 		if (cfe->iospace[0].length != NE2000_NPORTS) {
    458 			printf(": unexpected I/O space configuration"
    459 			    " (continued)\n%s", dsc->sc_dev.dv_xname);
    460 		}
    461 	} else if (cfe->num_iospace == 2) {
    462 		/*
    463 		 * Some cards report a separate space for NIC and ASIC.
    464 		 * This make some sense, but we must allocate a single
    465 		 * NE2000_NPORTS-sized chunk, due to brain damaged
    466 		 * address decoders on some of these cards.
    467 		 */
    468 		if ((cfe->iospace[0].length + cfe->iospace[1].length) !=
    469 		    NE2000_NPORTS) {
    470 			printf(": unexpected I/O space configuration\n");
    471 			goto fail_1;
    472 		}
    473 	} else {
    474 		printf(": unexpected number of i/o spaces %d"
    475 		    " should be 1 or 2\n", cfe->num_iospace);
    476 		goto fail_1;
    477 	}
    478 
    479 	if (pcmcia_io_alloc(pa->pf, cfe->iospace[0].start, NE2000_NPORTS,
    480 	    NE2000_NPORTS, &psc->sc_pcioh)) {
    481 		printf(": can't alloc i/o space\n");
    482 		goto fail_1;
    483 	}
    484 
    485 	dsc->sc_regt = psc->sc_pcioh.iot;
    486 	dsc->sc_regh = psc->sc_pcioh.ioh;
    487 
    488 	nsc->sc_asict = psc->sc_pcioh.iot;
    489 	if (bus_space_subregion(dsc->sc_regt, dsc->sc_regh,
    490 	    NE2000_ASIC_OFFSET, NE2000_ASIC_NPORTS,
    491 	    &nsc->sc_asich)) {
    492 		printf(": can't get subregion for asic\n");
    493 		goto fail_2;
    494 	}
    495 
    496 	/* Set up power management hooks. */
    497 	dsc->sc_enable = ne_pcmcia_enable;
    498 	dsc->sc_disable = ne_pcmcia_disable;
    499 
    500 	/* Enable the card. */
    501 	pcmcia_function_init(pa->pf, cfe);
    502 	if (pcmcia_function_enable(pa->pf)) {
    503 		printf(": function enable failed\n");
    504 		goto fail_2;
    505 	}
    506 
    507 	/* some cards claim to be io16, but they're lying. */
    508 	if (pcmcia_io_map(pa->pf, PCMCIA_WIDTH_IO8,
    509 	    NE2000_NIC_OFFSET, NE2000_NIC_NPORTS,
    510 	    &psc->sc_pcioh, &psc->sc_nic_io_window)) {
    511 		printf(": can't map NIC i/o space\n");
    512 		goto fail_3;
    513 	}
    514 
    515 	if (pcmcia_io_map(pa->pf, PCMCIA_WIDTH_IO16,
    516 	    NE2000_ASIC_OFFSET, NE2000_ASIC_NPORTS,
    517 	    &psc->sc_pcioh, &psc->sc_asic_io_window)) {
    518 		printf(": can't map ASIC i/o space\n");
    519 		goto fail_4;
    520 	}
    521 
    522 	printf("\n");
    523 
    524 	/*
    525 	 * Read the station address from the board.
    526 	 */
    527 	i = 0;
    528 again:
    529 	for (; i < NE2000_NDEVS; i++) {
    530 		ne_dev = ne2000_match(pa->card, pa->pf->number, i);
    531 		if (ne_dev != NULL) {
    532 			if (ne_dev->enet_maddr >= 0) {
    533 				enaddr = ne_pcmcia_get_enaddr(psc,
    534 				    ne_dev->enet_maddr, myea);
    535 				if (enaddr == NULL)
    536 					continue;
    537 			}
    538 			break;
    539 		}
    540 	}
    541 	if (i == NE2000_NDEVS) {
    542 		printf("%s: can't match ethernet vendor code\n",
    543 		    dsc->sc_dev.dv_xname);
    544 		goto fail_5;
    545 	}
    546 
    547 	if ((ne_dev->flags & NE2000DVF_DL10019) != 0) {
    548 		enaddr = ne_pcmcia_dl10019_get_enaddr(psc, myea);
    549 		if (enaddr == NULL) {
    550 			++i;
    551 			goto again;
    552 		}
    553 		nsc->sc_type = NE2000_TYPE_DL10019;
    554 		typestr = " (DL10019)";
    555 	}
    556 
    557 	if (enaddr != NULL) {
    558 		/*
    559 		 * Make sure this is what we expect.
    560 		 */
    561 		if (enaddr[0] != ne_dev->enet_vendor[0] ||
    562 		    enaddr[1] != ne_dev->enet_vendor[1] ||
    563 		    enaddr[2] != ne_dev->enet_vendor[2]) {
    564 			++i;
    565 			goto again;
    566 		}
    567 	}
    568 
    569 	/*
    570 	 * Check for a RealTek 8019.
    571 	 */
    572 	bus_space_write_1(dsc->sc_regt, dsc->sc_regh, ED_P0_CR,
    573 	    ED_CR_PAGE_0 | ED_CR_STP);
    574 	if (bus_space_read_1(dsc->sc_regt, dsc->sc_regh, NERTL_RTL0_8019ID0)
    575 		== RTL0_8019ID0 &&
    576 	    bus_space_read_1(dsc->sc_regt, dsc->sc_regh, NERTL_RTL0_8019ID1)
    577 		== RTL0_8019ID1) {
    578 		typestr = " (RTL8019)";
    579 		npp_init_media = rtl80x9_init_media;
    580 		dsc->sc_mediachange = rtl80x9_mediachange;
    581 		dsc->sc_mediastatus = rtl80x9_mediastatus;
    582 		dsc->init_card = rtl80x9_init_card;
    583 	}
    584 
    585 	printf("%s: %s%s Ethernet\n", dsc->sc_dev.dv_xname, ne_dev->name,
    586 	    typestr);
    587 
    588 	/* Initialize media, if we have it. */
    589 	if (npp_init_media != NULL)
    590 		(*npp_init_media)(dsc, &media, &nmedia, &defmedia);
    591 
    592 	if (ne2000_attach(nsc, enaddr, media, nmedia, defmedia))
    593 		goto fail_5;
    594 
    595 	pcmcia_function_disable(pa->pf);
    596 	return;
    597 
    598  fail_5:
    599 	/* Unmap ASIC i/o windows. */
    600 	pcmcia_io_unmap(psc->sc_pf, psc->sc_asic_io_window);
    601 
    602  fail_4:
    603 	/* Unmap NIC i/o windows. */
    604 	pcmcia_io_unmap(psc->sc_pf, psc->sc_nic_io_window);
    605 
    606  fail_3:
    607 	pcmcia_function_disable(pa->pf);
    608 
    609  fail_2:
    610 	/* Free our i/o space. */
    611 	pcmcia_io_free(psc->sc_pf, &psc->sc_pcioh);
    612 
    613  fail_1:
    614 	psc->sc_nic_io_window = -1;
    615 }
    616 
    617 int
    618 ne_pcmcia_detach(self, flags)
    619 	struct device *self;
    620 	int flags;
    621 {
    622 	struct ne_pcmcia_softc *psc = (struct ne_pcmcia_softc *)self;
    623 	int error;
    624 
    625 	if (psc->sc_nic_io_window == -1)
    626 		/* Nothing to detach. */
    627 		return (0);
    628 
    629 	error = ne2000_detach(&psc->sc_ne2000, flags);
    630 	if (error != 0)
    631 		return (error);
    632 
    633 	/* Unmap our i/o windows. */
    634 	pcmcia_io_unmap(psc->sc_pf, psc->sc_asic_io_window);
    635 	pcmcia_io_unmap(psc->sc_pf, psc->sc_nic_io_window);
    636 
    637 	/* Free our i/o space. */
    638 	pcmcia_io_free(psc->sc_pf, &psc->sc_pcioh);
    639 
    640 	return (0);
    641 }
    642 
    643 int
    644 ne_pcmcia_enable(dsc)
    645 	struct dp8390_softc *dsc;
    646 {
    647 	struct ne_pcmcia_softc *psc = (struct ne_pcmcia_softc *)dsc;
    648 
    649 	/* set up the interrupt */
    650 	psc->sc_ih = pcmcia_intr_establish(psc->sc_pf, IPL_NET, dp8390_intr,
    651 	    dsc);
    652 	if (psc->sc_ih == NULL) {
    653 		printf("%s: couldn't establish interrupt\n",
    654 		    dsc->sc_dev.dv_xname);
    655 		goto fail_1;
    656 	}
    657 
    658 	if (pcmcia_function_enable(psc->sc_pf))
    659 		goto fail_2;
    660 
    661 	return (0);
    662 
    663  fail_2:
    664 	pcmcia_intr_disestablish(psc->sc_pf, psc->sc_ih);
    665  fail_1:
    666 	return (1);
    667 }
    668 
    669 void
    670 ne_pcmcia_disable(dsc)
    671 	struct dp8390_softc *dsc;
    672 {
    673 	struct ne_pcmcia_softc *psc = (struct ne_pcmcia_softc *)dsc;
    674 
    675 	pcmcia_function_disable(psc->sc_pf);
    676 	pcmcia_intr_disestablish(psc->sc_pf, psc->sc_ih);
    677 }
    678 
    679 u_int8_t *
    680 ne_pcmcia_get_enaddr(psc, maddr, myea)
    681 	struct ne_pcmcia_softc *psc;
    682 	int maddr;
    683 	u_int8_t myea[ETHER_ADDR_LEN];
    684 {
    685 	struct ne2000_softc *nsc = &psc->sc_ne2000;
    686 	struct dp8390_softc *dsc = &nsc->sc_dp8390;
    687 	struct pcmcia_mem_handle pcmh;
    688 	bus_addr_t offset;
    689 	u_int8_t *enaddr = NULL;
    690 	int j, mwindow;
    691 
    692 	if (maddr < 0)
    693 		return (NULL);
    694 
    695 	if (pcmcia_mem_alloc(psc->sc_pf, ETHER_ADDR_LEN * 2, &pcmh)) {
    696 		printf("%s: can't alloc mem for enet addr\n",
    697 		    dsc->sc_dev.dv_xname);
    698 		goto fail_1;
    699 	}
    700 	if (pcmcia_mem_map(psc->sc_pf, PCMCIA_MEM_ATTR, maddr,
    701 	    ETHER_ADDR_LEN * 2, &pcmh, &offset, &mwindow)) {
    702 		printf("%s: can't map mem for enet addr\n",
    703 		    dsc->sc_dev.dv_xname);
    704 		goto fail_2;
    705 	}
    706 	for (j = 0; j < ETHER_ADDR_LEN; j++)
    707 		myea[j] = bus_space_read_1(pcmh.memt, pcmh.memh,
    708 		    offset + (j * 2));
    709 	enaddr = myea;
    710 
    711 	pcmcia_mem_unmap(psc->sc_pf, mwindow);
    712  fail_2:
    713 	pcmcia_mem_free(psc->sc_pf, &pcmh);
    714  fail_1:
    715 	return (enaddr);
    716 }
    717 
    718 u_int8_t *
    719 ne_pcmcia_dl10019_get_enaddr(psc, myea)
    720 	struct ne_pcmcia_softc *psc;
    721 	u_int8_t myea[ETHER_ADDR_LEN];
    722 {
    723 	struct ne2000_softc *nsc = &psc->sc_ne2000;
    724 	u_int8_t sum;
    725 	int j;
    726 
    727 #define PAR0	0x04
    728 	for (j = 0, sum = 0; j < 8; j++)
    729 		sum += bus_space_read_1(nsc->sc_asict, nsc->sc_asich,
    730 		    PAR0 + j);
    731 	if (sum != 0xff)
    732 		return (NULL);
    733 	for (j = 0; j < ETHER_ADDR_LEN; j++)
    734 		myea[j] = bus_space_read_1(nsc->sc_asict,
    735 		    nsc->sc_asich, PAR0 + j);
    736 #undef PAR0
    737 	return (myea);
    738 }
    739