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