blob: 178205305ac0d831eef39b6747ea86a0d0cd35f7 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_PGTABLE_H
2#define _ASM_X86_PGTABLE_H
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +01003
Ingo Molnarc47c1b12009-02-09 11:57:45 +01004#include <asm/page.h>
5
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +01006#define FIRST_USER_ADDRESS 0
7
Jiri Slaby43cdf5d2008-03-22 18:50:22 +01008#define _PAGE_BIT_PRESENT 0 /* is present */
9#define _PAGE_BIT_RW 1 /* writeable */
10#define _PAGE_BIT_USER 2 /* userspace addressable */
11#define _PAGE_BIT_PWT 3 /* page write through */
12#define _PAGE_BIT_PCD 4 /* page cache disabled */
13#define _PAGE_BIT_ACCESSED 5 /* was accessed (raised by CPU) */
14#define _PAGE_BIT_DIRTY 6 /* was written to (raised by CPU) */
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010015#define _PAGE_BIT_PSE 7 /* 4 MB (or 2MB) page */
Andi Kleen9bf5a472008-02-04 16:48:06 +010016#define _PAGE_BIT_PAT 7 /* on 4KB pages */
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010017#define _PAGE_BIT_GLOBAL 8 /* Global TLB entry PPro+ */
18#define _PAGE_BIT_UNUSED1 9 /* available for programmer */
Jeremy Fitzhardingebe43d722008-09-07 15:21:13 -070019#define _PAGE_BIT_IOMAP 10 /* flag used to indicate IO mapping */
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010020#define _PAGE_BIT_UNUSED3 11
Andi Kleen9bf5a472008-02-04 16:48:06 +010021#define _PAGE_BIT_PAT_LARGE 12 /* On 2MB or 1GB pages */
Nick Piggina0a8f532008-07-25 19:45:20 -070022#define _PAGE_BIT_SPECIAL _PAGE_BIT_UNUSED1
Jeremy Fitzhardinge110e0352008-08-28 13:58:39 -070023#define _PAGE_BIT_CPA_TEST _PAGE_BIT_UNUSED1
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010024#define _PAGE_BIT_NX 63 /* No execute: only valid after cpuid check */
25
Jan Beulich17963162008-12-16 11:35:24 +000026/* If _PAGE_BIT_PRESENT is clear, we use these: */
27/* - if the user mapped it with PROT_NONE; pte_present gives true */
28#define _PAGE_BIT_PROTNONE _PAGE_BIT_GLOBAL
29/* - set: nonlinear file mapping, saved PTE; unset:swap */
30#define _PAGE_BIT_FILE _PAGE_BIT_DIRTY
31
Jeremy Fitzhardinge4226ab92008-05-26 23:30:58 +010032#define _PAGE_PRESENT (_AT(pteval_t, 1) << _PAGE_BIT_PRESENT)
33#define _PAGE_RW (_AT(pteval_t, 1) << _PAGE_BIT_RW)
34#define _PAGE_USER (_AT(pteval_t, 1) << _PAGE_BIT_USER)
35#define _PAGE_PWT (_AT(pteval_t, 1) << _PAGE_BIT_PWT)
36#define _PAGE_PCD (_AT(pteval_t, 1) << _PAGE_BIT_PCD)
37#define _PAGE_ACCESSED (_AT(pteval_t, 1) << _PAGE_BIT_ACCESSED)
38#define _PAGE_DIRTY (_AT(pteval_t, 1) << _PAGE_BIT_DIRTY)
39#define _PAGE_PSE (_AT(pteval_t, 1) << _PAGE_BIT_PSE)
40#define _PAGE_GLOBAL (_AT(pteval_t, 1) << _PAGE_BIT_GLOBAL)
41#define _PAGE_UNUSED1 (_AT(pteval_t, 1) << _PAGE_BIT_UNUSED1)
Jeremy Fitzhardingebe43d722008-09-07 15:21:13 -070042#define _PAGE_IOMAP (_AT(pteval_t, 1) << _PAGE_BIT_IOMAP)
Jeremy Fitzhardinge4226ab92008-05-26 23:30:58 +010043#define _PAGE_UNUSED3 (_AT(pteval_t, 1) << _PAGE_BIT_UNUSED3)
44#define _PAGE_PAT (_AT(pteval_t, 1) << _PAGE_BIT_PAT)
45#define _PAGE_PAT_LARGE (_AT(pteval_t, 1) << _PAGE_BIT_PAT_LARGE)
Nick Piggina0a8f532008-07-25 19:45:20 -070046#define _PAGE_SPECIAL (_AT(pteval_t, 1) << _PAGE_BIT_SPECIAL)
Jeremy Fitzhardinge110e0352008-08-28 13:58:39 -070047#define _PAGE_CPA_TEST (_AT(pteval_t, 1) << _PAGE_BIT_CPA_TEST)
Nick Piggina0a8f532008-07-25 19:45:20 -070048#define __HAVE_ARCH_PTE_SPECIAL
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010049
50#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
Jeremy Fitzhardinge4226ab92008-05-26 23:30:58 +010051#define _PAGE_NX (_AT(pteval_t, 1) << _PAGE_BIT_NX)
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010052#else
Jeremy Fitzhardinge4226ab92008-05-26 23:30:58 +010053#define _PAGE_NX (_AT(pteval_t, 0))
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010054#endif
55
Jan Beulich17963162008-12-16 11:35:24 +000056#define _PAGE_FILE (_AT(pteval_t, 1) << _PAGE_BIT_FILE)
57#define _PAGE_PROTNONE (_AT(pteval_t, 1) << _PAGE_BIT_PROTNONE)
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010058
Joe Perches3cbaeaf2008-03-23 01:03:12 -070059#define _PAGE_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | \
60 _PAGE_ACCESSED | _PAGE_DIRTY)
61#define _KERNPG_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED | \
62 _PAGE_DIRTY)
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010063
Jeremy Fitzhardinge86aaf4f2008-05-20 08:26:22 +010064/* Set of bits not changed in pte_modify */
Jeremy Fitzhardinge59438c92008-07-21 22:59:42 -070065#define _PAGE_CHG_MASK (PTE_PFN_MASK | _PAGE_PCD | _PAGE_PWT | \
Nick Piggina0a8f532008-07-25 19:45:20 -070066 _PAGE_SPECIAL | _PAGE_ACCESSED | _PAGE_DIRTY)
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010067
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -070068#define _PAGE_CACHE_MASK (_PAGE_PCD | _PAGE_PWT)
69#define _PAGE_CACHE_WB (0)
70#define _PAGE_CACHE_WC (_PAGE_PWT)
71#define _PAGE_CACHE_UC_MINUS (_PAGE_PCD)
72#define _PAGE_CACHE_UC (_PAGE_PCD | _PAGE_PWT)
73
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010074#define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_ACCESSED)
Joe Perches3cbaeaf2008-03-23 01:03:12 -070075#define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | \
76 _PAGE_ACCESSED | _PAGE_NX)
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010077
Joe Perches3cbaeaf2008-03-23 01:03:12 -070078#define PAGE_SHARED_EXEC __pgprot(_PAGE_PRESENT | _PAGE_RW | \
79 _PAGE_USER | _PAGE_ACCESSED)
80#define PAGE_COPY_NOEXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | \
81 _PAGE_ACCESSED | _PAGE_NX)
82#define PAGE_COPY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | \
83 _PAGE_ACCESSED)
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010084#define PAGE_COPY PAGE_COPY_NOEXEC
Joe Perches3cbaeaf2008-03-23 01:03:12 -070085#define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | \
86 _PAGE_ACCESSED | _PAGE_NX)
87#define PAGE_READONLY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | \
88 _PAGE_ACCESSED)
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010089
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010090#define __PAGE_KERNEL_EXEC \
Jeremy Fitzhardinge84906382008-07-01 16:46:35 -070091 (_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_GLOBAL)
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010092#define __PAGE_KERNEL (__PAGE_KERNEL_EXEC | _PAGE_NX)
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010093
94#define __PAGE_KERNEL_RO (__PAGE_KERNEL & ~_PAGE_RW)
95#define __PAGE_KERNEL_RX (__PAGE_KERNEL_EXEC & ~_PAGE_RW)
Ingo Molnard2e626f2008-01-30 13:34:04 +010096#define __PAGE_KERNEL_EXEC_NOCACHE (__PAGE_KERNEL_EXEC | _PAGE_PCD | _PAGE_PWT)
venkatesh.pallipadi@intel.comb310f3812008-03-18 17:00:24 -070097#define __PAGE_KERNEL_WC (__PAGE_KERNEL | _PAGE_CACHE_WC)
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +010098#define __PAGE_KERNEL_NOCACHE (__PAGE_KERNEL | _PAGE_PCD | _PAGE_PWT)
Suresh Siddhad546b672008-03-25 17:39:12 -070099#define __PAGE_KERNEL_UC_MINUS (__PAGE_KERNEL | _PAGE_PCD)
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +0100100#define __PAGE_KERNEL_VSYSCALL (__PAGE_KERNEL_RX | _PAGE_USER)
101#define __PAGE_KERNEL_VSYSCALL_NOCACHE (__PAGE_KERNEL_VSYSCALL | _PAGE_PCD | _PAGE_PWT)
102#define __PAGE_KERNEL_LARGE (__PAGE_KERNEL | _PAGE_PSE)
Jack Steiner3a9e1892008-07-01 14:45:32 -0500103#define __PAGE_KERNEL_LARGE_NOCACHE (__PAGE_KERNEL | _PAGE_CACHE_UC | _PAGE_PSE)
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +0100104#define __PAGE_KERNEL_LARGE_EXEC (__PAGE_KERNEL_EXEC | _PAGE_PSE)
105
Jeremy Fitzhardingebe43d722008-09-07 15:21:13 -0700106#define __PAGE_KERNEL_IO (__PAGE_KERNEL | _PAGE_IOMAP)
107#define __PAGE_KERNEL_IO_NOCACHE (__PAGE_KERNEL_NOCACHE | _PAGE_IOMAP)
108#define __PAGE_KERNEL_IO_UC_MINUS (__PAGE_KERNEL_UC_MINUS | _PAGE_IOMAP)
109#define __PAGE_KERNEL_IO_WC (__PAGE_KERNEL_WC | _PAGE_IOMAP)
110
Jeremy Fitzhardinge84906382008-07-01 16:46:35 -0700111#define PAGE_KERNEL __pgprot(__PAGE_KERNEL)
112#define PAGE_KERNEL_RO __pgprot(__PAGE_KERNEL_RO)
113#define PAGE_KERNEL_EXEC __pgprot(__PAGE_KERNEL_EXEC)
114#define PAGE_KERNEL_RX __pgprot(__PAGE_KERNEL_RX)
115#define PAGE_KERNEL_WC __pgprot(__PAGE_KERNEL_WC)
116#define PAGE_KERNEL_NOCACHE __pgprot(__PAGE_KERNEL_NOCACHE)
117#define PAGE_KERNEL_UC_MINUS __pgprot(__PAGE_KERNEL_UC_MINUS)
118#define PAGE_KERNEL_EXEC_NOCACHE __pgprot(__PAGE_KERNEL_EXEC_NOCACHE)
119#define PAGE_KERNEL_LARGE __pgprot(__PAGE_KERNEL_LARGE)
Jack Steiner3a9e1892008-07-01 14:45:32 -0500120#define PAGE_KERNEL_LARGE_NOCACHE __pgprot(__PAGE_KERNEL_LARGE_NOCACHE)
Jeremy Fitzhardinge84906382008-07-01 16:46:35 -0700121#define PAGE_KERNEL_LARGE_EXEC __pgprot(__PAGE_KERNEL_LARGE_EXEC)
122#define PAGE_KERNEL_VSYSCALL __pgprot(__PAGE_KERNEL_VSYSCALL)
123#define PAGE_KERNEL_VSYSCALL_NOCACHE __pgprot(__PAGE_KERNEL_VSYSCALL_NOCACHE)
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +0100124
Jeremy Fitzhardingebe43d722008-09-07 15:21:13 -0700125#define PAGE_KERNEL_IO __pgprot(__PAGE_KERNEL_IO)
126#define PAGE_KERNEL_IO_NOCACHE __pgprot(__PAGE_KERNEL_IO_NOCACHE)
127#define PAGE_KERNEL_IO_UC_MINUS __pgprot(__PAGE_KERNEL_IO_UC_MINUS)
128#define PAGE_KERNEL_IO_WC __pgprot(__PAGE_KERNEL_IO_WC)
129
Jeremy Fitzhardinge6c386652008-01-30 13:32:55 +0100130/* xwr */
131#define __P000 PAGE_NONE
132#define __P001 PAGE_READONLY
133#define __P010 PAGE_COPY
134#define __P011 PAGE_COPY
135#define __P100 PAGE_READONLY_EXEC
136#define __P101 PAGE_READONLY_EXEC
137#define __P110 PAGE_COPY_EXEC
138#define __P111 PAGE_COPY_EXEC
139
140#define __S000 PAGE_NONE
141#define __S001 PAGE_READONLY
142#define __S010 PAGE_SHARED
143#define __S011 PAGE_SHARED
144#define __S100 PAGE_READONLY_EXEC
145#define __S101 PAGE_READONLY_EXEC
146#define __S110 PAGE_SHARED_EXEC
147#define __S111 PAGE_SHARED_EXEC
148
Suresh Siddhab2bc2732008-09-23 14:00:36 -0700149/*
150 * early identity mapping pte attrib macros.
151 */
152#ifdef CONFIG_X86_64
153#define __PAGE_KERNEL_IDENT_LARGE_EXEC __PAGE_KERNEL_LARGE_EXEC
154#else
Suresh Siddhaf61f1b52008-10-15 07:46:27 -0700155/*
156 * For PDE_IDENT_ATTR include USER bit. As the PDE and PTE protection
157 * bits are combined, this will alow user to access the high address mapped
158 * VDSO in the presence of CONFIG_COMPAT_VDSO
159 */
Suresh Siddha3a85e772008-09-23 14:00:37 -0700160#define PTE_IDENT_ATTR 0x003 /* PRESENT+RW */
Suresh Siddhaf61f1b52008-10-15 07:46:27 -0700161#define PDE_IDENT_ATTR 0x067 /* PRESENT+RW+USER+DIRTY+ACCESSED */
Suresh Siddhab2bc2732008-09-23 14:00:36 -0700162#define PGD_IDENT_ATTR 0x001 /* PRESENT (no other attributes) */
163#endif
164
venkatesh.pallipadi@intel.com8a7b12f2008-12-18 11:41:31 -0800165/*
166 * Macro to mark a page protection value as UC-
167 */
168#define pgprot_noncached(prot) \
169 ((boot_cpu_data.x86 > 3) \
170 ? (__pgprot(pgprot_val(prot) | _PAGE_CACHE_UC_MINUS)) \
171 : (prot))
172
Jeremy Fitzhardinge46141392008-01-30 13:32:56 +0100173#ifndef __ASSEMBLY__
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100174
venkatesh.pallipadi@intel.com2520bd32008-12-18 11:41:32 -0800175#define pgprot_writecombine pgprot_writecombine
176extern pgprot_t pgprot_writecombine(pgprot_t prot);
177
Jeremy Fitzhardinge46141392008-01-30 13:32:56 +0100178/*
Jeremy Fitzhardinge8405b122008-01-30 13:32:58 +0100179 * ZERO_PAGE is a global shared page that is always zero: used
180 * for zero-mapped memory areas etc..
181 */
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700182extern unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)];
Jeremy Fitzhardinge8405b122008-01-30 13:32:58 +0100183#define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
184
Jeremy Fitzhardingee3ed9102008-01-30 13:34:11 +0100185extern spinlock_t pgd_lock;
186extern struct list_head pgd_list;
Jeremy Fitzhardinge8405b122008-01-30 13:32:58 +0100187
188/*
Jeremy Fitzhardinge46141392008-01-30 13:32:56 +0100189 * The following only work if pte_present() is true.
190 * Undefined behaviour if not..
191 */
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700192static inline int pte_dirty(pte_t pte)
193{
Jeremy Fitzhardingea15af1c2008-05-26 23:31:06 +0100194 return pte_flags(pte) & _PAGE_DIRTY;
Jeremy Fitzhardinge46141392008-01-30 13:32:56 +0100195}
196
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700197static inline int pte_young(pte_t pte)
198{
Jeremy Fitzhardingea15af1c2008-05-26 23:31:06 +0100199 return pte_flags(pte) & _PAGE_ACCESSED;
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700200}
201
202static inline int pte_write(pte_t pte)
203{
Jeremy Fitzhardingea15af1c2008-05-26 23:31:06 +0100204 return pte_flags(pte) & _PAGE_RW;
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700205}
206
207static inline int pte_file(pte_t pte)
208{
Jeremy Fitzhardingea15af1c2008-05-26 23:31:06 +0100209 return pte_flags(pte) & _PAGE_FILE;
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700210}
211
212static inline int pte_huge(pte_t pte)
213{
Jeremy Fitzhardingea15af1c2008-05-26 23:31:06 +0100214 return pte_flags(pte) & _PAGE_PSE;
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700215}
216
217static inline int pte_global(pte_t pte)
218{
Jeremy Fitzhardingea15af1c2008-05-26 23:31:06 +0100219 return pte_flags(pte) & _PAGE_GLOBAL;
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700220}
221
222static inline int pte_exec(pte_t pte)
223{
Jeremy Fitzhardingea15af1c2008-05-26 23:31:06 +0100224 return !(pte_flags(pte) & _PAGE_NX);
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700225}
226
Nick Piggin7e675132008-04-28 02:13:00 -0700227static inline int pte_special(pte_t pte)
228{
Jan Beulich606ee442008-09-17 16:48:17 +0100229 return pte_flags(pte) & _PAGE_SPECIAL;
Nick Piggin7e675132008-04-28 02:13:00 -0700230}
231
Hugh Dickins91030ca2008-09-09 16:42:45 +0100232static inline unsigned long pte_pfn(pte_t pte)
233{
234 return (pte_val(pte) & PTE_PFN_MASK) >> PAGE_SHIFT;
235}
236
237#define pte_page(pte) pfn_to_page(pte_pfn(pte))
238
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700239static inline int pmd_large(pmd_t pte)
240{
Jeremy Fitzhardinge18a7a1992009-02-05 11:31:16 -0800241 return (pmd_flags(pte) & (_PAGE_PSE | _PAGE_PRESENT)) ==
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700242 (_PAGE_PSE | _PAGE_PRESENT);
243}
244
245static inline pte_t pte_mkclean(pte_t pte)
246{
Jeremy Fitzhardinge4226ab92008-05-26 23:30:58 +0100247 return __pte(pte_val(pte) & ~_PAGE_DIRTY);
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700248}
249
250static inline pte_t pte_mkold(pte_t pte)
251{
Jeremy Fitzhardinge4226ab92008-05-26 23:30:58 +0100252 return __pte(pte_val(pte) & ~_PAGE_ACCESSED);
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700253}
254
255static inline pte_t pte_wrprotect(pte_t pte)
256{
Jeremy Fitzhardinge4226ab92008-05-26 23:30:58 +0100257 return __pte(pte_val(pte) & ~_PAGE_RW);
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700258}
259
260static inline pte_t pte_mkexec(pte_t pte)
261{
Jeremy Fitzhardinge4226ab92008-05-26 23:30:58 +0100262 return __pte(pte_val(pte) & ~_PAGE_NX);
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700263}
264
265static inline pte_t pte_mkdirty(pte_t pte)
266{
267 return __pte(pte_val(pte) | _PAGE_DIRTY);
268}
269
270static inline pte_t pte_mkyoung(pte_t pte)
271{
272 return __pte(pte_val(pte) | _PAGE_ACCESSED);
273}
274
275static inline pte_t pte_mkwrite(pte_t pte)
276{
277 return __pte(pte_val(pte) | _PAGE_RW);
278}
279
280static inline pte_t pte_mkhuge(pte_t pte)
281{
282 return __pte(pte_val(pte) | _PAGE_PSE);
283}
284
285static inline pte_t pte_clrhuge(pte_t pte)
286{
Jeremy Fitzhardinge4226ab92008-05-26 23:30:58 +0100287 return __pte(pte_val(pte) & ~_PAGE_PSE);
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700288}
289
290static inline pte_t pte_mkglobal(pte_t pte)
291{
292 return __pte(pte_val(pte) | _PAGE_GLOBAL);
293}
294
295static inline pte_t pte_clrglobal(pte_t pte)
296{
Jeremy Fitzhardinge4226ab92008-05-26 23:30:58 +0100297 return __pte(pte_val(pte) & ~_PAGE_GLOBAL);
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700298}
Jeremy Fitzhardinge46141392008-01-30 13:32:56 +0100299
Nick Piggin7e675132008-04-28 02:13:00 -0700300static inline pte_t pte_mkspecial(pte_t pte)
301{
Nick Piggina0a8f532008-07-25 19:45:20 -0700302 return __pte(pte_val(pte) | _PAGE_SPECIAL);
Nick Piggin7e675132008-04-28 02:13:00 -0700303}
304
Jeremy Fitzhardinge6fdc05d2008-01-30 13:32:57 +0100305extern pteval_t __supported_pte_mask;
306
307static inline pte_t pfn_pte(unsigned long page_nr, pgprot_t pgprot)
308{
309 return __pte((((phys_addr_t)page_nr << PAGE_SHIFT) |
310 pgprot_val(pgprot)) & __supported_pte_mask);
311}
312
313static inline pmd_t pfn_pmd(unsigned long page_nr, pgprot_t pgprot)
314{
315 return __pmd((((phys_addr_t)page_nr << PAGE_SHIFT) |
316 pgprot_val(pgprot)) & __supported_pte_mask);
317}
318
Ingo Molnar38472312008-01-30 13:32:57 +0100319static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
320{
321 pteval_t val = pte_val(pte);
322
323 /*
324 * Chop off the NX bit (if present), and add the NX portion of
325 * the newprot (if present):
326 */
Venki Pallipadi1c12c4c2008-05-14 16:05:51 -0700327 val &= _PAGE_CHG_MASK;
328 val |= pgprot_val(newprot) & (~_PAGE_CHG_MASK) & __supported_pte_mask;
Ingo Molnar38472312008-01-30 13:32:57 +0100329
330 return __pte(val);
331}
332
Venki Pallipadi1c12c4c2008-05-14 16:05:51 -0700333/* mprotect needs to preserve PAT bits when updating vm_page_prot */
334#define pgprot_modify pgprot_modify
335static inline pgprot_t pgprot_modify(pgprot_t oldprot, pgprot_t newprot)
336{
337 pgprotval_t preservebits = pgprot_val(oldprot) & _PAGE_CHG_MASK;
338 pgprotval_t addbits = pgprot_val(newprot);
339 return __pgprot(preservebits | addbits);
340}
341
Jeremy Fitzhardinge77be1fa2008-07-21 22:59:56 -0700342#define pte_pgprot(x) __pgprot(pte_flags(x) & PTE_FLAGS_MASK)
Andi Kleenc6ca18e2008-01-30 13:33:51 +0100343
Andi Kleen1e8e23b2008-01-30 13:33:53 +0100344#define canon_pgprot(p) __pgprot(pgprot_val(p) & __supported_pte_mask)
345
venkatesh.pallipadi@intel.comafc7d202009-01-09 16:13:10 -0800346static inline int is_new_memtype_allowed(unsigned long flags,
347 unsigned long new_flags)
348{
349 /*
350 * Certain new memtypes are not allowed with certain
351 * requested memtype:
352 * - request is uncached, return cannot be write-back
353 * - request is write-combine, return cannot be write-back
354 */
355 if ((flags == _PAGE_CACHE_UC_MINUS &&
356 new_flags == _PAGE_CACHE_WB) ||
357 (flags == _PAGE_CACHE_WC &&
358 new_flags == _PAGE_CACHE_WB)) {
359 return 0;
360 }
361
362 return 1;
363}
364
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700365#ifndef __ASSEMBLY__
venkatesh.pallipadi@intel.com34801ba2008-12-19 13:47:29 -0800366/* Indicate that x86 has its own track and untrack pfn vma functions */
367#define __HAVE_PFNMAP_TRACKING
368
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700369#define __HAVE_PHYS_MEM_ACCESS_PROT
370struct file;
371pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
372 unsigned long size, pgprot_t vma_prot);
373int phys_mem_access_prot_allowed(struct file *file, unsigned long pfn,
374 unsigned long size, pgprot_t *vma_prot);
375#endif
376
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -0700377/* Install a pte for a particular vaddr in kernel space. */
378void set_pte_vaddr(unsigned long vaddr, pte_t pte);
379
Eduardo Habkosta312b372008-07-08 15:06:23 -0700380#ifdef CONFIG_X86_32
381extern void native_pagetable_setup_start(pgd_t *base);
382extern void native_pagetable_setup_done(pgd_t *base);
383#else
384static inline void native_pagetable_setup_start(pgd_t *base) {}
385static inline void native_pagetable_setup_done(pgd_t *base) {}
386#endif
387
Linus Torvalds88ed86f2008-10-23 12:04:37 -0700388struct seq_file;
389extern void arch_report_meminfo(struct seq_file *m);
Jaswinder Singhe0b7c812008-07-23 17:40:34 +0530390
Jeremy Fitzhardinge48916452008-01-30 13:32:58 +0100391#ifdef CONFIG_PARAVIRT
392#include <asm/paravirt.h>
393#else /* !CONFIG_PARAVIRT */
394#define set_pte(ptep, pte) native_set_pte(ptep, pte)
395#define set_pte_at(mm, addr, ptep, pte) native_set_pte_at(mm, addr, ptep, pte)
396
397#define set_pte_present(mm, addr, ptep, pte) \
398 native_set_pte_present(mm, addr, ptep, pte)
399#define set_pte_atomic(ptep, pte) \
400 native_set_pte_atomic(ptep, pte)
401
402#define set_pmd(pmdp, pmd) native_set_pmd(pmdp, pmd)
403
404#ifndef __PAGETABLE_PUD_FOLDED
405#define set_pgd(pgdp, pgd) native_set_pgd(pgdp, pgd)
406#define pgd_clear(pgd) native_pgd_clear(pgd)
407#endif
408
409#ifndef set_pud
410# define set_pud(pudp, pud) native_set_pud(pudp, pud)
411#endif
412
413#ifndef __PAGETABLE_PMD_FOLDED
414#define pud_clear(pud) native_pud_clear(pud)
415#endif
416
417#define pte_clear(mm, addr, ptep) native_pte_clear(mm, addr, ptep)
418#define pmd_clear(pmd) native_pmd_clear(pmd)
419
420#define pte_update(mm, addr, ptep) do { } while (0)
421#define pte_update_defer(mm, addr, ptep) do { } while (0)
Eduardo Habkosta312b372008-07-08 15:06:23 -0700422
423static inline void __init paravirt_pagetable_setup_start(pgd_t *base)
424{
425 native_pagetable_setup_start(base);
426}
427
428static inline void __init paravirt_pagetable_setup_done(pgd_t *base)
429{
430 native_pagetable_setup_done(base);
431}
Jeremy Fitzhardinge48916452008-01-30 13:32:58 +0100432#endif /* CONFIG_PARAVIRT */
433
Jeremy Fitzhardingeaca159d2009-02-05 11:30:54 -0800434#endif /* __ASSEMBLY__ */
435
436#ifdef CONFIG_X86_32
437# include "pgtable_32.h"
438#else
439# include "pgtable_64.h"
440#endif
441
442#ifndef __ASSEMBLY__
Jeremy Fitzhardingef4769612009-02-05 11:30:55 -0800443#include <linux/mm_types.h>
Jeremy Fitzhardingeaca159d2009-02-05 11:30:54 -0800444
Jeremy Fitzhardingea034a012009-02-05 11:30:43 -0800445static inline int pte_none(pte_t pte)
446{
447 return !pte.pte;
448}
449
Jeremy Fitzhardinge8de01da2009-02-05 11:30:44 -0800450#define __HAVE_ARCH_PTE_SAME
451static inline int pte_same(pte_t a, pte_t b)
452{
453 return a.pte == b.pte;
454}
455
Jeremy Fitzhardinge7c683852009-02-05 11:30:45 -0800456static inline int pte_present(pte_t a)
457{
458 return pte_flags(a) & (_PAGE_PRESENT | _PAGE_PROTNONE);
459}
460
Jeremy Fitzhardinge649e8ef2009-02-05 11:30:50 -0800461static inline int pmd_present(pmd_t pmd)
462{
Jeremy Fitzhardinge18a7a1992009-02-05 11:31:16 -0800463 return pmd_flags(pmd) & _PAGE_PRESENT;
Jeremy Fitzhardinge649e8ef2009-02-05 11:30:50 -0800464}
465
Jeremy Fitzhardinge4fea8012009-02-05 11:30:51 -0800466static inline int pmd_none(pmd_t pmd)
467{
468 /* Only check low word on 32-bit platforms, since it might be
469 out of sync with upper half. */
Jeremy Fitzhardinge26c8e312009-02-05 11:31:17 -0800470 return (unsigned long)native_pmd_val(pmd) == 0;
Jeremy Fitzhardinge4fea8012009-02-05 11:30:51 -0800471}
472
Jeremy Fitzhardinge3ffb3562009-02-05 11:30:59 -0800473static inline unsigned long pmd_page_vaddr(pmd_t pmd)
474{
475 return (unsigned long)__va(pmd_val(pmd) & PTE_PFN_MASK);
476}
477
Ingo Molnare5f7f202009-02-09 11:42:57 +0100478/*
479 * Currently stuck as a macro due to indirect forward reference to
480 * linux/mmzone.h's __section_mem_map_addr() definition:
481 */
482#define pmd_page(pmd) pfn_to_page(pmd_val(pmd) >> PAGE_SHIFT)
Jeremy Fitzhardinge20063ca2009-02-05 11:31:00 -0800483
Jeremy Fitzhardingee24d7ee2009-02-05 11:31:01 -0800484/*
485 * the pmd page can be thought of an array like this: pmd_t[PTRS_PER_PMD]
486 *
487 * this macro returns the index of the entry in the pmd page which would
488 * control the given virtual address
489 */
490static inline unsigned pmd_index(unsigned long address)
491{
492 return (address >> PMD_SHIFT) & (PTRS_PER_PMD - 1);
493}
494
Jeremy Fitzhardinge97e28172009-02-05 11:31:05 -0800495/*
496 * Conversion functions: convert a page and protection to a page entry,
497 * and a page entry and page directory to the page they refer to.
498 *
499 * (Currently stuck as a macro because of indirect forward reference
500 * to linux/mm.h:page_to_nid())
501 */
502#define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
503
Jeremy Fitzhardinge346309c2009-02-05 11:31:06 -0800504/*
505 * the pte page can be thought of an array like this: pte_t[PTRS_PER_PTE]
506 *
507 * this function returns the index of the entry in the pte page which would
508 * control the given virtual address
509 */
510static inline unsigned pte_index(unsigned long address)
511{
512 return (address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1);
513}
514
Jeremy Fitzhardinge3fbc2442009-02-05 11:31:07 -0800515static inline pte_t *pte_offset_kernel(pmd_t *pmd, unsigned long address)
516{
517 return (pte_t *)pmd_page_vaddr(*pmd) + pte_index(address);
518}
519
Jeremy Fitzhardinge99510232009-02-05 11:31:11 -0800520static inline int pmd_bad(pmd_t pmd)
521{
Jeremy Fitzhardinge18a7a1992009-02-05 11:31:16 -0800522 return (pmd_flags(pmd) & ~_PAGE_USER) != _KERNPG_TABLE;
Jeremy Fitzhardinge99510232009-02-05 11:31:11 -0800523}
524
Jeremy Fitzhardingecc290ca2009-02-05 11:31:12 -0800525static inline unsigned long pages_to_mb(unsigned long npg)
526{
527 return npg >> (20 - PAGE_SHIFT);
528}
529
Jeremy Fitzhardinge6cf71502009-02-05 11:31:15 -0800530#define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \
531 remap_pfn_range(vma, vaddr, pfn, size, prot)
532
Ingo Molnarc47c1b12009-02-09 11:57:45 +0100533#if PAGETABLE_LEVELS == 2
534static inline int pud_large(pud_t pud)
535{
536 return 0;
537}
538#endif
539
Jeremy Fitzhardinge5ba7c912009-02-05 11:30:48 -0800540#if PAGETABLE_LEVELS > 2
Jeremy Fitzhardingedeb79cf2009-02-05 11:31:13 -0800541static inline int pud_none(pud_t pud)
542{
Jeremy Fitzhardinge26c8e312009-02-05 11:31:17 -0800543 return native_pud_val(pud) == 0;
Jeremy Fitzhardingedeb79cf2009-02-05 11:31:13 -0800544}
545
Jeremy Fitzhardinge5ba7c912009-02-05 11:30:48 -0800546static inline int pud_present(pud_t pud)
547{
Jeremy Fitzhardinge18a7a1992009-02-05 11:31:16 -0800548 return pud_flags(pud) & _PAGE_PRESENT;
Jeremy Fitzhardinge5ba7c912009-02-05 11:30:48 -0800549}
Jeremy Fitzhardinge6fff47e2009-02-05 11:30:53 -0800550
551static inline unsigned long pud_page_vaddr(pud_t pud)
552{
553 return (unsigned long)__va((unsigned long)pud_val(pud) & PTE_PFN_MASK);
554}
Jeremy Fitzhardingef4769612009-02-05 11:30:55 -0800555
Ingo Molnare5f7f202009-02-09 11:42:57 +0100556/*
557 * Currently stuck as a macro due to indirect forward reference to
558 * linux/mmzone.h's __section_mem_map_addr() definition:
559 */
560#define pud_page(pud) pfn_to_page(pud_val(pud) >> PAGE_SHIFT)
Jeremy Fitzhardinge01ade202009-02-05 11:31:02 -0800561
562/* Find an entry in the second-level page table.. */
563static inline pmd_t *pmd_offset(pud_t *pud, unsigned long address)
564{
565 return (pmd_t *)pud_page_vaddr(*pud) + pmd_index(address);
566}
Jeremy Fitzhardinge3180fba2009-02-05 11:31:04 -0800567
568static inline unsigned long pmd_pfn(pmd_t pmd)
569{
570 return (pmd_val(pmd) & PTE_PFN_MASK) >> PAGE_SHIFT;
571}
Jeremy Fitzhardinge3f6cbef2009-02-05 11:31:08 -0800572
573static inline int pud_large(pud_t pud)
574{
Jeremy Fitzhardinge18a7a1992009-02-05 11:31:16 -0800575 return (pud_flags(pud) & (_PAGE_PSE | _PAGE_PRESENT)) ==
Jeremy Fitzhardinge3f6cbef2009-02-05 11:31:08 -0800576 (_PAGE_PSE | _PAGE_PRESENT);
577}
Jeremy Fitzhardingea61bb292009-02-05 11:31:10 -0800578
579static inline int pud_bad(pud_t pud)
580{
Jeremy Fitzhardinge18a7a1992009-02-05 11:31:16 -0800581 return (pud_flags(pud) & ~(_KERNPG_TABLE | _PAGE_USER)) != 0;
Jeremy Fitzhardingea61bb292009-02-05 11:31:10 -0800582}
Jeremy Fitzhardinge5ba7c912009-02-05 11:30:48 -0800583#endif /* PAGETABLE_LEVELS > 2 */
584
Jeremy Fitzhardinge9f38d7e2009-02-05 11:30:49 -0800585#if PAGETABLE_LEVELS > 3
586static inline int pgd_present(pgd_t pgd)
587{
Jeremy Fitzhardinge18a7a1992009-02-05 11:31:16 -0800588 return pgd_flags(pgd) & _PAGE_PRESENT;
Jeremy Fitzhardinge9f38d7e2009-02-05 11:30:49 -0800589}
Jeremy Fitzhardingec5f040b2009-02-05 11:30:52 -0800590
591static inline unsigned long pgd_page_vaddr(pgd_t pgd)
592{
593 return (unsigned long)__va((unsigned long)pgd_val(pgd) & PTE_PFN_MASK);
594}
Jeremy Fitzhardinge777cba12009-02-05 11:30:56 -0800595
Ingo Molnare5f7f202009-02-09 11:42:57 +0100596/*
597 * Currently stuck as a macro due to indirect forward reference to
598 * linux/mmzone.h's __section_mem_map_addr() definition:
599 */
600#define pgd_page(pgd) pfn_to_page(pgd_val(pgd) >> PAGE_SHIFT)
Jeremy Fitzhardinge7cfb8102009-02-05 11:30:57 -0800601
602/* to find an entry in a page-table-directory. */
603static inline unsigned pud_index(unsigned long address)
604{
605 return (address >> PUD_SHIFT) & (PTRS_PER_PUD - 1);
606}
Jeremy Fitzhardinge3d081b12009-02-05 11:30:58 -0800607
608static inline pud_t *pud_offset(pgd_t *pgd, unsigned long address)
609{
610 return (pud_t *)pgd_page_vaddr(*pgd) + pud_index(address);
611}
Jeremy Fitzhardinge30f10312009-02-05 11:31:09 -0800612
613static inline int pgd_bad(pgd_t pgd)
614{
Jeremy Fitzhardinge18a7a1992009-02-05 11:31:16 -0800615 return (pgd_flags(pgd) & ~_PAGE_USER) != _KERNPG_TABLE;
Jeremy Fitzhardinge30f10312009-02-05 11:31:09 -0800616}
Jeremy Fitzhardinge7325cc22009-02-05 11:31:14 -0800617
618static inline int pgd_none(pgd_t pgd)
619{
Jeremy Fitzhardinge26c8e312009-02-05 11:31:17 -0800620 return !native_pgd_val(pgd);
Jeremy Fitzhardinge7325cc22009-02-05 11:31:14 -0800621}
Jeremy Fitzhardinge9f38d7e2009-02-05 11:30:49 -0800622#endif /* PAGETABLE_LEVELS > 3 */
623
Jeremy Fitzhardinge46141392008-01-30 13:32:56 +0100624#endif /* __ASSEMBLY__ */
625
Jeremy Fitzhardingefb15a9b2008-06-25 00:19:06 -0400626/*
627 * the pgd page can be thought of an array like this: pgd_t[PTRS_PER_PGD]
628 *
629 * this macro returns the index of the entry in the pgd page which would
630 * control the given virtual address
631 */
632#define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD - 1))
633
634/*
635 * pgd_offset() returns a (pgd_t *)
636 * pgd_index() is used get the offset into the pgd page's array of pgd_t's;
637 */
638#define pgd_offset(mm, address) ((mm)->pgd + pgd_index((address)))
639/*
640 * a shortcut which implies the use of the kernel's pgd, instead
641 * of a process's
642 */
643#define pgd_offset_k(address) pgd_offset(&init_mm, (address))
644
645
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700646#define KERNEL_PGD_BOUNDARY pgd_index(PAGE_OFFSET)
647#define KERNEL_PGD_PTRS (PTRS_PER_PGD - KERNEL_PGD_BOUNDARY)
648
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100649#ifndef __ASSEMBLY__
650
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100651enum {
652 PG_LEVEL_NONE,
653 PG_LEVEL_4K,
654 PG_LEVEL_2M,
Ingo Molnar86f03982008-01-30 13:34:09 +0100655 PG_LEVEL_1G,
Andi Kleence0c0e52008-05-02 11:46:49 +0200656 PG_LEVEL_NUM
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100657};
658
Thomas Gleixner65280e62008-05-05 16:35:21 +0200659#ifdef CONFIG_PROC_FS
660extern void update_page_count(int level, unsigned long pages);
661#else
662static inline void update_page_count(int level, unsigned long pages) { }
663#endif
Andi Kleence0c0e52008-05-02 11:46:49 +0200664
Thomas Gleixner0a663082008-01-30 13:34:04 +0100665/*
666 * Helper function that returns the kernel pagetable entry controlling
667 * the virtual address 'address'. NULL means no pagetable entry present.
668 * NOTE: the return type is pte_t but if the pmd is PSE then we return it
669 * as a pte too.
670 */
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100671extern pte_t *lookup_address(unsigned long address, unsigned int *level);
Thomas Gleixner0a663082008-01-30 13:34:04 +0100672
Jeremy Fitzhardinge48916452008-01-30 13:32:58 +0100673/* local pte updates need not use xchg for locking */
674static inline pte_t native_local_ptep_get_and_clear(pte_t *ptep)
675{
676 pte_t res = *ptep;
677
678 /* Pure native function needs no input for mm, addr */
679 native_pte_clear(NULL, 0, ptep);
680 return res;
681}
682
683static inline void native_set_pte_at(struct mm_struct *mm, unsigned long addr,
684 pte_t *ptep , pte_t pte)
685{
686 native_set_pte(ptep, pte);
687}
688
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100689#ifndef CONFIG_PARAVIRT
690/*
691 * Rules for using pte_update - it must be called after any PTE update which
692 * has not been done using the set_pte / clear_pte interfaces. It is used by
693 * shadow mode hypervisors to resynchronize the shadow page tables. Kernel PTE
694 * updates should either be sets, clears, or set_pte_atomic for P->P
695 * transitions, which means this hook should only be called for user PTEs.
696 * This hook implies a P->P protection or access change has taken place, which
697 * requires a subsequent TLB flush. The notification can optionally be delayed
698 * until the TLB flush event by using the pte_update_defer form of the
699 * interface, but care must be taken to assure that the flush happens while
700 * still holding the same page table lock so that the shadow and primary pages
701 * do not become out of sync on SMP.
702 */
703#define pte_update(mm, addr, ptep) do { } while (0)
704#define pte_update_defer(mm, addr, ptep) do { } while (0)
705#endif
706
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100707/*
708 * We only update the dirty/accessed state if we set
709 * the dirty bit by hand in the kernel, since the hardware
710 * will do the accessed bit for us, and we don't want to
711 * race with other CPU's that might be updating the dirty
712 * bit at the same time.
713 */
Jeremy Fitzhardingebea41802008-06-25 00:18:57 -0400714struct vm_area_struct;
715
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100716#define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -0700717extern int ptep_set_access_flags(struct vm_area_struct *vma,
718 unsigned long address, pte_t *ptep,
719 pte_t entry, int dirty);
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100720
721#define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
Jeremy Fitzhardingef9fbf1a2008-03-17 16:37:04 -0700722extern int ptep_test_and_clear_young(struct vm_area_struct *vma,
723 unsigned long addr, pte_t *ptep);
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100724
725#define __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
Jeremy Fitzhardingec20311e2008-03-17 16:37:05 -0700726extern int ptep_clear_flush_young(struct vm_area_struct *vma,
727 unsigned long address, pte_t *ptep);
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100728
729#define __HAVE_ARCH_PTEP_GET_AND_CLEAR
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700730static inline pte_t ptep_get_and_clear(struct mm_struct *mm, unsigned long addr,
731 pte_t *ptep)
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100732{
733 pte_t pte = native_ptep_get_and_clear(ptep);
734 pte_update(mm, addr, ptep);
735 return pte;
736}
737
738#define __HAVE_ARCH_PTEP_GET_AND_CLEAR_FULL
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700739static inline pte_t ptep_get_and_clear_full(struct mm_struct *mm,
740 unsigned long addr, pte_t *ptep,
741 int full)
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100742{
743 pte_t pte;
744 if (full) {
745 /*
746 * Full address destruction in progress; paravirt does not
747 * care about updates and native needs no locking
748 */
749 pte = native_local_ptep_get_and_clear(ptep);
750 } else {
751 pte = ptep_get_and_clear(mm, addr, ptep);
752 }
753 return pte;
754}
755
756#define __HAVE_ARCH_PTEP_SET_WRPROTECT
Joe Perches3cbaeaf2008-03-23 01:03:12 -0700757static inline void ptep_set_wrprotect(struct mm_struct *mm,
758 unsigned long addr, pte_t *ptep)
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100759{
Jeremy Fitzhardinged8d89822008-01-30 13:32:58 +0100760 clear_bit(_PAGE_BIT_RW, (unsigned long *)&ptep->pte);
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100761 pte_update(mm, addr, ptep);
762}
763
Jeremy Fitzhardinge85958b42008-03-17 16:37:14 -0700764/*
765 * clone_pgd_range(pgd_t *dst, pgd_t *src, int count);
766 *
767 * dst - pointer to pgd range anwhere on a pgd page
768 * src - ""
769 * count - the number of pgds to copy.
770 *
771 * dst and src can be on the same page, but the range must not overlap,
772 * and must not cross a page boundary.
773 */
774static inline void clone_pgd_range(pgd_t *dst, pgd_t *src, int count)
775{
776 memcpy(dst, src, count * sizeof(pgd_t));
777}
778
779
Jeremy Fitzhardinge195466d2008-01-30 13:32:58 +0100780#include <asm-generic/pgtable.h>
781#endif /* __ASSEMBLY__ */
782
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700783#endif /* _ASM_X86_PGTABLE_H */