Home | History | Annotate | Line # | Download | only in pcmcia
if_mbe_pcmcia.c revision 1.10
      1  1.10     enami /*	$NetBSD: if_mbe_pcmcia.c,v 1.10 1999/11/18 14:25:28 enami Exp $	*/
      2   1.1     enami 
      3   1.1     enami /*-
      4   1.1     enami  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5   1.1     enami  * All rights reserved.
      6   1.1     enami  *
      7   1.1     enami  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1     enami  * by Enami Tsugutomo.
      9   1.1     enami  *
     10   1.1     enami  * Redistribution and use in source and binary forms, with or without
     11   1.1     enami  * modification, are permitted provided that the following conditions
     12   1.1     enami  * are met:
     13   1.1     enami  * 1. Redistributions of source code must retain the above copyright
     14   1.1     enami  *    notice, this list of conditions and the following disclaimer.
     15   1.1     enami  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1     enami  *    notice, this list of conditions and the following disclaimer in the
     17   1.1     enami  *    documentation and/or other materials provided with the distribution.
     18   1.1     enami  * 3. All advertising materials mentioning features or use of this software
     19   1.1     enami  *    must display the following acknowledgement:
     20   1.1     enami  *	This product includes software developed by the NetBSD
     21   1.1     enami  *	Foundation, Inc. and its contributors.
     22   1.1     enami  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23   1.1     enami  *    contributors may be used to endorse or promote products derived
     24   1.1     enami  *    from this software without specific prior written permission.
     25   1.1     enami  *
     26   1.1     enami  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27   1.1     enami  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28   1.1     enami  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29   1.1     enami  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30   1.1     enami  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31   1.1     enami  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.1     enami  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.1     enami  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34   1.1     enami  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.1     enami  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36   1.1     enami  * POSSIBILITY OF SUCH DAMAGE.
     37   1.1     enami  */
     38   1.1     enami 
     39   1.1     enami #include <sys/param.h>
     40   1.1     enami #include <sys/systm.h>
     41   1.1     enami #include <sys/device.h>
     42   1.1     enami #include <sys/socket.h>
     43   1.1     enami 
     44   1.1     enami #include <net/if.h>
     45   1.1     enami #include <net/if_ether.h>
     46   1.1     enami #include <net/if_media.h>
     47   1.1     enami 
     48   1.1     enami #include <machine/intr.h>
     49   1.1     enami #include <machine/bus.h>
     50   1.1     enami 
     51   1.1     enami #include <dev/ic/mb86960reg.h>
     52   1.1     enami #include <dev/ic/mb86960var.h>
     53   1.1     enami 
     54   1.1     enami #include <dev/pcmcia/pcmciareg.h>
     55   1.1     enami #include <dev/pcmcia/pcmciavar.h>
     56   1.3  christos #include <dev/pcmcia/pcmciadevs.h>
     57   1.1     enami 
     58   1.1     enami int	mbe_pcmcia_match __P((struct device *, struct cfdata *, void *));
     59   1.1     enami void	mbe_pcmcia_attach __P((struct device *, struct device *, void *));
     60   1.4   thorpej int	mbe_pcmcia_detach __P((struct device *, int));
     61   1.1     enami 
     62   1.1     enami struct mbe_pcmcia_softc {
     63   1.1     enami 	struct	mb86960_softc sc_mb86960;	/* real "mb" softc */
     64   1.1     enami 
     65   1.1     enami 	/* PCMCIA-specific goo. */
     66   1.1     enami 	struct	pcmcia_io_handle sc_pcioh;	/* PCMCIA i/o space info */
     67   1.1     enami 	int	sc_io_window;			/* our i/o window */
     68   1.1     enami 	void	*sc_ih;				/* interrupt cookie */
     69   1.1     enami 	struct	pcmcia_function *sc_pf;		/* our PCMCIA function */
     70   1.1     enami };
     71   1.1     enami 
     72   1.1     enami struct cfattach mbe_pcmcia_ca = {
     73   1.4   thorpej 	sizeof(struct mbe_pcmcia_softc), mbe_pcmcia_match, mbe_pcmcia_attach,
     74   1.6   thorpej 	    mbe_pcmcia_detach, mb86960_activate
     75   1.1     enami };
     76   1.1     enami 
     77   1.1     enami #if NetBSD <= 199712
     78   1.1     enami struct cfdriver mbe_cd = {			/* XXX shouldn't be here */
     79   1.1     enami 	NULL, "mbe", DV_IFNET
     80   1.1     enami };
     81   1.1     enami #endif
     82   1.1     enami 
     83   1.1     enami int	mbe_pcmcia_enable __P((struct mb86960_softc *));
     84   1.1     enami void	mbe_pcmcia_disable __P((struct mb86960_softc *));
     85   1.1     enami 
     86   1.1     enami struct mbe_pcmcia_get_enaddr_args {
     87   1.1     enami 	u_int8_t enaddr[ETHER_ADDR_LEN];
     88   1.1     enami };
     89   1.1     enami int	mbe_pcmcia_get_enaddr __P((struct pcmcia_tuple *, void *));
     90   1.1     enami 
     91   1.7   thorpej struct mbe_pcmcia_product {
     92   1.7   thorpej 	u_int32_t	mpp_vendor;	/* vendor ID */
     93   1.7   thorpej 	u_int32_t	mpp_product;	/* product ID */
     94   1.7   thorpej 	int		mpp_expfunc;	/* exptected function */
     95   1.7   thorpej 	u_int32_t	mpp_ioalign;	/* required alignment */
     96   1.7   thorpej 	const char	*mpp_name;	/* product name */
     97   1.7   thorpej } mbe_pcmcia_products[] = {
     98   1.7   thorpej 	{ PCMCIA_VENDOR_TDK,		PCMCIA_PRODUCT_TDK_LAK_CD021BX,
     99   1.7   thorpej 	  0,				0,
    100   1.7   thorpej 	  PCMCIA_STR_TDK_LAK_CD021BX },
    101   1.7   thorpej #if 0 /* XXX 86960-based? */
    102   1.7   thorpej 	{ PCMCIA_VENDOR_TDK,		PCMCIA_PRODUCT_TDK_LAK_DFL9610,
    103   1.7   thorpej 	  1,				0,
    104   1.7   thorpej 	  PCMCIA_STR_TDK_LAK_DFL9610 }
    105   1.7   thorpej #endif
    106   1.8      tron 
    107   1.8      tron 	{ PCMCIA_VENDOR_CONTEC,		PCMCIA_PRODUCT_CONTEC_CNETPC,
    108   1.8      tron 	  0,				0,
    109   1.8      tron 	  PCMCIA_STR_CONTEC_CNETPC },
    110   1.7   thorpej 
    111   1.7   thorpej 	{ PCMCIA_VENDOR_FUJITSU,	PCMCIA_PRODUCT_FUJITSU_LA501,
    112   1.7   thorpej 	  0,				0x20,
    113   1.7   thorpej 	  PCMCIA_STR_FUJITSU_LA501 },
    114   1.9        is 
    115   1.9        is 	{ PCMCIA_VENDOR_FUJITSU,	PCMCIA_PRODUCT_FUJITSU_LA10S,
    116   1.9        is 	  0,				0,
    117   1.9        is 	  PCMCIA_STR_FUJITSU_LA10S },
    118   1.7   thorpej 
    119   1.7   thorpej 	{ 0,				0,
    120   1.7   thorpej 	  0,				0,
    121   1.7   thorpej 	  NULL },
    122   1.7   thorpej };
    123   1.7   thorpej 
    124   1.7   thorpej const struct mbe_pcmcia_product *mbe_pcmcia_lookup
    125   1.7   thorpej     __P((const struct pcmcia_attach_args *pa));
    126   1.7   thorpej 
    127   1.7   thorpej const struct mbe_pcmcia_product *
    128   1.7   thorpej mbe_pcmcia_lookup(pa)
    129   1.7   thorpej 	const struct pcmcia_attach_args *pa;
    130   1.7   thorpej {
    131   1.7   thorpej 	const struct mbe_pcmcia_product *mpp;
    132   1.7   thorpej 
    133   1.7   thorpej 	for (mpp = mbe_pcmcia_products; mpp->mpp_name != NULL; mpp++) {
    134   1.7   thorpej 		if (pa->manufacturer == mpp->mpp_vendor &&
    135   1.7   thorpej 		    pa->product == mpp->mpp_product &&
    136   1.7   thorpej 		    pa->pf->number == mpp->mpp_expfunc)
    137   1.7   thorpej 			return (mpp);
    138   1.7   thorpej 	}
    139   1.7   thorpej 	return (NULL);
    140   1.7   thorpej }
    141   1.7   thorpej 
    142   1.1     enami int
    143   1.1     enami mbe_pcmcia_match(parent, match, aux)
    144   1.1     enami 	struct device *parent;
    145   1.1     enami 	struct cfdata *match;
    146   1.1     enami 	void *aux;
    147   1.1     enami {
    148   1.1     enami 	struct pcmcia_attach_args *pa = aux;
    149   1.1     enami 
    150   1.7   thorpej 	if (mbe_pcmcia_lookup(pa) != NULL)
    151   1.7   thorpej 		return (1);
    152   1.1     enami 
    153   1.1     enami 	return (0);
    154   1.1     enami }
    155   1.1     enami 
    156   1.1     enami void
    157   1.1     enami mbe_pcmcia_attach(parent, self, aux)
    158   1.1     enami 	struct device *parent, *self;
    159   1.1     enami 	void *aux;
    160   1.1     enami {
    161   1.1     enami 	struct mbe_pcmcia_softc *psc = (struct mbe_pcmcia_softc *)self;
    162   1.1     enami 	struct mb86960_softc *sc = &psc->sc_mb86960;
    163   1.1     enami 	struct pcmcia_attach_args *pa = aux;
    164   1.1     enami 	struct pcmcia_config_entry *cfe;
    165   1.1     enami 	struct mbe_pcmcia_get_enaddr_args pgea;
    166   1.7   thorpej 	const struct mbe_pcmcia_product *mpp;
    167  1.10     enami 	int rv;
    168   1.7   thorpej 
    169   1.7   thorpej 	mpp = mbe_pcmcia_lookup(pa);
    170   1.7   thorpej 	if (mpp == NULL) {
    171   1.7   thorpej 		printf("\n");
    172   1.7   thorpej 		panic("mbe_pcmcia_attach: impossible");
    173   1.7   thorpej 	}
    174   1.1     enami 
    175   1.1     enami 	psc->sc_pf = pa->pf;
    176   1.1     enami 	cfe = pa->pf->cfe_head.sqh_first;
    177   1.1     enami 
    178   1.1     enami 	/* Enable the card. */
    179   1.1     enami 	pcmcia_function_init(pa->pf, cfe);
    180   1.1     enami 	if (pcmcia_function_enable(pa->pf)) {
    181   1.1     enami 		printf(": function enable failed\n");
    182   1.1     enami 		return;
    183   1.1     enami 	}
    184   1.1     enami 
    185   1.1     enami 	/* Allocate and map i/o space for the card. */
    186   1.1     enami 	if (pcmcia_io_alloc(pa->pf, cfe->iospace[0].start,
    187   1.7   thorpej 	    cfe->iospace[0].length,
    188   1.7   thorpej 	    mpp->mpp_ioalign ? mpp->mpp_ioalign : cfe->iospace[0].length,
    189   1.7   thorpej 	    &psc->sc_pcioh)) {
    190   1.1     enami 		printf(": can't allocate i/o space\n");
    191   1.1     enami 		return;
    192   1.1     enami 	}
    193   1.1     enami 
    194   1.1     enami 	sc->sc_bst = psc->sc_pcioh.iot;
    195   1.1     enami 	sc->sc_bsh = psc->sc_pcioh.ioh;
    196   1.1     enami 
    197   1.1     enami 	sc->sc_enable = mbe_pcmcia_enable;
    198   1.1     enami 	sc->sc_disable = mbe_pcmcia_disable;
    199   1.1     enami 
    200   1.7   thorpej 	/*
    201   1.7   thorpej 	 * Don't bother checking flags; the back-end sets the chip
    202   1.7   thorpej 	 * into 16-bit mode.
    203   1.7   thorpej 	 */
    204   1.7   thorpej 	if (pcmcia_io_map(pa->pf, PCMCIA_WIDTH_IO16, 0, cfe->iospace[0].length,
    205   1.1     enami 	    &psc->sc_pcioh, &psc->sc_io_window)) {
    206   1.1     enami 		printf(": can't map i/o space\n");
    207   1.1     enami 		return;
    208   1.1     enami 	}
    209   1.1     enami 
    210   1.7   thorpej 	printf(": %s\n", mpp->mpp_name);
    211   1.1     enami 
    212  1.10     enami 	/* Read station address from CIS. */
    213  1.10     enami 	rv = pcmcia_scan_cis(parent, mbe_pcmcia_get_enaddr, &pgea);
    214  1.10     enami 	if (rv == -1) {
    215   1.1     enami 		printf("%s: Couldn't read CIS to get ethernet address\n",
    216   1.1     enami 		    sc->sc_dev.dv_xname);
    217   1.1     enami 		return;
    218  1.10     enami 	} else if (rv == 0) {
    219   1.1     enami 		printf("%s: Couldn't get ethernet address from CIS\n",
    220   1.1     enami 		    sc->sc_dev.dv_xname);
    221   1.1     enami 		return;
    222  1.10     enami 	}
    223  1.10     enami 
    224   1.1     enami #ifdef DIAGNOSTIC
    225  1.10     enami 	if (rv != 1) {
    226  1.10     enami 		printf("%s: pcmcia_scan_cis returns %d\n", sc->sc_dev.dv_xname,
    227  1.10     enami 		    rv);
    228  1.10     enami 		panic("mbe_pcmcia_attach");
    229  1.10     enami 	}
    230  1.10     enami 	printf("%s: Ethernet address from CIS: %s\n",
    231  1.10     enami 	    sc->sc_dev.dv_xname, ether_sprintf(pgea.enaddr));
    232   1.1     enami #endif
    233   1.1     enami 
    234   1.1     enami 	/* Perform generic initialization. */
    235   1.1     enami 	mb86960_attach(sc, MB86960_TYPE_86965, pgea.enaddr);
    236   1.1     enami 
    237   1.1     enami 	mb86960_config(sc, NULL, 0, 0);
    238   1.1     enami 
    239   1.1     enami 	pcmcia_function_disable(pa->pf);
    240   1.4   thorpej }
    241   1.4   thorpej 
    242   1.4   thorpej int
    243   1.4   thorpej mbe_pcmcia_detach(self, flags)
    244   1.4   thorpej 	struct device *self;
    245   1.4   thorpej 	int flags;
    246   1.4   thorpej {
    247   1.5   thorpej 	struct mbe_pcmcia_softc *psc = (struct mbe_pcmcia_softc *)self;
    248   1.5   thorpej 
    249   1.5   thorpej 	/* Unmap our i/o window. */
    250   1.5   thorpej 	pcmcia_io_unmap(psc->sc_pf, psc->sc_io_window);
    251   1.5   thorpej 
    252   1.5   thorpej 	/* Free our i/o space. */
    253   1.5   thorpej 	pcmcia_io_free(psc->sc_pf, &psc->sc_pcioh);
    254   1.5   thorpej 
    255   1.4   thorpej #ifdef notyet
    256   1.4   thorpej 	/*
    257   1.4   thorpej 	 * Our softc is about to go away, so drop our reference
    258   1.4   thorpej 	 * to the ifnet.
    259   1.4   thorpej 	 */
    260   1.5   thorpej 	if_delref(psc->sc_mb86960.sc_ec.ec_if);
    261   1.4   thorpej 	return (0);
    262   1.4   thorpej #else
    263   1.4   thorpej 	return (EBUSY);
    264   1.4   thorpej #endif
    265   1.1     enami }
    266   1.1     enami 
    267   1.1     enami int
    268   1.1     enami mbe_pcmcia_enable(sc)
    269   1.1     enami 	struct mb86960_softc *sc;
    270   1.1     enami {
    271   1.1     enami 	struct mbe_pcmcia_softc *psc = (struct mbe_pcmcia_softc *)sc;
    272   1.1     enami 
    273   1.1     enami 	/* Establish the interrupt handler. */
    274   1.1     enami 	psc->sc_ih = pcmcia_intr_establish(psc->sc_pf, IPL_NET, mb86960_intr,
    275   1.1     enami 	    sc);
    276   1.1     enami 	if (psc->sc_ih == NULL) {
    277   1.1     enami 		printf("%s: couldn't establish interrupt handler\n",
    278   1.1     enami 		    sc->sc_dev.dv_xname);
    279   1.1     enami 		return (1);
    280   1.1     enami 	}
    281   1.1     enami 
    282   1.1     enami 	return (pcmcia_function_enable(psc->sc_pf));
    283   1.1     enami }
    284   1.1     enami 
    285   1.1     enami void
    286   1.1     enami mbe_pcmcia_disable(sc)
    287   1.1     enami 	struct mb86960_softc *sc;
    288   1.1     enami {
    289   1.1     enami 	struct mbe_pcmcia_softc *psc = (struct mbe_pcmcia_softc *)sc;
    290   1.1     enami 
    291   1.1     enami 	pcmcia_function_disable(psc->sc_pf);
    292   1.1     enami 
    293   1.1     enami 	pcmcia_intr_disestablish(psc->sc_pf, psc->sc_ih);
    294   1.1     enami }
    295   1.1     enami 
    296   1.1     enami int
    297   1.1     enami mbe_pcmcia_get_enaddr(tuple, arg)
    298   1.1     enami 	struct pcmcia_tuple *tuple;
    299   1.1     enami 	void *arg;
    300   1.1     enami {
    301   1.1     enami 	struct mbe_pcmcia_get_enaddr_args *p = arg;
    302   1.1     enami 	int i;
    303   1.1     enami 
    304   1.1     enami 	if (tuple->code == PCMCIA_CISTPL_FUNCE) {
    305   1.1     enami 		if (tuple->length < 2) /* sub code and ether addr length */
    306   1.1     enami 			return (0);
    307   1.1     enami 
    308   1.1     enami 		if ((pcmcia_tuple_read_1(tuple, 0) !=
    309   1.1     enami 			PCMCIA_TPLFE_TYPE_LAN_NID) ||
    310   1.1     enami 		    (pcmcia_tuple_read_1(tuple, 1) != ETHER_ADDR_LEN))
    311   1.1     enami 			return (0);
    312   1.1     enami 
    313   1.1     enami 		for (i = 0; i < ETHER_ADDR_LEN; i++)
    314   1.1     enami 			p->enaddr[i] = pcmcia_tuple_read_1(tuple, i + 2);
    315   1.1     enami 		return (1);
    316   1.1     enami 	}
    317   1.1     enami 	return (0);
    318   1.1     enami }
    319