Searched refs:ecap (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/usr.sbin/pciconf/
H A Dcap.c1073 uint32_t ecap; local
1078 ecap = read_config(fd, &p->pc_sel, ptr, 4);
1079 if (ecap == 0xffffffff || ecap == 0)
1082 printf(" ecap %04x[%03x] = ", PCI_EXTCAP_ID(ecap), ptr);
1083 switch (PCI_EXTCAP_ID(ecap)) {
1085 ecap_aer(fd, p, ptr, PCI_EXTCAP_VER(ecap));
1088 ecap_vc(fd, p, ptr, PCI_EXTCAP_VER(ecap));
1091 ecap_sernum(fd, p, ptr, PCI_EXTCAP_VER(ecap));
1157 uint32_t ecap; local
[all...]
/freebsd-13-stable/sys/amd64/vmm/intel/
H A Dvtd.c74 #define VTD_ECAP_DI(ecap) (((ecap) >> 2) & 0x1)
75 #define VTD_ECAP_COHERENCY(ecap) ((ecap) & 0x1)
76 #define VTD_ECAP_IRO(ecap) (((ecap) >> 8) & 0x3FF)
/freebsd-13-stable/sys/dev/pci/
H A Dpcireg.h162 #define PCI_EXTCAP_ID(ecap) ((ecap) & PCIM_EXTCAP_ID)
163 #define PCI_EXTCAP_VER(ecap) (((ecap) & PCIM_EXTCAP_VER) >> 16)
164 #define PCI_EXTCAP_NEXTPTR(ecap) (((ecap) & PCIM_EXTCAP_NEXTPTR) >> 20)
H A Dpci.c1579 uint32_t ecap; local
1587 ecap = pci_read_config(child, ptr, 4);
1588 if (ecap == 0xffffffff || ecap == 0)
1591 if (PCI_EXTCAP_ID(ecap) == capability) {
1596 ptr = PCI_EXTCAP_NEXTPTR(ecap);
1599 ecap = pci_read_config(child, ptr, 4);
1616 uint32_t ecap; local
1623 ecap = pci_read_config(child, start, 4);
1624 KASSERT(PCI_EXTCAP_ID(ecap)
[all...]

Completed in 114 milliseconds