Home | History | Annotate | Download | only in pci

Lines Matching refs:ihps

153 pci_msi_alloc_common(pci_intr_handle_t **ihps, int *count,
210 *ihps = vectors;
251 pci_msix_alloc_common(pci_intr_handle_t **ihps, u_int *table_indexes,
306 *ihps = vectors;
320 x86_pci_msi_alloc(pci_intr_handle_t **ihps, int *count,
324 return pci_msi_alloc_common(ihps, count, pa, false);
328 x86_pci_msi_alloc_exact(pci_intr_handle_t **ihps, int count,
332 return pci_msi_alloc_common(ihps, &count, pa, true);
354 x86_pci_msix_alloc(pci_intr_handle_t **ihps, int *count,
358 return pci_msix_alloc_common(ihps, NULL, count, pa, false);
362 x86_pci_msix_alloc_exact(pci_intr_handle_t **ihps, int count,
366 return pci_msix_alloc_common(ihps, NULL, &count, pa, true);
370 x86_pci_msix_alloc_map(pci_intr_handle_t **ihps, u_int *table_indexes,
374 return pci_msix_alloc_common(ihps, table_indexes, &count, pa, true);
520 * "ihps" is the array of vector numbers which MSI used instead of IRQ number.
526 pci_msi_alloc(const struct pci_attach_args *pa, pci_intr_handle_t **ihps,
544 return x86_pci_msi_alloc(ihps, count, pa);
550 * "ihps" is the array of vector numbers which MSI used instead of IRQ number.
556 pci_msi_alloc_exact(const struct pci_attach_args *pa, pci_intr_handle_t **ihps,
574 return x86_pci_msi_alloc_exact(ihps, count, pa);
580 * "ihps" is the array of vector numbers which MSI-X used instead of IRQ number.
585 pci_msix_alloc(const struct pci_attach_args *pa, pci_intr_handle_t **ihps,
601 return x86_pci_msix_alloc(ihps, count, pa);
607 * "ihps" is the array of vector numbers which MSI-X used instead of IRQ number.
612 pci_msix_alloc_exact(const struct pci_attach_args *pa, pci_intr_handle_t **ihps,
628 return x86_pci_msix_alloc_exact(ihps, count, pa);
635 * "ihps" is the array of vector numbers which MSI-X used instead of IRQ number.
646 pci_msix_alloc_map(const struct pci_attach_args *pa, pci_intr_handle_t **ihps,
681 return x86_pci_msix_alloc_map(ihps, table_indexes, count, pa);