Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6
[linux/fpc-iii.git] / arch / x86 / include / asm / pgtable.h
blob4c5b51fdc7885df598e4df3fa72cbec9eb3e442c
1 #ifndef _ASM_X86_PGTABLE_H
2 #define _ASM_X86_PGTABLE_H
4 #include <asm/page.h>
5 #include <asm/e820.h>
7 #include <asm/pgtable_types.h>
9 /*
10 * Macro to mark a page protection value as UC-
12 #define pgprot_noncached(prot) \
13 ((boot_cpu_data.x86 > 3) \
14 ? (__pgprot(pgprot_val(prot) | _PAGE_CACHE_UC_MINUS)) \
15 : (prot))
17 #ifndef __ASSEMBLY__
20 * ZERO_PAGE is a global shared page that is always zero: used
21 * for zero-mapped memory areas etc..
23 extern unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)];
24 #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
26 extern spinlock_t pgd_lock;
27 extern struct list_head pgd_list;
29 #ifdef CONFIG_PARAVIRT
30 #include <asm/paravirt.h>
31 #else /* !CONFIG_PARAVIRT */
32 #define set_pte(ptep, pte) native_set_pte(ptep, pte)
33 #define set_pte_at(mm, addr, ptep, pte) native_set_pte_at(mm, addr, ptep, pte)
35 #define set_pte_atomic(ptep, pte) \
36 native_set_pte_atomic(ptep, pte)
38 #define set_pmd(pmdp, pmd) native_set_pmd(pmdp, pmd)
40 #ifndef __PAGETABLE_PUD_FOLDED
41 #define set_pgd(pgdp, pgd) native_set_pgd(pgdp, pgd)
42 #define pgd_clear(pgd) native_pgd_clear(pgd)
43 #endif
45 #ifndef set_pud
46 # define set_pud(pudp, pud) native_set_pud(pudp, pud)
47 #endif
49 #ifndef __PAGETABLE_PMD_FOLDED
50 #define pud_clear(pud) native_pud_clear(pud)
51 #endif
53 #define pte_clear(mm, addr, ptep) native_pte_clear(mm, addr, ptep)
54 #define pmd_clear(pmd) native_pmd_clear(pmd)
56 #define pte_update(mm, addr, ptep) do { } while (0)
57 #define pte_update_defer(mm, addr, ptep) do { } while (0)
59 static inline void __init paravirt_pagetable_setup_start(pgd_t *base)
61 native_pagetable_setup_start(base);
64 static inline void __init paravirt_pagetable_setup_done(pgd_t *base)
66 native_pagetable_setup_done(base);
69 #define pgd_val(x) native_pgd_val(x)
70 #define __pgd(x) native_make_pgd(x)
72 #ifndef __PAGETABLE_PUD_FOLDED
73 #define pud_val(x) native_pud_val(x)
74 #define __pud(x) native_make_pud(x)
75 #endif
77 #ifndef __PAGETABLE_PMD_FOLDED
78 #define pmd_val(x) native_pmd_val(x)
79 #define __pmd(x) native_make_pmd(x)
80 #endif
82 #define pte_val(x) native_pte_val(x)
83 #define __pte(x) native_make_pte(x)
85 #define arch_end_context_switch(prev) do {} while(0)
87 #endif /* CONFIG_PARAVIRT */
90 * The following only work if pte_present() is true.
91 * Undefined behaviour if not..
93 static inline int pte_dirty(pte_t pte)
95 return pte_flags(pte) & _PAGE_DIRTY;
98 static inline int pte_young(pte_t pte)
100 return pte_flags(pte) & _PAGE_ACCESSED;
103 static inline int pte_write(pte_t pte)
105 return pte_flags(pte) & _PAGE_RW;
108 static inline int pte_file(pte_t pte)
110 return pte_flags(pte) & _PAGE_FILE;
113 static inline int pte_huge(pte_t pte)
115 return pte_flags(pte) & _PAGE_PSE;
118 static inline int pte_global(pte_t pte)
120 return pte_flags(pte) & _PAGE_GLOBAL;
123 static inline int pte_exec(pte_t pte)
125 return !(pte_flags(pte) & _PAGE_NX);
128 static inline int pte_special(pte_t pte)
130 return pte_flags(pte) & _PAGE_SPECIAL;
133 static inline unsigned long pte_pfn(pte_t pte)
135 return (pte_val(pte) & PTE_PFN_MASK) >> PAGE_SHIFT;
138 static inline unsigned long pmd_pfn(pmd_t pmd)
140 return (pmd_val(pmd) & PTE_PFN_MASK) >> PAGE_SHIFT;
143 #define pte_page(pte) pfn_to_page(pte_pfn(pte))
145 static inline int pmd_large(pmd_t pte)
147 return (pmd_flags(pte) & (_PAGE_PSE | _PAGE_PRESENT)) ==
148 (_PAGE_PSE | _PAGE_PRESENT);
151 static inline pte_t pte_set_flags(pte_t pte, pteval_t set)
153 pteval_t v = native_pte_val(pte);
155 return native_make_pte(v | set);
158 static inline pte_t pte_clear_flags(pte_t pte, pteval_t clear)
160 pteval_t v = native_pte_val(pte);
162 return native_make_pte(v & ~clear);
165 static inline pte_t pte_mkclean(pte_t pte)
167 return pte_clear_flags(pte, _PAGE_DIRTY);
170 static inline pte_t pte_mkold(pte_t pte)
172 return pte_clear_flags(pte, _PAGE_ACCESSED);
175 static inline pte_t pte_wrprotect(pte_t pte)
177 return pte_clear_flags(pte, _PAGE_RW);
180 static inline pte_t pte_mkexec(pte_t pte)
182 return pte_clear_flags(pte, _PAGE_NX);
185 static inline pte_t pte_mkdirty(pte_t pte)
187 return pte_set_flags(pte, _PAGE_DIRTY);
190 static inline pte_t pte_mkyoung(pte_t pte)
192 return pte_set_flags(pte, _PAGE_ACCESSED);
195 static inline pte_t pte_mkwrite(pte_t pte)
197 return pte_set_flags(pte, _PAGE_RW);
200 static inline pte_t pte_mkhuge(pte_t pte)
202 return pte_set_flags(pte, _PAGE_PSE);
205 static inline pte_t pte_clrhuge(pte_t pte)
207 return pte_clear_flags(pte, _PAGE_PSE);
210 static inline pte_t pte_mkglobal(pte_t pte)
212 return pte_set_flags(pte, _PAGE_GLOBAL);
215 static inline pte_t pte_clrglobal(pte_t pte)
217 return pte_clear_flags(pte, _PAGE_GLOBAL);
220 static inline pte_t pte_mkspecial(pte_t pte)
222 return pte_set_flags(pte, _PAGE_SPECIAL);
226 * Mask out unsupported bits in a present pgprot. Non-present pgprots
227 * can use those bits for other purposes, so leave them be.
229 static inline pgprotval_t massage_pgprot(pgprot_t pgprot)
231 pgprotval_t protval = pgprot_val(pgprot);
233 if (protval & _PAGE_PRESENT)
234 protval &= __supported_pte_mask;
236 return protval;
239 static inline pte_t pfn_pte(unsigned long page_nr, pgprot_t pgprot)
241 return __pte(((phys_addr_t)page_nr << PAGE_SHIFT) |
242 massage_pgprot(pgprot));
245 static inline pmd_t pfn_pmd(unsigned long page_nr, pgprot_t pgprot)
247 return __pmd(((phys_addr_t)page_nr << PAGE_SHIFT) |
248 massage_pgprot(pgprot));
251 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
253 pteval_t val = pte_val(pte);
256 * Chop off the NX bit (if present), and add the NX portion of
257 * the newprot (if present):
259 val &= _PAGE_CHG_MASK;
260 val |= massage_pgprot(newprot) & ~_PAGE_CHG_MASK;
262 return __pte(val);
265 /* mprotect needs to preserve PAT bits when updating vm_page_prot */
266 #define pgprot_modify pgprot_modify
267 static inline pgprot_t pgprot_modify(pgprot_t oldprot, pgprot_t newprot)
269 pgprotval_t preservebits = pgprot_val(oldprot) & _PAGE_CHG_MASK;
270 pgprotval_t addbits = pgprot_val(newprot);
271 return __pgprot(preservebits | addbits);
274 #define pte_pgprot(x) __pgprot(pte_flags(x) & PTE_FLAGS_MASK)
276 #define canon_pgprot(p) __pgprot(massage_pgprot(p))
278 static inline int is_new_memtype_allowed(u64 paddr, unsigned long size,
279 unsigned long flags,
280 unsigned long new_flags)
283 * PAT type is always WB for ISA. So no need to check.
285 if (is_ISA_range(paddr, paddr + size - 1))
286 return 1;
289 * Certain new memtypes are not allowed with certain
290 * requested memtype:
291 * - request is uncached, return cannot be write-back
292 * - request is write-combine, return cannot be write-back
294 if ((flags == _PAGE_CACHE_UC_MINUS &&
295 new_flags == _PAGE_CACHE_WB) ||
296 (flags == _PAGE_CACHE_WC &&
297 new_flags == _PAGE_CACHE_WB)) {
298 return 0;
301 return 1;
304 pmd_t *populate_extra_pmd(unsigned long vaddr);
305 pte_t *populate_extra_pte(unsigned long vaddr);
306 #endif /* __ASSEMBLY__ */
308 #ifdef CONFIG_X86_32
309 # include "pgtable_32.h"
310 #else
311 # include "pgtable_64.h"
312 #endif
314 #ifndef __ASSEMBLY__
315 #include <linux/mm_types.h>
317 static inline int pte_none(pte_t pte)
319 return !pte.pte;
322 #define __HAVE_ARCH_PTE_SAME
323 static inline int pte_same(pte_t a, pte_t b)
325 return a.pte == b.pte;
328 static inline int pte_present(pte_t a)
330 return pte_flags(a) & (_PAGE_PRESENT | _PAGE_PROTNONE);
333 static inline int pte_hidden(pte_t pte)
335 return pte_flags(pte) & _PAGE_HIDDEN;
338 static inline int pmd_present(pmd_t pmd)
340 return pmd_flags(pmd) & _PAGE_PRESENT;
343 static inline int pmd_none(pmd_t pmd)
345 /* Only check low word on 32-bit platforms, since it might be
346 out of sync with upper half. */
347 return (unsigned long)native_pmd_val(pmd) == 0;
350 static inline unsigned long pmd_page_vaddr(pmd_t pmd)
352 return (unsigned long)__va(pmd_val(pmd) & PTE_PFN_MASK);
356 * Currently stuck as a macro due to indirect forward reference to
357 * linux/mmzone.h's __section_mem_map_addr() definition:
359 #define pmd_page(pmd) pfn_to_page(pmd_val(pmd) >> PAGE_SHIFT)
362 * the pmd page can be thought of an array like this: pmd_t[PTRS_PER_PMD]
364 * this macro returns the index of the entry in the pmd page which would
365 * control the given virtual address
367 static inline unsigned long pmd_index(unsigned long address)
369 return (address >> PMD_SHIFT) & (PTRS_PER_PMD - 1);
373 * Conversion functions: convert a page and protection to a page entry,
374 * and a page entry and page directory to the page they refer to.
376 * (Currently stuck as a macro because of indirect forward reference
377 * to linux/mm.h:page_to_nid())
379 #define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
382 * the pte page can be thought of an array like this: pte_t[PTRS_PER_PTE]
384 * this function returns the index of the entry in the pte page which would
385 * control the given virtual address
387 static inline unsigned long pte_index(unsigned long address)
389 return (address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1);
392 static inline pte_t *pte_offset_kernel(pmd_t *pmd, unsigned long address)
394 return (pte_t *)pmd_page_vaddr(*pmd) + pte_index(address);
397 static inline int pmd_bad(pmd_t pmd)
399 return (pmd_flags(pmd) & ~_PAGE_USER) != _KERNPG_TABLE;
402 static inline unsigned long pages_to_mb(unsigned long npg)
404 return npg >> (20 - PAGE_SHIFT);
407 #define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \
408 remap_pfn_range(vma, vaddr, pfn, size, prot)
410 #if PAGETABLE_LEVELS > 2
411 static inline int pud_none(pud_t pud)
413 return native_pud_val(pud) == 0;
416 static inline int pud_present(pud_t pud)
418 return pud_flags(pud) & _PAGE_PRESENT;
421 static inline unsigned long pud_page_vaddr(pud_t pud)
423 return (unsigned long)__va((unsigned long)pud_val(pud) & PTE_PFN_MASK);
427 * Currently stuck as a macro due to indirect forward reference to
428 * linux/mmzone.h's __section_mem_map_addr() definition:
430 #define pud_page(pud) pfn_to_page(pud_val(pud) >> PAGE_SHIFT)
432 /* Find an entry in the second-level page table.. */
433 static inline pmd_t *pmd_offset(pud_t *pud, unsigned long address)
435 return (pmd_t *)pud_page_vaddr(*pud) + pmd_index(address);
438 static inline int pud_large(pud_t pud)
440 return (pud_val(pud) & (_PAGE_PSE | _PAGE_PRESENT)) ==
441 (_PAGE_PSE | _PAGE_PRESENT);
444 static inline int pud_bad(pud_t pud)
446 return (pud_flags(pud) & ~(_KERNPG_TABLE | _PAGE_USER)) != 0;
448 #else
449 static inline int pud_large(pud_t pud)
451 return 0;
453 #endif /* PAGETABLE_LEVELS > 2 */
455 #if PAGETABLE_LEVELS > 3
456 static inline int pgd_present(pgd_t pgd)
458 return pgd_flags(pgd) & _PAGE_PRESENT;
461 static inline unsigned long pgd_page_vaddr(pgd_t pgd)
463 return (unsigned long)__va((unsigned long)pgd_val(pgd) & PTE_PFN_MASK);
467 * Currently stuck as a macro due to indirect forward reference to
468 * linux/mmzone.h's __section_mem_map_addr() definition:
470 #define pgd_page(pgd) pfn_to_page(pgd_val(pgd) >> PAGE_SHIFT)
472 /* to find an entry in a page-table-directory. */
473 static inline unsigned long pud_index(unsigned long address)
475 return (address >> PUD_SHIFT) & (PTRS_PER_PUD - 1);
478 static inline pud_t *pud_offset(pgd_t *pgd, unsigned long address)
480 return (pud_t *)pgd_page_vaddr(*pgd) + pud_index(address);
483 static inline int pgd_bad(pgd_t pgd)
485 return (pgd_flags(pgd) & ~_PAGE_USER) != _KERNPG_TABLE;
488 static inline int pgd_none(pgd_t pgd)
490 return !native_pgd_val(pgd);
492 #endif /* PAGETABLE_LEVELS > 3 */
494 #endif /* __ASSEMBLY__ */
497 * the pgd page can be thought of an array like this: pgd_t[PTRS_PER_PGD]
499 * this macro returns the index of the entry in the pgd page which would
500 * control the given virtual address
502 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD - 1))
505 * pgd_offset() returns a (pgd_t *)
506 * pgd_index() is used get the offset into the pgd page's array of pgd_t's;
508 #define pgd_offset(mm, address) ((mm)->pgd + pgd_index((address)))
510 * a shortcut which implies the use of the kernel's pgd, instead
511 * of a process's
513 #define pgd_offset_k(address) pgd_offset(&init_mm, (address))
516 #define KERNEL_PGD_BOUNDARY pgd_index(PAGE_OFFSET)
517 #define KERNEL_PGD_PTRS (PTRS_PER_PGD - KERNEL_PGD_BOUNDARY)
519 #ifndef __ASSEMBLY__
521 extern int direct_gbpages;
523 /* local pte updates need not use xchg for locking */
524 static inline pte_t native_local_ptep_get_and_clear(pte_t *ptep)
526 pte_t res = *ptep;
528 /* Pure native function needs no input for mm, addr */
529 native_pte_clear(NULL, 0, ptep);
530 return res;
533 static inline void native_set_pte_at(struct mm_struct *mm, unsigned long addr,
534 pte_t *ptep , pte_t pte)
536 native_set_pte(ptep, pte);
539 #ifndef CONFIG_PARAVIRT
541 * Rules for using pte_update - it must be called after any PTE update which
542 * has not been done using the set_pte / clear_pte interfaces. It is used by
543 * shadow mode hypervisors to resynchronize the shadow page tables. Kernel PTE
544 * updates should either be sets, clears, or set_pte_atomic for P->P
545 * transitions, which means this hook should only be called for user PTEs.
546 * This hook implies a P->P protection or access change has taken place, which
547 * requires a subsequent TLB flush. The notification can optionally be delayed
548 * until the TLB flush event by using the pte_update_defer form of the
549 * interface, but care must be taken to assure that the flush happens while
550 * still holding the same page table lock so that the shadow and primary pages
551 * do not become out of sync on SMP.
553 #define pte_update(mm, addr, ptep) do { } while (0)
554 #define pte_update_defer(mm, addr, ptep) do { } while (0)
555 #endif
558 * We only update the dirty/accessed state if we set
559 * the dirty bit by hand in the kernel, since the hardware
560 * will do the accessed bit for us, and we don't want to
561 * race with other CPU's that might be updating the dirty
562 * bit at the same time.
564 struct vm_area_struct;
566 #define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
567 extern int ptep_set_access_flags(struct vm_area_struct *vma,
568 unsigned long address, pte_t *ptep,
569 pte_t entry, int dirty);
571 #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
572 extern int ptep_test_and_clear_young(struct vm_area_struct *vma,
573 unsigned long addr, pte_t *ptep);
575 #define __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
576 extern int ptep_clear_flush_young(struct vm_area_struct *vma,
577 unsigned long address, pte_t *ptep);
579 #define __HAVE_ARCH_PTEP_GET_AND_CLEAR
580 static inline pte_t ptep_get_and_clear(struct mm_struct *mm, unsigned long addr,
581 pte_t *ptep)
583 pte_t pte = native_ptep_get_and_clear(ptep);
584 pte_update(mm, addr, ptep);
585 return pte;
588 #define __HAVE_ARCH_PTEP_GET_AND_CLEAR_FULL
589 static inline pte_t ptep_get_and_clear_full(struct mm_struct *mm,
590 unsigned long addr, pte_t *ptep,
591 int full)
593 pte_t pte;
594 if (full) {
596 * Full address destruction in progress; paravirt does not
597 * care about updates and native needs no locking
599 pte = native_local_ptep_get_and_clear(ptep);
600 } else {
601 pte = ptep_get_and_clear(mm, addr, ptep);
603 return pte;
606 #define __HAVE_ARCH_PTEP_SET_WRPROTECT
607 static inline void ptep_set_wrprotect(struct mm_struct *mm,
608 unsigned long addr, pte_t *ptep)
610 clear_bit(_PAGE_BIT_RW, (unsigned long *)&ptep->pte);
611 pte_update(mm, addr, ptep);
615 * clone_pgd_range(pgd_t *dst, pgd_t *src, int count);
617 * dst - pointer to pgd range anwhere on a pgd page
618 * src - ""
619 * count - the number of pgds to copy.
621 * dst and src can be on the same page, but the range must not overlap,
622 * and must not cross a page boundary.
624 static inline void clone_pgd_range(pgd_t *dst, pgd_t *src, int count)
626 memcpy(dst, src, count * sizeof(pgd_t));
630 #include <asm-generic/pgtable.h>
631 #endif /* __ASSEMBLY__ */
633 #endif /* _ASM_X86_PGTABLE_H */