summaryrefslogtreecommitdiffstats
path: root/include/asm-x86/io.h
diff options
context:
space:
mode:
authorJeremy Fitzhardinge2008-09-08 00:21:15 +0200
committerIngo Molnar2008-10-13 10:21:01 +0200
commit1494177942b23b7094ca291d37e6f6263fa60fdd (patch)
tree3248808433f4d8c5ca9f11be3ff799a448a23206 /include/asm-x86/io.h
parentx86: remove duplicate early_ioremap declarations (diff)
downloadkernel-qcow2-linux-1494177942b23b7094ca291d37e6f6263fa60fdd.tar.gz
kernel-qcow2-linux-1494177942b23b7094ca291d37e6f6263fa60fdd.tar.xz
kernel-qcow2-linux-1494177942b23b7094ca291d37e6f6263fa60fdd.zip
x86: add early_memremap()
early_ioremap() is also used to map normal memory when constructing the linear memory mapping. However, since we sometimes need to be able to distinguish between actual IO mappings and normal memory mappings, add a early_memremap() call, which maps with PAGE_KERNEL (as opposed to PAGE_KERNEL_IO for early_ioremap()), and use it when constructing pagetables. Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/io.h')
-rw-r--r--include/asm-x86/io.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-x86/io.h b/include/asm-x86/io.h
index e091f3949eca..a233f835e0b5 100644
--- a/include/asm-x86/io.h
+++ b/include/asm-x86/io.h
@@ -83,6 +83,7 @@ extern void early_ioremap_init(void);
extern void early_ioremap_clear(void);
extern void early_ioremap_reset(void);
extern void *early_ioremap(unsigned long offset, unsigned long size);
+extern void *early_memremap(unsigned long offset, unsigned long size);
extern void early_iounmap(void *addr, unsigned long size);
extern void __iomem *fix_ioremap(unsigned idx, unsigned long phys);