Commit f0b859e3 authored by Paul Mundt's avatar Paul Mundt

sh: Reclaim beginning of P3 space for vmalloc area.

The first 1MB of P3 space was reserved and used for page colouring,
as we've reworked that to use fixmaps, we can reclaim the space and
hand it back to VMALLOC_START.
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent eb695dbf
...@@ -98,9 +98,6 @@ void __init p3_cache_init(void) ...@@ -98,9 +98,6 @@ void __init p3_cache_init(void)
} }
emit_cache_params(); emit_cache_params();
if (ioremap_page_range(P3SEG, P3SEG + (PAGE_SIZE * 4), 0, PAGE_KERNEL))
panic("%s failed.", __FUNCTION__);
} }
/* /*
......
...@@ -55,11 +55,7 @@ extern unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)]; ...@@ -55,11 +55,7 @@ extern unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)];
#define PTE_PHYS_MASK (0x20000000 - PAGE_SIZE) #define PTE_PHYS_MASK (0x20000000 - PAGE_SIZE)
/* #define VMALLOC_START (P3SEG)
* First 1MB map is used by fixed purpose.
* Currently only 4-entry (16kB) is used (see arch/sh/mm/cache.c)
*/
#define VMALLOC_START (P3SEG+0x00100000)
#define VMALLOC_END (FIXADDR_START-2*PAGE_SIZE) #define VMALLOC_END (FIXADDR_START-2*PAGE_SIZE)
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment