pgtable-nopud.h 1.9 KB

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