HomeSort by: relevance | last modified time | path
    Searched refs:busp (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/arch/arm/ixp12x0/
ixp12x0_pci.c 144 ixp12x0_pci_decompose_tag(void *v, pcitag_t tag, int *busp, int *devicep, int *functionp)
148 v, tag, (int)busp, (int)devicep, (int)functionp);
151 if (busp != NULL)
152 *busp = (tag >> 16) & 0xff;
  /src/sys/arch/alpha/pci/
pci_kn8ae.c 285 int ionode, hose, device, hpc, busp; local in function:kn8ae_enadis_intr
291 busp = (1 << (IH_PIN(ihv) - 1));
306 busp <<= (device << 2);
309 val |= busp;
311 val &= ~busp;
pci_machdep.c 536 int * const busp, int * const devp, int * const funcp)
539 if (busp != NULL)
540 *busp = __SHIFTOUT(tag, PCI_CONF_TYPE1_BUS);
548 pc->pc_decompose_tag(pc->pc_conf_v, tag, busp, devp, funcp);
  /src/sys/arch/mips/atheros/dev/
arpci.c 108 arpci_decompose_tag(void *v, pcitag_t tag, int *busp, int *devp, int *funcp)
111 if (busp)
112 *busp = (tag >> 16) & 255;
116 if (busp)
117 *busp = 0;
  /src/sys/arch/arm/footbridge/
footbridge_pci.c 158 footbridge_pci_decompose_tag(void *pcv, pcitag_t tag, int *busp, int *devicep, int *functionp)
162 pcv, (uint32_t)tag, busp, devicep, functionp);
165 if (busp != NULL)
166 *busp = (tag >> 16) & 0xff;
  /src/sys/arch/arm/xscale/
ixp425_pci.c 137 ixp425_pci_decompose_tag(void *v, pcitag_t tag, int *busp, int *devicep,
142 v, tag, (int)busp, (int)devicep, (int)functionp);
144 if (busp != NULL)
145 *busp = (tag >> 16) & 0xff;
  /src/sys/arch/evbarm/ifpga/
ifpga_pci.c 185 ifpga_pci_decompose_tag(void *pcv, pcitag_t tag, int *busp, int *devicep,
190 "fp=%p)\n", pcv, tag, busp, devicep, functionp);
193 if (busp != NULL)
194 *busp = (tag >> 16) & 0xff;
  /src/sys/dev/acpi/
acpi_pci.c 99 * If successful, return AE_OK and fill *busp. Otherwise, return an
100 * exception code and leave *busp unchanged.
103 acpi_pcidev_pciroot_bus(ACPI_HANDLE handle, uint16_t *busp)
124 *busp = (uint16_t)bus;
  /src/sys/arch/arm/broadcom/
bcm53xx_pax.c 390 bcmpax_decompose_tag(void *v, pcitag_t tag, int *busp, int *devp, int *funcp)
392 if (busp)
393 *busp = __SHIFTOUT(tag, CFG_ADDR_BUS);
  /src/sys/arch/riscv/starfive/
jh7110_pcie.c 202 int *busp, int *devp, int *fnp)
206 if (busp != NULL)
207 *busp = __SHIFTOUT(tag, ECAM_BUS_MASK);
  /src/sys/arch/xen/xen/
pciback.c 416 pciback_parse_pci(const char *str, u_int *busp, u_int *devp, u_int *funcp)
428 *busp = strtoul(str, &c, 16);

Completed in 15 milliseconds