summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDave Jiang <dave.jiang@com.rmk.(none)>2005-01-07 00:12:42 +0000
committerRussell King <rmk@flint.arm.linux.org.uk>2005-01-07 00:12:42 +0000
commit9c0c7e70a0ea9f0358e9ce9b4ca52ca8d4cd6e70 (patch)
tree48508286d340fc47152c90dcfef184811d7b71f7 /include
parent7ae2e34eecf895aa3eb72279de8ed1da6ebcf3e4 (diff)
[ARM PATCH] 2352/1: Increase amount of physical memory addressable on IOP platforms
Patch from Dave Jiang Signed-off-by: Dave Jiang Move the VMALLOC_END to 0xfe000000 from 0xe8000000 to increase the amount of physical memory addressable on XScale IOP platforms. Signed-off-by: Russell King
Diffstat (limited to 'include')
-rw-r--r--include/asm-arm/arch-iop3xx/vmalloc.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/asm-arm/arch-iop3xx/vmalloc.h b/include/asm-arm/arch-iop3xx/vmalloc.h
index d59dfeda9ab2..dc1d2a957164 100644
--- a/include/asm-arm/arch-iop3xx/vmalloc.h
+++ b/include/asm-arm/arch-iop3xx/vmalloc.h
@@ -13,4 +13,7 @@
#define VMALLOC_OFFSET (8*1024*1024)
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
#define VMALLOC_VMADDR(x) ((unsigned long)(x))
-#define VMALLOC_END (0xe8000000)
+//#define VMALLOC_END (0xe8000000)
+/* increase usable physical RAM to ~992M per RMK */
+#define VMALLOC_END (0xfe000000)
+