Go to the documentation of this file. 1 #ifndef _ASM_X86_PGTABLE_DEFS_H
2 #define _ASM_X86_PGTABLE_DEFS_H
4 #include <linux/const.h>
7 #define FIRST_USER_ADDRESS 0
9 #define _PAGE_BIT_PRESENT 0
10 #define _PAGE_BIT_RW 1
11 #define _PAGE_BIT_USER 2
12 #define _PAGE_BIT_PWT 3
13 #define _PAGE_BIT_PCD 4
14 #define _PAGE_BIT_ACCESSED 5
15 #define _PAGE_BIT_DIRTY 6
16 #define _PAGE_BIT_PSE 7
17 #define _PAGE_BIT_PAT 7
18 #define _PAGE_BIT_GLOBAL 8
19 #define _PAGE_BIT_UNUSED1 9
20 #define _PAGE_BIT_IOMAP 10
21 #define _PAGE_BIT_HIDDEN 11
22 #define _PAGE_BIT_PAT_LARGE 12
23 #define _PAGE_BIT_SPECIAL _PAGE_BIT_UNUSED1
24 #define _PAGE_BIT_CPA_TEST _PAGE_BIT_UNUSED1
25 #define _PAGE_BIT_SPLITTING _PAGE_BIT_UNUSED1
26 #define _PAGE_BIT_NX 63
30 #define _PAGE_BIT_PROTNONE _PAGE_BIT_GLOBAL
32 #define _PAGE_BIT_FILE _PAGE_BIT_DIRTY
34 #define _PAGE_PRESENT (_AT(pteval_t, 1) << _PAGE_BIT_PRESENT)
35 #define _PAGE_RW (_AT(pteval_t, 1) << _PAGE_BIT_RW)
36 #define _PAGE_USER (_AT(pteval_t, 1) << _PAGE_BIT_USER)
37 #define _PAGE_PWT (_AT(pteval_t, 1) << _PAGE_BIT_PWT)
38 #define _PAGE_PCD (_AT(pteval_t, 1) << _PAGE_BIT_PCD)
39 #define _PAGE_ACCESSED (_AT(pteval_t, 1) << _PAGE_BIT_ACCESSED)
40 #define _PAGE_DIRTY (_AT(pteval_t, 1) << _PAGE_BIT_DIRTY)
41 #define _PAGE_PSE (_AT(pteval_t, 1) << _PAGE_BIT_PSE)
42 #define _PAGE_GLOBAL (_AT(pteval_t, 1) << _PAGE_BIT_GLOBAL)
43 #define _PAGE_UNUSED1 (_AT(pteval_t, 1) << _PAGE_BIT_UNUSED1)
44 #define _PAGE_IOMAP (_AT(pteval_t, 1) << _PAGE_BIT_IOMAP)
45 #define _PAGE_PAT (_AT(pteval_t, 1) << _PAGE_BIT_PAT)
46 #define _PAGE_PAT_LARGE (_AT(pteval_t, 1) << _PAGE_BIT_PAT_LARGE)
47 #define _PAGE_SPECIAL (_AT(pteval_t, 1) << _PAGE_BIT_SPECIAL)
48 #define _PAGE_CPA_TEST (_AT(pteval_t, 1) << _PAGE_BIT_CPA_TEST)
49 #define _PAGE_SPLITTING (_AT(pteval_t, 1) << _PAGE_BIT_SPLITTING)
50 #define __HAVE_ARCH_PTE_SPECIAL
52 #ifdef CONFIG_KMEMCHECK
53 #define _PAGE_HIDDEN (_AT(pteval_t, 1) << _PAGE_BIT_HIDDEN)
55 #define _PAGE_HIDDEN (_AT(pteval_t, 0))
58 #if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
59 #define _PAGE_NX (_AT(pteval_t, 1) << _PAGE_BIT_NX)
61 #define _PAGE_NX (_AT(pteval_t, 0))
64 #define _PAGE_FILE (_AT(pteval_t, 1) << _PAGE_BIT_FILE)
65 #define _PAGE_PROTNONE (_AT(pteval_t, 1) << _PAGE_BIT_PROTNONE)
67 #define _PAGE_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | \
68 _PAGE_ACCESSED | _PAGE_DIRTY)
69 #define _KERNPG_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED | \
73 #define _PAGE_CHG_MASK (PTE_PFN_MASK | _PAGE_PCD | _PAGE_PWT | \
74 _PAGE_SPECIAL | _PAGE_ACCESSED | _PAGE_DIRTY)
75 #define _HPAGE_CHG_MASK (_PAGE_CHG_MASK | _PAGE_PSE)
77 #define _PAGE_CACHE_MASK (_PAGE_PCD | _PAGE_PWT)
78 #define _PAGE_CACHE_WB (0)
79 #define _PAGE_CACHE_WC (_PAGE_PWT)
80 #define _PAGE_CACHE_UC_MINUS (_PAGE_PCD)
81 #define _PAGE_CACHE_UC (_PAGE_PCD | _PAGE_PWT)
83 #define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_ACCESSED)
84 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | \
85 _PAGE_ACCESSED | _PAGE_NX)
87 #define PAGE_SHARED_EXEC __pgprot(_PAGE_PRESENT | _PAGE_RW | \
88 _PAGE_USER | _PAGE_ACCESSED)
89 #define PAGE_COPY_NOEXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | \
90 _PAGE_ACCESSED | _PAGE_NX)
91 #define PAGE_COPY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | \
93 #define PAGE_COPY PAGE_COPY_NOEXEC
94 #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | \
95 _PAGE_ACCESSED | _PAGE_NX)
96 #define PAGE_READONLY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | \
99 #define __PAGE_KERNEL_EXEC \
100 (_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_GLOBAL)
101 #define __PAGE_KERNEL (__PAGE_KERNEL_EXEC | _PAGE_NX)
103 #define __PAGE_KERNEL_RO (__PAGE_KERNEL & ~_PAGE_RW)
104 #define __PAGE_KERNEL_RX (__PAGE_KERNEL_EXEC & ~_PAGE_RW)
105 #define __PAGE_KERNEL_EXEC_NOCACHE (__PAGE_KERNEL_EXEC | _PAGE_PCD | _PAGE_PWT)
106 #define __PAGE_KERNEL_WC (__PAGE_KERNEL | _PAGE_CACHE_WC)
107 #define __PAGE_KERNEL_NOCACHE (__PAGE_KERNEL | _PAGE_PCD | _PAGE_PWT)
108 #define __PAGE_KERNEL_UC_MINUS (__PAGE_KERNEL | _PAGE_PCD)
109 #define __PAGE_KERNEL_VSYSCALL (__PAGE_KERNEL_RX | _PAGE_USER)
110 #define __PAGE_KERNEL_VVAR (__PAGE_KERNEL_RO | _PAGE_USER)
111 #define __PAGE_KERNEL_VVAR_NOCACHE (__PAGE_KERNEL_VVAR | _PAGE_PCD | _PAGE_PWT)
112 #define __PAGE_KERNEL_LARGE (__PAGE_KERNEL | _PAGE_PSE)
113 #define __PAGE_KERNEL_LARGE_NOCACHE (__PAGE_KERNEL | _PAGE_CACHE_UC | _PAGE_PSE)
114 #define __PAGE_KERNEL_LARGE_EXEC (__PAGE_KERNEL_EXEC | _PAGE_PSE)
116 #define __PAGE_KERNEL_IO (__PAGE_KERNEL | _PAGE_IOMAP)
117 #define __PAGE_KERNEL_IO_NOCACHE (__PAGE_KERNEL_NOCACHE | _PAGE_IOMAP)
118 #define __PAGE_KERNEL_IO_UC_MINUS (__PAGE_KERNEL_UC_MINUS | _PAGE_IOMAP)
119 #define __PAGE_KERNEL_IO_WC (__PAGE_KERNEL_WC | _PAGE_IOMAP)
121 #define PAGE_KERNEL __pgprot(__PAGE_KERNEL)
122 #define PAGE_KERNEL_RO __pgprot(__PAGE_KERNEL_RO)
123 #define PAGE_KERNEL_EXEC __pgprot(__PAGE_KERNEL_EXEC)
124 #define PAGE_KERNEL_RX __pgprot(__PAGE_KERNEL_RX)
125 #define PAGE_KERNEL_WC __pgprot(__PAGE_KERNEL_WC)
126 #define PAGE_KERNEL_NOCACHE __pgprot(__PAGE_KERNEL_NOCACHE)
127 #define PAGE_KERNEL_UC_MINUS __pgprot(__PAGE_KERNEL_UC_MINUS)
128 #define PAGE_KERNEL_EXEC_NOCACHE __pgprot(__PAGE_KERNEL_EXEC_NOCACHE)
129 #define PAGE_KERNEL_LARGE __pgprot(__PAGE_KERNEL_LARGE)
130 #define PAGE_KERNEL_LARGE_NOCACHE __pgprot(__PAGE_KERNEL_LARGE_NOCACHE)
131 #define PAGE_KERNEL_LARGE_EXEC __pgprot(__PAGE_KERNEL_LARGE_EXEC)
132 #define PAGE_KERNEL_VSYSCALL __pgprot(__PAGE_KERNEL_VSYSCALL)
133 #define PAGE_KERNEL_VVAR __pgprot(__PAGE_KERNEL_VVAR)
134 #define PAGE_KERNEL_VVAR_NOCACHE __pgprot(__PAGE_KERNEL_VVAR_NOCACHE)
136 #define PAGE_KERNEL_IO __pgprot(__PAGE_KERNEL_IO)
137 #define PAGE_KERNEL_IO_NOCACHE __pgprot(__PAGE_KERNEL_IO_NOCACHE)
138 #define PAGE_KERNEL_IO_UC_MINUS __pgprot(__PAGE_KERNEL_IO_UC_MINUS)
139 #define PAGE_KERNEL_IO_WC __pgprot(__PAGE_KERNEL_IO_WC)
142 #define __P000 PAGE_NONE
143 #define __P001 PAGE_READONLY
144 #define __P010 PAGE_COPY
145 #define __P011 PAGE_COPY
146 #define __P100 PAGE_READONLY_EXEC
147 #define __P101 PAGE_READONLY_EXEC
148 #define __P110 PAGE_COPY_EXEC
149 #define __P111 PAGE_COPY_EXEC
151 #define __S000 PAGE_NONE
152 #define __S001 PAGE_READONLY
153 #define __S010 PAGE_SHARED
154 #define __S011 PAGE_SHARED
155 #define __S100 PAGE_READONLY_EXEC
156 #define __S101 PAGE_READONLY_EXEC
157 #define __S110 PAGE_SHARED_EXEC
158 #define __S111 PAGE_SHARED_EXEC
164 #define __PAGE_KERNEL_IDENT_LARGE_EXEC __PAGE_KERNEL_LARGE_EXEC
171 #define PTE_IDENT_ATTR 0x003
172 #define PDE_IDENT_ATTR 0x067
173 #define PGD_IDENT_ATTR 0x001
184 #include <linux/types.h>
187 #define PTE_PFN_MASK ((pteval_t)PHYSICAL_PAGE_MASK)
190 #define PTE_FLAGS_MASK (~PTE_PFN_MASK)
198 return (
pgd_t) { val };
211 #if PAGETABLE_LEVELS > 3
216 return (
pud_t) { val };
228 return native_pgd_val(pud.
pgd);
232 #if PAGETABLE_LEVELS > 2
237 return (
pmd_t) { val };
249 return native_pgd_val(pmd.
pud.
pgd);
278 #define pgprot_val(x) ((x).pgprot)
279 #define __pgprot(x) ((pgprot_t) { (x) } )
288 #define pgprot_writecombine pgprot_writecombine
292 #define __HAVE_PFNMAP_TRACKING
294 #define __HAVE_PHYS_MEM_ACCESS_PROT
308 #define native_pagetable_init paging_init
322 #ifdef CONFIG_PROC_FS
323 extern void update_page_count(
int level,
unsigned long pages);
325 static inline void update_page_count(
int level,
unsigned long pages) { }