]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/x86/include/asm/pgtable.h
Merge commit 'remotes/tip/x86/paravirt' into x86/untangle2
[linux-2.6-omap-h63xx.git] / arch / x86 / include / asm / pgtable.h
1 #ifndef _ASM_X86_PGTABLE_H
2 #define _ASM_X86_PGTABLE_H
3
4 #include <asm/page.h>
5
6 #define FIRST_USER_ADDRESS      0
7
8 #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) */
15 #define _PAGE_BIT_PSE           7       /* 4 MB (or 2MB) page */
16 #define _PAGE_BIT_PAT           7       /* on 4KB pages */
17 #define _PAGE_BIT_GLOBAL        8       /* Global TLB entry PPro+ */
18 #define _PAGE_BIT_UNUSED1       9       /* available for programmer */
19 #define _PAGE_BIT_IOMAP         10      /* flag used to indicate IO mapping */
20 #define _PAGE_BIT_UNUSED3       11
21 #define _PAGE_BIT_PAT_LARGE     12      /* On 2MB or 1GB pages */
22 #define _PAGE_BIT_SPECIAL       _PAGE_BIT_UNUSED1
23 #define _PAGE_BIT_CPA_TEST      _PAGE_BIT_UNUSED1
24 #define _PAGE_BIT_NX           63       /* No execute: only valid after cpuid check */
25
26 /* 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
32 #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)
42 #define _PAGE_IOMAP     (_AT(pteval_t, 1) << _PAGE_BIT_IOMAP)
43 #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)
46 #define _PAGE_SPECIAL   (_AT(pteval_t, 1) << _PAGE_BIT_SPECIAL)
47 #define _PAGE_CPA_TEST  (_AT(pteval_t, 1) << _PAGE_BIT_CPA_TEST)
48 #define __HAVE_ARCH_PTE_SPECIAL
49
50 #if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
51 #define _PAGE_NX        (_AT(pteval_t, 1) << _PAGE_BIT_NX)
52 #else
53 #define _PAGE_NX        (_AT(pteval_t, 0))
54 #endif
55
56 #define _PAGE_FILE      (_AT(pteval_t, 1) << _PAGE_BIT_FILE)
57 #define _PAGE_PROTNONE  (_AT(pteval_t, 1) << _PAGE_BIT_PROTNONE)
58
59 #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)
63
64 /* Set of bits not changed in pte_modify */
65 #define _PAGE_CHG_MASK  (PTE_PFN_MASK | _PAGE_PCD | _PAGE_PWT |         \
66                          _PAGE_SPECIAL | _PAGE_ACCESSED | _PAGE_DIRTY)
67
68 #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
74 #define PAGE_NONE       __pgprot(_PAGE_PROTNONE | _PAGE_ACCESSED)
75 #define PAGE_SHARED     __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | \
76                                  _PAGE_ACCESSED | _PAGE_NX)
77
78 #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)
84 #define PAGE_COPY               PAGE_COPY_NOEXEC
85 #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)
89
90 #define __PAGE_KERNEL_EXEC                                              \
91         (_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_GLOBAL)
92 #define __PAGE_KERNEL           (__PAGE_KERNEL_EXEC | _PAGE_NX)
93
94 #define __PAGE_KERNEL_RO                (__PAGE_KERNEL & ~_PAGE_RW)
95 #define __PAGE_KERNEL_RX                (__PAGE_KERNEL_EXEC & ~_PAGE_RW)
96 #define __PAGE_KERNEL_EXEC_NOCACHE      (__PAGE_KERNEL_EXEC | _PAGE_PCD | _PAGE_PWT)
97 #define __PAGE_KERNEL_WC                (__PAGE_KERNEL | _PAGE_CACHE_WC)
98 #define __PAGE_KERNEL_NOCACHE           (__PAGE_KERNEL | _PAGE_PCD | _PAGE_PWT)
99 #define __PAGE_KERNEL_UC_MINUS          (__PAGE_KERNEL | _PAGE_PCD)
100 #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)
103 #define __PAGE_KERNEL_LARGE_NOCACHE     (__PAGE_KERNEL | _PAGE_CACHE_UC | _PAGE_PSE)
104 #define __PAGE_KERNEL_LARGE_EXEC        (__PAGE_KERNEL_EXEC | _PAGE_PSE)
105
106 #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
111 #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)
120 #define PAGE_KERNEL_LARGE_NOCACHE       __pgprot(__PAGE_KERNEL_LARGE_NOCACHE)
121 #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)
124
125 #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
130 /*         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
149 /*
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
155 /*
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  */
160 #define PTE_IDENT_ATTR   0x003          /* PRESENT+RW */
161 #define PDE_IDENT_ATTR   0x067          /* PRESENT+RW+USER+DIRTY+ACCESSED */
162 #define PGD_IDENT_ATTR   0x001          /* PRESENT (no other attributes) */
163 #endif
164
165 /*
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
173 #ifndef __ASSEMBLY__
174
175 #define pgprot_writecombine     pgprot_writecombine
176 extern pgprot_t pgprot_writecombine(pgprot_t prot);
177
178 /*
179  * ZERO_PAGE is a global shared page that is always zero: used
180  * for zero-mapped memory areas etc..
181  */
182 extern unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)];
183 #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
184
185 extern spinlock_t pgd_lock;
186 extern struct list_head pgd_list;
187
188 /*
189  * The following only work if pte_present() is true.
190  * Undefined behaviour if not..
191  */
192 static inline int pte_dirty(pte_t pte)
193 {
194         return pte_flags(pte) & _PAGE_DIRTY;
195 }
196
197 static inline int pte_young(pte_t pte)
198 {
199         return pte_flags(pte) & _PAGE_ACCESSED;
200 }
201
202 static inline int pte_write(pte_t pte)
203 {
204         return pte_flags(pte) & _PAGE_RW;
205 }
206
207 static inline int pte_file(pte_t pte)
208 {
209         return pte_flags(pte) & _PAGE_FILE;
210 }
211
212 static inline int pte_huge(pte_t pte)
213 {
214         return pte_flags(pte) & _PAGE_PSE;
215 }
216
217 static inline int pte_global(pte_t pte)
218 {
219         return pte_flags(pte) & _PAGE_GLOBAL;
220 }
221
222 static inline int pte_exec(pte_t pte)
223 {
224         return !(pte_flags(pte) & _PAGE_NX);
225 }
226
227 static inline int pte_special(pte_t pte)
228 {
229         return pte_flags(pte) & _PAGE_SPECIAL;
230 }
231
232 static 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
239 static inline int pmd_large(pmd_t pte)
240 {
241         return (pmd_flags(pte) & (_PAGE_PSE | _PAGE_PRESENT)) ==
242                 (_PAGE_PSE | _PAGE_PRESENT);
243 }
244
245 static inline pte_t pte_set_flags(pte_t pte, pteval_t set)
246 {
247         pteval_t v = native_pte_val(pte);
248
249         return native_make_pte(v | set);
250 }
251
252 static inline pte_t pte_clear_flags(pte_t pte, pteval_t clear)
253 {
254         pteval_t v = native_pte_val(pte);
255
256         return native_make_pte(v & ~clear);
257 }
258
259 static inline pte_t pte_mkclean(pte_t pte)
260 {
261         return pte_clear_flags(pte, _PAGE_DIRTY);
262 }
263
264 static inline pte_t pte_mkold(pte_t pte)
265 {
266         return pte_clear_flags(pte, _PAGE_ACCESSED);
267 }
268
269 static inline pte_t pte_wrprotect(pte_t pte)
270 {
271         return pte_clear_flags(pte, _PAGE_RW);
272 }
273
274 static inline pte_t pte_mkexec(pte_t pte)
275 {
276         return pte_clear_flags(pte, _PAGE_NX);
277 }
278
279 static inline pte_t pte_mkdirty(pte_t pte)
280 {
281         return pte_set_flags(pte, _PAGE_DIRTY);
282 }
283
284 static inline pte_t pte_mkyoung(pte_t pte)
285 {
286         return pte_set_flags(pte, _PAGE_ACCESSED);
287 }
288
289 static inline pte_t pte_mkwrite(pte_t pte)
290 {
291         return pte_set_flags(pte, _PAGE_RW);
292 }
293
294 static inline pte_t pte_mkhuge(pte_t pte)
295 {
296         return pte_set_flags(pte, _PAGE_PSE);
297 }
298
299 static inline pte_t pte_clrhuge(pte_t pte)
300 {
301         return pte_clear_flags(pte, _PAGE_PSE);
302 }
303
304 static inline pte_t pte_mkglobal(pte_t pte)
305 {
306         return pte_set_flags(pte, _PAGE_GLOBAL);
307 }
308
309 static inline pte_t pte_clrglobal(pte_t pte)
310 {
311         return pte_clear_flags(pte, _PAGE_GLOBAL);
312 }
313
314 static inline pte_t pte_mkspecial(pte_t pte)
315 {
316         return pte_set_flags(pte, _PAGE_SPECIAL);
317 }
318
319 extern pteval_t __supported_pte_mask;
320
321 static inline pte_t pfn_pte(unsigned long page_nr, pgprot_t pgprot)
322 {
323         return __pte((((phys_addr_t)page_nr << PAGE_SHIFT) |
324                       pgprot_val(pgprot)) & __supported_pte_mask);
325 }
326
327 static inline pmd_t pfn_pmd(unsigned long page_nr, pgprot_t pgprot)
328 {
329         return __pmd((((phys_addr_t)page_nr << PAGE_SHIFT) |
330                       pgprot_val(pgprot)) & __supported_pte_mask);
331 }
332
333 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
334 {
335         pteval_t val = pte_val(pte);
336
337         /*
338          * Chop off the NX bit (if present), and add the NX portion of
339          * the newprot (if present):
340          */
341         val &= _PAGE_CHG_MASK;
342         val |= pgprot_val(newprot) & (~_PAGE_CHG_MASK) & __supported_pte_mask;
343
344         return __pte(val);
345 }
346
347 /* mprotect needs to preserve PAT bits when updating vm_page_prot */
348 #define pgprot_modify pgprot_modify
349 static inline pgprot_t pgprot_modify(pgprot_t oldprot, pgprot_t newprot)
350 {
351         pgprotval_t preservebits = pgprot_val(oldprot) & _PAGE_CHG_MASK;
352         pgprotval_t addbits = pgprot_val(newprot);
353         return __pgprot(preservebits | addbits);
354 }
355
356 #define pte_pgprot(x) __pgprot(pte_flags(x) & PTE_FLAGS_MASK)
357
358 #define canon_pgprot(p) __pgprot(pgprot_val(p) & __supported_pte_mask)
359
360 static inline int is_new_memtype_allowed(unsigned long flags,
361                                                 unsigned long new_flags)
362 {
363         /*
364          * Certain new memtypes are not allowed with certain
365          * requested memtype:
366          * - request is uncached, return cannot be write-back
367          * - request is write-combine, return cannot be write-back
368          */
369         if ((flags == _PAGE_CACHE_UC_MINUS &&
370              new_flags == _PAGE_CACHE_WB) ||
371             (flags == _PAGE_CACHE_WC &&
372              new_flags == _PAGE_CACHE_WB)) {
373                 return 0;
374         }
375
376         return 1;
377 }
378
379 #ifndef __ASSEMBLY__
380 /* Indicate that x86 has its own track and untrack pfn vma functions */
381 #define __HAVE_PFNMAP_TRACKING
382
383 #define __HAVE_PHYS_MEM_ACCESS_PROT
384 struct file;
385 pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
386                               unsigned long size, pgprot_t vma_prot);
387 int phys_mem_access_prot_allowed(struct file *file, unsigned long pfn,
388                               unsigned long size, pgprot_t *vma_prot);
389 #endif
390
391 /* Install a pte for a particular vaddr in kernel space. */
392 void set_pte_vaddr(unsigned long vaddr, pte_t pte);
393
394 #ifdef CONFIG_X86_32
395 extern void native_pagetable_setup_start(pgd_t *base);
396 extern void native_pagetable_setup_done(pgd_t *base);
397 #else
398 static inline void native_pagetable_setup_start(pgd_t *base) {}
399 static inline void native_pagetable_setup_done(pgd_t *base) {}
400 #endif
401
402 struct seq_file;
403 extern void arch_report_meminfo(struct seq_file *m);
404
405 #ifdef CONFIG_PARAVIRT
406 #include <asm/paravirt.h>
407 #else  /* !CONFIG_PARAVIRT */
408 #define set_pte(ptep, pte)              native_set_pte(ptep, pte)
409 #define set_pte_at(mm, addr, ptep, pte) native_set_pte_at(mm, addr, ptep, pte)
410
411 #define set_pte_present(mm, addr, ptep, pte)                            \
412         native_set_pte_present(mm, addr, ptep, pte)
413 #define set_pte_atomic(ptep, pte)                                       \
414         native_set_pte_atomic(ptep, pte)
415
416 #define set_pmd(pmdp, pmd)              native_set_pmd(pmdp, pmd)
417
418 #ifndef __PAGETABLE_PUD_FOLDED
419 #define set_pgd(pgdp, pgd)              native_set_pgd(pgdp, pgd)
420 #define pgd_clear(pgd)                  native_pgd_clear(pgd)
421 #endif
422
423 #ifndef set_pud
424 # define set_pud(pudp, pud)             native_set_pud(pudp, pud)
425 #endif
426
427 #ifndef __PAGETABLE_PMD_FOLDED
428 #define pud_clear(pud)                  native_pud_clear(pud)
429 #endif
430
431 #define pte_clear(mm, addr, ptep)       native_pte_clear(mm, addr, ptep)
432 #define pmd_clear(pmd)                  native_pmd_clear(pmd)
433
434 #define pte_update(mm, addr, ptep)              do { } while (0)
435 #define pte_update_defer(mm, addr, ptep)        do { } while (0)
436
437 static inline void __init paravirt_pagetable_setup_start(pgd_t *base)
438 {
439         native_pagetable_setup_start(base);
440 }
441
442 static inline void __init paravirt_pagetable_setup_done(pgd_t *base)
443 {
444         native_pagetable_setup_done(base);
445 }
446 #endif  /* CONFIG_PARAVIRT */
447
448 #endif  /* __ASSEMBLY__ */
449
450 #ifdef CONFIG_X86_32
451 # include "pgtable_32.h"
452 #else
453 # include "pgtable_64.h"
454 #endif
455
456 #ifndef __ASSEMBLY__
457 #include <linux/mm_types.h>
458
459 static inline int pte_none(pte_t pte)
460 {
461         return !pte.pte;
462 }
463
464 #define __HAVE_ARCH_PTE_SAME
465 static inline int pte_same(pte_t a, pte_t b)
466 {
467         return a.pte == b.pte;
468 }
469
470 static inline int pte_present(pte_t a)
471 {
472         return pte_flags(a) & (_PAGE_PRESENT | _PAGE_PROTNONE);
473 }
474
475 static inline int pmd_present(pmd_t pmd)
476 {
477         return pmd_flags(pmd) & _PAGE_PRESENT;
478 }
479
480 static inline int pmd_none(pmd_t pmd)
481 {
482         /* Only check low word on 32-bit platforms, since it might be
483            out of sync with upper half. */
484         return (unsigned long)native_pmd_val(pmd) == 0;
485 }
486
487 static inline unsigned long pmd_page_vaddr(pmd_t pmd)
488 {
489         return (unsigned long)__va(pmd_val(pmd) & PTE_PFN_MASK);
490 }
491
492 /*
493  * Currently stuck as a macro due to indirect forward reference to
494  * linux/mmzone.h's __section_mem_map_addr() definition:
495  */
496 #define pmd_page(pmd)   pfn_to_page(pmd_val(pmd) >> PAGE_SHIFT)
497
498 /*
499  * the pmd page can be thought of an array like this: pmd_t[PTRS_PER_PMD]
500  *
501  * this macro returns the index of the entry in the pmd page which would
502  * control the given virtual address
503  */
504 static inline unsigned pmd_index(unsigned long address)
505 {
506         return (address >> PMD_SHIFT) & (PTRS_PER_PMD - 1);
507 }
508
509 /*
510  * Conversion functions: convert a page and protection to a page entry,
511  * and a page entry and page directory to the page they refer to.
512  *
513  * (Currently stuck as a macro because of indirect forward reference
514  * to linux/mm.h:page_to_nid())
515  */
516 #define mk_pte(page, pgprot)   pfn_pte(page_to_pfn(page), (pgprot))
517
518 /*
519  * the pte page can be thought of an array like this: pte_t[PTRS_PER_PTE]
520  *
521  * this function returns the index of the entry in the pte page which would
522  * control the given virtual address
523  */
524 static inline unsigned pte_index(unsigned long address)
525 {
526         return (address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1);
527 }
528
529 static inline pte_t *pte_offset_kernel(pmd_t *pmd, unsigned long address)
530 {
531         return (pte_t *)pmd_page_vaddr(*pmd) + pte_index(address);
532 }
533
534 static inline int pmd_bad(pmd_t pmd)
535 {
536         return (pmd_flags(pmd) & ~_PAGE_USER) != _KERNPG_TABLE;
537 }
538
539 static inline unsigned long pages_to_mb(unsigned long npg)
540 {
541         return npg >> (20 - PAGE_SHIFT);
542 }
543
544 #define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \
545         remap_pfn_range(vma, vaddr, pfn, size, prot)
546
547 #if PAGETABLE_LEVELS == 2
548 static inline int pud_large(pud_t pud)
549 {
550         return 0;
551 }
552 #endif
553
554 #if PAGETABLE_LEVELS > 2
555 static inline int pud_none(pud_t pud)
556 {
557         return native_pud_val(pud) == 0;
558 }
559
560 static inline int pud_present(pud_t pud)
561 {
562         return pud_flags(pud) & _PAGE_PRESENT;
563 }
564
565 static inline unsigned long pud_page_vaddr(pud_t pud)
566 {
567         return (unsigned long)__va((unsigned long)pud_val(pud) & PTE_PFN_MASK);
568 }
569
570 /*
571  * Currently stuck as a macro due to indirect forward reference to
572  * linux/mmzone.h's __section_mem_map_addr() definition:
573  */
574 #define pud_page(pud)           pfn_to_page(pud_val(pud) >> PAGE_SHIFT)
575
576 /* Find an entry in the second-level page table.. */
577 static inline pmd_t *pmd_offset(pud_t *pud, unsigned long address)
578 {
579         return (pmd_t *)pud_page_vaddr(*pud) + pmd_index(address);
580 }
581
582 static inline unsigned long pmd_pfn(pmd_t pmd)
583 {
584         return (pmd_val(pmd) & PTE_PFN_MASK) >> PAGE_SHIFT;
585 }
586
587 static inline int pud_large(pud_t pud)
588 {
589         return (pud_flags(pud) & (_PAGE_PSE | _PAGE_PRESENT)) ==
590                 (_PAGE_PSE | _PAGE_PRESENT);
591 }
592
593 static inline int pud_bad(pud_t pud)
594 {
595         return (pud_flags(pud) & ~(_KERNPG_TABLE | _PAGE_USER)) != 0;
596 }
597 #endif  /* PAGETABLE_LEVELS > 2 */
598
599 #if PAGETABLE_LEVELS > 3
600 static inline int pgd_present(pgd_t pgd)
601 {
602         return pgd_flags(pgd) & _PAGE_PRESENT;
603 }
604
605 static inline unsigned long pgd_page_vaddr(pgd_t pgd)
606 {
607         return (unsigned long)__va((unsigned long)pgd_val(pgd) & PTE_PFN_MASK);
608 }
609
610 /*
611  * Currently stuck as a macro due to indirect forward reference to
612  * linux/mmzone.h's __section_mem_map_addr() definition:
613  */
614 #define pgd_page(pgd)           pfn_to_page(pgd_val(pgd) >> PAGE_SHIFT)
615
616 /* to find an entry in a page-table-directory. */
617 static inline unsigned pud_index(unsigned long address)
618 {
619         return (address >> PUD_SHIFT) & (PTRS_PER_PUD - 1);
620 }
621
622 static inline pud_t *pud_offset(pgd_t *pgd, unsigned long address)
623 {
624         return (pud_t *)pgd_page_vaddr(*pgd) + pud_index(address);
625 }
626
627 static inline int pgd_bad(pgd_t pgd)
628 {
629         return (pgd_flags(pgd) & ~_PAGE_USER) != _KERNPG_TABLE;
630 }
631
632 static inline int pgd_none(pgd_t pgd)
633 {
634         return !native_pgd_val(pgd);
635 }
636 #endif  /* PAGETABLE_LEVELS > 3 */
637
638 #endif  /* __ASSEMBLY__ */
639
640 /*
641  * the pgd page can be thought of an array like this: pgd_t[PTRS_PER_PGD]
642  *
643  * this macro returns the index of the entry in the pgd page which would
644  * control the given virtual address
645  */
646 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD - 1))
647
648 /*
649  * pgd_offset() returns a (pgd_t *)
650  * pgd_index() is used get the offset into the pgd page's array of pgd_t's;
651  */
652 #define pgd_offset(mm, address) ((mm)->pgd + pgd_index((address)))
653 /*
654  * a shortcut which implies the use of the kernel's pgd, instead
655  * of a process's
656  */
657 #define pgd_offset_k(address) pgd_offset(&init_mm, (address))
658
659
660 #define KERNEL_PGD_BOUNDARY     pgd_index(PAGE_OFFSET)
661 #define KERNEL_PGD_PTRS         (PTRS_PER_PGD - KERNEL_PGD_BOUNDARY)
662
663 #ifndef __ASSEMBLY__
664
665 enum {
666         PG_LEVEL_NONE,
667         PG_LEVEL_4K,
668         PG_LEVEL_2M,
669         PG_LEVEL_1G,
670         PG_LEVEL_NUM
671 };
672
673 #ifdef CONFIG_PROC_FS
674 extern void update_page_count(int level, unsigned long pages);
675 #else
676 static inline void update_page_count(int level, unsigned long pages) { }
677 #endif
678
679 /*
680  * Helper function that returns the kernel pagetable entry controlling
681  * the virtual address 'address'. NULL means no pagetable entry present.
682  * NOTE: the return type is pte_t but if the pmd is PSE then we return it
683  * as a pte too.
684  */
685 extern pte_t *lookup_address(unsigned long address, unsigned int *level);
686
687 /* local pte updates need not use xchg for locking */
688 static inline pte_t native_local_ptep_get_and_clear(pte_t *ptep)
689 {
690         pte_t res = *ptep;
691
692         /* Pure native function needs no input for mm, addr */
693         native_pte_clear(NULL, 0, ptep);
694         return res;
695 }
696
697 static inline void native_set_pte_at(struct mm_struct *mm, unsigned long addr,
698                                      pte_t *ptep , pte_t pte)
699 {
700         native_set_pte(ptep, pte);
701 }
702
703 #ifndef CONFIG_PARAVIRT
704 /*
705  * Rules for using pte_update - it must be called after any PTE update which
706  * has not been done using the set_pte / clear_pte interfaces.  It is used by
707  * shadow mode hypervisors to resynchronize the shadow page tables.  Kernel PTE
708  * updates should either be sets, clears, or set_pte_atomic for P->P
709  * transitions, which means this hook should only be called for user PTEs.
710  * This hook implies a P->P protection or access change has taken place, which
711  * requires a subsequent TLB flush.  The notification can optionally be delayed
712  * until the TLB flush event by using the pte_update_defer form of the
713  * interface, but care must be taken to assure that the flush happens while
714  * still holding the same page table lock so that the shadow and primary pages
715  * do not become out of sync on SMP.
716  */
717 #define pte_update(mm, addr, ptep)              do { } while (0)
718 #define pte_update_defer(mm, addr, ptep)        do { } while (0)
719 #endif
720
721 /*
722  * We only update the dirty/accessed state if we set
723  * the dirty bit by hand in the kernel, since the hardware
724  * will do the accessed bit for us, and we don't want to
725  * race with other CPU's that might be updating the dirty
726  * bit at the same time.
727  */
728 struct vm_area_struct;
729
730 #define  __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
731 extern int ptep_set_access_flags(struct vm_area_struct *vma,
732                                  unsigned long address, pte_t *ptep,
733                                  pte_t entry, int dirty);
734
735 #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
736 extern int ptep_test_and_clear_young(struct vm_area_struct *vma,
737                                      unsigned long addr, pte_t *ptep);
738
739 #define __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
740 extern int ptep_clear_flush_young(struct vm_area_struct *vma,
741                                   unsigned long address, pte_t *ptep);
742
743 #define __HAVE_ARCH_PTEP_GET_AND_CLEAR
744 static inline pte_t ptep_get_and_clear(struct mm_struct *mm, unsigned long addr,
745                                        pte_t *ptep)
746 {
747         pte_t pte = native_ptep_get_and_clear(ptep);
748         pte_update(mm, addr, ptep);
749         return pte;
750 }
751
752 #define __HAVE_ARCH_PTEP_GET_AND_CLEAR_FULL
753 static inline pte_t ptep_get_and_clear_full(struct mm_struct *mm,
754                                             unsigned long addr, pte_t *ptep,
755                                             int full)
756 {
757         pte_t pte;
758         if (full) {
759                 /*
760                  * Full address destruction in progress; paravirt does not
761                  * care about updates and native needs no locking
762                  */
763                 pte = native_local_ptep_get_and_clear(ptep);
764         } else {
765                 pte = ptep_get_and_clear(mm, addr, ptep);
766         }
767         return pte;
768 }
769
770 #define __HAVE_ARCH_PTEP_SET_WRPROTECT
771 static inline void ptep_set_wrprotect(struct mm_struct *mm,
772                                       unsigned long addr, pte_t *ptep)
773 {
774         clear_bit(_PAGE_BIT_RW, (unsigned long *)&ptep->pte);
775         pte_update(mm, addr, ptep);
776 }
777
778 /*
779  * clone_pgd_range(pgd_t *dst, pgd_t *src, int count);
780  *
781  *  dst - pointer to pgd range anwhere on a pgd page
782  *  src - ""
783  *  count - the number of pgds to copy.
784  *
785  * dst and src can be on the same page, but the range must not overlap,
786  * and must not cross a page boundary.
787  */
788 static inline void clone_pgd_range(pgd_t *dst, pgd_t *src, int count)
789 {
790        memcpy(dst, src, count * sizeof(pgd_t));
791 }
792
793
794 #include <asm-generic/pgtable.h>
795 #endif  /* __ASSEMBLY__ */
796
797 #endif /* _ASM_X86_PGTABLE_H */