Home
last modified time | relevance | path

Searched refs:msix_table (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/sys/dev/usb/controller/
H A Dxhci_pci.c290 int count, err, msix_table, rid; in xhci_pci_attach() local
349 if (xhci_use_msix && (msix_table = pci_msix_table_bar(self)) >= 0) { in xhci_pci_attach()
350 if (msix_table == PCI_XHCI_CBMEM) { in xhci_pci_attach()
354 SYS_RES_MEMORY, &msix_table, RF_ACTIVE); in xhci_pci_attach()
371 msix_table, sc->sc_msix_res); in xhci_pci_attach()
/freebsd-14.2/sys/dev/gve/
H A Dgve_main.c725 if (priv->msix_table != NULL) in gve_free_sys_res_mem()
727 rman_get_rid(priv->msix_table), priv->msix_table); in gve_free_sys_res_mem()
770 priv->msix_table = bus_alloc_resource_any(dev, SYS_RES_MEMORY, in gve_attach()
772 if (priv->msix_table == NULL) { in gve_attach()
H A Dgve.h321 struct resource *msix_table; member
/freebsd-14.2/sys/dev/ice/
H A Dice_iflib.h296 struct resource *msix_table; member
H A Dif_ice_iflib.c983 if (sc->msix_table != NULL) { in ice_if_detach()
985 rman_get_rid(sc->msix_table), in ice_if_detach()
986 sc->msix_table); in ice_if_detach()
987 sc->msix_table = NULL; in ice_if_detach()
1400 sc->msix_table = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &bar, RF_ACTIVE); in ice_allocate_msix()
1401 if (!sc->msix_table) { in ice_allocate_msix()
1574 if (sc->msix_table != NULL) { in ice_allocate_msix()
1576 rman_get_rid(sc->msix_table), in ice_allocate_msix()
1577 sc->msix_table); in ice_allocate_msix()
1578 sc->msix_table = NULL; in ice_allocate_msix()
/freebsd-14.2/sys/dev/pci/
H A Dpci.c1772 mte = &msix->msix_table[i]; in pci_resume_msix()
1910 cfg->msix.msix_table[i].mte_vector = i + 1; in pci_alloc_msix_method()
2008 if (msix->msix_table[i].mte_vector == 0) in pci_remap_msix_method()
2010 if (msix->msix_table[i].mte_handlers > 0) { in pci_remap_msix_method()
2024 if (msix->msix_table[i].mte_vector == 0) in pci_remap_msix_method()
2033 free(msix->msix_table, M_DEVBUF); in pci_remap_msix_method()
2100 if (msix->msix_table[i].mte_vector == 0) in pci_release_msix()
2102 if (msix->msix_table[i].mte_handlers > 0) in pci_release_msix()
2117 if (msix->msix_table[i].mte_vector == 0) in pci_release_msix()
2121 free(msix->msix_table, M_DEVBUF); in pci_release_msix()
[all …]
H A Dpcivar.h122 struct msix_table_entry *msix_table; /* Virtual table. */ member