#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_ath_pci.c,v 1.50 2018/12/09 10:38:53 jdolecek Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/errno.h>
#include <sys/device.h>
#include <sys/module.h>
#include <external/isc/atheros_hal/dist/ah.h>
#include <dev/ic/ath_netbsd.h>
#include <dev/ic/athvar.h>
#include <dev/pci/pcivar.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcidevs.h>
#define ATH_PCI_MMBA PCI_BAR(0)
struct ath_pci_softc {
struct ath_softc sc_sc;
pci_chipset_tag_t sc_pc;
pcitag_t sc_tag;
pci_intr_handle_t sc_pih;
void *sc_ih;
bus_space_tag_t sc_iot;
bus_space_handle_t sc_ioh;
bus_size_t sc_mapsz;
};
static void ath_pci_attach(device_t, device_t, void *);
static int ath_pci_detach(device_t, int);
static int ath_pci_match(device_t, cfdata_t, void *);
static bool ath_pci_setup(struct ath_pci_softc *);
CFATTACH_DECL_NEW(ath_pci, sizeof(struct ath_pci_softc),
ath_pci_match, ath_pci_attach, ath_pci_detach, NULL);
static int
ath_pci_match(device_t parent, cfdata_t match, void *aux)
{
const char *devname;
struct pci_attach_args *pa = aux;
devname = ath_hal_probe(PCI_VENDOR(pa->pa_id), PCI_PRODUCT(pa->pa_id));
return (devname != NULL) ? 1 : 0;
}
static bool
ath_pci_suspend(device_t self, const pmf_qual_t *qual)
{
struct ath_pci_softc *sc = device_private(self);
ath_suspend(&sc->sc_sc);
if (sc->sc_ih != NULL) {
pci_intr_disestablish(sc->sc_pc, sc->sc_ih);
sc->sc_ih = NULL;
}
return true;
}
static bool
ath_pci_resume(device_t self, const pmf_qual_t *qual)
{
struct ath_pci_softc *sc = device_private(self);
sc->sc_ih = pci_intr_establish_xname(sc->sc_pc, sc->sc_pih, IPL_NET,
ath_intr, &sc->sc_sc, device_xname(self));
if (sc->sc_ih == NULL) {
aprint_error_dev(self, "couldn't map interrupt\n");
return false;
}
return ath_resume(&sc->sc_sc);
}
static void
ath_pci_attach(device_t parent, device_t self, void *aux)
{
struct ath_pci_softc *psc = device_private(self);
struct ath_softc *sc = &psc->sc_sc;
struct pci_attach_args *pa = aux;
pci_chipset_tag_t pc = pa->pa_pc;
const char *intrstr = NULL;
const char *devname;
pcireg_t mem_type;
char intrbuf[PCI_INTRSTR_LEN];
sc->sc_dev = self;
sc->sc_dmat = pa->pa_dmat;
psc->sc_pc = pc;
psc->sc_tag = pa->pa_tag;
devname = ath_hal_probe(PCI_VENDOR(pa->pa_id), PCI_PRODUCT(pa->pa_id));
aprint_normal(": %s\n", devname);
if (!ath_pci_setup(psc))
goto bad;
mem_type = pci_mapreg_type(pc, pa->pa_tag, ATH_PCI_MMBA);
if (mem_type != PCI_MAPREG_TYPE_MEM &&
mem_type != PCI_MAPREG_MEM_TYPE_64BIT) {
aprint_error_dev(self, "bad pci register type %d\n",
(int)mem_type);
goto bad;
}
if (pci_mapreg_map(pa, ATH_PCI_MMBA, mem_type, 0, &psc->sc_iot,
&psc->sc_ioh, NULL, &psc->sc_mapsz) != 0) {
aprint_error_dev(self, "cannot map register space\n");
goto bad;
}
sc->sc_st = HALTAG(psc->sc_iot);
sc->sc_sh = HALHANDLE(psc->sc_ioh);
if (pci_intr_map(pa, &psc->sc_pih)) {
aprint_error("couldn't map interrupt\n");
goto bad1;
}
intrstr = pci_intr_string(pc, psc->sc_pih, intrbuf, sizeof(intrbuf));
psc->sc_ih = pci_intr_establish_xname(pc, psc->sc_pih, IPL_NET,
ath_intr, sc, device_xname(self));
if (psc->sc_ih == NULL) {
aprint_error("couldn't map interrupt\n");
goto bad1;
}
aprint_verbose_dev(self, "interrupting at %s\n", intrstr);
if (ath_attach(PCI_PRODUCT(pa->pa_id), sc) != 0)
goto bad3;
if (pmf_device_register(self, ath_pci_suspend, ath_pci_resume)) {
pmf_class_network_register(self, &sc->sc_if);
pmf_device_suspend(self, &sc->sc_qual);
} else
aprint_error_dev(self, "couldn't establish power handler\n");
return;
bad3:
pci_intr_disestablish(pc, psc->sc_ih);
psc->sc_ih = NULL;
bad1:
bus_space_unmap(psc->sc_iot, psc->sc_ioh, psc->sc_mapsz);
psc->sc_mapsz = 0;
bad:
return;
}
static int
ath_pci_detach(device_t self, int flags)
{
struct ath_pci_softc *psc = device_private(self);
int rv;
if ((rv = ath_detach(&psc->sc_sc)) != 0)
return rv;
pmf_device_deregister(self);
if (psc->sc_ih != NULL) {
pci_intr_disestablish(psc->sc_pc, psc->sc_ih);
psc->sc_ih = NULL;
}
if (psc->sc_mapsz != 0) {
bus_space_unmap(psc->sc_iot, psc->sc_ioh, psc->sc_mapsz);
psc->sc_mapsz = 0;
}
return 0;
}
static bool
ath_pci_setup(struct ath_pci_softc *sc)
{
int rc;
pcireg_t bhlc, csr, icr, lattimer;
if ((rc = pci_set_powerstate(sc->sc_pc, sc->sc_tag, PCI_PWR_D0)) != 0)
aprint_debug("%s: pci_set_powerstate %d\n", __func__, rc);
csr = pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_COMMAND_STATUS_REG);
csr |= PCI_COMMAND_MASTER_ENABLE | PCI_COMMAND_MEM_ENABLE;
pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_COMMAND_STATUS_REG, csr);
csr = pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_COMMAND_STATUS_REG);
if ((csr & PCI_COMMAND_MEM_ENABLE) == 0) {
aprint_error_dev(sc->sc_sc.sc_dev,
"couldn't enable memory mapping\n");
return false;
}
if ((csr & PCI_COMMAND_MASTER_ENABLE) == 0) {
aprint_error_dev(sc->sc_sc.sc_dev,
"couldn't enable bus mastering\n");
return false;
}
bhlc = pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_BHLC_REG);
icr = pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_INTERRUPT_REG);
lattimer = MAX(0x10, MIN(0xf8, 8 * PCI_MIN_GNT(icr)));
if (PCI_LATTIMER(bhlc) < lattimer) {
bhlc &= ~(PCI_LATTIMER_MASK << PCI_LATTIMER_SHIFT);
bhlc |= (lattimer << PCI_LATTIMER_SHIFT);
pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_BHLC_REG, bhlc);
}
return true;
}
MODULE(MODULE_CLASS_DRIVER, if_ath_pci, "ath,pci");
#ifdef _MODULE
#include "ioconf.c"
#endif
static int
if_ath_pci_modcmd(modcmd_t cmd, void *opaque)
{
int error = 0;
switch (cmd) {
case MODULE_CMD_INIT:
#ifdef _MODULE
error = config_init_component(cfdriver_ioconf_if_ath_pci,
cfattach_ioconf_if_ath_pci, cfdata_ioconf_if_ath_pci);
#endif
return error;
case MODULE_CMD_FINI:
#ifdef _MODULE
error = config_fini_component(cfdriver_ioconf_if_ath_pci,
cfattach_ioconf_if_ath_pci, cfdata_ioconf_if_ath_pci);
#endif
return error;
default:
return ENOTTY;
}
}