Home | History | Annotate | Line # | Download | only in cardbus
if_ath_cardbus.c revision 1.9.2.4
      1  1.9.2.4      yamt /*	$NetBSD: if_ath_cardbus.c,v 1.9.2.4 2006/08/11 15:43:59 yamt Exp $ */
      2      1.1    ichiro /*
      3      1.1    ichiro  * Copyright (c) 2003
      4      1.1    ichiro  *	Ichiro FUKUHARA <ichiro (at) ichiro.org>.
      5      1.1    ichiro  * All rights reserved.
      6      1.1    ichiro  *
      7      1.1    ichiro  * Redistribution and use in source and binary forms, with or without
      8      1.1    ichiro  * modification, are permitted provided that the following conditions
      9      1.1    ichiro  * are met:
     10      1.1    ichiro  * 1. Redistributions of source code must retain the above copyright
     11      1.1    ichiro  *    notice, this list of conditions and the following disclaimer.
     12      1.1    ichiro  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.1    ichiro  *    notice, this list of conditions and the following disclaimer in the
     14      1.1    ichiro  *    documentation and/or other materials provided with the distribution.
     15      1.1    ichiro  * 3. All advertising materials mentioning features or use of this software
     16      1.1    ichiro  *    must display the following acknowledgement:
     17      1.1    ichiro  *	This product includes software developed by Ichiro FUKUHARA.
     18      1.1    ichiro  * 4. The name of the company nor the name of the author may be used to
     19      1.1    ichiro  *    endorse or promote products derived from this software without specific
     20      1.1    ichiro  *    prior written permission.
     21      1.1    ichiro  *
     22      1.1    ichiro  * THIS SOFTWARE IS PROVIDED BY ICHIRO FUKUHARA ``AS IS'' AND ANY EXPRESS OR
     23      1.1    ichiro  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24      1.1    ichiro  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25      1.1    ichiro  * IN NO EVENT SHALL ICHIRO FUKUHARA OR THE VOICES IN HIS HEAD BE LIABLE FOR
     26      1.1    ichiro  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27      1.1    ichiro  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28      1.1    ichiro  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29      1.1    ichiro  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30      1.1    ichiro  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31      1.1    ichiro  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32      1.1    ichiro  * SUCH DAMAGE.
     33      1.1    ichiro  */
     34      1.1    ichiro /*
     35      1.1    ichiro  * CardBus bus front-end for the AR5001 Wireless LAN 802.11a/b/g CardBus.
     36      1.1    ichiro  */
     37      1.1    ichiro 
     38      1.1    ichiro #include <sys/cdefs.h>
     39  1.9.2.4      yamt __KERNEL_RCSID(0, "$NetBSD: if_ath_cardbus.c,v 1.9.2.4 2006/08/11 15:43:59 yamt Exp $");
     40      1.1    ichiro 
     41      1.1    ichiro #include "opt_inet.h"
     42      1.1    ichiro #include "opt_ns.h"
     43      1.1    ichiro #include "bpfilter.h"
     44      1.1    ichiro 
     45      1.1    ichiro #include <sys/param.h>
     46      1.6     perry #include <sys/systm.h>
     47      1.6     perry #include <sys/mbuf.h>
     48      1.1    ichiro #include <sys/malloc.h>
     49      1.1    ichiro #include <sys/kernel.h>
     50      1.1    ichiro #include <sys/socket.h>
     51      1.1    ichiro #include <sys/ioctl.h>
     52      1.1    ichiro #include <sys/errno.h>
     53      1.1    ichiro #include <sys/device.h>
     54      1.1    ichiro 
     55      1.1    ichiro #include <machine/endian.h>
     56      1.6     perry 
     57      1.1    ichiro #include <net/if.h>
     58      1.1    ichiro #include <net/if_dl.h>
     59      1.1    ichiro #include <net/if_media.h>
     60      1.1    ichiro #include <net/if_ether.h>
     61      1.1    ichiro 
     62      1.7    dyoung #include <net80211/ieee80211_netbsd.h>
     63      1.1    ichiro #include <net80211/ieee80211_var.h>
     64      1.1    ichiro 
     65      1.6     perry #if NBPFILTER > 0
     66      1.1    ichiro #include <net/bpf.h>
     67      1.6     perry #endif
     68      1.1    ichiro 
     69      1.1    ichiro #ifdef INET
     70      1.6     perry #include <netinet/in.h>
     71      1.1    ichiro #include <netinet/if_inarp.h>
     72      1.1    ichiro #endif
     73      1.1    ichiro 
     74      1.1    ichiro #ifdef NS
     75      1.1    ichiro #include <netns/ns.h>
     76      1.1    ichiro #include <netns/ns_if.h>
     77      1.1    ichiro #endif
     78      1.1    ichiro 
     79      1.1    ichiro #include <machine/bus.h>
     80      1.1    ichiro #include <machine/intr.h>
     81      1.1    ichiro 
     82      1.1    ichiro #include <dev/mii/miivar.h>
     83      1.1    ichiro #include <dev/mii/mii_bitbang.h>
     84      1.1    ichiro 
     85      1.7    dyoung #include <dev/ic/ath_netbsd.h>
     86      1.1    ichiro #include <dev/ic/athvar.h>
     87  1.9.2.2      yamt #include <contrib/dev/ath/ah.h>
     88      1.1    ichiro 
     89      1.1    ichiro #include <dev/pci/pcivar.h>
     90      1.1    ichiro #include <dev/pci/pcireg.h>
     91      1.1    ichiro #include <dev/pci/pcidevs.h>
     92      1.1    ichiro 
     93      1.1    ichiro #include <dev/cardbus/cardbusvar.h>
     94      1.4   mycroft #include <dev/pci/pcidevs.h>
     95      1.1    ichiro 
     96      1.1    ichiro /*
     97      1.1    ichiro  * PCI configuration space registers
     98      1.1    ichiro  */
     99      1.1    ichiro #define	ATH_PCI_MMBA		0x10	/* memory mapped base */
    100      1.1    ichiro 
    101      1.1    ichiro struct ath_cardbus_softc {
    102      1.1    ichiro 	struct ath_softc	sc_ath;
    103      1.1    ichiro 
    104      1.1    ichiro 	/* CardBus-specific goo. */
    105      1.1    ichiro 	void	*sc_ih;			/* interrupt handle */
    106      1.1    ichiro 	cardbus_devfunc_t sc_ct;	/* our CardBus devfuncs */
    107      1.1    ichiro 	cardbustag_t sc_tag;		/* our CardBus tag */
    108      1.1    ichiro 	bus_size_t sc_mapsize;		/* the size of mapped bus space region */
    109      1.1    ichiro 
    110      1.1    ichiro 	pcireg_t sc_bar_val;		/* value of the BAR */
    111      1.1    ichiro 
    112      1.1    ichiro 	int	sc_intrline;		/* interrupt line */
    113  1.9.2.3      yamt 	bus_space_tag_t sc_iot;
    114  1.9.2.3      yamt 	bus_space_handle_t sc_ioh;
    115  1.9.2.4      yamt 	void	*sc_sdhook;
    116      1.1    ichiro };
    117      1.1    ichiro 
    118      1.1    ichiro int	ath_cardbus_match(struct device *, struct cfdata *, void *);
    119      1.1    ichiro void	ath_cardbus_attach(struct device *, struct device *, void *);
    120      1.1    ichiro int	ath_cardbus_detach(struct device *, int);
    121  1.9.2.4      yamt void	ath_cardbus_shutdown(void *arg);
    122      1.1    ichiro 
    123      1.1    ichiro CFATTACH_DECL(ath_cardbus, sizeof(struct ath_cardbus_softc),
    124      1.1    ichiro     ath_cardbus_match, ath_cardbus_attach, ath_cardbus_detach, ath_activate);
    125      1.1    ichiro 
    126      1.1    ichiro void	ath_cardbus_setup(struct ath_cardbus_softc *);
    127      1.1    ichiro 
    128      1.1    ichiro int	ath_cardbus_enable(struct ath_softc *);
    129      1.1    ichiro void	ath_cardbus_disable(struct ath_softc *);
    130      1.1    ichiro void	ath_cardbus_power(struct ath_softc *, int);
    131      1.1    ichiro 
    132      1.1    ichiro int
    133      1.1    ichiro ath_cardbus_match(struct device *parent, struct cfdata *match,
    134      1.1    ichiro 	void *aux)
    135      1.1    ichiro {
    136      1.1    ichiro 	struct cardbus_attach_args *ca = aux;
    137      1.1    ichiro 	const char* devname;
    138      1.1    ichiro 
    139      1.1    ichiro 	devname = ath_hal_probe(PCI_VENDOR(ca->ca_id),
    140      1.1    ichiro 				PCI_PRODUCT(ca->ca_id));
    141      1.1    ichiro 
    142      1.1    ichiro 	if (devname)
    143      1.1    ichiro 		return (1);
    144      1.1    ichiro 
    145      1.1    ichiro 	return (0);
    146      1.1    ichiro }
    147      1.1    ichiro 
    148      1.1    ichiro void
    149      1.1    ichiro ath_cardbus_attach(struct device *parent, struct device *self,
    150      1.1    ichiro 	void *aux)
    151      1.1    ichiro {
    152  1.9.2.1      yamt 	struct ath_cardbus_softc *csc = device_private(self);
    153      1.1    ichiro 	struct ath_softc *sc = &csc->sc_ath;
    154      1.1    ichiro 	struct cardbus_attach_args *ca = aux;
    155      1.1    ichiro 	cardbus_devfunc_t ct = ca->ca_ct;
    156      1.1    ichiro 	bus_addr_t adr;
    157      1.1    ichiro 
    158      1.1    ichiro 	sc->sc_dmat = ca->ca_dmat;
    159      1.1    ichiro 	csc->sc_ct = ct;
    160      1.1    ichiro 	csc->sc_tag = ca->ca_tag;
    161      1.1    ichiro 
    162      1.5     enami 	printf("\n");
    163      1.5     enami 
    164      1.1    ichiro 	/*
    165      1.1    ichiro 	 * Power management hooks.
    166      1.1    ichiro 	 */
    167      1.1    ichiro 	sc->sc_enable = ath_cardbus_enable;
    168      1.1    ichiro 	sc->sc_disable = ath_cardbus_disable;
    169      1.1    ichiro 	sc->sc_power = ath_cardbus_power;
    170      1.1    ichiro 
    171  1.9.2.4      yamt 	csc->sc_sdhook = shutdownhook_establish(ath_cardbus_shutdown, csc);
    172  1.9.2.4      yamt 	if (csc->sc_sdhook == NULL) {
    173  1.9.2.4      yamt 		aprint_error("couldn't establish shutdown hook\n");
    174  1.9.2.4      yamt 		return;
    175  1.9.2.4      yamt 	}
    176  1.9.2.4      yamt 
    177      1.1    ichiro 	/*
    178      1.1    ichiro 	 * Map the device.
    179      1.1    ichiro 	 */
    180      1.1    ichiro 	if (Cardbus_mapreg_map(ct, ATH_PCI_MMBA, CARDBUS_MAPREG_TYPE_MEM, 0,
    181  1.9.2.3      yamt 	    &csc->sc_iot, &csc->sc_ioh, &adr, &csc->sc_mapsize) == 0) {
    182      1.1    ichiro #if rbus
    183      1.1    ichiro #else
    184      1.1    ichiro 		(*ct->ct_cf->cardbus_mem_open)(cc, 0, adr, adr+csc->sc_mapsize);
    185      1.1    ichiro #endif
    186      1.1    ichiro 		csc->sc_bar_val = adr | CARDBUS_MAPREG_TYPE_MEM;
    187      1.1    ichiro 	}
    188      1.1    ichiro 
    189      1.1    ichiro 	else {
    190      1.1    ichiro 		printf("%s: unable to map device registers\n",
    191      1.1    ichiro 		    sc->sc_dev.dv_xname);
    192  1.9.2.4      yamt 		shutdownhook_disestablish(csc->sc_sdhook);
    193      1.1    ichiro 		return;
    194      1.1    ichiro 	}
    195      1.1    ichiro 
    196  1.9.2.3      yamt 	sc->sc_st = HALTAG(csc->sc_iot);
    197  1.9.2.3      yamt 	sc->sc_sh = HALHANDLE(csc->sc_ioh);
    198  1.9.2.3      yamt 
    199      1.1    ichiro 	/*
    200      1.1    ichiro 	 * Set up the PCI configuration registers.
    201      1.1    ichiro 	 */
    202      1.1    ichiro 	ath_cardbus_setup(csc);
    203      1.1    ichiro 
    204      1.1    ichiro 	/* Remember which interrupt line. */
    205      1.1    ichiro 	csc->sc_intrline = ca->ca_intrline;
    206      1.1    ichiro 
    207      1.1    ichiro 	/*
    208      1.1    ichiro 	 * Finish off the attach.
    209      1.1    ichiro 	 */
    210      1.1    ichiro 	ath_attach(PCI_PRODUCT(ca->ca_id), sc);
    211      1.1    ichiro 
    212      1.9    dyoung #ifdef ath_powerdown
    213      1.1    ichiro 	/*
    214      1.1    ichiro 	 * Power down the socket.
    215      1.1    ichiro 	 */
    216      1.1    ichiro 	Cardbus_function_disable(csc->sc_ct);
    217      1.9    dyoung #endif /* ath_powerdown */
    218      1.1    ichiro }
    219      1.1    ichiro 
    220      1.1    ichiro int
    221      1.1    ichiro ath_cardbus_detach(struct device *self, int flags)
    222      1.1    ichiro {
    223  1.9.2.1      yamt 	struct ath_cardbus_softc *csc = device_private(self);
    224      1.1    ichiro 	struct ath_softc *sc = &csc->sc_ath;
    225      1.1    ichiro 	struct cardbus_devfunc *ct = csc->sc_ct;
    226      1.1    ichiro 	int rv;
    227      1.1    ichiro 
    228      1.1    ichiro #if defined(DIAGNOSTIC)
    229      1.1    ichiro 	if (ct == NULL)
    230      1.1    ichiro 		panic("%s: data structure lacks", sc->sc_dev.dv_xname);
    231      1.1    ichiro #endif
    232      1.1    ichiro 
    233  1.9.2.4      yamt 	shutdownhook_disestablish(csc->sc_sdhook);
    234  1.9.2.4      yamt 
    235      1.1    ichiro 	rv = ath_detach(sc);
    236      1.1    ichiro 	if (rv)
    237      1.1    ichiro 		return (rv);
    238      1.1    ichiro 
    239      1.1    ichiro 	/*
    240      1.1    ichiro 	 * Unhook the interrupt handler.
    241      1.1    ichiro 	 */
    242      1.1    ichiro 	if (csc->sc_ih != NULL)
    243      1.1    ichiro 		cardbus_intr_disestablish(ct->ct_cc, ct->ct_cf, csc->sc_ih);
    244      1.1    ichiro 		csc->sc_ih = NULL;
    245      1.1    ichiro 
    246      1.1    ichiro 	/*
    247      1.1    ichiro 	 * Release bus space and close window.
    248      1.1    ichiro 	 */
    249  1.9.2.3      yamt 	Cardbus_mapreg_unmap(ct, ATH_PCI_MMBA, csc->sc_iot, csc->sc_ioh,
    250  1.9.2.3      yamt 	    csc->sc_mapsize);
    251      1.1    ichiro 
    252      1.1    ichiro 	return (0);
    253      1.1    ichiro }
    254      1.1    ichiro 
    255  1.9.2.4      yamt void
    256  1.9.2.4      yamt ath_cardbus_shutdown(void *arg)
    257  1.9.2.4      yamt {
    258  1.9.2.4      yamt 	struct ath_cardbus_softc *csc;
    259  1.9.2.4      yamt 
    260  1.9.2.4      yamt 	csc = arg;
    261  1.9.2.4      yamt 
    262  1.9.2.4      yamt 	ath_shutdown(&csc->sc_ath);
    263  1.9.2.4      yamt }
    264  1.9.2.4      yamt 
    265      1.1    ichiro int
    266      1.1    ichiro ath_cardbus_enable(struct ath_softc *sc)
    267      1.1    ichiro {
    268      1.1    ichiro 	struct ath_cardbus_softc *csc = (void *) sc;
    269      1.1    ichiro 	cardbus_devfunc_t ct = csc->sc_ct;
    270      1.1    ichiro 	cardbus_chipset_tag_t cc = ct->ct_cc;
    271      1.1    ichiro 	cardbus_function_tag_t cf = ct->ct_cf;
    272      1.1    ichiro 
    273      1.1    ichiro 	/*
    274      1.1    ichiro 	 * Power on the socket.
    275      1.1    ichiro 	 */
    276      1.1    ichiro 	Cardbus_function_enable(ct);
    277      1.1    ichiro 
    278      1.1    ichiro 	/*
    279      1.1    ichiro 	 * Set up the PCI configuration registers.
    280      1.1    ichiro 	 */
    281      1.1    ichiro 	ath_cardbus_setup(csc);
    282      1.1    ichiro 
    283      1.1    ichiro 	/*
    284      1.1    ichiro 	 * Map and establish the interrupt.
    285      1.1    ichiro 	 */
    286      1.1    ichiro 	csc->sc_ih = cardbus_intr_establish(cc, cf, csc->sc_intrline, IPL_NET,
    287      1.1    ichiro 	    ath_intr, sc);
    288      1.1    ichiro 	if (csc->sc_ih == NULL) {
    289      1.1    ichiro 		printf("%s: unable to establish interrupt at %d\n",
    290      1.1    ichiro 		    sc->sc_dev.dv_xname, csc->sc_intrline);
    291      1.1    ichiro 		Cardbus_function_disable(csc->sc_ct);
    292      1.1    ichiro 		return (1);
    293      1.1    ichiro 	}
    294      1.1    ichiro 	printf("%s: interrupting at %d\n", sc->sc_dev.dv_xname,
    295      1.1    ichiro 		csc->sc_intrline);
    296      1.1    ichiro 
    297      1.1    ichiro 	return (0);
    298      1.1    ichiro }
    299      1.1    ichiro 
    300      1.1    ichiro void
    301      1.1    ichiro ath_cardbus_disable(struct ath_softc *sc)
    302      1.1    ichiro {
    303      1.1    ichiro 	struct ath_cardbus_softc *csc = (void *) sc;
    304      1.1    ichiro 	cardbus_devfunc_t ct = csc->sc_ct;
    305      1.1    ichiro 	cardbus_chipset_tag_t cc = ct->ct_cc;
    306      1.1    ichiro 	cardbus_function_tag_t cf = ct->ct_cf;
    307      1.1    ichiro 
    308      1.1    ichiro 	/* Unhook the interrupt handler. */
    309      1.1    ichiro 	cardbus_intr_disestablish(cc, cf, csc->sc_ih);
    310      1.1    ichiro 	csc->sc_ih = NULL;
    311      1.1    ichiro 
    312      1.9    dyoung #ifdef ath_powerdown
    313      1.1    ichiro 	/* Power down the socket. */
    314      1.1    ichiro 	Cardbus_function_disable(ct);
    315      1.9    dyoung #endif /* ath_powerdown */
    316      1.1    ichiro }
    317      1.1    ichiro 
    318      1.1    ichiro void
    319      1.1    ichiro ath_cardbus_power(struct ath_softc *sc, int why)
    320      1.1    ichiro {
    321      1.1    ichiro 	struct ath_cardbus_softc *csc = (void *) sc;
    322      1.1    ichiro 
    323      1.1    ichiro 	printf("%s: ath_cardbus_power\n", sc->sc_dev.dv_xname);
    324      1.1    ichiro 
    325      1.1    ichiro 	if (why == PWR_RESUME) {
    326      1.1    ichiro 		/*
    327      1.1    ichiro 		 * Give the PCI configuration registers a kick
    328      1.1    ichiro 		 * in the head.
    329      1.1    ichiro 		 */
    330      1.1    ichiro #ifdef DIAGNOSTIC
    331      1.1    ichiro 		if (ATH_IS_ENABLED(sc) == 0)
    332      1.1    ichiro 			panic("ath_cardbus_power");
    333      1.1    ichiro #endif
    334      1.1    ichiro 		ath_cardbus_setup(csc);
    335      1.1    ichiro 	}
    336      1.1    ichiro }
    337      1.1    ichiro 
    338      1.1    ichiro void
    339      1.1    ichiro ath_cardbus_setup(struct ath_cardbus_softc *csc)
    340      1.1    ichiro {
    341      1.1    ichiro 	struct ath_softc *sc = &csc->sc_ath;
    342      1.1    ichiro 	cardbus_devfunc_t ct = csc->sc_ct;
    343      1.1    ichiro 	cardbus_chipset_tag_t cc = ct->ct_cc;
    344      1.1    ichiro 	cardbus_function_tag_t cf = ct->ct_cf;
    345      1.1    ichiro 	pcireg_t reg;
    346      1.1    ichiro 
    347      1.2  christos 	(void)cardbus_setpowerstate(sc->sc_dev.dv_xname, ct, csc->sc_tag,
    348      1.2  christos 	    PCI_PWR_D0);
    349      1.1    ichiro 
    350      1.3   mycroft 	/* Program the BAR. */
    351      1.3   mycroft 	cardbus_conf_write(cc, cf, csc->sc_tag, ATH_PCI_MMBA,
    352      1.3   mycroft 	    csc->sc_bar_val);
    353      1.3   mycroft 
    354      1.1    ichiro 	/* Make sure the right access type is on the CardBus bridge. */
    355      1.1    ichiro 	(*ct->ct_cf->cardbus_ctrl)(cc, CARDBUS_MEM_ENABLE);
    356      1.1    ichiro 	(*ct->ct_cf->cardbus_ctrl)(cc, CARDBUS_BM_ENABLE);
    357      1.1    ichiro 
    358      1.1    ichiro 	/* Enable the appropriate bits in the PCI CSR. */
    359      1.1    ichiro 	reg = cardbus_conf_read(cc, cf, csc->sc_tag,
    360      1.1    ichiro 	    CARDBUS_COMMAND_STATUS_REG);
    361      1.1    ichiro 	reg |= CARDBUS_COMMAND_MASTER_ENABLE | CARDBUS_COMMAND_MEM_ENABLE;
    362      1.1    ichiro 	cardbus_conf_write(cc, cf, csc->sc_tag, CARDBUS_COMMAND_STATUS_REG,
    363      1.1    ichiro 	    reg);
    364      1.1    ichiro 
    365      1.1    ichiro 	/*
    366      1.1    ichiro 	 * Make sure the latency timer is set to some reasonable
    367      1.1    ichiro 	 * value.
    368      1.1    ichiro 	 */
    369      1.1    ichiro 	reg = cardbus_conf_read(cc, cf, csc->sc_tag, CARDBUS_BHLC_REG);
    370      1.1    ichiro 	if (CARDBUS_LATTIMER(reg) < 0x20) {
    371      1.1    ichiro 		reg &= ~(CARDBUS_LATTIMER_MASK << CARDBUS_LATTIMER_SHIFT);
    372      1.1    ichiro 		reg |= (0x20 << CARDBUS_LATTIMER_SHIFT);
    373      1.1    ichiro 		cardbus_conf_write(cc, cf, csc->sc_tag, CARDBUS_BHLC_REG, reg);
    374      1.1    ichiro 	}
    375      1.1    ichiro }
    376