VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / include / asm-i386 / pgtable-3level.h
1 #ifndef _I386_PGTABLE_3LEVEL_H
2 #define _I386_PGTABLE_3LEVEL_H
3
4 /*
5  * Intel Physical Address Extension (PAE) Mode - three-level page
6  * tables on PPro+ CPUs.
7  *
8  * Copyright (C) 1999 Ingo Molnar <mingo@redhat.com>
9  */
10
11 #define pte_ERROR(e) \
12         printk("%s:%d: bad pte %p(%08lx%08lx).\n", __FILE__, __LINE__, &(e), (e).pte_high, (e).pte_low)
13 #define pmd_ERROR(e) \
14         printk("%s:%d: bad pmd %p(%016Lx).\n", __FILE__, __LINE__, &(e), pmd_val(e))
15 #define pgd_ERROR(e) \
16         printk("%s:%d: bad pgd %p(%016Lx).\n", __FILE__, __LINE__, &(e), pgd_val(e))
17
18 static inline int pgd_none(pgd_t pgd)           { return 0; }
19 static inline int pgd_bad(pgd_t pgd)            { return 0; }
20 static inline int pgd_present(pgd_t pgd)        { return 1; }
21
22 /*
23  * Is the pte executable?
24  */
25 static inline int pte_x(pte_t pte)
26 {
27         return !(pte_val(pte) & _PAGE_NX);
28 }
29
30 /*
31  * All present user-pages with !NX bit are user-executable:
32  */
33 static inline int pte_exec(pte_t pte)
34 {
35         return pte_user(pte) && pte_x(pte);
36 }
37 /*
38  * All present pages with !NX bit are kernel-executable:
39  */
40 static inline int pte_exec_kernel(pte_t pte)
41 {
42         return pte_x(pte);
43 }
44
45 /* Rules for using set_pte: the pte being assigned *must* be
46  * either not present or in a state where the hardware will
47  * not attempt to update the pte.  In places where this is
48  * not possible, use pte_get_and_clear to obtain the old pte
49  * value and then use set_pte to update it.  -ben
50  */
51 static inline void set_pte(pte_t *ptep, pte_t pte)
52 {
53         ptep->pte_high = pte.pte_high;
54         smp_wmb();
55         ptep->pte_low = pte.pte_low;
56 }
57 #define set_pte_atomic(pteptr,pteval) \
58                 set_64bit((unsigned long long *)(pteptr),pte_val(pteval))
59 #define set_pmd(pmdptr,pmdval) \
60                 set_64bit((unsigned long long *)(pmdptr),pmd_val(pmdval))
61 #define set_pgd(pgdptr,pgdval) \
62                 set_64bit((unsigned long long *)(pgdptr),pgd_val(pgdval))
63
64 /*
65  * Pentium-II erratum A13: in PAE mode we explicitly have to flush
66  * the TLB via cr3 if the top-level pgd is changed...
67  * We do not let the generic code free and clear pgd entries due to
68  * this erratum.
69  */
70 static inline void pgd_clear (pgd_t * pgd) { }
71
72 #define pgd_page(pgd) \
73 ((unsigned long) __va(pgd_val(pgd) & PAGE_MASK))
74
75 /* Find an entry in the second-level page table.. */
76 #define pmd_offset(dir, address) ((pmd_t *) pgd_page(*(dir)) + \
77                         pmd_index(address))
78
79 static inline pte_t ptep_get_and_clear(pte_t *ptep)
80 {
81         pte_t res;
82
83         /* xchg acts as a barrier before the setting of the high bits */
84         res.pte_low = xchg(&ptep->pte_low, 0);
85         res.pte_high = ptep->pte_high;
86         ptep->pte_high = 0;
87
88         return res;
89 }
90
91 static inline int pte_same(pte_t a, pte_t b)
92 {
93         return a.pte_low == b.pte_low && a.pte_high == b.pte_high;
94 }
95
96 #define pte_page(x)     pfn_to_page(pte_pfn(x))
97
98 static inline int pte_none(pte_t pte)
99 {
100         return !pte.pte_low && !pte.pte_high;
101 }
102
103 static inline unsigned long pte_pfn(pte_t pte)
104 {
105         return (pte.pte_low >> PAGE_SHIFT) |
106                 (pte.pte_high << (32 - PAGE_SHIFT));
107 }
108
109 extern unsigned long long __supported_pte_mask;
110
111 static inline pte_t pfn_pte(unsigned long page_nr, pgprot_t pgprot)
112 {
113         pte_t pte;
114
115         pte.pte_high = (page_nr >> (32 - PAGE_SHIFT)) | \
116                                         (pgprot_val(pgprot) >> 32);
117         pte.pte_high &= (__supported_pte_mask >> 32);
118         pte.pte_low = ((page_nr << PAGE_SHIFT) | pgprot_val(pgprot)) & \
119                                                         __supported_pte_mask;
120         return pte;
121 }
122
123 static inline pmd_t pfn_pmd(unsigned long page_nr, pgprot_t pgprot)
124 {
125         return __pmd((((unsigned long long)page_nr << PAGE_SHIFT) | \
126                         pgprot_val(pgprot)) & __supported_pte_mask);
127 }
128
129 /*
130  * Bits 0, 6 and 7 are taken in the low part of the pte,
131  * put the 32 bits of offset into the high part.
132  */
133 #define pte_to_pgoff(pte) ((pte).pte_high)
134 #define pgoff_to_pte(off) ((pte_t) { _PAGE_FILE, (off) })
135 #define PTE_FILE_MAX_BITS       32
136
137 #endif /* _I386_PGTABLE_3LEVEL_H */