Home | History | Annotate | Line # | Download | only in pcmcia
if_an_pcmcia.c revision 1.30
      1  1.30  christos /* $NetBSD: if_an_pcmcia.c,v 1.30 2006/10/12 01:31:50 christos Exp $ */
      2   1.1      onoe 
      3   1.1      onoe /*-
      4  1.22   mycroft  * Copyright (c) 2000, 2004 The NetBSD Foundation, Inc.
      5   1.1      onoe  * All rights reserved.
      6   1.1      onoe  *
      7   1.1      onoe  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1      onoe  * by Atsushi Onoe
      9   1.1      onoe  *
     10   1.1      onoe  * Redistribution and use in source and binary forms, with or without
     11   1.1      onoe  * modification, are permitted provided that the following conditions
     12   1.1      onoe  * are met:
     13   1.1      onoe  * 1. Redistributions of source code must retain the above copyright
     14   1.1      onoe  *    notice, this list of conditions and the following disclaimer.
     15   1.1      onoe  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1      onoe  *    notice, this list of conditions and the following disclaimer in the
     17   1.1      onoe  *    documentation and/or other materials provided with the distribution.
     18   1.1      onoe  * 3. All advertising materials mentioning features or use of this software
     19   1.1      onoe  *    must display the following acknowledgement:
     20   1.1      onoe  *        This product includes software developed by the NetBSD
     21   1.1      onoe  *        Foundation, Inc. and its contributors.
     22   1.1      onoe  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23   1.1      onoe  *    contributors may be used to endorse or promote products derived
     24   1.1      onoe  *    from this software without specific prior written permission.
     25   1.1      onoe  *
     26   1.1      onoe  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27   1.1      onoe  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28   1.1      onoe  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29   1.1      onoe  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30   1.1      onoe  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31   1.1      onoe  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.1      onoe  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.1      onoe  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34   1.1      onoe  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.1      onoe  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36   1.1      onoe  * POSSIBILITY OF SUCH DAMAGE.
     37   1.1      onoe  */
     38  1.11     lukem 
     39  1.11     lukem #include <sys/cdefs.h>
     40  1.30  christos __KERNEL_RCSID(0, "$NetBSD: if_an_pcmcia.c,v 1.30 2006/10/12 01:31:50 christos Exp $");
     41   1.1      onoe 
     42   1.1      onoe #include <sys/param.h>
     43   1.1      onoe #include <sys/systm.h>
     44   1.1      onoe #include <sys/callout.h>
     45   1.1      onoe #include <sys/mbuf.h>
     46   1.1      onoe #include <sys/socket.h>
     47   1.1      onoe #include <sys/ioctl.h>
     48   1.1      onoe #include <sys/errno.h>
     49   1.1      onoe #include <sys/syslog.h>
     50   1.1      onoe #include <sys/select.h>
     51   1.1      onoe #include <sys/device.h>
     52   1.1      onoe 
     53   1.1      onoe #include <net/if.h>
     54   1.1      onoe #include <net/if_dl.h>
     55   1.1      onoe #include <net/if_ether.h>
     56   1.1      onoe #include <net/if_media.h>
     57  1.16    dyoung 
     58  1.27    dyoung #include <net80211/ieee80211_netbsd.h>
     59  1.16    dyoung #include <net80211/ieee80211_var.h>
     60   1.1      onoe 
     61   1.1      onoe #include <machine/cpu.h>
     62   1.1      onoe #include <machine/bus.h>
     63   1.1      onoe #include <machine/intr.h>
     64   1.1      onoe 
     65   1.3      onoe #include <dev/ic/anreg.h>
     66   1.1      onoe #include <dev/ic/anvar.h>
     67   1.1      onoe 
     68   1.1      onoe #include <dev/pcmcia/pcmciareg.h>
     69   1.1      onoe #include <dev/pcmcia/pcmciavar.h>
     70   1.1      onoe #include <dev/pcmcia/pcmciadevs.h>
     71   1.1      onoe 
     72  1.26     perry static int an_pcmcia_match(struct device *, struct cfdata *, void *);
     73  1.26     perry static int an_pcmcia_validate_config(struct pcmcia_config_entry *);
     74  1.26     perry static void an_pcmcia_attach(struct device *, struct device *, void *);
     75  1.26     perry static int an_pcmcia_detach(struct device *, int);
     76  1.26     perry static int an_pcmcia_enable(struct an_softc *);
     77  1.26     perry static void an_pcmcia_disable(struct an_softc *);
     78   1.1      onoe 
     79   1.1      onoe struct an_pcmcia_softc {
     80   1.5      onoe 	struct an_softc sc_an;			/* real "an" softc */
     81   1.1      onoe 
     82   1.1      onoe 	/* PCMCIA-specific goo */
     83   1.1      onoe 	struct pcmcia_io_handle sc_pcioh;	/* PCMCIA i/o space info */
     84   1.1      onoe 	int sc_io_window;			/* our i/o window */
     85   1.1      onoe 	struct pcmcia_function *sc_pf;		/* our PCMCIA function */
     86   1.5      onoe 	void *sc_ih;				/* interrupt handle */
     87   1.1      onoe 	void *sc_powerhook;			/* power hook descriptor */
     88  1.25   mycroft 
     89  1.25   mycroft 	int sc_state;
     90  1.25   mycroft #define	AN_PCMCIA_ATTACHED	3
     91   1.1      onoe };
     92   1.1      onoe 
     93  1.13   thorpej CFATTACH_DECL(an_pcmcia, sizeof(struct an_pcmcia_softc),
     94  1.14   thorpej     an_pcmcia_match, an_pcmcia_attach, an_pcmcia_detach, an_activate);
     95   1.1      onoe 
     96  1.24   mycroft static const struct pcmcia_product an_pcmcia_products[] = {
     97   1.1      onoe 	{ PCMCIA_VENDOR_AIRONET,	PCMCIA_PRODUCT_AIRONET_PC4800,
     98  1.18   mycroft 	  PCMCIA_CIS_AIRONET_PC4800 },
     99   1.4      onoe 	{ PCMCIA_VENDOR_AIRONET,	PCMCIA_PRODUCT_AIRONET_PC4500,
    100  1.18   mycroft 	  PCMCIA_CIS_AIRONET_PC4500 },
    101   1.9      onoe 	{ PCMCIA_VENDOR_AIRONET,	PCMCIA_PRODUCT_AIRONET_350,
    102  1.18   mycroft 	  PCMCIA_CIS_AIRONET_350 },
    103   1.1      onoe };
    104  1.22   mycroft static const size_t an_pcmcia_nproducts =
    105  1.22   mycroft     sizeof(an_pcmcia_products) / sizeof(an_pcmcia_products[0]);
    106   1.1      onoe 
    107   1.1      onoe static int
    108  1.30  christos an_pcmcia_match(struct device *parent __unused, struct cfdata *match __unused,
    109  1.30  christos     void *aux)
    110   1.1      onoe {
    111   1.1      onoe 	struct pcmcia_attach_args *pa = aux;
    112   1.1      onoe 
    113  1.22   mycroft 	if (pcmcia_product_lookup(pa, an_pcmcia_products, an_pcmcia_nproducts,
    114  1.22   mycroft 	    sizeof(an_pcmcia_products[0]), NULL))
    115  1.22   mycroft 		return (1);
    116  1.22   mycroft 	return (0);
    117   1.1      onoe }
    118   1.1      onoe 
    119  1.25   mycroft static int
    120  1.25   mycroft an_pcmcia_validate_config(cfe)
    121  1.25   mycroft 	struct pcmcia_config_entry *cfe;
    122  1.25   mycroft {
    123  1.25   mycroft 	if (cfe->iftype != PCMCIA_IFTYPE_IO ||
    124  1.25   mycroft 	    cfe->num_iospace < 1)
    125  1.25   mycroft 		return (EINVAL);
    126  1.25   mycroft 	return (0);
    127  1.25   mycroft }
    128  1.25   mycroft 
    129   1.1      onoe static void
    130  1.30  christos an_pcmcia_attach(struct device  *parent __unused, struct device *self,
    131  1.30  christos     void *aux)
    132   1.1      onoe {
    133   1.1      onoe 	struct an_pcmcia_softc *psc = (void *)self;
    134   1.1      onoe 	struct an_softc *sc = &psc->sc_an;
    135   1.1      onoe 	struct pcmcia_attach_args *pa = aux;
    136   1.1      onoe 	struct pcmcia_config_entry *cfe;
    137  1.25   mycroft 	int error;
    138   1.8      onoe 
    139   1.7      onoe 	psc->sc_pf = pa->pf;
    140   1.7      onoe 
    141  1.25   mycroft 	error = pcmcia_function_configure(pa->pf, an_pcmcia_validate_config);
    142  1.25   mycroft 	if (error) {
    143  1.25   mycroft 		aprint_error("%s: configure failed, error=%d\n", self->dv_xname,
    144  1.25   mycroft 		    error);
    145  1.25   mycroft 		return;
    146   1.7      onoe 	}
    147   1.1      onoe 
    148  1.25   mycroft 	cfe = pa->pf->cfe;
    149  1.25   mycroft 	sc->sc_iot = cfe->iospace[0].handle.iot;
    150  1.25   mycroft 	sc->sc_ioh = cfe->iospace[0].handle.ioh;
    151  1.25   mycroft 
    152  1.25   mycroft 	error = an_pcmcia_enable(sc);
    153  1.25   mycroft 	if (error)
    154  1.25   mycroft 		goto fail;
    155   1.7      onoe 
    156   1.1      onoe 	sc->sc_enabled = 1;
    157   1.1      onoe 	sc->sc_enable = an_pcmcia_enable;
    158   1.1      onoe 	sc->sc_disable = an_pcmcia_disable;
    159   1.1      onoe 
    160  1.25   mycroft 	error = an_attach(sc);
    161  1.25   mycroft 	if (error) {
    162  1.25   mycroft 		aprint_error("%s: failed to attach controller\n",
    163  1.25   mycroft 		    self->dv_xname);
    164  1.25   mycroft 		goto fail2;
    165   1.1      onoe 	}
    166  1.25   mycroft 
    167  1.29  jmcneill 	psc->sc_powerhook = powerhook_establish(self->dv_xname, an_power, sc);
    168   1.1      onoe 
    169  1.25   mycroft 	an_pcmcia_disable(sc);
    170  1.21   mycroft 	sc->sc_enabled = 0;
    171  1.25   mycroft 	psc->sc_state = AN_PCMCIA_ATTACHED;
    172   1.1      onoe 	return;
    173   1.1      onoe 
    174  1.25   mycroft fail2:
    175  1.25   mycroft 	an_pcmcia_disable(sc);
    176  1.21   mycroft 	sc->sc_enabled = 0;
    177  1.25   mycroft fail:
    178  1.25   mycroft 	pcmcia_function_unconfigure(pa->pf);
    179   1.1      onoe }
    180   1.1      onoe 
    181   1.1      onoe 
    182   1.1      onoe static int
    183  1.30  christos an_pcmcia_detach(struct device *self, int flags __unused)
    184   1.1      onoe {
    185  1.25   mycroft 	struct an_pcmcia_softc *psc = (void *)self;
    186   1.1      onoe 	int error;
    187   1.1      onoe 
    188  1.25   mycroft 	if (psc->sc_state != AN_PCMCIA_ATTACHED)
    189   1.1      onoe 		return (0);
    190   1.1      onoe 
    191  1.25   mycroft 	if (psc->sc_powerhook)
    192   1.1      onoe 		powerhook_disestablish(psc->sc_powerhook);
    193   1.1      onoe 
    194   1.1      onoe 	error = an_detach(&psc->sc_an);
    195  1.25   mycroft 	if (error)
    196   1.1      onoe 		return (error);
    197   1.1      onoe 
    198  1.25   mycroft 	pcmcia_function_unconfigure(psc->sc_pf);
    199   1.1      onoe 
    200   1.1      onoe 	return (0);
    201   1.1      onoe }
    202  1.25   mycroft 
    203  1.25   mycroft static int
    204  1.25   mycroft an_pcmcia_enable(sc)
    205  1.25   mycroft 	struct an_softc *sc;
    206  1.25   mycroft {
    207  1.25   mycroft 	struct an_pcmcia_softc *psc = (void *)sc;
    208  1.25   mycroft 	int error;
    209  1.25   mycroft 
    210  1.25   mycroft 	/* establish the interrupt. */
    211  1.25   mycroft 	psc->sc_ih = pcmcia_intr_establish(psc->sc_pf, IPL_NET, an_intr, sc);
    212  1.25   mycroft 	if (!psc->sc_ih)
    213  1.25   mycroft 		return (EIO);
    214  1.25   mycroft 
    215  1.25   mycroft 	error = pcmcia_function_enable(psc->sc_pf);
    216  1.25   mycroft 	if (error) {
    217  1.25   mycroft 		pcmcia_intr_disestablish(psc->sc_pf, psc->sc_ih);
    218  1.25   mycroft 		psc->sc_ih = 0;
    219  1.25   mycroft 	}
    220  1.25   mycroft 
    221  1.25   mycroft 	return (error);
    222  1.25   mycroft }
    223  1.25   mycroft 
    224  1.25   mycroft static void
    225  1.25   mycroft an_pcmcia_disable(sc)
    226  1.25   mycroft 	struct an_softc *sc;
    227  1.25   mycroft {
    228  1.25   mycroft 	struct an_pcmcia_softc *psc = (void *)sc;
    229  1.25   mycroft 
    230  1.25   mycroft 	pcmcia_function_disable(psc->sc_pf);
    231  1.25   mycroft 	pcmcia_intr_disestablish(psc->sc_pf, psc->sc_ih);
    232  1.25   mycroft 	psc->sc_ih = 0;
    233  1.25   mycroft }
    234