Searched refs:msic (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/sys/dev/malo/
H A Dif_malo_pci.c155 int error = ENXIO, i, msic, reg; local
179 msic = pci_msi_count(dev);
181 device_printf(dev, "MSI count : %d\n", msic);
183 msic = 0;
186 if (msic == MALO_MSI_MESSAGES && msi_disable == 0) {
187 if (pci_alloc_msi(dev, &msic) == 0) {
188 if (msic == MALO_MSI_MESSAGES) {
190 msic);
/freebsd-11-stable/sys/dev/age/
H A Dif_age.c466 int error, i, msic, msixc, pmc; local
528 msic = pci_msi_count(dev);
531 device_printf(dev, "MSI count : %d\n", msic);
538 if (msic == AGE_MSIX_MESSAGES) {
547 msic == AGE_MSI_MESSAGES &&
548 pci_alloc_msi(dev, &msic) == 0) {
549 if (msic == AGE_MSI_MESSAGES) {
551 msic);
652 msic = AGE_MSIX_MESSAGES;
654 msic
684 int i, msic; local
[all...]
/freebsd-11-stable/sys/dev/ale/
H A Dif_ale.c456 int error, i, msic, msixc, pmc; local
545 msic = pci_msi_count(dev);
548 device_printf(dev, "MSI count : %d\n", msic);
564 msic == ALE_MSI_MESSAGES &&
565 pci_alloc_msi(dev, &msic) == 0) {
566 if (msic == ALE_MSI_MESSAGES) {
568 msic);
676 msic = ALE_MSIX_MESSAGES;
678 msic = ALE_MSI_MESSAGES;
680 msic
708 int i, msic; local
[all...]
/freebsd-11-stable/sys/dev/alc/
H A Dif_alc.c1371 int base, error, i, msic, msixc; local
1505 msic = pci_msi_count(dev);
1508 device_printf(dev, "MSI count : %d\n", msic);
1512 if (msic > 1)
1513 msic = 1;
1523 if (msic == 1) {
1532 msic > 0 && pci_alloc_msi(dev, &msic) == 0) {
1533 if (msic == 1) {
1535 "Using %d MSI message(s).\n", msic);
1664 int i, msic; local
[all...]
/freebsd-11-stable/sys/dev/et/
H A Dif_et.c226 int cap, error, msic; local
263 msic = 0;
267 msic = pci_msi_count(dev);
269 device_printf(dev, "MSI count: %d\n", msic);
271 if (msic > 0 && msi_disable == 0) {
272 msic = 1;
273 if (pci_alloc_msi(dev, &msic) == 0) {
274 if (msic == 1) {
276 msic);
/freebsd-11-stable/sys/dev/vge/
H A Dif_vge.c993 int error = 0, cap, i, msic, rid; local
1027 msic = pci_msi_count(dev);
1028 if (msi_disable == 0 && msic > 0) {
1029 msic = 1;
1030 if (pci_alloc_msi(dev, &msic) == 0) {
1031 if (msic == 1) {
1034 msic);
/freebsd-11-stable/sys/dev/re/
H A Dif_re.c1211 int capmask, error = 0, hwrev, i, msic, msixc, local
1264 msic = pci_msi_count(dev);
1271 device_printf(dev, "MSI count : %d\n", msic);
1277 msic = 0;
1306 if (msixc == 0 && msic > 0) {
1307 msic = RL_MSI_MESSAGES;
1308 if (pci_alloc_msi(dev, &msic) == 0) {
1309 if (msic == RL_MSI_MESSAGES) {
1311 msic);
1323 msic
[all...]
/freebsd-11-stable/sys/dev/jme/
H A Dif_jme.c631 int error, i, mii_flags, msic, msixc, pmc; local
661 msic = pci_msi_count(dev);
664 device_printf(dev, "MSI count : %d\n", msic);
670 if (msic > 1)
671 msic = 1;
685 msic > 0 && pci_alloc_msi(dev, &msic) == 0) {
686 if (msic == 1) {
688 msic);
/freebsd-11-stable/sys/dev/nfe/
H A Dif_nfe.c371 int error = 0, i, msic, phyloc, reg, rid; local
422 (msic = pci_msix_count(dev)) == NFE_MSI_MESSAGES)
423 nfe_alloc_msix(sc, msic);
425 (msic = pci_msi_count(dev)) == NFE_MSI_MESSAGES &&
426 pci_alloc_msi(dev, &msic) == 0) {
427 if (msic == NFE_MSI_MESSAGES) {
430 "Using %d MSI messages\n", msic);
/freebsd-11-stable/sys/dev/bwn/
H A Dif_bwn.c517 int error, i, msic, reg; local
576 msic = pci_msi_count(dev);
578 device_printf(sc->sc_dev, "MSI count : %d\n", msic);
580 msic = 0;
583 if (msic == BWN_MSI_MESSAGES && bwn_msi_disable == 0) {
584 if (pci_alloc_msi(dev, &msic) == 0) {
586 "Using %d MSI messages\n", msic);
627 if (msic == BWN_MSI_MESSAGES && bwn_msi_disable == 0)
/freebsd-11-stable/sys/dev/msk/
H A Dif_msk.c1744 int error, msic, msir, reg; local
1913 msic = pci_msi_count(dev);
1915 device_printf(dev, "MSI count : %d\n", msic);
1918 if (msi_disable == 0 && msic > 0) {

Completed in 465 milliseconds