Home | History | Annotate | Line # | Download | only in pcmcia
if_mbe_pcmcia.c revision 1.24
      1  1.24    ichiro /*	$NetBSD: if_mbe_pcmcia.c,v 1.24 2001/12/18 11:32:47 ichiro Exp $	*/
      2   1.1     enami 
      3   1.1     enami /*-
      4  1.13       cgd  * Copyright (c) 1998, 2000 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.21     lukem 
     39  1.21     lukem #include <sys/cdefs.h>
     40  1.24    ichiro __KERNEL_RCSID(0, "$NetBSD: if_mbe_pcmcia.c,v 1.24 2001/12/18 11:32:47 ichiro Exp $");
     41   1.1     enami 
     42   1.1     enami #include <sys/param.h>
     43   1.1     enami #include <sys/systm.h>
     44   1.1     enami #include <sys/device.h>
     45   1.1     enami #include <sys/socket.h>
     46   1.1     enami 
     47   1.1     enami #include <net/if.h>
     48   1.1     enami #include <net/if_ether.h>
     49   1.1     enami #include <net/if_media.h>
     50   1.1     enami 
     51   1.1     enami #include <machine/intr.h>
     52   1.1     enami #include <machine/bus.h>
     53   1.1     enami 
     54   1.1     enami #include <dev/ic/mb86960reg.h>
     55   1.1     enami #include <dev/ic/mb86960var.h>
     56   1.1     enami 
     57   1.1     enami #include <dev/pcmcia/pcmciareg.h>
     58   1.1     enami #include <dev/pcmcia/pcmciavar.h>
     59   1.3  christos #include <dev/pcmcia/pcmciadevs.h>
     60   1.1     enami 
     61   1.1     enami int	mbe_pcmcia_match __P((struct device *, struct cfdata *, void *));
     62   1.1     enami void	mbe_pcmcia_attach __P((struct device *, struct device *, void *));
     63   1.4   thorpej int	mbe_pcmcia_detach __P((struct device *, int));
     64   1.1     enami 
     65  1.24    ichiro static const struct mbe_pcmcia_product
     66  1.24    ichiro 		*mbe_pcmcia_lookup __P((struct pcmcia_attach_args *pa));
     67  1.24    ichiro 
     68   1.1     enami struct mbe_pcmcia_softc {
     69   1.1     enami 	struct	mb86960_softc sc_mb86960;	/* real "mb" softc */
     70   1.1     enami 
     71   1.1     enami 	/* PCMCIA-specific goo. */
     72   1.1     enami 	struct	pcmcia_io_handle sc_pcioh;	/* PCMCIA i/o space info */
     73   1.1     enami 	int	sc_io_window;			/* our i/o window */
     74   1.1     enami 	void	*sc_ih;				/* interrupt cookie */
     75   1.1     enami 	struct	pcmcia_function *sc_pf;		/* our PCMCIA function */
     76   1.1     enami };
     77   1.1     enami 
     78   1.1     enami struct cfattach mbe_pcmcia_ca = {
     79   1.4   thorpej 	sizeof(struct mbe_pcmcia_softc), mbe_pcmcia_match, mbe_pcmcia_attach,
     80   1.6   thorpej 	    mbe_pcmcia_detach, mb86960_activate
     81   1.1     enami };
     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.18        is 	int maddr;
     89   1.1     enami };
     90  1.18        is int	mbe_pcmcia_get_enaddr_from_cis __P((struct pcmcia_tuple *, void *));
     91  1.18        is int	mbe_pcmcia_get_enaddr_from_mem __P((struct mbe_pcmcia_softc *,
     92  1.19     enami 	    struct mbe_pcmcia_get_enaddr_args *));
     93   1.1     enami 
     94  1.24    ichiro static const struct mbe_pcmcia_product {
     95  1.24    ichiro 	const char	*mpp_name;		/* product name */
     96  1.24    ichiro 	u_int32_t	mpp_vendor;		/* vendor ID */
     97  1.24    ichiro 	u_int32_t	mpp_product;		/* product ID */
     98  1.24    ichiro 	const char	*mpp_cisinfo[4];	/* CIS information */
     99  1.24    ichiro 	u_int32_t	mpp_ioalign;		/* required alignment */
    100  1.24    ichiro 	int		mpp_enet_maddr;
    101   1.7   thorpej } mbe_pcmcia_products[] = {
    102  1.24    ichiro 	{ PCMCIA_STR_TDK_LAK_CD021BX,		PCMCIA_VENDOR_TDK,
    103  1.24    ichiro 	  PCMCIA_PRODUCT_TDK_LAK_CD021BX,	PCMCIA_CIS_TDK_LAK_CD021BX,
    104  1.19     enami 	  0, -1 },
    105  1.13       cgd 
    106  1.24    ichiro 	{ PCMCIA_STR_TDK_LAK_CF010,		PCMCIA_VENDOR_TDK,
    107  1.24    ichiro 	  PCMCIA_PRODUCT_TDK_LAK_CF010,		PCMCIA_CIS_TDK_LAK_CF010,
    108  1.19     enami 	  0, -1 },
    109  1.19     enami 
    110   1.7   thorpej #if 0 /* XXX 86960-based? */
    111  1.24    ichiro 	{ PCMCIA_STR_TDK_LAK_DFL9610,		PCMCIA_VENDOR_TDK,
    112  1.24    ichiro 	  PCMCIA_PRODUCT_TDK_LAK_DFL9610,	PCMCIA_CIS_TDK_DFL9610,
    113  1.18        is 	  0, -1 },
    114   1.7   thorpej #endif
    115   1.8      tron 
    116  1.24    ichiro 	{ PCMCIA_STR_CONTEC_CNETPC,		PCMCIA_VENDOR_CONTEC,
    117  1.24    ichiro 	  PCMCIA_PRODUCT_CONTEC_CNETPC,		PCMCIA_CIS_CONTEC_CNETPC,
    118  1.18        is 	  0, -1 },
    119  1.13       cgd 
    120  1.24    ichiro 	{ PCMCIA_STR_FUJITSU_LA501,		PCMCIA_VENDOR_FUJITSU,
    121  1.24    ichiro 	  PCMCIA_PRODUCT_FUJITSU_LA501,		PCMCIA_CIS_FUJITSU_LA501,
    122  1.18        is 	  0x20, -1 },
    123  1.13       cgd 
    124  1.24    ichiro 	{ PCMCIA_STR_FUJITSU_LA10S,		PCMCIA_VENDOR_FUJITSU,
    125  1.24    ichiro 	  PCMCIA_PRODUCT_FUJITSU_LA10S,		PCMCIA_CIS_FUJITSU_LA10S,
    126  1.18        is 	  0, -1 },
    127  1.23    ichiro 
    128  1.24    ichiro 	{ PCMCIA_STR_FUJITSU_ITCFJ182A,		PCMCIA_VENDOR_FUJITSU,
    129  1.24    ichiro 	  PCMCIA_PRODUCT_FUJITSU_ITCFJ182A,	PCMCIA_CIS_FUJITSU_ITCFJ182A,
    130  1.23    ichiro 	  0, 0x1cc },
    131  1.18        is 
    132  1.24    ichiro 	{ PCMCIA_STR_RATOC_REX_R280,		PCMCIA_VENDOR_RATOC,
    133  1.24    ichiro 	  PCMCIA_PRODUCT_RATOC_REX_R280,	PCMCIA_CIS_RATOC_REX_R280,
    134  1.18        is 	  0, 0x1fc },
    135  1.13       cgd 
    136  1.24    ichiro 	{ NULL,					0,
    137  1.24    ichiro           0,					{ NULL, NULL, NULL, NULL },
    138  1.24    ichiro           0, 0 }
    139   1.7   thorpej };
    140   1.7   thorpej 
    141  1.24    ichiro static const struct mbe_pcmcia_product *
    142  1.24    ichiro mbe_pcmcia_lookup(pa)
    143  1.24    ichiro 	struct pcmcia_attach_args *pa;
    144  1.24    ichiro {
    145  1.24    ichiro 	const struct mbe_pcmcia_product *mpp;
    146  1.24    ichiro 
    147  1.24    ichiro 	for (mpp = mbe_pcmcia_products; mpp->mpp_name != NULL; mpp++) {
    148  1.24    ichiro 		/* match by CIS information */
    149  1.24    ichiro 		if (pa->card->cis1_info[0] != NULL &&
    150  1.24    ichiro 		    mpp->mpp_cisinfo[0] != NULL &&
    151  1.24    ichiro 		    strcmp(pa->card->cis1_info[0], mpp->mpp_cisinfo[0]) == 0 &&
    152  1.24    ichiro 		    pa->card->cis1_info[1] != NULL &&
    153  1.24    ichiro 		    mpp->mpp_cisinfo[1] != NULL &&
    154  1.24    ichiro 		    strcmp(pa->card->cis1_info[1], mpp->mpp_cisinfo[1]) == 0)
    155  1.24    ichiro 			return (mpp);
    156  1.24    ichiro 
    157  1.24    ichiro 		/* match by vendor/product id */
    158  1.24    ichiro 		if (pa->manufacturer != PCMCIA_VENDOR_INVALID &&
    159  1.24    ichiro 		    pa->manufacturer == mpp->mpp_vendor &&
    160  1.24    ichiro 		    pa->product != PCMCIA_PRODUCT_INVALID &&
    161  1.24    ichiro 		    pa->product == mpp->mpp_product)
    162  1.24    ichiro 			return (mpp);
    163  1.24    ichiro 	}
    164  1.24    ichiro 
    165  1.24    ichiro 	return (NULL);
    166  1.24    ichiro }
    167  1.24    ichiro 
    168   1.1     enami int
    169   1.1     enami mbe_pcmcia_match(parent, match, aux)
    170   1.1     enami 	struct device *parent;
    171   1.1     enami 	struct cfdata *match;
    172   1.1     enami 	void *aux;
    173   1.1     enami {
    174   1.1     enami 	struct pcmcia_attach_args *pa = aux;
    175   1.1     enami 
    176  1.24    ichiro 	if (mbe_pcmcia_lookup(pa) != NULL)
    177   1.7   thorpej 		return (1);
    178   1.1     enami 	return (0);
    179   1.1     enami }
    180   1.1     enami 
    181   1.1     enami void
    182   1.1     enami mbe_pcmcia_attach(parent, self, aux)
    183   1.1     enami 	struct device *parent, *self;
    184   1.1     enami 	void *aux;
    185   1.1     enami {
    186   1.1     enami 	struct mbe_pcmcia_softc *psc = (struct mbe_pcmcia_softc *)self;
    187   1.1     enami 	struct mb86960_softc *sc = &psc->sc_mb86960;
    188   1.1     enami 	struct pcmcia_attach_args *pa = aux;
    189   1.1     enami 	struct pcmcia_config_entry *cfe;
    190   1.1     enami 	struct mbe_pcmcia_get_enaddr_args pgea;
    191   1.7   thorpej 	const struct mbe_pcmcia_product *mpp;
    192  1.10     enami 	int rv;
    193   1.7   thorpej 
    194  1.24    ichiro 	mpp = mbe_pcmcia_lookup(pa);
    195   1.7   thorpej 	if (mpp == NULL) {
    196   1.7   thorpej 		printf("\n");
    197   1.7   thorpej 		panic("mbe_pcmcia_attach: impossible");
    198   1.7   thorpej 	}
    199   1.1     enami 
    200   1.1     enami 	psc->sc_pf = pa->pf;
    201   1.1     enami 	cfe = pa->pf->cfe_head.sqh_first;
    202   1.1     enami 
    203   1.1     enami 	/* Enable the card. */
    204   1.1     enami 	pcmcia_function_init(pa->pf, cfe);
    205   1.1     enami 	if (pcmcia_function_enable(pa->pf)) {
    206   1.1     enami 		printf(": function enable failed\n");
    207  1.17     enami 		goto enable_failed;
    208   1.1     enami 	}
    209   1.1     enami 
    210   1.1     enami 	/* Allocate and map i/o space for the card. */
    211   1.1     enami 	if (pcmcia_io_alloc(pa->pf, cfe->iospace[0].start,
    212   1.7   thorpej 	    cfe->iospace[0].length,
    213   1.7   thorpej 	    mpp->mpp_ioalign ? mpp->mpp_ioalign : cfe->iospace[0].length,
    214   1.7   thorpej 	    &psc->sc_pcioh)) {
    215   1.1     enami 		printf(": can't allocate i/o space\n");
    216  1.14     enami 		goto ioalloc_failed;
    217   1.1     enami 	}
    218   1.1     enami 
    219   1.1     enami 	sc->sc_bst = psc->sc_pcioh.iot;
    220   1.1     enami 	sc->sc_bsh = psc->sc_pcioh.ioh;
    221   1.1     enami 
    222   1.1     enami 	sc->sc_enable = mbe_pcmcia_enable;
    223   1.1     enami 	sc->sc_disable = mbe_pcmcia_disable;
    224   1.1     enami 
    225   1.7   thorpej 	/*
    226   1.7   thorpej 	 * Don't bother checking flags; the back-end sets the chip
    227   1.7   thorpej 	 * into 16-bit mode.
    228   1.7   thorpej 	 */
    229   1.7   thorpej 	if (pcmcia_io_map(pa->pf, PCMCIA_WIDTH_IO16, 0, cfe->iospace[0].length,
    230   1.1     enami 	    &psc->sc_pcioh, &psc->sc_io_window)) {
    231   1.1     enami 		printf(": can't map i/o space\n");
    232  1.14     enami 		goto iomap_failed;
    233   1.1     enami 	}
    234   1.1     enami 
    235  1.24    ichiro 	printf(": %s\n", mpp->mpp_name);
    236   1.1     enami 
    237  1.18        is 	/* Read station address from mem or CIS. */
    238  1.19     enami 	if (mpp->mpp_enet_maddr >= 0) {
    239  1.19     enami 		pgea.maddr = mpp->mpp_enet_maddr;
    240  1.18        is 		if (mbe_pcmcia_get_enaddr_from_mem(psc, &pgea) != 0) {
    241  1.18        is 			printf("%s: Couldn't get ethernet address "
    242  1.19     enami 			    "from mem\n", sc->sc_dev.dv_xname);
    243  1.18        is 			goto no_enaddr;
    244  1.18        is 		}
    245  1.18        is 	} else {
    246  1.19     enami 		rv = pcmcia_scan_cis(parent,
    247  1.19     enami 		    mbe_pcmcia_get_enaddr_from_cis, &pgea);
    248  1.18        is 		if (rv == -1) {
    249  1.18        is 			printf("%s: Couldn't read CIS to get ethernet "
    250  1.19     enami 			    "address\n", sc->sc_dev.dv_xname);
    251  1.18        is 			goto no_enaddr;
    252  1.18        is 		} else if (rv == 0) {
    253  1.18        is 			printf("%s: Couldn't get ethernet address "
    254  1.19     enami 			    "from CIS\n", sc->sc_dev.dv_xname);
    255  1.18        is 			goto no_enaddr;
    256  1.18        is 		}
    257   1.1     enami #ifdef DIAGNOSTIC
    258  1.18        is 		if (rv != 1) {
    259  1.18        is 			printf("%s: pcmcia_scan_cis returns %d\n",
    260  1.19     enami 			    sc->sc_dev.dv_xname, rv);
    261  1.18        is 			panic("mbe_pcmcia_attach");
    262  1.18        is 		}
    263  1.18        is 		printf("%s: Ethernet address from CIS: %s\n",
    264  1.19     enami 		    sc->sc_dev.dv_xname, ether_sprintf(pgea.enaddr));
    265  1.18        is #endif
    266  1.10     enami 	}
    267   1.1     enami 
    268   1.1     enami 	/* Perform generic initialization. */
    269   1.1     enami 	mb86960_attach(sc, MB86960_TYPE_86965, pgea.enaddr);
    270   1.1     enami 
    271   1.1     enami 	mb86960_config(sc, NULL, 0, 0);
    272   1.1     enami 
    273   1.1     enami 	pcmcia_function_disable(pa->pf);
    274  1.14     enami 	return;
    275  1.14     enami 
    276  1.14     enami  no_enaddr:
    277  1.14     enami 	/* Unmap our i/o window. */
    278  1.14     enami 	pcmcia_io_unmap(psc->sc_pf, psc->sc_io_window);
    279  1.14     enami 
    280  1.14     enami  iomap_failed:
    281  1.14     enami 	/* Free our i/o space. */
    282  1.14     enami 	pcmcia_io_free(psc->sc_pf, &psc->sc_pcioh);
    283  1.14     enami 
    284  1.14     enami  ioalloc_failed:
    285  1.14     enami 	pcmcia_function_disable(pa->pf);
    286  1.17     enami 
    287  1.17     enami  enable_failed:
    288  1.17     enami 	psc->sc_io_window = -1;
    289   1.4   thorpej }
    290   1.4   thorpej 
    291   1.4   thorpej int
    292   1.4   thorpej mbe_pcmcia_detach(self, flags)
    293   1.4   thorpej 	struct device *self;
    294   1.4   thorpej 	int flags;
    295   1.4   thorpej {
    296   1.5   thorpej 	struct mbe_pcmcia_softc *psc = (struct mbe_pcmcia_softc *)self;
    297  1.12     enami 	int error;
    298  1.12     enami 
    299  1.14     enami 	if (psc->sc_io_window == -1)
    300  1.19     enami 		/* Nothing to detach.  */
    301  1.14     enami 		return (0);
    302  1.14     enami 
    303  1.14     enami 	error = mb86960_detach(&psc->sc_mb86960);
    304  1.12     enami 	if (error != 0)
    305  1.12     enami 		return (error);
    306   1.5   thorpej 
    307   1.5   thorpej 	/* Unmap our i/o window. */
    308   1.5   thorpej 	pcmcia_io_unmap(psc->sc_pf, psc->sc_io_window);
    309   1.5   thorpej 
    310   1.5   thorpej 	/* Free our i/o space. */
    311   1.5   thorpej 	pcmcia_io_free(psc->sc_pf, &psc->sc_pcioh);
    312   1.5   thorpej 
    313   1.4   thorpej 	return (0);
    314   1.1     enami }
    315   1.1     enami 
    316   1.1     enami int
    317   1.1     enami mbe_pcmcia_enable(sc)
    318   1.1     enami 	struct mb86960_softc *sc;
    319   1.1     enami {
    320   1.1     enami 	struct mbe_pcmcia_softc *psc = (struct mbe_pcmcia_softc *)sc;
    321   1.1     enami 
    322   1.1     enami 	/* Establish the interrupt handler. */
    323   1.1     enami 	psc->sc_ih = pcmcia_intr_establish(psc->sc_pf, IPL_NET, mb86960_intr,
    324   1.1     enami 	    sc);
    325   1.1     enami 	if (psc->sc_ih == NULL) {
    326   1.1     enami 		printf("%s: couldn't establish interrupt handler\n",
    327   1.1     enami 		    sc->sc_dev.dv_xname);
    328   1.1     enami 		return (1);
    329   1.1     enami 	}
    330   1.1     enami 
    331  1.17     enami 	if (pcmcia_function_enable(psc->sc_pf)) {
    332  1.17     enami 		pcmcia_intr_disestablish(psc->sc_pf, psc->sc_ih);
    333  1.17     enami 		return (1);
    334  1.17     enami 	}
    335  1.16     enami 
    336  1.17     enami 	return (0);
    337   1.1     enami }
    338   1.1     enami 
    339   1.1     enami void
    340   1.1     enami mbe_pcmcia_disable(sc)
    341   1.1     enami 	struct mb86960_softc *sc;
    342   1.1     enami {
    343   1.1     enami 	struct mbe_pcmcia_softc *psc = (struct mbe_pcmcia_softc *)sc;
    344   1.1     enami 
    345   1.1     enami 	pcmcia_function_disable(psc->sc_pf);
    346  1.17     enami 	pcmcia_intr_disestablish(psc->sc_pf, psc->sc_ih);
    347   1.1     enami }
    348   1.1     enami 
    349   1.1     enami int
    350  1.18        is mbe_pcmcia_get_enaddr_from_cis(tuple, arg)
    351   1.1     enami 	struct pcmcia_tuple *tuple;
    352   1.1     enami 	void *arg;
    353   1.1     enami {
    354   1.1     enami 	struct mbe_pcmcia_get_enaddr_args *p = arg;
    355   1.1     enami 	int i;
    356   1.1     enami 
    357   1.1     enami 	if (tuple->code == PCMCIA_CISTPL_FUNCE) {
    358   1.1     enami 		if (tuple->length < 2) /* sub code and ether addr length */
    359   1.1     enami 			return (0);
    360   1.1     enami 
    361   1.1     enami 		if ((pcmcia_tuple_read_1(tuple, 0) !=
    362   1.1     enami 			PCMCIA_TPLFE_TYPE_LAN_NID) ||
    363   1.1     enami 		    (pcmcia_tuple_read_1(tuple, 1) != ETHER_ADDR_LEN))
    364   1.1     enami 			return (0);
    365   1.1     enami 
    366   1.1     enami 		for (i = 0; i < ETHER_ADDR_LEN; i++)
    367   1.1     enami 			p->enaddr[i] = pcmcia_tuple_read_1(tuple, i + 2);
    368   1.1     enami 		return (1);
    369   1.1     enami 	}
    370  1.18        is 	return (0);
    371  1.18        is }
    372  1.18        is 
    373  1.18        is int
    374  1.18        is mbe_pcmcia_get_enaddr_from_mem(psc, ea)
    375  1.18        is 	struct mbe_pcmcia_softc *psc;
    376  1.18        is 	struct mbe_pcmcia_get_enaddr_args *ea;
    377  1.18        is {
    378  1.18        is 	struct mb86960_softc *sc = &psc->sc_mb86960;
    379  1.18        is 	struct pcmcia_mem_handle pcmh;
    380  1.22     soren 	bus_size_t offset;
    381  1.20     enami 	int i, mwindow, rv = 1;
    382  1.18        is 
    383  1.18        is 	if (ea->maddr < 0)
    384  1.20     enami 		goto bad_memaddr;
    385  1.18        is 
    386  1.18        is 	if (pcmcia_mem_alloc(psc->sc_pf, ETHER_ADDR_LEN * 2, &pcmh)) {
    387  1.18        is 		printf("%s: can't alloc mem for enet addr\n",
    388  1.19     enami 		    sc->sc_dev.dv_xname);
    389  1.20     enami 		goto memalloc_failed;
    390  1.18        is 	}
    391  1.18        is 
    392  1.18        is 	if (pcmcia_mem_map(psc->sc_pf, PCMCIA_MEM_ATTR, ea->maddr,
    393  1.19     enami 	    ETHER_ADDR_LEN * 2, &pcmh, &offset, &mwindow)) {
    394  1.18        is 		printf("%s: can't map mem for enet addr\n",
    395  1.19     enami 		    sc->sc_dev.dv_xname);
    396  1.20     enami 		goto memmap_failed;
    397  1.18        is 	}
    398  1.18        is 
    399  1.18        is 	for (i = 0; i < ETHER_ADDR_LEN; i++)
    400  1.18        is 		ea->enaddr[i] = bus_space_read_1(pcmh.memt, pcmh.memh,
    401  1.19     enami 		    offset + (i * 2));
    402  1.18        is 
    403  1.20     enami 	rv = 0;
    404  1.18        is 	pcmcia_mem_unmap(psc->sc_pf, mwindow);
    405  1.20     enami memmap_failed:
    406  1.18        is 	pcmcia_mem_free(psc->sc_pf, &pcmh);
    407  1.20     enami memalloc_failed:
    408  1.20     enami bad_memaddr:
    409  1.18        is 
    410  1.20     enami 	return (rv);
    411   1.1     enami }
    412