x86: page.h: make pte_t a union to always include
[firewire-audio.git] / include / asm-x86 / page_32.h
blob11c4b39cada16c8f4f3929d08fc07e0ecc9f8aee
1 #ifndef _ASM_X86_PAGE_32_H
2 #define _ASM_X86_PAGE_32_H
4 /*
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)
16 #ifdef CONFIG_X86_PAE
17 #define __PHYSICAL_MASK_SHIFT 36
18 #define __VIRTUAL_MASK_SHIFT 32
19 #define PAGETABLE_LEVELS 3
21 #ifndef __ASSEMBLY__
22 typedef u64 pteval_t;
23 typedef u64 pmdval_t;
24 typedef u64 pudval_t;
25 typedef u64 pgdval_t;
26 typedef u64 pgprotval_t;
27 typedef u64 phys_addr_t;
29 typedef union {
30 struct {
31 unsigned long pte_low, pte_high;
33 pteval_t pte;
34 } pte_t;
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
42 #ifndef __ASSEMBLY__
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;
50 typedef union { pteval_t pte, pte_low; } pte_t;
51 typedef pte_t boot_pte_t;
53 #endif /* __ASSEMBLY__ */
54 #endif /* CONFIG_X86_PAE */
56 #ifdef CONFIG_HUGETLB_PAGE
57 #define HAVE_ARCH_HUGETLB_UNMAPPED_AREA
58 #endif
60 #ifndef __ASSEMBLY__
61 #define __phys_addr(x) ((x)-PAGE_OFFSET)
62 #define __phys_reloc_hide(x) RELOC_HIDE((x), 0)
64 #ifdef CONFIG_FLATMEM
65 #define pfn_valid(pfn) ((pfn) < max_mapnr)
66 #endif /* CONFIG_FLATMEM */
68 extern int nx_enabled;
71 * This much address space is reserved for vmalloc() and iomap()
72 * as well as fixmap mappings.
74 extern unsigned int __VMALLOC_RESERVE;
75 extern int sysctl_legacy_va_layout;
76 extern int page_is_ram(unsigned long pagenr);
78 #define VMALLOC_RESERVE ((unsigned long)__VMALLOC_RESERVE)
79 #define MAXMEM (-__PAGE_OFFSET-__VMALLOC_RESERVE)
81 #ifdef CONFIG_X86_USE_3DNOW
82 #include <asm/mmx.h>
84 static inline void clear_page(void *page)
86 mmx_clear_page(page);
89 static inline void copy_page(void *to, void *from)
91 mmx_copy_page(to, from);
93 #else /* !CONFIG_X86_USE_3DNOW */
94 #include <linux/string.h>
96 static inline void clear_page(void *page)
98 memset(page, 0, PAGE_SIZE);
101 static inline void copy_page(void *to, void *from)
103 memcpy(to, from, PAGE_SIZE);
105 #endif /* CONFIG_X86_3DNOW */
106 #endif /* !__ASSEMBLY__ */
108 #endif /* _ASM_X86_PAGE_32_H */