Searched refs:ecap (Results 1 – 9 of 9) sorted by relevance
| /freebsd-10-stable/usr.sbin/pciconf/ |
| D | cap.c | 724 uint32_t ecap; in list_ecaps() local 729 ecap = read_config(fd, &p->pc_sel, ptr, 4); in list_ecaps() 730 if (ecap == 0xffffffff || ecap == 0) in list_ecaps() 733 printf(" ecap %04x[%03x] = ", PCI_EXTCAP_ID(ecap), ptr); in list_ecaps() 734 switch (PCI_EXTCAP_ID(ecap)) { in list_ecaps() 736 ecap_aer(fd, p, ptr, PCI_EXTCAP_VER(ecap)); in list_ecaps() 739 ecap_vc(fd, p, ptr, PCI_EXTCAP_VER(ecap)); in list_ecaps() 742 ecap_sernum(fd, p, ptr, PCI_EXTCAP_VER(ecap)); in list_ecaps() 745 ecap_vendor(fd, p, ptr, PCI_EXTCAP_VER(ecap)); in list_ecaps() 748 ecap_sec_pcie(fd, p, ptr, PCI_EXTCAP_VER(ecap)); in list_ecaps() [all …]
|
| /freebsd-10-stable/sys/gnu/dts/arm/ |
| D | da850.dtsi | 218 ecap0: ecap@01f06000 { 219 compatible = "ti,da850-ecap", "ti,am33xx-ecap"; 224 ecap1: ecap@01f07000 { 225 compatible = "ti,da850-ecap", "ti,am33xx-ecap"; 230 ecap2: ecap@01f08000 { 231 compatible = "ti,da850-ecap", "ti,am33xx-ecap";
|
| D | am4372.dtsi | 553 ecap0: ecap@48300100 { 554 compatible = "ti,am4372-ecap","ti,am33xx-ecap"; 579 ecap1: ecap@48302100 { 580 compatible = "ti,am4372-ecap","ti,am33xx-ecap"; 605 ecap2: ecap@48304100 { 606 compatible = "ti,am4372-ecap","ti,am33xx-ecap";
|
| D | am33xx.dtsi | 616 ecap0: ecap@48300100 { 617 compatible = "ti,am33xx-ecap"; 646 ecap1: ecap@48302100 { 647 compatible = "ti,am33xx-ecap"; 676 ecap2: ecap@48304100 { 677 compatible = "ti,am33xx-ecap";
|
| D | am335x-evm.dts | 436 ecap0: ecap@48300100 {
|
| D | am335x-evmsk.dts | 508 ecap2: ecap@48304100 {
|
| /freebsd-10-stable/sys/amd64/vmm/intel/ |
| D | vtd.c | 70 #define VTD_ECAP_DI(ecap) (((ecap) >> 2) & 0x1) argument 71 #define VTD_ECAP_COHERENCY(ecap) ((ecap) & 0x1) argument 72 #define VTD_ECAP_IRO(ecap) (((ecap) >> 8) & 0x3FF) argument
|
| /freebsd-10-stable/sys/dev/pci/ |
| D | pcireg.h | 151 #define PCI_EXTCAP_ID(ecap) ((ecap) & PCIM_EXTCAP_ID) argument 152 #define PCI_EXTCAP_VER(ecap) (((ecap) & PCIM_EXTCAP_VER) >> 16) argument 153 #define PCI_EXTCAP_NEXTPTR(ecap) (((ecap) & PCIM_EXTCAP_NEXTPTR) >> 20) argument
|
| D | pci.c | 1355 uint32_t ecap; in pci_find_extcap_method() local 1363 ecap = pci_read_config(child, ptr, 4); in pci_find_extcap_method() 1364 if (ecap == 0xffffffff || ecap == 0) in pci_find_extcap_method() 1367 if (PCI_EXTCAP_ID(ecap) == capability) { in pci_find_extcap_method() 1372 ptr = PCI_EXTCAP_NEXTPTR(ecap); in pci_find_extcap_method() 1375 ecap = pci_read_config(child, ptr, 4); in pci_find_extcap_method()
|