| /src/sys/dev/cardbus/ | 
| rbus_ppb.c | 145 		int maxbus, 149 			 maxbus, rbus_do_header_fixup, (void *)&line);
 189   int    maxbus;  member in struct:rbus_pci_addr_fixup_context
 221 		    int minbus, const int maxbus)
 224 	const size_t size = sizeof(bus_size_t[maxbus+1]);
 235 	rct.maxbus = maxbus;
 238 	rct.iobustags = kmem_zalloc(maxbus * sizeof(rbus_tag_t), KM_SLEEP);
 239 	rct.membustags = kmem_zalloc(maxbus * sizeof(rbus_tag_t), KM_SLEEP);
 243 	       minbus, maxbus);
 614  int minbus, maxbus;  local in function:ppb_cardbus_attach
 [all...]
 | 
| /src/sys/arch/sparc/sparc/ | 
| pci_fixup.c | 73 	int i, j, node, bus, dev, fun, maxbus, len, class;  local in function:mspcic_pci_scan 83 	maxbus = 1;
 92 	printf("  max bus %d\n", maxbus);
 135 			if (busrange[1] > maxbus)
 136 				maxbus = busrange[1] + 1;
 137 			if (maxbus > 255)
 138 				panic("mspcic_pci_scan: maxbus > 255");
 213 	printf("  max bus %d\n", maxbus);
 288 		mspcic_pci_fixup(1, tag, &maxbus, &io[i], &mem[j],
 296 mspcic_pci_fixup(int depth, pcitag_t starttag, int *maxbus, uint32_t *io
 [all...]
 | 
| /src/sys/arch/sandpoint/stand/altboot/ | 
| pci.c | 55 unsigned maxbus;  variable in typeref:typename:unsigned 65 	maxbus = 0;
 231 		new = (maxbus += 1);
 258 		val = (maxbus << 16) | (val & 0xffff);
 
 | 
| /src/sys/arch/x86/pci/ | 
| pci_addr_fixup.c | 66 pci_addr_fixup(pci_chipset_tag_t pc, int maxbus) 104 	pci_device_foreach(pc, maxbus, pciaddr_resource_reserve, NULL);
 140 	pci_device_foreach_min(pc, 0, maxbus, pciaddr_resource_allocate, NULL);
 
 | 
| pci_machdep.c | 897 pci_device_foreach(pci_chipset_tag_t pc, int maxbus, 900 	pci_device_foreach_min(pc, 0, maxbus, func, context);
 904 pci_device_foreach_min(pci_chipset_tag_t pc, int minbus, int maxbus,
 912 	for (bus = minbus; bus <= maxbus; bus++) {
 956 pci_bridge_foreach(pci_chipset_tag_t pc, int minbus, int maxbus,
 964 	pci_device_foreach_min(pc, minbus, maxbus, pci_bridge_hook,
 
 | 
| pci_ranges.c | 860 pci_ranges_infer(pci_chipset_tag_t pc, int minbus, int maxbus, 876 	pci_device_foreach_min(pc, minbus, maxbus, mmio_range_infer, &ric);
 877 	pci_device_foreach_min(pc, minbus, maxbus, io_range_infer, &ric);
 
 | 
| /src/sys/arch/i386/pci/ | 
| pcibios.c | 347     uint32_t *maxbus) 376 	*maxbus = cx & 0xff;
 
 |