diff options
author | Damien Bergamini <damien@cvs.openbsd.org> | 2009-11-14 16:55:12 +0000 |
---|---|---|
committer | Damien Bergamini <damien@cvs.openbsd.org> | 2009-11-14 16:55:12 +0000 |
commit | 07f1b17cbe2d5d588c48d41b1c9e7f38d757329f (patch) | |
tree | 5ea86d4058aa63b25ddea485dfbd960941df0d05 /sys/dev/pci | |
parent | 243dc61326c89d883d7414f28251ebfa80ca99b8 (diff) |
athn(4), a driver for Atheros 802.11a/g/n devices.
written from scratch based on the vendor driver for Linux (ath9k).
AR9285 and AR9287 parts are 100% untested.
only basic functionnalities are enabled for now.
committed over an AR9281.
"commit" deraadt
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/files.pci | 6 | ||||
-rw-r--r-- | sys/dev/pci/if_athn_pci.c | 206 |
2 files changed, 211 insertions, 1 deletions
diff --git a/sys/dev/pci/files.pci b/sys/dev/pci/files.pci index beca9949f68..973c8a6a495 100644 --- a/sys/dev/pci/files.pci +++ b/sys/dev/pci/files.pci @@ -1,4 +1,4 @@ -# $OpenBSD: files.pci,v 1.265 2009/10/27 11:19:04 dlg Exp $ +# $OpenBSD: files.pci,v 1.266 2009/11/14 16:55:11 damien Exp $ # $NetBSD: files.pci,v 1.20 1996/09/24 17:47:15 christos Exp $ # # Config file and device description for machine-independent PCI code. @@ -669,6 +669,10 @@ file dev/pci/if_bce.c bce attach ath at pci with ath_pci file dev/pci/if_ath_pci.c ath_pci +# Atheros AR9k (802.11a/g/n) +attach athn at pci with athn_pci +file dev/pci/if_athn_pci.c athn_pci + # ADMtek ADM8211 PCI/Mini-PCI attach atw at pci with atw_pci file dev/pci/if_atw_pci.c atw_pci diff --git a/sys/dev/pci/if_athn_pci.c b/sys/dev/pci/if_athn_pci.c new file mode 100644 index 00000000000..0ec3596af17 --- /dev/null +++ b/sys/dev/pci/if_athn_pci.c @@ -0,0 +1,206 @@ +/* $OpenBSD: if_athn_pci.c,v 1.1 2009/11/14 16:55:11 damien Exp $ */ + +/*- + * Copyright (c) 2009 Damien Bergamini <damien.bergamini@free.fr> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +/* + * PCI front-end for Atheros 802.11a/g/n chipsets. + */ + +#include "bpfilter.h" + +#include <sys/param.h> +#include <sys/sockio.h> +#include <sys/mbuf.h> +#include <sys/kernel.h> +#include <sys/socket.h> +#include <sys/systm.h> +#include <sys/malloc.h> +#include <sys/timeout.h> +#include <sys/device.h> + +#include <machine/bus.h> +#include <machine/intr.h> + +#include <net/if.h> +#include <net/if_dl.h> +#include <net/if_media.h> + +#include <netinet/in.h> +#include <netinet/if_ether.h> + +#include <net80211/ieee80211_var.h> +#include <net80211/ieee80211_amrr.h> +#include <net80211/ieee80211_radiotap.h> + +#include <dev/ic/athnreg.h> +#include <dev/ic/athnvar.h> + +#include <dev/pci/pcireg.h> +#include <dev/pci/pcivar.h> +#include <dev/pci/pcidevs.h> + +#define PCI_SUBSYSID_ATHEROS_COEX2WIRE 0x309b +#define PCI_SUBSYSID_ATHEROS_COEX3WIRE_SA 0x30aa +#define PCI_SUBSYSID_ATHEROS_COEX3WIRE_DA 0x30ab + +struct athn_pci_softc { + struct athn_softc sc_sc; + + /* PCI specific goo. */ + pci_chipset_tag_t sc_pc; + pcitag_t sc_tag; + void *sc_ih; + bus_size_t sc_mapsize; + int sc_cap_off; +}; + +int athn_pci_match(struct device *, void *, void *); +void athn_pci_attach(struct device *, struct device *, void *); +int athn_pci_detach(struct device *, int); +void athn_pci_disable_aspm(struct athn_softc *); + +struct cfattach athn_pci_ca = { + sizeof (struct athn_pci_softc), + athn_pci_match, + athn_pci_attach, + athn_pci_detach +}; + +static const struct pci_matchid athn_pci_devices[] = { + { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR5416 }, + { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR5418 }, + { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR9160 }, + { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR9280 }, + { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR9281 }, + { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR9285 }, + { PCI_VENDOR_ATHEROS, PCI_PRODUCT_ATHEROS_AR9287 } +}; + +int +athn_pci_match(struct device *parent, void *match, void *aux) +{ + return (pci_matchbyid(aux, athn_pci_devices, + nitems(athn_pci_devices))); +} + +void +athn_pci_attach(struct device *parent, struct device *self, void *aux) +{ + struct athn_pci_softc *psc = (struct athn_pci_softc *)self; + struct athn_softc *sc = &psc->sc_sc; + struct pci_attach_args *pa = aux; + const char *intrstr; + pci_intr_handle_t ih; + pcireg_t memtype, reg; + pci_product_id_t subsysid; + int error; + + sc->sc_dmat = pa->pa_dmat; + psc->sc_pc = pa->pa_pc; + psc->sc_tag = pa->pa_tag; + + /* + * Get the offset of the PCI Express Capability Structure in PCI + * Configuration Space (Linux hardcodes it as 0x60.) + */ + error = pci_get_capability(pa->pa_pc, pa->pa_tag, PCI_CAP_PCIEXPRESS, + &psc->sc_cap_off, NULL); + if (error != 0) { /* Found. */ + sc->sc_disable_aspm = athn_pci_disable_aspm; + sc->flags |= ATHN_FLAG_PCIE; + } + /* + * Noone knows why this shit is necessary but there are claims that + * not doing this may cause very frequent PCI FATAL interrupts from + * the card: http://bugzilla.kernel.org/show_bug.cgi?id=13483 + */ + reg = pci_conf_read(pa->pa_pc, pa->pa_tag, 0x40); + reg &= ~0xff00; + pci_conf_write(pa->pa_pc, pa->pa_tag, 0x40, reg); + + /* Change latency timer; default value yields poor results. */ + reg = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_BHLC_REG); + reg &= ~(PCI_LATTIMER_MASK << PCI_LATTIMER_SHIFT); + reg |= 168 << PCI_LATTIMER_SHIFT; + pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_BHLC_REG, reg); + + /* Determine if bluetooth is also supported (combo chip.) */ + reg = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_SUBSYS_ID_REG); + subsysid = PCI_PRODUCT(reg); + if (subsysid == PCI_SUBSYSID_ATHEROS_COEX3WIRE_SA || + subsysid == PCI_SUBSYSID_ATHEROS_COEX3WIRE_DA) + sc->flags |= ATHN_FLAG_BTCOEX3WIRE; + else if (subsysid == PCI_SUBSYSID_ATHEROS_COEX2WIRE) + sc->flags |= ATHN_FLAG_BTCOEX2WIRE; + + /* Map control/status registers. */ + memtype = pci_mapreg_type(pa->pa_pc, pa->pa_tag, PCI_MAPREG_START); + error = pci_mapreg_map(pa, PCI_MAPREG_START, memtype, 0, &sc->sc_st, + &sc->sc_sh, NULL, &psc->sc_mapsize, 0); + if (error != 0) { + printf(": can't map mem space\n"); + return; + } + + if (pci_intr_map(pa, &ih) != 0) { + printf(": can't map interrupt\n"); + return; + } + intrstr = pci_intr_string(psc->sc_pc, ih); + psc->sc_ih = pci_intr_establish(psc->sc_pc, ih, IPL_NET, + athn_intr, sc, sc->sc_dev.dv_xname); + if (psc->sc_ih == NULL) { + printf(": can't establish interrupt"); + if (intrstr != NULL) + printf(" at %s", intrstr); + printf("\n"); + return; + } + printf(": %s", intrstr); + + athn_attach(sc); +} + +int +athn_pci_detach(struct device *self, int flags) +{ + struct athn_pci_softc *psc = (struct athn_pci_softc *)self; + struct athn_softc *sc = &psc->sc_sc; + + if (psc->sc_ih != NULL) { + athn_detach(sc); + pci_intr_disestablish(psc->sc_pc, psc->sc_ih); + } + if (psc->sc_mapsize > 0) + bus_space_unmap(sc->sc_st, sc->sc_sh, psc->sc_mapsize); + + return (0); +} + +void +athn_pci_disable_aspm(struct athn_softc *sc) +{ + struct athn_pci_softc *psc = (struct athn_pci_softc *)sc; + pcireg_t reg; + + /* Disable PCIe Active State Power Management (ASPM). */ + reg = pci_conf_read(psc->sc_pc, psc->sc_tag, + psc->sc_cap_off + PCI_PCIE_LCSR); + reg &= ~(PCI_PCIE_LCSR_ASPM_L0S | PCI_PCIE_LCSR_ASPM_L1); + pci_conf_write(psc->sc_pc, psc->sc_tag, + psc->sc_cap_off + PCI_PCIE_LCSR, reg); +} |