1 #ifndef _ASM_X86_PAGE_32_H
2 #define _ASM_X86_PAGE_32_H
5 * This handles the memory map.
7 * A __PAGE_OFFSET of 0xC0000000 means that the kernel has
8 * a virtual address space of one gigabyte, which limits the
9 * amount of physical memory you can use to about 950MB.
11 * If you want more physical memory than this then see the CONFIG_HIGHMEM4G
12 * and CONFIG_HIGHMEM64G options in the kernel configuration.
14 #define __PAGE_OFFSET _AC(CONFIG_PAGE_OFFSET, UL)
17 #define __PHYSICAL_MASK_SHIFT 36
18 #define __VIRTUAL_MASK_SHIFT 32
19 #define PAGETABLE_LEVELS 3
26 typedef u64 pgprotval_t
;
27 typedef u64 phys_addr_t
;
31 unsigned long pte_low
, pte_high
;
35 #endif /* __ASSEMBLY__
37 #else /* !CONFIG_X86_PAE */
38 #define __PHYSICAL_MASK_SHIFT 32
39 #define __VIRTUAL_MASK_SHIFT 32
40 #define PAGETABLE_LEVELS 2
43 typedef unsigned long pteval_t
;
44 typedef unsigned long pmdval_t
;
45 typedef unsigned long pudval_t
;
46 typedef unsigned long pgdval_t
;
47 typedef unsigned long pgprotval_t
;
48 typedef unsigned long phys_addr_t
;
55 #endif /* __ASSEMBLY__ */
56 #endif /* CONFIG_X86_PAE */
59 typedef struct page
*pgtable_t
;
62 #ifdef CONFIG_HUGETLB_PAGE
63 #define HAVE_ARCH_HUGETLB_UNMAPPED_AREA
67 #define __phys_addr(x) ((x) - PAGE_OFFSET)
68 #define __phys_reloc_hide(x) RELOC_HIDE((x), 0)
71 #define pfn_valid(pfn) ((pfn) < max_mapnr)
72 #endif /* CONFIG_FLATMEM */
74 extern int nx_enabled
;
77 * This much address space is reserved for vmalloc() and iomap()
78 * as well as fixmap mappings.
80 extern unsigned int __VMALLOC_RESERVE
;
81 extern int sysctl_legacy_va_layout
;
83 #define VMALLOC_RESERVE ((unsigned long)__VMALLOC_RESERVE)
84 #define MAXMEM (-__PAGE_OFFSET - __VMALLOC_RESERVE)
86 #ifdef CONFIG_X86_USE_3DNOW
89 static inline void clear_page(void *page
)
94 static inline void copy_page(void *to
, void *from
)
96 mmx_copy_page(to
, from
);
98 #else /* !CONFIG_X86_USE_3DNOW */
99 #include <linux/string.h>
101 static inline void clear_page(void *page
)
103 memset(page
, 0, PAGE_SIZE
);
106 static inline void copy_page(void *to
, void *from
)
108 memcpy(to
, from
, PAGE_SIZE
);
110 #endif /* CONFIG_X86_3DNOW */
111 #endif /* !__ASSEMBLY__ */
113 #endif /* _ASM_X86_PAGE_32_H */