Home | History | Annotate | Line # | Download | only in pci
if_rtw_pci.c revision 1.4.8.3
      1  1.4.8.3      yamt /*	$NetBSD: if_rtw_pci.c,v 1.4.8.3 2006/09/03 15:24:22 yamt Exp $	*/
      2      1.1    dyoung 
      3      1.1    dyoung /*-
      4      1.1    dyoung  * Copyright (c) 1998, 1999, 2000, 2002 The NetBSD Foundation, Inc.
      5      1.1    dyoung  * All rights reserved.
      6      1.1    dyoung  *
      7      1.1    dyoung  * This code is derived from software contributed to The NetBSD Foundation
      8      1.1    dyoung  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9      1.1    dyoung  * NASA Ames Research Center; Charles M. Hannum; and David Young.
     10      1.1    dyoung  *
     11      1.1    dyoung  * Redistribution and use in source and binary forms, with or without
     12      1.1    dyoung  * modification, are permitted provided that the following conditions
     13      1.1    dyoung  * are met:
     14      1.1    dyoung  * 1. Redistributions of source code must retain the above copyright
     15      1.1    dyoung  *    notice, this list of conditions and the following disclaimer.
     16      1.1    dyoung  * 2. Redistributions in binary form must reproduce the above copyright
     17      1.1    dyoung  *    notice, this list of conditions and the following disclaimer in the
     18      1.1    dyoung  *    documentation and/or other materials provided with the distribution.
     19      1.1    dyoung  * 3. All advertising materials mentioning features or use of this software
     20      1.1    dyoung  *    must display the following acknowledgement:
     21      1.1    dyoung  *	This product includes software developed by the NetBSD
     22      1.1    dyoung  *	Foundation, Inc. and its contributors.
     23      1.1    dyoung  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24      1.1    dyoung  *    contributors may be used to endorse or promote products derived
     25      1.1    dyoung  *    from this software without specific prior written permission.
     26      1.1    dyoung  *
     27      1.1    dyoung  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28      1.1    dyoung  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29      1.1    dyoung  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30      1.1    dyoung  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31      1.1    dyoung  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32      1.1    dyoung  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33      1.1    dyoung  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34      1.1    dyoung  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35      1.1    dyoung  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36      1.1    dyoung  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37      1.1    dyoung  * POSSIBILITY OF SUCH DAMAGE.
     38      1.1    dyoung  */
     39      1.1    dyoung 
     40      1.1    dyoung /*
     41      1.1    dyoung  * PCI bus front-end for the Realtek RTL8180 802.11 MAC/BBP chip.
     42      1.1    dyoung  *
     43      1.1    dyoung  * Derived from the ADMtek ADM8211 PCI bus front-end.
     44      1.1    dyoung  *
     45      1.1    dyoung  * Derived from the ``Tulip'' PCI bus front-end.
     46      1.1    dyoung  */
     47      1.1    dyoung 
     48      1.1    dyoung #include <sys/cdefs.h>
     49  1.4.8.3      yamt __KERNEL_RCSID(0, "$NetBSD: if_rtw_pci.c,v 1.4.8.3 2006/09/03 15:24:22 yamt Exp $");
     50      1.1    dyoung 
     51      1.1    dyoung #include <sys/param.h>
     52      1.2     perry #include <sys/systm.h>
     53      1.2     perry #include <sys/mbuf.h>
     54      1.1    dyoung #include <sys/malloc.h>
     55      1.1    dyoung #include <sys/kernel.h>
     56      1.1    dyoung #include <sys/socket.h>
     57      1.1    dyoung #include <sys/ioctl.h>
     58      1.1    dyoung #include <sys/errno.h>
     59      1.1    dyoung #include <sys/device.h>
     60      1.1    dyoung 
     61      1.1    dyoung #include <machine/endian.h>
     62      1.2     perry 
     63      1.1    dyoung #include <net/if.h>
     64      1.1    dyoung #include <net/if_dl.h>
     65      1.1    dyoung #include <net/if_media.h>
     66      1.1    dyoung #include <net/if_ether.h>
     67      1.1    dyoung 
     68      1.3    dyoung #include <net80211/ieee80211_netbsd.h>
     69      1.1    dyoung #include <net80211/ieee80211_radiotap.h>
     70      1.1    dyoung #include <net80211/ieee80211_var.h>
     71      1.1    dyoung 
     72      1.1    dyoung #include <machine/bus.h>
     73      1.1    dyoung #include <machine/intr.h>
     74      1.1    dyoung 
     75      1.1    dyoung #include <dev/ic/rtwreg.h>
     76      1.1    dyoung #include <dev/ic/sa2400reg.h>
     77      1.1    dyoung #include <dev/ic/rtwvar.h>
     78      1.1    dyoung 
     79      1.1    dyoung #include <dev/pci/pcivar.h>
     80      1.1    dyoung #include <dev/pci/pcireg.h>
     81      1.1    dyoung #include <dev/pci/pcidevs.h>
     82      1.1    dyoung 
     83      1.1    dyoung /*
     84      1.1    dyoung  * PCI configuration space registers used by the ADM8211.
     85      1.1    dyoung  */
     86      1.1    dyoung #define	RTW_PCI_IOBA		0x10	/* i/o mapped base */
     87      1.1    dyoung #define	RTW_PCI_MMBA		0x14	/* memory mapped base */
     88      1.1    dyoung 
     89      1.1    dyoung struct rtw_pci_softc {
     90      1.1    dyoung 	struct rtw_softc	psc_rtw;	/* real ADM8211 softc */
     91      1.1    dyoung 
     92      1.1    dyoung 	pci_intr_handle_t	psc_ih;		/* interrupt handle */
     93      1.1    dyoung 	void			*psc_intrcookie;
     94      1.1    dyoung 
     95      1.1    dyoung 	pci_chipset_tag_t	psc_pc;		/* our PCI chipset */
     96      1.1    dyoung 	pcitag_t		psc_pcitag;	/* our PCI tag */
     97      1.1    dyoung };
     98      1.1    dyoung 
     99      1.1    dyoung static int	rtw_pci_match(struct device *, struct cfdata *, void *);
    100      1.1    dyoung static void	rtw_pci_attach(struct device *, struct device *, void *);
    101      1.1    dyoung 
    102      1.1    dyoung CFATTACH_DECL(rtw_pci, sizeof(struct rtw_pci_softc),
    103      1.1    dyoung     rtw_pci_match, rtw_pci_attach, NULL, NULL);
    104      1.1    dyoung 
    105      1.1    dyoung static const struct rtw_pci_product {
    106      1.1    dyoung 	u_int32_t	app_vendor;	/* PCI vendor ID */
    107      1.1    dyoung 	u_int32_t	app_product;	/* PCI product ID */
    108      1.1    dyoung 	const char	*app_product_name;
    109      1.1    dyoung } rtw_pci_products[] = {
    110      1.1    dyoung 	{ PCI_VENDOR_REALTEK,		PCI_PRODUCT_REALTEK_RT8180,
    111      1.1    dyoung 	  "Realtek RTL8180 802.11 MAC/BBP" },
    112      1.4  christos 	{ PCI_VENDOR_BELKIN,		PCI_PRODUCT_BELKIN_F5D6001,
    113      1.4  christos 	  "Belkin F5D6001" },
    114      1.1    dyoung 
    115      1.1    dyoung 	{ 0,				0,				NULL },
    116      1.1    dyoung };
    117      1.1    dyoung 
    118      1.1    dyoung static const struct rtw_pci_product *
    119      1.1    dyoung rtw_pci_lookup(const struct pci_attach_args *pa)
    120      1.1    dyoung {
    121      1.1    dyoung 	const struct rtw_pci_product *app;
    122      1.1    dyoung 
    123      1.1    dyoung 	for (app = rtw_pci_products;
    124      1.1    dyoung 	     app->app_product_name != NULL;
    125      1.1    dyoung 	     app++) {
    126      1.1    dyoung 		if (PCI_VENDOR(pa->pa_id) == app->app_vendor &&
    127      1.1    dyoung 		    PCI_PRODUCT(pa->pa_id) == app->app_product)
    128      1.1    dyoung 			return (app);
    129      1.1    dyoung 	}
    130      1.1    dyoung 	return (NULL);
    131      1.1    dyoung }
    132      1.1    dyoung 
    133      1.1    dyoung static int
    134      1.1    dyoung rtw_pci_match(struct device *parent, struct cfdata *match, void *aux)
    135      1.1    dyoung {
    136      1.1    dyoung 	struct pci_attach_args *pa = aux;
    137      1.1    dyoung 
    138      1.1    dyoung 	if (rtw_pci_lookup(pa) != NULL)
    139      1.1    dyoung 		return (1);
    140      1.1    dyoung 
    141      1.1    dyoung 	return (0);
    142      1.1    dyoung }
    143      1.1    dyoung 
    144      1.1    dyoung static int
    145      1.1    dyoung rtw_pci_enable(struct rtw_softc *sc)
    146      1.1    dyoung {
    147      1.1    dyoung 	struct rtw_pci_softc *psc = (void *)sc;
    148      1.1    dyoung 
    149      1.1    dyoung 	/* Establish the interrupt. */
    150      1.1    dyoung 	psc->psc_intrcookie = pci_intr_establish(psc->psc_pc, psc->psc_ih,
    151      1.1    dyoung 	    IPL_NET, rtw_intr, sc);
    152      1.1    dyoung 	if (psc->psc_intrcookie == NULL) {
    153  1.4.8.1      yamt 		aprint_error("%s: unable to establish interrupt\n",
    154      1.1    dyoung 		    sc->sc_dev.dv_xname);
    155      1.1    dyoung 		return (1);
    156      1.1    dyoung 	}
    157      1.1    dyoung 
    158      1.1    dyoung 	return (0);
    159      1.1    dyoung }
    160      1.1    dyoung 
    161      1.1    dyoung static void
    162      1.1    dyoung rtw_pci_disable(struct rtw_softc *sc)
    163      1.1    dyoung {
    164      1.1    dyoung 	struct rtw_pci_softc *psc = (void *)sc;
    165      1.1    dyoung 
    166      1.1    dyoung 	/* Unhook the interrupt handler. */
    167      1.1    dyoung 	pci_intr_disestablish(psc->psc_pc, psc->psc_intrcookie);
    168      1.1    dyoung 	psc->psc_intrcookie = NULL;
    169      1.1    dyoung }
    170      1.1    dyoung 
    171      1.1    dyoung static void
    172      1.1    dyoung rtw_pci_attach(struct device *parent, struct device *self, void *aux)
    173      1.1    dyoung {
    174      1.1    dyoung 	struct rtw_pci_softc *psc = (void *) self;
    175      1.1    dyoung 	struct rtw_softc *sc = &psc->psc_rtw;
    176      1.1    dyoung 	struct rtw_regs *regs = &sc->sc_regs;
    177      1.1    dyoung 	struct pci_attach_args *pa = aux;
    178      1.1    dyoung 	pci_chipset_tag_t pc = pa->pa_pc;
    179      1.1    dyoung 	const char *intrstr = NULL;
    180      1.1    dyoung 	bus_space_tag_t iot, memt;
    181      1.1    dyoung 	bus_space_handle_t ioh, memh;
    182      1.1    dyoung 	int ioh_valid, memh_valid;
    183      1.1    dyoung 	const struct rtw_pci_product *app;
    184  1.4.8.2      yamt 	int error;
    185      1.1    dyoung 
    186      1.1    dyoung 	psc->psc_pc = pa->pa_pc;
    187      1.1    dyoung 	psc->psc_pcitag = pa->pa_tag;
    188      1.1    dyoung 
    189      1.1    dyoung 	app = rtw_pci_lookup(pa);
    190      1.1    dyoung 	if (app == NULL) {
    191      1.1    dyoung 		printf("\n");
    192      1.1    dyoung 		panic("rtw_pci_attach: impossible");
    193      1.1    dyoung 	}
    194      1.1    dyoung 
    195      1.1    dyoung 	/*
    196      1.1    dyoung 	 * No power management hooks.
    197      1.1    dyoung 	 * XXX Maybe we should add some!
    198      1.1    dyoung 	 */
    199      1.1    dyoung 	sc->sc_flags |= RTW_F_ENABLED;
    200      1.1    dyoung 
    201      1.1    dyoung 	/*
    202      1.1    dyoung 	 * Get revision info, and set some chip-specific variables.
    203      1.1    dyoung 	 */
    204      1.1    dyoung 	sc->sc_rev = PCI_REVISION(pa->pa_class);
    205  1.4.8.1      yamt 	aprint_normal(": %s, revision %d.%d\n", app->app_product_name,
    206      1.1    dyoung 	    (sc->sc_rev >> 4) & 0xf, sc->sc_rev & 0xf);
    207      1.1    dyoung 
    208  1.4.8.2      yamt 	/* power up chip */
    209  1.4.8.2      yamt 	if ((error = pci_activate(pa->pa_pc, pa->pa_tag, sc,
    210  1.4.8.2      yamt 	    NULL)) && error != EOPNOTSUPP) {
    211  1.4.8.2      yamt 		aprint_error("%s: cannot activate %d\n", sc->sc_dev.dv_xname,
    212  1.4.8.2      yamt 		    error);
    213  1.4.8.2      yamt 		return;
    214      1.1    dyoung 	}
    215      1.1    dyoung 
    216      1.1    dyoung 	/*
    217      1.1    dyoung 	 * Map the device.
    218      1.1    dyoung 	 */
    219      1.1    dyoung 	ioh_valid = (pci_mapreg_map(pa, RTW_PCI_IOBA,
    220      1.1    dyoung 	    PCI_MAPREG_TYPE_IO, 0,
    221      1.1    dyoung 	    &iot, &ioh, NULL, NULL) == 0);
    222      1.1    dyoung 	memh_valid = (pci_mapreg_map(pa, RTW_PCI_MMBA,
    223      1.1    dyoung 	    PCI_MAPREG_TYPE_MEM|PCI_MAPREG_MEM_TYPE_32BIT, 0,
    224      1.1    dyoung 	    &memt, &memh, NULL, NULL) == 0);
    225      1.1    dyoung 
    226      1.1    dyoung 	if (memh_valid) {
    227      1.1    dyoung 		regs->r_bt = memt;
    228      1.1    dyoung 		regs->r_bh = memh;
    229      1.1    dyoung 	} else if (ioh_valid) {
    230      1.1    dyoung 		regs->r_bt = iot;
    231      1.1    dyoung 		regs->r_bh = ioh;
    232      1.1    dyoung 	} else {
    233  1.4.8.1      yamt 		aprint_error(": unable to map device registers\n");
    234      1.1    dyoung 		return;
    235      1.1    dyoung 	}
    236      1.1    dyoung 
    237      1.1    dyoung 	sc->sc_dmat = pa->pa_dmat;
    238      1.1    dyoung 
    239      1.1    dyoung 	/*
    240      1.1    dyoung 	 * Make sure bus mastering is enabled.
    241      1.1    dyoung 	 */
    242      1.1    dyoung 	pci_conf_write(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG,
    243      1.1    dyoung 	    pci_conf_read(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG) |
    244      1.1    dyoung 	    PCI_COMMAND_MASTER_ENABLE);
    245      1.1    dyoung 
    246      1.1    dyoung 	/*
    247      1.1    dyoung 	 * Map and establish our interrupt.
    248      1.1    dyoung 	 */
    249      1.1    dyoung 	if (pci_intr_map(pa, &psc->psc_ih)) {
    250  1.4.8.1      yamt 		aprint_error("%s: unable to map interrupt\n",
    251      1.1    dyoung 		    sc->sc_dev.dv_xname);
    252      1.1    dyoung 		return;
    253      1.1    dyoung 	}
    254      1.2     perry 	intrstr = pci_intr_string(pc, psc->psc_ih);
    255      1.1    dyoung 	psc->psc_intrcookie = pci_intr_establish(pc, psc->psc_ih, IPL_NET,
    256      1.1    dyoung 	    rtw_intr, sc);
    257      1.1    dyoung 	if (psc->psc_intrcookie == NULL) {
    258  1.4.8.1      yamt 		aprint_error("%s: unable to establish interrupt",
    259      1.1    dyoung 		    sc->sc_dev.dv_xname);
    260      1.1    dyoung 		if (intrstr != NULL)
    261  1.4.8.1      yamt 			aprint_error(" at %s", intrstr);
    262      1.1    dyoung 		printf("\n");
    263      1.1    dyoung 		return;
    264      1.1    dyoung 	}
    265      1.1    dyoung 
    266  1.4.8.1      yamt 	aprint_normal("%s: interrupting at %s\n", sc->sc_dev.dv_xname, intrstr);
    267      1.1    dyoung 
    268      1.1    dyoung 	sc->sc_enable = rtw_pci_enable;
    269      1.1    dyoung 	sc->sc_disable = rtw_pci_disable;
    270      1.1    dyoung 
    271      1.1    dyoung 	/*
    272      1.1    dyoung 	 * Finish off the attach.
    273      1.1    dyoung 	 */
    274      1.1    dyoung 	rtw_attach(sc);
    275      1.1    dyoung }
    276