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

  /src/sys/arch/prep/pci/
pci_machdep.c 162 prop_number_t pbus; local in function:prep_pci_intr_map
184 pbus = prop_dictionary_get(pbi->pbi_properties,
186 if (pbus == NULL)
188 busno = prop_number_integer_value(pbus);
189 pbus = prop_dictionary_get(pbi->pbi_properties,
191 dev = prop_number_integer_value(pbus);
275 prop_number_t bmax, pbus; local in function:prep_pci_conf_hook
333 pbus = prop_number_create_integer(bus);
335 pbus);
336 prop_object_release(pbus);
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bus/
nouveau_nvkm_subdev_bus_base.c 61 int index, struct nvkm_bus **pbus)
64 if (!(bus = *pbus = kzalloc(sizeof(*bus), GFP_KERNEL)))
nouveau_nvkm_subdev_bus_g94.c 66 g94_bus_new(struct nvkm_device *device, int index, struct nvkm_bus **pbus)
68 return nvkm_bus_new_(&g94_bus, device, index, pbus);
nouveau_nvkm_subdev_bus_gf100.c 77 gf100_bus_new(struct nvkm_device *device, int index, struct nvkm_bus **pbus)
79 return nvkm_bus_new_(&gf100_bus, device, index, pbus);
nouveau_nvkm_subdev_bus_nv04.c 76 nv04_bus_new(struct nvkm_device *device, int index, struct nvkm_bus **pbus)
78 return nvkm_bus_new_(&nv04_bus, device, index, pbus);
nouveau_nvkm_subdev_bus_nv31.c 90 nv31_bus_new(struct nvkm_device *device, int index, struct nvkm_bus **pbus)
92 return nvkm_bus_new_(&nv31_bus, device, index, pbus);
nouveau_nvkm_subdev_bus_nv50.c 107 nv50_bus_new(struct nvkm_device *device, int index, struct nvkm_bus **pbus)
109 return nvkm_bus_new_(&nv50_bus, device, index, pbus);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/i2c/
nouveau_nvkm_subdev_i2c_bus.c 201 nvkm_i2c_bus_del(struct nvkm_i2c_bus **pbus)
203 struct nvkm_i2c_bus *bus = *pbus;
210 kfree(*pbus);
211 *pbus = NULL;
267 struct nvkm_i2c_bus **pbus)
269 if (!(*pbus = kzalloc(sizeof(**pbus), GFP_KERNEL)))
271 return nvkm_i2c_bus_ctor(func, pad, id, *pbus);
nouveau_nvkm_subdev_i2c_busgf119.c 89 struct nvkm_i2c_bus **pbus)
95 *pbus = &bus->base;
nouveau_nvkm_subdev_i2c_busnv4e.c 80 struct nvkm_i2c_bus **pbus)
86 *pbus = &bus->base;
nouveau_nvkm_subdev_i2c_busnv04.c 89 struct nvkm_i2c_bus **pbus)
95 *pbus = &bus->base;
nouveau_nvkm_subdev_i2c_busnv50.c 96 struct nvkm_i2c_bus **pbus)
112 *pbus = &bus->base;
nouveau_nvkm_subdev_i2c_anx9805.c 109 struct nvkm_i2c_bus **pbus)
117 *pbus = &bus->base;
238 struct nvkm_i2c_aux **pbus)
246 *pbus = &aux->base;
  /src/sys/arch/powerpc/pci/
pci_machdep_ofw.c 377 prop_number_t pbus; local in function:genofw_pci_intr_map
400 pbus = prop_dictionary_get(pbi->pbi_properties,
402 if (pbus == NULL)
404 busno = prop_number_integer_value(pbus);
405 pbus = prop_dictionary_get(pbi->pbi_properties,
407 dev = prop_number_integer_value(pbus);
461 prop_number_t pbus; local in function:genofw_pci_conf_hook
535 pbus = prop_number_create_integer(bus);
537 pbus);
538 prop_object_release(pbus);
    [all...]
  /src/sys/arch/evbarm/iq80310/
iq80310_pci.c 132 int sbus, pbus; local in function:iq80310_pci_intr_map
153 pbus = PCI_BRIDGE_BUS_NUM_PRIMARY(reg);
160 if (pa->pa_bus == pbus) {
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/pci/
nouveau_nvkm_subdev_pci_pcie.c 124 struct pci_bus *pbus; local in function:nvkm_pcie_set_link
129 pbus = pci->pdev->bus;
142 max_speed = min(nvkm_pcie_speed(pbus->max_bus_speed),
  /src/sys/arch/bebox/bebox/
autoconf.c 196 int pbus, device; local in function:device_register
198 pci_decompose_tag(pa->pa_pc, pa->pa_tag, &pbus, &device, NULL);
199 if (pbus == 0 && device == 12) {
  /src/sys/arch/arm/xscale/
i80312_pci.c 108 /* pbus = PCI_BRIDGE_BUS_NUM_PRIMARY(binfo); */
178 int pbus, sbus; local in function:i80312_pci_conf_setup
186 pbus = PCI_BRIDGE_BUS_NUM_PRIMARY(binfo);
194 if (ps->ps_b == pbus) {
211 if (ps->ps_b == pbus || ps->ps_b == sbus) {
  /src/sys/dev/
sequencervar.h 88 int pbus; member in struct:sequencer_softc
midivar.h 197 int pbus; member in struct:midi_softc
midi.c 852 sc->pbus = 0;
884 /* midi_start_output(sc); anything buffered => pbus already set! */
885 while (sc->pbus) {
1063 if (sc->pbus || sc->dying || !sc->isopen) {
1067 sc->pbus = 1;
1076 sc->pbus = 0;
1242 sc->pbus = 0;
1302 sc->pbus = 0;
1424 * the critical section (pbus==1 will stop anyone else doing the same).
1427 if (!sc->pbus && idx_cur < idx_lim)
    [all...]
sequencer.c 351 sc->pbus = 0;
  /src/sys/arch/evbppc/walnut/dev/
pbus.c 1 /* $NetBSD: pbus.c,v 1.15 2021/08/07 16:18:52 thorpej Exp $ */
69 __KERNEL_RCSID(0, "$NetBSD: pbus.c,v 1.15 2021/08/07 16:18:52 thorpej Exp $");
103 CFATTACH_DECL_NEW(pbus, 0,
121 /* match only pbus devices */
145 if (bus_space_init(&pbus_tag, "pbus", NULL, 0))
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
qcom-ipq8064.dtsi 492 reset-names = "clk", "pbus", "c0", "c1", "c2";

Completed in 41 milliseconds