blob: 7aa34c8eb22052538304275a4356bb4fd9ad1450 [file] [log] [blame]
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +01001#ifndef _ASM_X86_PGTABLE_H
2#define _ASM_X86_PGTABLE_H
3
4#define USER_PTRS_PER_PGD ((TASK_SIZE-1)/PGDIR_SIZE+1)
5#define FIRST_USER_ADDRESS 0
6
7#define _PAGE_BIT_PRESENT 0
8#define _PAGE_BIT_RW 1
9#define _PAGE_BIT_USER 2
10#define _PAGE_BIT_PWT 3
11#define _PAGE_BIT_PCD 4
12#define _PAGE_BIT_ACCESSED 5
13#define _PAGE_BIT_DIRTY 6
14#define _PAGE_BIT_FILE 6
15#define _PAGE_BIT_PSE 7 /* 4 MB (or 2MB) page */
16#define _PAGE_BIT_GLOBAL 8 /* Global TLB entry PPro+ */
17#define _PAGE_BIT_UNUSED1 9 /* available for programmer */
18#define _PAGE_BIT_UNUSED2 10
19#define _PAGE_BIT_UNUSED3 11
20#define _PAGE_BIT_NX 63 /* No execute: only valid after cpuid check */
21
Jeremy Fitzhardingef2919232008-01-30 13:32:59 +010022/*
23 * Note: we use _AC(1, L) instead of _AC(1, UL) so that we get a
24 * sign-extended value on 32-bit with all 1's in the upper word,
25 * which preserves the upper pte values on 64-bit ptes:
26 */
Ingo Molnar61f382262008-01-30 13:32:55 +010027#define _PAGE_PRESENT (_AC(1, L)<<_PAGE_BIT_PRESENT)
28#define _PAGE_RW (_AC(1, L)<<_PAGE_BIT_RW)
29#define _PAGE_USER (_AC(1, L)<<_PAGE_BIT_USER)
30#define _PAGE_PWT (_AC(1, L)<<_PAGE_BIT_PWT)
31#define _PAGE_PCD (_AC(1, L)<<_PAGE_BIT_PCD)
32#define _PAGE_ACCESSED (_AC(1, L)<<_PAGE_BIT_ACCESSED)
33#define _PAGE_DIRTY (_AC(1, L)<<_PAGE_BIT_DIRTY)
34#define _PAGE_PSE (_AC(1, L)<<_PAGE_BIT_PSE) /* 2MB page */
35#define _PAGE_GLOBAL (_AC(1, L)<<_PAGE_BIT_GLOBAL) /* Global TLB entry */
36#define _PAGE_UNUSED1 (_AC(1, L)<<_PAGE_BIT_UNUSED1)
37#define _PAGE_UNUSED2 (_AC(1, L)<<_PAGE_BIT_UNUSED2)
38#define _PAGE_UNUSED3 (_AC(1, L)<<_PAGE_BIT_UNUSED3)
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010039
40#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
41#define _PAGE_NX (_AC(1, ULL) << _PAGE_BIT_NX)
42#else
43#define _PAGE_NX 0
44#endif
45
46/* If _PAGE_PRESENT is clear, we use these: */
47#define _PAGE_FILE _PAGE_DIRTY /* nonlinear file mapping, saved PTE; unset:swap */
48#define _PAGE_PROTNONE _PAGE_PSE /* if the user mapped it with PROT_NONE;
49 pte_present gives true */
50
51#define _PAGE_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY)
52#define _KERNPG_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED | _PAGE_DIRTY)
53
54#define _PAGE_CHG_MASK (PTE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY)
55
56#define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_ACCESSED)
57#define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_NX)
58
59#define PAGE_SHARED_EXEC __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED)
60#define PAGE_COPY_NOEXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_NX)
61#define PAGE_COPY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
62#define PAGE_COPY PAGE_COPY_NOEXEC
63#define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_NX)
64#define PAGE_READONLY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
65
66#ifdef CONFIG_X86_32
67#define _PAGE_KERNEL_EXEC \
68 (_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_ACCESSED)
69#define _PAGE_KERNEL (_PAGE_KERNEL_EXEC | _PAGE_NX)
70
71#ifndef __ASSEMBLY__
Andi Kleenc93c82b2008-01-30 13:33:50 +010072extern pteval_t __PAGE_KERNEL, __PAGE_KERNEL_EXEC;
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010073#endif /* __ASSEMBLY__ */
74#else
75#define __PAGE_KERNEL_EXEC \
76 (_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_ACCESSED)
77#define __PAGE_KERNEL (__PAGE_KERNEL_EXEC | _PAGE_NX)
78#endif
79
80#define __PAGE_KERNEL_RO (__PAGE_KERNEL & ~_PAGE_RW)
81#define __PAGE_KERNEL_RX (__PAGE_KERNEL_EXEC & ~_PAGE_RW)
82#define __PAGE_KERNEL_NOCACHE (__PAGE_KERNEL | _PAGE_PCD | _PAGE_PWT)
83#define __PAGE_KERNEL_VSYSCALL (__PAGE_KERNEL_RX | _PAGE_USER)
84#define __PAGE_KERNEL_VSYSCALL_NOCACHE (__PAGE_KERNEL_VSYSCALL | _PAGE_PCD | _PAGE_PWT)
85#define __PAGE_KERNEL_LARGE (__PAGE_KERNEL | _PAGE_PSE)
86#define __PAGE_KERNEL_LARGE_EXEC (__PAGE_KERNEL_EXEC | _PAGE_PSE)
87
88#ifdef CONFIG_X86_32
89# define MAKE_GLOBAL(x) __pgprot((x))
90#else
91# define MAKE_GLOBAL(x) __pgprot((x) | _PAGE_GLOBAL)
92#endif
93
94#define PAGE_KERNEL MAKE_GLOBAL(__PAGE_KERNEL)
95#define PAGE_KERNEL_RO MAKE_GLOBAL(__PAGE_KERNEL_RO)
96#define PAGE_KERNEL_EXEC MAKE_GLOBAL(__PAGE_KERNEL_EXEC)
97#define PAGE_KERNEL_RX MAKE_GLOBAL(__PAGE_KERNEL_RX)
98#define PAGE_KERNEL_NOCACHE MAKE_GLOBAL(__PAGE_KERNEL_NOCACHE)
99#define PAGE_KERNEL_LARGE MAKE_GLOBAL(__PAGE_KERNEL_LARGE)
100#define PAGE_KERNEL_LARGE_EXEC MAKE_GLOBAL(__PAGE_KERNEL_LARGE_EXEC)
101#define PAGE_KERNEL_VSYSCALL MAKE_GLOBAL(__PAGE_KERNEL_VSYSCALL)
102#define PAGE_KERNEL_VSYSCALL_NOCACHE MAKE_GLOBAL(__PAGE_KERNEL_VSYSCALL_NOCACHE)
103
104/* xwr */
105#define __P000 PAGE_NONE
106#define __P001 PAGE_READONLY
107#define __P010 PAGE_COPY
108#define __P011 PAGE_COPY
109#define __P100 PAGE_READONLY_EXEC
110#define __P101 PAGE_READONLY_EXEC
111#define __P110 PAGE_COPY_EXEC
112#define __P111 PAGE_COPY_EXEC
113
114#define __S000 PAGE_NONE
115#define __S001 PAGE_READONLY
116#define __S010 PAGE_SHARED
117#define __S011 PAGE_SHARED
118#define __S100 PAGE_READONLY_EXEC
119#define __S101 PAGE_READONLY_EXEC
120#define __S110 PAGE_SHARED_EXEC
121#define __S111 PAGE_SHARED_EXEC
122
Jeremy Fitzhardinge46141392008-01-30 13:32:56 +0100123#ifndef __ASSEMBLY__
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100124
Jeremy Fitzhardinge46141392008-01-30 13:32:56 +0100125/*
Jeremy Fitzhardinge8405b122008-01-30 13:32:58 +0100126 * ZERO_PAGE is a global shared page that is always zero: used
127 * for zero-mapped memory areas etc..
128 */
129extern unsigned long empty_zero_page[PAGE_SIZE/sizeof(unsigned long)];
130#define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
131
132
133/*
Jeremy Fitzhardinge46141392008-01-30 13:32:56 +0100134 * The following only work if pte_present() is true.
135 * Undefined behaviour if not..
136 */
137static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; }
138static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
139static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW; }
140static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; }
141static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_PSE; }
Andi Kleena5a5dc32008-01-30 13:33:42 +0100142static inline int pte_global(pte_t pte) { return pte_val(pte) & _PAGE_GLOBAL; }
Andi Kleen4c3c4b42008-01-30 13:33:42 +0100143static inline int pte_exec(pte_t pte) { return !(pte_val(pte) & _PAGE_NX); }
Jeremy Fitzhardinge46141392008-01-30 13:32:56 +0100144
145static inline int pmd_large(pmd_t pte) {
146 return (pmd_val(pte) & (_PAGE_PSE|_PAGE_PRESENT)) ==
147 (_PAGE_PSE|_PAGE_PRESENT);
148}
149
Andi Kleenaaa0e892008-01-30 13:33:51 +0100150static inline pte_t pte_mkclean(pte_t pte) { return __pte(pte_val(pte) & ~(pteval_t)_PAGE_DIRTY); }
151static inline pte_t pte_mkold(pte_t pte) { return __pte(pte_val(pte) & ~(pteval_t)_PAGE_ACCESSED); }
152static inline pte_t pte_wrprotect(pte_t pte) { return __pte(pte_val(pte) & ~(pteval_t)_PAGE_RW); }
153static inline pte_t pte_mkexec(pte_t pte) { return __pte(pte_val(pte) & ~(pteval_t)_PAGE_NX); }
Jeremy Fitzhardinge46141392008-01-30 13:32:56 +0100154static inline pte_t pte_mkdirty(pte_t pte) { return __pte(pte_val(pte) | _PAGE_DIRTY); }
155static inline pte_t pte_mkyoung(pte_t pte) { return __pte(pte_val(pte) | _PAGE_ACCESSED); }
156static inline pte_t pte_mkwrite(pte_t pte) { return __pte(pte_val(pte) | _PAGE_RW); }
157static inline pte_t pte_mkhuge(pte_t pte) { return __pte(pte_val(pte) | _PAGE_PSE); }
Andi Kleenaaa0e892008-01-30 13:33:51 +0100158static inline pte_t pte_clrhuge(pte_t pte) { return __pte(pte_val(pte) & ~(pteval_t)_PAGE_PSE); }
Andi Kleena5a5dc32008-01-30 13:33:42 +0100159static inline pte_t pte_mkglobal(pte_t pte) { return __pte(pte_val(pte) | _PAGE_GLOBAL); }
Andi Kleenaaa0e892008-01-30 13:33:51 +0100160static inline pte_t pte_clrglobal(pte_t pte) { return __pte(pte_val(pte) & ~(pteval_t)_PAGE_GLOBAL); }
Jeremy Fitzhardinge46141392008-01-30 13:32:56 +0100161
Jeremy Fitzhardinge6fdc05d2008-01-30 13:32:57 +0100162extern pteval_t __supported_pte_mask;
163
164static inline pte_t pfn_pte(unsigned long page_nr, pgprot_t pgprot)
165{
166 return __pte((((phys_addr_t)page_nr << PAGE_SHIFT) |
167 pgprot_val(pgprot)) & __supported_pte_mask);
168}
169
170static inline pmd_t pfn_pmd(unsigned long page_nr, pgprot_t pgprot)
171{
172 return __pmd((((phys_addr_t)page_nr << PAGE_SHIFT) |
173 pgprot_val(pgprot)) & __supported_pte_mask);
174}
175
Ingo Molnar38472312008-01-30 13:32:57 +0100176static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
177{
178 pteval_t val = pte_val(pte);
179
180 /*
181 * Chop off the NX bit (if present), and add the NX portion of
182 * the newprot (if present):
183 */
184 val &= _PAGE_CHG_MASK & ~_PAGE_NX;
185 val |= pgprot_val(newprot) & __supported_pte_mask;
186
187 return __pte(val);
188}
189
Andi Kleenc6ca18e2008-01-30 13:33:51 +0100190#define pte_pgprot(x) __pgprot(pte_val(x) & (0xfff | _PAGE_NX))
191
Andi Kleen1e8e23b2008-01-30 13:33:53 +0100192#define canon_pgprot(p) __pgprot(pgprot_val(p) & __supported_pte_mask)
193
Jeremy Fitzhardinge48916452008-01-30 13:32:58 +0100194#ifdef CONFIG_PARAVIRT
195#include <asm/paravirt.h>
196#else /* !CONFIG_PARAVIRT */
197#define set_pte(ptep, pte) native_set_pte(ptep, pte)
198#define set_pte_at(mm, addr, ptep, pte) native_set_pte_at(mm, addr, ptep, pte)
199
200#define set_pte_present(mm, addr, ptep, pte) \
201 native_set_pte_present(mm, addr, ptep, pte)
202#define set_pte_atomic(ptep, pte) \
203 native_set_pte_atomic(ptep, pte)
204
205#define set_pmd(pmdp, pmd) native_set_pmd(pmdp, pmd)
206
207#ifndef __PAGETABLE_PUD_FOLDED
208#define set_pgd(pgdp, pgd) native_set_pgd(pgdp, pgd)
209#define pgd_clear(pgd) native_pgd_clear(pgd)
210#endif
211
212#ifndef set_pud
213# define set_pud(pudp, pud) native_set_pud(pudp, pud)
214#endif
215
216#ifndef __PAGETABLE_PMD_FOLDED
217#define pud_clear(pud) native_pud_clear(pud)
218#endif
219
220#define pte_clear(mm, addr, ptep) native_pte_clear(mm, addr, ptep)
221#define pmd_clear(pmd) native_pmd_clear(pmd)
222
223#define pte_update(mm, addr, ptep) do { } while (0)
224#define pte_update_defer(mm, addr, ptep) do { } while (0)
225#endif /* CONFIG_PARAVIRT */
226
Jeremy Fitzhardinge46141392008-01-30 13:32:56 +0100227#endif /* __ASSEMBLY__ */
228
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200229#ifdef CONFIG_X86_32
230# include "pgtable_32.h"
231#else
232# include "pgtable_64.h"
233#endif
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +0100234
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100235#ifndef __ASSEMBLY__
236
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100237enum {
238 PG_LEVEL_NONE,
239 PG_LEVEL_4K,
240 PG_LEVEL_2M,
241};
242
Thomas Gleixner0a663082008-01-30 13:34:04 +0100243/*
244 * Helper function that returns the kernel pagetable entry controlling
245 * the virtual address 'address'. NULL means no pagetable entry present.
246 * NOTE: the return type is pte_t but if the pmd is PSE then we return it
247 * as a pte too.
248 */
249extern pte_t *lookup_address(unsigned long address, int *level);
250
Jeremy Fitzhardinge48916452008-01-30 13:32:58 +0100251/* local pte updates need not use xchg for locking */
252static inline pte_t native_local_ptep_get_and_clear(pte_t *ptep)
253{
254 pte_t res = *ptep;
255
256 /* Pure native function needs no input for mm, addr */
257 native_pte_clear(NULL, 0, ptep);
258 return res;
259}
260
261static inline void native_set_pte_at(struct mm_struct *mm, unsigned long addr,
262 pte_t *ptep , pte_t pte)
263{
264 native_set_pte(ptep, pte);
265}
266
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100267#ifndef CONFIG_PARAVIRT
268/*
269 * Rules for using pte_update - it must be called after any PTE update which
270 * has not been done using the set_pte / clear_pte interfaces. It is used by
271 * shadow mode hypervisors to resynchronize the shadow page tables. Kernel PTE
272 * updates should either be sets, clears, or set_pte_atomic for P->P
273 * transitions, which means this hook should only be called for user PTEs.
274 * This hook implies a P->P protection or access change has taken place, which
275 * requires a subsequent TLB flush. The notification can optionally be delayed
276 * until the TLB flush event by using the pte_update_defer form of the
277 * interface, but care must be taken to assure that the flush happens while
278 * still holding the same page table lock so that the shadow and primary pages
279 * do not become out of sync on SMP.
280 */
281#define pte_update(mm, addr, ptep) do { } while (0)
282#define pte_update_defer(mm, addr, ptep) do { } while (0)
283#endif
284
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100285/*
286 * We only update the dirty/accessed state if we set
287 * the dirty bit by hand in the kernel, since the hardware
288 * will do the accessed bit for us, and we don't want to
289 * race with other CPU's that might be updating the dirty
290 * bit at the same time.
291 */
292#define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
293#define ptep_set_access_flags(vma, address, ptep, entry, dirty) \
294({ \
295 int __changed = !pte_same(*(ptep), entry); \
296 if (__changed && dirty) { \
297 *ptep = entry; \
298 pte_update_defer((vma)->vm_mm, (address), (ptep)); \
299 flush_tlb_page(vma, address); \
300 } \
301 __changed; \
302})
303
304#define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
305#define ptep_test_and_clear_young(vma, addr, ptep) ({ \
306 int __ret = 0; \
307 if (pte_young(*(ptep))) \
308 __ret = test_and_clear_bit(_PAGE_BIT_ACCESSED, \
309 &(ptep)->pte); \
310 if (__ret) \
311 pte_update((vma)->vm_mm, addr, ptep); \
312 __ret; \
313})
314
315#define __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
316#define ptep_clear_flush_young(vma, address, ptep) \
317({ \
318 int __young; \
319 __young = ptep_test_and_clear_young((vma), (address), (ptep)); \
320 if (__young) \
321 flush_tlb_page(vma, address); \
322 __young; \
323})
324
325#define __HAVE_ARCH_PTEP_GET_AND_CLEAR
326static inline pte_t ptep_get_and_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
327{
328 pte_t pte = native_ptep_get_and_clear(ptep);
329 pte_update(mm, addr, ptep);
330 return pte;
331}
332
333#define __HAVE_ARCH_PTEP_GET_AND_CLEAR_FULL
334static inline pte_t ptep_get_and_clear_full(struct mm_struct *mm, unsigned long addr, pte_t *ptep, int full)
335{
336 pte_t pte;
337 if (full) {
338 /*
339 * Full address destruction in progress; paravirt does not
340 * care about updates and native needs no locking
341 */
342 pte = native_local_ptep_get_and_clear(ptep);
343 } else {
344 pte = ptep_get_and_clear(mm, addr, ptep);
345 }
346 return pte;
347}
348
349#define __HAVE_ARCH_PTEP_SET_WRPROTECT
350static inline void ptep_set_wrprotect(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
351{
Jeremy Fitzhardinged8d89822008-01-30 13:32:58 +0100352 clear_bit(_PAGE_BIT_RW, (unsigned long *)&ptep->pte);
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100353 pte_update(mm, addr, ptep);
354}
355
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100356#include <asm-generic/pgtable.h>
357#endif /* __ASSEMBLY__ */
358
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +0100359#endif /* _ASM_X86_PGTABLE_H */