summaryrefslogtreecommitdiffstats
path: root/include/asm-i386/page.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-i386/page.h')
-rw-r--r--include/asm-i386/page.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/asm-i386/page.h b/include/asm-i386/page.h
index 4744df9c8..5889ec880 100644
--- a/include/asm-i386/page.h
+++ b/include/asm-i386/page.h
@@ -1,12 +1,15 @@
#ifndef _I386_PAGE_H
#define _I386_PAGE_H
+#include <linux/config.h>
+
/* PAGE_SHIFT determines the page size */
#define PAGE_SHIFT 12
#define PAGE_SIZE (1UL << PAGE_SHIFT)
#define PAGE_MASK (~(PAGE_SIZE-1))
#ifdef __KERNEL__
+#ifndef __ASSEMBLY__
#define STRICT_MM_TYPECHECKS
@@ -52,12 +55,14 @@ typedef unsigned long pgprot_t;
#define __pgprot(x) (x)
#endif
+#endif /* !__ASSEMBLY__ */
/* to align the pointer to the (next) page boundary */
#define PAGE_ALIGN(addr) (((addr)+PAGE_SIZE-1)&PAGE_MASK)
/* This handles the memory map.. */
-#define PAGE_OFFSET 0xC0000000
+#define __PAGE_OFFSET ((0x1000-CONFIG_MAX_MEMSIZE)<<20)
+#define PAGE_OFFSET ((unsigned long)__PAGE_OFFSET)
#define __pa(x) ((unsigned long)(x)-PAGE_OFFSET)
#define __va(x) ((void *)((unsigned long)(x)+PAGE_OFFSET))
#define MAP_NR(addr) (__pa(addr) >> PAGE_SHIFT)