#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <net/if.h>
#include <net/if_media.h>
#include <netinet/in.h>
#include <netinet/if_ether.h>
#include <net80211/ieee80211_radiotap.h>
#include <net80211/ieee80211_var.h>
#include <machine/bus.h>
#include <machine/intr.h>
#include <dev/ic/atwreg.h>
#include <dev/ic/atwvar.h>
#include <dev/pci/pcivar.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcidevs.h>
#define ATW_PCI_IOBA 0x10
#define ATW_PCI_MMBA 0x14
struct atw_pci_softc {
struct atw_softc psc_atw;
pci_intr_handle_t psc_ih;
void *psc_intrcookie;
pci_chipset_tag_t psc_pc;
pcitag_t psc_pcitag;
};
int atw_pci_match(struct device *, void *, void *);
void atw_pci_attach(struct device *, struct device *, void *);
int atw_pci_detach(struct device *, int);
const struct cfattach atw_pci_ca = {
sizeof (struct atw_softc), atw_pci_match, atw_pci_attach, atw_pci_detach,
atw_activate
};
const struct pci_matchid atw_pci_devices[] = {
{ PCI_VENDOR_ADMTEK, PCI_PRODUCT_ADMTEK_ADM8211 },
{ PCI_VENDOR_3COM, PCI_PRODUCT_3COM_3CRSHPW796 }
};
int
atw_pci_match(struct device *parent, void *match, void *aux)
{
return (pci_matchbyid((struct pci_attach_args *)aux, atw_pci_devices,
nitems(atw_pci_devices)));
}
static int
atw_pci_enable(struct atw_softc *sc)
{
struct atw_pci_softc *psc = (void *)sc;
psc->psc_intrcookie = pci_intr_establish(psc->psc_pc, psc->psc_ih,
IPL_NET, atw_intr, sc, sc->sc_dev.dv_xname);
if (psc->psc_intrcookie == NULL) {
printf("%s: unable to establish interrupt\n",
sc->sc_dev.dv_xname);
return (1);
}
return (0);
}
static void
atw_pci_disable(struct atw_softc *sc)
{
struct atw_pci_softc *psc = (void *)sc;
pci_intr_disestablish(psc->psc_pc, psc->psc_intrcookie);
psc->psc_intrcookie = NULL;
}
void
atw_pci_attach(struct device *parent, struct device *self, void *aux)
{
struct atw_pci_softc *psc = (void *) self;
struct atw_softc *sc = &psc->psc_atw;
struct pci_attach_args *pa = aux;
pci_chipset_tag_t pc = pa->pa_pc;
const char *intrstr = NULL;
bus_space_tag_t iot, memt;
bus_space_handle_t ioh, memh;
bus_size_t iosize, memsize;
int ioh_valid, memh_valid;
psc->psc_pc = pa->pa_pc;
psc->psc_pcitag = pa->pa_tag;
sc->sc_flags |= ATWF_ENABLED;
sc->sc_rev = PCI_REVISION(pa->pa_class);
pci_set_powerstate(pc, pa->pa_tag, PCI_PMCSR_STATE_D0);
ioh_valid = (pci_mapreg_map(pa, ATW_PCI_IOBA,
PCI_MAPREG_TYPE_IO, 0,
&iot, &ioh, NULL, &iosize, 0) == 0);
memh_valid = (pci_mapreg_map(pa, ATW_PCI_MMBA,
PCI_MAPREG_TYPE_MEM|PCI_MAPREG_MEM_TYPE_32BIT, 0,
&memt, &memh, NULL, &memsize, 0) == 0);
if (memh_valid) {
sc->sc_st = memt;
sc->sc_sh = memh;
sc->sc_mapsize = memsize;
} else if (ioh_valid) {
sc->sc_st = iot;
sc->sc_sh = ioh;
sc->sc_mapsize = iosize;
} else {
printf(": unable to map device registers\n");
return;
}
sc->sc_dmat = pa->pa_dmat;
sc->sc_cacheline = PCI_CACHELINE(pci_conf_read(pc, pa->pa_tag,
PCI_BHLC_REG));
if (pa->pa_flags & PCI_FLAGS_MRL_OKAY)
sc->sc_flags |= ATWF_MRL;
if (pa->pa_flags & PCI_FLAGS_MRM_OKAY)
sc->sc_flags |= ATWF_MRM;
if (pa->pa_flags & PCI_FLAGS_MWI_OKAY)
sc->sc_flags |= ATWF_MWI;
if (pci_intr_map(pa, &psc->psc_ih)) {
printf(": unable to map interrupt\n");
return;
}
intrstr = pci_intr_string(pc, psc->psc_ih);
psc->psc_intrcookie = pci_intr_establish(pc, psc->psc_ih, IPL_NET,
atw_intr, sc, sc->sc_dev.dv_xname);
if (psc->psc_intrcookie == NULL) {
printf(": unable to establish interrupt");
if (intrstr != NULL)
printf(" at %s", intrstr);
printf("\n");
return;
}
printf(": %s\n", intrstr);
sc->sc_enable = atw_pci_enable;
sc->sc_disable = atw_pci_disable;
atw_attach(sc);
}
int
atw_pci_detach(struct device *self, int flags)
{
struct atw_pci_softc *psc = (void *)self;
struct atw_softc *sc = &psc->psc_atw;
int rv;
rv = atw_detach(sc);
if (rv)
return (rv);
if (psc->psc_intrcookie != NULL)
pci_intr_disestablish(psc->psc_pc, psc->psc_intrcookie);
bus_space_unmap(sc->sc_st, sc->sc_sh, sc->sc_mapsize);
return (0);
}