Home | History | Annotate | Download | only in pci

Lines Matching defs:pbi

137 	struct genppc_pci_chipset_businfo *pbi;
140 pbi = SIMPLEQ_FIRST(&genppc_pct->pc_pbi);
142 pbi = SIMPLEQ_NEXT(pbi, next);
143 if (pbi == NULL)
146 busmax = prop_dictionary_get(pbi->pbi_properties,
159 struct genppc_pci_chipset_businfo *pbi;
172 pbi = SIMPLEQ_FIRST(&genppc_pct->pc_pbi);
174 pbi = SIMPLEQ_NEXT(pbi, next);
175 KASSERT(pbi != NULL);
177 dict = prop_dictionary_get(pbi->pbi_properties, "prep-pci-intrmap");
184 pbus = prop_dictionary_get(pbi->pbi_properties,
189 pbus = prop_dictionary_get(pbi->pbi_properties,
193 /* now that we know the parent bus, we need to find its pbi */
194 pbi = SIMPLEQ_FIRST(&genppc_pct->pc_pbi);
196 pbi = SIMPLEQ_NEXT(pbi, next);
197 KASSERT(pbi != NULL);
202 /* now we have the pbi, ask for dict again */
203 dict = prop_dictionary_get(pbi->pbi_properties,
274 struct genppc_pci_chipset_businfo *pbi;
326 pbi = kmem_alloc(sizeof(struct genppc_pci_chipset_businfo),
328 pbi->pbi_properties = prop_dictionary_create();
329 KASSERT(pbi->pbi_properties != NULL);
330 setup_pciintr_map(pbi, bus, dev, func);
334 prop_dictionary_set(pbi->pbi_properties, "prep-pcibus-parent",
338 prop_dictionary_set(pbi->pbi_properties,
348 prop_dictionary_set(pbi->pbi_properties,
353 SIMPLEQ_INSERT_TAIL(&genppc_pct->pc_pbi, pbi, next);