Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 62850
b: refs/heads/master
c: 957ecff
h: refs/heads/master
v: v3
  • Loading branch information
Kumar Gala committed Jul 23, 2007
1 parent f34ef00 commit bdb46fa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 62c66c8e55fae40d93d8f79d60e2ed50379e46f9
refs/heads/master: 957ecffc2527ebd414c6e35b65f0f744739b012d
18 changes: 9 additions & 9 deletions trunk/arch/powerpc/sysdev/fsl_pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ static void __devinit quirk_fsl_pcie_transparent(struct pci_dev *dev)
int i, res_idx = PCI_BRIDGE_RESOURCES;
struct pci_controller *hose;

/* if we aren't a PCIe don't bother */
if (!pci_find_capability(dev, PCI_CAP_ID_EXP))
return ;

/*
* Make the bridge be transparent.
*/
Expand Down Expand Up @@ -167,20 +171,16 @@ int __init fsl_add_bridge(struct device_node *dev, int is_primary)
hose->first_busno = bus_range ? bus_range[0] : 0x0;
hose->last_busno = bus_range ? bus_range[1] : 0xff;

/* check PCI express bridge */
if (of_device_is_compatible(dev, "fsl,mpc8548-pcie") ||
of_device_is_compatible(dev, "fsl,mpc8641-pcie"))
hose->indirect_type = PPC_INDIRECT_TYPE_EXT_REG |
PPC_INDIRECT_TYPE_SURPRESS_PRIMARY_BUS;

setup_indirect_pci(hose, rsrc.start, rsrc.start + 0x4);
setup_pci_cmd(hose);

/* check PCI express link status */
if (of_device_is_compatible(dev, "fsl,mpc8548-pcie") ||
of_device_is_compatible(dev, "fsl,mpc8641-pcie"))
if (early_find_capability(hose, 0, 0, PCI_CAP_ID_EXP)) {
hose->indirect_type = PPC_INDIRECT_TYPE_EXT_REG |
PPC_INDIRECT_TYPE_SURPRESS_PRIMARY_BUS;
if (fsl_pcie_check_link(hose))
return -ENXIO;
hose->indirect_type |= PPC_INDIRECT_TYPE_NO_PCIE_LINK;
}

printk(KERN_INFO "Found FSL PCI host bridge at 0x%016llx."
"Firmware bus number: %d->%d\n",
Expand Down

0 comments on commit bdb46fa

Please sign in to comment.