Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/pci iwn(4): use MSI if available.
details: https://anonhg.NetBSD.org/src/rev/373d81597745
branches: trunk
changeset: 351093:373d81597745
user: nonaka <nonaka%NetBSD.org@localhost>
date: Thu Feb 02 03:20:19 2017 +0000
description:
iwn(4): use MSI if available.
diffstat:
sys/dev/pci/if_iwn.c | 49 ++++++++++++++++++++++++++++++-------------------
sys/dev/pci/if_iwnvar.h | 3 ++-
2 files changed, 32 insertions(+), 20 deletions(-)
diffs (145 lines):
diff -r a2eb3a365374 -r 373d81597745 sys/dev/pci/if_iwn.c
--- a/sys/dev/pci/if_iwn.c Thu Feb 02 02:52:10 2017 +0000
+++ b/sys/dev/pci/if_iwn.c Thu Feb 02 03:20:19 2017 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_iwn.c,v 1.82 2017/01/04 03:05:24 nonaka Exp $ */
+/* $NetBSD: if_iwn.c,v 1.83 2017/02/02 03:20:19 nonaka Exp $ */
/* $OpenBSD: if_iwn.c,v 1.135 2014/09/10 07:22:09 dcoppa Exp $ */
/*-
@@ -22,7 +22,7 @@
* adapters.
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_iwn.c,v 1.82 2017/01/04 03:05:24 nonaka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_iwn.c,v 1.83 2017/02/02 03:20:19 nonaka Exp $");
#define IWN_USE_RBUF /* Use local storage for RX */
#undef IWN_HWCRYPTO /* XXX does not even compile yet */
@@ -362,7 +362,6 @@
struct ifnet *ifp = &sc->sc_ec.ec_if;
struct pci_attach_args *pa = aux;
const char *intrstr;
- pci_intr_handle_t ih;
pcireg_t memtype, reg;
int i, error;
char intrbuf[PCI_INTRSTR_LEN];
@@ -395,14 +394,10 @@
if (reg & 0xff00)
pci_conf_write(sc->sc_pct, sc->sc_pcitag, 0x40, reg & ~0xff00);
- /* Enable bus-mastering and hardware bug workaround. */
+ /* Enable bus-mastering. */
/* XXX verify the bus-mastering is really needed (not in OpenBSD) */
reg = pci_conf_read(sc->sc_pct, sc->sc_pcitag, PCI_COMMAND_STATUS_REG);
reg |= PCI_COMMAND_MASTER_ENABLE;
- if (reg & PCI_COMMAND_INTERRUPT_DISABLE) {
- DPRINTF(("PCIe INTx Disable set\n"));
- reg &= ~PCI_COMMAND_INTERRUPT_DISABLE;
- }
pci_conf_write(sc->sc_pct, sc->sc_pcitag, PCI_COMMAND_STATUS_REG, reg);
memtype = pci_mapreg_type(pa->pa_pc, pa->pa_tag, IWN_PCI_BAR0);
@@ -414,18 +409,27 @@
}
/* Install interrupt handler. */
- if (pci_intr_map(pa, &ih) != 0) {
- aprint_error_dev(self, "can't map interrupt\n");
- return;
- }
- intrstr = pci_intr_string(sc->sc_pct, ih, intrbuf, sizeof(intrbuf));
- sc->sc_ih = pci_intr_establish(sc->sc_pct, ih, IPL_NET, iwn_intr, sc);
+ error = pci_intr_alloc(pa, &sc->sc_pihp, NULL, 0);
+ if (error) {
+ aprint_error_dev(self, "can't allocate interrupt\n");
+ goto unmap;
+ }
+ reg = pci_conf_read(sc->sc_pct, sc->sc_pcitag, PCI_COMMAND_STATUS_REG);
+ if (pci_intr_type(sc->sc_pct, sc->sc_pihp[0]) == PCI_INTR_TYPE_INTX)
+ CLR(reg, PCI_COMMAND_INTERRUPT_DISABLE);
+ else
+ SET(reg, PCI_COMMAND_INTERRUPT_DISABLE);
+ pci_conf_write(sc->sc_pct, sc->sc_pcitag, PCI_COMMAND_STATUS_REG, reg);
+ intrstr = pci_intr_string(sc->sc_pct, sc->sc_pihp[0], intrbuf,
+ sizeof(intrbuf));
+ sc->sc_ih = pci_intr_establish_xname(sc->sc_pct, sc->sc_pihp[0],
+ IPL_NET, iwn_intr, sc, device_xname(self));
if (sc->sc_ih == NULL) {
aprint_error_dev(self, "can't establish interrupt");
if (intrstr != NULL)
aprint_error(" at %s", intrstr);
aprint_error("\n");
- return;
+ goto failia;
}
aprint_normal_dev(self, "interrupting at %s\n", intrstr);
@@ -439,25 +443,25 @@
error = iwn5000_attach(sc, PCI_PRODUCT(pa->pa_id));
if (error != 0) {
aprint_error_dev(self, "could not attach device\n");
- return;
+ goto failih;
}
if ((error = iwn_hw_prepare(sc)) != 0) {
aprint_error_dev(self, "hardware not ready\n");
- return;
+ goto failih;
}
/* Read MAC address, channels, etc from EEPROM. */
if ((error = iwn_read_eeprom(sc)) != 0) {
aprint_error_dev(self, "could not read EEPROM\n");
- return;
+ goto failih;
}
/* Allocate DMA memory for firmware transfers. */
if ((error = iwn_alloc_fwmem(sc)) != 0) {
aprint_error_dev(self,
"could not allocate memory for firmware\n");
- return;
+ goto failih;
}
/* Allocate "Keep Warm" page. */
@@ -638,6 +642,11 @@
iwn_free_ict(sc);
fail2: iwn_free_kw(sc);
fail1: iwn_free_fwmem(sc);
+failih: pci_intr_disestablish(sc->sc_pct, sc->sc_ih);
+ sc->sc_ih = NULL;
+failia: pci_intr_release(sc->sc_pct, sc->sc_pihp, 1);
+ sc->sc_pihp = NULL;
+unmap: bus_space_unmap(sc->sc_st, sc->sc_sh, sc->sc_sz);
}
int
@@ -825,6 +834,8 @@
/* Uninstall interrupt handler. */
if (sc->sc_ih != NULL)
pci_intr_disestablish(sc->sc_pct, sc->sc_ih);
+ if (sc->sc_pihp != NULL)
+ pci_intr_release(sc->sc_pct, sc->sc_pihp, 1);
/* Free DMA resources. */
iwn_free_rx_ring(sc, &sc->rxq);
diff -r a2eb3a365374 -r 373d81597745 sys/dev/pci/if_iwnvar.h
--- a/sys/dev/pci/if_iwnvar.h Thu Feb 02 02:52:10 2017 +0000
+++ b/sys/dev/pci/if_iwnvar.h Thu Feb 02 03:20:19 2017 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_iwnvar.h,v 1.17 2015/09/22 23:23:06 nonaka Exp $ */
+/* $NetBSD: if_iwnvar.h,v 1.18 2017/02/02 03:20:20 nonaka Exp $ */
/* $OpenBSD: if_iwnvar.h,v 1.28 2014/09/09 18:55:08 sthen Exp $ */
/*-
@@ -264,6 +264,7 @@
bus_space_tag_t sc_st;
bus_space_handle_t sc_sh;
+ pci_intr_handle_t *sc_pihp;
void *sc_ih;
pci_chipset_tag_t sc_pct;
pcitag_t sc_pcitag;
Home |
Main Index |
Thread Index |
Old Index