summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/mm
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2010-02-17 23:34:38 +0100
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2010-02-17 23:34:38 +0100
commitefd0f0f385da6ee6d1a22cfe1ac94607ebe2a292 (patch)
tree6ba1a89db2eb68046c238a7fca9bae4f72d92874 /arch/powerpc/mm
parentpowerpc/booke: Add support for advanced debug registers (diff)
parentpowerpc/40x: Add support for PPC40x boards with > 512MB SDRAM (diff)
downloadlinux-efd0f0f385da6ee6d1a22cfe1ac94607ebe2a292.tar.xz
linux-efd0f0f385da6ee6d1a22cfe1ac94607ebe2a292.zip
Merge commit 'jwb/next' into next
Diffstat (limited to 'arch/powerpc/mm')
-rw-r--r--arch/powerpc/mm/40x_mmu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/mm/40x_mmu.c b/arch/powerpc/mm/40x_mmu.c
index 08dfa8e6d86f..65abfcfaaa9e 100644
--- a/arch/powerpc/mm/40x_mmu.c
+++ b/arch/powerpc/mm/40x_mmu.c
@@ -84,8 +84,8 @@ void __init MMU_init_hw(void)
* vectors and the kernel live in real-mode.
*/
- mtspr(SPRN_DCCR, 0xF0000000); /* 512 MB of data space at 0x0. */
- mtspr(SPRN_ICCR, 0xF0000000); /* 512 MB of instr. space at 0x0. */
+ mtspr(SPRN_DCCR, 0xFFFF0000); /* 2GByte of data space at 0x0. */
+ mtspr(SPRN_ICCR, 0xFFFF0000); /* 2GByte of instr. space at 0x0. */
}
#define LARGE_PAGE_SIZE_16M (1<<24)