pgtable-nopud.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _PGTABLE_NOPUD_H
  3. #define _PGTABLE_NOPUD_H
  4. #ifndef __ASSEMBLY__
  5. #ifdef __ARCH_USE_5LEVEL_HACK
  6. #include <asm-generic/pgtable-nop4d-hack.h>
  7. #else
  8. #include <asm-generic/pgtable-nop4d.h>
  9. #define __PAGETABLE_PUD_FOLDED
  10. /*
  11. * Having the pud type consist of a p4d gets the size right, and allows
  12. * us to conceptually access the p4d entry that this pud is folded into
  13. * without casting.
  14. */
  15. typedef struct { p4d_t p4d; } pud_t;
  16. #define PUD_SHIFT P4D_SHIFT
  17. #define PTRS_PER_PUD 1
  18. #define PUD_SIZE (1UL << PUD_SHIFT)
  19. #define PUD_MASK (~(PUD_SIZE-1))
  20. /*
  21. * The "p4d_xxx()" functions here are trivial for a folded two-level
  22. * setup: the pud is never bad, and a pud always exists (as it's folded
  23. * into the p4d entry)
  24. */
  25. static inline int p4d_none(p4d_t p4d) { return 0; }
  26. static inline int p4d_bad(p4d_t p4d) { return 0; }
  27. static inline int p4d_present(p4d_t p4d) { return 1; }
  28. static inline void p4d_clear(p4d_t *p4d) { }
  29. #define pud_ERROR(pud) (p4d_ERROR((pud).p4d))
  30. #define p4d_populate(mm, p4d, pud) do { } while (0)
  31. /*
  32. * (puds are folded into p4ds so this doesn't get actually called,
  33. * but the define is needed for a generic inline function.)
  34. */
  35. #define set_p4d(p4dptr, p4dval) set_pud((pud_t *)(p4dptr), (pud_t) { p4dval })
  36. static inline pud_t *pud_offset(p4d_t *p4d, unsigned long address)
  37. {
  38. return (pud_t *)p4d;
  39. }
  40. #define pud_val(x) (p4d_val((x).p4d))
  41. #define __pud(x) ((pud_t) { __p4d(x) })
  42. #define p4d_page(p4d) (pud_page((pud_t){ p4d }))
  43. #define p4d_page_vaddr(p4d) (pud_page_vaddr((pud_t){ p4d }))
  44. /*
  45. * allocating and freeing a pud is trivial: the 1-entry pud is
  46. * inside the p4d, so has no extra memory associated with it.
  47. */
  48. #define pud_alloc_one(mm, address) NULL
  49. #define pud_free(mm, x) do { } while (0)
  50. #define __pud_free_tlb(tlb, x, a) do { } while (0)
  51. #undef pud_addr_end
  52. #define pud_addr_end(addr, end) (end)
  53. #endif /* __ASSEMBLY__ */
  54. #endif /* !__ARCH_USE_5LEVEL_HACK */
  55. #endif /* _PGTABLE_NOPUD_H */