diff options
author | Lennert Buytenhek <buytenh@wantstofly.org> | 2009-12-23 16:19:56 +0100 |
---|---|---|
committer | Nicolas Pitre <nico@fluxnic.net> | 2009-12-28 23:50:49 -0500 |
commit | 7788cd5557766d49343088b2edc544b186e2fe53 (patch) | |
tree | ee2cf8fa7858b149e8f8835aa2208cb5201eb586 /arch/arm/plat-orion | |
parent | 6b7b284958d47b77d06745b36bc7f36dab769d9b (diff) |
[ARM] Orion: fix PCIe inbound window programming when RAM size is not a power of two
The PCIe inbound window size is supposed to be a power of two. If
the total amount of RAM installed in the system is not a power of two,
round it up such that it is.
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Signed-off-by: Nicolas Pitre <nico@marvell.com>
Diffstat (limited to 'arch/arm/plat-orion')
-rw-r--r-- | arch/arm/plat-orion/pcie.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/plat-orion/pcie.c b/arch/arm/plat-orion/pcie.c index d41d41d78ad..54c84a492a0 100644 --- a/arch/arm/plat-orion/pcie.c +++ b/arch/arm/plat-orion/pcie.c @@ -133,6 +133,12 @@ static void __init orion_pcie_setup_wins(void __iomem *base, } /* + * Round up 'size' to the nearest power of two. + */ + if ((size & (size - 1)) != 0) + size = 1 << fls(size); + + /* * Setup BAR[1] to all DRAM banks. */ writel(dram->cs[0].base, base + PCIE_BAR_LO_OFF(1)); |