pgtable_64.h 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. #ifndef _X86_64_PGTABLE_H
  2. #define _X86_64_PGTABLE_H
  3. #include <linux/const.h>
  4. #ifndef __ASSEMBLY__
  5. /*
  6. * This file contains the functions and defines necessary to modify and use
  7. * the x86-64 page table tree.
  8. */
  9. #include <asm/processor.h>
  10. #include <linux/bitops.h>
  11. #include <linux/threads.h>
  12. #include <asm/pda.h>
  13. extern pud_t level3_kernel_pgt[512];
  14. extern pud_t level3_ident_pgt[512];
  15. extern pmd_t level2_kernel_pgt[512];
  16. extern pgd_t init_level4_pgt[];
  17. #define swapper_pg_dir init_level4_pgt
  18. extern void paging_init(void);
  19. #endif /* !__ASSEMBLY__ */
  20. #define SHARED_KERNEL_PMD 1
  21. /*
  22. * PGDIR_SHIFT determines what a top-level page table entry can map
  23. */
  24. #define PGDIR_SHIFT 39
  25. #define PTRS_PER_PGD 512
  26. /*
  27. * 3rd level page
  28. */
  29. #define PUD_SHIFT 30
  30. #define PTRS_PER_PUD 512
  31. /*
  32. * PMD_SHIFT determines the size of the area a middle-level
  33. * page table can map
  34. */
  35. #define PMD_SHIFT 21
  36. #define PTRS_PER_PMD 512
  37. /*
  38. * entries per page directory level
  39. */
  40. #define PTRS_PER_PTE 512
  41. #ifndef __ASSEMBLY__
  42. #define pte_ERROR(e) \
  43. printk("%s:%d: bad pte %p(%016lx).\n", __FILE__, __LINE__, &(e), pte_val(e))
  44. #define pmd_ERROR(e) \
  45. printk("%s:%d: bad pmd %p(%016lx).\n", __FILE__, __LINE__, &(e), pmd_val(e))
  46. #define pud_ERROR(e) \
  47. printk("%s:%d: bad pud %p(%016lx).\n", __FILE__, __LINE__, &(e), pud_val(e))
  48. #define pgd_ERROR(e) \
  49. printk("%s:%d: bad pgd %p(%016lx).\n", __FILE__, __LINE__, &(e), pgd_val(e))
  50. #define pgd_none(x) (!pgd_val(x))
  51. #define pud_none(x) (!pud_val(x))
  52. struct mm_struct;
  53. static inline void native_pte_clear(struct mm_struct *mm, unsigned long addr,
  54. pte_t *ptep)
  55. {
  56. *ptep = native_make_pte(0);
  57. }
  58. static inline void native_set_pte(pte_t *ptep, pte_t pte)
  59. {
  60. *ptep = pte;
  61. }
  62. static inline void native_set_pte_atomic(pte_t *ptep, pte_t pte)
  63. {
  64. native_set_pte(ptep, pte);
  65. }
  66. static inline pte_t native_ptep_get_and_clear(pte_t *xp)
  67. {
  68. #ifdef CONFIG_SMP
  69. return native_make_pte(xchg(&xp->pte, 0));
  70. #else
  71. /* native_local_ptep_get_and_clear, but duplicated because of cyclic dependency */
  72. pte_t ret = *xp;
  73. native_pte_clear(NULL, 0, xp);
  74. return ret;
  75. #endif
  76. }
  77. static inline void native_set_pmd(pmd_t *pmdp, pmd_t pmd)
  78. {
  79. *pmdp = pmd;
  80. }
  81. static inline void native_pmd_clear(pmd_t *pmd)
  82. {
  83. native_set_pmd(pmd, native_make_pmd(0));
  84. }
  85. static inline void native_set_pud(pud_t *pudp, pud_t pud)
  86. {
  87. *pudp = pud;
  88. }
  89. static inline void native_pud_clear(pud_t *pud)
  90. {
  91. native_set_pud(pud, native_make_pud(0));
  92. }
  93. static inline void native_set_pgd(pgd_t *pgdp, pgd_t pgd)
  94. {
  95. *pgdp = pgd;
  96. }
  97. static inline void native_pgd_clear(pgd_t * pgd)
  98. {
  99. native_set_pgd(pgd, native_make_pgd(0));
  100. }
  101. #define pte_same(a, b) ((a).pte == (b).pte)
  102. #endif /* !__ASSEMBLY__ */
  103. #define PMD_SIZE (_AC(1,UL) << PMD_SHIFT)
  104. #define PMD_MASK (~(PMD_SIZE-1))
  105. #define PUD_SIZE (_AC(1,UL) << PUD_SHIFT)
  106. #define PUD_MASK (~(PUD_SIZE-1))
  107. #define PGDIR_SIZE (_AC(1,UL) << PGDIR_SHIFT)
  108. #define PGDIR_MASK (~(PGDIR_SIZE-1))
  109. #define MAXMEM _AC(0x3fffffffffff, UL)
  110. #define VMALLOC_START _AC(0xffffc20000000000, UL)
  111. #define VMALLOC_END _AC(0xffffe1ffffffffff, UL)
  112. #define VMEMMAP_START _AC(0xffffe20000000000, UL)
  113. #define MODULES_VADDR _AC(0xffffffff88000000, UL)
  114. #define MODULES_END _AC(0xfffffffffff00000, UL)
  115. #define MODULES_LEN (MODULES_END - MODULES_VADDR)
  116. #ifndef __ASSEMBLY__
  117. static inline unsigned long pgd_bad(pgd_t pgd)
  118. {
  119. return pgd_val(pgd) & ~(PTE_MASK | _KERNPG_TABLE | _PAGE_USER);
  120. }
  121. static inline unsigned long pud_bad(pud_t pud)
  122. {
  123. return pud_val(pud) & ~(PTE_MASK | _KERNPG_TABLE | _PAGE_USER);
  124. }
  125. static inline unsigned long pmd_bad(pmd_t pmd)
  126. {
  127. return pmd_val(pmd) & ~(PTE_MASK | _KERNPG_TABLE | _PAGE_USER);
  128. }
  129. #define pte_none(x) (!pte_val(x))
  130. #define pte_present(x) (pte_val(x) & (_PAGE_PRESENT | _PAGE_PROTNONE))
  131. #define pages_to_mb(x) ((x) >> (20-PAGE_SHIFT)) /* FIXME: is this right? */
  132. #define pte_page(x) pfn_to_page(pte_pfn(x))
  133. #define pte_pfn(x) ((pte_val(x) & __PHYSICAL_MASK) >> PAGE_SHIFT)
  134. /*
  135. * Macro to mark a page protection value as "uncacheable".
  136. */
  137. #define pgprot_noncached(prot) (__pgprot(pgprot_val(prot) | _PAGE_PCD | _PAGE_PWT))
  138. /*
  139. * Conversion functions: convert a page and protection to a page entry,
  140. * and a page entry and page directory to the page they refer to.
  141. */
  142. /*
  143. * Level 4 access.
  144. */
  145. #define pgd_page_vaddr(pgd) ((unsigned long) __va((unsigned long)pgd_val(pgd) & PTE_MASK))
  146. #define pgd_page(pgd) (pfn_to_page(pgd_val(pgd) >> PAGE_SHIFT))
  147. #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
  148. #define pgd_offset(mm, addr) ((mm)->pgd + pgd_index(addr))
  149. #define pgd_offset_k(address) (init_level4_pgt + pgd_index(address))
  150. #define pgd_present(pgd) (pgd_val(pgd) & _PAGE_PRESENT)
  151. static inline int pgd_large(pgd_t pgd) { return 0; }
  152. #define mk_kernel_pgd(address) ((pgd_t){ (address) | _KERNPG_TABLE })
  153. /* PUD - Level3 access */
  154. /* to find an entry in a page-table-directory. */
  155. #define pud_page_vaddr(pud) ((unsigned long) __va(pud_val(pud) & PHYSICAL_PAGE_MASK))
  156. #define pud_page(pud) (pfn_to_page(pud_val(pud) >> PAGE_SHIFT))
  157. #define pud_index(address) (((address) >> PUD_SHIFT) & (PTRS_PER_PUD-1))
  158. #define pud_offset(pgd, address) ((pud_t *) pgd_page_vaddr(*(pgd)) + pud_index(address))
  159. #define pud_present(pud) (pud_val(pud) & _PAGE_PRESENT)
  160. static inline int pud_large(pud_t pte)
  161. {
  162. return (pud_val(pte) & (_PAGE_PSE|_PAGE_PRESENT)) ==
  163. (_PAGE_PSE|_PAGE_PRESENT);
  164. }
  165. /* PMD - Level 2 access */
  166. #define pmd_page_vaddr(pmd) ((unsigned long) __va(pmd_val(pmd) & PTE_MASK))
  167. #define pmd_page(pmd) (pfn_to_page(pmd_val(pmd) >> PAGE_SHIFT))
  168. #define pmd_index(address) (((address) >> PMD_SHIFT) & (PTRS_PER_PMD-1))
  169. #define pmd_offset(dir, address) ((pmd_t *) pud_page_vaddr(*(dir)) + \
  170. pmd_index(address))
  171. #define pmd_none(x) (!pmd_val(x))
  172. #define pmd_present(x) (pmd_val(x) & _PAGE_PRESENT)
  173. #define pfn_pmd(nr,prot) (__pmd(((nr) << PAGE_SHIFT) | pgprot_val(prot)))
  174. #define pmd_pfn(x) ((pmd_val(x) & __PHYSICAL_MASK) >> PAGE_SHIFT)
  175. #define pte_to_pgoff(pte) ((pte_val(pte) & PHYSICAL_PAGE_MASK) >> PAGE_SHIFT)
  176. #define pgoff_to_pte(off) ((pte_t) { .pte = ((off) << PAGE_SHIFT) | _PAGE_FILE })
  177. #define PTE_FILE_MAX_BITS __PHYSICAL_MASK_SHIFT
  178. /* PTE - Level 1 access. */
  179. /* page, protection -> pte */
  180. #define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
  181. #define pte_index(address) \
  182. (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
  183. #define pte_offset_kernel(dir, address) ((pte_t *) pmd_page_vaddr(*(dir)) + \
  184. pte_index(address))
  185. /* x86-64 always has all page tables mapped. */
  186. #define pte_offset_map(dir,address) pte_offset_kernel(dir,address)
  187. #define pte_offset_map_nested(dir,address) pte_offset_kernel(dir,address)
  188. #define pte_unmap(pte) /* NOP */
  189. #define pte_unmap_nested(pte) /* NOP */
  190. #define update_mmu_cache(vma,address,pte) do { } while (0)
  191. /* Encode and de-code a swap entry */
  192. #define __swp_type(x) (((x).val >> 1) & 0x3f)
  193. #define __swp_offset(x) ((x).val >> 8)
  194. #define __swp_entry(type, offset) ((swp_entry_t) { ((type) << 1) | ((offset) << 8) })
  195. #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
  196. #define __swp_entry_to_pte(x) ((pte_t) { .pte = (x).val })
  197. extern int kern_addr_valid(unsigned long addr);
  198. extern void cleanup_highmap(void);
  199. #define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \
  200. remap_pfn_range(vma, vaddr, pfn, size, prot)
  201. #define HAVE_ARCH_UNMAPPED_AREA
  202. #define HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
  203. #define pgtable_cache_init() do { } while (0)
  204. #define check_pgt_cache() do { } while (0)
  205. #define PAGE_AGP PAGE_KERNEL_NOCACHE
  206. #define HAVE_PAGE_AGP 1
  207. /* fs/proc/kcore.c */
  208. #define kc_vaddr_to_offset(v) ((v) & __VIRTUAL_MASK)
  209. #define kc_offset_to_vaddr(o) \
  210. (((o) & (1UL << (__VIRTUAL_MASK_SHIFT-1))) ? ((o) | (~__VIRTUAL_MASK)) : (o))
  211. #define __HAVE_ARCH_PTE_SAME
  212. #endif /* !__ASSEMBLY__ */
  213. #endif /* _X86_64_PGTABLE_H */