Searched refs:bei (Results 1 - 2 of 2) sorted by relevance

/freebsd-11.0-release/usr.sbin/pciconf/
H A Dcap.c587 ea_bei_to_name(int bei) argument
596 if ((bei >= PCIM_EA_BEI_BAR_0) && (bei <= PCIM_EA_BEI_BAR_5))
597 return (barstr[bei - PCIM_EA_BEI_BAR_0]);
598 if ((bei >= PCIM_EA_BEI_VF_BAR_0) && (bei <= PCIM_EA_BEI_VF_BAR_5))
599 return (vfbarstr[bei - PCIM_EA_BEI_VF_BAR_0]);
601 switch (bei) {
651 uint32_t bei; local
694 bei
[all...]
/freebsd-11.0-release/sys/dev/pci/
H A Dpci.c773 printf("PCI(EA) dev %04x:%04x, bei %d, flags #%x, base #%jx, max_offset #%jx\n",
3613 pci_ea_bei_to_rid(device_t dev, int bei) argument
3629 if ((bei >= PCIM_EA_BEI_BAR_0) &&
3630 (bei <= PCIM_EA_BEI_BAR_5))
3631 return (PCIR_BAR(bei));
3634 if (bei == PCIM_EA_BEI_ROM)
3639 if ((iov != NULL) && (bei >= PCIM_EA_BEI_VF_BAR_0) &&
3640 (bei <= PCIM_EA_BEI_VF_BAR_5))
3641 return (PCIR_SRIOV_BAR(bei - PCIM_EA_BEI_VF_BAR_0) +

Completed in 107 milliseconds