summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/sysdev/fsl_pci.c
diff options
context:
space:
mode:
authorKumar Gala2007-07-19 22:29:53 +0200
committerKumar Gala2007-07-23 17:27:08 +0200
commit6c0a11c118471f79795202348fbd0e6580341794 (patch)
tree3fdd1b450e32203703ef56a3f1e6666c472312a1 /arch/powerpc/sysdev/fsl_pci.c
parent[POWERPC] Add basic PCI node for mpc8568mds board (diff)
downloadkernel-qcow2-linux-6c0a11c118471f79795202348fbd0e6580341794.tar.gz
kernel-qcow2-linux-6c0a11c118471f79795202348fbd0e6580341794.tar.xz
kernel-qcow2-linux-6c0a11c118471f79795202348fbd0e6580341794.zip
[POWERPC] Fixup resources on pci_bus for PCIe PHB when no device is connected
On the 85xx/86xx PCIe controllers if there is no device connected to the PHB we will still allocate a pci_bus for downstream bus of the virtual P2P bridge. However the resources allocated to the downstream bus are not correct and so we just mimic the resources from the upstream pci_bus. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/sysdev/fsl_pci.c')
-rw-r--r--arch/powerpc/sysdev/fsl_pci.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/powerpc/sysdev/fsl_pci.c b/arch/powerpc/sysdev/fsl_pci.c
index 2eefcde5b0da..faafae601a72 100644
--- a/arch/powerpc/sysdev/fsl_pci.c
+++ b/arch/powerpc/sysdev/fsl_pci.c
@@ -142,6 +142,20 @@ int __init fsl_pcie_check_link(struct pci_controller *hose)
return 0;
}
+void fsl_pcibios_fixup_bus(struct pci_bus *bus)
+{
+ struct pci_controller *hose = (struct pci_controller *) bus->sysdata;
+ int i;
+
+ /* deal with bogus pci_bus when we don't have anything connected on PCIe */
+ if (hose->indirect_type & PPC_INDIRECT_TYPE_NO_PCIE_LINK) {
+ if (bus->parent) {
+ for (i = 0; i < 4; ++i)
+ bus->resource[i] = bus->parent->resource[i];
+ }
+ }
+}
+
int __init fsl_add_bridge(struct device_node *dev, int is_primary)
{
int len;