[ARM] kmap support
authorNicolas Pitre <nico@cam.org>
Mon, 15 Sep 2008 20:44:55 +0000 (16:44 -0400)
committerNicolas Pitre <nico@cam.org>
Mon, 16 Mar 2009 01:01:20 +0000 (21:01 -0400)
commitd73cd42893f4cdc06e6829fea2347bb92cb789d1
treefddff067f2b09aa13741bc9d05956429616e986a
parent5f0fbf9ecaf354fa4bbf266fffdea2ea3d14a0ed
[ARM] kmap support

The kmap virtual area borrows a 2MB range at the top of the 16MB area
below PAGE_OFFSET currently reserved for kernel modules and/or the
XIP kernel.  This 2MB corresponds to the range covered by 2 consecutive
second-level page tables, or a single pmd entry as seen by the Linux
page table abstraction.  Because XIP kernels are unlikely to be seen
on systems needing highmem support, there shouldn't be any shortage of
VM space for modules (14 MB for modules is still way more than twice the
typical usage).

Because the virtual mapping of highmem pages can go away at any moment
after kunmap() is called on them, we need to bypass the delayed cache
flushing provided by flush_dcache_page() in that case.

The atomic kmap versions are based on fixmaps, and
__cpuc_flush_dcache_page() is used directly in that case.

Signed-off-by: Nicolas Pitre <nico@marvell.com>
arch/arm/include/asm/highmem.h [new file with mode: 0644]
arch/arm/include/asm/memory.h
arch/arm/mm/Makefile
arch/arm/mm/flush.c
arch/arm/mm/highmem.c [new file with mode: 0644]
arch/arm/mm/mmu.c