1 #ifndef _ASM_GENERIC_PGTABLE_H
2 #define _ASM_GENERIC_PGTABLE_H
7 #include <linux/mm_types.h>
9 #ifndef __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
10 extern int ptep_set_access_flags(struct vm_area_struct
*vma
,
11 unsigned long address
, pte_t
*ptep
,
12 pte_t entry
, int dirty
);
15 #ifndef __HAVE_ARCH_PMDP_SET_ACCESS_FLAGS
16 extern int pmdp_set_access_flags(struct vm_area_struct
*vma
,
17 unsigned long address
, pmd_t
*pmdp
,
18 pmd_t entry
, int dirty
);
21 #ifndef __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
22 static inline int ptep_test_and_clear_young(struct vm_area_struct
*vma
,
23 unsigned long address
,
31 set_pte_at(vma
->vm_mm
, address
, ptep
, pte_mkold(pte
));
36 #ifndef __HAVE_ARCH_PMDP_TEST_AND_CLEAR_YOUNG
37 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
38 static inline int pmdp_test_and_clear_young(struct vm_area_struct
*vma
,
39 unsigned long address
,
47 set_pmd_at(vma
->vm_mm
, address
, pmdp
, pmd_mkold(pmd
));
50 #else /* CONFIG_TRANSPARENT_HUGEPAGE */
51 static inline int pmdp_test_and_clear_young(struct vm_area_struct
*vma
,
52 unsigned long address
,
58 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
61 #ifndef __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
62 int ptep_clear_flush_young(struct vm_area_struct
*vma
,
63 unsigned long address
, pte_t
*ptep
);
66 #ifndef __HAVE_ARCH_PMDP_CLEAR_YOUNG_FLUSH
67 int pmdp_clear_flush_young(struct vm_area_struct
*vma
,
68 unsigned long address
, pmd_t
*pmdp
);
71 #ifndef __HAVE_ARCH_PTEP_GET_AND_CLEAR
72 static inline pte_t
ptep_get_and_clear(struct mm_struct
*mm
,
73 unsigned long address
,
77 pte_clear(mm
, address
, ptep
);
82 #ifndef __HAVE_ARCH_PMDP_GET_AND_CLEAR
83 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
84 static inline pmd_t
pmdp_get_and_clear(struct mm_struct
*mm
,
85 unsigned long address
,
89 pmd_clear(mm
, address
, pmdp
);
92 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
95 #ifndef __HAVE_ARCH_PTEP_GET_AND_CLEAR_FULL
96 static inline pte_t
ptep_get_and_clear_full(struct mm_struct
*mm
,
97 unsigned long address
, pte_t
*ptep
,
101 pte
= ptep_get_and_clear(mm
, address
, ptep
);
107 * Some architectures may be able to avoid expensive synchronization
108 * primitives when modifications are made to PTE's which are already
109 * not present, or in the process of an address space destruction.
111 #ifndef __HAVE_ARCH_PTE_CLEAR_NOT_PRESENT_FULL
112 static inline void pte_clear_not_present_full(struct mm_struct
*mm
,
113 unsigned long address
,
117 pte_clear(mm
, address
, ptep
);
121 #ifndef __HAVE_ARCH_PTEP_CLEAR_FLUSH
122 extern pte_t
ptep_clear_flush(struct vm_area_struct
*vma
,
123 unsigned long address
,
127 #ifndef __HAVE_ARCH_PMDP_CLEAR_FLUSH
128 extern pmd_t
pmdp_clear_flush(struct vm_area_struct
*vma
,
129 unsigned long address
,
133 #ifndef __HAVE_ARCH_PTEP_SET_WRPROTECT
135 static inline void ptep_set_wrprotect(struct mm_struct
*mm
, unsigned long address
, pte_t
*ptep
)
137 pte_t old_pte
= *ptep
;
138 set_pte_at(mm
, address
, ptep
, pte_wrprotect(old_pte
));
142 #ifndef __HAVE_ARCH_PMDP_SET_WRPROTECT
143 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
144 static inline void pmdp_set_wrprotect(struct mm_struct
*mm
,
145 unsigned long address
, pmd_t
*pmdp
)
147 pmd_t old_pmd
= *pmdp
;
148 set_pmd_at(mm
, address
, pmdp
, pmd_wrprotect(old_pmd
));
150 #else /* CONFIG_TRANSPARENT_HUGEPAGE */
151 static inline void pmdp_set_wrprotect(struct mm_struct
*mm
,
152 unsigned long address
, pmd_t
*pmdp
)
156 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
159 #ifndef __HAVE_ARCH_PMDP_SPLITTING_FLUSH
160 extern pmd_t
pmdp_splitting_flush(struct vm_area_struct
*vma
,
161 unsigned long address
,
165 #ifndef __HAVE_ARCH_PTE_SAME
166 static inline int pte_same(pte_t pte_a
, pte_t pte_b
)
168 return pte_val(pte_a
) == pte_val(pte_b
);
172 #ifndef __HAVE_ARCH_PMD_SAME
173 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
174 static inline int pmd_same(pmd_t pmd_a
, pmd_t pmd_b
)
176 return pmd_val(pmd_a
) == pmd_val(pmd_b
);
178 #else /* CONFIG_TRANSPARENT_HUGEPAGE */
179 static inline int pmd_same(pmd_t pmd_a
, pmd_t pmd_b
)
184 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
187 #ifndef __HAVE_ARCH_PAGE_TEST_DIRTY
188 #define page_test_dirty(page) (0)
191 #ifndef __HAVE_ARCH_PAGE_CLEAR_DIRTY
192 #define page_clear_dirty(page, mapped) do { } while (0)
195 #ifndef __HAVE_ARCH_PAGE_TEST_DIRTY
196 #define pte_maybe_dirty(pte) pte_dirty(pte)
198 #define pte_maybe_dirty(pte) (1)
201 #ifndef __HAVE_ARCH_PAGE_TEST_AND_CLEAR_YOUNG
202 #define page_test_and_clear_young(page) (0)
205 #ifndef __HAVE_ARCH_PGD_OFFSET_GATE
206 #define pgd_offset_gate(mm, addr) pgd_offset(mm, addr)
209 #ifndef __HAVE_ARCH_MOVE_PTE
210 #define move_pte(pte, prot, old_addr, new_addr) (pte)
213 #ifndef flush_tlb_fix_spurious_fault
214 #define flush_tlb_fix_spurious_fault(vma, address) flush_tlb_page(vma, address)
217 #ifndef pgprot_noncached
218 #define pgprot_noncached(prot) (prot)
221 #ifndef pgprot_writecombine
222 #define pgprot_writecombine pgprot_noncached
226 * When walking page tables, get the address of the next boundary,
227 * or the end address of the range if that comes earlier. Although no
228 * vma end wraps to 0, rounded up __boundary may wrap to 0 throughout.
231 #define pgd_addr_end(addr, end) \
232 ({ unsigned long __boundary = ((addr) + PGDIR_SIZE) & PGDIR_MASK; \
233 (__boundary - 1 < (end) - 1)? __boundary: (end); \
237 #define pud_addr_end(addr, end) \
238 ({ unsigned long __boundary = ((addr) + PUD_SIZE) & PUD_MASK; \
239 (__boundary - 1 < (end) - 1)? __boundary: (end); \
244 #define pmd_addr_end(addr, end) \
245 ({ unsigned long __boundary = ((addr) + PMD_SIZE) & PMD_MASK; \
246 (__boundary - 1 < (end) - 1)? __boundary: (end); \
251 * When walking page tables, we usually want to skip any p?d_none entries;
252 * and any p?d_bad entries - reporting the error before resetting to none.
253 * Do the tests inline, but report and clear the bad entry in mm/memory.c.
255 void pgd_clear_bad(pgd_t
*);
256 void pud_clear_bad(pud_t
*);
257 void pmd_clear_bad(pmd_t
*);
259 static inline int pgd_none_or_clear_bad(pgd_t
*pgd
)
263 if (unlikely(pgd_bad(*pgd
))) {
270 static inline int pud_none_or_clear_bad(pud_t
*pud
)
274 if (unlikely(pud_bad(*pud
))) {
281 static inline int pmd_none_or_clear_bad(pmd_t
*pmd
)
285 if (unlikely(pmd_bad(*pmd
))) {
292 static inline pte_t
__ptep_modify_prot_start(struct mm_struct
*mm
,
297 * Get the current pte state, but zero it out to make it
298 * non-present, preventing the hardware from asynchronously
301 return ptep_get_and_clear(mm
, addr
, ptep
);
304 static inline void __ptep_modify_prot_commit(struct mm_struct
*mm
,
306 pte_t
*ptep
, pte_t pte
)
309 * The pte is non-present, so there's no hardware state to
312 set_pte_at(mm
, addr
, ptep
, pte
);
315 #ifndef __HAVE_ARCH_PTEP_MODIFY_PROT_TRANSACTION
317 * Start a pte protection read-modify-write transaction, which
318 * protects against asynchronous hardware modifications to the pte.
319 * The intention is not to prevent the hardware from making pte
320 * updates, but to prevent any updates it may make from being lost.
322 * This does not protect against other software modifications of the
323 * pte; the appropriate pte lock must be held over the transation.
325 * Note that this interface is intended to be batchable, meaning that
326 * ptep_modify_prot_commit may not actually update the pte, but merely
327 * queue the update to be done at some later time. The update must be
328 * actually committed before the pte lock is released, however.
330 static inline pte_t
ptep_modify_prot_start(struct mm_struct
*mm
,
334 return __ptep_modify_prot_start(mm
, addr
, ptep
);
338 * Commit an update to a pte, leaving any hardware-controlled bits in
339 * the PTE unmodified.
341 static inline void ptep_modify_prot_commit(struct mm_struct
*mm
,
343 pte_t
*ptep
, pte_t pte
)
345 __ptep_modify_prot_commit(mm
, addr
, ptep
, pte
);
347 #endif /* __HAVE_ARCH_PTEP_MODIFY_PROT_TRANSACTION */
348 #endif /* CONFIG_MMU */
351 * A facility to provide lazy MMU batching. This allows PTE updates and
352 * page invalidations to be delayed until a call to leave lazy MMU mode
353 * is issued. Some architectures may benefit from doing this, and it is
354 * beneficial for both shadow and direct mode hypervisors, which may batch
355 * the PTE updates which happen during this window. Note that using this
356 * interface requires that read hazards be removed from the code. A read
357 * hazard could result in the direct mode hypervisor case, since the actual
358 * write to the page tables may not yet have taken place, so reads though
359 * a raw PTE pointer after it has been modified are not guaranteed to be
360 * up to date. This mode can only be entered and left under the protection of
361 * the page table locks for all page tables which may be modified. In the UP
362 * case, this is required so that preemption is disabled, and in the SMP case,
363 * it must synchronize the delayed page table writes properly on other CPUs.
365 #ifndef __HAVE_ARCH_ENTER_LAZY_MMU_MODE
366 #define arch_enter_lazy_mmu_mode() do {} while (0)
367 #define arch_leave_lazy_mmu_mode() do {} while (0)
368 #define arch_flush_lazy_mmu_mode() do {} while (0)
372 * A facility to provide batching of the reload of page tables and
373 * other process state with the actual context switch code for
374 * paravirtualized guests. By convention, only one of the batched
375 * update (lazy) modes (CPU, MMU) should be active at any given time,
376 * entry should never be nested, and entry and exits should always be
377 * paired. This is for sanity of maintaining and reasoning about the
378 * kernel code. In this case, the exit (end of the context switch) is
379 * in architecture-specific code, and so doesn't need a generic
382 #ifndef __HAVE_ARCH_START_CONTEXT_SWITCH
383 #define arch_start_context_switch(prev) do {} while (0)
386 #ifndef __HAVE_PFNMAP_TRACKING
388 * Interface that can be used by architecture code to keep track of
389 * memory type of pfn mappings (remap_pfn_range, vm_insert_pfn)
391 * track_pfn_vma_new is called when a _new_ pfn mapping is being established
392 * for physical range indicated by pfn and size.
394 static inline int track_pfn_vma_new(struct vm_area_struct
*vma
, pgprot_t
*prot
,
395 unsigned long pfn
, unsigned long size
)
401 * Interface that can be used by architecture code to keep track of
402 * memory type of pfn mappings (remap_pfn_range, vm_insert_pfn)
404 * track_pfn_vma_copy is called when vma that is covering the pfnmap gets
405 * copied through copy_page_range().
407 static inline int track_pfn_vma_copy(struct vm_area_struct
*vma
)
413 * Interface that can be used by architecture code to keep track of
414 * memory type of pfn mappings (remap_pfn_range, vm_insert_pfn)
416 * untrack_pfn_vma is called while unmapping a pfnmap for a region.
417 * untrack can be called for a specific region indicated by pfn and size or
418 * can be for the entire vma (in which case size can be zero).
420 static inline void untrack_pfn_vma(struct vm_area_struct
*vma
,
421 unsigned long pfn
, unsigned long size
)
425 extern int track_pfn_vma_new(struct vm_area_struct
*vma
, pgprot_t
*prot
,
426 unsigned long pfn
, unsigned long size
);
427 extern int track_pfn_vma_copy(struct vm_area_struct
*vma
);
428 extern void untrack_pfn_vma(struct vm_area_struct
*vma
, unsigned long pfn
,
432 #ifndef CONFIG_TRANSPARENT_HUGEPAGE
433 static inline int pmd_trans_huge(pmd_t pmd
)
437 static inline int pmd_trans_splitting(pmd_t pmd
)
441 #ifndef __HAVE_ARCH_PMD_WRITE
442 static inline int pmd_write(pmd_t pmd
)
447 #endif /* __HAVE_ARCH_PMD_WRITE */
450 #endif /* !__ASSEMBLY__ */
452 #endif /* _ASM_GENERIC_PGTABLE_H */