/linux/drivers/pci/ |
A D | of.c | 182 u32 bus_range[2]; in of_pci_parse_bus_range() local 191 res->start = bus_range[0]; in of_pci_parse_bus_range() 192 res->end = bus_range[1]; in of_pci_parse_bus_range() 282 struct resource *bus_range; in devm_of_pci_get_host_bridge_resources() local 291 bus_range = devm_kzalloc(dev, sizeof(*bus_range), GFP_KERNEL); in devm_of_pci_get_host_bridge_resources() 292 if (!bus_range) in devm_of_pci_get_host_bridge_resources() 299 bus_range->start = busno; in devm_of_pci_get_host_bridge_resources() 300 bus_range->end = bus_max; in devm_of_pci_get_host_bridge_resources() 303 dev_node, bus_range); in devm_of_pci_get_host_bridge_resources() 305 if (bus_range->end > bus_range->start + bus_max) in devm_of_pci_get_host_bridge_resources() [all …]
|
A D | ecam.c | 33 unsigned int bus_range, bus_range_max, bsz; in pci_ecam_create() local 54 bus_range = resource_size(&cfg->busr); in pci_ecam_create() 56 if (bus_range > bus_range_max) { in pci_ecam_create() 57 bus_range = bus_range_max; in pci_ecam_create() 58 cfg->busr.end = busr->start + bus_range - 1; in pci_ecam_create() 78 cfg->winp = kcalloc(bus_range, sizeof(*cfg->winp), GFP_KERNEL); in pci_ecam_create() 82 cfg->win = pci_remap_cfgspace(cfgres->start, bus_range * bsz); in pci_ecam_create()
|
/linux/arch/powerpc/platforms/52xx/ |
A D | efika.c | 72 const int *bus_range; in efika_pcisetup() local 97 bus_range = of_get_property(pcictrl, "bus-range", &len); in efika_pcisetup() 98 if (bus_range == NULL || len < 2 * sizeof(int)) { in efika_pcisetup() 104 if (bus_range[1] == bus_range[0]) in efika_pcisetup() 106 bus_range[0]); in efika_pcisetup() 109 bus_range[0], bus_range[1]); in efika_pcisetup() 121 hose->first_busno = bus_range[0]; in efika_pcisetup() 122 hose->last_busno = bus_range[1]; in efika_pcisetup()
|
A D | mpc52xx_pci.c | 369 const int *bus_range; in mpc52xx_add_bridge() local 381 bus_range = of_get_property(node, "bus-range", &len); in mpc52xx_add_bridge() 382 if (bus_range == NULL || len < 2 * sizeof(int)) { in mpc52xx_add_bridge() 385 bus_range = NULL; in mpc52xx_add_bridge() 400 hose->first_busno = bus_range ? bus_range[0] : 0; in mpc52xx_add_bridge() 401 hose->last_busno = bus_range ? bus_range[1] : 0xff; in mpc52xx_add_bridge()
|
/linux/arch/powerpc/platforms/embedded6xx/ |
A D | linkstation.c | 42 const int *bus_range; in linkstation_add_bridge() local 46 bus_range = of_get_property(dev, "bus-range", &len); in linkstation_add_bridge() 47 if (bus_range == NULL || len < 2 * sizeof(int)) in linkstation_add_bridge() 54 hose->first_busno = bus_range ? bus_range[0] : 0; in linkstation_add_bridge() 55 hose->last_busno = bus_range ? bus_range[1] : 0xff; in linkstation_add_bridge()
|
A D | storcenter.c | 45 const int *bus_range; in storcenter_add_bridge() local 53 bus_range = of_get_property(dev, "bus-range", &len); in storcenter_add_bridge() 54 hose->first_busno = bus_range ? bus_range[0] : 0; in storcenter_add_bridge() 55 hose->last_busno = bus_range ? bus_range[1] : 0xff; in storcenter_add_bridge()
|
A D | mvme5100.c | 108 const int *bus_range; in mvme5100_add_bridge() local 115 bus_range = of_get_property(dev, "bus-range", &len); in mvme5100_add_bridge() 121 hose->first_busno = bus_range ? bus_range[0] : 0; in mvme5100_add_bridge() 122 hose->last_busno = bus_range ? bus_range[1] : 0xff; in mvme5100_add_bridge()
|
/linux/arch/powerpc/platforms/amigaone/ |
A D | setup.c | 36 const int *bus_range; in amigaone_add_bridge() local 46 bus_range = of_get_property(dev, "bus-range", &len); in amigaone_add_bridge() 47 if ((bus_range == NULL) || (len < 2 * sizeof(int))) in amigaone_add_bridge() 55 hose->first_busno = bus_range ? bus_range[0] : 0; in amigaone_add_bridge() 56 hose->last_busno = bus_range ? bus_range[1] : 0xff; in amigaone_add_bridge()
|
/linux/arch/powerpc/platforms/maple/ |
A D | pci.c | 38 const int *bus_range; in fixup_one_level_bus_range() local 47 bus_range = of_get_property(node, "bus-range", &len); in fixup_one_level_bus_range() 48 if (bus_range != NULL && len > 2 * sizeof(int)) { in fixup_one_level_bus_range() 49 if (bus_range[1] > higher) in fixup_one_level_bus_range() 50 higher = bus_range[1]; in fixup_one_level_bus_range() 65 int *bus_range; in fixup_bus_range() local 76 bus_range = prop->value; in fixup_bus_range() 77 bus_range[1] = fixup_one_level_bus_range(bridge->child, bus_range[1]); in fixup_bus_range() 494 const int *bus_range; in maple_add_bridge() local 508 hose->first_busno = bus_range ? bus_range[0] : 0; in maple_add_bridge() [all …]
|
/linux/arch/powerpc/platforms/chrp/ |
A D | pci.c | 210 const int *bus_range; in chrp_find_bridges() local 242 bus_range = of_get_property(dev, "bus-range", &len); in chrp_find_bridges() 243 if (bus_range == NULL || len < 2 * sizeof(int)) { in chrp_find_bridges() 248 if (bus_range[1] == bus_range[0]) in chrp_find_bridges() 249 printk(KERN_INFO "PCI bus %d", bus_range[0]); in chrp_find_bridges() 252 bus_range[0], bus_range[1]); in chrp_find_bridges() 264 hose->first_busno = hose->self_busno = bus_range[0]; in chrp_find_bridges() 265 hose->last_busno = bus_range[1]; in chrp_find_bridges()
|
/linux/drivers/acpi/ |
A D | pci_mcfg.c | 31 struct resource bus_range; member 179 struct resource *bus_range) in pci_mcfg_quirk_matches() argument 186 resource_contains(&f->bus_range, bus_range)) in pci_mcfg_quirk_matches() 199 struct resource *bus_range = &root->secondary; in pci_mcfg_apply_quirks() local 204 if (pci_mcfg_quirk_matches(f, segment, bus_range)) { in pci_mcfg_apply_quirks() 210 cfgres, bus_range, *ecam_ops); in pci_mcfg_apply_quirks()
|
/linux/arch/powerpc/sysdev/ |
A D | tsi108_pci.c | 188 const int *bus_range; in tsi108_setup_pci() local 201 bus_range = of_get_property(dev, "bus-range", &len); in tsi108_setup_pci() 202 if (bus_range == NULL || len < 2 * sizeof(int)) { in tsi108_setup_pci() 214 hose->first_busno = bus_range ? bus_range[0] : 0; in tsi108_setup_pci() 215 hose->last_busno = bus_range ? bus_range[1] : 0xff; in tsi108_setup_pci()
|
A D | fsl_pci.c | 521 const int *bus_range; in fsl_add_bridge() local 544 bus_range = of_get_property(dev, "bus-range", &len); in fsl_add_bridge() 545 if (bus_range == NULL || len < 2 * sizeof(int)) in fsl_add_bridge() 556 hose->first_busno = bus_range ? bus_range[0] : 0x0; in fsl_add_bridge() 557 hose->last_busno = bus_range ? bus_range[1] : 0xff; in fsl_add_bridge() 802 const int *bus_range; in mpc83xx_add_bridge() local 845 bus_range = of_get_property(dev, "bus-range", &len); in mpc83xx_add_bridge() 846 if (bus_range == NULL || len < 2 * sizeof(int)) { in mpc83xx_add_bridge() 856 hose->first_busno = bus_range ? bus_range[0] : 0; in mpc83xx_add_bridge() 857 hose->last_busno = bus_range ? bus_range[1] : 0xff; in mpc83xx_add_bridge()
|
/linux/arch/powerpc/kernel/ |
A D | rtas_pci.c | 213 const __be32 *bus_range; in phb_set_bus_ranges() local 216 bus_range = of_get_property(dev, "bus-range", &len); in phb_set_bus_ranges() 217 if (bus_range == NULL || len < 2 * sizeof(int)) { in phb_set_bus_ranges() 221 phb->first_busno = be32_to_cpu(bus_range[0]); in phb_set_bus_ranges() 222 phb->last_busno = be32_to_cpu(bus_range[1]); in phb_set_bus_ranges()
|
A D | pci_32.c | 77 const int *bus_range; in make_one_node_map() local 82 bus_range = of_get_property(node, "bus-range", &len); in make_one_node_map() 83 if (bus_range == NULL || len < 2 * sizeof(int)) { in make_one_node_map() 88 pci_to_OF_bus_map[pci_bus] = bus_range[0]; in make_one_node_map()
|
/linux/arch/powerpc/platforms/powermac/ |
A D | pci.c | 62 const int * bus_range; in fixup_one_level_bus_range() local 71 bus_range = of_get_property(node, "bus-range", &len); in fixup_one_level_bus_range() 72 if (bus_range != NULL && len > 2 * sizeof(int)) { in fixup_one_level_bus_range() 73 if (bus_range[1] > higher) in fixup_one_level_bus_range() 74 higher = bus_range[1]; in fixup_one_level_bus_range() 89 int *bus_range, len; in fixup_bus_range() local 97 bus_range = prop->value; in fixup_bus_range() 98 bus_range[1] = fixup_one_level_bus_range(bridge->child, bus_range[1]); in fixup_bus_range() 777 const int *bus_range; in pmac_add_bridge() local 795 hose->first_busno = bus_range ? bus_range[0] : 0; in pmac_add_bridge() [all …]
|
/linux/arch/powerpc/platforms/4xx/ |
A D | pci.c | 327 const int *bus_range; in ppc4xx_probe_pci_bridge() local 354 bus_range = of_get_property(np, "bus-range", NULL); in ppc4xx_probe_pci_bridge() 368 hose->first_busno = bus_range ? bus_range[0] : 0x0; in ppc4xx_probe_pci_bridge() 369 hose->last_busno = bus_range ? bus_range[1] : 0xff; in ppc4xx_probe_pci_bridge() 531 const int *bus_range; in ppc4xx_probe_pcix_bridge() local 560 bus_range = of_get_property(np, "bus-range", NULL); in ppc4xx_probe_pcix_bridge() 574 hose->first_busno = bus_range ? bus_range[0] : 0x0; in ppc4xx_probe_pcix_bridge() 575 hose->last_busno = bus_range ? bus_range[1] : 0xff; in ppc4xx_probe_pcix_bridge() 1916 const int *bus_range; in ppc4xx_pciex_port_setup_hose() local 1940 hose->first_busno = bus_range ? bus_range[0] : 0x0; in ppc4xx_pciex_port_setup_hose() [all …]
|
/linux/drivers/pci/controller/ |
A D | pcie-xilinx-cpm.c | 501 struct resource *bus_range) in xilinx_cpm_pcie_parse_dt() argument 516 port->cfg = pci_ecam_create(dev, res, bus_range, in xilinx_cpm_pcie_parse_dt()
|
A D | pcie-altera.c | 94 struct resource bus_range; member
|