Home | History | Annotate | Line # | Download | only in pcmcia
if_ep_pcmcia.c revision 1.23
      1 /*	$NetBSD: if_ep_pcmcia.c,v 1.23 1999/08/14 13:43:02 tron Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9  * NASA Ames Research Center.
     10  *
     11  * Redistribution and use in source and binary forms, with or without
     12  * modification, are permitted provided that the following conditions
     13  * are met:
     14  * 1. Redistributions of source code must retain the above copyright
     15  *    notice, this list of conditions and the following disclaimer.
     16  * 2. Redistributions in binary form must reproduce the above copyright
     17  *    notice, this list of conditions and the following disclaimer in the
     18  *    documentation and/or other materials provided with the distribution.
     19  * 3. All advertising materials mentioning features or use of this software
     20  *    must display the following acknowledgement:
     21  *	This product includes software developed by the NetBSD
     22  *	Foundation, Inc. and its contributors.
     23  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24  *    contributors may be used to endorse or promote products derived
     25  *    from this software without specific prior written permission.
     26  *
     27  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37  * POSSIBILITY OF SUCH DAMAGE.
     38  */
     39 
     40 /*
     41  * Copyright (c) 1997 Marc Horowitz.  All rights reserved.
     42  *
     43  * Redistribution and use in source and binary forms, with or without
     44  * modification, are permitted provided that the following conditions
     45  * are met:
     46  * 1. Redistributions of source code must retain the above copyright
     47  *    notice, this list of conditions and the following disclaimer.
     48  * 2. Redistributions in binary form must reproduce the above copyright
     49  *    notice, this list of conditions and the following disclaimer in the
     50  *    documentation and/or other materials provided with the distribution.
     51  * 3. All advertising materials mentioning features or use of this software
     52  *    must display the following acknowledgement:
     53  *	This product includes software developed by Marc Horowitz.
     54  * 4. The name of the author may not be used to endorse or promote products
     55  *    derived from this software without specific prior written permission.
     56  *
     57  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     58  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     59  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     60  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     61  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     62  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     63  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     64  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     65  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     66  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     67  */
     68 
     69 #include "opt_inet.h"
     70 #include "opt_ns.h"
     71 #include "bpfilter.h"
     72 
     73 #include <sys/param.h>
     74 #include <sys/systm.h>
     75 #include <sys/mbuf.h>
     76 #include <sys/socket.h>
     77 #include <sys/ioctl.h>
     78 #include <sys/errno.h>
     79 #include <sys/syslog.h>
     80 #include <sys/select.h>
     81 #include <sys/device.h>
     82 
     83 #include <net/if.h>
     84 #include <net/if_dl.h>
     85 #include <net/if_ether.h>
     86 #include <net/if_media.h>
     87 
     88 #ifdef INET
     89 #include <netinet/in.h>
     90 #include <netinet/in_systm.h>
     91 #include <netinet/in_var.h>
     92 #include <netinet/ip.h>
     93 #include <netinet/if_inarp.h>
     94 #endif
     95 
     96 #ifdef NS
     97 #include <netns/ns.h>
     98 #include <netns/ns_if.h>
     99 #endif
    100 
    101 #if NBPFILTER > 0
    102 #include <net/bpf.h>
    103 #include <net/bpfdesc.h>
    104 #endif
    105 
    106 #include <machine/cpu.h>
    107 #include <machine/bus.h>
    108 #include <machine/intr.h>
    109 
    110 #include <dev/mii/miivar.h>
    111 
    112 #include <dev/ic/elink3var.h>
    113 #include <dev/ic/elink3reg.h>
    114 
    115 #include <dev/pcmcia/pcmciareg.h>
    116 #include <dev/pcmcia/pcmciavar.h>
    117 #include <dev/pcmcia/pcmciadevs.h>
    118 
    119 int	ep_pcmcia_match __P((struct device *, struct cfdata *, void *));
    120 void	ep_pcmcia_attach __P((struct device *, struct device *, void *));
    121 int	ep_pcmcia_detach __P((struct device *, int));
    122 
    123 int	ep_pcmcia_get_enaddr __P((struct pcmcia_tuple *, void *));
    124 int	ep_pcmcia_enable __P((struct ep_softc *));
    125 void	ep_pcmcia_disable __P((struct ep_softc *));
    126 
    127 int	ep_pcmcia_enable1 __P((struct ep_softc *));
    128 void	ep_pcmcia_disable1 __P((struct ep_softc *));
    129 
    130 struct ep_pcmcia_softc {
    131 	struct ep_softc sc_ep;			/* real "ep" softc */
    132 
    133 	/* PCMCIA-specific goo */
    134 	struct pcmcia_io_handle sc_pcioh;	/* PCMCIA i/o space info */
    135 	int sc_io_window;			/* our i/o window */
    136 	struct pcmcia_function *sc_pf;		/* our PCMCIA function */
    137 };
    138 
    139 struct cfattach ep_pcmcia_ca = {
    140 	sizeof(struct ep_pcmcia_softc), ep_pcmcia_match, ep_pcmcia_attach,
    141 	    ep_pcmcia_detach, ep_activate
    142 };
    143 
    144 struct ep_pcmcia_product {
    145 	u_int32_t	epp_product;	/* PCMCIA product ID */
    146 	u_short		epp_chipset;	/* 3Com chipset used */
    147 	int		epp_flags;	/* initial softc flags */
    148 	int		epp_expfunc;	/* expected function */
    149 	const char	*epp_name;	/* device name */
    150 } ep_pcmcia_products[] = {
    151 	{ PCMCIA_PRODUCT_3COM_3C562,		ELINK_CHIPSET_3C509,
    152 	  0,					0,
    153 	  PCMCIA_STR_3COM_3C562 },
    154 	{ PCMCIA_PRODUCT_3COM_3C589,		ELINK_CHIPSET_3C509,
    155 	  0,					0,
    156 	  PCMCIA_STR_3COM_3C589 },
    157 
    158 	{ PCMCIA_PRODUCT_3COM_3CXEM556,		ELINK_CHIPSET_3C509,
    159 	  0,					0,
    160 	  PCMCIA_STR_3COM_3CXEM556 },
    161 
    162 	{ PCMCIA_PRODUCT_3COM_3CXEM556INT,	ELINK_CHIPSET_3C509,
    163 	  0,					0,
    164 	  PCMCIA_STR_3COM_3CXEM556INT },
    165 
    166 	{ PCMCIA_PRODUCT_3COM_3C574,		ELINK_CHIPSET_ROADRUNNER,
    167 	  ELINK_FLAGS_MII,			0,
    168 	  PCMCIA_STR_3COM_3C574 },
    169 
    170 	{ 0,					0,
    171 	  0,					0,
    172 	  NULL },
    173 };
    174 
    175 struct ep_pcmcia_product *ep_pcmcia_lookup __P((struct pcmcia_attach_args *));
    176 
    177 struct ep_pcmcia_product *
    178 ep_pcmcia_lookup(pa)
    179 	struct pcmcia_attach_args *pa;
    180 {
    181 	struct ep_pcmcia_product *epp;
    182 
    183 	for (epp = ep_pcmcia_products; epp->epp_name != NULL; epp++)
    184 		if (pa->product == epp->epp_product &&
    185 		    pa->pf->number == epp->epp_expfunc)
    186 			return (epp);
    187 
    188 	return (NULL);
    189 }
    190 
    191 int
    192 ep_pcmcia_match(parent, match, aux)
    193 	struct device *parent;
    194 	struct cfdata *match;
    195 	void *aux;
    196 {
    197 	struct pcmcia_attach_args *pa = aux;
    198 
    199 	if (pa->manufacturer != PCMCIA_VENDOR_3COM)
    200 		return (0);
    201 
    202 	if (ep_pcmcia_lookup(pa) != NULL)
    203 		return (1);
    204 
    205 	return (0);
    206 }
    207 
    208 int
    209 ep_pcmcia_enable(sc)
    210 	struct ep_softc *sc;
    211 {
    212 	struct ep_pcmcia_softc *psc = (struct ep_pcmcia_softc *) sc;
    213 	struct pcmcia_function *pf = psc->sc_pf;
    214 
    215 	/* establish the interrupt. */
    216 	sc->sc_ih = pcmcia_intr_establish(pf, IPL_NET, epintr, sc);
    217 	if (sc->sc_ih == NULL) {
    218 		printf("%s: couldn't establish interrupt\n",
    219 		    sc->sc_dev.dv_xname);
    220 		return (1);
    221 	}
    222 
    223 	return (ep_pcmcia_enable1(sc));
    224 }
    225 
    226 int
    227 ep_pcmcia_enable1(sc)
    228 	struct ep_softc *sc;
    229 {
    230 	struct ep_pcmcia_softc *psc = (struct ep_pcmcia_softc *) sc;
    231 	struct pcmcia_function *pf = psc->sc_pf;
    232 	int ret;
    233 
    234 	if ((ret = pcmcia_function_enable(pf)))
    235 		return (ret);
    236 
    237 	if ((psc->sc_pf->sc->card.product == PCMCIA_PRODUCT_3COM_3C562) ||
    238 	    (psc->sc_pf->sc->card.product == PCMCIA_PRODUCT_3COM_3CXEM556) ||
    239 	    (psc->sc_pf->sc->card.product == PCMCIA_PRODUCT_3COM_3CXEM556INT)) {
    240 		int reg;
    241 
    242 		/* turn off the serial-disable bit */
    243 
    244 		reg = pcmcia_ccr_read(pf, PCMCIA_CCR_OPTION);
    245 		if (reg & 0x08) {
    246 			reg &= ~0x08;
    247 			pcmcia_ccr_write(pf, PCMCIA_CCR_OPTION, reg);
    248 		}
    249 
    250 	}
    251 
    252 	return (ret);
    253 }
    254 
    255 void
    256 ep_pcmcia_disable(sc)
    257 	struct ep_softc *sc;
    258 {
    259 	struct ep_pcmcia_softc *psc = (struct ep_pcmcia_softc *) sc;
    260 
    261 	ep_pcmcia_disable1(sc);
    262 	pcmcia_intr_disestablish(psc->sc_pf, sc->sc_ih);
    263 }
    264 
    265 void
    266 ep_pcmcia_disable1(sc)
    267 	struct ep_softc *sc;
    268 {
    269 	struct ep_pcmcia_softc *psc = (struct ep_pcmcia_softc *) sc;
    270 
    271 	pcmcia_function_disable(psc->sc_pf);
    272 }
    273 
    274 void
    275 ep_pcmcia_attach(parent, self, aux)
    276 	struct device  *parent, *self;
    277 	void           *aux;
    278 {
    279 	struct ep_pcmcia_softc *psc = (void *) self;
    280 	struct ep_softc *sc = &psc->sc_ep;
    281 	struct pcmcia_attach_args *pa = aux;
    282 	struct pcmcia_config_entry *cfe;
    283 	struct ep_pcmcia_product *epp;
    284 	u_int8_t myla[ETHER_ADDR_LEN];
    285 	u_int8_t *enaddr = NULL;
    286 	int i;
    287 
    288 	psc->sc_pf = pa->pf;
    289 	cfe = pa->pf->cfe_head.sqh_first;
    290 
    291 	/* Enable the card. */
    292 	pcmcia_function_init(pa->pf, cfe);
    293 	if (ep_pcmcia_enable1(sc))
    294 		printf(": function enable failed\n");
    295 
    296 	sc->enabled = 1;
    297 
    298 	if (cfe->num_memspace != 0)
    299 		printf(": unexpected number of memory spaces %d should be 0\n",
    300 		    cfe->num_memspace);
    301 
    302 	if (cfe->num_iospace != 1)
    303 		printf(": unexpected number of I/O spaces %d should be 1\n",
    304 		    cfe->num_iospace);
    305 
    306 	if (pa->product == PCMCIA_PRODUCT_3COM_3C562) {
    307 		bus_addr_t maxaddr = (pa->pf->sc->iobase + pa->pf->sc->iosize);
    308 
    309 		for (i = pa->pf->sc->iobase; i < maxaddr; i += 0x10) {
    310 			/*
    311 			 * the 3c562 can only use 0x??00-0x??7f
    312 			 * according to the Linux driver
    313 			 */
    314 			if (i & 0x80)
    315 				continue;
    316 			if (pcmcia_io_alloc(pa->pf, i, cfe->iospace[0].length,
    317 			    0, &psc->sc_pcioh) == 0)
    318 				break;
    319 		}
    320 		if (i >= maxaddr) {
    321 			printf(": can't allocate i/o space\n");
    322 			return;
    323 		}
    324 	} else {
    325 		if (pcmcia_io_alloc(pa->pf, 0, cfe->iospace[0].length,
    326 		    cfe->iospace[0].length, &psc->sc_pcioh))
    327 			printf(": can't allocate i/o space\n");
    328 	}
    329 
    330 	sc->sc_iot = psc->sc_pcioh.iot;
    331 	sc->sc_ioh = psc->sc_pcioh.ioh;
    332 
    333 	if (pcmcia_io_map(pa->pf, ((cfe->flags & PCMCIA_CFE_IO16) ?
    334 	    PCMCIA_WIDTH_IO16 : PCMCIA_WIDTH_IO8), 0, cfe->iospace[0].length,
    335 	    &psc->sc_pcioh, &psc->sc_io_window)) {
    336 		printf(": can't map i/o space\n");
    337 		return;
    338 	}
    339 
    340 	switch (pa->product) {
    341 	case PCMCIA_PRODUCT_3COM_3C562:
    342 		/*
    343 		 * 3c562a-c use this; 3c562d does it in the regular way.
    344 		 * we might want to check the revision and produce a warning
    345 		 * in the future.
    346 		 */
    347 		/* FALLTHROUGH */
    348 	case PCMCIA_PRODUCT_3COM_3C574:
    349 		/*
    350 		 * Apparently, some 3c574s do it this way, as well.
    351 		 */
    352 		if (pcmcia_scan_cis(parent, ep_pcmcia_get_enaddr, myla))
    353 			enaddr = myla;
    354 		break;
    355 	}
    356 
    357 	epp = ep_pcmcia_lookup(pa);
    358 	if (epp == NULL)
    359 		panic("ep_pcmcia_attach: impossible");
    360 
    361 	printf(": %s\n", epp->epp_name);
    362 
    363 	sc->bustype = ELINK_BUS_PCMCIA;
    364 	sc->ep_flags = epp->epp_flags;
    365 
    366 	sc->enable = ep_pcmcia_enable;
    367 	sc->disable = ep_pcmcia_disable;
    368 
    369 	epconfig(sc, epp->epp_chipset, enaddr);
    370 
    371 	sc->enabled = 0;
    372 
    373 	ep_pcmcia_disable1(sc);
    374 }
    375 
    376 int
    377 ep_pcmcia_detach(self, flags)
    378 	struct device *self;
    379 	int flags;
    380 {
    381 	struct ep_pcmcia_softc *psc = (struct ep_pcmcia_softc *)self;
    382 
    383 	/* Unmap our i/o window. */
    384 	pcmcia_io_unmap(psc->sc_pf, psc->sc_io_window);
    385 
    386 	/* Free our i/o space. */
    387 	pcmcia_io_free(psc->sc_pf, &psc->sc_pcioh);
    388 
    389 #ifdef notyet
    390 	/*
    391 	 * Our softc is about to go away, so drop our reference
    392 	 * to the ifnet.
    393 	 */
    394 	if_delref(psc->sc_ep.sc_ethercom.ec_if);
    395 	return (0);
    396 #else
    397 	return (EBUSY);
    398 #endif
    399 }
    400 
    401 int
    402 ep_pcmcia_get_enaddr(tuple, arg)
    403 	struct pcmcia_tuple *tuple;
    404 	void *arg;
    405 {
    406 	u_int8_t *myla = arg;
    407 	int i;
    408 
    409 	/* this is 3c562a-c magic */
    410 	if (tuple->code == 0x88) {
    411 		if (tuple->length < ETHER_ADDR_LEN)
    412 			return (0);
    413 
    414 		for (i = 0; i < ETHER_ADDR_LEN; i += 2) {
    415 			myla[i] = pcmcia_tuple_read_1(tuple, i + 1);
    416 			myla[i + 1] = pcmcia_tuple_read_1(tuple, i);
    417 		}
    418 
    419 		return (1);
    420 	}
    421 	return (0);
    422 }
    423