Searched refs:ecap (Results 1 - 4 of 4) sorted by last modified time

/freebsd-current/usr.sbin/pciconf/
H A Dcap.c1245 uint32_t ecap; local
1250 ecap = read_config(fd, &p->pc_sel, ptr, 4);
1251 if (ecap == 0xffffffff || ecap == 0)
1254 printf(" ecap %04x[%03x] = ", PCI_EXTCAP_ID(ecap), ptr);
1255 switch (PCI_EXTCAP_ID(ecap)) {
1257 ecap_aer(fd, p, ptr, PCI_EXTCAP_VER(ecap));
1260 ecap_vc(fd, p, ptr, PCI_EXTCAP_VER(ecap));
1263 ecap_sernum(fd, p, ptr, PCI_EXTCAP_VER(ecap));
1332 uint32_t ecap; local
[all...]
/freebsd-current/sys/dev/pci/
H A Dpcireg.h163 #define PCI_EXTCAP_ID(ecap) ((ecap) & PCIM_EXTCAP_ID)
164 #define PCI_EXTCAP_VER(ecap) (((ecap) & PCIM_EXTCAP_VER) >> 16)
165 #define PCI_EXTCAP_NEXTPTR(ecap) (((ecap) & PCIM_EXTCAP_NEXTPTR) >> 20)
H A Dpci.c1594 uint32_t ecap; local
1602 ecap = pci_read_config(child, ptr, 4);
1603 if (ecap == 0xffffffff || ecap == 0)
1606 if (PCI_EXTCAP_ID(ecap) == capability) {
1611 ptr = PCI_EXTCAP_NEXTPTR(ecap);
1614 ecap = pci_read_config(child, ptr, 4);
1631 uint32_t ecap; local
1638 ecap = pci_read_config(child, start, 4);
1639 KASSERT(PCI_EXTCAP_ID(ecap)
[all...]
/freebsd-current/sys/amd64/vmm/intel/
H A Dvtd.c69 #define VTD_ECAP_DI(ecap) (((ecap) >> 2) & 0x1)
70 #define VTD_ECAP_COHERENCY(ecap) ((ecap) & 0x1)
71 #define VTD_ECAP_IRO(ecap) (((ecap) >> 8) & 0x3FF)

Completed in 119 milliseconds