pgtable_64.h 7.5 KB

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