pgtable.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:15k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _X86_64_PGTABLE_H
  2. #define _X86_64_PGTABLE_H
  3. /*
  4.  * This file contains the functions and defines necessary to modify and use
  5.  * the x86-64 page table tree.
  6.  * 
  7.  * x86-64 has a 4 level table setup. Generic linux MM only supports
  8.  * three levels. The fourth level is currently a single static page that
  9.  * is shared by everybody and just contains a pointer to the current
  10.  * three level page setup on the beginning and some kernel mappings at 
  11.  * the end. For more details see Documentation/x86_64/mm.txt
  12.  */
  13. #ifndef __ASSEMBLY__
  14. #include <asm/processor.h>
  15. #include <asm/fixmap.h>
  16. #include <asm/bitops.h>
  17. #include <asm/pda.h>
  18. #include <linux/threads.h>
  19. #include <linux/config.h>
  20. extern pgd_t level3_kernel_pgt[512];
  21. extern pgd_t level3_physmem_pgt[512];
  22. extern pgd_t level3_ident_pgt[512];
  23. extern pmd_t level2_kernel_pgt[512];
  24. extern pml4_t init_level4_pgt[];
  25. extern pgd_t boot_vmalloc_pgt[];
  26. extern void paging_init(void);
  27. #define swapper_pg_dir NULL
  28. /* Caches aren't brain-dead on the intel. */
  29. #define flush_cache_all() do { } while (0)
  30. #define flush_cache_mm(mm) do { } while (0)
  31. #define flush_cache_range(mm, start, end) do { } while (0)
  32. #define flush_cache_page(vma, vmaddr) do { } while (0)
  33. #define flush_page_to_ram(page) do { } while (0)
  34. #define flush_dcache_page(page) do { } while (0)
  35. #define flush_icache_range(start, end) do { } while (0)
  36. #define flush_icache_page(vma,pg) do { } while (0)
  37. #define flush_icache_user_range(vma,pg,adr,len) do { } while (0)
  38. #define __flush_tlb()
  39. do {
  40. unsigned long tmpreg;
  41. __asm__ __volatile__(
  42. "movq %%cr3, %0;  # flush TLB n"
  43. "movq %0, %%cr3;              n"
  44. : "=r" (tmpreg)
  45. :: "memory");
  46. } while (0)
  47. /*
  48.  * Global pages have to be flushed a bit differently. Not a real
  49.  * performance problem because this does not happen often.
  50.  */
  51. #define __flush_tlb_global()
  52. do {
  53. unsigned long tmpreg;
  54. __asm__ __volatile__(
  55. "movq %1, %%cr4;  # turn off PGE     n"
  56. "movq %%cr3, %0;  # flush TLB        n"
  57. "movq %0, %%cr3;                     n"
  58. "movq %2, %%cr4;  # turn PGE back on n"
  59. : "=&r" (tmpreg)
  60. : "r" (mmu_cr4_features & ~(u64)X86_CR4_PGE),
  61.   "r" (mmu_cr4_features)
  62. : "memory");
  63. } while (0)
  64. #define __flush_tlb_all() __flush_tlb_global()
  65. #define __flush_tlb_one(addr) __asm__ __volatile__("invlpg %0": :"m" (*(char *) addr))
  66. /*
  67.  * ZERO_PAGE is a global shared page that is always zero: used
  68.  * for zero-mapped memory areas etc..
  69.  */
  70. extern unsigned long empty_zero_page[1024];
  71. #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
  72. #endif /* !__ASSEMBLY__ */
  73. #define PML4_SHIFT 39
  74. #define PTRS_PER_PML4 512
  75. /*
  76.  * PGDIR_SHIFT determines what a 3rd level page table entry can map
  77.  */
  78. #define PGDIR_SHIFT 30
  79. #define PTRS_PER_PGD 512
  80. /*
  81.  * PMD_SHIFT determines the size of the area a middle-level
  82.  * page table can map
  83.  */
  84. #define PMD_SHIFT 21
  85. #define PTRS_PER_PMD 512
  86. /*
  87.  * entries per page directory level
  88.  */
  89. #define PTRS_PER_PTE 512
  90. #define pte_ERROR(e) 
  91. printk("%s:%d: bad pte %p(%016lx).n", __FILE__, __LINE__, &(e), pte_val(e))
  92. #define pmd_ERROR(e) 
  93. printk("%s:%d: bad pmd %p(%016lx).n", __FILE__, __LINE__, &(e), pmd_val(e))
  94. #define pgd_ERROR(e) 
  95. printk("%s:%d: bad pgd %p(%016lx).n", __FILE__, __LINE__, &(e), pgd_val(e))
  96. #define pml4_none(x) (!pml4_val(x))
  97. #define pgd_none(x) (!pgd_val(x))
  98. extern inline int pgd_present(pgd_t pgd) { return !pgd_none(pgd); }
  99. static inline void set_pte(pte_t *dst, pte_t val)
  100. {
  101. pte_val(*dst) = pte_val(val);
  102. static inline void set_pmd(pmd_t *dst, pmd_t val)
  103. {
  104. pmd_val(*dst) = pmd_val(val);
  105. static inline void set_pgd(pgd_t *dst, pgd_t val)
  106. {
  107. pgd_val(*dst) = pgd_val(val);
  108. static inline void set_pml4(pml4_t *dst, pml4_t val) 
  109. pml4_val(*dst) = pml4_val(val);
  110. extern inline void __pgd_clear (pgd_t * pgd)
  111. {
  112. set_pgd(pgd, __pgd(0));
  113. }
  114. extern inline void pgd_clear (pgd_t * pgd)
  115. {
  116. __pgd_clear(pgd);
  117. __flush_tlb();
  118. }
  119. #define pgd_page(pgd) 
  120. ((unsigned long) __va(pgd_val(pgd) & PHYSICAL_PAGE_MASK))
  121. #define __mk_pgd(address,prot) ((pgd_t) { (address) | pgprot_val(prot) })
  122. /* Find an entry in the second-level page table.. */
  123. #define pmd_offset(dir, address) ((pmd_t *) pgd_page(*(dir)) + 
  124. __pmd_offset(address))
  125. #define __mk_pmd(address,prot) ((pmd_t) { (address) | pgprot_val(prot) })
  126. #define ptep_get_and_clear(xp) __pte(xchg(&(xp)->pte, 0))
  127. #define pte_same(a, b) ((a).pte == (b).pte)
  128. #define __mk_pte(page_nr,pgprot) __pte(((page_nr) << PAGE_SHIFT) | pgprot_val(pgprot))
  129. #define PML4_SIZE (1UL << PML4_SHIFT)
  130. #define PML4_MASK (~(PML4_SIZE-1))
  131. #define PMD_SIZE (1UL << PMD_SHIFT)
  132. #define PMD_MASK (~(PMD_SIZE-1))
  133. #define PGDIR_SIZE (1UL << PGDIR_SHIFT)
  134. #define PGDIR_MASK (~(PGDIR_SIZE-1))
  135. #define USER_PTRS_PER_PGD (TASK_SIZE/PGDIR_SIZE)
  136. #define FIRST_USER_PGD_NR 0
  137. #define USER_PGD_PTRS (PAGE_OFFSET >> PGDIR_SHIFT)
  138. #define KERNEL_PGD_PTRS (PTRS_PER_PGD-USER_PGD_PTRS)
  139. #define BOOT_USER_L4_PTRS 1
  140. #define BOOT_KERNEL_L4_PTRS 511 /* But we will do it in 4rd level */
  141. #ifndef __ASSEMBLY__
  142. /* IO mappings are the 509th slot in the PML4. We map them high up to make sure
  143.    they never appear in the node hash table in DISCONTIG configs. */
  144. #define IOMAP_START      0xfffffe8000000000
  145. /* vmalloc space occupies the 510th slot in the PML4. You can have upto 512GB of
  146.    vmalloc/ioremap space. */ 
  147. #define VMALLOC_START  0xffffff0000000000
  148. #define VMALLOC_END      0xffffff7fffffffff
  149. #define VMALLOC_VMADDR(x) ((unsigned long)(x))
  150. #define MODULES_VADDR    0xffffffffa0000000
  151. #define MODULES_END      0xffffffffafffffff
  152. #define MODULES_LEN   (MODULES_END - MODULES_VADDR)
  153. #define _PAGE_BIT_PRESENT 0
  154. #define _PAGE_BIT_RW 1
  155. #define _PAGE_BIT_USER 2
  156. #define _PAGE_BIT_PWT 3 /* Write Through */
  157. #define _PAGE_BIT_PCD 4 /* Cache disable */
  158. #define _PAGE_BIT_ACCESSED 5
  159. #define _PAGE_BIT_DIRTY 6
  160. #define _PAGE_BIT_PSE 7 /* 2MB page */
  161. #define _PAGE_BIT_GLOBAL 8 /* Global TLB entry PPro+ */
  162. #define _PAGE_BIT_NX           63       /* No execute: only valid after cpuid check */
  163. #define _PAGE_PRESENT 0x001
  164. #define _PAGE_RW 0x002
  165. #define _PAGE_USER 0x004
  166. #define _PAGE_PWT 0x008
  167. #define _PAGE_PCD 0x010
  168. #define _PAGE_ACCESSED 0x020
  169. #define _PAGE_DIRTY 0x040
  170. #define _PAGE_PSE 0x080 /* 2MB page */
  171. #define _PAGE_GLOBAL 0x100 /* Global TLB entry */
  172. #define _PAGE_PGE _PAGE_GLOBAL
  173. #define _PAGE_NX        (1UL<<_PAGE_BIT_NX)
  174. #define _PAGE_PROTNONE 0x080 /* If not present */
  175. #define _PAGE_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY)
  176. #define _KERNPG_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED | _PAGE_DIRTY)
  177. #define KERNPG_TABLE __pgprot(_KERNPG_TABLE)
  178. #define _PAGE_CHG_MASK (PTE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY)
  179. #define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_ACCESSED)
  180. #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED)
  181. #define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
  182. #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
  183. #define PAGE_LARGE (_PAGE_PSE|_PAGE_PRESENT) 
  184. #define __PAGE_KERNEL 
  185. (_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_ACCESSED)
  186. #define __PAGE_KERNEL_NOCACHE   (__PAGE_KERNEL | _PAGE_PCD)
  187. #define __PAGE_KERNEL_RO        (__PAGE_KERNEL & ~_PAGE_RW)
  188. #define __PAGE_KERNEL_VSYSCALL (_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
  189. #define __PAGE_KERNEL_LARGE     (__PAGE_KERNEL | _PAGE_PSE)
  190. #define __PAGE_KERNEL_LARGE_NOCACHE     (__PAGE_KERNEL_LARGE | _PAGE_PCD)
  191. #define __PAGE_KERNEL_EXECUTABLE (__PAGE_KERNEL & ~_PAGE_NX)
  192. #define __PAGE_USER_NOCACHE_RO
  193. (_PAGE_PRESENT | _PAGE_USER | _PAGE_DIRTY | _PAGE_ACCESSED) 
  194. extern unsigned long __supported_pte_mask; 
  195. #define __PTE_SUPP(x) __pgprot((x) & __supported_pte_mask)
  196. #define PAGE_KERNEL __PTE_SUPP((__PAGE_KERNEL|_PAGE_GLOBAL) )
  197. #define PAGE_KERNEL_RO __PTE_SUPP(__PAGE_KERNEL_RO|_PAGE_GLOBAL)
  198. #define PAGE_KERNEL_NOCACHE __PTE_SUPP(__PAGE_KERNEL_NOCACHE|_PAGE_GLOBAL)
  199. #define PAGE_KERNEL_VSYSCALL __PTE_SUPP(__PAGE_KERNEL_VSYSCALL|_PAGE_GLOBAL)
  200. #define PAGE_KERNEL_LARGE __PTE_SUPP(__PAGE_KERNEL_LARGE|_PAGE_GLOBAL)
  201. #define PAGE_KERNEL_LARGE_NOCACHE __PTE_SUPP(__PAGE_KERNEL_LARGE_NOCACHE|_PAGE_GLOBAL)
  202. #define PAGE_USER_NOCACHE_RO __PTE_SUPP(__PAGE_USER_NOCACHE_RO|_PAGE_GLOBAL)
  203. #define PAGE_KERNEL_EXECUTABLE __PTE_SUPP(__PAGE_KERNEL_EXECUTABLE|_PAGE_GLOBAL)
  204. /*         xwr */
  205. #define __P000 PAGE_NONE
  206. #define __P001 PAGE_READONLY
  207. #define __P010 PAGE_COPY
  208. #define __P011 PAGE_COPY
  209. #define __P100 PAGE_READONLY
  210. #define __P101 PAGE_READONLY
  211. #define __P110 PAGE_COPY
  212. #define __P111 PAGE_COPY
  213. /*         xwr */
  214. #define __S000 PAGE_NONE
  215. #define __S001 PAGE_READONLY
  216. #define __S010 PAGE_SHARED
  217. #define __S011 PAGE_SHARED
  218. #define __S100 PAGE_READONLY
  219. #define __S101 PAGE_READONLY
  220. #define __S110 PAGE_SHARED
  221. #define __S111 PAGE_SHARED
  222. static inline unsigned long pgd_bad(pgd_t pgd) 
  223. unsigned long val = pgd_val(pgd);
  224. val &= ~PAGE_MASK; 
  225. val &= ~(_PAGE_USER | _PAGE_DIRTY); 
  226. return val & ~(_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED);  
  227. /*
  228.  * Handling allocation failures during page table setup.
  229.  */
  230. extern void __handle_bad_pmd(pmd_t * pmd);
  231. extern void __handle_bad_pmd_kernel(pmd_t * pmd);
  232. #define pte_none(x) (!pte_val(x))
  233. #define pte_present(x) (pte_val(x) & (_PAGE_PRESENT | _PAGE_PROTNONE))
  234. #define pte_clear(xp) do { set_pte(xp, __pte(0)); } while (0)
  235. #define pmd_none(x) (!pmd_val(x))
  236. #define pmd_present(x) (pmd_val(x) & _PAGE_PRESENT)
  237. #define pmd_clear(xp) do { set_pmd(xp, __pmd(0)); } while (0)
  238. #define pmd_bad(x)
  239. ((pmd_val(x) & (~PAGE_MASK & (~_PAGE_USER))) != _KERNPG_TABLE )
  240. #define pages_to_mb(x) ((x) >> (20-PAGE_SHIFT))
  241. #ifndef CONFIG_DISCONTIGMEM
  242. #define pte_page(x) (pfn_to_page((pte_val(x) & PHYSICAL_PAGE_MASK) >> PAGE_SHIFT))
  243. #endif
  244. /*
  245.  * The following only work if pte_present() is true.
  246.  * Undefined behaviour if not..
  247.  */
  248. extern inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_USER; }
  249. extern inline int pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_USER; }
  250. extern inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; }
  251. extern inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
  252. extern inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW; }
  253. extern inline pte_t pte_rdprotect(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_USER)); return pte; }
  254. extern inline pte_t pte_exprotect(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_USER)); return pte; }
  255. extern inline pte_t pte_mkclean(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_DIRTY)); return pte; }
  256. extern inline pte_t pte_mkold(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_ACCESSED)); return pte; }
  257. extern inline pte_t pte_wrprotect(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_RW)); return pte; }
  258. extern inline pte_t pte_mkread(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) | _PAGE_USER)); return pte; }
  259. extern inline pte_t pte_mkexec(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) | _PAGE_USER)); return pte; }
  260. extern inline pte_t pte_mkdirty(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) | _PAGE_DIRTY)); return pte; }
  261. extern inline pte_t pte_mkyoung(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) | _PAGE_ACCESSED)); return pte; }
  262. extern inline pte_t pte_mkwrite(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) | _PAGE_RW)); return pte; }
  263. static inline  int ptep_test_and_clear_dirty(pte_t *ptep) { return test_and_clear_bit(_PAGE_BIT_DIRTY, ptep); }
  264. static inline  int ptep_test_and_clear_young(pte_t *ptep) { return test_and_clear_bit(_PAGE_BIT_ACCESSED, ptep); }
  265. static inline void ptep_set_wrprotect(pte_t *ptep) { clear_bit(_PAGE_BIT_RW, ptep); }
  266. static inline void ptep_mkdirty(pte_t *ptep) { set_bit(_PAGE_BIT_DIRTY, ptep); }
  267. /*
  268.  * Conversion functions: convert a page and protection to a page entry,
  269.  * and a page entry and page directory to the page they refer to.
  270.  */
  271. #define mk_pte(page,pgprot)   
  272. ({   
  273. pte_t __pte;   
  274. unsigned long __val = page_to_phys(page);    
  275. __val |= pgprot_val(pgprot);  
  276.   set_pte(&__pte, __pte(__val));  
  277.   __pte;  
  278. }) 
  279. /* This takes a physical page address that is used by the remapping functions */
  280. static inline pte_t mk_pte_phys(unsigned long physpage, pgprot_t pgprot)
  281. pte_t __pte; 
  282. set_pte(&__pte, __pte(physpage + pgprot_val(pgprot))); 
  283. return __pte;
  284. }
  285. extern inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
  286. set_pte(&pte, __pte((pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot))); 
  287. return pte; 
  288. }
  289. #define page_pte(page) page_pte_prot(page, __pgprot(0))
  290. #define __pmd_page(pmd) (__va(pmd_val(pmd) & PHYSICAL_PAGE_MASK))
  291. /* to find an entry in a page-table-directory. */
  292. #define pgd_index(address) ((address >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
  293. #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address))
  294. #define __pgd_offset_k(pgd, address) ((pgd) + pgd_index(address))
  295. #define current_pgd_offset_k(address) 
  296. __pgd_offset_k((pgd_t *)read_pda(level4_pgt), address)
  297. /* This accesses the reference page table of the boot cpu. 
  298.    Other CPUs get synced lazily via the page fault handler. */
  299. #define pgd_offset_k(address) 
  300. __pgd_offset_k( 
  301.        (pgd_t *)__va(pml4_val(init_level4_pgt[pml4_index(address)]) & PAGE_MASK), address)
  302. #define __pmd_offset(address) 
  303. (((address) >> PMD_SHIFT) & (PTRS_PER_PMD-1))
  304. /* Find an entry in the third-level page table.. */
  305. #define __pte_offset(address) 
  306. ((address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
  307. #define pte_offset(dir, address) ((pte_t *) __pmd_page(*(dir)) + 
  308. __pte_offset(address))
  309. /* never use these in the common code */
  310. #define pml4_page(level4) ((unsigned long) __va(pml4_val(level4) & PAGE_MASK))
  311. #define pml4_index(address) (((address) >> PML4_SHIFT) & (PTRS_PER_PML4-1))
  312. #define pml4_offset_k(address) ((pml4_t *)read_pda(level4_pgt) + pml4_index(address))
  313. #define level3_offset_k(dir, address) ((pgd_t *) pml4_page(*(dir)) + pgd_index(address))
  314. #define mk_kernel_pml4(address,prot) ((pml4_t){(address) | pgprot_val(prot)})
  315. /*
  316.  * x86 doesn't have any external MMU info: the kernel page
  317.  * tables contain all the necessary information.
  318.  */
  319. #define update_mmu_cache(vma,address,pte) do { } while (0)
  320. /* Encode and de-code a swap entry */
  321. #define SWP_TYPE(x) (((x).val >> 1) & 0x3f)
  322. #define SWP_OFFSET(x) ((x).val >> 8)
  323. #define SWP_ENTRY(type, offset) ((swp_entry_t) { ((type) << 1) | ((offset) << 8) })
  324. #define pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
  325. #define swp_entry_to_pte(x) ((pte_t) { (x).val })
  326. struct page;
  327. /* 
  328.  * Change attributes of an kernel page.
  329.  */
  330. struct page;
  331. extern int change_page_attr(struct page *page, int numpages, pgprot_t prot);
  332. /* 
  333.  * Map or remap large pages in the kernel mapping.
  334.  * Only valid during kernel initilization (__init) 
  335.  */
  336. extern void __map_kernel_range(void *, int, pgprot_t);
  337. #define map_kernel_range(adr,size) __map_kernel_range(adr,size,PAGE_KERNEL_LARGE)
  338. #endif /* !__ASSEMBLY__ */
  339. /* Needs to be defined here and not in linux/mm.h, as it is arch dependent */
  340. #define PageSkip(page) (0)
  341. #define kern_addr_valid(kaddr)  ((kaddr)>>PAGE_SHIFT < max_mapnr)
  342. #define io_remap_page_range remap_page_range
  343. #define HAVE_ARCH_UNMAPPED_AREA
  344. #define pgtable_cache_init()   do { } while (0)
  345. #endif /* _X86_64_PGTABLE_H */