Searched refs:ecap (Results 1 – 9 of 9) sorted by relevance
| /NextBSD/usr.sbin/pciconf/ |
| HD | cap.c | 787 uint32_t ecap; in list_ecaps() local 792 ecap = read_config(fd, &p->pc_sel, ptr, 4); in list_ecaps() 793 if (ecap == 0xffffffff || ecap == 0) in list_ecaps() 796 printf(" ecap %04x[%03x] = ", PCI_EXTCAP_ID(ecap), ptr); in list_ecaps() 797 switch (PCI_EXTCAP_ID(ecap)) { in list_ecaps() 799 ecap_aer(fd, p, ptr, PCI_EXTCAP_VER(ecap)); in list_ecaps() 802 ecap_vc(fd, p, ptr, PCI_EXTCAP_VER(ecap)); in list_ecaps() 805 ecap_sernum(fd, p, ptr, PCI_EXTCAP_VER(ecap)); in list_ecaps() 808 ecap_vendor(fd, p, ptr, PCI_EXTCAP_VER(ecap)); in list_ecaps() 811 ecap_sec_pcie(fd, p, ptr, PCI_EXTCAP_VER(ecap)); in list_ecaps() [all …]
|
| /NextBSD/sys/gnu/dts/arm/ |
| HD | 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";
|
| HD | 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";
|
| HD | 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";
|
| HD | am335x-evmsk.dts | 508 ecap2: ecap@48304100 {
|
| HD | am335x-evm.dts | 436 ecap0: ecap@48300100 {
|
| /NextBSD/sys/amd64/vmm/intel/ |
| HD | 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
|
| /NextBSD/sys/dev/pci/ |
| HD | pcireg.h | 156 #define PCI_EXTCAP_ID(ecap) ((ecap) & PCIM_EXTCAP_ID) argument 157 #define PCI_EXTCAP_VER(ecap) (((ecap) & PCIM_EXTCAP_VER) >> 16) argument 158 #define PCI_EXTCAP_NEXTPTR(ecap) (((ecap) & PCIM_EXTCAP_NEXTPTR) >> 20) argument
|
| HD | pci.c | 1366 uint32_t ecap; in pci_find_extcap_method() local 1374 ecap = pci_read_config(child, ptr, 4); in pci_find_extcap_method() 1375 if (ecap == 0xffffffff || ecap == 0) in pci_find_extcap_method() 1378 if (PCI_EXTCAP_ID(ecap) == capability) { in pci_find_extcap_method() 1383 ptr = PCI_EXTCAP_NEXTPTR(ecap); in pci_find_extcap_method() 1386 ecap = pci_read_config(child, ptr, 4); in pci_find_extcap_method()
|