Merge tag 'sparc-for-6.10-tag1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / include / linux / pgtable.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
ca5999fd
MR
2#ifndef _LINUX_PGTABLE_H
3#define _LINUX_PGTABLE_H
1da177e4 4
f25748e3 5#include <linux/pfn.h>
ca5999fd 6#include <asm/pgtable.h>
f25748e3 7
051ddcfe
MWO
8#define PMD_ORDER (PMD_SHIFT - PAGE_SHIFT)
9#define PUD_ORDER (PUD_SHIFT - PAGE_SHIFT)
10
673eae82 11#ifndef __ASSEMBLY__
9535239f 12#ifdef CONFIG_MMU
673eae82 13
fbd71844 14#include <linux/mm_types.h>
187f1882 15#include <linux/bug.h>
e61ce6ad 16#include <linux/errno.h>
5a281062 17#include <asm-generic/pgtable_uffd.h>
de8c8e52 18#include <linux/page_table_check.h>
fbd71844 19
c2febafc
KS
20#if 5 - defined(__PAGETABLE_P4D_FOLDED) - defined(__PAGETABLE_PUD_FOLDED) - \
21 defined(__PAGETABLE_PMD_FOLDED) != CONFIG_PGTABLE_LEVELS
22#error CONFIG_PGTABLE_LEVELS is not consistent with __PAGETABLE_{P4D,PUD,PMD}_FOLDED
235a8f02
KS
23#endif
24
6ee8630e
HD
25/*
26 * On almost all architectures and configurations, 0 can be used as the
27 * upper ceiling to free_pgtables(): on many architectures it has the same
28 * effect as using TASK_SIZE. However, there is one configuration which
29 * must impose a more careful limit, to avoid freeing kernel pgtables.
30 */
31#ifndef USER_PGTABLES_CEILING
32#define USER_PGTABLES_CEILING 0UL
33#endif
fac7757e
AK
34
35/*
36 * This defines the first usable user address. Platforms
37 * can override its value with custom FIRST_USER_ADDRESS
38 * defined in their respective <asm/pgtable.h>.
39 */
40#ifndef FIRST_USER_ADDRESS
41#define FIRST_USER_ADDRESS 0UL
42#endif
1c2f7d14
AK
43
44/*
45 * This defines the generic helper for accessing PMD page
46 * table page. Although platforms can still override this
47 * via their respective <asm/pgtable.h>.
48 */
49#ifndef pmd_pgtable
50#define pmd_pgtable(pmd) pmd_page(pmd)
51#endif
6ee8630e 52
e06d03d5
MWO
53#define pmd_folio(pmd) page_folio(pmd_page(pmd))
54
974b9b2c
MR
55/*
56 * A page table page can be thought of an array like this: pXd_t[PTRS_PER_PxD]
57 *
58 * The pXx_index() functions return the index of the entry in the page
59 * table page which would control the given virtual address
60 *
61 * As these functions may be used by the same code for different levels of
62 * the page table folding, they are always available, regardless of
63 * CONFIG_PGTABLE_LEVELS value. For the folded levels they simply return 0
64 * because in such cases PTRS_PER_PxD equals 1.
65 */
66
67static inline unsigned long pte_index(unsigned long address)
68{
69 return (address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1);
70}
71
72#ifndef pmd_index
73static inline unsigned long pmd_index(unsigned long address)
74{
75 return (address >> PMD_SHIFT) & (PTRS_PER_PMD - 1);
76}
77#define pmd_index pmd_index
78#endif
79
80#ifndef pud_index
81static inline unsigned long pud_index(unsigned long address)
82{
83 return (address >> PUD_SHIFT) & (PTRS_PER_PUD - 1);
84}
85#define pud_index pud_index
86#endif
87
88#ifndef pgd_index
89/* Must be a compile-time constant, so implement it as a macro */
90#define pgd_index(a) (((a) >> PGDIR_SHIFT) & (PTRS_PER_PGD - 1))
91#endif
92
93#ifndef pte_offset_kernel
94static inline pte_t *pte_offset_kernel(pmd_t *pmd, unsigned long address)
95{
96 return (pte_t *)pmd_page_vaddr(*pmd) + pte_index(address);
97}
98#define pte_offset_kernel pte_offset_kernel
99#endif
100
0d940a9b
HD
101#ifdef CONFIG_HIGHPTE
102#define __pte_map(pmd, address) \
103 ((pte_t *)kmap_local_page(pmd_page(*(pmd))) + pte_index((address)))
104#define pte_unmap(pte) do { \
105 kunmap_local((pte)); \
a349d72f 106 rcu_read_unlock(); \
0d940a9b 107} while (0)
974b9b2c 108#else
0d940a9b
HD
109static inline pte_t *__pte_map(pmd_t *pmd, unsigned long address)
110{
111 return pte_offset_kernel(pmd, address);
112}
113static inline void pte_unmap(pte_t *pte)
114{
a349d72f 115 rcu_read_unlock();
0d940a9b 116}
974b9b2c
MR
117#endif
118
13cf577e
HD
119void pte_free_defer(struct mm_struct *mm, pgtable_t pgtable);
120
974b9b2c
MR
121/* Find an entry in the second-level page table.. */
122#ifndef pmd_offset
123static inline pmd_t *pmd_offset(pud_t *pud, unsigned long address)
124{
9cf6fa24 125 return pud_pgtable(*pud) + pmd_index(address);
974b9b2c
MR
126}
127#define pmd_offset pmd_offset
128#endif
129
130#ifndef pud_offset
131static inline pud_t *pud_offset(p4d_t *p4d, unsigned long address)
132{
dc4875f0 133 return p4d_pgtable(*p4d) + pud_index(address);
974b9b2c
MR
134}
135#define pud_offset pud_offset
136#endif
137
138static inline pgd_t *pgd_offset_pgd(pgd_t *pgd, unsigned long address)
139{
140 return (pgd + pgd_index(address));
141};
142
143/*
144 * a shortcut to get a pgd_t in a given mm
145 */
146#ifndef pgd_offset
147#define pgd_offset(mm, address) pgd_offset_pgd((mm)->pgd, (address))
148#endif
149
150/*
151 * a shortcut which implies the use of the kernel's pgd, instead
152 * of a process's
153 */
154#define pgd_offset_k(address) pgd_offset(&init_mm, (address))
155
e05c7b1f
MR
156/*
157 * In many cases it is known that a virtual address is mapped at PMD or PTE
158 * level, so instead of traversing all the page table levels, we can get a
159 * pointer to the PMD entry in user or kernel page table or translate a virtual
160 * address to the pointer in the PTE in the kernel page tables with simple
161 * helpers.
162 */
163static inline pmd_t *pmd_off(struct mm_struct *mm, unsigned long va)
164{
165 return pmd_offset(pud_offset(p4d_offset(pgd_offset(mm, va), va), va), va);
166}
167
168static inline pmd_t *pmd_off_k(unsigned long va)
169{
170 return pmd_offset(pud_offset(p4d_offset(pgd_offset_k(va), va), va), va);
171}
172
173static inline pte_t *virt_to_kpte(unsigned long vaddr)
174{
175 pmd_t *pmd = pmd_off_k(vaddr);
176
177 return pmd_none(*pmd) ? NULL : pte_offset_kernel(pmd, vaddr);
178}
179
6617da8f
JG
180#ifndef pmd_young
181static inline int pmd_young(pmd_t pmd)
182{
183 return 0;
184}
185#endif
186
533c67e6
KH
187#ifndef pmd_dirty
188static inline int pmd_dirty(pmd_t pmd)
189{
190 return 0;
191}
192#endif
193
bcc6cc83
MWO
194/*
195 * A facility to provide lazy MMU batching. This allows PTE updates and
196 * page invalidations to be delayed until a call to leave lazy MMU mode
197 * is issued. Some architectures may benefit from doing this, and it is
198 * beneficial for both shadow and direct mode hypervisors, which may batch
199 * the PTE updates which happen during this window. Note that using this
200 * interface requires that read hazards be removed from the code. A read
201 * hazard could result in the direct mode hypervisor case, since the actual
202 * write to the page tables may not yet have taken place, so reads though
203 * a raw PTE pointer after it has been modified are not guaranteed to be
204 * up to date. This mode can only be entered and left under the protection of
205 * the page table locks for all page tables which may be modified. In the UP
206 * case, this is required so that preemption is disabled, and in the SMP case,
207 * it must synchronize the delayed page table writes properly on other CPUs.
208 */
209#ifndef __HAVE_ARCH_ENTER_LAZY_MMU_MODE
210#define arch_enter_lazy_mmu_mode() do {} while (0)
211#define arch_leave_lazy_mmu_mode() do {} while (0)
212#define arch_flush_lazy_mmu_mode() do {} while (0)
213#endif
214
c6ec76a2
RR
215#ifndef pte_batch_hint
216/**
217 * pte_batch_hint - Number of pages that can be added to batch without scanning.
218 * @ptep: Page table pointer for the entry.
219 * @pte: Page table entry.
220 *
221 * Some architectures know that a set of contiguous ptes all map the same
222 * contiguous memory with the same permissions. In this case, it can provide a
223 * hint to aid pte batching without the core code needing to scan every pte.
224 *
225 * An architecture implementation may ignore the PTE accessed state. Further,
226 * the dirty state must apply atomically to all the PTEs described by the hint.
227 *
228 * May be overridden by the architecture, else pte_batch_hint is always 1.
229 */
230static inline unsigned int pte_batch_hint(pte_t *ptep, pte_t pte)
231{
232 return 1;
233}
234#endif
235
583ceaaa
RR
236#ifndef pte_advance_pfn
237static inline pte_t pte_advance_pfn(pte_t pte, unsigned long nr)
ce60f27b 238{
583ceaaa 239 return __pte(pte_val(pte) + (nr << PFN_PTE_SHIFT));
ce60f27b
MWO
240}
241#endif
242
583ceaaa 243#define pte_next_pfn(pte) pte_advance_pfn(pte, 1)
583ceaaa 244
6cdfa1d5 245#ifndef set_ptes
bcc6cc83
MWO
246/**
247 * set_ptes - Map consecutive pages to a contiguous range of addresses.
248 * @mm: Address space to map the pages into.
249 * @addr: Address to map the first page at.
250 * @ptep: Page table pointer for the first entry.
251 * @pte: Page table entry for the first page.
252 * @nr: Number of pages to map.
253 *
6280d731
RR
254 * When nr==1, initial state of pte may be present or not present, and new state
255 * may be present or not present. When nr>1, initial state of all ptes must be
256 * not present, and new state must be present.
257 *
bcc6cc83
MWO
258 * May be overridden by the architecture, or the architecture can define
259 * set_pte() and PFN_PTE_SHIFT.
260 *
261 * Context: The caller holds the page table lock. The pages all belong
262 * to the same folio. The PTEs are all in the same PMD.
263 */
264static inline void set_ptes(struct mm_struct *mm, unsigned long addr,
265 pte_t *ptep, pte_t pte, unsigned int nr)
266{
267 page_table_check_ptes_set(mm, ptep, pte, nr);
268
269 arch_enter_lazy_mmu_mode();
270 for (;;) {
271 set_pte(ptep, pte);
272 if (--nr == 0)
273 break;
274 ptep++;
ce60f27b 275 pte = pte_next_pfn(pte);
bcc6cc83
MWO
276 }
277 arch_leave_lazy_mmu_mode();
278}
bcc6cc83 279#endif
bcc6cc83 280#define set_pte_at(mm, addr, ptep, pte) set_ptes(mm, addr, ptep, pte, 1)
bcc6cc83 281
1da177e4 282#ifndef __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
e2cda322
AA
283extern int ptep_set_access_flags(struct vm_area_struct *vma,
284 unsigned long address, pte_t *ptep,
285 pte_t entry, int dirty);
286#endif
287
288#ifndef __HAVE_ARCH_PMDP_SET_ACCESS_FLAGS
bd5e88ad 289#ifdef CONFIG_TRANSPARENT_HUGEPAGE
e2cda322
AA
290extern int pmdp_set_access_flags(struct vm_area_struct *vma,
291 unsigned long address, pmd_t *pmdp,
292 pmd_t entry, int dirty);
a00cc7d9
MW
293extern int pudp_set_access_flags(struct vm_area_struct *vma,
294 unsigned long address, pud_t *pudp,
295 pud_t entry, int dirty);
bd5e88ad
VG
296#else
297static inline int pmdp_set_access_flags(struct vm_area_struct *vma,
298 unsigned long address, pmd_t *pmdp,
299 pmd_t entry, int dirty)
300{
301 BUILD_BUG();
302 return 0;
303}
a00cc7d9
MW
304static inline int pudp_set_access_flags(struct vm_area_struct *vma,
305 unsigned long address, pud_t *pudp,
306 pud_t entry, int dirty)
307{
308 BUILD_BUG();
309 return 0;
310}
bd5e88ad 311#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
1da177e4
LT
312#endif
313
6c1d2a07
RR
314#ifndef ptep_get
315static inline pte_t ptep_get(pte_t *ptep)
316{
317 return READ_ONCE(*ptep);
318}
319#endif
320
321#ifndef pmdp_get
322static inline pmd_t pmdp_get(pmd_t *pmdp)
323{
324 return READ_ONCE(*pmdp);
325}
326#endif
327
eba2591d
AG
328#ifndef pudp_get
329static inline pud_t pudp_get(pud_t *pudp)
330{
331 return READ_ONCE(*pudp);
332}
333#endif
334
335#ifndef p4dp_get
336static inline p4d_t p4dp_get(p4d_t *p4dp)
337{
338 return READ_ONCE(*p4dp);
339}
340#endif
341
342#ifndef pgdp_get
343static inline pgd_t pgdp_get(pgd_t *pgdp)
344{
345 return READ_ONCE(*pgdp);
346}
347#endif
348
1da177e4 349#ifndef __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
e2cda322
AA
350static inline int ptep_test_and_clear_young(struct vm_area_struct *vma,
351 unsigned long address,
352 pte_t *ptep)
353{
c33c7948 354 pte_t pte = ptep_get(ptep);
e2cda322
AA
355 int r = 1;
356 if (!pte_young(pte))
357 r = 0;
358 else
359 set_pte_at(vma->vm_mm, address, ptep, pte_mkold(pte));
360 return r;
361}
362#endif
363
364#ifndef __HAVE_ARCH_PMDP_TEST_AND_CLEAR_YOUNG
eed9a328 365#if defined(CONFIG_TRANSPARENT_HUGEPAGE) || defined(CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG)
e2cda322
AA
366static inline int pmdp_test_and_clear_young(struct vm_area_struct *vma,
367 unsigned long address,
368 pmd_t *pmdp)
369{
370 pmd_t pmd = *pmdp;
371 int r = 1;
372 if (!pmd_young(pmd))
373 r = 0;
374 else
375 set_pmd_at(vma->vm_mm, address, pmdp, pmd_mkold(pmd));
376 return r;
377}
bd5e88ad 378#else
e2cda322
AA
379static inline int pmdp_test_and_clear_young(struct vm_area_struct *vma,
380 unsigned long address,
381 pmd_t *pmdp)
382{
bd5e88ad 383 BUILD_BUG();
e2cda322
AA
384 return 0;
385}
eed9a328 386#endif /* CONFIG_TRANSPARENT_HUGEPAGE || CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG */
1da177e4
LT
387#endif
388
389#ifndef __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
e2cda322
AA
390int ptep_clear_flush_young(struct vm_area_struct *vma,
391 unsigned long address, pte_t *ptep);
392#endif
393
394#ifndef __HAVE_ARCH_PMDP_CLEAR_YOUNG_FLUSH
bd5e88ad
VG
395#ifdef CONFIG_TRANSPARENT_HUGEPAGE
396extern int pmdp_clear_flush_young(struct vm_area_struct *vma,
397 unsigned long address, pmd_t *pmdp);
398#else
399/*
400 * Despite relevant to THP only, this API is called from generic rmap code
401 * under PageTransHuge(), hence needs a dummy implementation for !THP
402 */
403static inline int pmdp_clear_flush_young(struct vm_area_struct *vma,
404 unsigned long address, pmd_t *pmdp)
405{
406 BUILD_BUG();
407 return 0;
408}
409#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
1da177e4
LT
410#endif
411
4aaf269c
JG
412#ifndef arch_has_hw_nonleaf_pmd_young
413/*
414 * Return whether the accessed bit in non-leaf PMD entries is supported on the
415 * local CPU.
416 */
417static inline bool arch_has_hw_nonleaf_pmd_young(void)
418{
419 return IS_ENABLED(CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG);
420}
421#endif
422
e1fd09e3
YZ
423#ifndef arch_has_hw_pte_young
424/*
425 * Return whether the accessed bit is supported on the local CPU.
426 *
427 * This stub assumes accessing through an old PTE triggers a page fault.
428 * Architectures that automatically set the access bit should overwrite it.
429 */
430static inline bool arch_has_hw_pte_young(void)
431{
71ce1ab5 432 return IS_ENABLED(CONFIG_ARCH_HAS_HW_PTE_YOUNG);
e1fd09e3
YZ
433}
434#endif
435
e5136e87
RE
436#ifndef arch_check_zapped_pte
437static inline void arch_check_zapped_pte(struct vm_area_struct *vma,
438 pte_t pte)
439{
440}
441#endif
442
443#ifndef arch_check_zapped_pmd
444static inline void arch_check_zapped_pmd(struct vm_area_struct *vma,
445 pmd_t pmd)
446{
447}
448#endif
449
1da177e4 450#ifndef __HAVE_ARCH_PTEP_GET_AND_CLEAR
e2cda322
AA
451static inline pte_t ptep_get_and_clear(struct mm_struct *mm,
452 unsigned long address,
453 pte_t *ptep)
454{
c33c7948 455 pte_t pte = ptep_get(ptep);
e2cda322 456 pte_clear(mm, address, ptep);
aa232204 457 page_table_check_pte_clear(mm, pte);
e2cda322
AA
458 return pte;
459}
460#endif
461
1b68112c
LY
462#ifndef clear_young_dirty_ptes
463/**
464 * clear_young_dirty_ptes - Mark PTEs that map consecutive pages of the
465 * same folio as old/clean.
466 * @mm: Address space the pages are mapped into.
467 * @addr: Address the first page is mapped at.
468 * @ptep: Page table pointer for the first entry.
469 * @nr: Number of entries to mark old/clean.
470 * @flags: Flags to modify the PTE batch semantics.
471 *
472 * May be overridden by the architecture; otherwise, implemented by
473 * get_and_clear/modify/set for each pte in the range.
474 *
475 * Note that PTE bits in the PTE range besides the PFN can differ. For example,
476 * some PTEs might be write-protected.
477 *
478 * Context: The caller holds the page table lock. The PTEs map consecutive
479 * pages that belong to the same folio. The PTEs are all in the same PMD.
480 */
481static inline void clear_young_dirty_ptes(struct vm_area_struct *vma,
482 unsigned long addr, pte_t *ptep,
483 unsigned int nr, cydp_t flags)
484{
485 pte_t pte;
486
487 for (;;) {
488 if (flags == CYDP_CLEAR_YOUNG)
489 ptep_test_and_clear_young(vma, addr, ptep);
490 else {
491 pte = ptep_get_and_clear(vma->vm_mm, addr, ptep);
492 if (flags & CYDP_CLEAR_YOUNG)
493 pte = pte_mkold(pte);
494 if (flags & CYDP_CLEAR_DIRTY)
495 pte = pte_mkclean(pte);
496 set_pte_at(vma->vm_mm, addr, ptep, pte);
497 }
498 if (--nr == 0)
499 break;
500 ptep++;
501 addr += PAGE_SIZE;
502 }
503}
504#endif
505
de8c8e52
TT
506static inline void ptep_clear(struct mm_struct *mm, unsigned long addr,
507 pte_t *ptep)
508{
509 ptep_get_and_clear(mm, addr, ptep);
510}
de8c8e52 511
6ca297d4 512#ifdef CONFIG_GUP_GET_PXX_LOW_HIGH
2a4a06da 513/*
93b3037a
PZ
514 * For walking the pagetables without holding any locks. Some architectures
515 * (eg x86-32 PAE) cannot load the entries atomically without using expensive
516 * instructions. We are guaranteed that a PTE will only either go from not
517 * present to present, or present to not present -- it will not switch to a
518 * completely different present page without a TLB flush inbetween; which we
519 * are blocking by holding interrupts off.
2a4a06da
PZ
520 *
521 * Setting ptes from not present to present goes:
522 *
523 * ptep->pte_high = h;
524 * smp_wmb();
525 * ptep->pte_low = l;
526 *
527 * And present to not present goes:
528 *
529 * ptep->pte_low = 0;
530 * smp_wmb();
531 * ptep->pte_high = 0;
532 *
533 * We must ensure here that the load of pte_low sees 'l' IFF pte_high sees 'h'.
534 * We load pte_high *after* loading pte_low, which ensures we don't see an older
535 * value of pte_high. *Then* we recheck pte_low, which ensures that we haven't
536 * picked up a changed pte high. We might have gotten rubbish values from
537 * pte_low and pte_high, but we are guaranteed that pte_low will not have the
538 * present bit set *unless* it is 'l'. Because get_user_pages_fast() only
539 * operates on present ptes we're safe.
540 */
541static inline pte_t ptep_get_lockless(pte_t *ptep)
542{
543 pte_t pte;
544
545 do {
546 pte.pte_low = ptep->pte_low;
547 smp_rmb();
548 pte.pte_high = ptep->pte_high;
549 smp_rmb();
550 } while (unlikely(pte.pte_low != ptep->pte_low));
551
552 return pte;
553}
024d232a
PZ
554#define ptep_get_lockless ptep_get_lockless
555
556#if CONFIG_PGTABLE_LEVELS > 2
557static inline pmd_t pmdp_get_lockless(pmd_t *pmdp)
558{
559 pmd_t pmd;
560
561 do {
562 pmd.pmd_low = pmdp->pmd_low;
563 smp_rmb();
564 pmd.pmd_high = pmdp->pmd_high;
565 smp_rmb();
566 } while (unlikely(pmd.pmd_low != pmdp->pmd_low));
567
568 return pmd;
569}
570#define pmdp_get_lockless pmdp_get_lockless
146b42e0 571#define pmdp_get_lockless_sync() tlb_remove_table_sync_one()
024d232a 572#endif /* CONFIG_PGTABLE_LEVELS > 2 */
6ca297d4 573#endif /* CONFIG_GUP_GET_PXX_LOW_HIGH */
024d232a 574
2a4a06da
PZ
575/*
576 * We require that the PTE can be read atomically.
577 */
024d232a 578#ifndef ptep_get_lockless
2a4a06da
PZ
579static inline pte_t ptep_get_lockless(pte_t *ptep)
580{
581 return ptep_get(ptep);
582}
024d232a
PZ
583#endif
584
585#ifndef pmdp_get_lockless
586static inline pmd_t pmdp_get_lockless(pmd_t *pmdp)
587{
588 return pmdp_get(pmdp);
589}
146b42e0
HD
590static inline void pmdp_get_lockless_sync(void)
591{
592}
024d232a 593#endif
2a4a06da 594
e2cda322 595#ifdef CONFIG_TRANSPARENT_HUGEPAGE
a00cc7d9 596#ifndef __HAVE_ARCH_PMDP_HUGE_GET_AND_CLEAR
8809aa2d
AK
597static inline pmd_t pmdp_huge_get_and_clear(struct mm_struct *mm,
598 unsigned long address,
599 pmd_t *pmdp)
e2cda322
AA
600{
601 pmd_t pmd = *pmdp;
de8c8e52 602
2d28a227 603 pmd_clear(pmdp);
1831414c 604 page_table_check_pmd_clear(mm, pmd);
de8c8e52 605
e2cda322 606 return pmd;
49b24d6b 607}
a00cc7d9
MW
608#endif /* __HAVE_ARCH_PMDP_HUGE_GET_AND_CLEAR */
609#ifndef __HAVE_ARCH_PUDP_HUGE_GET_AND_CLEAR
610static inline pud_t pudp_huge_get_and_clear(struct mm_struct *mm,
611 unsigned long address,
612 pud_t *pudp)
613{
614 pud_t pud = *pudp;
615
616 pud_clear(pudp);
931c38e1 617 page_table_check_pud_clear(mm, pud);
de8c8e52 618
a00cc7d9
MW
619 return pud;
620}
621#endif /* __HAVE_ARCH_PUDP_HUGE_GET_AND_CLEAR */
e2cda322 622#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
1da177e4 623
fcbe08d6 624#ifdef CONFIG_TRANSPARENT_HUGEPAGE
a00cc7d9 625#ifndef __HAVE_ARCH_PMDP_HUGE_GET_AND_CLEAR_FULL
93a98695 626static inline pmd_t pmdp_huge_get_and_clear_full(struct vm_area_struct *vma,
fcbe08d6
MS
627 unsigned long address, pmd_t *pmdp,
628 int full)
629{
93a98695 630 return pmdp_huge_get_and_clear(vma->vm_mm, address, pmdp);
fcbe08d6 631}
fcbe08d6
MS
632#endif
633
a00cc7d9 634#ifndef __HAVE_ARCH_PUDP_HUGE_GET_AND_CLEAR_FULL
f32928ab 635static inline pud_t pudp_huge_get_and_clear_full(struct vm_area_struct *vma,
a00cc7d9
MW
636 unsigned long address, pud_t *pudp,
637 int full)
638{
f32928ab 639 return pudp_huge_get_and_clear(vma->vm_mm, address, pudp);
a00cc7d9
MW
640}
641#endif
642#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
643
a600388d 644#ifndef __HAVE_ARCH_PTEP_GET_AND_CLEAR_FULL
e2cda322
AA
645static inline pte_t ptep_get_and_clear_full(struct mm_struct *mm,
646 unsigned long address, pte_t *ptep,
647 int full)
648{
d3a89233 649 return ptep_get_and_clear(mm, address, ptep);
e2cda322 650}
a600388d
ZA
651#endif
652
10ebac4f
DH
653#ifndef get_and_clear_full_ptes
654/**
655 * get_and_clear_full_ptes - Clear present PTEs that map consecutive pages of
656 * the same folio, collecting dirty/accessed bits.
657 * @mm: Address space the pages are mapped into.
658 * @addr: Address the first page is mapped at.
659 * @ptep: Page table pointer for the first entry.
660 * @nr: Number of entries to clear.
661 * @full: Whether we are clearing a full mm.
662 *
663 * May be overridden by the architecture; otherwise, implemented as a simple
664 * loop over ptep_get_and_clear_full(), merging dirty/accessed bits into the
665 * returned PTE.
666 *
667 * Note that PTE bits in the PTE range besides the PFN can differ. For example,
668 * some PTEs might be write-protected.
669 *
670 * Context: The caller holds the page table lock. The PTEs map consecutive
671 * pages that belong to the same folio. The PTEs are all in the same PMD.
672 */
673static inline pte_t get_and_clear_full_ptes(struct mm_struct *mm,
674 unsigned long addr, pte_t *ptep, unsigned int nr, int full)
675{
676 pte_t pte, tmp_pte;
677
678 pte = ptep_get_and_clear_full(mm, addr, ptep, full);
679 while (--nr) {
680 ptep++;
681 addr += PAGE_SIZE;
682 tmp_pte = ptep_get_and_clear_full(mm, addr, ptep, full);
683 if (pte_dirty(tmp_pte))
684 pte = pte_mkdirty(pte);
685 if (pte_young(tmp_pte))
686 pte = pte_mkyoung(pte);
687 }
688 return pte;
689}
690#endif
691
692#ifndef clear_full_ptes
693/**
694 * clear_full_ptes - Clear present PTEs that map consecutive pages of the same
695 * folio.
696 * @mm: Address space the pages are mapped into.
697 * @addr: Address the first page is mapped at.
698 * @ptep: Page table pointer for the first entry.
699 * @nr: Number of entries to clear.
700 * @full: Whether we are clearing a full mm.
701 *
702 * May be overridden by the architecture; otherwise, implemented as a simple
703 * loop over ptep_get_and_clear_full().
704 *
705 * Note that PTE bits in the PTE range besides the PFN can differ. For example,
706 * some PTEs might be write-protected.
707 *
708 * Context: The caller holds the page table lock. The PTEs map consecutive
709 * pages that belong to the same folio. The PTEs are all in the same PMD.
710 */
711static inline void clear_full_ptes(struct mm_struct *mm, unsigned long addr,
712 pte_t *ptep, unsigned int nr, int full)
713{
714 for (;;) {
715 ptep_get_and_clear_full(mm, addr, ptep, full);
716 if (--nr == 0)
717 break;
718 ptep++;
719 addr += PAGE_SIZE;
720 }
721}
722#endif
7df67697
BM
723
724/*
725 * If two threads concurrently fault at the same page, the thread that
726 * won the race updates the PTE and its local TLB/Cache. The other thread
727 * gives up, simply does nothing, and continues; on architectures where
728 * software can update TLB, local TLB can be updated here to avoid next page
729 * fault. This function updates TLB only, do nothing with cache or others.
730 * It is the difference with function update_mmu_cache.
731 */
732#ifndef __HAVE_ARCH_UPDATE_MMU_TLB
733static inline void update_mmu_tlb(struct vm_area_struct *vma,
734 unsigned long address, pte_t *ptep)
735{
736}
737#define __HAVE_ARCH_UPDATE_MMU_TLB
738#endif
739
9888a1ca
ZA
740/*
741 * Some architectures may be able to avoid expensive synchronization
742 * primitives when modifications are made to PTE's which are already
743 * not present, or in the process of an address space destruction.
744 */
745#ifndef __HAVE_ARCH_PTE_CLEAR_NOT_PRESENT_FULL
e2cda322
AA
746static inline void pte_clear_not_present_full(struct mm_struct *mm,
747 unsigned long address,
748 pte_t *ptep,
749 int full)
750{
751 pte_clear(mm, address, ptep);
752}
a600388d
ZA
753#endif
754
a62fb92a
RR
755#ifndef clear_not_present_full_ptes
756/**
757 * clear_not_present_full_ptes - Clear multiple not present PTEs which are
758 * consecutive in the pgtable.
759 * @mm: Address space the ptes represent.
760 * @addr: Address of the first pte.
761 * @ptep: Page table pointer for the first entry.
762 * @nr: Number of entries to clear.
763 * @full: Whether we are clearing a full mm.
764 *
765 * May be overridden by the architecture; otherwise, implemented as a simple
766 * loop over pte_clear_not_present_full().
767 *
768 * Context: The caller holds the page table lock. The PTEs are all not present.
769 * The PTEs are all in the same PMD.
770 */
771static inline void clear_not_present_full_ptes(struct mm_struct *mm,
772 unsigned long addr, pte_t *ptep, unsigned int nr, int full)
773{
774 for (;;) {
775 pte_clear_not_present_full(mm, addr, ptep, full);
776 if (--nr == 0)
777 break;
778 ptep++;
779 addr += PAGE_SIZE;
780 }
781}
782#endif
783
1da177e4 784#ifndef __HAVE_ARCH_PTEP_CLEAR_FLUSH
e2cda322
AA
785extern pte_t ptep_clear_flush(struct vm_area_struct *vma,
786 unsigned long address,
787 pte_t *ptep);
788#endif
789
8809aa2d
AK
790#ifndef __HAVE_ARCH_PMDP_HUGE_CLEAR_FLUSH
791extern pmd_t pmdp_huge_clear_flush(struct vm_area_struct *vma,
e2cda322
AA
792 unsigned long address,
793 pmd_t *pmdp);
a00cc7d9
MW
794extern pud_t pudp_huge_clear_flush(struct vm_area_struct *vma,
795 unsigned long address,
796 pud_t *pudp);
1da177e4
LT
797#endif
798
2f0584f3 799#ifndef pte_mkwrite
161e393c 800static inline pte_t pte_mkwrite(pte_t pte, struct vm_area_struct *vma)
2f0584f3
RE
801{
802 return pte_mkwrite_novma(pte);
803}
804#endif
805
806#if defined(CONFIG_ARCH_WANT_PMD_MKWRITE) && !defined(pmd_mkwrite)
161e393c 807static inline pmd_t pmd_mkwrite(pmd_t pmd, struct vm_area_struct *vma)
2f0584f3
RE
808{
809 return pmd_mkwrite_novma(pmd);
810}
811#endif
812
1da177e4 813#ifndef __HAVE_ARCH_PTEP_SET_WRPROTECT
8c65b4a6 814struct mm_struct;
1da177e4
LT
815static inline void ptep_set_wrprotect(struct mm_struct *mm, unsigned long address, pte_t *ptep)
816{
c33c7948 817 pte_t old_pte = ptep_get(ptep);
1da177e4
LT
818 set_pte_at(mm, address, ptep, pte_wrprotect(old_pte));
819}
820#endif
821
f8d93776
DH
822#ifndef wrprotect_ptes
823/**
824 * wrprotect_ptes - Write-protect PTEs that map consecutive pages of the same
825 * folio.
826 * @mm: Address space the pages are mapped into.
827 * @addr: Address the first page is mapped at.
828 * @ptep: Page table pointer for the first entry.
829 * @nr: Number of entries to write-protect.
830 *
831 * May be overridden by the architecture; otherwise, implemented as a simple
832 * loop over ptep_set_wrprotect().
833 *
834 * Note that PTE bits in the PTE range besides the PFN can differ. For example,
835 * some PTEs might be write-protected.
836 *
837 * Context: The caller holds the page table lock. The PTEs map consecutive
838 * pages that belong to the same folio. The PTEs are all in the same PMD.
839 */
840static inline void wrprotect_ptes(struct mm_struct *mm, unsigned long addr,
841 pte_t *ptep, unsigned int nr)
842{
843 for (;;) {
844 ptep_set_wrprotect(mm, addr, ptep);
845 if (--nr == 0)
846 break;
847 ptep++;
848 addr += PAGE_SIZE;
849 }
850}
851#endif
852
44bf431b
BM
853/*
854 * On some architectures hardware does not set page access bit when accessing
2eb70aab 855 * memory page, it is responsibility of software setting this bit. It brings
44bf431b
BM
856 * out extra page fault penalty to track page access bit. For optimization page
857 * access bit can be set during all page fault flow on these arches.
858 * To be differentiate with macro pte_mkyoung, this macro is used on platforms
859 * where software maintains page access bit.
860 */
50c25ee9
TB
861#ifndef pte_sw_mkyoung
862static inline pte_t pte_sw_mkyoung(pte_t pte)
863{
864 return pte;
865}
866#define pte_sw_mkyoung pte_sw_mkyoung
867#endif
868
e2cda322
AA
869#ifndef __HAVE_ARCH_PMDP_SET_WRPROTECT
870#ifdef CONFIG_TRANSPARENT_HUGEPAGE
871static inline void pmdp_set_wrprotect(struct mm_struct *mm,
872 unsigned long address, pmd_t *pmdp)
873{
874 pmd_t old_pmd = *pmdp;
875 set_pmd_at(mm, address, pmdp, pmd_wrprotect(old_pmd));
876}
bd5e88ad 877#else
e2cda322
AA
878static inline void pmdp_set_wrprotect(struct mm_struct *mm,
879 unsigned long address, pmd_t *pmdp)
880{
bd5e88ad 881 BUILD_BUG();
e2cda322
AA
882}
883#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
884#endif
a00cc7d9
MW
885#ifndef __HAVE_ARCH_PUDP_SET_WRPROTECT
886#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
54a948a1 887#ifdef CONFIG_TRANSPARENT_HUGEPAGE
a00cc7d9
MW
888static inline void pudp_set_wrprotect(struct mm_struct *mm,
889 unsigned long address, pud_t *pudp)
890{
891 pud_t old_pud = *pudp;
892
893 set_pud_at(mm, address, pudp, pud_wrprotect(old_pud));
894}
895#else
896static inline void pudp_set_wrprotect(struct mm_struct *mm,
897 unsigned long address, pud_t *pudp)
898{
899 BUILD_BUG();
900}
54a948a1 901#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
a00cc7d9
MW
902#endif /* CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
903#endif
e2cda322 904
15a25b2e
AK
905#ifndef pmdp_collapse_flush
906#ifdef CONFIG_TRANSPARENT_HUGEPAGE
f28b6ff8
AK
907extern pmd_t pmdp_collapse_flush(struct vm_area_struct *vma,
908 unsigned long address, pmd_t *pmdp);
15a25b2e
AK
909#else
910static inline pmd_t pmdp_collapse_flush(struct vm_area_struct *vma,
911 unsigned long address,
912 pmd_t *pmdp)
913{
914 BUILD_BUG();
915 return *pmdp;
916}
917#define pmdp_collapse_flush pmdp_collapse_flush
918#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
919#endif
920
e3ebcf64 921#ifndef __HAVE_ARCH_PGTABLE_DEPOSIT
6b0b50b0
AK
922extern void pgtable_trans_huge_deposit(struct mm_struct *mm, pmd_t *pmdp,
923 pgtable_t pgtable);
e3ebcf64
GS
924#endif
925
926#ifndef __HAVE_ARCH_PGTABLE_WITHDRAW
6b0b50b0 927extern pgtable_t pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp);
e3ebcf64
GS
928#endif
929
feda5c39
HD
930#ifndef arch_needs_pgtable_deposit
931#define arch_needs_pgtable_deposit() (false)
932#endif
933
c58f0bb7
KS
934#ifdef CONFIG_TRANSPARENT_HUGEPAGE
935/*
936 * This is an implementation of pmdp_establish() that is only suitable for an
937 * architecture that doesn't have hardware dirty/accessed bits. In this case we
2eb70aab 938 * can't race with CPU which sets these bits and non-atomic approach is fine.
c58f0bb7
KS
939 */
940static inline pmd_t generic_pmdp_establish(struct vm_area_struct *vma,
941 unsigned long address, pmd_t *pmdp, pmd_t pmd)
942{
943 pmd_t old_pmd = *pmdp;
944 set_pmd_at(vma->vm_mm, address, pmdp, pmd);
945 return old_pmd;
946}
947#endif
948
46dcde73 949#ifndef __HAVE_ARCH_PMDP_INVALIDATE
d52605d7 950extern pmd_t pmdp_invalidate(struct vm_area_struct *vma, unsigned long address,
46dcde73
GS
951 pmd_t *pmdp);
952#endif
953
4f831457
NA
954#ifndef __HAVE_ARCH_PMDP_INVALIDATE_AD
955
956/*
957 * pmdp_invalidate_ad() invalidates the PMD while changing a transparent
958 * hugepage mapping in the page tables. This function is similar to
959 * pmdp_invalidate(), but should only be used if the access and dirty bits would
960 * not be cleared by the software in the new PMD value. The function ensures
961 * that hardware changes of the access and dirty bits updates would not be lost.
962 *
963 * Doing so can allow in certain architectures to avoid a TLB flush in most
964 * cases. Yet, another TLB flush might be necessary later if the PMD update
965 * itself requires such flush (e.g., if protection was set to be stricter). Yet,
966 * even when a TLB flush is needed because of the update, the caller may be able
967 * to batch these TLB flushing operations, so fewer TLB flush operations are
968 * needed.
969 */
970extern pmd_t pmdp_invalidate_ad(struct vm_area_struct *vma,
971 unsigned long address, pmd_t *pmdp);
972#endif
973
1da177e4 974#ifndef __HAVE_ARCH_PTE_SAME
e2cda322
AA
975static inline int pte_same(pte_t pte_a, pte_t pte_b)
976{
977 return pte_val(pte_a) == pte_val(pte_b);
978}
979#endif
980
45961722
KW
981#ifndef __HAVE_ARCH_PTE_UNUSED
982/*
983 * Some architectures provide facilities to virtualization guests
984 * so that they can flag allocated pages as unused. This allows the
985 * host to transparently reclaim unused pages. This function returns
986 * whether the pte's page is unused.
987 */
988static inline int pte_unused(pte_t pte)
989{
990 return 0;
991}
992#endif
993
e7884f8e
KS
994#ifndef pte_access_permitted
995#define pte_access_permitted(pte, write) \
996 (pte_present(pte) && (!(write) || pte_write(pte)))
997#endif
998
999#ifndef pmd_access_permitted
1000#define pmd_access_permitted(pmd, write) \
1001 (pmd_present(pmd) && (!(write) || pmd_write(pmd)))
1002#endif
1003
1004#ifndef pud_access_permitted
1005#define pud_access_permitted(pud, write) \
1006 (pud_present(pud) && (!(write) || pud_write(pud)))
1007#endif
1008
1009#ifndef p4d_access_permitted
1010#define p4d_access_permitted(p4d, write) \
1011 (p4d_present(p4d) && (!(write) || p4d_write(p4d)))
1012#endif
1013
1014#ifndef pgd_access_permitted
1015#define pgd_access_permitted(pgd, write) \
1016 (pgd_present(pgd) && (!(write) || pgd_write(pgd)))
1017#endif
1018
e2cda322 1019#ifndef __HAVE_ARCH_PMD_SAME
e2cda322
AA
1020static inline int pmd_same(pmd_t pmd_a, pmd_t pmd_b)
1021{
1022 return pmd_val(pmd_a) == pmd_val(pmd_b);
1023}
973bf680 1024#endif
a00cc7d9 1025
973bf680 1026#ifndef pud_same
a00cc7d9
MW
1027static inline int pud_same(pud_t pud_a, pud_t pud_b)
1028{
1029 return pud_val(pud_a) == pud_val(pud_b);
1030}
973bf680 1031#define pud_same pud_same
1da177e4
LT
1032#endif
1033
0cebbb60
DW
1034#ifndef __HAVE_ARCH_P4D_SAME
1035static inline int p4d_same(p4d_t p4d_a, p4d_t p4d_b)
1036{
1037 return p4d_val(p4d_a) == p4d_val(p4d_b);
1038}
1039#endif
1040
1041#ifndef __HAVE_ARCH_PGD_SAME
1042static inline int pgd_same(pgd_t pgd_a, pgd_t pgd_b)
1043{
1044 return pgd_val(pgd_a) == pgd_val(pgd_b);
1045}
1046#endif
1047
4369deaa
DW
1048/*
1049 * Use set_p*_safe(), and elide TLB flushing, when confident that *no*
1050 * TLB flush will be required as a result of the "set". For example, use
1051 * in scenarios where it is known ahead of time that the routine is
1052 * setting non-present entries, or re-setting an existing entry to the
1053 * same value. Otherwise, use the typical "set" helpers and flush the
1054 * TLB.
1055 */
1056#define set_pte_safe(ptep, pte) \
1057({ \
1058 WARN_ON_ONCE(pte_present(*ptep) && !pte_same(*ptep, pte)); \
1059 set_pte(ptep, pte); \
1060})
1061
1062#define set_pmd_safe(pmdp, pmd) \
1063({ \
1064 WARN_ON_ONCE(pmd_present(*pmdp) && !pmd_same(*pmdp, pmd)); \
1065 set_pmd(pmdp, pmd); \
1066})
1067
1068#define set_pud_safe(pudp, pud) \
1069({ \
1070 WARN_ON_ONCE(pud_present(*pudp) && !pud_same(*pudp, pud)); \
1071 set_pud(pudp, pud); \
1072})
1073
1074#define set_p4d_safe(p4dp, p4d) \
1075({ \
1076 WARN_ON_ONCE(p4d_present(*p4dp) && !p4d_same(*p4dp, p4d)); \
1077 set_p4d(p4dp, p4d); \
1078})
1079
1080#define set_pgd_safe(pgdp, pgd) \
1081({ \
1082 WARN_ON_ONCE(pgd_present(*pgdp) && !pgd_same(*pgdp, pgd)); \
1083 set_pgd(pgdp, pgd); \
1084})
1085
ca827d55
KA
1086#ifndef __HAVE_ARCH_DO_SWAP_PAGE
1087/*
1088 * Some architectures support metadata associated with a page. When a
1089 * page is being swapped out, this metadata must be saved so it can be
1090 * restored when the page is swapped back in. SPARC M7 and newer
1091 * processors support an ADI (Application Data Integrity) tag for the
1092 * page as metadata for the page. arch_do_swap_page() can restore this
1093 * metadata when a page is swapped back in.
1094 */
1095static inline void arch_do_swap_page(struct mm_struct *mm,
1096 struct vm_area_struct *vma,
1097 unsigned long addr,
1098 pte_t pte, pte_t oldpte)
1099{
1100
1101}
1102#endif
1103
1104#ifndef __HAVE_ARCH_UNMAP_ONE
1105/*
1106 * Some architectures support metadata associated with a page. When a
1107 * page is being swapped out, this metadata must be saved so it can be
1108 * restored when the page is swapped back in. SPARC M7 and newer
1109 * processors support an ADI (Application Data Integrity) tag for the
1110 * page as metadata for the page. arch_unmap_one() can save this
1111 * metadata on a swap-out of a page.
1112 */
1113static inline int arch_unmap_one(struct mm_struct *mm,
1114 struct vm_area_struct *vma,
1115 unsigned long addr,
1116 pte_t orig_pte)
1117{
1118 return 0;
1119}
1120#endif
1121
8a84802e
SP
1122/*
1123 * Allow architectures to preserve additional metadata associated with
1124 * swapped-out pages. The corresponding __HAVE_ARCH_SWAP_* macros and function
1125 * prototypes must be defined in the arch-specific asm/pgtable.h file.
1126 */
1127#ifndef __HAVE_ARCH_PREPARE_TO_SWAP
f238b8c3 1128static inline int arch_prepare_to_swap(struct folio *folio)
8a84802e
SP
1129{
1130 return 0;
1131}
1132#endif
1133
1134#ifndef __HAVE_ARCH_SWAP_INVALIDATE
1135static inline void arch_swap_invalidate_page(int type, pgoff_t offset)
1136{
1137}
1138
1139static inline void arch_swap_invalidate_area(int type)
1140{
1141}
1142#endif
1143
1144#ifndef __HAVE_ARCH_SWAP_RESTORE
da08e9b7 1145static inline void arch_swap_restore(swp_entry_t entry, struct folio *folio)
8a84802e
SP
1146{
1147}
1148#endif
1149
1da177e4
LT
1150#ifndef __HAVE_ARCH_PGD_OFFSET_GATE
1151#define pgd_offset_gate(mm, addr) pgd_offset(mm, addr)
1152#endif
1153
0b0968a3 1154#ifndef __HAVE_ARCH_MOVE_PTE
82a616d0 1155#define move_pte(pte, old_addr, new_addr) (pte)
8b1f3124
NP
1156#endif
1157
2c3cf556 1158#ifndef pte_accessible
20841405 1159# define pte_accessible(mm, pte) ((void)(pte), 1)
2c3cf556
RR
1160#endif
1161
61c77326 1162#ifndef flush_tlb_fix_spurious_fault
99c29133 1163#define flush_tlb_fix_spurious_fault(vma, address, ptep) flush_tlb_page(vma, address)
61c77326
SL
1164#endif
1165
1da177e4 1166/*
8f6c99c1
HD
1167 * When walking page tables, get the address of the next boundary,
1168 * or the end address of the range if that comes earlier. Although no
1169 * vma end wraps to 0, rounded up __boundary may wrap to 0 throughout.
1da177e4
LT
1170 */
1171
1da177e4
LT
1172#define pgd_addr_end(addr, end) \
1173({ unsigned long __boundary = ((addr) + PGDIR_SIZE) & PGDIR_MASK; \
1174 (__boundary - 1 < (end) - 1)? __boundary: (end); \
1175})
1da177e4 1176
c2febafc
KS
1177#ifndef p4d_addr_end
1178#define p4d_addr_end(addr, end) \
1179({ unsigned long __boundary = ((addr) + P4D_SIZE) & P4D_MASK; \
1180 (__boundary - 1 < (end) - 1)? __boundary: (end); \
1181})
1182#endif
1183
1da177e4
LT
1184#ifndef pud_addr_end
1185#define pud_addr_end(addr, end) \
1186({ unsigned long __boundary = ((addr) + PUD_SIZE) & PUD_MASK; \
1187 (__boundary - 1 < (end) - 1)? __boundary: (end); \
1188})
1189#endif
1190
1191#ifndef pmd_addr_end
1192#define pmd_addr_end(addr, end) \
1193({ unsigned long __boundary = ((addr) + PMD_SIZE) & PMD_MASK; \
1194 (__boundary - 1 < (end) - 1)? __boundary: (end); \
1195})
1196#endif
1197
1da177e4
LT
1198/*
1199 * When walking page tables, we usually want to skip any p?d_none entries;
1200 * and any p?d_bad entries - reporting the error before resetting to none.
1201 * Do the tests inline, but report and clear the bad entry in mm/memory.c.
1202 */
1203void pgd_clear_bad(pgd_t *);
f2400abc
VG
1204
1205#ifndef __PAGETABLE_P4D_FOLDED
c2febafc 1206void p4d_clear_bad(p4d_t *);
f2400abc
VG
1207#else
1208#define p4d_clear_bad(p4d) do { } while (0)
1209#endif
1210
1211#ifndef __PAGETABLE_PUD_FOLDED
1da177e4 1212void pud_clear_bad(pud_t *);
f2400abc
VG
1213#else
1214#define pud_clear_bad(p4d) do { } while (0)
1215#endif
1216
1da177e4
LT
1217void pmd_clear_bad(pmd_t *);
1218
1219static inline int pgd_none_or_clear_bad(pgd_t *pgd)
1220{
1221 if (pgd_none(*pgd))
1222 return 1;
1223 if (unlikely(pgd_bad(*pgd))) {
1224 pgd_clear_bad(pgd);
1225 return 1;
1226 }
1227 return 0;
1228}
1229
c2febafc
KS
1230static inline int p4d_none_or_clear_bad(p4d_t *p4d)
1231{
1232 if (p4d_none(*p4d))
1233 return 1;
1234 if (unlikely(p4d_bad(*p4d))) {
1235 p4d_clear_bad(p4d);
1236 return 1;
1237 }
1238 return 0;
1239}
1240
1da177e4
LT
1241static inline int pud_none_or_clear_bad(pud_t *pud)
1242{
1243 if (pud_none(*pud))
1244 return 1;
1245 if (unlikely(pud_bad(*pud))) {
1246 pud_clear_bad(pud);
1247 return 1;
1248 }
1249 return 0;
1250}
1251
1252static inline int pmd_none_or_clear_bad(pmd_t *pmd)
1253{
1254 if (pmd_none(*pmd))
1255 return 1;
1256 if (unlikely(pmd_bad(*pmd))) {
1257 pmd_clear_bad(pmd);
1258 return 1;
1259 }
1260 return 0;
1261}
9535239f 1262
0cbe3e26 1263static inline pte_t __ptep_modify_prot_start(struct vm_area_struct *vma,
1ea0704e
JF
1264 unsigned long addr,
1265 pte_t *ptep)
1266{
1267 /*
1268 * Get the current pte state, but zero it out to make it
1269 * non-present, preventing the hardware from asynchronously
1270 * updating it.
1271 */
0cbe3e26 1272 return ptep_get_and_clear(vma->vm_mm, addr, ptep);
1ea0704e
JF
1273}
1274
0cbe3e26 1275static inline void __ptep_modify_prot_commit(struct vm_area_struct *vma,
1ea0704e
JF
1276 unsigned long addr,
1277 pte_t *ptep, pte_t pte)
1278{
1279 /*
1280 * The pte is non-present, so there's no hardware state to
1281 * preserve.
1282 */
0cbe3e26 1283 set_pte_at(vma->vm_mm, addr, ptep, pte);
1ea0704e
JF
1284}
1285
1286#ifndef __HAVE_ARCH_PTEP_MODIFY_PROT_TRANSACTION
1287/*
1288 * Start a pte protection read-modify-write transaction, which
1289 * protects against asynchronous hardware modifications to the pte.
1290 * The intention is not to prevent the hardware from making pte
1291 * updates, but to prevent any updates it may make from being lost.
1292 *
1293 * This does not protect against other software modifications of the
2eb70aab 1294 * pte; the appropriate pte lock must be held over the transaction.
1ea0704e
JF
1295 *
1296 * Note that this interface is intended to be batchable, meaning that
1297 * ptep_modify_prot_commit may not actually update the pte, but merely
1298 * queue the update to be done at some later time. The update must be
1299 * actually committed before the pte lock is released, however.
1300 */
0cbe3e26 1301static inline pte_t ptep_modify_prot_start(struct vm_area_struct *vma,
1ea0704e
JF
1302 unsigned long addr,
1303 pte_t *ptep)
1304{
0cbe3e26 1305 return __ptep_modify_prot_start(vma, addr, ptep);
1ea0704e
JF
1306}
1307
1308/*
1309 * Commit an update to a pte, leaving any hardware-controlled bits in
1310 * the PTE unmodified.
1311 */
0cbe3e26 1312static inline void ptep_modify_prot_commit(struct vm_area_struct *vma,
1ea0704e 1313 unsigned long addr,
04a86453 1314 pte_t *ptep, pte_t old_pte, pte_t pte)
1ea0704e 1315{
0cbe3e26 1316 __ptep_modify_prot_commit(vma, addr, ptep, pte);
1ea0704e
JF
1317}
1318#endif /* __HAVE_ARCH_PTEP_MODIFY_PROT_TRANSACTION */
fe1a6875 1319#endif /* CONFIG_MMU */
1ea0704e 1320
21729f81
TL
1321/*
1322 * No-op macros that just return the current protection value. Defined here
1067b261 1323 * because these macros can be used even if CONFIG_MMU is not defined.
21729f81 1324 */
63bb76de
PE
1325
1326#ifndef pgprot_nx
1327#define pgprot_nx(prot) (prot)
1328#endif
1329
1330#ifndef pgprot_noncached
1331#define pgprot_noncached(prot) (prot)
1332#endif
1333
1334#ifndef pgprot_writecombine
1335#define pgprot_writecombine pgprot_noncached
1336#endif
1337
1338#ifndef pgprot_writethrough
1339#define pgprot_writethrough pgprot_noncached
1340#endif
1341
1342#ifndef pgprot_device
1343#define pgprot_device pgprot_noncached
1344#endif
1345
d15dfd31
CM
1346#ifndef pgprot_mhp
1347#define pgprot_mhp(prot) (prot)
1348#endif
1349
63bb76de
PE
1350#ifdef CONFIG_MMU
1351#ifndef pgprot_modify
1352#define pgprot_modify pgprot_modify
1353static inline pgprot_t pgprot_modify(pgprot_t oldprot, pgprot_t newprot)
1354{
1355 if (pgprot_val(oldprot) == pgprot_val(pgprot_noncached(oldprot)))
1356 newprot = pgprot_noncached(newprot);
1357 if (pgprot_val(oldprot) == pgprot_val(pgprot_writecombine(oldprot)))
1358 newprot = pgprot_writecombine(newprot);
1359 if (pgprot_val(oldprot) == pgprot_val(pgprot_device(oldprot)))
1360 newprot = pgprot_device(newprot);
1361 return newprot;
1362}
1363#endif
1364#endif /* CONFIG_MMU */
1365
21729f81
TL
1366#ifndef pgprot_encrypted
1367#define pgprot_encrypted(prot) (prot)
1368#endif
1369
1370#ifndef pgprot_decrypted
1371#define pgprot_decrypted(prot) (prot)
1372#endif
1373
9535239f 1374/*
7fd7d83d
JF
1375 * A facility to provide batching of the reload of page tables and
1376 * other process state with the actual context switch code for
1377 * paravirtualized guests. By convention, only one of the batched
1378 * update (lazy) modes (CPU, MMU) should be active at any given time,
1379 * entry should never be nested, and entry and exits should always be
1380 * paired. This is for sanity of maintaining and reasoning about the
1381 * kernel code. In this case, the exit (end of the context switch) is
1382 * in architecture-specific code, and so doesn't need a generic
1383 * definition.
9535239f 1384 */
7fd7d83d 1385#ifndef __HAVE_ARCH_START_CONTEXT_SWITCH
224101ed 1386#define arch_start_context_switch(prev) do {} while (0)
9535239f
GU
1387#endif
1388
ab6e3d09
NH
1389#ifdef CONFIG_HAVE_ARCH_SOFT_DIRTY
1390#ifndef CONFIG_ARCH_ENABLE_THP_MIGRATION
1391static inline pmd_t pmd_swp_mksoft_dirty(pmd_t pmd)
1392{
1393 return pmd;
1394}
1395
1396static inline int pmd_swp_soft_dirty(pmd_t pmd)
1397{
1398 return 0;
1399}
1400
1401static inline pmd_t pmd_swp_clear_soft_dirty(pmd_t pmd)
1402{
1403 return pmd;
1404}
1405#endif
1406#else /* !CONFIG_HAVE_ARCH_SOFT_DIRTY */
0f8975ec
PE
1407static inline int pte_soft_dirty(pte_t pte)
1408{
1409 return 0;
1410}
1411
1412static inline int pmd_soft_dirty(pmd_t pmd)
1413{
1414 return 0;
1415}
1416
1417static inline pte_t pte_mksoft_dirty(pte_t pte)
1418{
1419 return pte;
1420}
1421
1422static inline pmd_t pmd_mksoft_dirty(pmd_t pmd)
1423{
1424 return pmd;
1425}
179ef71c 1426
a7b76174
MS
1427static inline pte_t pte_clear_soft_dirty(pte_t pte)
1428{
1429 return pte;
1430}
1431
1432static inline pmd_t pmd_clear_soft_dirty(pmd_t pmd)
1433{
1434 return pmd;
1435}
1436
179ef71c
CG
1437static inline pte_t pte_swp_mksoft_dirty(pte_t pte)
1438{
1439 return pte;
1440}
1441
1442static inline int pte_swp_soft_dirty(pte_t pte)
1443{
1444 return 0;
1445}
1446
1447static inline pte_t pte_swp_clear_soft_dirty(pte_t pte)
1448{
1449 return pte;
1450}
ab6e3d09
NH
1451
1452static inline pmd_t pmd_swp_mksoft_dirty(pmd_t pmd)
1453{
1454 return pmd;
1455}
1456
1457static inline int pmd_swp_soft_dirty(pmd_t pmd)
1458{
1459 return 0;
1460}
1461
1462static inline pmd_t pmd_swp_clear_soft_dirty(pmd_t pmd)
1463{
1464 return pmd;
1465}
0f8975ec
PE
1466#endif
1467
34801ba9 1468#ifndef __HAVE_PFNMAP_TRACKING
1469/*
5180da41
SS
1470 * Interfaces that can be used by architecture code to keep track of
1471 * memory type of pfn mappings specified by the remap_pfn_range,
67fa1666 1472 * vmf_insert_pfn.
5180da41
SS
1473 */
1474
1475/*
1476 * track_pfn_remap is called when a _new_ pfn mapping is being established
1477 * by remap_pfn_range() for physical range indicated by pfn and size.
34801ba9 1478 */
5180da41 1479static inline int track_pfn_remap(struct vm_area_struct *vma, pgprot_t *prot,
b3b9c293
KK
1480 unsigned long pfn, unsigned long addr,
1481 unsigned long size)
34801ba9 1482{
1483 return 0;
1484}
1485
1486/*
5180da41 1487 * track_pfn_insert is called when a _new_ single pfn is established
67fa1666 1488 * by vmf_insert_pfn().
5180da41 1489 */
308a047c
BP
1490static inline void track_pfn_insert(struct vm_area_struct *vma, pgprot_t *prot,
1491 pfn_t pfn)
5180da41 1492{
5180da41
SS
1493}
1494
1495/*
1496 * track_pfn_copy is called when vma that is covering the pfnmap gets
34801ba9 1497 * copied through copy_page_range().
1498 */
5180da41 1499static inline int track_pfn_copy(struct vm_area_struct *vma)
34801ba9 1500{
1501 return 0;
1502}
1503
1504/*
d9fe4fab 1505 * untrack_pfn is called while unmapping a pfnmap for a region.
34801ba9 1506 * untrack can be called for a specific region indicated by pfn and size or
5180da41 1507 * can be for the entire vma (in which case pfn, size are zero).
34801ba9 1508 */
5180da41 1509static inline void untrack_pfn(struct vm_area_struct *vma,
68f48381
SB
1510 unsigned long pfn, unsigned long size,
1511 bool mm_wr_locked)
34801ba9 1512{
1513}
d9fe4fab
TK
1514
1515/*
d155df53
MW
1516 * untrack_pfn_clear is called while mremapping a pfnmap for a new region
1517 * or fails to copy pgtable during duplicate vm area.
d9fe4fab 1518 */
d155df53 1519static inline void untrack_pfn_clear(struct vm_area_struct *vma)
d9fe4fab
TK
1520{
1521}
34801ba9 1522#else
5180da41 1523extern int track_pfn_remap(struct vm_area_struct *vma, pgprot_t *prot,
b3b9c293
KK
1524 unsigned long pfn, unsigned long addr,
1525 unsigned long size);
308a047c
BP
1526extern void track_pfn_insert(struct vm_area_struct *vma, pgprot_t *prot,
1527 pfn_t pfn);
5180da41
SS
1528extern int track_pfn_copy(struct vm_area_struct *vma);
1529extern void untrack_pfn(struct vm_area_struct *vma, unsigned long pfn,
68f48381 1530 unsigned long size, bool mm_wr_locked);
d155df53 1531extern void untrack_pfn_clear(struct vm_area_struct *vma);
34801ba9 1532#endif
1533
9afaf30f 1534#ifdef CONFIG_MMU
816422ad
KS
1535#ifdef __HAVE_COLOR_ZERO_PAGE
1536static inline int is_zero_pfn(unsigned long pfn)
1537{
1538 extern unsigned long zero_pfn;
1539 unsigned long offset_from_zero_pfn = pfn - zero_pfn;
1540 return offset_from_zero_pfn <= (zero_page_mask >> PAGE_SHIFT);
1541}
1542
2f91ec8c
KS
1543#define my_zero_pfn(addr) page_to_pfn(ZERO_PAGE(addr))
1544
816422ad
KS
1545#else
1546static inline int is_zero_pfn(unsigned long pfn)
1547{
1548 extern unsigned long zero_pfn;
1549 return pfn == zero_pfn;
1550}
1551
1552static inline unsigned long my_zero_pfn(unsigned long addr)
1553{
1554 extern unsigned long zero_pfn;
1555 return zero_pfn;
1556}
1557#endif
9afaf30f
PT
1558#else
1559static inline int is_zero_pfn(unsigned long pfn)
1560{
1561 return 0;
1562}
1563
1564static inline unsigned long my_zero_pfn(unsigned long addr)
1565{
1566 return 0;
1567}
1568#endif /* CONFIG_MMU */
816422ad 1569
1a5a9906
AA
1570#ifdef CONFIG_MMU
1571
5f6e8da7
AA
1572#ifndef CONFIG_TRANSPARENT_HUGEPAGE
1573static inline int pmd_trans_huge(pmd_t pmd)
1574{
1575 return 0;
1576}
e4e40e02 1577#ifndef pmd_write
e2cda322
AA
1578static inline int pmd_write(pmd_t pmd)
1579{
1580 BUG();
1581 return 0;
1582}
e4e40e02 1583#endif /* pmd_write */
1a5a9906
AA
1584#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
1585
1501899a
DW
1586#ifndef pud_write
1587static inline int pud_write(pud_t pud)
1588{
1589 BUG();
1590 return 0;
1591}
1592#endif /* pud_write */
1593
bf1a12a8
TH
1594#if !defined(CONFIG_ARCH_HAS_PTE_DEVMAP) || !defined(CONFIG_TRANSPARENT_HUGEPAGE)
1595static inline int pmd_devmap(pmd_t pmd)
1596{
1597 return 0;
1598}
1599static inline int pud_devmap(pud_t pud)
1600{
1601 return 0;
1602}
1603static inline int pgd_devmap(pgd_t pgd)
1604{
1605 return 0;
1606}
1607#endif
1608
a00cc7d9 1609#if !defined(CONFIG_TRANSPARENT_HUGEPAGE) || \
bcd0dea5 1610 !defined(CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD)
a00cc7d9
MW
1611static inline int pud_trans_huge(pud_t pud)
1612{
1613 return 0;
1614}
1615#endif
1616
feda5c39 1617static inline int pud_trans_unstable(pud_t *pud)
625110b5 1618{
feda5c39
HD
1619#if defined(CONFIG_TRANSPARENT_HUGEPAGE) && \
1620 defined(CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD)
625110b5
TH
1621 pud_t pudval = READ_ONCE(*pud);
1622
1623 if (pud_none(pudval) || pud_trans_huge(pudval) || pud_devmap(pudval))
1624 return 1;
1625 if (unlikely(pud_bad(pudval))) {
1626 pud_clear_bad(pud);
1627 return 1;
1628 }
625110b5 1629#endif
1a5a9906
AA
1630 return 0;
1631}
1632
e7bb4b6d
MG
1633#ifndef CONFIG_NUMA_BALANCING
1634/*
14fb1fd7
DH
1635 * In an inaccessible (PROT_NONE) VMA, pte_protnone() may indicate "yes". It is
1636 * perfectly valid to indicate "no" in that case, which is why our default
1637 * implementation defaults to "always no".
1638 *
1639 * In an accessible VMA, however, pte_protnone() reliably indicates PROT_NONE
1640 * page protection due to NUMA hinting. NUMA hinting faults only apply in
1641 * accessible VMAs.
1642 *
1643 * So, to reliably identify PROT_NONE PTEs that require a NUMA hinting fault,
1644 * looking at the VMA accessibility is sufficient.
e7bb4b6d
MG
1645 */
1646static inline int pte_protnone(pte_t pte)
1647{
1648 return 0;
1649}
1650
1651static inline int pmd_protnone(pmd_t pmd)
1652{
1653 return 0;
1654}
1655#endif /* CONFIG_NUMA_BALANCING */
1656
1a5a9906 1657#endif /* CONFIG_MMU */
5f6e8da7 1658
e61ce6ad 1659#ifdef CONFIG_HAVE_ARCH_HUGE_VMAP
c2febafc
KS
1660
1661#ifndef __PAGETABLE_P4D_FOLDED
1662int p4d_set_huge(p4d_t *p4d, phys_addr_t addr, pgprot_t prot);
c8db8c26 1663void p4d_clear_huge(p4d_t *p4d);
c2febafc
KS
1664#else
1665static inline int p4d_set_huge(p4d_t *p4d, phys_addr_t addr, pgprot_t prot)
1666{
1667 return 0;
1668}
c8db8c26 1669static inline void p4d_clear_huge(p4d_t *p4d) { }
c2febafc
KS
1670#endif /* !__PAGETABLE_P4D_FOLDED */
1671
e61ce6ad 1672int pud_set_huge(pud_t *pud, phys_addr_t addr, pgprot_t prot);
c742199a 1673int pmd_set_huge(pmd_t *pmd, phys_addr_t addr, pgprot_t prot);
d8a71905 1674int pud_clear_huge(pud_t *pud);
b9820d8f 1675int pmd_clear_huge(pmd_t *pmd);
8e2d4340 1676int p4d_free_pud_page(p4d_t *p4d, unsigned long addr);
785a19f9
CP
1677int pud_free_pmd_page(pud_t *pud, unsigned long addr);
1678int pmd_free_pte_page(pmd_t *pmd, unsigned long addr);
e61ce6ad 1679#else /* !CONFIG_HAVE_ARCH_HUGE_VMAP */
c2febafc
KS
1680static inline int p4d_set_huge(p4d_t *p4d, phys_addr_t addr, pgprot_t prot)
1681{
1682 return 0;
1683}
e61ce6ad
TK
1684static inline int pud_set_huge(pud_t *pud, phys_addr_t addr, pgprot_t prot)
1685{
1686 return 0;
1687}
1688static inline int pmd_set_huge(pmd_t *pmd, phys_addr_t addr, pgprot_t prot)
1689{
1690 return 0;
1691}
c8db8c26 1692static inline void p4d_clear_huge(p4d_t *p4d) { }
b9820d8f
TK
1693static inline int pud_clear_huge(pud_t *pud)
1694{
1695 return 0;
1696}
1697static inline int pmd_clear_huge(pmd_t *pmd)
1698{
1699 return 0;
1700}
8e2d4340
WD
1701static inline int p4d_free_pud_page(p4d_t *p4d, unsigned long addr)
1702{
1703 return 0;
1704}
785a19f9 1705static inline int pud_free_pmd_page(pud_t *pud, unsigned long addr)
b6bdb751
TK
1706{
1707 return 0;
1708}
785a19f9 1709static inline int pmd_free_pte_page(pmd_t *pmd, unsigned long addr)
b6bdb751
TK
1710{
1711 return 0;
1712}
e61ce6ad
TK
1713#endif /* CONFIG_HAVE_ARCH_HUGE_VMAP */
1714
458aa76d
AK
1715#ifndef __HAVE_ARCH_FLUSH_PMD_TLB_RANGE
1716#ifdef CONFIG_TRANSPARENT_HUGEPAGE
1717/*
1718 * ARCHes with special requirements for evicting THP backing TLB entries can
1719 * implement this. Otherwise also, it can help optimize normal TLB flush in
1067b261
RD
1720 * THP regime. Stock flush_tlb_range() typically has optimization to nuke the
1721 * entire TLB if flush span is greater than a threshold, which will
1722 * likely be true for a single huge page. Thus a single THP flush will
1723 * invalidate the entire TLB which is not desirable.
458aa76d
AK
1724 * e.g. see arch/arc: flush_pmd_tlb_range
1725 */
1726#define flush_pmd_tlb_range(vma, addr, end) flush_tlb_range(vma, addr, end)
a00cc7d9 1727#define flush_pud_tlb_range(vma, addr, end) flush_tlb_range(vma, addr, end)
458aa76d
AK
1728#else
1729#define flush_pmd_tlb_range(vma, addr, end) BUILD_BUG()
a00cc7d9 1730#define flush_pud_tlb_range(vma, addr, end) BUILD_BUG()
458aa76d
AK
1731#endif
1732#endif
1733
08ea8c07
BX
1734struct file;
1735int phys_mem_access_prot_allowed(struct file *file, unsigned long pfn,
1736 unsigned long size, pgprot_t *vma_prot);
613e396b
TG
1737
1738#ifndef CONFIG_X86_ESPFIX64
1739static inline void init_espfix_bsp(void) { }
1740#endif
1741
782de70c 1742extern void __init pgtable_cache_init(void);
caa84136 1743
6c26fcd2
JK
1744#ifndef __HAVE_ARCH_PFN_MODIFY_ALLOWED
1745static inline bool pfn_modify_allowed(unsigned long pfn, pgprot_t prot)
1746{
1747 return true;
1748}
1749
1750static inline bool arch_has_pfn_modify_check(void)
1751{
1752 return false;
1753}
1754#endif /* !_HAVE_ARCH_PFN_MODIFY_ALLOWED */
1755
a3266bd4
LR
1756/*
1757 * Architecture PAGE_KERNEL_* fallbacks
1758 *
1759 * Some architectures don't define certain PAGE_KERNEL_* flags. This is either
1760 * because they really don't support them, or the port needs to be updated to
1761 * reflect the required functionality. Below are a set of relatively safe
1762 * fallbacks, as best effort, which we can count on in lieu of the architectures
1763 * not defining them on their own yet.
1764 */
1765
1766#ifndef PAGE_KERNEL_RO
1767# define PAGE_KERNEL_RO PAGE_KERNEL
1768#endif
1769
1a9b4b3d
LR
1770#ifndef PAGE_KERNEL_EXEC
1771# define PAGE_KERNEL_EXEC PAGE_KERNEL
1772#endif
1773
d8626138
JR
1774/*
1775 * Page Table Modification bits for pgtbl_mod_mask.
1776 *
1777 * These are used by the p?d_alloc_track*() set of functions an in the generic
1778 * vmalloc/ioremap code to track at which page-table levels entries have been
1779 * modified. Based on that the code can better decide when vmalloc and ioremap
1780 * mapping changes need to be synchronized to other page-tables in the system.
1781 */
1782#define __PGTBL_PGD_MODIFIED 0
1783#define __PGTBL_P4D_MODIFIED 1
1784#define __PGTBL_PUD_MODIFIED 2
1785#define __PGTBL_PMD_MODIFIED 3
1786#define __PGTBL_PTE_MODIFIED 4
1787
1788#define PGTBL_PGD_MODIFIED BIT(__PGTBL_PGD_MODIFIED)
1789#define PGTBL_P4D_MODIFIED BIT(__PGTBL_P4D_MODIFIED)
1790#define PGTBL_PUD_MODIFIED BIT(__PGTBL_PUD_MODIFIED)
1791#define PGTBL_PMD_MODIFIED BIT(__PGTBL_PMD_MODIFIED)
1792#define PGTBL_PTE_MODIFIED BIT(__PGTBL_PTE_MODIFIED)
1793
1794/* Page-Table Modification Mask */
1795typedef unsigned int pgtbl_mod_mask;
1796
1da177e4
LT
1797#endif /* !__ASSEMBLY__ */
1798
cef39703
AB
1799#if !defined(MAX_POSSIBLE_PHYSMEM_BITS) && !defined(CONFIG_64BIT)
1800#ifdef CONFIG_PHYS_ADDR_T_64BIT
1801/*
1802 * ZSMALLOC needs to know the highest PFN on 32-bit architectures
1803 * with physical address space extension, but falls back to
1804 * BITS_PER_LONG otherwise.
1805 */
1806#error Missing MAX_POSSIBLE_PHYSMEM_BITS definition
1807#else
1808#define MAX_POSSIBLE_PHYSMEM_BITS 32
1809#endif
1810#endif
1811
fd8cfd30 1812#ifndef has_transparent_hugepage
a38c94ed 1813#define has_transparent_hugepage() IS_BUILTIN(CONFIG_TRANSPARENT_HUGEPAGE)
fd8cfd30
HD
1814#endif
1815
348ad160
AK
1816#ifndef has_transparent_pud_hugepage
1817#define has_transparent_pud_hugepage() IS_BUILTIN(CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD)
1818#endif
1071fc57
MS
1819/*
1820 * On some architectures it depends on the mm if the p4d/pud or pmd
1821 * layer of the page table hierarchy is folded or not.
1822 */
1823#ifndef mm_p4d_folded
1824#define mm_p4d_folded(mm) __is_defined(__PAGETABLE_P4D_FOLDED)
1825#endif
1826
1827#ifndef mm_pud_folded
1828#define mm_pud_folded(mm) __is_defined(__PAGETABLE_PUD_FOLDED)
1829#endif
1830
1831#ifndef mm_pmd_folded
1832#define mm_pmd_folded(mm) __is_defined(__PAGETABLE_PMD_FOLDED)
1833#endif
1834
d3f7b1bb
VG
1835#ifndef p4d_offset_lockless
1836#define p4d_offset_lockless(pgdp, pgd, address) p4d_offset(&(pgd), address)
1837#endif
1838#ifndef pud_offset_lockless
1839#define pud_offset_lockless(p4dp, p4d, address) pud_offset(&(p4d), address)
1840#endif
1841#ifndef pmd_offset_lockless
1842#define pmd_offset_lockless(pudp, pud, address) pmd_offset(&(pud), address)
1843#endif
1844
93fab1b2 1845/*
64078b3d
PX
1846 * pXd_leaf() is the API to check whether a pgtable entry is a huge page
1847 * mapping. It should work globally across all archs, without any
1848 * dependency on CONFIG_* options. For architectures that do not support
1849 * huge mappings on specific levels, below fallbacks will be used.
1850 *
1851 * A leaf pgtable entry should always imply the following:
1852 *
1853 * - It is a "present" entry. IOW, before using this API, please check it
1854 * with pXd_present() first. NOTE: it may not always mean the "present
1855 * bit" is set. For example, PROT_NONE entries are always "present".
1856 *
1857 * - It should _never_ be a swap entry of any type. Above "present" check
1858 * should have guarded this, but let's be crystal clear on this.
1859 *
1860 * - It should contain a huge PFN, which points to a huge page larger than
1861 * PAGE_SIZE of the platform. The PFN format isn't important here.
1862 *
1863 * - It should cover all kinds of huge mappings (e.g., pXd_trans_huge(),
1864 * pXd_devmap(), or hugetlb mappings).
93fab1b2
SP
1865 */
1866#ifndef pgd_leaf
c05995b7 1867#define pgd_leaf(x) false
93fab1b2
SP
1868#endif
1869#ifndef p4d_leaf
c05995b7 1870#define p4d_leaf(x) false
93fab1b2
SP
1871#endif
1872#ifndef pud_leaf
c05995b7 1873#define pud_leaf(x) false
93fab1b2
SP
1874#endif
1875#ifndef pmd_leaf
c05995b7 1876#define pmd_leaf(x) false
93fab1b2
SP
1877#endif
1878
560dabbd
PZ
1879#ifndef pgd_leaf_size
1880#define pgd_leaf_size(x) (1ULL << PGDIR_SHIFT)
1881#endif
1882#ifndef p4d_leaf_size
1883#define p4d_leaf_size(x) P4D_SIZE
1884#endif
1885#ifndef pud_leaf_size
1886#define pud_leaf_size(x) PUD_SIZE
1887#endif
1888#ifndef pmd_leaf_size
1889#define pmd_leaf_size(x) PMD_SIZE
1890#endif
1891#ifndef pte_leaf_size
1892#define pte_leaf_size(x) PAGE_SIZE
1893#endif
1894
35a76f5c
PX
1895/*
1896 * We always define pmd_pfn for all archs as it's used in lots of generic
1897 * code. Now it happens too for pud_pfn (and can happen for larger
1898 * mappings too in the future; we're not there yet). Instead of defining
1899 * it for all archs (like pmd_pfn), provide a fallback.
1900 *
1901 * Note that returning 0 here means any arch that didn't define this can
1902 * get severely wrong when it hits a real pud leaf. It's arch's
1903 * responsibility to properly define it when a huge pud is possible.
1904 */
1905#ifndef pud_pfn
1906#define pud_pfn(x) 0
1907#endif
1908
c0f8aa4f
DA
1909/*
1910 * Some architectures have MMUs that are configurable or selectable at boot
1911 * time. These lead to variable PTRS_PER_x. For statically allocated arrays it
1912 * helps to have a static maximum value.
1913 */
1914
1915#ifndef MAX_PTRS_PER_PTE
1916#define MAX_PTRS_PER_PTE PTRS_PER_PTE
1917#endif
1918
1919#ifndef MAX_PTRS_PER_PMD
1920#define MAX_PTRS_PER_PMD PTRS_PER_PMD
1921#endif
1922
1923#ifndef MAX_PTRS_PER_PUD
1924#define MAX_PTRS_PER_PUD PTRS_PER_PUD
1925#endif
1926
1927#ifndef MAX_PTRS_PER_P4D
1928#define MAX_PTRS_PER_P4D PTRS_PER_P4D
1929#endif
1930
43957b5d
AK
1931/* description of effects of mapping type and prot in current implementation.
1932 * this is due to the limited x86 page protection hardware. The expected
1933 * behavior is in parens:
1934 *
1935 * map_type prot
1936 * PROT_NONE PROT_READ PROT_WRITE PROT_EXEC
1937 * MAP_SHARED r: (no) no r: (yes) yes r: (no) yes r: (no) yes
1938 * w: (no) no w: (no) no w: (yes) yes w: (no) no
1939 * x: (no) no x: (no) yes x: (no) yes x: (yes) yes
1940 *
1941 * MAP_PRIVATE r: (no) no r: (yes) yes r: (no) yes r: (no) yes
1942 * w: (no) no w: (no) no w: (copy) copy w: (no) no
1943 * x: (no) no x: (no) yes x: (no) yes x: (yes) yes
1944 *
1945 * On arm64, PROT_EXEC has the following behaviour for both MAP_SHARED and
1946 * MAP_PRIVATE (with Enhanced PAN supported):
1947 * r: (no) no
1948 * w: (no) no
1949 * x: (yes) yes
1950 */
1951#define DECLARE_VM_GET_PAGE_PROT \
1952pgprot_t vm_get_page_prot(unsigned long vm_flags) \
1953{ \
1954 return protection_map[vm_flags & \
1955 (VM_READ | VM_WRITE | VM_EXEC | VM_SHARED)]; \
1956} \
1957EXPORT_SYMBOL(vm_get_page_prot);
1958
ca5999fd 1959#endif /* _LINUX_PGTABLE_H */