cns3xxx: fix PCIe->PCI bridge access (fixes #18422)

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 43414
lede-17.01
Felix Fietkau 2014-11-27 20:54:18 +00:00
parent ceccdc4a31
commit f473f95196
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--- a/arch/arm/mach-cns3xxx/pcie.c
+++ b/arch/arm/mach-cns3xxx/pcie.c
@@ -93,6 +93,8 @@ static void __iomem *cns3xxx_pci_cfg_bas
base = (void __iomem *)cnspci->cfg_bases[type].virtual;
offset = (devfn << 12) | (where & 0xffc);
+ if (busno > 1)
+ offset += busno << 20;
return base + offset;
}