Searched refs:pci_cfgregread (Results 1 - 21 of 21) sorted by relevance

/freebsd-13-stable/sys/arm64/include/
H A Dpci_cfgreg.h33 uint32_t pci_cfgregread(int, int, int, int, int);
/freebsd-13-stable/sys/arm64/acpica/
H A Dpci_cfgreg.c47 pci_cfgregread(int bus, int slot, int func, int reg, int bytes) function
51 panic("pci_cfgregread not implemented");
/freebsd-13-stable/sys/dev/agp/
H A Dagp_amd64.c56 extern uint32_t pci_cfgregread(int, int, int, int, int);
127 if (pci_cfgregread(0, 11, 0, PCIR_CLASS, 1) != PCIC_BRIDGE ||
128 pci_cfgregread(0, 11, 0, PCIR_SUBCLASS, 1) != PCIS_BRIDGE_PCI ||
129 pci_cfgregread(0, 11, 0, PCIR_VENDOR, 2) != 0x10de ||
130 pci_cfgregread(0, 11, 0, PCIR_DEVICE, 2) != devid)
140 if (pci_cfgregread(0, 1, 0, PCIR_CLASS, 1) != PCIC_BRIDGE ||
141 pci_cfgregread(0, 1, 0, PCIR_SUBCLASS, 1) != PCIS_BRIDGE_PCI ||
142 pci_cfgregread(0, 1, 0, PCIR_VENDOR, 2) != 0x1106 ||
143 pci_cfgregread(0, 1, 0, PCIR_DEVICE, 2) != 0xb188 ||
144 (pci_cfgregread(
[all...]
/freebsd-13-stable/sys/x86/pci/
H A Dpci_early_quirks.c69 ctrl = pci_cfgregread(bus, slot, func, INTEL_BSM, 4);
80 ctrl = pci_cfgregread(0, 0, 0, I830_GMCH_CTRL, 2);
120 ctrl = pci_cfgregread(bus, slot, func, SNB_GMCH_CTRL, 2);
131 ctrl = pci_cfgregread(bus, slot, func, SNB_GMCH_CTRL, 2);
142 ctrl = pci_cfgregread(bus, slot, func, SNB_GMCH_CTRL, 2);
164 ctrl = pci_cfgregread(bus, slot, func, SNB_GMCH_CTRL, 2);
256 vendor = pci_cfgregread(bus, slot, func, PCIR_VENDOR, 2);
260 class = pci_cfgregread(bus, slot, func, PCIR_SUBCLASS, 2);
264 device = pci_cfgregread(bus, slot, func, PCIR_DEVICE, 2);
H A Dqpi.c123 devid = pci_cfgregread(bus, s, 0, PCIR_DEVVENDOR, 4);
H A Dpci_bus.c68 return(pci_cfgregread(bus, slot, func, reg, bytes));
/freebsd-13-stable/sys/x86/include/
H A Dpci_cfgreg.h63 u_int32_t pci_cfgregread(int bus, int slot, int func, int reg, int bytes);
/freebsd-13-stable/sys/dev/acpica/Osd/
H A DOsdHardware.c115 *(UINT64 *)Value = pci_cfgregread(PciId->Bus, PciId->Device,
/freebsd-13-stable/sys/x86/x86/
H A Dlegacy.c130 vid = pci_cfgregread(0, 0, 0, PCIR_VENDOR, 2);
131 did = pci_cfgregread(0, 0, 0, PCIR_DEVICE, 2);
138 pciebar = pci_cfgregread(0, 0, 0, 0xce, 2) << 16;
145 pciebar = pci_cfgregread(0, 0, 0, 0x48, 4);
/freebsd-13-stable/sys/i386/pci/
H A Dpci_pir.c270 value = pci_cfgregread(bus, device, 0, PCIR_VENDOR, 2);
273 value = pci_cfgregread(bus, device, 0, PCIR_HDRTYPE, 1);
283 value = pci_cfgregread(bus, device, func, PCIR_VENDOR, 2);
286 value = pci_cfgregread(bus, device, func, PCIR_INTPIN, 1);
295 value = pci_cfgregread(bus, device, func, PCIR_INTLINE, 1);
H A Dpci_cfgreg.c171 pci_cfgregread(int bus, int slot, int func, int reg, int bytes) function
/freebsd-13-stable/sys/dev/hpt27xx/
H A Dhpt27xx_os_bsd.c95 return (HPT_U8)pci_cfgregread(bus, dev, func, reg, 1);
99 return (HPT_U32)pci_cfgregread(bus, dev, func, reg, 4);
/freebsd-13-stable/sys/dev/acpica/
H A Dacpi_pci_link.c583 value = pci_cfgregread(bus, device, 0, PCIR_VENDOR, 2);
586 value = pci_cfgregread(bus, device, 0, PCIR_HDRTYPE, 1);
596 value = pci_cfgregread(bus, device, func, PCIR_VENDOR, 2);
599 value = pci_cfgregread(bus, device, func, PCIR_INTPIN, 1);
608 value = pci_cfgregread(bus, device, func, PCIR_INTLINE, 1);
H A Dacpi_pcib_acpi.c481 if (host_pcib_get_busno(pci_cfgregread, 0, slot, func, &busno) == 0)
627 return (pci_cfgregread(bus, slot, func, reg, bytes));
/freebsd-13-stable/sys/dev/ipmi/
H A Dipmi_isa.c71 devid = pci_cfgregread(0, 4, 2, PCIR_DEVVENDOR, 4);
/freebsd-13-stable/sys/amd64/pci/
H A Dpci_cfgreg.c97 pci_cfgregread(int bus, int slot, int func, int reg, int bytes) function
/freebsd-13-stable/sys/dev/hptnr/
H A Dhptnr_os_bsd.c93 return (HPT_U32)pci_cfgregread(bus, dev, func, reg, 4);
/freebsd-13-stable/sys/dev/ichwd/
H A Dichwd.c704 base_address64 = pci_cfgregread(0, 31, 1, SBREG_BAR + 4, 4);
706 base_address64 |= pci_cfgregread(0, 31, 1, SBREG_BAR, 4);
/freebsd-13-stable/sys/dev/amdtemp/
H A Damdtemp.c427 if ((pci_cfgregread(pci_get_bus(dev),
/freebsd-13-stable/sys/amd64/vmm/amd/
H A Damdvi_hw.c130 return (pci_cfgregread(PCI_RID2BUS(softc->pci_rid),
/freebsd-13-stable/sys/x86/iommu/
H A Dintel_drv.c967 busno = pci_cfgregread(busno, path->Device,

Completed in 277 milliseconds